diff --git a/Dockerfile b/Dockerfile index e5a4dbc4b3..c60a444cc7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,18 +1,29 @@ -FROM node:8 - -# Install global packages -RUN npm install -g gulp-cli mocha - -# Clone Habitica repo and install dependencies -RUN mkdir -p /usr/src/habitrpg -WORKDIR /usr/src/habitrpg -RUN git clone https://github.com/HabitRPG/habitica.git /usr/src/habitrpg -RUN cp config.json.example config.json -RUN npm install - -# Create Build dir -RUN mkdir -p ./website/build - -# Start Habitica -EXPOSE 3000 -CMD ["npm", "start"] +FROM node:8 + +ENV ADMIN_EMAIL admin@habitica.com +ENV AMAZON_PAYMENTS_CLIENT_ID amzn1.application-oa2-client.68ed9e6904ef438fbc1bf86bf494056e +ENV AMAZON_PAYMENTS_SELLER_ID AMQ3SB4SG5E91 +ENV AMPLITUDE_KEY e8d4c24b3d6ef3ee73eeba715023dd43 +ENV BASE_URL https://habitica.com +ENV FACEBOOK_KEY 128307497299777 +ENV GA_ID UA-33510635-1 +ENV GOOGLE_CLIENT_ID 1035232791481-32vtplgnjnd1aufv3mcu1lthf31795fq.apps.googleusercontent.com +ENV NODE_ENV production +ENV STRIPE_PUB_KEY pk_85fQ0yMECHNfHTSsZoxZXlPSwSNfA + +# Install global packages +RUN npm install -g gulp-cli mocha + +# Clone Habitica repo and install dependencies +RUN mkdir -p /usr/src/habitrpg +WORKDIR /usr/src/habitrpg +RUN git clone --branch release https://github.com/HabitRPG/habitica.git /usr/src/habitrpg +RUN npm install +RUN gulp build:prod --force + +# Create Build dir +RUN mkdir -p ./website/build + +# Start Habitica +EXPOSE 3000 +CMD ["node", "./website/transpiled-babel/index.js"] diff --git a/Dockerfile-Dev b/Dockerfile-Dev new file mode 100644 index 0000000000..e5a4dbc4b3 --- /dev/null +++ b/Dockerfile-Dev @@ -0,0 +1,18 @@ +FROM node:8 + +# Install global packages +RUN npm install -g gulp-cli mocha + +# Clone Habitica repo and install dependencies +RUN mkdir -p /usr/src/habitrpg +WORKDIR /usr/src/habitrpg +RUN git clone https://github.com/HabitRPG/habitica.git /usr/src/habitrpg +RUN cp config.json.example config.json +RUN npm install + +# Create Build dir +RUN mkdir -p ./website/build + +# Start Habitica +EXPOSE 3000 +CMD ["npm", "start"] diff --git a/Dockerfile-Production b/Dockerfile-Production deleted file mode 100644 index c9a21df415..0000000000 --- a/Dockerfile-Production +++ /dev/null @@ -1,29 +0,0 @@ -FROM node:8 - -ENV ADMIN_EMAIL admin@habitica.com -ENV AMAZON_PAYMENTS_CLIENT_ID amzn1.application-oa2-client.68ed9e6904ef438fbc1bf86bf494056e -ENV AMAZON_PAYMENTS_SELLER_ID AMQ3SB4SG5E91 -ENV AMPLITUDE_KEY e8d4c24b3d6ef3ee73eeba715023dd43 -ENV BASE_URL https://habitica.com -ENV FACEBOOK_KEY 128307497299777 -ENV GA_ID UA-33510635-1 -ENV GOOGLE_CLIENT_ID 1035232791481-32vtplgnjnd1aufv3mcu1lthf31795fq.apps.googleusercontent.com -ENV NODE_ENV production -ENV STRIPE_PUB_KEY pk_85fQ0yMECHNfHTSsZoxZXlPSwSNfA - -# Install global packages -RUN npm install -g gulp-cli mocha - -# Clone Habitica repo and install dependencies -RUN mkdir -p /usr/src/habitrpg -WORKDIR /usr/src/habitrpg -RUN git clone --branch v4.46.2 https://github.com/HabitRPG/habitica.git /usr/src/habitrpg -RUN npm install -RUN gulp build:prod --force - -# Create Build dir -RUN mkdir -p ./website/build - -# Start Habitica -EXPOSE 3000 -CMD ["node", "./website/transpiled-babel/index.js"] diff --git a/migrations/migration-runner.js b/migrations/migration-runner.js index c5faeb2df8..e758e741cb 100644 --- a/migrations/migration-runner.js +++ b/migrations/migration-runner.js @@ -17,5 +17,5 @@ function setUpServer () { setUpServer(); // Replace this with your migration -const processUsers = require('./users/mystery-items.js'); +const processUsers = require('./tasks/habits-one-history-entry-per-day-challenges.js'); processUsers(); diff --git a/migrations/tasks/habits-one-history-entry-per-day-challenges.js b/migrations/tasks/habits-one-history-entry-per-day-challenges.js new file mode 100644 index 0000000000..dcb05f48bf --- /dev/null +++ b/migrations/tasks/habits-one-history-entry-per-day-challenges.js @@ -0,0 +1,138 @@ +// const migrationName = 'habits-one-history-entry-per-day'; +// const authorName = 'paglias'; // in case script author needs to know when their ... +// const authorUuid = 'ed4c688c-6652-4a92-9d03-a5a79844174a'; // ... own data is done + +/* + * Iterates over all habits and condense multiple history entries for the same day into a single entry + */ + +const monk = require('monk'); +const _ = require('lodash'); +const moment = require('moment'); +const connectionString = 'mongodb://localhost:27017/habitrpg?auto_reconnect=true'; // FOR TEST DATABASE +const dbTasks = monk(connectionString).get('tasks', { castIds: false }); + +function processChallengeHabits (lastId) { + let query = { + 'challenge.id': {$exists: true}, + userId: {$exists: false}, + type: 'habit', + }; + + if (lastId) { + query._id = { + $gt: lastId, + }; + } + + dbTasks.find(query, { + sort: {_id: 1}, + limit: 500, + }) + .then(updateChallengeHabits) + .catch((err) => { + console.log(err); + return exiting(1, `ERROR! ${ err}`); + }); +} + +let progressCount = 1000; +let count = 0; + +function updateChallengeHabits (habits) { + if (!habits || habits.length === 0) { + console.warn('All appropriate challenge habits found and modified.'); + displayData(); + return; + } + + let habitsPromises = habits.map(updateChallengeHabit); + let lastHabit = habits[habits.length - 1]; + + return Promise.all(habitsPromises) + .then(() => { + return processChallengeHabits(lastHabit._id); + }); +} + +function updateChallengeHabit (habit) { + count++; + + if (habit && habit.history && habit.history.length > 0) { + // First remove missing entries + habit.history = habit.history.filter(entry => Boolean(entry)); + + habit.history = _.chain(habit.history) + // processes all entries to identify an up or down score + .forEach((entry, index) => { + if (index === 0) { // first entry doesn't have a previous one + // first value < 0 identifies a negative score as the first action + entry.scoreDirection = entry.value >= 0 ? 'up' : 'down'; + } else { + // could be missing if the previous entry was null and thus excluded + const previousEntry = habit.history[index - 1]; + const previousValue = previousEntry.value; + + entry.scoreDirection = entry.value > previousValue ? 'up' : 'down'; + } + }) + .groupBy(entry => { // group entries by aggregateBy + return moment(entry.date).format('YYYYMMDD'); + }) + .toPairs() // [key, entry] + .sortBy(([key]) => key) // sort by date + .map(keyEntryPair => { + let entries = keyEntryPair[1]; // 1 is entry, 0 is key + let scoredUp = 0; + let scoredDown = 0; + + entries.forEach(entry => { + if (entry.scoreDirection === 'up') { + scoredUp += 1; + } else { + scoredDown += 1; + } + + // delete the unnecessary scoreDirection and scoreNotes prop + delete entry.scoreDirection; + delete entry.scoreNotes; + }); + + return { + date: Number(entries[entries.length - 1].date), // keep last value + value: entries[entries.length - 1].value, // keep last value, + scoredUp, + scoredDown, + }; + }) + .value(); + + return dbTasks.update({_id: habit._id}, { + $set: {history: habit.history}, + }); + } + + if (count % progressCount === 0) console.warn(`${count } habits processed`); +} + +function displayData () { + console.warn(`\n${ count } tasks 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 = processChallengeHabits; diff --git a/migrations/tasks/habits-one-history-entry-per-day-users.js b/migrations/tasks/habits-one-history-entry-per-day-users.js new file mode 100644 index 0000000000..509aa71eb7 --- /dev/null +++ b/migrations/tasks/habits-one-history-entry-per-day-users.js @@ -0,0 +1,163 @@ +const migrationName = 'habits-one-history-entry-per-day'; +const authorName = 'paglias'; // in case script author needs to know when their ... +const authorUuid = 'ed4c688c-6652-4a92-9d03-a5a79844174a'; // ... own data is done + +/* + * Iterates over all habits and condense multiple history entries for the same day into a single entry + */ + +const monk = require('monk'); +const _ = require('lodash'); +const moment = require('moment'); +const connectionString = 'mongodb://localhost:27017/habitrpg?auto_reconnect=true'; // FOR TEST DATABASE +const dbTasks = monk(connectionString).get('tasks', { castIds: false }); +const dbUsers = monk(connectionString).get('users', { castIds: false }); + +function processUsers (lastId) { + let query = { + migration: {$ne: migrationName}, + }; + + if (lastId) { + query._id = { + $gt: lastId, + }; + } + + dbUsers.find(query, { + sort: {_id: 1}, + limit: 50, // just 50 users per time since we have to process all their habits as well + fields: ['_id', 'preferences.timezoneOffset', 'preferences.dayStart'], + }) + .then(updateUsers) + .catch((err) => { + console.log(err); + return exiting(1, `ERROR! ${ err}`); + }); +} + +let progressCount = 1000; +let count = 0; + +function updateUsers (users) { + if (!users || users.length === 0) { + console.warn('All appropriate users and their tasks found and modified.'); + displayData(); + return; + } + + let usersPromises = users.map(updateUser); + let lastUser = users[users.length - 1]; + + return Promise.all(usersPromises) + .then(() => { + return processUsers(lastUser._id); + }); +} + +function updateHabit (habit, timezoneOffset, dayStart) { + if (habit && habit.history && habit.history.length > 0) { + // First remove missing entries + habit.history = habit.history.filter(entry => Boolean(entry)); + + habit.history = _.chain(habit.history) + // processes all entries to identify an up or down score + .forEach((entry, index) => { + if (index === 0) { // first entry doesn't have a previous one + // first value < 0 identifies a negative score as the first action + entry.scoreDirection = entry.value >= 0 ? 'up' : 'down'; + } else { + // could be missing if the previous entry was null and thus excluded + const previousEntry = habit.history[index - 1]; + const previousValue = previousEntry.value; + + entry.scoreDirection = entry.value > previousValue ? 'up' : 'down'; + } + }) + .groupBy(entry => { // group entries by aggregateBy + const entryDate = moment(entry.date).zone(timezoneOffset || 0); + if (entryDate.hour() < dayStart) entryDate.subtract(1, 'day'); + return entryDate.format('YYYYMMDD'); + }) + .toPairs() // [key, entry] + .sortBy(([key]) => key) // sort by date + .map(keyEntryPair => { + let entries = keyEntryPair[1]; // 1 is entry, 0 is key + let scoredUp = 0; + let scoredDown = 0; + + entries.forEach(entry => { + if (entry.scoreDirection === 'up') { + scoredUp += 1; + } else { + scoredDown += 1; + } + + // delete the unnecessary scoreDirection and scoreNotes prop + delete entry.scoreDirection; + delete entry.scoreNotes; + }); + + return { + date: Number(entries[entries.length - 1].date), // keep last value + value: entries[entries.length - 1].value, // keep last value, + scoredUp, + scoredDown, + }; + }) + .value(); + + return dbTasks.update({_id: habit._id}, { + $set: {history: habit.history}, + }); + } +} + +function updateUser (user) { + count++; + + const timezoneOffset = user.preferences.timezoneOffset; + const dayStart = user.preferences.dayStart; + + if (count % progressCount === 0) console.warn(`${count } ${ user._id}`); + if (user._id === authorUuid) console.warn(`${authorName } being processed`); + + return dbTasks.find({ + type: 'habit', + userId: user._id, + }) + .then(habits => { + return Promise.all(habits.map(habit => updateHabit(habit, timezoneOffset, dayStart))); + }) + .then(() => { + return dbUsers.update({_id: user._id}, { + $set: {migration: migrationName}, + }); + }) + .catch((err) => { + console.log(err); + return exiting(1, `ERROR! ${ err}`); + }); +} + +function displayData () { + console.warn(`\n${ count } tasks 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; diff --git a/migrations/users/mystery-items.js b/migrations/users/mystery-items.js index f633f3b80a..b1e0b818e6 100644 --- a/migrations/users/mystery-items.js +++ b/migrations/users/mystery-items.js @@ -1,15 +1,17 @@ -const migrationName = 'mystery-items-201805.js'; // Update per month +import monk from 'monk'; +import nconf from 'nconf'; + +const migrationName = 'mystery-items-201806.js'; // Update per month const authorName = 'Sabe'; // in case script author needs to know when their ... const authorUuid = '7f14ed62-5408-4e1b-be83-ada62d504931'; // ... own data is done /* * Award this month's mystery items to subscribers */ -const MYSTERY_ITEMS = ['back_mystery_201805', 'head_mystery_201805']; -const connectionString = 'mongodb://localhost:27017/habitrpg?auto_reconnect=true'; // FOR TEST DATABASE +const MYSTERY_ITEMS = ['armor_mystery_201806', 'head_mystery_201806']; +const CONNECTION_STRING = nconf.get('MIGRATION_CONNECT_STRING'); -let monk = require('monk'); -let dbUsers = monk(connectionString).get('users', { castIds: false }); +let dbUsers = monk(CONNECTION_STRING).get('users', { castIds: false }); let UserNotification = require('../../website/server/models/userNotification').model; function processUsers (lastId) { diff --git a/migrations/takeThis.js b/migrations/users/takeThis.js similarity index 91% rename from migrations/takeThis.js rename to migrations/users/takeThis.js index d276727a70..f7b5b0af8c 100644 --- a/migrations/takeThis.js +++ b/migrations/users/takeThis.js @@ -1,4 +1,4 @@ -let migrationName = '20180102_takeThis.js'; // Update per month +let migrationName = '20180702_takeThis.js'; // Update per month let authorName = 'Sabe'; // in case script author needs to know when their ... let authorUuid = '7f14ed62-5408-4e1b-be83-ada62d504931'; // ... own data is done @@ -6,15 +6,16 @@ let authorUuid = '7f14ed62-5408-4e1b-be83-ada62d504931'; // ... own data is done * Award Take This ladder items to participants in this month's challenge */ -let monk = require('monk'); -let connectionString = 'mongodb://localhost:27017/habitrpg?auto_reconnect=true'; // FOR TEST DATABASE -let dbUsers = monk(connectionString).get('users', { castIds: false }); +import monk from 'monk'; +import nconf from 'nconf'; +const CONNECTION_STRING = nconf.get('MIGRATION_CONNECT_STRING'); // FOR TEST DATABASE +let dbUsers = monk(CONNECTION_STRING).get('users', { castIds: false }); function processUsers (lastId) { // specify a query to limit the affected users (empty for all users): let query = { migration: {$ne: migrationName}, - challenges: {$in: ['5f70ce5b-2d82-4114-8e44-ca65615aae62']}, // Update per month + challenges: {$in: ['f0481f95-1dde-4ae7-a876-d19502a45d61']}, // Update per month }; if (lastId) { diff --git a/package-lock.json b/package-lock.json index 0490a76563..6ebf9d7c15 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "habitica", - "version": "4.47.0", + "version": "4.51.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 22fc98ef8f..14f63a5dd2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "habitica", "description": "A habit tracker app which treats your goals like a Role Playing Game.", - "version": "4.47.0", + "version": "4.51.2", "main": "./website/server/index.js", "dependencies": { "@slack/client": "^3.8.1", diff --git a/test/api/v3/integration/groups/POST-groups_invite.test.js b/test/api/v3/integration/groups/POST-groups_invite.test.js index 31f9964298..ec62946350 100644 --- a/test/api/v3/integration/groups/POST-groups_invite.test.js +++ b/test/api/v3/integration/groups/POST-groups_invite.test.js @@ -114,6 +114,19 @@ describe('Post /groups/:groupId/invite', () => { }); }); + it('returns error when recipient has blocked the senders', async () => { + const inviterNoBlocks = await inviter.update({'inbox.blocks': []}); + let userWithBlockedInviter = await generateUser({'inbox.blocks': [inviter._id]}); + await expect(inviterNoBlocks.post(`/groups/${group._id}/invite`, { + uuids: [userWithBlockedInviter._id], + })) + .to.eventually.be.rejected.and.eql({ + code: 401, + error: 'NotAuthorized', + message: t('notAuthorizedToSendMessageToThisUser'), + }); + }); + it('invites a user to a group by uuid', async () => { let userToInvite = await generateUser(); diff --git a/test/api/v3/integration/tasks/POST-tasks_id_score_direction.test.js b/test/api/v3/integration/tasks/POST-tasks_id_score_direction.test.js index 0ee5f710b6..c34b94ed05 100644 --- a/test/api/v3/integration/tasks/POST-tasks_id_score_direction.test.js +++ b/test/api/v3/integration/tasks/POST-tasks_id_score_direction.test.js @@ -406,7 +406,8 @@ describe('POST /tasks/:id/score/:direction', () => { expect(updatedUser.stats.gp).to.be.greaterThan(user.stats.gp); }); - it('adds score notes to task', async () => { + // not supported anymore + it('does not add score notes to task', async () => { let scoreNotesString = 'test-notes'; await user.post(`/tasks/${habit._id}/score/up`, { @@ -414,20 +415,24 @@ describe('POST /tasks/:id/score/:direction', () => { }); let updatedTask = await user.get(`/tasks/${habit._id}`); - expect(updatedTask.history[0].scoreNotes).to.eql(scoreNotesString); + expect(updatedTask.history[0].scoreNotes).to.eql(undefined); }); - it('errors when score notes are too large', async () => { - let scoreNotesString = new Array(258).join('a'); + it('records only one history entry per day', async () => { + const initialHistoryLength = habit.history.length; - await expect(user.post(`/tasks/${habit._id}/score/up`, { - scoreNotes: scoreNotesString, - })) - .to.eventually.be.rejected.and.eql({ - code: 401, - error: 'NotAuthorized', - message: t('taskScoreNotesTooLong'), - }); + await user.post(`/tasks/${habit._id}/score/up`); + await user.post(`/tasks/${habit._id}/score/up`); + await user.post(`/tasks/${habit._id}/score/down`); + await user.post(`/tasks/${habit._id}/score/up`); + + const updatedTask = await user.get(`/tasks/${habit._id}`); + + expect(updatedTask.history.length).to.eql(initialHistoryLength + 1); + + const lastHistoryEntry = updatedTask.history[updatedTask.history.length - 1]; + expect(lastHistoryEntry.scoredUp).to.equal(3); + expect(lastHistoryEntry.scoredDown).to.equal(1); }); }); diff --git a/test/client/unit/specs/components/memberDetails.js b/test/client/unit/specs/components/memberDetails.js new file mode 100644 index 0000000000..09bf13b713 --- /dev/null +++ b/test/client/unit/specs/components/memberDetails.js @@ -0,0 +1,23 @@ +import Vue from 'vue'; +import MemberDetailsComponent from 'client/components/memberDetails.vue'; + +describe('Members Details Component', () => { + let CTor; + let vm; + + beforeEach(() => { + CTor = Vue.extend(MemberDetailsComponent); + vm = new CTor().$mount(); + }); + + afterEach(() => { + vm.$destroy(); + }); + + xit('prevents flickering by setting a 1px margin-right on elements of class member-stats', () => { + const memberstats = vm.$el.querySelector('.member-stats'); + const style = window.getComputedStyle(memberstats, null); + const marginRightProp = style.getPropertyValue('margin-right'); + expect(marginRightProp).to.equal('1'); + }); +}); diff --git a/test/client/unit/specs/libs/asyncResource.js b/test/client/unit/specs/libs/asyncResource.js index 3123dd505b..059c8cc409 100644 --- a/test/client/unit/specs/libs/asyncResource.js +++ b/test/client/unit/specs/libs/asyncResource.js @@ -80,12 +80,12 @@ describe('async resource', () => { const store = generateStore(); store.state.user = asyncResourceFactory(); - sandbox.stub(axios, 'get').withArgs('/api/v3/user').returns(Promise.resolve({data: {data: {_id: 1}}})); + sandbox.stub(axios, 'get').withArgs('/api/v4/user').returns(Promise.resolve({data: {data: {_id: 1}}})); const resource = await loadAsyncResource({ store, path: 'user', - url: '/api/v3/user', + url: '/api/v4/user', deserialize (response) { return response.data.data; }, @@ -101,12 +101,12 @@ describe('async resource', () => { const store = generateStore(); store.state.user.loadingStatus = 'LOADED'; - sandbox.stub(axios, 'get').withArgs('/api/v3/user').returns(Promise.resolve({data: {data: {_id: 1}}})); + sandbox.stub(axios, 'get').withArgs('/api/v4/user').returns(Promise.resolve({data: {data: {_id: 1}}})); const resource = await loadAsyncResource({ store, path: 'user', - url: '/api/v3/user', + url: '/api/v4/user', deserialize (response) { return response.data.data; }, @@ -123,12 +123,12 @@ describe('async resource', () => { const store = generateStore(); store.state.user.loadingStatus = 'LOADING'; - sandbox.stub(axios, 'get').withArgs('/api/v3/user').returns(Promise.resolve({data: {data: {_id: 1}}})); + sandbox.stub(axios, 'get').withArgs('/api/v4/user').returns(Promise.resolve({data: {data: {_id: 1}}})); const resourcePromise = loadAsyncResource({ store, path: 'user', - url: '/api/v3/user', + url: '/api/v4/user', deserialize (response) { return response.data.data; }, diff --git a/test/client/unit/specs/store/actions/shops.js b/test/client/unit/specs/store/actions/shops.js index 516bdaacdc..1a72ae44d4 100644 --- a/test/client/unit/specs/store/actions/shops.js +++ b/test/client/unit/specs/store/actions/shops.js @@ -39,7 +39,7 @@ describe('shops actions', () => { let item = getItemInfo(user, 'marketGear', gearItem, getOfficialPinnedItems(user)); - sandbox.stub(axios, 'post').withArgs('/api/v3/user/buy/armor_rogue_1').returns(Promise.resolve({data: {data: {}}})); + sandbox.stub(axios, 'post').withArgs('/api/v4/user/buy/armor_rogue_1').returns(Promise.resolve({data: {data: {}}})); await store.dispatch('shops:genericPurchase', { pinType: item.pinType, diff --git a/test/client/unit/specs/store/actions/tasks.js b/test/client/unit/specs/store/actions/tasks.js index bdf9a2dc3f..8189500fc8 100644 --- a/test/client/unit/specs/store/actions/tasks.js +++ b/test/client/unit/specs/store/actions/tasks.js @@ -12,7 +12,7 @@ describe('tasks actions', () => { xit('fetches user tasks', async () => { expect(store.state.tasks.loadingStatus).to.equal('NOT_LOADED'); const tasks = [{_id: 1}]; - sandbox.stub(axios, 'get').withArgs('/api/v3/tasks/user').returns(Promise.resolve({data: {data: tasks}})); + sandbox.stub(axios, 'get').withArgs('/api/v4/tasks/user').returns(Promise.resolve({data: {data: tasks}})); await store.dispatch('tasks:fetchUserTasks'); @@ -28,7 +28,7 @@ describe('tasks actions', () => { }; const tasks = [{_id: 2}]; - sandbox.stub(axios, 'get').withArgs('/api/v3/tasks/user').returns(Promise.resolve({data: {data: tasks}})); + sandbox.stub(axios, 'get').withArgs('/api/v4/tasks/user').returns(Promise.resolve({data: {data: tasks}})); await store.dispatch('tasks:fetchUserTasks'); @@ -43,7 +43,7 @@ describe('tasks actions', () => { }; const tasks = [{_id: 2}]; - sandbox.stub(axios, 'get').withArgs('/api/v3/tasks/user').returns(Promise.resolve({data: {data: tasks}})); + sandbox.stub(axios, 'get').withArgs('/api/v4/tasks/user').returns(Promise.resolve({data: {data: tasks}})); await store.dispatch('tasks:fetchUserTasks', true); diff --git a/test/client/unit/specs/store/actions/user.js b/test/client/unit/specs/store/actions/user.js index 2e9e7e579d..f66d803d3f 100644 --- a/test/client/unit/specs/store/actions/user.js +++ b/test/client/unit/specs/store/actions/user.js @@ -12,7 +12,7 @@ describe('user actions', () => { it('loads the user', async () => { expect(store.state.user.loadingStatus).to.equal('NOT_LOADED'); const user = {_id: 1}; - sandbox.stub(axios, 'get').withArgs('/api/v3/user').returns(Promise.resolve({data: {data: user}})); + sandbox.stub(axios, 'get').withArgs('/api/v4/user').returns(Promise.resolve({data: {data: user}})); await store.dispatch('user:fetch'); @@ -28,7 +28,7 @@ describe('user actions', () => { }; const user = {_id: 2}; - sandbox.stub(axios, 'get').withArgs('/api/v3/user').returns(Promise.resolve({data: {data: user}})); + sandbox.stub(axios, 'get').withArgs('/api/v4/user').returns(Promise.resolve({data: {data: user}})); await store.dispatch('user:fetch'); @@ -43,7 +43,7 @@ describe('user actions', () => { }; const user = {_id: 2}; - sandbox.stub(axios, 'get').withArgs('/api/v3/user').returns(Promise.resolve({data: {data: user}})); + sandbox.stub(axios, 'get').withArgs('/api/v4/user').returns(Promise.resolve({data: {data: user}})); await store.dispatch('user:fetch', {forceLoad: true}); diff --git a/test/common/ops/buy/buyQuestGems.js b/test/common/ops/buy/buyQuestGems.js new file mode 100644 index 0000000000..3bb19841e4 --- /dev/null +++ b/test/common/ops/buy/buyQuestGems.js @@ -0,0 +1,94 @@ +import pinnedGearUtils from '../../../../website/common/script/ops/pinnedGearUtils'; +import { + NotAuthorized, +} from '../../../../website/common/script/libs/errors'; +import i18n from '../../../../website/common/script/i18n'; +import { + generateUser, +} from '../../../helpers/common.helper'; +import {BuyQuestWithGemOperation} from '../../../../website/common/script/ops/buy/buyQuestGem'; + +describe('shared.ops.buyQuestGems', () => { + let user; + let goldPoints = 40; + let analytics = {track () {}}; + + function buyQuest (_user, _req, _analytics) { + const buyOp = new BuyQuestWithGemOperation(_user, _req, _analytics); + + return buyOp.purchase(); + } + + before(() => { + user = generateUser({'stats.class': 'rogue'}); + }); + + beforeEach(() => { + sinon.stub(analytics, 'track'); + sinon.spy(pinnedGearUtils, 'removeItemByPath'); + }); + + afterEach(() => { + analytics.track.restore(); + pinnedGearUtils.removeItemByPath.restore(); + }); + + context('successful purchase', () => { + let userGemAmount = 10; + + before(() => { + user.balance = userGemAmount; + user.stats.gp = goldPoints; + user.purchased.plan.gemsBought = 0; + user.purchased.plan.customerId = 'customer-id'; + user.pinnedItems.push({type: 'quests', key: 'gryphon'}); + }); + + it('purchases quests', () => { + let key = 'gryphon'; + + buyQuest(user, {params: {key}}); + + expect(user.items.quests[key]).to.equal(1); + expect(pinnedGearUtils.removeItemByPath.notCalled).to.equal(true); + }); + }); + + context('bulk purchase', () => { + let userGemAmount = 10; + + beforeEach(() => { + user.balance = userGemAmount; + user.stats.gp = goldPoints; + user.purchased.plan.gemsBought = 0; + user.purchased.plan.customerId = 'customer-id'; + }); + + it('errors when user does not have enough gems', (done) => { + user.balance = 1; + let key = 'gryphon'; + + try { + buyQuest(user, { + params: {key}, + quantity: 2, + }); + } catch (err) { + expect(err).to.be.an.instanceof(NotAuthorized); + expect(err.message).to.equal(i18n.t('notEnoughGems')); + done(); + } + }); + + it('makes bulk purchases of quests', () => { + let key = 'gryphon'; + + buyQuest(user, { + params: {key}, + quantity: 3, + }); + + expect(user.items.quests[key]).to.equal(4); + }); + }); +}); diff --git a/test/common/ops/buy/purchase.js b/test/common/ops/buy/purchase.js index 900011daa5..fd1ab65b48 100644 --- a/test/common/ops/buy/purchase.js +++ b/test/common/ops/buy/purchase.js @@ -121,7 +121,6 @@ describe('shared.ops.purchase', () => { user.pinnedItems.push({type: 'eggs', key: 'Wolf'}); user.pinnedItems.push({type: 'hatchingPotions', key: 'Base'}); user.pinnedItems.push({type: 'food', key: SEASONAL_FOOD}); - user.pinnedItems.push({type: 'quests', key: 'gryphon'}); user.pinnedItems.push({type: 'gear', key: 'headAccessory_special_tigerEars'}); user.pinnedItems.push({type: 'bundles', key: 'featheredFriends'}); }); @@ -157,16 +156,6 @@ describe('shared.ops.purchase', () => { expect(pinnedGearUtils.removeItemByPath.notCalled).to.equal(true); }); - it('purchases quests', () => { - let type = 'quests'; - let key = 'gryphon'; - - purchase(user, {params: {type, key}}); - - expect(user.items[type][key]).to.equal(1); - expect(pinnedGearUtils.removeItemByPath.notCalled).to.equal(true); - }); - it('purchases gear', () => { let type = 'gear'; let key = 'headAccessory_special_tigerEars'; diff --git a/test/common/ops/scoreTask.test.js b/test/common/ops/scoreTask.test.js index bdfa5b91ee..3e78c943c6 100644 --- a/test/common/ops/scoreTask.test.js +++ b/test/common/ops/scoreTask.test.js @@ -254,13 +254,14 @@ describe('shared.ops.scoreTask', () => { expect(ref.afterUser.stats.gp).to.be.greaterThan(ref.beforeUser.stats.gp); }); - it('adds score notes', () => { + // not supported anymore + it('does not add score notes to task', () => { let scoreNotesString = 'scoreNotes'; habit.scoreNotes = scoreNotesString; options = { user: ref.afterUser, task: habit, direction: 'up', times: 5, cron: false }; scoreTask(options); - expect(habit.history[0].scoreNotes).to.eql(scoreNotesString); + expect(habit.history[0].scoreNotes).to.eql(undefined); }); it('down', () => { diff --git a/webpack/config/index.js b/webpack/config/index.js index ff54852be9..463e6f3028 100644 --- a/webpack/config/index.js +++ b/webpack/config/index.js @@ -41,11 +41,15 @@ module.exports = { assetsPublicPath: '/', staticAssetsDirectory, proxyTable: { - // proxy all requests starting with /api/v3 to IP:PORT as specified in the top-level config + // proxy all requests to the server at IP:PORT as specified in the top-level config '/api/v3': { target: DEV_BASE_URL, changeOrigin: true, }, + '/api/v4': { + target: DEV_BASE_URL, + changeOrigin: true, + }, '/stripe': { target: DEV_BASE_URL, changeOrigin: true, diff --git a/website/client/README.md b/website/client/README.md index b9eb68a150..2e617c0146 100644 --- a/website/client/README.md +++ b/website/client/README.md @@ -1,21 +1,21 @@ # Running -For information about installing Habitica locally, see [Setting up Habitica Locally](http://habitica.wikia.com/wiki/Setting_up_Habitica_Locally) and for information about running the local client, refer to the ["Run Habitica" section](http://habitica.wikia.com/wiki/Setting_up_Habitica_Locally#Run_Habitica) in that page. +For information about installing and running Habitica locally, see [Setting up Habitica Locally](http://habitica.wikia.com/wiki/Setting_up_Habitica_Locally). # Preparation Reading - Vue 2 (https://vuejs.org) - Webpack (https://webpack.github.io/) is the build system and it includes plugins for code transformation, right now we have: BabelJS for ES6 transpilation, eslint for code style, less and postcss for css compilation. The code comes from https://github.com/vuejs-templates/webpack which is a Webpack template for Vue, with some small modifications to adapt it to our use case. Docs http://vuejs-templates.github.io/webpack/ -- We’re using `.vue` files that make it possible to have HTML, JS and CSS for each component together in a single location. They’re implemented as a webpack plugin and the docs can be found here http://vue-loader.vuejs.org/en/ +- We're using `.vue` files that make it possible to have HTML, JS and CSS for each component together in a single location. They're implemented as a webpack plugin and the docs can be found here http://vue-loader.vuejs.org/en/ -- SemanticUI is the UI framework http://semantic-ui.com/. So far I’ve only used the CSS part, it also has JS plugins but I’ve yet to use them. It supports theming so if it’s not too difficult we’ll want to customize the base theme with our own styles instead of writing CSS rules to override the original styling. +- SemanticUI is the UI framework http://semantic-ui.com/. So far I've only used the CSS part, it also has JS plugins but I've yet to use them. It supports theming so if it's not too difficult we'll want to customize the base theme with our own styles instead of writing CSS rules to override the original styling. -The code is in `/website/client`. We’re using something very similar to Vuex (equivalent of React’s Redux) for state management http://vuex.vuejs.org/en/index.html +The code is in `/website/client`. We're using something very similar to Vuex (equivalent of React's Redux) for state management http://vuex.vuejs.org/en/index.html -The API is almost the same except that we don’t use mutations but only actions because it would make it difficult to work with common code +The API is almost the same except that we don't use mutations but only actions because it would make it difficult to work with common code -The project is developed directly in the `develop` branch as long as we’ll be able to avoid splitting it into a different branch. +The project is developed directly in the `develop` branch as long as we'll be able to avoid splitting it into a different branch. -So far most of the work has been on the template, so there’s no complex logic to understand. The only thing I would suggest you to read about is Vuex for data management: it’s basically a Flux implementation: there’s a central store that hold the data for the entire app, and every change to the data must happen through an action, the data cannot be mutated directly. +So far most of the work has been on the template, so there's no complex logic to understand. The only thing I would suggest you to read about is Vuex for data management: it's basically a Flux implementation: there's a central store that hold the data for the entire app, and every change to the data must happen through an action, the data cannot be mutated directly. For further resources, see [Guidance for Blacksmiths](http://habitica.wikia.com/wiki/Guidance_for_Blacksmiths), and in particular the ["Website Technology Stack" section](http://habitica.wikia.com/wiki/Guidance_for_Blacksmiths#Website_Technology_Stack). diff --git a/website/client/app.vue b/website/client/app.vue index fab6975417..342de7a146 100644 --- a/website/client/app.vue +++ b/website/client/app.vue @@ -106,7 +106,7 @@ div /* @TODO: The modal-open class is not being removed. Let's try this for now */ .modal, .modal-open { - overflow-y: scroll; + overflow-y: scroll !important; } .modal-backdrop.show { @@ -116,7 +116,7 @@ div /* Push progress bar above modals */ #nprogress .bar { - z-index: 1090 !important; /* Must stay above nav bar */ + z-index: 1600 !important; /* Must stay above nav bar */ } .restingInn { @@ -136,7 +136,7 @@ div background-color: $blue-10; position: fixed; top: 0; - z-index: 1030; + z-index: 1300; display: flex; .content { @@ -306,7 +306,7 @@ export default { // Don't show errors from getting user details. These users have delete their account, // but their chat message still exists. let configExists = Boolean(error.response) && Boolean(error.response.config); - if (configExists && error.response.config.method === 'get' && error.response.config.url.indexOf('/api/v3/members/') !== -1) { + if (configExists && error.response.config.method === 'get' && error.response.config.url.indexOf('/api/v4/members/') !== -1) { // @TODO: We resolve the promise because we need our caching to cache this user as tried // Chat paging should help this, but maybe we can also find another solution.. return Promise.resolve(error); @@ -348,20 +348,20 @@ export default { const url = response.config.url; const method = response.config.method; - const isApiCall = url.indexOf('api/v3') !== -1; + const isApiCall = url.indexOf('api/v4') !== -1; const userV = response.data && response.data.userV; - const isCron = url.indexOf('/api/v3/cron') === 0 && method === 'post'; + const isCron = url.indexOf('/api/v4/cron') === 0 && method === 'post'; if (this.isUserLoaded && isApiCall && userV) { const oldUserV = this.user._v; this.user._v = userV; // Do not sync again if already syncing - const isUserSync = url.indexOf('/api/v3/user') === 0 && method === 'get'; - const isTasksSync = url.indexOf('/api/v3/tasks/user') === 0 && method === 'get'; + const isUserSync = url.indexOf('/api/v4/user') === 0 && method === 'get'; + const isTasksSync = url.indexOf('/api/v4/tasks/user') === 0 && method === 'get'; // exclude chat seen requests because with real time chat they would be too many const isChatSeen = url.indexOf('/chat/seen') !== -1 && method === 'post'; - // exclude POST /api/v3/cron because the user is synced automatically after cron runs + // exclude POST /api/v4/cron because the user is synced automatically after cron runs // Something has changed on the user object that was not tracked here, sync the user if (userV - oldUserV > 1 && !isCron && !isChatSeen && !isUserSync && !isTasksSync) { diff --git a/website/client/assets/css/sprites/spritesmith-largeSprites-0.css b/website/client/assets/css/sprites/spritesmith-largeSprites-0.css index c57fc10613..a58afd8adc 100644 --- a/website/client/assets/css/sprites/spritesmith-largeSprites-0.css +++ b/website/client/assets/css/sprites/spritesmith-largeSprites-0.css @@ -1,60 +1,66 @@ -.promo_armoire_backgrounds_201806 { +.promo_aquatic_glass_potions { background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png'); - background-position: -142px -534px; + background-position: -720px 0px; width: 141px; height: 441px; } -.promo_bundle_aquaticAmigos { +.promo_armoire_backgrounds_201807 { background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png'); - background-position: -565px 0px; - width: 423px; - height: 147px; -} -.promo_earrings_headbands { - background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png'); - background-position: -565px -359px; - width: 297px; - height: 147px; -} -.promo_fairy_potions { - background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png'); - background-position: 0px 0px; - width: 564px; - height: 196px; + background-position: -720px -442px; + width: 141px; + height: 441px; } .promo_ios { background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png'); - background-position: 0px -197px; + background-position: -394px 0px; width: 325px; height: 336px; } -.promo_mystery_201805 { +.promo_mystery_201806 { background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png'); - background-position: -863px -359px; - width: 114px; - height: 90px; + background-position: -862px -442px; + width: 121px; + height: 114px; +} +.promo_seafoam { + background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png'); + background-position: -862px 0px; + width: 141px; + height: 441px; } .promo_seasonal_shop_summer { background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png'); - background-position: -776px -148px; + background-position: -518px -370px; width: 162px; height: 138px; } +.promo_splashy_skins { + background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png'); + background-position: -142px -370px; + width: 375px; + height: 186px; +} +.customize-option.promo_splashy_skins { + background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png'); + background-position: -167px -385px; + width: 60px; + height: 60px; +} .promo_summer_splash_2018 { background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png'); - background-position: 0px -534px; + background-position: 0px -370px; width: 141px; height: 588px; } .promo_take_this { background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png'); - background-position: -776px -287px; + background-position: -862px -557px; width: 96px; height: 69px; } -.scene_perfect_day { +.scene_party_healing { background-image: url('~assets/images/sprites/spritesmith-largeSprites-0.png'); - background-position: -565px -148px; - width: 210px; - height: 210px; + background-position: 0px 0px; + width: 393px; + height: 369px; } diff --git a/website/client/assets/css/sprites/spritesmith-main-0.css b/website/client/assets/css/sprites/spritesmith-main-0.css index 8657b742cf..316364f205 100644 --- a/website/client/assets/css/sprites/spritesmith-main-0.css +++ b/website/client/assets/css/sprites/spritesmith-main-0.css @@ -354,13 +354,13 @@ } .background_at_the_docks { background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -710px -148px; + background-position: -710px 0px; width: 141px; height: 147px; } .background_aurora { background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -710px -296px; + background-position: -710px -148px; width: 141px; height: 147px; } @@ -372,19 +372,19 @@ } .background_back_of_giant_beast { background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -710px -444px; + background-position: -710px -296px; width: 141px; height: 147px; } .background_bamboo_forest { background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: 0px -592px; + background-position: -710px -444px; width: 141px; height: 147px; } .background_beach { background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: 0px 0px; + background-position: 0px -592px; width: 141px; height: 147px; } @@ -402,7 +402,7 @@ } .background_beside_well { background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -284px -592px; + background-position: 0px 0px; width: 141px; height: 147px; } @@ -432,7 +432,7 @@ } .background_buried_treasure { background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -426px -592px; + background-position: -284px -592px; width: 141px; height: 147px; } @@ -450,7 +450,7 @@ } .background_chessboard_land { background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -568px -592px; + background-position: -426px -592px; width: 141px; height: 147px; } @@ -474,13 +474,13 @@ } .background_cozy_library { background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -710px -592px; + background-position: -568px -592px; width: 141px; height: 147px; } .background_crosscountry_ski_trail { background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -852px 0px; + background-position: -710px -592px; width: 141px; height: 147px; } @@ -490,15 +490,21 @@ width: 140px; height: 147px; } +.background_dark_deep { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -852px 0px; + width: 141px; + height: 147px; +} .background_deep_mine { background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -282px -1184px; + background-position: -423px -1184px; width: 140px; height: 147px; } .background_deep_sea { background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -423px -1184px; + background-position: -564px -1184px; width: 140px; height: 147px; } @@ -509,602 +515,596 @@ height: 147px; } .background_dilatory_castle { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -705px -1184px; - width: 140px; - height: 147px; -} -.background_dilatory_ruins { background-image: url('~assets/images/sprites/spritesmith-main-0.png'); background-position: -846px -1184px; width: 140px; height: 147px; } -.background_distant_castle { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -987px -1184px; - width: 140px; - height: 147px; -} -.background_drifting_raft { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1128px -1184px; - width: 140px; - height: 147px; -} -.background_driving_a_coach { +.background_dilatory_city { background-image: url('~assets/images/sprites/spritesmith-main-0.png'); background-position: -852px -296px; width: 141px; height: 147px; } -.background_driving_a_sleigh { +.background_dilatory_ruins { background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -852px -444px; - width: 141px; - height: 147px; -} -.background_dusty_canyons { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1418px -148px; + background-position: -1128px -1184px; width: 140px; height: 147px; } -.background_elegant_balcony { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -142px 0px; - width: 141px; - height: 147px; -} -.background_fairy_ring { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1418px -444px; - width: 140px; - height: 147px; -} -.background_fantastical_shoe_store { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1418px -592px; - width: 140px; - height: 147px; -} -.background_farmhouse { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1418px -740px; - width: 140px; - height: 147px; -} -.background_fiber_arts_room { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -852px -592px; - width: 141px; - height: 147px; -} -.background_floating_islands { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1418px -1036px; - width: 140px; - height: 147px; -} -.background_floral_meadow { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1418px -1184px; - width: 140px; - height: 147px; -} -.background_flying_over_a_field_of_wildflowers { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: 0px -740px; - width: 141px; - height: 147px; -} -.customize-option.background_flying_over_a_field_of_wildflowers { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -25px -755px; - width: 60px; - height: 60px; -} -.background_flying_over_an_ancient_forest { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -142px -740px; - width: 141px; - height: 147px; -} -.background_flying_over_icy_steppes { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -284px -740px; - width: 141px; - height: 147px; -} -.background_forest { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -423px -1332px; - width: 140px; - height: 147px; -} -.background_frigid_peak { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -564px -1332px; - width: 140px; - height: 147px; -} -.background_frozen_lake { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -705px -1332px; - width: 140px; - height: 147px; -} -.background_garden_shed { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -426px -740px; - width: 141px; - height: 147px; -} -.background_gazebo { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -987px -1332px; - width: 140px; - height: 147px; -} -.background_giant_birdhouse { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1128px -1332px; - width: 140px; - height: 147px; -} -.background_giant_florals { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -568px -740px; - width: 141px; - height: 147px; -} -.background_giant_seashell { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -710px -740px; - width: 141px; - height: 147px; -} -.background_giant_wave { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -852px -740px; - width: 141px; - height: 147px; -} -.background_gorgeous_greenhouse { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -994px 0px; - width: 141px; - height: 147px; -} -.background_grand_staircase { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -994px -148px; - width: 141px; - height: 147px; -} -.background_graveyard { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1559px -444px; - width: 140px; - height: 147px; -} -.background_green { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1559px -592px; - width: 140px; - height: 147px; -} -.background_guardian_statues { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -994px -296px; - width: 141px; - height: 147px; -} -.background_gumdrop_land { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1559px -888px; - width: 140px; - height: 147px; -} -.background_habit_city_streets { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -994px -444px; - width: 141px; - height: 147px; -} -.background_harvest_feast { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1559px -1184px; - width: 140px; - height: 147px; -} -.background_harvest_fields { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -994px -592px; - width: 141px; - height: 147px; -} -.background_harvest_moon { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -994px -740px; - width: 141px; - height: 147px; -} -.background_haunted_house { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -141px -1480px; - width: 140px; - height: 147px; -} -.background_ice_cave { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: 0px -888px; - width: 141px; - height: 147px; -} -.background_iceberg { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -423px -1480px; - width: 140px; - height: 147px; -} -.background_idyllic_cabin { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -564px -1480px; - width: 140px; - height: 147px; -} -.background_island_waterfalls { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -705px -1480px; - width: 140px; - height: 147px; -} -.background_kelp_forest { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -142px -888px; - width: 141px; - height: 147px; -} -.background_lighthouse_shore { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -987px -1480px; - width: 140px; - height: 147px; -} -.background_lilypad { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1418px -296px; - width: 140px; - height: 147px; -} -.background_magic_beanstalk { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -989px -888px; - width: 140px; - height: 147px; -} -.background_magical_candles { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -710px 0px; - width: 141px; - height: 147px; -} -.background_magical_museum { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -568px -444px; - width: 141px; - height: 147px; -} -.background_marble_temple { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -426px -444px; - width: 141px; - height: 147px; -} -.background_market { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -425px -888px; - width: 140px; - height: 147px; -} -.background_meandering_cave { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -284px -888px; - width: 140px; - height: 147px; -} -.background_midnight_castle { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -284px -444px; - width: 141px; - height: 147px; -} -.background_midnight_clouds { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -282px -1480px; - width: 140px; - height: 147px; -} -.background_midnight_lake { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -142px -444px; - width: 141px; - height: 147px; -} -.background_mist_shrouded_mountain { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1559px -1332px; - width: 140px; - height: 147px; -} -.background_mistiflying_circus { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1559px -1036px; - width: 140px; - height: 147px; -} -.background_mountain_lake { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1559px -740px; - width: 140px; - height: 147px; -} -.background_mountain_pyramid { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1559px -296px; - width: 140px; - height: 147px; -} -.background_night_dunes { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1559px -148px; - width: 140px; - height: 147px; -} -.background_ocean_sunrise { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: 0px -444px; - width: 141px; - height: 147px; -} -.background_on_tree_branch { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -568px -296px; - width: 141px; - height: 147px; -} -.background_open_waters { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -568px -148px; - width: 141px; - height: 147px; -} -.background_orchard { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -846px -1332px; - width: 140px; - height: 147px; -} -.background_pagodas { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -282px -1332px; - width: 140px; - height: 147px; -} -.background_pirate_flag { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -568px 0px; - width: 141px; - height: 147px; -} -.background_pixelists_workshop { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -426px -296px; - width: 141px; - height: 147px; -} -.background_pumpkin_patch { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1418px -888px; - width: 140px; - height: 147px; -} -.background_purple { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1418px 0px; - width: 140px; - height: 147px; -} -.background_pyramids { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -284px -296px; - width: 141px; - height: 147px; -} -.background_rainbows_end { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -142px -296px; - width: 141px; - height: 147px; -} -.background_rainforest { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: 0px -296px; - width: 141px; - height: 147px; -} -.background_rainy_city { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1277px -1036px; - width: 140px; - height: 147px; -} -.background_red { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1277px -444px; - width: 140px; - height: 147px; -} -.background_rolling_hills { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -426px -148px; - width: 141px; - height: 147px; -} -.background_rose_garden { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -426px 0px; - width: 141px; - height: 147px; -} -.background_rowboat { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -284px -148px; - width: 141px; - height: 147px; -} -.background_sandcastle { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -142px -148px; - width: 141px; - height: 147px; -} -.background_seafarer_ship { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1136px -888px; - width: 140px; - height: 147px; -} -.background_shimmering_ice_prism { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1136px -592px; - width: 140px; - height: 147px; -} -.background_shimmery_bubbles { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1136px -444px; - width: 140px; - height: 147px; -} -.background_slimy_swamp { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -848px -888px; - width: 140px; - height: 147px; -} -.background_snowman_army { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -707px -888px; - width: 140px; - height: 147px; -} -.background_snowy_pines { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -566px -888px; - width: 140px; - height: 147px; -} -.background_snowy_sunrise { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -846px -1480px; - width: 140px; - height: 147px; -} -.background_south_pole { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: 0px -1480px; - width: 140px; - height: 147px; -} -.background_sparkling_snowflake { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1559px 0px; - width: 140px; - height: 147px; -} -.background_spider_web { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1410px -1332px; - width: 140px; - height: 147px; -} -.background_spooky_hotel { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: 0px -148px; - width: 141px; - height: 147px; -} -.background_spring_rain { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -141px -1332px; - width: 140px; - height: 147px; -} -.background_stable { - background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: 0px -1332px; - width: 140px; - height: 147px; -} -.background_stained_glass { +.background_distant_castle { background-image: url('~assets/images/sprites/spritesmith-main-0.png'); background-position: -1269px -1184px; width: 140px; height: 147px; } -.background_starry_skies { +.background_drifting_raft { background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -564px -1184px; + background-position: -1418px 0px; width: 140px; height: 147px; } -.background_starry_winter_night { +.background_driving_a_coach { background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -284px 0px; + background-position: -852px -444px; width: 141px; height: 147px; } -.background_stoikalm_volcanoes { +.background_driving_a_sleigh { background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -1277px 0px; + background-position: -142px 0px; + width: 141px; + height: 147px; +} +.background_dusty_canyons { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -1418px -444px; width: 140px; height: 147px; } -.background_stone_circle { +.background_elegant_balcony { background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -564px -1036px; + background-position: 0px -740px; + width: 141px; + height: 147px; +} +.background_fairy_ring { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -1418px -740px; width: 140px; height: 147px; } -.background_stormy_rooftops { +.background_fantastical_shoe_store { background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -141px -1036px; + background-position: -1418px -888px; width: 140px; height: 147px; } -.background_stormy_ship { +.background_farmhouse { background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: 0px -1036px; + background-position: -1418px -1036px; width: 140px; height: 147px; } -.background_strange_sewers { +.background_fiber_arts_room { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -142px -740px; + width: 141px; + height: 147px; +} +.background_floating_islands { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: 0px -1332px; + width: 140px; + height: 147px; +} +.background_floral_meadow { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -141px -1332px; + width: 140px; + height: 147px; +} +.background_flying_over_a_field_of_wildflowers { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -284px -740px; + width: 141px; + height: 147px; +} +.customize-option.background_flying_over_a_field_of_wildflowers { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -309px -755px; + width: 60px; + height: 60px; +} +.background_flying_over_an_ancient_forest { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -426px -740px; + width: 141px; + height: 147px; +} +.background_flying_over_icy_steppes { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -568px -740px; + width: 141px; + height: 147px; +} +.background_forest { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -705px -1332px; + width: 140px; + height: 147px; +} +.background_frigid_peak { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -846px -1332px; + width: 140px; + height: 147px; +} +.background_frozen_lake { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -987px -1332px; + width: 140px; + height: 147px; +} +.background_garden_shed { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -710px -740px; + width: 141px; + height: 147px; +} +.background_gazebo { background-image: url('~assets/images/sprites/spritesmith-main-0.png'); background-position: -1269px -1332px; width: 140px; height: 147px; } -.background_summer_fireworks { +.background_giant_birdhouse { background-image: url('~assets/images/sprites/spritesmith-main-0.png'); - background-position: -142px -592px; + background-position: -1410px -1332px; + width: 140px; + height: 147px; +} +.background_giant_florals { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -852px -740px; width: 141px; height: 147px; } -.background_sunken_ship { +.background_giant_seashell { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -994px 0px; + width: 141px; + height: 147px; +} +.background_giant_wave { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -994px -148px; + width: 141px; + height: 147px; +} +.background_gorgeous_greenhouse { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -994px -296px; + width: 141px; + height: 147px; +} +.background_grand_staircase { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -994px -444px; + width: 141px; + height: 147px; +} +.background_graveyard { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -1559px -740px; + width: 140px; + height: 147px; +} +.background_green { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -1559px -888px; + width: 140px; + height: 147px; +} +.background_guardian_statues { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -994px -592px; + width: 141px; + height: 147px; +} +.background_gumdrop_land { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -1559px -1184px; + width: 140px; + height: 147px; +} +.background_habit_city_streets { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -994px -740px; + width: 141px; + height: 147px; +} +.background_harvest_feast { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: 0px -1480px; + width: 140px; + height: 147px; +} +.background_harvest_fields { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: 0px -888px; + width: 141px; + height: 147px; +} +.background_harvest_moon { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -142px -888px; + width: 141px; + height: 147px; +} +.background_haunted_house { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -423px -1480px; + width: 140px; + height: 147px; +} +.background_ice_cave { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -284px -888px; + width: 141px; + height: 147px; +} +.background_iceberg { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -705px -1480px; + width: 140px; + height: 147px; +} +.background_idyllic_cabin { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -846px -1480px; + width: 140px; + height: 147px; +} +.background_island_waterfalls { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -987px -1480px; + width: 140px; + height: 147px; +} +.background_kelp_forest { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -852px -592px; + width: 141px; + height: 147px; +} +.background_lighthouse_shore { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -990px -888px; + width: 140px; + height: 147px; +} +.background_lilypad { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -849px -888px; + width: 140px; + height: 147px; +} +.background_magic_beanstalk { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -708px -888px; + width: 140px; + height: 147px; +} +.background_magical_candles { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -568px -444px; + width: 141px; + height: 147px; +} +.background_magical_museum { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -426px -444px; + width: 141px; + height: 147px; +} +.background_marble_temple { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -284px -444px; + width: 141px; + height: 147px; +} +.background_market { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -282px -1480px; + width: 140px; + height: 147px; +} +.background_meandering_cave { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -141px -1480px; + width: 140px; + height: 147px; +} +.background_midnight_castle { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -142px -444px; + width: 141px; + height: 147px; +} +.background_midnight_clouds { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -1559px -1036px; + width: 140px; + height: 147px; +} +.background_midnight_lake { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: 0px -444px; + width: 141px; + height: 147px; +} +.background_mist_shrouded_mountain { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -1559px -444px; + width: 140px; + height: 147px; +} +.background_mistiflying_circus { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -1559px -296px; + width: 140px; + height: 147px; +} +.background_mountain_lake { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -1559px -148px; + width: 140px; + height: 147px; +} +.background_mountain_pyramid { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -1559px 0px; + width: 140px; + height: 147px; +} +.background_night_dunes { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -1128px -1332px; + width: 140px; + height: 147px; +} +.background_ocean_sunrise { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -568px -296px; + width: 141px; + height: 147px; +} +.background_on_tree_branch { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -568px -148px; + width: 141px; + height: 147px; +} +.background_open_waters { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -568px 0px; + width: 141px; + height: 147px; +} +.background_orchard { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -1418px -1184px; + width: 140px; + height: 147px; +} +.background_pagodas { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -1418px -592px; + width: 140px; + height: 147px; +} +.background_pirate_flag { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -426px -296px; + width: 141px; + height: 147px; +} +.background_pixelists_workshop { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -284px -296px; + width: 141px; + height: 147px; +} +.background_pumpkin_patch { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -987px -1184px; + width: 140px; + height: 147px; +} +.background_purple { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -705px -1184px; + width: 140px; + height: 147px; +} +.background_pyramids { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -142px -296px; + width: 141px; + height: 147px; +} +.background_rainbows_end { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: 0px -296px; + width: 141px; + height: 147px; +} +.background_rainforest { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -426px -148px; + width: 141px; + height: 147px; +} +.background_rainy_city { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -1277px -444px; + width: 140px; + height: 147px; +} +.background_red { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -1277px 0px; + width: 140px; + height: 147px; +} +.background_rolling_hills { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -426px 0px; + width: 141px; + height: 147px; +} +.background_rose_garden { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -284px -148px; + width: 141px; + height: 147px; +} +.background_rowboat { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -142px -148px; + width: 141px; + height: 147px; +} +.background_sandcastle { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: 0px -148px; + width: 141px; + height: 147px; +} +.background_seafarer_ship { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -1136px -592px; + width: 140px; + height: 147px; +} +.background_shimmering_ice_prism { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -1136px -444px; + width: 140px; + height: 147px; +} +.background_shimmery_bubbles { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -567px -888px; + width: 140px; + height: 147px; +} +.background_slimy_swamp { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -426px -888px; + width: 140px; + height: 147px; +} +.background_snowman_army { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -564px -1480px; + width: 140px; + height: 147px; +} +.background_snowy_pines { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -1559px -1332px; + width: 140px; + height: 147px; +} +.background_snowy_sunrise { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -1559px -592px; + width: 140px; + height: 147px; +} +.background_south_pole { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -564px -1332px; + width: 140px; + height: 147px; +} +.background_sparkling_snowflake { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -423px -1332px; + width: 140px; + height: 147px; +} +.background_spider_web { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -282px -1332px; + width: 140px; + height: 147px; +} +.background_spooky_hotel { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -284px 0px; + width: 141px; + height: 147px; +} +.background_spring_rain { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -1418px -148px; + width: 140px; + height: 147px; +} +.background_stable { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -282px -1184px; + width: 140px; + height: 147px; +} +.background_stained_glass { background-image: url('~assets/images/sprites/spritesmith-main-0.png'); background-position: 0px -1184px; width: 140px; height: 147px; } +.background_starry_skies { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -1277px -1036px; + width: 140px; + height: 147px; +} +.background_starry_winter_night { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -142px -592px; + width: 141px; + height: 147px; +} +.background_stoikalm_volcanoes { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -141px -1036px; + width: 140px; + height: 147px; +} +.background_stone_circle { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: 0px -1036px; + width: 140px; + height: 147px; +} +.background_stormy_rooftops { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -1136px -888px; + width: 140px; + height: 147px; +} +.background_stormy_ship { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -1418px -296px; + width: 140px; + height: 147px; +} +.background_strange_sewers { + background-image: url('~assets/images/sprites/spritesmith-main-0.png'); + background-position: -564px -1036px; + width: 140px; + height: 147px; +} diff --git a/website/client/assets/css/sprites/spritesmith-main-1.css b/website/client/assets/css/sprites/spritesmith-main-1.css index 6f04d0fe05..a29810781f 100644 --- a/website/client/assets/css/sprites/spritesmith-main-1.css +++ b/website/client/assets/css/sprites/spritesmith-main-1.css @@ -1,54 +1,72 @@ -.background_sunset_meadow { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -426px -148px; - width: 140px; - height: 147px; -} -.background_sunset_oasis { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: 0px -592px; - width: 140px; - height: 147px; -} -.background_sunset_savannah { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -568px 0px; - width: 140px; - height: 147px; -} -.background_swarming_darkness { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -568px -148px; - width: 140px; - height: 147px; -} -.background_tar_pits { +.background_summer_fireworks { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -142px 0px; width: 141px; height: 147px; } +.background_sunken_ship { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -423px -592px; + width: 140px; + height: 147px; +} +.background_sunset_meadow { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -568px -296px; + width: 140px; + height: 147px; +} +.background_sunset_oasis { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -141px -444px; + width: 140px; + height: 147px; +} +.background_sunset_savannah { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: 0px -444px; + width: 140px; + height: 147px; +} +.background_swarming_darkness { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -424px -296px; + width: 140px; + height: 147px; +} +.background_tar_pits { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -284px -148px; + width: 141px; + height: 147px; +} .background_tavern { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: 0px -296px; + background-position: -423px -444px; width: 140px; height: 147px; } .background_terraced_rice_field { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -423px -296px; + background-position: -283px -296px; width: 140px; height: 147px; } .background_thunderstorm { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -284px 0px; + background-position: 0px -296px; + width: 141px; + height: 147px; +} +.background_tide_pool { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -426px -148px; width: 141px; height: 147px; } .background_tornado { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: 0px -148px; + background-position: -426px 0px; width: 141px; height: 147px; } @@ -60,3013 +78,3031 @@ } .background_treasure_room { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -141px -296px; + background-position: -568px 0px; width: 140px; height: 147px; } .background_tree_roots { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -282px -296px; + background-position: -568px -148px; width: 140px; height: 147px; } .background_tulip_garden { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -284px -148px; + background-position: 0px 0px; width: 141px; height: 147px; } .background_twinkly_lights { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: 0px 0px; + background-position: 0px -148px; width: 141px; height: 147px; } .background_twinkly_party_lights { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -426px 0px; + background-position: -284px 0px; width: 141px; height: 147px; } .background_violet { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -568px -296px; + background-position: -282px -444px; width: 140px; height: 147px; } .background_volcano { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: 0px -444px; + background-position: -142px -296px; width: 140px; height: 147px; } .background_waterfall_rock { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -141px -444px; + background-position: -564px -444px; width: 140px; height: 147px; } .background_wedding_arch { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -282px -444px; + background-position: -709px 0px; width: 140px; height: 147px; } .background_windy_autumn { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -423px -444px; + background-position: -709px -148px; width: 140px; height: 147px; } .background_winter_fireworks { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -564px -444px; + background-position: -709px -296px; width: 140px; height: 147px; } .background_winter_night { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -709px 0px; + background-position: -709px -444px; width: 140px; height: 147px; } .background_winter_storefront { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -709px -148px; + background-position: 0px -592px; width: 140px; height: 147px; } .background_winter_town { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -709px -296px; + background-position: -141px -592px; width: 140px; height: 147px; } .background_yellow { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -709px -444px; + background-position: -282px -592px; width: 140px; height: 147px; } .icon_background_alpine_slopes { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -966px -1584px; + background-position: -1380px -1584px; width: 68px; height: 68px; } .icon_background_aquarium { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1035px -1584px; + background-position: -1311px -1584px; width: 68px; height: 68px; } .icon_background_archery_range { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1556px -1104px; + background-position: -1242px -1584px; width: 68px; height: 68px; } .icon_background_at_the_docks { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1587px -1584px; + background-position: -1173px -1584px; width: 68px; height: 68px; } .icon_background_aurora { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -69px -1377px; + background-position: -1104px -1584px; width: 68px; height: 68px; } .icon_background_autumn_forest { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1104px -1584px; + background-position: -1035px -1584px; width: 68px; height: 68px; } .icon_background_back_of_giant_beast { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1173px -1584px; + background-position: -966px -1584px; width: 68px; height: 68px; } .icon_background_bamboo_forest { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1242px -1584px; + background-position: -897px -1584px; width: 68px; height: 68px; } .icon_background_beach { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1311px -1584px; + background-position: -828px -1584px; width: 68px; height: 68px; } .icon_background_beehive { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1518px -1584px; + background-position: -759px -1584px; width: 68px; height: 68px; } .icon_background_bell_tower { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1449px -1584px; + background-position: -690px -1584px; width: 68px; height: 68px; } .icon_background_beside_well { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1380px -1584px; + background-position: -621px -1584px; width: 68px; height: 68px; } .icon_background_blacksmithy { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -897px -1584px; + background-position: -552px -1584px; width: 68px; height: 68px; } .icon_background_blizzard { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -828px -1584px; + background-position: -483px -1584px; width: 68px; height: 68px; } .icon_background_blue { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -759px -1584px; + background-position: -414px -1584px; width: 68px; height: 68px; } .icon_background_bug_covered_log { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -690px -1584px; + background-position: -345px -1584px; width: 68px; height: 68px; } .icon_background_buried_treasure { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -621px -1584px; + background-position: -276px -1584px; width: 68px; height: 68px; } .icon_background_champions_colosseum { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -552px -1584px; + background-position: -207px -1584px; width: 68px; height: 68px; } .icon_background_cherry_trees { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -483px -1584px; + background-position: -138px -1584px; width: 68px; height: 68px; } .icon_background_chessboard_land { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -414px -1584px; + background-position: -69px -1584px; width: 68px; height: 68px; } .icon_background_clouds { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -345px -1584px; + background-position: 0px -1584px; width: 68px; height: 68px; } .icon_background_coral_reef { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -276px -1584px; + background-position: -1625px -1449px; width: 68px; height: 68px; } .icon_background_cornfields { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -207px -1584px; + background-position: -1625px -1380px; width: 68px; height: 68px; } .icon_background_cozy_library { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -138px -1584px; + background-position: -1625px -1311px; width: 68px; height: 68px; } .icon_background_crosscountry_ski_trail { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -69px -1584px; + background-position: -1625px -1242px; width: 68px; height: 68px; } .icon_background_crystal_cave { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: 0px -1584px; - width: 68px; - height: 68px; -} -.icon_background_deep_mine { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1625px -1449px; - width: 68px; - height: 68px; -} -.icon_background_deep_sea { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1625px -1380px; - width: 68px; - height: 68px; -} -.icon_background_desert_dunes { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1625px -1311px; - width: 68px; - height: 68px; -} -.icon_background_dilatory_castle { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1625px -1242px; - width: 68px; - height: 68px; -} -.icon_background_dilatory_ruins { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1625px -1173px; width: 68px; height: 68px; } -.icon_background_distant_castle { +.icon_background_dark_deep { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1625px -1104px; width: 68px; height: 68px; } -.icon_background_drifting_raft { +.icon_background_deep_mine { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1625px -1035px; width: 68px; height: 68px; } -.icon_background_driving_a_coach { +.icon_background_deep_sea { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1625px -966px; width: 68px; height: 68px; } -.icon_background_driving_a_sleigh { +.icon_background_desert_dunes { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1625px -897px; width: 68px; height: 68px; } -.icon_background_dusty_canyons { +.icon_background_dilatory_castle { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1625px -828px; width: 68px; height: 68px; } -.icon_background_elegant_balcony { +.icon_background_dilatory_city { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1625px -759px; width: 68px; height: 68px; } -.icon_background_fairy_ring { +.icon_background_dilatory_ruins { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1625px -690px; width: 68px; height: 68px; } -.icon_background_fantastical_shoe_store { +.icon_background_distant_castle { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1625px -621px; width: 68px; height: 68px; } -.icon_background_farmhouse { +.icon_background_drifting_raft { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1625px -552px; width: 68px; height: 68px; } -.icon_background_fiber_arts_room { +.icon_background_driving_a_coach { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1625px -483px; width: 68px; height: 68px; } -.icon_background_floating_islands { +.icon_background_driving_a_sleigh { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1625px -414px; width: 68px; height: 68px; } -.icon_background_floral_meadow { +.icon_background_dusty_canyons { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1625px -345px; width: 68px; height: 68px; } -.icon_background_flying_over_a_field_of_wildflowers { +.icon_background_elegant_balcony { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1625px -276px; width: 68px; height: 68px; } -.customize-option.icon_background_flying_over_a_field_of_wildflowers { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1650px -291px; - width: 60px; - height: 60px; -} -.icon_background_flying_over_an_ancient_forest { +.icon_background_fairy_ring { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1625px -207px; width: 68px; height: 68px; } -.icon_background_flying_over_icy_steppes { +.icon_background_fantastical_shoe_store { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1625px -138px; width: 68px; height: 68px; } -.icon_background_forest { +.icon_background_farmhouse { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1625px -69px; width: 68px; height: 68px; } -.icon_background_frigid_peak { +.icon_background_fiber_arts_room { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1625px 0px; width: 68px; height: 68px; } -.icon_background_frozen_lake { +.icon_background_floating_islands { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1518px -1515px; width: 68px; height: 68px; } -.icon_background_garden_shed { +.icon_background_floral_meadow { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1449px -1515px; width: 68px; height: 68px; } -.icon_background_gazebo { +.icon_background_flying_over_a_field_of_wildflowers { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1380px -1515px; width: 68px; height: 68px; } -.icon_background_giant_birdhouse { +.customize-option.icon_background_flying_over_a_field_of_wildflowers { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1405px -1530px; + width: 60px; + height: 60px; +} +.icon_background_flying_over_an_ancient_forest { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1311px -1515px; width: 68px; height: 68px; } -.icon_background_giant_florals { +.icon_background_flying_over_icy_steppes { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1242px -1515px; width: 68px; height: 68px; } -.icon_background_giant_seashell { +.icon_background_forest { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1173px -1515px; width: 68px; height: 68px; } -.icon_background_giant_wave { +.icon_background_frigid_peak { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1104px -1515px; width: 68px; height: 68px; } -.icon_background_gorgeous_greenhouse { +.icon_background_frozen_lake { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1035px -1515px; width: 68px; height: 68px; } -.icon_background_grand_staircase { +.icon_background_garden_shed { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -966px -1515px; width: 68px; height: 68px; } -.icon_background_graveyard { +.icon_background_gazebo { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -897px -1515px; width: 68px; height: 68px; } -.icon_background_green { +.icon_background_giant_birdhouse { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -828px -1515px; width: 68px; height: 68px; } -.icon_background_guardian_statues { +.icon_background_giant_florals { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -759px -1515px; width: 68px; height: 68px; } -.icon_background_gumdrop_land { +.icon_background_giant_seashell { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -690px -1515px; width: 68px; height: 68px; } -.icon_background_habit_city_streets { +.icon_background_giant_wave { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -621px -1515px; width: 68px; height: 68px; } -.icon_background_harvest_feast { +.icon_background_gorgeous_greenhouse { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -552px -1515px; width: 68px; height: 68px; } -.icon_background_harvest_fields { +.icon_background_grand_staircase { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -483px -1515px; width: 68px; height: 68px; } -.icon_background_harvest_moon { +.icon_background_graveyard { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -414px -1515px; width: 68px; height: 68px; } -.icon_background_haunted_house { +.icon_background_green { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -345px -1515px; width: 68px; height: 68px; } -.icon_background_ice_cave { +.icon_background_guardian_statues { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -276px -1515px; width: 68px; height: 68px; } -.icon_background_iceberg { +.icon_background_gumdrop_land { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -207px -1515px; width: 68px; height: 68px; } -.icon_background_idyllic_cabin { +.icon_background_habit_city_streets { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -138px -1515px; width: 68px; height: 68px; } -.icon_background_island_waterfalls { +.icon_background_harvest_feast { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -69px -1515px; width: 68px; height: 68px; } -.icon_background_kelp_forest { +.icon_background_harvest_fields { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: 0px -1515px; width: 68px; height: 68px; } -.icon_background_lighthouse_shore { +.icon_background_harvest_moon { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1556px -1380px; width: 68px; height: 68px; } -.icon_background_lilypad { +.icon_background_haunted_house { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1556px -1311px; width: 68px; height: 68px; } -.icon_background_magic_beanstalk { +.icon_background_ice_cave { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1556px -1242px; width: 68px; height: 68px; } -.icon_background_magical_candles { +.icon_background_iceberg { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1556px -1173px; width: 68px; height: 68px; } -.icon_background_magical_museum { +.icon_background_idyllic_cabin { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: 0px -1377px; + background-position: -1556px -1104px; width: 68px; height: 68px; } -.icon_background_marble_temple { +.icon_background_island_waterfalls { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1556px -1035px; width: 68px; height: 68px; } -.icon_background_market { +.icon_background_kelp_forest { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1556px -966px; width: 68px; height: 68px; } -.icon_background_meandering_cave { +.icon_background_lighthouse_shore { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1556px -897px; + background-position: -1396px -1001px; width: 68px; height: 68px; } -.icon_background_midnight_castle { +.icon_background_lilypad { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1556px -828px; width: 68px; height: 68px; } -.icon_background_midnight_clouds { +.icon_background_magic_beanstalk { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1556px -759px; width: 68px; height: 68px; } -.icon_background_midnight_lake { +.icon_background_magical_candles { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1556px -690px; width: 68px; height: 68px; } -.icon_background_mist_shrouded_mountain { +.icon_background_magical_museum { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1556px -621px; width: 68px; height: 68px; } -.icon_background_mistiflying_circus { +.icon_background_marble_temple { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1556px -552px; width: 68px; height: 68px; } -.icon_background_mountain_lake { +.icon_background_market { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1556px -483px; width: 68px; height: 68px; } -.icon_background_mountain_pyramid { +.icon_background_meandering_cave { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1556px -414px; width: 68px; height: 68px; } -.icon_background_night_dunes { +.icon_background_midnight_castle { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1556px -345px; width: 68px; height: 68px; } -.icon_background_ocean_sunrise { +.icon_background_midnight_clouds { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1556px -276px; width: 68px; height: 68px; } -.icon_background_on_tree_branch { +.icon_background_midnight_lake { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1556px -207px; width: 68px; height: 68px; } -.icon_background_open_waters { +.icon_background_mist_shrouded_mountain { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1556px -138px; width: 68px; height: 68px; } -.icon_background_orchard { +.icon_background_mistiflying_circus { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1556px -69px; width: 68px; height: 68px; } -.icon_background_pagodas { +.icon_background_mountain_lake { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1556px 0px; width: 68px; height: 68px; } -.icon_background_pirate_flag { +.icon_background_mountain_pyramid { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1449px -1446px; width: 68px; height: 68px; } -.icon_background_pixelists_workshop { +.icon_background_night_dunes { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1380px -1446px; width: 68px; height: 68px; } -.icon_background_pumpkin_patch { +.icon_background_ocean_sunrise { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1311px -1446px; width: 68px; height: 68px; } -.icon_background_purple { +.icon_background_on_tree_branch { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1242px -1446px; width: 68px; height: 68px; } -.icon_background_pyramids { +.icon_background_open_waters { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1173px -1446px; width: 68px; height: 68px; } -.icon_background_rainbows_end { +.icon_background_orchard { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1104px -1446px; width: 68px; height: 68px; } -.icon_background_rainforest { +.icon_background_pagodas { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1035px -1446px; width: 68px; height: 68px; } -.icon_background_rainy_city { +.icon_background_pirate_flag { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -966px -1446px; width: 68px; height: 68px; } -.icon_background_red { +.icon_background_pixelists_workshop { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -897px -1446px; width: 68px; height: 68px; } -.icon_background_rolling_hills { +.icon_background_pumpkin_patch { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -828px -1446px; width: 68px; height: 68px; } -.icon_background_rose_garden { +.icon_background_purple { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -759px -1446px; width: 68px; height: 68px; } -.icon_background_rowboat { +.icon_background_pyramids { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -690px -1446px; width: 68px; height: 68px; } -.icon_background_sandcastle { +.icon_background_rainbows_end { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -621px -1446px; width: 68px; height: 68px; } -.icon_background_seafarer_ship { +.icon_background_rainforest { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -552px -1446px; width: 68px; height: 68px; } -.icon_background_shimmering_ice_prism { +.icon_background_rainy_city { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -483px -1446px; width: 68px; height: 68px; } -.icon_background_shimmery_bubbles { +.icon_background_red { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -414px -1446px; width: 68px; height: 68px; } -.icon_background_slimy_swamp { +.icon_background_rolling_hills { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -345px -1446px; width: 68px; height: 68px; } -.icon_background_snowman_army { +.icon_background_rose_garden { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -276px -1446px; width: 68px; height: 68px; } -.icon_background_snowy_pines { +.icon_background_rowboat { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -207px -1446px; width: 68px; height: 68px; } -.icon_background_snowy_sunrise { +.icon_background_sandcastle { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -138px -1446px; width: 68px; height: 68px; } -.icon_background_south_pole { +.icon_background_seafarer_ship { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -69px -1446px; width: 68px; height: 68px; } -.icon_background_sparkling_snowflake { +.icon_background_shimmering_ice_prism { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: 0px -1446px; width: 68px; height: 68px; } -.icon_background_spider_web { +.icon_background_shimmery_bubbles { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1487px -1311px; width: 68px; height: 68px; } -.icon_background_spooky_hotel { +.icon_background_slimy_swamp { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1487px -1242px; width: 68px; height: 68px; } -.icon_background_spring_rain { +.icon_background_snowman_army { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1487px -1173px; width: 68px; height: 68px; } -.icon_background_stable { +.icon_background_snowy_pines { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1487px -1104px; width: 68px; height: 68px; } -.icon_background_stained_glass { +.icon_background_snowy_sunrise { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1487px -1035px; width: 68px; height: 68px; } -.icon_background_starry_skies { +.icon_background_south_pole { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1487px -966px; width: 68px; height: 68px; } -.icon_background_starry_winter_night { +.icon_background_sparkling_snowflake { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1487px -897px; width: 68px; height: 68px; } -.icon_background_stoikalm_volcanoes { +.icon_background_spider_web { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1487px -828px; width: 68px; height: 68px; } -.icon_background_stone_circle { +.icon_background_spooky_hotel { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1487px -759px; width: 68px; height: 68px; } -.icon_background_stormy_rooftops { +.icon_background_spring_rain { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1487px -690px; width: 68px; height: 68px; } -.icon_background_stormy_ship { +.icon_background_stable { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1487px -621px; width: 68px; height: 68px; } -.icon_background_strange_sewers { +.icon_background_stained_glass { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1487px -552px; width: 68px; height: 68px; } -.icon_background_summer_fireworks { +.icon_background_starry_skies { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1487px -483px; width: 68px; height: 68px; } -.icon_background_sunken_ship { +.icon_background_starry_winter_night { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1487px -414px; width: 68px; height: 68px; } -.icon_background_sunset_meadow { +.icon_background_stoikalm_volcanoes { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1487px -345px; width: 68px; height: 68px; } -.icon_background_sunset_oasis { +.icon_background_stone_circle { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1487px -276px; width: 68px; height: 68px; } -.icon_background_sunset_savannah { +.icon_background_stormy_rooftops { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1487px -207px; width: 68px; height: 68px; } -.icon_background_swarming_darkness { +.icon_background_stormy_ship { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1487px -138px; width: 68px; height: 68px; } -.icon_background_tar_pits { +.icon_background_strange_sewers { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1487px -69px; width: 68px; height: 68px; } -.icon_background_tavern { +.icon_background_summer_fireworks { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1487px 0px; width: 68px; height: 68px; } -.icon_background_terraced_rice_field { +.icon_background_sunken_ship { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1380px -1377px; width: 68px; height: 68px; } -.icon_background_thunderstorm { +.icon_background_sunset_meadow { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1311px -1377px; width: 68px; height: 68px; } -.icon_background_tornado { +.icon_background_sunset_oasis { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1242px -1377px; width: 68px; height: 68px; } -.icon_background_toymakers_workshop { +.icon_background_sunset_savannah { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1173px -1377px; width: 68px; height: 68px; } -.icon_background_treasure_room { +.icon_background_swarming_darkness { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1104px -1377px; width: 68px; height: 68px; } -.icon_background_tree_roots { +.icon_background_tar_pits { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1035px -1377px; width: 68px; height: 68px; } -.icon_background_tulip_garden { +.icon_background_tavern { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -966px -1377px; width: 68px; height: 68px; } -.icon_background_twinkly_lights { +.icon_background_terraced_rice_field { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -897px -1377px; width: 68px; height: 68px; } -.icon_background_twinkly_party_lights { +.icon_background_thunderstorm { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -828px -1377px; width: 68px; height: 68px; } -.icon_background_violet { +.icon_background_tide_pool { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -759px -1377px; width: 68px; height: 68px; } -.icon_background_volcano { +.icon_background_tornado { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -690px -1377px; width: 68px; height: 68px; } -.icon_background_waterfall_rock { +.icon_background_toymakers_workshop { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -621px -1377px; width: 68px; height: 68px; } -.icon_background_wedding_arch { +.icon_background_treasure_room { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -552px -1377px; width: 68px; height: 68px; } -.icon_background_windy_autumn { +.icon_background_tree_roots { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -483px -1377px; width: 68px; height: 68px; } -.icon_background_winter_fireworks { +.icon_background_tulip_garden { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -414px -1377px; width: 68px; height: 68px; } -.icon_background_winter_night { +.icon_background_twinkly_lights { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -345px -1377px; width: 68px; height: 68px; } -.icon_background_winter_storefront { +.icon_background_twinkly_party_lights { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -276px -1377px; width: 68px; height: 68px; } -.icon_background_winter_town { +.icon_background_violet { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -207px -1377px; width: 68px; height: 68px; } -.icon_background_yellow { +.icon_background_volcano { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -138px -1377px; width: 68px; height: 68px; } +.icon_background_waterfall_rock { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -69px -1377px; + width: 68px; + height: 68px; +} +.icon_background_wedding_arch { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: 0px -1377px; + width: 68px; + height: 68px; +} +.icon_background_windy_autumn { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1449px -1584px; + width: 68px; + height: 68px; +} +.icon_background_winter_fireworks { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1396px -1277px; + width: 68px; + height: 68px; +} +.icon_background_winter_night { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1396px -1208px; + width: 68px; + height: 68px; +} +.icon_background_winter_storefront { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1396px -1139px; + width: 68px; + height: 68px; +} +.icon_background_winter_town { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1556px -897px; + width: 68px; + height: 68px; +} +.icon_background_yellow { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1396px -1070px; + width: 68px; + height: 68px; +} .hair_beard_1_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -364px -1286px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -389px -1301px; - width: 60px; - height: 60px; -} -.hair_beard_1_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -728px -1286px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -753px -1301px; - width: 60px; - height: 60px; -} -.hair_beard_1_black { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -577px -592px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_black { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -602px -607px; - width: 60px; - height: 60px; -} -.hair_beard_1_blond { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -910px -1286px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_blond { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -935px -1301px; - width: 60px; - height: 60px; -} -.hair_beard_1_blue { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1001px -1286px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_blue { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1026px -1301px; - width: 60px; - height: 60px; -} -.hair_beard_1_brown { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1092px -1286px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_brown { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1117px -1301px; - width: 60px; - height: 60px; -} -.hair_beard_1_candycane { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1183px -1286px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_candycane { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1208px -1301px; - width: 60px; - height: 60px; -} -.hair_beard_1_candycorn { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1274px -1286px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_candycorn { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1299px -1301px; - width: 60px; - height: 60px; -} -.hair_beard_1_festive { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1396px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_festive { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1421px -15px; - width: 60px; - height: 60px; -} -.hair_beard_1_frost { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1396px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_frost { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1421px -106px; - width: 60px; - height: 60px; -} -.hair_beard_1_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1396px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1421px -197px; - width: 60px; - height: 60px; -} -.hair_beard_1_green { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1396px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_green { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1421px -288px; - width: 60px; - height: 60px; -} -.hair_beard_1_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1396px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1421px -379px; - width: 60px; - height: 60px; -} -.hair_beard_1_holly { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1396px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_holly { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1421px -470px; - width: 60px; - height: 60px; -} -.hair_beard_1_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1396px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1421px -561px; - width: 60px; - height: 60px; -} -.hair_beard_1_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1396px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1421px -652px; - width: 60px; - height: 60px; -} -.hair_beard_1_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -486px -592px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -511px -607px; - width: 60px; - height: 60px; -} -.hair_beard_1_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1396px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1421px -834px; - width: 60px; - height: 60px; -} -.hair_beard_1_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1396px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1421px -925px; - width: 60px; - height: 60px; -} -.hair_beard_1_porange { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1396px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_porange { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1421px -1016px; - width: 60px; - height: 60px; -} -.hair_beard_1_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1396px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1421px -1107px; - width: 60px; - height: 60px; -} -.hair_beard_1_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1396px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1421px -1198px; - width: 60px; - height: 60px; -} -.hair_beard_1_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1396px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1421px -1289px; - width: 60px; - height: 60px; -} -.hair_beard_1_purple { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1396px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_purple { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1421px -743px; - width: 60px; - height: 60px; -} -.hair_beard_1_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -819px -1286px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -844px -1301px; - width: 60px; - height: 60px; -} -.hair_beard_1_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -637px -1286px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -662px -1301px; - width: 60px; - height: 60px; -} -.hair_beard_1_red { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -546px -1286px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_red { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -571px -1301px; - width: 60px; - height: 60px; -} -.hair_beard_1_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -455px -1286px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -480px -1301px; - width: 60px; - height: 60px; -} -.hair_beard_1_white { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -273px -1286px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_white { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -298px -1301px; - width: 60px; - height: 60px; -} -.hair_beard_1_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -182px -1286px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -207px -1301px; - width: 60px; - height: 60px; -} -.hair_beard_1_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -91px -1286px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -116px -1301px; - width: 60px; - height: 60px; -} -.hair_beard_1_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: 0px -1286px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -25px -1301px; - width: 60px; - height: 60px; -} -.hair_beard_1_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1305px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1330px -1198px; - width: 60px; - height: 60px; -} -.hair_beard_2_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1214px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1239px -1107px; - width: 60px; - height: 60px; -} -.hair_beard_2_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1305px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1330px -1107px; - width: 60px; - height: 60px; -} -.hair_beard_2_black { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1305px -1001px; width: 90px; height: 90px; } -.customize-option.hair_beard_2_black { +.customize-option.hair_beard_1_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1330px -1016px; width: 60px; height: 60px; } -.hair_beard_2_blond { +.hair_beard_1_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1396px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1421px -15px; + width: 60px; + height: 60px; +} +.hair_beard_1_black { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1396px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_black { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1421px -106px; + width: 60px; + height: 60px; +} +.hair_beard_1_blond { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1396px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_blond { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1421px -197px; + width: 60px; + height: 60px; +} +.hair_beard_1_blue { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1396px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_blue { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1421px -288px; + width: 60px; + height: 60px; +} +.hair_beard_1_brown { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1396px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_brown { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1421px -379px; + width: 60px; + height: 60px; +} +.hair_beard_1_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1396px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1421px -470px; + width: 60px; + height: 60px; +} +.hair_beard_1_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1396px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1421px -561px; + width: 60px; + height: 60px; +} +.hair_beard_1_festive { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1396px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_festive { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1421px -652px; + width: 60px; + height: 60px; +} +.hair_beard_1_frost { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1396px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_frost { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1421px -743px; + width: 60px; + height: 60px; +} +.hair_beard_1_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1396px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1421px -834px; + width: 60px; + height: 60px; +} +.hair_beard_1_green { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1396px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_green { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1421px -925px; + width: 60px; + height: 60px; +} +.hair_beard_1_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1274px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1299px -1301px; + width: 60px; + height: 60px; +} +.hair_beard_1_holly { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1183px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_holly { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1208px -1301px; + width: 60px; + height: 60px; +} +.hair_beard_1_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1092px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1117px -1301px; + width: 60px; + height: 60px; +} +.hair_beard_1_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1001px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1026px -1301px; + width: 60px; + height: 60px; +} +.hair_beard_1_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -910px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -935px -1301px; + width: 60px; + height: 60px; +} +.hair_beard_1_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -728px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -753px -1301px; + width: 60px; + height: 60px; +} +.hair_beard_1_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -637px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -662px -1301px; + width: 60px; + height: 60px; +} +.hair_beard_1_porange { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -546px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_porange { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -571px -1301px; + width: 60px; + height: 60px; +} +.hair_beard_1_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -455px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -480px -1301px; + width: 60px; + height: 60px; +} +.hair_beard_1_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -364px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -389px -1301px; + width: 60px; + height: 60px; +} +.hair_beard_1_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -273px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -298px -1301px; + width: 60px; + height: 60px; +} +.hair_beard_1_purple { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -182px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_purple { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -207px -1301px; + width: 60px; + height: 60px; +} +.hair_beard_1_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -91px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -116px -1301px; + width: 60px; + height: 60px; +} +.hair_beard_1_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: 0px -1286px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -25px -1301px; + width: 60px; + height: 60px; +} +.hair_beard_1_red { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1305px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_red { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1330px -1198px; + width: 60px; + height: 60px; +} +.hair_beard_1_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1305px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_1_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1330px -1107px; + width: 60px; + height: 60px; +} +.hair_beard_1_white { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1305px -910px; width: 90px; height: 90px; } -.customize-option.hair_beard_2_blond { +.customize-option.hair_beard_1_white { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1330px -925px; width: 60px; height: 60px; } -.hair_beard_2_blue { +.hair_beard_1_winternight { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1305px -819px; width: 90px; height: 90px; } -.customize-option.hair_beard_2_blue { +.customize-option.hair_beard_1_winternight { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1330px -834px; width: 60px; height: 60px; } -.hair_beard_2_brown { +.hair_beard_1_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1305px -728px; width: 90px; height: 90px; } -.customize-option.hair_beard_2_brown { +.customize-option.hair_beard_1_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1330px -743px; width: 60px; height: 60px; } -.hair_beard_2_candycane { +.hair_beard_1_yellow { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1305px -637px; width: 90px; height: 90px; } -.customize-option.hair_beard_2_candycane { +.customize-option.hair_beard_1_yellow { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1330px -652px; width: 60px; height: 60px; } -.hair_beard_2_candycorn { +.hair_beard_1_zombie { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1305px -546px; width: 90px; height: 90px; } -.customize-option.hair_beard_2_candycorn { +.customize-option.hair_beard_1_zombie { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1330px -561px; width: 60px; height: 60px; } -.hair_beard_2_festive { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1305px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_festive { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1330px -470px; - width: 60px; - height: 60px; -} -.hair_beard_2_frost { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1305px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_frost { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1330px -379px; - width: 60px; - height: 60px; -} -.hair_beard_2_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1305px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1330px -288px; - width: 60px; - height: 60px; -} -.hair_beard_2_green { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1305px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_green { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1330px -197px; - width: 60px; - height: 60px; -} -.hair_beard_2_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1305px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1330px -106px; - width: 60px; - height: 60px; -} -.hair_beard_2_holly { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1305px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_holly { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1330px -15px; - width: 60px; - height: 60px; -} -.hair_beard_2_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1183px -1195px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1208px -1210px; - width: 60px; - height: 60px; -} -.hair_beard_2_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1092px -1195px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1117px -1210px; - width: 60px; - height: 60px; -} -.hair_beard_2_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1001px -1195px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1026px -1210px; - width: 60px; - height: 60px; -} -.hair_beard_2_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -910px -1195px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -935px -1210px; - width: 60px; - height: 60px; -} -.hair_beard_2_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -819px -1195px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -844px -1210px; - width: 60px; - height: 60px; -} -.hair_beard_2_porange { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -728px -1195px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_porange { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -753px -1210px; - width: 60px; - height: 60px; -} -.hair_beard_2_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -637px -1195px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -662px -1210px; - width: 60px; - height: 60px; -} -.hair_beard_2_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -546px -1195px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -571px -1210px; - width: 60px; - height: 60px; -} -.hair_beard_2_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -455px -1195px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -480px -1210px; - width: 60px; - height: 60px; -} -.hair_beard_2_purple { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -364px -1195px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_purple { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -389px -1210px; - width: 60px; - height: 60px; -} -.hair_beard_2_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -273px -1195px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -298px -1210px; - width: 60px; - height: 60px; -} -.hair_beard_2_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -182px -1195px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -207px -1210px; - width: 60px; - height: 60px; -} -.hair_beard_2_red { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -91px -1195px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_red { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -116px -1210px; - width: 60px; - height: 60px; -} -.hair_beard_2_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: 0px -1195px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -25px -1210px; - width: 60px; - height: 60px; -} -.hair_beard_2_white { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1214px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_white { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1239px -1016px; - width: 60px; - height: 60px; -} -.hair_beard_2_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1214px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1239px -925px; - width: 60px; - height: 60px; -} -.hair_beard_2_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1214px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1239px -834px; - width: 60px; - height: 60px; -} -.hair_beard_2_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1214px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1239px -743px; - width: 60px; - height: 60px; -} -.hair_beard_2_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1214px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_2_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1239px -652px; - width: 60px; - height: 60px; -} -.hair_beard_3_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1123px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1148px -379px; - width: 60px; - height: 60px; -} -.hair_beard_3_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1214px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1239px -561px; - width: 60px; - height: 60px; -} -.hair_beard_3_black { +.hair_beard_2_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1214px -455px; width: 90px; height: 90px; } -.customize-option.hair_beard_3_black { +.customize-option.hair_beard_2_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1239px -470px; width: 60px; height: 60px; } -.hair_beard_3_blond { +.hair_beard_2_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1305px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1330px -470px; + width: 60px; + height: 60px; +} +.hair_beard_2_black { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1305px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_black { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1330px -379px; + width: 60px; + height: 60px; +} +.hair_beard_2_blond { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1305px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_blond { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1330px -288px; + width: 60px; + height: 60px; +} +.hair_beard_2_blue { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1305px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_blue { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1330px -197px; + width: 60px; + height: 60px; +} +.hair_beard_2_brown { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1305px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_brown { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1330px -106px; + width: 60px; + height: 60px; +} +.hair_beard_2_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1305px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1330px -15px; + width: 60px; + height: 60px; +} +.hair_beard_2_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1183px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1208px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_2_festive { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1092px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_festive { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1117px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_2_frost { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1001px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_frost { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1026px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_2_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -910px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -935px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_2_green { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -819px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_green { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -844px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_2_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -728px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -753px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_2_holly { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -637px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_holly { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -662px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_2_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -546px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -571px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_2_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -455px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -480px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_2_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -364px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -389px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_2_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -273px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -298px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_2_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -182px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -207px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_2_porange { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -91px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_porange { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -116px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_2_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: 0px -1195px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -25px -1210px; + width: 60px; + height: 60px; +} +.hair_beard_2_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1214px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1239px -1107px; + width: 60px; + height: 60px; +} +.hair_beard_2_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1214px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1239px -1016px; + width: 60px; + height: 60px; +} +.hair_beard_2_purple { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1214px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_purple { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1239px -925px; + width: 60px; + height: 60px; +} +.hair_beard_2_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1214px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1239px -834px; + width: 60px; + height: 60px; +} +.hair_beard_2_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1214px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1239px -743px; + width: 60px; + height: 60px; +} +.hair_beard_2_red { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1214px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_red { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1239px -652px; + width: 60px; + height: 60px; +} +.hair_beard_2_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1214px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_2_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1239px -561px; + width: 60px; + height: 60px; +} +.hair_beard_2_white { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1214px -364px; width: 90px; height: 90px; } -.customize-option.hair_beard_3_blond { +.customize-option.hair_beard_2_white { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1239px -379px; width: 60px; height: 60px; } -.hair_beard_3_blue { +.hair_beard_2_winternight { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1214px -273px; width: 90px; height: 90px; } -.customize-option.hair_beard_3_blue { +.customize-option.hair_beard_2_winternight { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1239px -288px; width: 60px; height: 60px; } -.hair_beard_3_brown { +.hair_beard_2_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1214px -182px; width: 90px; height: 90px; } -.customize-option.hair_beard_3_brown { +.customize-option.hair_beard_2_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1239px -197px; width: 60px; height: 60px; } -.hair_beard_3_candycane { +.hair_beard_2_yellow { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1214px -91px; width: 90px; height: 90px; } -.customize-option.hair_beard_3_candycane { +.customize-option.hair_beard_2_yellow { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1239px -106px; width: 60px; height: 60px; } -.hair_beard_3_candycorn { +.hair_beard_2_zombie { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1214px 0px; width: 90px; height: 90px; } -.customize-option.hair_beard_3_candycorn { +.customize-option.hair_beard_2_zombie { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -1239px -15px; width: 60px; height: 60px; } -.hair_beard_3_festive { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1092px -1104px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_festive { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1117px -1119px; - width: 60px; - height: 60px; -} -.hair_beard_3_frost { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1001px -1104px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_frost { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1026px -1119px; - width: 60px; - height: 60px; -} -.hair_beard_3_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -910px -1104px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -935px -1119px; - width: 60px; - height: 60px; -} -.hair_beard_3_green { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -819px -1104px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_green { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -844px -1119px; - width: 60px; - height: 60px; -} -.hair_beard_3_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -728px -1104px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -753px -1119px; - width: 60px; - height: 60px; -} -.hair_beard_3_holly { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -637px -1104px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_holly { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -662px -1119px; - width: 60px; - height: 60px; -} -.hair_beard_3_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -546px -1104px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -571px -1119px; - width: 60px; - height: 60px; -} -.hair_beard_3_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -455px -1104px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -480px -1119px; - width: 60px; - height: 60px; -} -.hair_beard_3_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -364px -1104px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -389px -1119px; - width: 60px; - height: 60px; -} -.hair_beard_3_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -273px -1104px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -298px -1119px; - width: 60px; - height: 60px; -} -.hair_beard_3_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -182px -1104px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -207px -1119px; - width: 60px; - height: 60px; -} -.hair_beard_3_porange { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -91px -1104px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_porange { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -116px -1119px; - width: 60px; - height: 60px; -} -.hair_beard_3_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: 0px -1104px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -25px -1119px; - width: 60px; - height: 60px; -} -.hair_beard_3_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1123px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1148px -1016px; - width: 60px; - height: 60px; -} -.hair_beard_3_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1123px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1148px -925px; - width: 60px; - height: 60px; -} -.hair_beard_3_purple { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1123px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_purple { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1148px -834px; - width: 60px; - height: 60px; -} -.hair_beard_3_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1123px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1148px -743px; - width: 60px; - height: 60px; -} -.hair_beard_3_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1123px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1148px -652px; - width: 60px; - height: 60px; -} -.hair_beard_3_red { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1123px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_red { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1148px -561px; - width: 60px; - height: 60px; -} -.hair_beard_3_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1123px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1148px -470px; - width: 60px; - height: 60px; -} -.hair_beard_3_white { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1123px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_white { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1148px -288px; - width: 60px; - height: 60px; -} -.hair_beard_3_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1123px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1148px -197px; - width: 60px; - height: 60px; -} -.hair_beard_3_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1123px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1148px -106px; - width: 60px; - height: 60px; -} -.hair_beard_3_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1123px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1148px -15px; - width: 60px; - height: 60px; -} -.hair_beard_3_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1001px -1013px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_3_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1026px -1028px; - width: 60px; - height: 60px; -} -.hair_mustache_1_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -455px -922px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -480px -937px; - width: 60px; - height: 60px; -} -.hair_mustache_1_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -910px -1013px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -935px -1028px; - width: 60px; - height: 60px; -} -.hair_mustache_1_black { +.hair_beard_3_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -819px -1013px; width: 90px; height: 90px; } -.customize-option.hair_mustache_1_black { +.customize-option.hair_beard_3_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -844px -1028px; width: 60px; height: 60px; } -.hair_mustache_1_blond { +.hair_beard_3_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1092px -1104px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1117px -1119px; + width: 60px; + height: 60px; +} +.hair_beard_3_black { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1001px -1104px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_black { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1026px -1119px; + width: 60px; + height: 60px; +} +.hair_beard_3_blond { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -910px -1104px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_blond { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -935px -1119px; + width: 60px; + height: 60px; +} +.hair_beard_3_blue { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -819px -1104px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_blue { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -844px -1119px; + width: 60px; + height: 60px; +} +.hair_beard_3_brown { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -728px -1104px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_brown { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -753px -1119px; + width: 60px; + height: 60px; +} +.hair_beard_3_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -637px -1104px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -662px -1119px; + width: 60px; + height: 60px; +} +.hair_beard_3_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -546px -1104px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -571px -1119px; + width: 60px; + height: 60px; +} +.hair_beard_3_festive { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -455px -1104px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_festive { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -480px -1119px; + width: 60px; + height: 60px; +} +.hair_beard_3_frost { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -364px -1104px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_frost { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -389px -1119px; + width: 60px; + height: 60px; +} +.hair_beard_3_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -273px -1104px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -298px -1119px; + width: 60px; + height: 60px; +} +.hair_beard_3_green { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -182px -1104px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_green { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -207px -1119px; + width: 60px; + height: 60px; +} +.hair_beard_3_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -91px -1104px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -116px -1119px; + width: 60px; + height: 60px; +} +.hair_beard_3_holly { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: 0px -1104px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_holly { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -25px -1119px; + width: 60px; + height: 60px; +} +.hair_beard_3_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1123px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1148px -1016px; + width: 60px; + height: 60px; +} +.hair_beard_3_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1123px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1148px -925px; + width: 60px; + height: 60px; +} +.hair_beard_3_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1123px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1148px -834px; + width: 60px; + height: 60px; +} +.hair_beard_3_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1123px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1148px -743px; + width: 60px; + height: 60px; +} +.hair_beard_3_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1123px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1148px -652px; + width: 60px; + height: 60px; +} +.hair_beard_3_porange { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1123px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_porange { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1148px -561px; + width: 60px; + height: 60px; +} +.hair_beard_3_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1123px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1148px -470px; + width: 60px; + height: 60px; +} +.hair_beard_3_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1123px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1148px -379px; + width: 60px; + height: 60px; +} +.hair_beard_3_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1123px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1148px -288px; + width: 60px; + height: 60px; +} +.hair_beard_3_purple { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1123px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_purple { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1148px -197px; + width: 60px; + height: 60px; +} +.hair_beard_3_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1123px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1148px -106px; + width: 60px; + height: 60px; +} +.hair_beard_3_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1123px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1148px -15px; + width: 60px; + height: 60px; +} +.hair_beard_3_red { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1001px -1013px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_red { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1026px -1028px; + width: 60px; + height: 60px; +} +.hair_beard_3_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -910px -1013px; + width: 90px; + height: 90px; +} +.customize-option.hair_beard_3_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -935px -1028px; + width: 60px; + height: 60px; +} +.hair_beard_3_white { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -728px -1013px; width: 90px; height: 90px; } -.customize-option.hair_mustache_1_blond { +.customize-option.hair_beard_3_white { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -753px -1028px; width: 60px; height: 60px; } -.hair_mustache_1_blue { +.hair_beard_3_winternight { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -637px -1013px; width: 90px; height: 90px; } -.customize-option.hair_mustache_1_blue { +.customize-option.hair_beard_3_winternight { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -662px -1028px; width: 60px; height: 60px; } -.hair_mustache_1_brown { +.hair_beard_3_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -546px -1013px; width: 90px; height: 90px; } -.customize-option.hair_mustache_1_brown { +.customize-option.hair_beard_3_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -571px -1028px; width: 60px; height: 60px; } -.hair_mustache_1_candycane { +.hair_beard_3_yellow { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -455px -1013px; width: 90px; height: 90px; } -.customize-option.hair_mustache_1_candycane { +.customize-option.hair_beard_3_yellow { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -480px -1028px; width: 60px; height: 60px; } -.hair_mustache_1_candycorn { +.hair_beard_3_zombie { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -364px -1013px; width: 90px; height: 90px; } -.customize-option.hair_mustache_1_candycorn { +.customize-option.hair_beard_3_zombie { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -389px -1028px; width: 60px; height: 60px; } -.hair_mustache_1_festive { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -273px -1013px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_festive { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -298px -1028px; - width: 60px; - height: 60px; -} -.hair_mustache_1_frost { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -182px -1013px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_frost { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -207px -1028px; - width: 60px; - height: 60px; -} -.hair_mustache_1_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -91px -1013px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -116px -1028px; - width: 60px; - height: 60px; -} -.hair_mustache_1_green { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: 0px -1013px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_green { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -25px -1028px; - width: 60px; - height: 60px; -} -.hair_mustache_1_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1032px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1057px -925px; - width: 60px; - height: 60px; -} -.hair_mustache_1_holly { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1032px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_holly { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1057px -834px; - width: 60px; - height: 60px; -} -.hair_mustache_1_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1032px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1057px -743px; - width: 60px; - height: 60px; -} -.hair_mustache_1_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1032px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1057px -652px; - width: 60px; - height: 60px; -} -.hair_mustache_1_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1032px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1057px -561px; - width: 60px; - height: 60px; -} -.hair_mustache_1_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1032px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1057px -470px; - width: 60px; - height: 60px; -} -.hair_mustache_1_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1032px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1057px -379px; - width: 60px; - height: 60px; -} -.hair_mustache_1_porange { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1032px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_porange { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1057px -288px; - width: 60px; - height: 60px; -} -.hair_mustache_1_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1032px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1057px -197px; - width: 60px; - height: 60px; -} -.hair_mustache_1_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1032px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1057px -106px; - width: 60px; - height: 60px; -} -.hair_mustache_1_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1032px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1057px -15px; - width: 60px; - height: 60px; -} -.hair_mustache_1_purple { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -910px -922px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_purple { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -935px -937px; - width: 60px; - height: 60px; -} -.hair_mustache_1_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -819px -922px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -844px -937px; - width: 60px; - height: 60px; -} -.hair_mustache_1_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -728px -922px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -753px -937px; - width: 60px; - height: 60px; -} -.hair_mustache_1_red { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -637px -922px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_red { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -662px -937px; - width: 60px; - height: 60px; -} -.hair_mustache_1_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -546px -922px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -571px -937px; - width: 60px; - height: 60px; -} -.hair_mustache_1_white { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -364px -922px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_white { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -389px -937px; - width: 60px; - height: 60px; -} -.hair_mustache_1_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -273px -922px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -298px -937px; - width: 60px; - height: 60px; -} -.hair_mustache_1_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -182px -922px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -207px -937px; - width: 60px; - height: 60px; -} -.hair_mustache_1_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -91px -922px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -116px -937px; - width: 60px; - height: 60px; -} -.hair_mustache_1_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: 0px -922px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_1_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -25px -937px; - width: 60px; - height: 60px; -} -.hair_mustache_2_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -850px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -875px -106px; - width: 60px; - height: 60px; -} -.hair_mustache_2_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -941px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_mustache_2_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -966px -834px; - width: 60px; - height: 60px; -} -.hair_mustache_2_black { +.hair_mustache_1_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -941px -728px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_black { +.customize-option.hair_mustache_1_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -966px -743px; width: 60px; height: 60px; } -.hair_mustache_2_blond { +.hair_mustache_1_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -273px -1013px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -298px -1028px; + width: 60px; + height: 60px; +} +.hair_mustache_1_black { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -182px -1013px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_black { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -207px -1028px; + width: 60px; + height: 60px; +} +.hair_mustache_1_blond { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -91px -1013px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_blond { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -116px -1028px; + width: 60px; + height: 60px; +} +.hair_mustache_1_blue { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: 0px -1013px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_blue { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -25px -1028px; + width: 60px; + height: 60px; +} +.hair_mustache_1_brown { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1032px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_brown { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1057px -925px; + width: 60px; + height: 60px; +} +.hair_mustache_1_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1032px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1057px -834px; + width: 60px; + height: 60px; +} +.hair_mustache_1_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1032px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1057px -743px; + width: 60px; + height: 60px; +} +.hair_mustache_1_festive { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1032px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_festive { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1057px -652px; + width: 60px; + height: 60px; +} +.hair_mustache_1_frost { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1032px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_frost { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1057px -561px; + width: 60px; + height: 60px; +} +.hair_mustache_1_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1032px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1057px -470px; + width: 60px; + height: 60px; +} +.hair_mustache_1_green { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1032px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_green { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1057px -379px; + width: 60px; + height: 60px; +} +.hair_mustache_1_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1032px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1057px -288px; + width: 60px; + height: 60px; +} +.hair_mustache_1_holly { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1032px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_holly { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1057px -197px; + width: 60px; + height: 60px; +} +.hair_mustache_1_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1032px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1057px -106px; + width: 60px; + height: 60px; +} +.hair_mustache_1_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1032px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -1057px -15px; + width: 60px; + height: 60px; +} +.hair_mustache_1_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -910px -922px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -935px -937px; + width: 60px; + height: 60px; +} +.hair_mustache_1_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -819px -922px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -844px -937px; + width: 60px; + height: 60px; +} +.hair_mustache_1_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -728px -922px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -753px -937px; + width: 60px; + height: 60px; +} +.hair_mustache_1_porange { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -637px -922px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_porange { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -662px -937px; + width: 60px; + height: 60px; +} +.hair_mustache_1_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -546px -922px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -571px -937px; + width: 60px; + height: 60px; +} +.hair_mustache_1_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -455px -922px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -480px -937px; + width: 60px; + height: 60px; +} +.hair_mustache_1_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -364px -922px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -389px -937px; + width: 60px; + height: 60px; +} +.hair_mustache_1_purple { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -273px -922px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_purple { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -298px -937px; + width: 60px; + height: 60px; +} +.hair_mustache_1_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -182px -922px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -207px -937px; + width: 60px; + height: 60px; +} +.hair_mustache_1_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -91px -922px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -116px -937px; + width: 60px; + height: 60px; +} +.hair_mustache_1_red { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: 0px -922px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_red { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -25px -937px; + width: 60px; + height: 60px; +} +.hair_mustache_1_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -941px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_1_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -966px -834px; + width: 60px; + height: 60px; +} +.hair_mustache_1_white { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -941px -637px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_blond { +.customize-option.hair_mustache_1_white { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -966px -652px; width: 60px; height: 60px; } -.hair_mustache_2_blue { +.hair_mustache_1_winternight { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -941px -546px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_blue { +.customize-option.hair_mustache_1_winternight { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -966px -561px; width: 60px; height: 60px; } -.hair_mustache_2_brown { +.hair_mustache_1_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -941px -455px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_brown { +.customize-option.hair_mustache_1_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -966px -470px; width: 60px; height: 60px; } -.hair_mustache_2_candycane { +.hair_mustache_1_yellow { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -941px -364px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_candycane { +.customize-option.hair_mustache_1_yellow { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -966px -379px; width: 60px; height: 60px; } -.hair_mustache_2_candycorn { +.hair_mustache_1_zombie { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -941px -273px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_candycorn { +.customize-option.hair_mustache_1_zombie { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -966px -288px; width: 60px; height: 60px; } -.hair_mustache_2_festive { +.hair_mustache_2_TRUred { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -273px -740px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_TRUred { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -298px -755px; + width: 60px; + height: 60px; +} +.hair_mustache_2_aurora { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -941px -182px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_festive { +.customize-option.hair_mustache_2_aurora { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -966px -197px; width: 60px; height: 60px; } -.hair_mustache_2_frost { +.hair_mustache_2_black { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -941px -91px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_frost { +.customize-option.hair_mustache_2_black { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -966px -106px; width: 60px; height: 60px; } -.hair_mustache_2_ghostwhite { +.hair_mustache_2_blond { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -941px 0px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_ghostwhite { +.customize-option.hair_mustache_2_blond { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -966px -15px; width: 60px; height: 60px; } -.hair_mustache_2_green { +.hair_mustache_2_blue { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -819px -831px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_green { +.customize-option.hair_mustache_2_blue { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -844px -846px; width: 60px; height: 60px; } -.hair_mustache_2_halloween { +.hair_mustache_2_brown { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -728px -831px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_halloween { +.customize-option.hair_mustache_2_brown { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -753px -846px; width: 60px; height: 60px; } -.hair_mustache_2_holly { +.hair_mustache_2_candycane { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -637px -831px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_holly { +.customize-option.hair_mustache_2_candycane { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -662px -846px; width: 60px; height: 60px; } -.hair_mustache_2_hollygreen { +.hair_mustache_2_candycorn { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -546px -831px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_hollygreen { +.customize-option.hair_mustache_2_candycorn { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -571px -846px; width: 60px; height: 60px; } -.hair_mustache_2_midnight { +.hair_mustache_2_festive { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -455px -831px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_midnight { +.customize-option.hair_mustache_2_festive { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -480px -846px; width: 60px; height: 60px; } -.hair_mustache_2_pblue { +.hair_mustache_2_frost { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -364px -831px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_pblue { +.customize-option.hair_mustache_2_frost { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -389px -846px; width: 60px; height: 60px; } -.hair_mustache_2_peppermint { +.hair_mustache_2_ghostwhite { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -273px -831px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_peppermint { +.customize-option.hair_mustache_2_ghostwhite { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -298px -846px; width: 60px; height: 60px; } -.hair_mustache_2_pgreen { +.hair_mustache_2_green { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -182px -831px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_pgreen { +.customize-option.hair_mustache_2_green { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -207px -846px; width: 60px; height: 60px; } -.hair_mustache_2_porange { +.hair_mustache_2_halloween { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -91px -831px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_porange { +.customize-option.hair_mustache_2_halloween { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -116px -846px; width: 60px; height: 60px; } -.hair_mustache_2_ppink { +.hair_mustache_2_holly { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: 0px -831px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_ppink { +.customize-option.hair_mustache_2_holly { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -25px -846px; width: 60px; height: 60px; } -.hair_mustache_2_ppurple { +.hair_mustache_2_hollygreen { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -850px -728px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_ppurple { +.customize-option.hair_mustache_2_hollygreen { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -875px -743px; width: 60px; height: 60px; } -.hair_mustache_2_pumpkin { +.hair_mustache_2_midnight { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -850px -637px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_pumpkin { +.customize-option.hair_mustache_2_midnight { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -875px -652px; width: 60px; height: 60px; } -.hair_mustache_2_purple { +.hair_mustache_2_pblue { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -850px -546px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_purple { +.customize-option.hair_mustache_2_pblue { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -875px -561px; width: 60px; height: 60px; } -.hair_mustache_2_pyellow { +.hair_mustache_2_peppermint { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -850px -455px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_pyellow { +.customize-option.hair_mustache_2_peppermint { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -875px -470px; width: 60px; height: 60px; } -.hair_mustache_2_rainbow { +.hair_mustache_2_pgreen { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -850px -364px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_rainbow { +.customize-option.hair_mustache_2_pgreen { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -875px -379px; width: 60px; height: 60px; } -.hair_mustache_2_red { +.hair_mustache_2_porange { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -850px -273px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_red { +.customize-option.hair_mustache_2_porange { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -875px -288px; width: 60px; height: 60px; } -.hair_mustache_2_snowy { +.hair_mustache_2_ppink { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -850px -182px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_snowy { +.customize-option.hair_mustache_2_ppink { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -875px -197px; width: 60px; height: 60px; } -.hair_mustache_2_white { +.hair_mustache_2_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -850px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -875px -106px; + width: 60px; + height: 60px; +} +.hair_mustache_2_pumpkin { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -850px 0px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_white { +.customize-option.hair_mustache_2_pumpkin { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -875px -15px; width: 60px; height: 60px; } -.hair_mustache_2_winternight { +.hair_mustache_2_purple { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -728px -740px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_winternight { +.customize-option.hair_mustache_2_purple { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -753px -755px; width: 60px; height: 60px; } -.hair_mustache_2_winterstar { +.hair_mustache_2_pyellow { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -637px -740px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_winterstar { +.customize-option.hair_mustache_2_pyellow { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -662px -755px; width: 60px; height: 60px; } -.hair_mustache_2_yellow { +.hair_mustache_2_rainbow { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -546px -740px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_yellow { +.customize-option.hair_mustache_2_rainbow { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -571px -755px; width: 60px; height: 60px; } -.hair_mustache_2_zombie { +.hair_mustache_2_red { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -455px -740px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_zombie { +.customize-option.hair_mustache_2_red { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); background-position: -480px -755px; width: 60px; height: 60px; } +.hair_mustache_2_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -364px -740px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -389px -755px; + width: 60px; + height: 60px; +} +.hair_mustache_2_white { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -182px -740px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_white { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -207px -755px; + width: 60px; + height: 60px; +} +.hair_mustache_2_winternight { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -91px -740px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_winternight { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -116px -755px; + width: 60px; + height: 60px; +} +.hair_mustache_2_winterstar { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: 0px -740px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_winterstar { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -25px -755px; + width: 60px; + height: 60px; +} +.hair_mustache_2_yellow { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -746px -592px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_yellow { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -771px -607px; + width: 60px; + height: 60px; +} +.hair_mustache_2_zombie { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -655px -592px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_zombie { + background-image: url('~assets/images/sprites/spritesmith-main-1.png'); + background-position: -680px -607px; + width: 60px; + height: 60px; +} .button_chair_black { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1694px -122px; + background-position: -1694px 0px; width: 60px; height: 60px; } .button_chair_blue { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1694px -61px; + background-position: -1625px -1518px; width: 60px; height: 60px; } .button_chair_green { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1694px 0px; + background-position: -1556px -1449px; width: 60px; height: 60px; } @@ -3078,97 +3114,25 @@ } .button_chair_red { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1556px -1449px; + background-position: -1518px -1584px; width: 60px; height: 60px; } .button_chair_yellow { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -1625px -1518px; + background-position: -1579px -1584px; width: 60px; height: 60px; } .chair_black { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -364px -740px; + background-position: -564px -592px; width: 90px; height: 90px; } .chair_blue { background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -273px -740px; + background-position: -819px -1286px; width: 90px; height: 90px; } -.chair_green { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -182px -740px; - width: 90px; - height: 90px; -} -.chair_pink { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -91px -740px; - width: 90px; - height: 90px; -} -.chair_red { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: 0px -740px; - width: 90px; - height: 90px; -} -.chair_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -759px -592px; - width: 90px; - height: 90px; -} -.hair_flower_1 { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -668px -592px; - width: 90px; - height: 90px; -} -.customize-option.hair_flower_1 { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -693px -607px; - width: 60px; - height: 60px; -} -.hair_flower_10 { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -256px -592px; - width: 114px; - height: 90px; -} -.customize-option.hair_flower_10 { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -281px -607px; - width: 60px; - height: 60px; -} -.hair_flower_11 { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -141px -592px; - width: 114px; - height: 90px; -} -.customize-option.hair_flower_11 { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -166px -607px; - width: 60px; - height: 60px; -} -.hair_flower_12 { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -371px -592px; - width: 114px; - height: 90px; -} -.customize-option.hair_flower_12 { - background-image: url('~assets/images/sprites/spritesmith-main-1.png'); - background-position: -396px -607px; - width: 60px; - height: 60px; -} diff --git a/website/client/assets/css/sprites/spritesmith-main-10.css b/website/client/assets/css/sprites/spritesmith-main-10.css index d7bcd7bfea..edbca44747 100644 --- a/website/client/assets/css/sprites/spritesmith-main-10.css +++ b/website/client/assets/css/sprites/spritesmith-main-10.css @@ -1,684 +1,924 @@ -.weapon_rogue_5 { +.shop_weapon_special_3 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1183px -1596px; - width: 90px; - height: 90px; -} -.weapon_rogue_6 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1373px -1454px; - width: 90px; - height: 90px; -} -.weapon_special_1 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1624px -1427px; - width: 102px; - height: 90px; -} -.weapon_special_2 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1001px -1596px; - width: 90px; - height: 90px; -} -.weapon_special_3 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1092px -1596px; - width: 90px; - height: 90px; -} -.weapon_special_aetherCrystals { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1624px -679px; - width: 114px; - height: 90px; -} -.weapon_special_bardInstrument { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1407px -1194px; - width: 90px; - height: 90px; -} -.weapon_special_fencingFoil { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1498px -1194px; - width: 90px; - height: 90px; -} -.weapon_special_lunarScythe { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1376px -1315px; - width: 90px; - height: 90px; -} -.weapon_special_mammothRiderSpear { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1467px -1315px; - width: 90px; - height: 90px; -} -.weapon_special_nomadsScimitar { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -190px -1454px; - width: 90px; - height: 90px; -} -.weapon_special_pageBanner { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -281px -1454px; - width: 90px; - height: 90px; -} -.weapon_special_roguishRainbowMessage { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -372px -1454px; - width: 90px; - height: 90px; -} -.weapon_special_skeletonKey { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -463px -1454px; - width: 90px; - height: 90px; -} -.weapon_special_tachi { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -554px -1454px; - width: 90px; - height: 90px; -} -.weapon_special_taskwoodsLantern { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -645px -1454px; - width: 90px; - height: 90px; -} -.weapon_special_tridentOfCrashingTides { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -827px -1454px; - width: 90px; - height: 90px; -} -.weapon_warrior_0 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1009px -1454px; - width: 90px; - height: 90px; -} -.weapon_warrior_1 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1100px -1454px; - width: 90px; - height: 90px; -} -.weapon_warrior_2 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1191px -1454px; - width: 90px; - height: 90px; -} -.weapon_warrior_3 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1282px -1454px; - width: 90px; - height: 90px; -} -.weapon_warrior_4 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1464px -1454px; - width: 90px; - height: 90px; -} -.weapon_warrior_5 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: 0px -1596px; - width: 90px; - height: 90px; -} -.weapon_warrior_6 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -91px -1596px; - width: 90px; - height: 90px; -} -.weapon_wizard_0 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -182px -1596px; - width: 90px; - height: 90px; -} -.weapon_wizard_1 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -273px -1596px; - width: 90px; - height: 90px; -} -.weapon_wizard_2 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -455px -1596px; - width: 90px; - height: 90px; -} -.weapon_wizard_3 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -546px -1596px; - width: 90px; - height: 90px; -} -.weapon_wizard_4 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -728px -1596px; - width: 90px; - height: 90px; -} -.weapon_wizard_5 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -819px -1596px; - width: 90px; - height: 90px; -} -.weapon_wizard_6 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -910px -1596px; - width: 90px; - height: 90px; -} -.Pet_Currency_Gem { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1412px -1596px; + background-position: -1507px -758px; width: 68px; height: 68px; } -.Pet_Currency_Gem1x { +.shop_weapon_special_aetherCrystals { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1743px -542px; - width: 15px; - height: 13px; -} -.Pet_Currency_Gem2x { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1738px -989px; - width: 30px; - height: 26px; -} -.PixelPaw-Gold { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -473px -220px; - width: 51px; - height: 51px; -} -.PixelPaw { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -473px -272px; - width: 51px; - height: 51px; -} -.PixelPaw002 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -473px -324px; - width: 51px; - height: 51px; -} -.avatar_floral_healer { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1624px -1027px; - width: 99px; - height: 99px; -} -.avatar_floral_rogue { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1624px -1227px; - width: 99px; - height: 99px; -} -.avatar_floral_warrior { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1624px -1327px; - width: 99px; - height: 99px; -} -.avatar_floral_wizard { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1624px -1127px; - width: 99px; - height: 99px; -} -.empty_bottles { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -882px -1246px; - width: 64px; - height: 54px; -} -.ghost { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1285px -1315px; - width: 90px; - height: 90px; -} -.inventory_present { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1555px -1454px; + background-position: -1518px -1630px; width: 68px; height: 68px; } -.inventory_present_01 { +.shop_weapon_special_bardInstrument { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -220px -272px; + background-position: -1498px -949px; width: 68px; height: 68px; } -.inventory_present_02 { +.shop_weapon_special_critical { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1498px -1131px; + width: 68px; + height: 68px; +} +.shop_weapon_special_fencingFoil { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -220px -305px; + width: 68px; + height: 68px; +} +.shop_weapon_special_lunarScythe { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); background-position: -660px -435px; width: 68px; height: 68px; } -.inventory_present_03 { +.shop_weapon_special_mammothRiderSpear { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); background-position: -660px -504px; width: 68px; height: 68px; } -.inventory_present_04 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1481px -1596px; - width: 68px; - height: 68px; -} -.inventory_present_05 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1343px -1596px; - width: 68px; - height: 68px; -} -.inventory_present_06 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -759px -1687px; - width: 68px; - height: 68px; -} -.inventory_present_07 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -220px -341px; - width: 68px; - height: 68px; -} -.inventory_present_08 { +.shop_weapon_special_nomadsScimitar { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); background-position: -660px -573px; width: 68px; height: 68px; } -.inventory_present_09 { +.shop_weapon_special_pageBanner { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); background-position: -880px -655px; width: 68px; height: 68px; } -.inventory_present_10 { +.shop_weapon_special_roguishRainbowMessage { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); background-position: -880px -724px; width: 68px; height: 68px; } -.inventory_present_11 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1100px -944px; - width: 68px; - height: 68px; -} -.inventory_present_12 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1100px -1013px; - width: 68px; - height: 68px; -} -.inventory_special_birthday { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1619px -1596px; - width: 68px; - height: 68px; -} -.inventory_special_congrats { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -690px -1687px; - width: 68px; - height: 68px; -} -.inventory_special_fortify { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -621px -1687px; - width: 68px; - height: 68px; -} -.inventory_special_getwell { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -552px -1687px; - width: 68px; - height: 68px; -} -.inventory_special_goodluck { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -483px -1687px; - width: 68px; - height: 68px; -} -.inventory_special_greeting { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -414px -1687px; - width: 68px; - height: 68px; -} -.inventory_special_nye { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -345px -1687px; - width: 68px; - height: 68px; -} -.inventory_special_opaquePotion { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -276px -1687px; - width: 68px; - height: 68px; -} -.inventory_special_seafoam { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -207px -1687px; - width: 68px; - height: 68px; -} -.inventory_special_shinySeed { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -138px -1687px; - width: 68px; - height: 68px; -} -.inventory_special_snowball { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -69px -1687px; - width: 68px; - height: 68px; -} -.inventory_special_spookySparkles { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: 0px -1687px; - width: 68px; - height: 68px; -} -.inventory_special_thankyou { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1688px -1596px; - width: 68px; - height: 68px; -} -.inventory_special_trinket { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -220px -203px; - width: 68px; - height: 68px; -} -.inventory_special_valentine { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1550px -1596px; - width: 68px; - height: 68px; -} -.knockout { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1624px -1518px; - width: 120px; - height: 47px; -} -.pet_key { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1274px -1596px; - width: 68px; - height: 68px; -} -.rebirth_orb { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1100px -875px; - width: 68px; - height: 68px; -} -.seafoam_star { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -736px -1454px; - width: 90px; - height: 90px; -} -.shop_armoire { +.shop_weapon_special_skeletonKey { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); background-position: -880px -793px; width: 68px; height: 68px; } +.shop_weapon_special_tachi { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1100px -875px; + width: 68px; + height: 68px; +} +.shop_weapon_special_taskwoodsLantern { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1100px -944px; + width: 68px; + height: 68px; +} +.shop_weapon_special_tridentOfCrashingTides { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1100px -1013px; + width: 68px; + height: 68px; +} +.shop_weapon_warrior_0 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1498px -1309px; + width: 68px; + height: 68px; +} +.shop_weapon_warrior_1 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1274px -1539px; + width: 68px; + height: 68px; +} +.shop_weapon_warrior_2 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1343px -1539px; + width: 68px; + height: 68px; +} +.shop_weapon_warrior_3 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1412px -1539px; + width: 68px; + height: 68px; +} +.shop_weapon_warrior_4 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1481px -1539px; + width: 68px; + height: 68px; +} +.shop_weapon_warrior_5 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1550px -1539px; + width: 68px; + height: 68px; +} +.shop_weapon_warrior_6 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1619px -1539px; + width: 68px; + height: 68px; +} +.shop_weapon_wizard_0 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1688px -1539px; + width: 68px; + height: 68px; +} +.shop_weapon_wizard_1 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: 0px -1630px; + width: 68px; + height: 68px; +} +.shop_weapon_wizard_2 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -276px -1699px; + width: 68px; + height: 68px; +} +.shop_weapon_wizard_3 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1703px -1117px; + width: 68px; + height: 68px; +} +.shop_weapon_wizard_4 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1697px -1238px; + width: 68px; + height: 68px; +} +.shop_weapon_wizard_5 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1507px -558px; + width: 68px; + height: 68px; +} +.shop_weapon_wizard_6 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1507px -658px; + width: 68px; + height: 68px; +} +.weapon_healer_0 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -364px -1539px; + width: 90px; + height: 90px; +} +.weapon_healer_1 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -182px -1539px; + width: 90px; + height: 90px; +} +.weapon_healer_2 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1092px -1539px; + width: 90px; + height: 90px; +} +.weapon_healer_3 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -728px -1539px; + width: 90px; + height: 90px; +} +.weapon_healer_4 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -546px -1539px; + width: 90px; + height: 90px; +} +.weapon_healer_5 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -455px -1539px; + width: 90px; + height: 90px; +} +.weapon_healer_6 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1274px -1448px; + width: 90px; + height: 90px; +} +.weapon_rogue_0 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -637px -1448px; + width: 90px; + height: 90px; +} +.weapon_rogue_1 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -546px -1448px; + width: 90px; + height: 90px; +} +.weapon_rogue_2 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -273px -1448px; + width: 90px; + height: 90px; +} +.weapon_rogue_3 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -182px -1448px; + width: 90px; + height: 90px; +} +.weapon_rogue_4 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1407px -1309px; + width: 90px; + height: 90px; +} +.weapon_rogue_5 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1316px -1309px; + width: 90px; + height: 90px; +} +.weapon_rogue_6 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1225px -1309px; + width: 90px; + height: 90px; +} +.weapon_special_1 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1407px -858px; + width: 102px; + height: 90px; +} +.weapon_special_2 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1183px -1539px; + width: 90px; + height: 90px; +} +.weapon_special_3 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -770px -1309px; + width: 90px; + height: 90px; +} +.weapon_special_aetherCrystals { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1582px -1238px; + width: 114px; + height: 90px; +} +.weapon_special_bardInstrument { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1407px -1131px; + width: 90px; + height: 90px; +} +.weapon_special_fencingFoil { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1407px -949px; + width: 90px; + height: 90px; +} +.weapon_special_lunarScythe { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -819px -1539px; + width: 90px; + height: 90px; +} +.weapon_special_mammothRiderSpear { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -273px -1539px; + width: 90px; + height: 90px; +} +.weapon_special_nomadsScimitar { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: 0px -1539px; + width: 90px; + height: 90px; +} +.weapon_special_pageBanner { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -910px -1448px; + width: 90px; + height: 90px; +} +.weapon_special_roguishRainbowMessage { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -952px -1309px; + width: 90px; + height: 90px; +} +.weapon_special_skeletonKey { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1001px -1448px; + width: 90px; + height: 90px; +} +.weapon_special_tachi { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1092px -1448px; + width: 90px; + height: 90px; +} +.weapon_special_taskwoodsLantern { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1183px -1448px; + width: 90px; + height: 90px; +} +.weapon_special_tridentOfCrashingTides { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1365px -1448px; + width: 90px; + height: 90px; +} +.weapon_warrior_0 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1638px -1448px; + width: 90px; + height: 90px; +} +.weapon_warrior_1 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -637px -1539px; + width: 90px; + height: 90px; +} +.weapon_warrior_2 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1407px -1040px; + width: 90px; + height: 90px; +} +.weapon_warrior_3 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -588px -1309px; + width: 90px; + height: 90px; +} +.weapon_warrior_4 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -679px -1309px; + width: 90px; + height: 90px; +} +.weapon_warrior_5 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -861px -1309px; + width: 90px; + height: 90px; +} +.weapon_warrior_6 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1043px -1309px; + width: 90px; + height: 90px; +} +.weapon_wizard_0 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1134px -1309px; + width: 90px; + height: 90px; +} +.weapon_wizard_1 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: 0px -1448px; + width: 90px; + height: 90px; +} +.weapon_wizard_2 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -91px -1448px; + width: 90px; + height: 90px; +} +.weapon_wizard_3 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -364px -1448px; + width: 90px; + height: 90px; +} +.weapon_wizard_4 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -455px -1448px; + width: 90px; + height: 90px; +} +.weapon_wizard_5 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -728px -1448px; + width: 90px; + height: 90px; +} +.weapon_wizard_6 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -819px -1448px; + width: 90px; + height: 90px; +} +.Pet_Currency_Gem { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -345px -1699px; + width: 68px; + height: 68px; +} +.Pet_Currency_Gem1x { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1754px -268px; + width: 15px; + height: 13px; +} +.Pet_Currency_Gem2x { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1507px -727px; + width: 30px; + height: 26px; +} +.PixelPaw-Gold { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1718px -861px; + width: 51px; + height: 51px; +} +.PixelPaw { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1718px -913px; + width: 51px; + height: 51px; +} +.PixelPaw002 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1703px -1186px; + width: 51px; + height: 51px; +} +.avatar_floral_healer { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1407px -558px; + width: 99px; + height: 99px; +} +.avatar_floral_rogue { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1407px -658px; + width: 99px; + height: 99px; +} +.avatar_floral_warrior { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1582px -1329px; + width: 99px; + height: 99px; +} +.avatar_floral_wizard { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1407px -758px; + width: 99px; + height: 99px; +} +.empty_bottles { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -220px -374px; + width: 64px; + height: 54px; +} +.ghost { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1456px -1448px; + width: 90px; + height: 90px; +} +.inventory_present { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -897px -1630px; + width: 68px; + height: 68px; +} +.inventory_present_01 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -69px -1630px; + width: 68px; + height: 68px; +} +.inventory_present_02 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -138px -1630px; + width: 68px; + height: 68px; +} +.inventory_present_03 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -207px -1630px; + width: 68px; + height: 68px; +} +.inventory_present_04 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -276px -1630px; + width: 68px; + height: 68px; +} +.inventory_present_05 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -345px -1630px; + width: 68px; + height: 68px; +} +.inventory_present_06 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -414px -1630px; + width: 68px; + height: 68px; +} +.inventory_present_07 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -483px -1630px; + width: 68px; + height: 68px; +} +.inventory_present_08 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -552px -1630px; + width: 68px; + height: 68px; +} +.inventory_present_09 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -621px -1630px; + width: 68px; + height: 68px; +} +.inventory_present_10 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -690px -1630px; + width: 68px; + height: 68px; +} +.inventory_present_11 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -759px -1630px; + width: 68px; + height: 68px; +} +.inventory_present_12 { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -828px -1630px; + width: 68px; + height: 68px; +} +.inventory_special_birthday { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -966px -1630px; + width: 68px; + height: 68px; +} +.inventory_special_congrats { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1035px -1630px; + width: 68px; + height: 68px; +} +.inventory_special_fortify { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1104px -1630px; + width: 68px; + height: 68px; +} +.inventory_special_getwell { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1173px -1630px; + width: 68px; + height: 68px; +} +.inventory_special_goodluck { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1242px -1630px; + width: 68px; + height: 68px; +} +.inventory_special_greeting { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1311px -1630px; + width: 68px; + height: 68px; +} +.inventory_special_nye { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1380px -1630px; + width: 68px; + height: 68px; +} +.inventory_special_opaquePotion { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1449px -1630px; + width: 68px; + height: 68px; +} +.inventory_special_seafoam { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -414px -1699px; + width: 68px; + height: 68px; +} +.inventory_special_shinySeed { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1587px -1630px; + width: 68px; + height: 68px; +} +.inventory_special_snowball { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1656px -1630px; + width: 68px; + height: 68px; +} +.inventory_special_spookySparkles { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: 0px -1699px; + width: 68px; + height: 68px; +} +.inventory_special_thankyou { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -69px -1699px; + width: 68px; + height: 68px; +} +.inventory_special_trinket { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -138px -1699px; + width: 68px; + height: 68px; +} +.inventory_special_valentine { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -207px -1699px; + width: 68px; + height: 68px; +} +.knockout { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1407px -1222px; + width: 120px; + height: 47px; +} +.pet_key { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1682px -1329px; + width: 68px; + height: 68px; +} +.rebirth_orb { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1510px -858px; + width: 68px; + height: 68px; +} +.seafoam_star { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -910px -1539px; + width: 90px; + height: 90px; +} +.shop_armoire { + background-image: url('~assets/images/sprites/spritesmith-main-10.png'); + background-position: -1498px -1040px; + width: 68px; + height: 68px; +} .snowman { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -918px -1454px; + background-position: -1001px -1539px; width: 90px; height: 90px; } .zzz { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1724px -1168px; + background-position: -1528px -1222px; width: 40px; height: 40px; } .zzz_light { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1724px -1127px; + background-position: -1701px -1068px; width: 40px; height: 40px; } .notif_inventory_present_01 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1743px -455px; + background-position: -1742px -1068px; width: 28px; height: 28px; } .notif_inventory_present_02 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1743px -426px; + background-position: -1733px -239px; width: 28px; height: 28px; } .notif_inventory_present_03 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1745px -587px; + background-position: -1507px -627px; width: 28px; height: 28px; } .notif_inventory_present_04 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1709px -989px; + background-position: -1740px -1398px; width: 28px; height: 28px; } .notif_inventory_present_05 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1739px -737px; + background-position: -1711px -1398px; width: 28px; height: 28px; } .notif_inventory_present_06 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1739px -679px; + background-position: -1682px -1398px; width: 28px; height: 28px; } .notif_inventory_present_07 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1745px -645px; + background-position: -1733px -293px; width: 28px; height: 28px; } .notif_inventory_present_08 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1745px -616px; + background-position: -1733px -409px; width: 28px; height: 28px; } .notif_inventory_present_09 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1745px -558px; + background-position: -1733px -380px; width: 28px; height: 28px; } .notif_inventory_present_10 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1743px -513px; + background-position: -1733px -351px; width: 28px; height: 28px; } .notif_inventory_present_11 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1743px -484px; + background-position: -1733px -322px; width: 28px; height: 28px; } .notif_inventory_present_12 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1739px -708px; + background-position: -1536px -627px; width: 28px; height: 28px; } .notif_inventory_special_birthday { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1724px -1254px; + background-position: -1745px -523px; width: 20px; height: 24px; } .notif_inventory_special_congrats { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1745px -1279px; + background-position: -1745px -548px; width: 20px; height: 22px; } .notif_inventory_special_getwell { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1724px -1304px; + background-position: -1745px -583px; width: 20px; height: 22px; } .notif_inventory_special_goodluck { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1749px -1227px; + background-position: -1745px -471px; width: 20px; height: 26px; } .notif_inventory_special_greeting { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1745px -1304px; + background-position: -1745px -606px; width: 20px; height: 22px; } .notif_inventory_special_nye { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1724px -1227px; + background-position: -1745px -444px; width: 24px; height: 26px; } .notif_inventory_special_thankyou { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1724px -1279px; + background-position: -1733px -268px; width: 20px; height: 24px; } .notif_inventory_special_valentine { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1745px -1254px; + background-position: -1745px -498px; width: 20px; height: 24px; } .npc_alex { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -796px -1315px; + background-position: -1582px -444px; width: 162px; height: 138px; } .npc_aprilFool { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1624px -558px; + background-position: -1582px -1117px; width: 120px; height: 120px; } .npc_bailey { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1700px -770px; + background-position: -220px -203px; width: 71px; height: 101px; } .npc_daniel { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1624px -302px; + background-position: -1582px -861px; width: 135px; height: 123px; } .npc_ian { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1624px -770px; + background-position: -1407px -422px; width: 75px; height: 135px; } .npc_justin { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1624px -906px; + background-position: -1483px -422px; width: 84px; height: 120px; } .npc_justin_head { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1724px -1027px; + background-position: -1733px -142px; width: 36px; height: 96px; } .npc_matt { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -404px -1315px; + background-position: -196px -1309px; width: 195px; height: 138px; } .npc_sabe { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -637px -1596px; + background-position: -1547px -1448px; width: 90px; height: 90px; } .npc_timetravelers { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -208px -1315px; + background-position: 0px -1309px; width: 195px; height: 138px; } .npc_timetravelers_active { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -600px -1315px; + background-position: -392px -1309px; width: 195px; height: 138px; } .npc_tyler { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -364px -1596px; + background-position: -91px -1539px; width: 90px; height: 90px; } .npc_vicky { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1709px -906px; + background-position: -1701px -985px; width: 59px; height: 82px; } .seasonalshop_closed { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -959px -1315px; + background-position: -1582px -722px; width: 162px; height: 138px; } .seasonalshop_open { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1122px -1315px; + background-position: -1582px -583px; width: 162px; height: 138px; } @@ -690,175 +930,175 @@ } .banner_flair_dysheartener { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1700px -872px; + background-position: -1697px -1307px; width: 69px; height: 18px; } .phobia_dysheartener { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1407px -630px; + background-position: -747px -440px; width: 201px; height: 195px; } .quest_armadillo { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -967px -220px; + background-position: 0px -435px; width: 219px; height: 219px; } .quest_atom1 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -882px -1095px; + background-position: -656px -1095px; width: 250px; height: 150px; } .quest_atom2 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: 0px -1315px; + background-position: -1158px -1095px; width: 207px; height: 138px; } .quest_atom3 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1407px -1013px; + background-position: -307px -220px; width: 216px; height: 180px; } .quest_axolotl { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -307px 0px; + background-position: -527px 0px; width: 219px; height: 219px; } .quest_badger { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: 0px -435px; + background-position: -220px -875px; width: 219px; height: 219px; } .quest_basilist { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: 0px -1454px; + background-position: -1582px 0px; width: 189px; height: 141px; } .quest_beetle { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1407px -428px; + background-position: -1187px -871px; width: 204px; height: 201px; } .quest_bunny { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1407px -826px; + background-position: -527px -220px; width: 210px; height: 186px; } .quest_butterfly { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -747px -220px; + background-position: -220px -435px; width: 219px; height: 219px; } .quest_cheetah { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -660px -655px; + background-position: -747px 0px; width: 219px; height: 219px; } .quest_cow { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -527px -220px; + background-position: -1407px 0px; width: 174px; height: 213px; } .quest_dilatory { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -440px -875px; + background-position: 0px -655px; width: 219px; height: 219px; } .quest_dilatoryDistress1 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1407px -217px; + background-position: -1187px -660px; width: 210px; height: 210px; } .quest_dilatoryDistress2 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1624px 0px; + background-position: -1582px -142px; width: 150px; height: 150px; } .quest_dilatoryDistress3 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -880px -875px; + background-position: -220px -655px; width: 219px; height: 219px; } .quest_dilatory_derby { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -967px -440px; + background-position: -747px -220px; width: 219px; height: 219px; } .quest_dustbunnies { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1187px -440px; + background-position: -440px -655px; width: 219px; height: 219px; } .quest_egg { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -307px -220px; + background-position: -1407px -214px; width: 165px; height: 207px; } .quest_evilsanta { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1624px -426px; + background-position: -1582px -985px; width: 118px; height: 131px; } .quest_evilsanta2 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -220px -1095px; + background-position: -660px -655px; width: 219px; height: 219px; } .quest_falcon { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: 0px -1095px; + background-position: -967px 0px; width: 219px; height: 219px; } .quest_ferret { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1187px -660px; + background-position: -967px -220px; width: 219px; height: 219px; } .quest_frog { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -660px -1095px; + background-position: 0px -1095px; width: 221px; height: 213px; } .quest_ghost_stag { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1187px -220px; + background-position: -967px -440px; width: 219px; height: 219px; } .quest_goldenknight1 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1187px 0px; + background-position: 0px -875px; width: 219px; height: 219px; } .quest_goldenknight2 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1133px -1095px; + background-position: -907px -1095px; width: 250px; height: 150px; } @@ -870,103 +1110,73 @@ } .quest_gryphon { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -967px -660px; + background-position: -439px -1095px; width: 216px; height: 177px; } .quest_guineapig { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -220px -875px; + background-position: -440px -875px; width: 219px; height: 219px; } .quest_harpy { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: 0px -875px; + background-position: -660px -875px; width: 219px; height: 219px; } .quest_hedgehog { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1187px -880px; + background-position: -967px -660px; width: 219px; height: 186px; } .quest_hippo { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -440px -1095px; + background-position: -880px -875px; width: 219px; height: 219px; } .quest_horse { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -967px 0px; + background-position: -1187px 0px; width: 219px; height: 219px; } .quest_kraken { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -747px -440px; + background-position: -222px -1095px; width: 216px; height: 177px; } .quest_lostMasterclasser1 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -440px -655px; + background-position: -307px 0px; width: 219px; height: 219px; } .quest_lostMasterclasser2 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -220px -655px; + background-position: -1187px -220px; width: 219px; height: 219px; } .quest_lostMasterclasser3 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: 0px -655px; + background-position: -1187px -440px; width: 219px; height: 219px; } .quest_mayhemMistiflying1 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1624px -151px; + background-position: -1582px -293px; width: 150px; height: 150px; } .quest_mayhemMistiflying2 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -747px 0px; - width: 219px; - height: 219px; -} -.quest_mayhemMistiflying3 { background-image: url('~assets/images/sprites/spritesmith-main-10.png'); background-position: -440px -435px; width: 219px; height: 219px; } -.quest_monkey { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -220px -435px; - width: 219px; - height: 219px; -} -.quest_moon1 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -1407px 0px; - width: 216px; - height: 216px; -} -.quest_moon2 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -527px 0px; - width: 219px; - height: 219px; -} -.quest_moon3 { - background-image: url('~assets/images/sprites/spritesmith-main-10.png'); - background-position: -660px -875px; - width: 219px; - height: 219px; -} diff --git a/website/client/assets/css/sprites/spritesmith-main-11.css b/website/client/assets/css/sprites/spritesmith-main-11.css index f55b11ab6a..00772adba6 100644 --- a/website/client/assets/css/sprites/spritesmith-main-11.css +++ b/website/client/assets/css/sprites/spritesmith-main-11.css @@ -1,1800 +1,1620 @@ .quest_TEMPLATE_FOR_MISSING_IMAGE { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -357px -1097px; + background-position: -1317px -990px; width: 221px; height: 39px; } -.quest_moonstone1 { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -220px 0px; - width: 219px; - height: 219px; -} -.quest_moonstone2 { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -880px -440px; - width: 219px; - height: 219px; -} -.quest_moonstone3 { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -880px -220px; - width: 219px; - height: 219px; -} -.quest_nudibranch { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -217px -880px; - width: 216px; - height: 216px; -} -.quest_octopus { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1100px 0px; - width: 222px; - height: 177px; -} -.quest_owl { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -440px 0px; - width: 219px; - height: 219px; -} -.quest_peacock { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -651px -880px; - width: 216px; - height: 216px; -} -.quest_penguin { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1323px -353px; - width: 190px; - height: 183px; -} -.quest_pterodactyl { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -220px -440px; - width: 219px; - height: 219px; -} -.quest_rat { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -440px -440px; - width: 219px; - height: 219px; -} -.quest_rock { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -434px -880px; - width: 216px; - height: 216px; -} -.quest_rooster { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1323px 0px; - width: 213px; - height: 174px; -} -.quest_sabretooth { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -660px -440px; - width: 219px; - height: 219px; -} -.quest_sheep { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: 0px -660px; - width: 219px; - height: 219px; -} -.quest_slime { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -220px -660px; - width: 219px; - height: 219px; -} -.quest_sloth { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -440px -660px; - width: 219px; - height: 219px; -} -.quest_snail { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -868px -880px; - width: 219px; - height: 213px; -} -.quest_snake { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1100px -534px; - width: 216px; - height: 177px; -} -.quest_spider { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: 0px -1097px; - width: 250px; - height: 150px; -} -.quest_squirrel { +.quest_mayhemMistiflying3 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); background-position: 0px 0px; width: 219px; height: 219px; } -.quest_stoikalmCalamity1 { +.quest_monkey { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1323px -537px; - width: 150px; - height: 150px; -} -.quest_stoikalmCalamity2 { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -880px 0px; + background-position: -220px 0px; width: 219px; height: 219px; } -.quest_stoikalmCalamity3 { +.quest_moon1 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -660px -660px; - width: 219px; - height: 219px; -} -.quest_taskwoodsTerror1 { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1323px -688px; - width: 150px; - height: 150px; -} -.quest_taskwoodsTerror2 { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: 0px -880px; + background-position: -1100px -434px; width: 216px; height: 216px; } -.quest_taskwoodsTerror3 { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -660px -220px; - width: 219px; - height: 219px; -} -.quest_treeling { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1100px -890px; - width: 216px; - height: 177px; -} -.quest_trex { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1323px -175px; - width: 204px; - height: 177px; -} -.quest_trex_undead { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1100px -712px; - width: 216px; - height: 177px; -} -.quest_triceratops { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -660px 0px; - width: 219px; - height: 219px; -} -.quest_turtle { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: 0px -440px; - width: 219px; - height: 219px; -} -.quest_unicorn { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -440px -220px; - width: 219px; - height: 219px; -} -.quest_vice1 { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1100px -356px; - width: 216px; - height: 177px; -} -.quest_vice2 { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -220px -220px; - width: 219px; - height: 219px; -} -.quest_vice3 { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1100px -178px; - width: 216px; - height: 177px; -} -.quest_whale { +.quest_moon2 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); background-position: 0px -220px; width: 219px; height: 219px; } -.quest_yarn { +.quest_moon3 { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -220px -220px; + width: 219px; + height: 219px; +} +.quest_moonstone1 { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -440px 0px; + width: 219px; + height: 219px; +} +.quest_moonstone2 { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -440px -220px; + width: 219px; + height: 219px; +} +.quest_moonstone3 { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: 0px -440px; + width: 219px; + height: 219px; +} +.quest_nudibranch { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -1100px -217px; + width: 216px; + height: 216px; +} +.quest_octopus { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -220px -1100px; + width: 222px; + height: 177px; +} +.quest_owl { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -660px 0px; + width: 219px; + height: 219px; +} +.quest_peacock { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -660px -880px; + width: 216px; + height: 216px; +} +.quest_penguin { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -1317px -504px; + width: 190px; + height: 183px; +} +.quest_pterodactyl { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: 0px -660px; + width: 219px; + height: 219px; +} +.quest_rat { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -220px -660px; + width: 219px; + height: 219px; +} +.quest_rock { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -1100px -651px; + width: 216px; + height: 216px; +} +.quest_rooster { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -1317px -151px; + width: 213px; + height: 174px; +} +.quest_sabretooth { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -880px 0px; + width: 219px; + height: 219px; +} +.quest_sheep { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -880px -220px; + width: 219px; + height: 219px; +} +.quest_slime { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -880px -440px; + width: 219px; + height: 219px; +} +.quest_sloth { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); background-position: -880px -660px; + width: 219px; + height: 219px; +} +.quest_snail { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: 0px -1100px; + width: 219px; + height: 213px; +} +.quest_snake { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -443px -1100px; + width: 216px; + height: 177px; +} +.quest_spider { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -1317px 0px; + width: 250px; + height: 150px; +} +.quest_squirrel { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -440px -880px; + width: 219px; + height: 219px; +} +.quest_stoikalmCalamity1 { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -1317px -688px; + width: 150px; + height: 150px; +} +.quest_stoikalmCalamity2 { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -220px -880px; + width: 219px; + height: 219px; +} +.quest_stoikalmCalamity3 { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: 0px -880px; + width: 219px; + height: 219px; +} +.quest_taskwoodsTerror1 { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -1317px -839px; + width: 150px; + height: 150px; +} +.quest_taskwoodsTerror2 { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -1100px 0px; + width: 216px; + height: 216px; +} +.quest_taskwoodsTerror3 { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -660px -660px; + width: 219px; + height: 219px; +} +.quest_treeling { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -660px -1100px; + width: 216px; + height: 177px; +} +.quest_trex { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -1317px -326px; + width: 204px; + height: 177px; +} +.quest_trex_undead { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -1100px -868px; + width: 216px; + height: 177px; +} +.quest_triceratops { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -440px -660px; + width: 219px; + height: 219px; +} +.quest_turtle { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -660px -440px; + width: 219px; + height: 219px; +} +.quest_unicorn { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -660px -220px; + width: 219px; + height: 219px; +} +.quest_vice1 { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -877px -1100px; + width: 216px; + height: 177px; +} +.quest_vice2 { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -440px -440px; + width: 219px; + height: 219px; +} +.quest_vice3 { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -1094px -1100px; + width: 216px; + height: 177px; +} +.quest_whale { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -220px -440px; + width: 219px; + height: 219px; +} +.quest_yarn { + background-image: url('~assets/images/sprites/spritesmith-main-11.png'); + background-position: -877px -880px; width: 216px; height: 216px; } .quest_atom1_soapBars { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -504px -1137px; + background-position: -1706px -1234px; width: 48px; height: 51px; } .quest_dilatoryDistress1_blueFins { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1474px -598px; + background-position: -1706px -1286px; width: 51px; height: 48px; } .quest_dilatoryDistress1_fireCoral { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -749px -1137px; + background-position: -1706px -1335px; width: 48px; height: 51px; } .quest_egg_plainEgg { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -798px -1137px; + background-position: -1706px -1387px; width: 48px; height: 51px; } .quest_evilsanta2_branches { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -553px -1137px; + background-position: -1706px -1439px; width: 48px; height: 51px; } .quest_evilsanta2_tracks { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1474px -537px; + background-position: -1706px -1173px; width: 54px; height: 60px; } .quest_goldenknight1_testimony { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1474px -688px; + background-position: -1706px -1543px; width: 48px; height: 51px; } .quest_lostMasterclasser1_ancientTome { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -862px -1662px; + background-position: -1531px -151px; width: 33px; height: 42px; } .quest_lostMasterclasser1_forbiddenTome { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -896px -1662px; + background-position: -1531px -194px; width: 33px; height: 42px; } .quest_lostMasterclasser1_hiddenTome { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -828px -1662px; + background-position: -1531px -237px; width: 33px; height: 42px; } .quest_mayhemMistiflying2_mistifly1 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -700px -1137px; + background-position: -1706px -1595px; width: 48px; height: 51px; } .quest_mayhemMistiflying2_mistifly2 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -651px -1137px; + background-position: -1508px -504px; width: 48px; height: 51px; } .quest_mayhemMistiflying2_mistifly3 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -602px -1137px; + background-position: -1508px -556px; width: 48px; height: 51px; } .quest_moon1_shard { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1474px -792px; + background-position: -1522px -326px; width: 42px; height: 42px; } .quest_moonstone1_moonstone { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -579px -1097px; + background-position: -1531px -280px; width: 30px; height: 30px; } .quest_stoikalmCalamity2_icicleCoin { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -455px -1137px; + background-position: -1508px -608px; width: 48px; height: 51px; } .quest_taskwoodsTerror2_brownie { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -406px -1137px; + background-position: -1100px -1046px; width: 48px; height: 51px; } .quest_taskwoodsTerror2_dryad { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -357px -1137px; + background-position: -1706px -1491px; width: 48px; height: 51px; } .quest_taskwoodsTerror2_pixie { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1474px -740px; + background-position: -1149px -1046px; width: 48px; height: 51px; } .quest_vice2_lightCrystal { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -415px -1203px; + background-position: -1518px -1383px; width: 40px; height: 40px; } .inventory_quest_scroll_armadillo { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -690px -1248px; + background-position: -276px -1314px; width: 68px; height: 68px; } .inventory_quest_scroll_atom1 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -828px -1248px; + background-position: -414px -1314px; width: 68px; height: 68px; } .inventory_quest_scroll_atom1_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -759px -1248px; + background-position: -345px -1314px; width: 68px; height: 68px; } .inventory_quest_scroll_atom2 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -966px -1248px; + background-position: -552px -1314px; width: 68px; height: 68px; } .inventory_quest_scroll_atom2_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -897px -1248px; + background-position: -483px -1314px; width: 68px; height: 68px; } .inventory_quest_scroll_atom3 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1104px -1248px; + background-position: -690px -1314px; width: 68px; height: 68px; } .inventory_quest_scroll_atom3_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1035px -1248px; + background-position: -621px -1314px; width: 68px; height: 68px; } .inventory_quest_scroll_axolotl { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1173px -1248px; + background-position: -759px -1314px; width: 68px; height: 68px; } .inventory_quest_scroll_badger { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1242px -1248px; + background-position: -828px -1314px; width: 68px; height: 68px; } .inventory_quest_scroll_basilist { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1311px -1248px; + background-position: -897px -1314px; width: 68px; height: 68px; } .inventory_quest_scroll_beetle { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1380px -1248px; + background-position: -966px -1314px; width: 68px; height: 68px; } .inventory_quest_scroll_bunny { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1449px -1248px; + background-position: -1035px -1314px; width: 68px; height: 68px; } .inventory_quest_scroll_butterfly { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: 0px -1317px; + background-position: -1104px -1314px; width: 68px; height: 68px; } .inventory_quest_scroll_cheetah { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -69px -1317px; + background-position: -1173px -1314px; width: 68px; height: 68px; } .inventory_quest_scroll_cow { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -138px -1317px; + background-position: -1242px -1314px; width: 68px; height: 68px; } .inventory_quest_scroll_dilatoryDistress1 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -276px -1317px; + background-position: -1380px -1314px; width: 68px; height: 68px; } .inventory_quest_scroll_dilatoryDistress2 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -414px -1317px; + background-position: 0px -1383px; width: 68px; height: 68px; } .inventory_quest_scroll_dilatoryDistress2_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -345px -1317px; + background-position: -1449px -1314px; width: 68px; height: 68px; } .inventory_quest_scroll_dilatoryDistress3 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -552px -1317px; + background-position: -138px -1383px; width: 68px; height: 68px; } .inventory_quest_scroll_dilatoryDistress3_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -483px -1317px; + background-position: -69px -1383px; width: 68px; height: 68px; } .inventory_quest_scroll_dilatory_derby { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -207px -1317px; + background-position: -1311px -1314px; width: 68px; height: 68px; } .inventory_quest_scroll_dustbunnies { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -621px -1317px; + background-position: -207px -1383px; width: 68px; height: 68px; } .inventory_quest_scroll_egg { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -690px -1317px; + background-position: -276px -1383px; width: 68px; height: 68px; } .inventory_quest_scroll_evilsanta { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -759px -1317px; + background-position: -345px -1383px; width: 68px; height: 68px; } .inventory_quest_scroll_evilsanta2 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -828px -1317px; + background-position: -414px -1383px; width: 68px; height: 68px; } .inventory_quest_scroll_falcon { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -897px -1317px; + background-position: -483px -1383px; width: 68px; height: 68px; } .inventory_quest_scroll_ferret { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -966px -1317px; + background-position: -552px -1383px; width: 68px; height: 68px; } .inventory_quest_scroll_frog { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1035px -1317px; + background-position: -621px -1383px; width: 68px; height: 68px; } .inventory_quest_scroll_ghost_stag { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1104px -1317px; + background-position: -690px -1383px; width: 68px; height: 68px; } .inventory_quest_scroll_goldenknight1 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1242px -1317px; + background-position: -828px -1383px; width: 68px; height: 68px; } .inventory_quest_scroll_goldenknight1_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1173px -1317px; + background-position: -759px -1383px; width: 68px; height: 68px; } .inventory_quest_scroll_goldenknight2 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1380px -1317px; + background-position: -966px -1383px; width: 68px; height: 68px; } .inventory_quest_scroll_goldenknight2_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1311px -1317px; + background-position: -897px -1383px; width: 68px; height: 68px; } .inventory_quest_scroll_goldenknight3 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: 0px -1386px; + background-position: -1104px -1383px; width: 68px; height: 68px; } .inventory_quest_scroll_goldenknight3_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1449px -1317px; + background-position: -1035px -1383px; width: 68px; height: 68px; } .inventory_quest_scroll_gryphon { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -69px -1386px; + background-position: -1173px -1383px; width: 68px; height: 68px; } .inventory_quest_scroll_guineapig { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -138px -1386px; + background-position: -1242px -1383px; width: 68px; height: 68px; } .inventory_quest_scroll_harpy { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -207px -1386px; + background-position: -1311px -1383px; width: 68px; height: 68px; } .inventory_quest_scroll_hedgehog { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -276px -1386px; + background-position: -1380px -1383px; width: 68px; height: 68px; } .inventory_quest_scroll_hippo { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -345px -1386px; + background-position: -1449px -1383px; width: 68px; height: 68px; } .inventory_quest_scroll_horse { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -414px -1386px; + background-position: 0px -1452px; width: 68px; height: 68px; } .inventory_quest_scroll_kraken { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -483px -1386px; + background-position: -69px -1452px; width: 68px; height: 68px; } .inventory_quest_scroll_lostMasterclasser1 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -621px -1386px; + background-position: -207px -1452px; width: 68px; height: 68px; } .inventory_quest_scroll_lostMasterclasser1_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -552px -1386px; + background-position: -138px -1452px; width: 68px; height: 68px; } .inventory_quest_scroll_lostMasterclasser2 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -759px -1386px; + background-position: -345px -1452px; width: 68px; height: 68px; } .inventory_quest_scroll_lostMasterclasser2_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -690px -1386px; + background-position: -276px -1452px; width: 68px; height: 68px; } .inventory_quest_scroll_lostMasterclasser3 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -897px -1386px; + background-position: -483px -1452px; width: 68px; height: 68px; } .inventory_quest_scroll_lostMasterclasser3_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -828px -1386px; + background-position: -414px -1452px; width: 68px; height: 68px; } .inventory_quest_scroll_lostMasterclasser4 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1035px -1386px; + background-position: -621px -1452px; width: 68px; height: 68px; } .inventory_quest_scroll_lostMasterclasser4_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -966px -1386px; + background-position: -552px -1452px; width: 68px; height: 68px; } .inventory_quest_scroll_mayhemMistiflying1 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1104px -1386px; + background-position: -690px -1452px; width: 68px; height: 68px; } .inventory_quest_scroll_mayhemMistiflying2 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1242px -1386px; + background-position: -828px -1452px; width: 68px; height: 68px; } .inventory_quest_scroll_mayhemMistiflying2_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1173px -1386px; + background-position: -759px -1452px; width: 68px; height: 68px; } .inventory_quest_scroll_mayhemMistiflying3 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1380px -1386px; + background-position: -966px -1452px; width: 68px; height: 68px; } .inventory_quest_scroll_mayhemMistiflying3_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1311px -1386px; + background-position: -897px -1452px; width: 68px; height: 68px; } .inventory_quest_scroll_monkey { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1449px -1386px; + background-position: -1035px -1452px; width: 68px; height: 68px; } .inventory_quest_scroll_moon1 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -69px -1455px; + background-position: -1173px -1452px; width: 68px; height: 68px; } .inventory_quest_scroll_moon1_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: 0px -1455px; + background-position: -1104px -1452px; width: 68px; height: 68px; } .inventory_quest_scroll_moon2 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -207px -1455px; + background-position: -1311px -1452px; width: 68px; height: 68px; } .inventory_quest_scroll_moon2_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -138px -1455px; + background-position: -1242px -1452px; width: 68px; height: 68px; } .inventory_quest_scroll_moon3 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -345px -1455px; + background-position: -1449px -1452px; width: 68px; height: 68px; } .inventory_quest_scroll_moon3_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -276px -1455px; + background-position: -1380px -1452px; width: 68px; height: 68px; } .inventory_quest_scroll_moonstone1 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -483px -1455px; + background-position: -1568px -69px; width: 68px; height: 68px; } .inventory_quest_scroll_moonstone1_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -414px -1455px; + background-position: -1568px 0px; width: 68px; height: 68px; } .inventory_quest_scroll_moonstone2 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -621px -1455px; + background-position: -1568px -207px; width: 68px; height: 68px; } .inventory_quest_scroll_moonstone2_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -552px -1455px; + background-position: -1568px -138px; width: 68px; height: 68px; } .inventory_quest_scroll_moonstone3 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -759px -1455px; + background-position: -1568px -345px; width: 68px; height: 68px; } .inventory_quest_scroll_moonstone3_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -690px -1455px; + background-position: -1568px -276px; width: 68px; height: 68px; } .inventory_quest_scroll_nudibranch { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -828px -1455px; + background-position: -1568px -414px; width: 68px; height: 68px; } .inventory_quest_scroll_octopus { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -897px -1455px; + background-position: -1568px -483px; width: 68px; height: 68px; } .inventory_quest_scroll_owl { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -966px -1455px; + background-position: -1568px -552px; width: 68px; height: 68px; } .inventory_quest_scroll_peacock { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1035px -1455px; + background-position: -1568px -621px; width: 68px; height: 68px; } .inventory_quest_scroll_penguin { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1104px -1455px; + background-position: -1706px -1104px; width: 68px; height: 68px; } .inventory_quest_scroll_pterodactyl { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1173px -1455px; + background-position: -1568px -759px; width: 68px; height: 68px; } .inventory_quest_scroll_rat { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1242px -1455px; + background-position: -1568px -828px; width: 68px; height: 68px; } .inventory_quest_scroll_rock { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1311px -1455px; + background-position: -1568px -897px; width: 68px; height: 68px; } .inventory_quest_scroll_rooster { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1380px -1455px; + background-position: -1568px -966px; width: 68px; height: 68px; } .inventory_quest_scroll_sabretooth { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1449px -1455px; + background-position: -1568px -1035px; width: 68px; height: 68px; } .inventory_quest_scroll_sheep { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1537px 0px; + background-position: -1568px -1104px; width: 68px; height: 68px; } .inventory_quest_scroll_slime { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1537px -69px; + background-position: -1568px -1173px; width: 68px; height: 68px; } .inventory_quest_scroll_sloth { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1537px -138px; + background-position: -1568px -1242px; width: 68px; height: 68px; } .inventory_quest_scroll_snail { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1537px -207px; + background-position: -1568px -1311px; width: 68px; height: 68px; } .inventory_quest_scroll_snake { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1537px -276px; + background-position: -1568px -1380px; width: 68px; height: 68px; } .inventory_quest_scroll_spider { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1537px -345px; + background-position: -1568px -1449px; width: 68px; height: 68px; } .inventory_quest_scroll_squirrel { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1537px -414px; + background-position: 0px -1521px; width: 68px; height: 68px; } .inventory_quest_scroll_stoikalmCalamity1 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1537px -483px; + background-position: -69px -1521px; width: 68px; height: 68px; } .inventory_quest_scroll_stoikalmCalamity2 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1537px -621px; + background-position: -207px -1521px; width: 68px; height: 68px; } .inventory_quest_scroll_stoikalmCalamity2_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1537px -552px; + background-position: -138px -1521px; width: 68px; height: 68px; } .inventory_quest_scroll_stoikalmCalamity3 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1537px -759px; + background-position: -345px -1521px; width: 68px; height: 68px; } .inventory_quest_scroll_stoikalmCalamity3_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1537px -690px; + background-position: -276px -1521px; width: 68px; height: 68px; } .inventory_quest_scroll_taskwoodsTerror1 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1537px -828px; + background-position: -414px -1521px; width: 68px; height: 68px; } .inventory_quest_scroll_taskwoodsTerror2 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1392px -1157px; + background-position: -552px -1521px; width: 68px; height: 68px; } .inventory_quest_scroll_taskwoodsTerror2_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1537px -897px; + background-position: -483px -1521px; width: 68px; height: 68px; } .inventory_quest_scroll_taskwoodsTerror3 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1537px -1104px; + background-position: -690px -1521px; width: 68px; height: 68px; } .inventory_quest_scroll_taskwoodsTerror3_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1537px -1035px; + background-position: -621px -1521px; width: 68px; height: 68px; } .inventory_quest_scroll_treeling { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1537px -1173px; + background-position: -759px -1521px; width: 68px; height: 68px; } .inventory_quest_scroll_trex { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1537px -1311px; + background-position: -897px -1521px; width: 68px; height: 68px; } .inventory_quest_scroll_trex_undead { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1537px -1242px; + background-position: -828px -1521px; width: 68px; height: 68px; } .inventory_quest_scroll_triceratops { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1537px -1380px; + background-position: -966px -1521px; width: 68px; height: 68px; } .inventory_quest_scroll_turtle { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1537px -1449px; + background-position: -1035px -1521px; width: 68px; height: 68px; } .inventory_quest_scroll_unicorn { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: 0px -1524px; + background-position: -1104px -1521px; width: 68px; height: 68px; } .inventory_quest_scroll_vice1 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -138px -1524px; + background-position: -1242px -1521px; width: 68px; height: 68px; } .inventory_quest_scroll_vice1_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -69px -1524px; + background-position: -1173px -1521px; width: 68px; height: 68px; } .inventory_quest_scroll_vice2 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -276px -1524px; + background-position: -1380px -1521px; width: 68px; height: 68px; } .inventory_quest_scroll_vice2_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -207px -1524px; + background-position: -1311px -1521px; width: 68px; height: 68px; } .inventory_quest_scroll_vice3 { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -414px -1524px; + background-position: -1518px -1521px; width: 68px; height: 68px; } .inventory_quest_scroll_vice3_locked { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -345px -1524px; + background-position: -1449px -1521px; width: 68px; height: 68px; } .inventory_quest_scroll_whale { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -483px -1524px; + background-position: -1637px 0px; width: 68px; height: 68px; } .inventory_quest_scroll_yarn { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -552px -1524px; + background-position: -1637px -69px; width: 68px; height: 68px; } .quest_bundle_aquaticAmigos { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -621px -1524px; + background-position: -1637px -138px; width: 68px; height: 68px; } .quest_bundle_cuddleBuddies { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -690px -1524px; + background-position: -1637px -207px; width: 68px; height: 68px; } .quest_bundle_farmFriends { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -759px -1524px; + background-position: -1637px -276px; width: 68px; height: 68px; } .quest_bundle_featheredFriends { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -828px -1524px; + background-position: -1637px -345px; width: 68px; height: 68px; } .quest_bundle_hugabug { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -897px -1524px; + background-position: -1637px -414px; width: 68px; height: 68px; } .quest_bundle_splashyPals { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1323px -1157px; + background-position: -1637px -483px; width: 68px; height: 68px; } .quest_bundle_winterQuests { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1035px -1524px; + background-position: -1637px -552px; width: 68px; height: 68px; } .quest_bundle_witchyFamiliars { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1104px -1524px; + background-position: -1637px -621px; width: 68px; height: 68px; } .shop_gem { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1173px -1524px; + background-position: -1637px -690px; width: 68px; height: 68px; } .shop_opaquePotion { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1242px -1524px; + background-position: -1637px -759px; width: 68px; height: 68px; } .shop_potion { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1311px -1524px; + background-position: -1637px -828px; width: 68px; height: 68px; } .shop_seafoam { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1380px -1524px; + background-position: -1637px -897px; width: 68px; height: 68px; } .shop_shinySeed { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1449px -1524px; + background-position: -1637px -966px; width: 68px; height: 68px; } .shop_snowball { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1518px -1524px; + background-position: -1637px -1035px; width: 68px; height: 68px; } .shop_spookySparkles { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1606px 0px; + background-position: -1637px -1104px; width: 68px; height: 68px; } .shop_mounts_MagicalBee-Base { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1606px -69px; + background-position: -1637px -1173px; width: 68px; height: 68px; } .shop_mounts_Mammoth-Base { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1606px -138px; + background-position: -1637px -1242px; width: 68px; height: 68px; } .shop_mounts_MantisShrimp-Base { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1606px -207px; + background-position: -1637px -1311px; width: 68px; height: 68px; } .shop_mounts_Phoenix-Base { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1606px -276px; + background-position: -1637px -1380px; width: 68px; height: 68px; } .shop_pets_MagicalBee-Base { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1606px -345px; + background-position: -1637px -1449px; width: 68px; height: 68px; } .shop_pets_Mammoth-Base { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1606px -414px; + background-position: -1637px -1518px; width: 68px; height: 68px; } .shop_pets_MantisShrimp-Base { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1606px -483px; + background-position: 0px -1590px; width: 68px; height: 68px; } .shop_pets_Phoenix-Base { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1606px -552px; + background-position: -69px -1590px; width: 68px; height: 68px; } .shop_backStab { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1474px -647px; + background-position: -1522px -369px; width: 40px; height: 40px; } .shop_brightness { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -374px -1203px; + background-position: -1522px -410px; width: 40px; height: 40px; } .shop_defensiveStance { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -333px -1203px; + background-position: -1524px -1030px; width: 40px; height: 40px; } .shop_earth { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -292px -1203px; + background-position: -1524px -1099px; width: 40px; height: 40px; } .shop_fireball { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -251px -1203px; + background-position: -1198px -1046px; width: 40px; height: 40px; } .shop_frost { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1257px -1137px; + background-position: -1239px -1046px; width: 40px; height: 40px; } .shop_heal { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1216px -1137px; + background-position: -1518px -1314px; width: 40px; height: 40px; } .shop_healAll { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1175px -1137px; + background-position: -1656px -1590px; width: 40px; height: 40px; } .shop_intimidate { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1134px -1137px; + background-position: 0px -1659px; width: 40px; height: 40px; } .shop_mpheal { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1093px -1137px; + background-position: -41px -1659px; width: 40px; height: 40px; } .shop_pickPocket { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1052px -1137px; + background-position: -82px -1659px; width: 40px; height: 40px; } .shop_protectAura { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1011px -1137px; + background-position: -1587px -1521px; width: 40px; height: 40px; } .shop_smash { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -970px -1137px; + background-position: -1518px -1452px; width: 40px; height: 40px; } .shop_stealth { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -888px -1137px; + background-position: -1524px -1168px; width: 40px; height: 40px; } .shop_toolsOfTrade { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -929px -1137px; + background-position: -1522px -451px; width: 40px; height: 40px; } .shop_valorousPresence { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -847px -1137px; + background-position: -1524px -1237px; width: 40px; height: 40px; } .Pet_Egg_Armadillo { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -138px -1593px; + background-position: -1242px -1590px; width: 68px; height: 68px; } .Pet_Egg_Axolotl { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -207px -1593px; + background-position: -1311px -1590px; width: 68px; height: 68px; } .Pet_Egg_Badger { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -276px -1593px; + background-position: -1380px -1590px; width: 68px; height: 68px; } .Pet_Egg_BearCub { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -345px -1593px; + background-position: -1449px -1590px; width: 68px; height: 68px; } .Pet_Egg_Beetle { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -414px -1593px; + background-position: -1518px -1590px; width: 68px; height: 68px; } .Pet_Egg_Bunny { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -483px -1593px; + background-position: -1587px -1590px; width: 68px; height: 68px; } .Pet_Egg_Butterfly { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -552px -1593px; + background-position: -1706px 0px; width: 68px; height: 68px; } .Pet_Egg_Cactus { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -621px -1593px; + background-position: -1706px -69px; width: 68px; height: 68px; } .Pet_Egg_Cheetah { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -690px -1593px; + background-position: -1706px -138px; width: 68px; height: 68px; } .Pet_Egg_Cow { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -759px -1593px; + background-position: -1706px -207px; width: 68px; height: 68px; } .Pet_Egg_Cuttlefish { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -828px -1593px; + background-position: -1706px -276px; width: 68px; height: 68px; } .Pet_Egg_Deer { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -897px -1593px; + background-position: -1706px -345px; width: 68px; height: 68px; } .Pet_Egg_Dragon { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -966px -1593px; + background-position: -1706px -414px; width: 68px; height: 68px; } .Pet_Egg_Egg { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1035px -1593px; + background-position: -1706px -483px; width: 68px; height: 68px; } .Pet_Egg_Falcon { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1104px -1593px; + background-position: -1706px -552px; width: 68px; height: 68px; } .Pet_Egg_Ferret { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1173px -1593px; + background-position: -1706px -621px; width: 68px; height: 68px; } .Pet_Egg_FlyingPig { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1242px -1593px; + background-position: -1706px -690px; width: 68px; height: 68px; } .Pet_Egg_Fox { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1311px -1593px; + background-position: -1706px -759px; width: 68px; height: 68px; } .Pet_Egg_Frog { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1380px -1593px; + background-position: -1706px -828px; width: 68px; height: 68px; } .Pet_Egg_Gryphon { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1449px -1593px; + background-position: -1706px -897px; width: 68px; height: 68px; } .Pet_Egg_GuineaPig { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1518px -1593px; + background-position: -1706px -966px; width: 68px; height: 68px; } .Pet_Egg_Hedgehog { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1587px -1593px; + background-position: -1706px -1035px; width: 68px; height: 68px; } .Pet_Egg_Hippo { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1675px 0px; + background-position: -1173px -1590px; width: 68px; height: 68px; } .Pet_Egg_Horse { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1675px -69px; + background-position: -1104px -1590px; width: 68px; height: 68px; } .Pet_Egg_LionCub { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1675px -138px; + background-position: -1035px -1590px; width: 68px; height: 68px; } .Pet_Egg_Monkey { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1675px -207px; + background-position: -966px -1590px; width: 68px; height: 68px; } .Pet_Egg_Nudibranch { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1675px -276px; + background-position: -897px -1590px; width: 68px; height: 68px; } .Pet_Egg_Octopus { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1675px -345px; + background-position: -828px -1590px; width: 68px; height: 68px; } .Pet_Egg_Owl { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1675px -414px; + background-position: -759px -1590px; width: 68px; height: 68px; } .Pet_Egg_PandaCub { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1675px -483px; + background-position: -690px -1590px; width: 68px; height: 68px; } .Pet_Egg_Parrot { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1675px -552px; + background-position: -621px -1590px; width: 68px; height: 68px; } .Pet_Egg_Peacock { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1675px -621px; + background-position: -552px -1590px; width: 68px; height: 68px; } .Pet_Egg_Penguin { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1675px -690px; + background-position: -483px -1590px; width: 68px; height: 68px; } .Pet_Egg_PolarBear { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1675px -759px; + background-position: -414px -1590px; width: 68px; height: 68px; } .Pet_Egg_Pterodactyl { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1675px -828px; + background-position: -345px -1590px; width: 68px; height: 68px; } .Pet_Egg_Rat { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1675px -897px; + background-position: -276px -1590px; width: 68px; height: 68px; } .Pet_Egg_Rock { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1675px -966px; + background-position: -207px -1590px; width: 68px; height: 68px; } .Pet_Egg_Rooster { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1675px -1035px; + background-position: -138px -1590px; width: 68px; height: 68px; } .Pet_Egg_Sabretooth { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1675px -1104px; + background-position: -207px -1314px; width: 68px; height: 68px; } .Pet_Egg_Seahorse { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1675px -1173px; + background-position: -138px -1314px; width: 68px; height: 68px; } .Pet_Egg_Sheep { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1675px -1242px; + background-position: -69px -1314px; width: 68px; height: 68px; } .Pet_Egg_Slime { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1675px -1311px; + background-position: 0px -1314px; width: 68px; height: 68px; } .Pet_Egg_Sloth { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1675px -1380px; + background-position: -1455px -1237px; width: 68px; height: 68px; } .Pet_Egg_Snail { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1675px -1449px; + background-position: -1386px -1237px; width: 68px; height: 68px; } .Pet_Egg_Snake { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1675px -1518px; + background-position: -1317px -1237px; width: 68px; height: 68px; } .Pet_Egg_Spider { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1675px -1587px; + background-position: -1455px -1168px; width: 68px; height: 68px; } .Pet_Egg_Squirrel { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: 0px -1662px; + background-position: -1386px -1168px; width: 68px; height: 68px; } .Pet_Egg_TRex { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -207px -1662px; + background-position: -1386px -1099px; width: 68px; height: 68px; } .Pet_Egg_TigerCub { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -69px -1662px; + background-position: -1317px -1168px; width: 68px; height: 68px; } .Pet_Egg_Treeling { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -138px -1662px; + background-position: -1455px -1099px; width: 68px; height: 68px; } .Pet_Egg_Triceratops { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -276px -1662px; + background-position: -1317px -1099px; width: 68px; height: 68px; } .Pet_Egg_Turtle { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -345px -1662px; + background-position: -1455px -1030px; width: 68px; height: 68px; } .Pet_Egg_Unicorn { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -414px -1662px; + background-position: -1386px -1030px; width: 68px; height: 68px; } .Pet_Egg_Whale { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -483px -1662px; + background-position: -1317px -1030px; width: 68px; height: 68px; } .Pet_Egg_Wolf { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -552px -1662px; + background-position: -1468px -908px; width: 68px; height: 68px; } .Pet_Egg_Yarn { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -621px -1662px; + background-position: -1468px -839px; width: 68px; height: 68px; } .Pet_Food_Cake_Base { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -690px -1662px; + background-position: -1468px -757px; width: 68px; height: 68px; } .Pet_Food_Cake_CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -759px -1662px; + background-position: -1468px -688px; width: 68px; height: 68px; } .Pet_Food_Cake_CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -69px -1593px; + background-position: -1568px -690px; width: 68px; height: 68px; } -.Pet_Food_Cake_Desert { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: 0px -1593px; - width: 68px; - height: 68px; -} -.Pet_Food_Cake_Golden { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1606px -1518px; - width: 68px; - height: 68px; -} -.Pet_Food_Cake_Red { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1606px -1449px; - width: 68px; - height: 68px; -} -.Pet_Food_Cake_Shade { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1606px -1380px; - width: 68px; - height: 68px; -} -.Pet_Food_Cake_Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1606px -1311px; - width: 68px; - height: 68px; -} -.Pet_Food_Cake_White { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1606px -1242px; - width: 68px; - height: 68px; -} -.Pet_Food_Cake_Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1606px -1173px; - width: 68px; - height: 68px; -} -.Pet_Food_Candy_Base { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1606px -1104px; - width: 68px; - height: 68px; -} -.Pet_Food_Candy_CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1606px -1035px; - width: 68px; - height: 68px; -} -.Pet_Food_Candy_CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1606px -966px; - width: 68px; - height: 68px; -} -.Pet_Food_Candy_Desert { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1606px -897px; - width: 68px; - height: 68px; -} -.Pet_Food_Candy_Golden { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1606px -828px; - width: 68px; - height: 68px; -} -.Pet_Food_Candy_Red { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1606px -759px; - width: 68px; - height: 68px; -} -.Pet_Food_Candy_Shade { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1606px -690px; - width: 68px; - height: 68px; -} -.Pet_Food_Candy_Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1606px -621px; - width: 68px; - height: 68px; -} -.Pet_Food_Candy_White { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -966px -1524px; - width: 68px; - height: 68px; -} -.Pet_Food_Candy_Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1537px -966px; - width: 68px; - height: 68px; -} -.Pet_Food_Chocolate { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -621px -1248px; - width: 68px; - height: 68px; -} -.Pet_Food_CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -552px -1248px; - width: 68px; - height: 68px; -} -.Pet_Food_CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -483px -1248px; - width: 68px; - height: 68px; -} -.Pet_Food_Fish { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -414px -1248px; - width: 68px; - height: 68px; -} -.Pet_Food_Honey { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -345px -1248px; - width: 68px; - height: 68px; -} -.Pet_Food_Meat { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -276px -1248px; - width: 68px; - height: 68px; -} -.Pet_Food_Milk { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -207px -1248px; - width: 68px; - height: 68px; -} -.Pet_Food_Potatoe { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -138px -1248px; - width: 68px; - height: 68px; -} -.Pet_Food_RottenMeat { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -69px -1248px; - width: 68px; - height: 68px; -} -.Pet_Food_Saddle { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: 0px -1248px; - width: 68px; - height: 68px; -} -.Pet_Food_Strawberry { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1461px -1157px; - width: 68px; - height: 68px; -} -.Mount_Body_Armadillo-Base { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1429px -1051px; - width: 105px; - height: 105px; -} -.Mount_Body_Armadillo-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1323px -1051px; - width: 105px; - height: 105px; -} -.Mount_Body_Armadillo-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1429px -945px; - width: 105px; - height: 105px; -} -.Mount_Body_Armadillo-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1323px -945px; - width: 105px; - height: 105px; -} -.Mount_Body_Armadillo-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1429px -839px; - width: 105px; - height: 105px; -} -.Mount_Body_Armadillo-Red { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -251px -1097px; - width: 105px; - height: 105px; -} -.Mount_Body_Armadillo-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-11.png'); - background-position: -1323px -839px; - width: 105px; - height: 105px; -} diff --git a/website/client/assets/css/sprites/spritesmith-main-12.css b/website/client/assets/css/sprites/spritesmith-main-12.css index 6e3d2899ab..a1074cd6ca 100644 --- a/website/client/assets/css/sprites/spritesmith-main-12.css +++ b/website/client/assets/css/sprites/spritesmith-main-12.css @@ -1,1458 +1,1548 @@ -.Mount_Body_Armadillo-Skeleton { +.Pet_Food_Cake_Desert { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -787px -212px; - width: 105px; - height: 105px; + background-position: -828px -1656px; + width: 68px; + height: 68px; } -.Mount_Body_Armadillo-White { +.Pet_Food_Cake_Golden { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -106px -1135px; - width: 105px; - height: 105px; + background-position: -705px -1550px; + width: 68px; + height: 68px; } -.Mount_Body_Armadillo-Zombie { +.Pet_Food_Cake_Red { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -530px -817px; - width: 105px; - height: 105px; + background-position: -759px -1656px; + width: 68px; + height: 68px; } -.Mount_Body_Axolotl-Base { +.Pet_Food_Cake_Shade { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -636px -817px; - width: 105px; - height: 105px; + background-position: -690px -1656px; + width: 68px; + height: 68px; } -.Mount_Body_Axolotl-CottonCandyBlue { +.Pet_Food_Cake_Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -742px -817px; - width: 105px; - height: 105px; + background-position: -621px -1656px; + width: 68px; + height: 68px; } -.Mount_Body_Axolotl-CottonCandyPink { +.Pet_Food_Cake_White { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -848px -817px; - width: 105px; - height: 105px; + background-position: -552px -1656px; + width: 68px; + height: 68px; } -.Mount_Body_Axolotl-Desert { +.Pet_Food_Cake_Zombie { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -999px 0px; - width: 105px; - height: 105px; + background-position: -483px -1656px; + width: 68px; + height: 68px; } -.Mount_Body_Axolotl-Golden { +.Pet_Food_Candy_Base { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -999px -106px; - width: 105px; - height: 105px; + background-position: -414px -1656px; + width: 68px; + height: 68px; } -.Mount_Body_Axolotl-Red { +.Pet_Food_Candy_CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -999px -212px; - width: 105px; - height: 105px; + background-position: -345px -1656px; + width: 68px; + height: 68px; } -.Mount_Body_Axolotl-Shade { +.Pet_Food_Candy_CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -999px -318px; - width: 105px; - height: 105px; + background-position: -276px -1656px; + width: 68px; + height: 68px; } -.Mount_Body_Axolotl-Skeleton { +.Pet_Food_Candy_Desert { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -999px -424px; - width: 105px; - height: 105px; + background-position: -207px -1656px; + width: 68px; + height: 68px; } -.Mount_Body_Axolotl-White { +.Pet_Food_Candy_Golden { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -999px -530px; - width: 105px; - height: 105px; + background-position: -138px -1656px; + width: 68px; + height: 68px; } -.Mount_Body_Axolotl-Zombie { +.Pet_Food_Candy_Red { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1105px -848px; - width: 105px; - height: 105px; + background-position: -69px -1656px; + width: 68px; + height: 68px; } -.Mount_Body_Badger-Base { +.Pet_Food_Candy_Shade { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -212px -1135px; - width: 105px; - height: 105px; + background-position: 0px -1656px; + width: 68px; + height: 68px; } -.Mount_Body_Badger-CottonCandyBlue { +.Pet_Food_Candy_Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -318px -1135px; - width: 105px; - height: 105px; + background-position: -636px -1550px; + width: 68px; + height: 68px; } -.Mount_Body_Badger-CottonCandyPink { +.Pet_Food_Candy_White { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -424px -1135px; - width: 105px; - height: 105px; + background-position: -1533px -1550px; + width: 68px; + height: 68px; } -.Mount_Body_Badger-Desert { +.Pet_Food_Candy_Zombie { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -530px -1135px; - width: 105px; - height: 105px; + background-position: -1464px -1550px; + width: 68px; + height: 68px; } -.Mount_Body_Badger-Golden { +.Pet_Food_Chocolate { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -636px -1135px; - width: 105px; - height: 105px; + background-position: -1395px -1550px; + width: 68px; + height: 68px; } -.Mount_Body_Badger-Red { +.Pet_Food_CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -742px -1135px; - width: 105px; - height: 105px; + background-position: -1326px -1550px; + width: 68px; + height: 68px; } -.Mount_Body_Badger-Shade { +.Pet_Food_CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -848px -1135px; - width: 105px; - height: 105px; + background-position: -1257px -1550px; + width: 68px; + height: 68px; } -.Mount_Body_Badger-Skeleton { +.Pet_Food_Fish { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -954px -1135px; - width: 105px; - height: 105px; + background-position: -1188px -1550px; + width: 68px; + height: 68px; } -.Mount_Body_Badger-White { +.Pet_Food_Honey { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1060px -1135px; - width: 105px; - height: 105px; + background-position: -1119px -1550px; + width: 68px; + height: 68px; } -.Mount_Body_Badger-Zombie { +.Pet_Food_Meat { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1166px -1135px; - width: 105px; - height: 105px; + background-position: -1050px -1550px; + width: 68px; + height: 68px; } -.Mount_Body_BearCub-Aquatic { +.Pet_Food_Milk { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1423px -636px; - width: 105px; - height: 105px; + background-position: -981px -1550px; + width: 68px; + height: 68px; } -.Mount_Body_BearCub-Base { +.Pet_Food_Potatoe { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1635px -636px; - width: 105px; - height: 105px; + background-position: -912px -1550px; + width: 68px; + height: 68px; } -.Mount_Body_BearCub-CottonCandyBlue { +.Pet_Food_RottenMeat { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1741px 0px; - width: 105px; - height: 105px; + background-position: -843px -1550px; + width: 68px; + height: 68px; } -.Mount_Body_BearCub-CottonCandyPink { +.Pet_Food_Saddle { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -212px -490px; - width: 105px; - height: 105px; + background-position: -774px -1550px; + width: 68px; + height: 68px; } -.Mount_Body_BearCub-Cupid { +.Pet_Food_Strawberry { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -318px -490px; - width: 105px; - height: 105px; + background-position: -1602px -1550px; + width: 68px; + height: 68px; } -.Mount_Body_BearCub-Desert { +.Mount_Body_Armadillo-Base { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); background-position: -424px -490px; width: 105px; height: 105px; } -.Mount_Body_BearCub-Ember { +.Mount_Body_Armadillo-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); background-position: -530px -490px; width: 105px; height: 105px; } +.Mount_Body_Armadillo-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -666px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Armadillo-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -666px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Armadillo-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -666px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_Armadillo-Red { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -666px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Armadillo-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -666px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Armadillo-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: 0px -596px; + width: 105px; + height: 105px; +} +.Mount_Body_Armadillo-White { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -106px -596px; + width: 105px; + height: 105px; +} +.Mount_Body_Armadillo-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -212px -596px; + width: 105px; + height: 105px; +} +.Mount_Body_Axolotl-Base { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -318px -596px; + width: 105px; + height: 105px; +} +.Mount_Body_Axolotl-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -424px -596px; + width: 105px; + height: 105px; +} +.Mount_Body_Axolotl-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -530px -596px; + width: 105px; + height: 105px; +} +.Mount_Body_Axolotl-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -636px -596px; + width: 105px; + height: 105px; +} +.Mount_Body_Axolotl-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -772px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Axolotl-Red { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -772px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Axolotl-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -772px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_Axolotl-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -772px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Axolotl-White { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -772px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Axolotl-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -772px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Badger-Base { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: 0px -702px; + width: 105px; + height: 105px; +} +.Mount_Body_Badger-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -106px -702px; + width: 105px; + height: 105px; +} +.Mount_Body_Badger-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -212px -702px; + width: 105px; + height: 105px; +} +.Mount_Body_Badger-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -318px -702px; + width: 105px; + height: 105px; +} +.Mount_Body_Badger-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -424px -702px; + width: 105px; + height: 105px; +} +.Mount_Body_Badger-Red { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -530px -702px; + width: 105px; + height: 105px; +} +.Mount_Body_Badger-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -636px -702px; + width: 105px; + height: 105px; +} +.Mount_Body_Badger-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -742px -702px; + width: 105px; + height: 105px; +} +.Mount_Body_Badger-White { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -878px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Badger-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -878px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_BearCub-Aquatic { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -878px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_BearCub-Base { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -878px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_BearCub-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -878px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_BearCub-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -878px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_BearCub-Cupid { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -878px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_BearCub-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: 0px -808px; + width: 105px; + height: 105px; +} +.Mount_Body_BearCub-Ember { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -106px -808px; + width: 105px; + height: 105px; +} .Mount_Body_BearCub-Fairy { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -681px 0px; + background-position: -212px -808px; width: 105px; height: 105px; } .Mount_Body_BearCub-Floral { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -681px -106px; + background-position: -318px -808px; width: 105px; height: 105px; } .Mount_Body_BearCub-Ghost { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -681px -212px; + background-position: -424px -808px; + width: 105px; + height: 105px; +} +.Mount_Body_BearCub-Glass { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -530px -808px; width: 105px; height: 105px; } .Mount_Body_BearCub-Golden { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -681px -318px; + background-position: -636px -808px; width: 105px; height: 105px; } .Mount_Body_BearCub-Holly { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -681px -424px; + background-position: -742px -808px; width: 105px; height: 105px; } .Mount_Body_BearCub-Peppermint { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: 0px -605px; + background-position: -848px -808px; width: 105px; height: 105px; } .Mount_Body_BearCub-Polar { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -106px -605px; + background-position: -984px 0px; width: 105px; height: 105px; } .Mount_Body_BearCub-Rainbow { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -212px -605px; + background-position: -984px -106px; width: 105px; height: 105px; } .Mount_Body_BearCub-Red { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -318px -605px; + background-position: -984px -212px; width: 105px; height: 105px; } .Mount_Body_BearCub-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -424px -605px; + background-position: -984px -318px; width: 105px; height: 105px; } .Mount_Body_BearCub-Shade { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -530px -605px; + background-position: -984px -424px; width: 105px; height: 105px; } .Mount_Body_BearCub-Shimmer { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -636px -605px; + background-position: -984px -530px; width: 105px; height: 105px; } .Mount_Body_BearCub-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -787px 0px; + background-position: -984px -636px; width: 105px; height: 105px; } .Mount_Body_BearCub-Spooky { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -787px -106px; + background-position: -984px -742px; width: 105px; height: 105px; } .Mount_Body_BearCub-StarryNight { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -121px -121px; + background-position: -121px 0px; width: 120px; height: 120px; } .Mount_Body_BearCub-Thunderstorm { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -787px -318px; + background-position: -106px -914px; width: 105px; height: 105px; } .Mount_Body_BearCub-White { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -787px -424px; + background-position: -212px -914px; width: 105px; height: 105px; } .Mount_Body_BearCub-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -787px -530px; + background-position: -318px -914px; width: 105px; height: 105px; } .Mount_Body_Beetle-Base { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: 0px -711px; + background-position: -424px -914px; width: 105px; height: 105px; } .Mount_Body_Beetle-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -106px -711px; + background-position: -530px -914px; width: 105px; height: 105px; } .Mount_Body_Beetle-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -212px -711px; + background-position: -636px -914px; width: 105px; height: 105px; } .Mount_Body_Beetle-Desert { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -318px -711px; + background-position: -742px -914px; width: 105px; height: 105px; } .Mount_Body_Beetle-Golden { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -424px -711px; + background-position: -848px -914px; width: 105px; height: 105px; } .Mount_Body_Beetle-Red { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -530px -711px; + background-position: -954px -914px; width: 105px; height: 105px; } .Mount_Body_Beetle-Shade { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -636px -711px; + background-position: -1090px 0px; width: 105px; height: 105px; } .Mount_Body_Beetle-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -742px -711px; + background-position: -1090px -106px; width: 105px; height: 105px; } .Mount_Body_Beetle-White { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -893px 0px; + background-position: -1090px -212px; width: 105px; height: 105px; } .Mount_Body_Beetle-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -893px -106px; + background-position: -1090px -318px; width: 105px; height: 105px; } .Mount_Body_Bunny-Base { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -893px -212px; + background-position: -1090px -424px; width: 105px; height: 105px; } .Mount_Body_Bunny-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -893px -318px; + background-position: -1090px -530px; width: 105px; height: 105px; } .Mount_Body_Bunny-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -893px -424px; + background-position: -1090px -636px; width: 105px; height: 105px; } .Mount_Body_Bunny-Desert { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -893px -530px; + background-position: -1090px -742px; width: 105px; height: 105px; } .Mount_Body_Bunny-Golden { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -893px -636px; + background-position: -1090px -848px; width: 105px; height: 105px; } .Mount_Body_Bunny-Red { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: 0px -817px; + background-position: 0px -1020px; width: 105px; height: 105px; } .Mount_Body_Bunny-Shade { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -106px -817px; + background-position: -106px -1020px; width: 105px; height: 105px; } .Mount_Body_Bunny-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -212px -817px; + background-position: -212px -1020px; width: 105px; height: 105px; } .Mount_Body_Bunny-White { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -318px -817px; + background-position: -318px -1020px; width: 105px; height: 105px; } .Mount_Body_Bunny-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -424px -817px; + background-position: -424px -1020px; width: 105px; height: 105px; } .Mount_Body_Butterfly-Base { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -106px -242px; + background-position: -106px -366px; width: 105px; height: 123px; } .Mount_Body_Butterfly-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -106px -366px; + background-position: -242px 0px; width: 105px; height: 123px; } .Mount_Body_Butterfly-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: 0px -366px; + background-position: -348px 0px; width: 105px; height: 123px; } .Mount_Body_Butterfly-Desert { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -469px -124px; + background-position: 0px -242px; width: 105px; height: 123px; } .Mount_Body_Butterfly-Golden { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -363px 0px; + background-position: -106px -242px; width: 105px; height: 123px; } .Mount_Body_Butterfly-Red { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: 0px -242px; + background-position: -212px -242px; width: 105px; height: 123px; } .Mount_Body_Butterfly-Shade { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -212px -366px; + background-position: -318px -242px; width: 105px; height: 123px; } .Mount_Body_Butterfly-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -212px -242px; + background-position: -454px 0px; width: 105px; height: 123px; } .Mount_Body_Butterfly-White { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -318px -242px; + background-position: -454px -124px; width: 105px; height: 123px; } .Mount_Body_Butterfly-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -469px 0px; + background-position: 0px -366px; width: 105px; height: 123px; } .Mount_Body_Cactus-Aquatic { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -999px -636px; + background-position: -1196px -424px; width: 105px; height: 105px; } .Mount_Body_Cactus-Base { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -999px -742px; + background-position: -1196px -530px; width: 105px; height: 105px; } .Mount_Body_Cactus-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: 0px -923px; + background-position: -1196px -636px; width: 105px; height: 105px; } .Mount_Body_Cactus-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -106px -923px; + background-position: -1196px -742px; width: 105px; height: 105px; } .Mount_Body_Cactus-Cupid { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -212px -923px; + background-position: -1196px -848px; width: 105px; height: 105px; } .Mount_Body_Cactus-Desert { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -318px -923px; + background-position: -1196px -954px; width: 105px; height: 105px; } .Mount_Body_Cactus-Ember { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -424px -923px; + background-position: 0px -1126px; width: 105px; height: 105px; } .Mount_Body_Cactus-Fairy { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -530px -923px; + background-position: -106px -1126px; width: 105px; height: 105px; } .Mount_Body_Cactus-Floral { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -636px -923px; + background-position: -212px -1126px; width: 105px; height: 105px; } .Mount_Body_Cactus-Ghost { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -742px -923px; + background-position: -318px -1126px; + width: 105px; + height: 105px; +} +.Mount_Body_Cactus-Glass { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -424px -1126px; width: 105px; height: 105px; } .Mount_Body_Cactus-Golden { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -848px -923px; + background-position: -530px -1126px; width: 105px; height: 105px; } .Mount_Body_Cactus-Holly { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -954px -923px; + background-position: -636px -1126px; width: 105px; height: 105px; } .Mount_Body_Cactus-Peppermint { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1105px 0px; + background-position: -742px -1126px; width: 105px; height: 105px; } .Mount_Body_Cactus-Rainbow { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1105px -106px; + background-position: -848px -1126px; width: 105px; height: 105px; } .Mount_Body_Cactus-Red { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1105px -212px; + background-position: 0px -490px; width: 105px; height: 105px; } .Mount_Body_Cactus-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1105px -318px; + background-position: -1060px -1126px; width: 105px; height: 105px; } .Mount_Body_Cactus-Shade { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1105px -424px; + background-position: -1166px -1126px; width: 105px; height: 105px; } .Mount_Body_Cactus-Shimmer { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1105px -530px; + background-position: -1302px 0px; width: 105px; height: 105px; } .Mount_Body_Cactus-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1105px -636px; + background-position: -1302px -106px; width: 105px; height: 105px; } .Mount_Body_Cactus-Spooky { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1105px -742px; + background-position: -1302px -212px; width: 105px; height: 105px; } .Mount_Body_Cactus-StarryNight { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -242px 0px; + background-position: -121px -121px; width: 120px; height: 120px; } .Mount_Body_Cactus-Thunderstorm { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: 0px -1029px; + background-position: -1302px -424px; width: 105px; height: 105px; } .Mount_Body_Cactus-White { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -106px -1029px; + background-position: -1302px -530px; width: 105px; height: 105px; } .Mount_Body_Cactus-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -212px -1029px; + background-position: -1302px -636px; width: 105px; height: 105px; } .Mount_Body_Cheetah-Base { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -318px -1029px; + background-position: -1302px -742px; width: 105px; height: 105px; } .Mount_Body_Cheetah-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -424px -1029px; + background-position: -1302px -848px; width: 105px; height: 105px; } .Mount_Body_Cheetah-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -530px -1029px; + background-position: -1302px -954px; width: 105px; height: 105px; } .Mount_Body_Cheetah-Desert { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -636px -1029px; + background-position: -1302px -1060px; width: 105px; height: 105px; } .Mount_Body_Cheetah-Golden { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -742px -1029px; + background-position: 0px -1232px; width: 105px; height: 105px; } .Mount_Body_Cheetah-Red { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -848px -1029px; + background-position: -106px -1232px; width: 105px; height: 105px; } .Mount_Body_Cheetah-Shade { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -954px -1029px; + background-position: -212px -1232px; width: 105px; height: 105px; } .Mount_Body_Cheetah-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1060px -1029px; + background-position: -318px -1232px; width: 105px; height: 105px; } .Mount_Body_Cheetah-White { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1211px 0px; + background-position: -424px -1232px; width: 105px; height: 105px; } .Mount_Body_Cheetah-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1211px -106px; + background-position: -530px -1232px; width: 105px; height: 105px; } .Mount_Body_Cow-Base { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1211px -212px; + background-position: -636px -1232px; width: 105px; height: 105px; } .Mount_Body_Cow-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1211px -318px; + background-position: -742px -1232px; width: 105px; height: 105px; } .Mount_Body_Cow-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1211px -424px; + background-position: -848px -1232px; width: 105px; height: 105px; } .Mount_Body_Cow-Desert { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1211px -530px; + background-position: -954px -1232px; width: 105px; height: 105px; } .Mount_Body_Cow-Golden { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1211px -636px; + background-position: -1060px -1232px; width: 105px; height: 105px; } .Mount_Body_Cow-Red { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1211px -742px; + background-position: -1166px -1232px; width: 105px; height: 105px; } .Mount_Body_Cow-Shade { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1211px -848px; + background-position: -1272px -1232px; width: 105px; height: 105px; } .Mount_Body_Cow-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1211px -954px; + background-position: -1408px 0px; width: 105px; height: 105px; } .Mount_Body_Cow-White { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: 0px -1135px; + background-position: -1408px -106px; width: 105px; height: 105px; } .Mount_Body_Cow-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -106px -490px; + background-position: -1408px -212px; width: 105px; height: 105px; } .Mount_Body_Cuttlefish-Base { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -575px -345px; + background-position: -348px -124px; width: 105px; height: 114px; } .Mount_Body_Cuttlefish-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: 0px -490px; + background-position: -424px -366px; width: 105px; height: 114px; } .Mount_Body_Cuttlefish-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -469px -248px; + background-position: -242px -124px; width: 105px; height: 114px; } .Mount_Body_Cuttlefish-Desert { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -363px -124px; + background-position: -212px -366px; width: 105px; height: 114px; } .Mount_Body_Cuttlefish-Golden { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -242px -121px; + background-position: -318px -366px; width: 105px; height: 114px; } .Mount_Body_Cuttlefish-Red { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -318px -366px; + background-position: -454px -248px; width: 105px; height: 114px; } .Mount_Body_Cuttlefish-Shade { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -424px -366px; + background-position: -560px 0px; width: 105px; height: 114px; } .Mount_Body_Cuttlefish-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -575px 0px; + background-position: -560px -115px; width: 105px; height: 114px; } .Mount_Body_Cuttlefish-White { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -575px -115px; + background-position: -560px -230px; width: 105px; height: 114px; } .Mount_Body_Cuttlefish-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -575px -230px; + background-position: -560px -345px; width: 105px; height: 114px; } .Mount_Body_Deer-Base { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1317px 0px; + background-position: -106px -1338px; width: 105px; height: 105px; } .Mount_Body_Deer-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1317px -106px; + background-position: -212px -1338px; width: 105px; height: 105px; } .Mount_Body_Deer-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1317px -212px; + background-position: -318px -1338px; width: 105px; height: 105px; } .Mount_Body_Deer-Desert { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1317px -318px; + background-position: -424px -1338px; width: 105px; height: 105px; } .Mount_Body_Deer-Golden { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1317px -424px; + background-position: -530px -1338px; width: 105px; height: 105px; } .Mount_Body_Deer-Red { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1317px -530px; + background-position: -636px -1338px; width: 105px; height: 105px; } .Mount_Body_Deer-Shade { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1317px -636px; + background-position: -742px -1338px; width: 105px; height: 105px; } .Mount_Body_Deer-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1317px -742px; + background-position: -848px -1338px; width: 105px; height: 105px; } .Mount_Body_Deer-White { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1317px -848px; + background-position: -954px -1338px; width: 105px; height: 105px; } .Mount_Body_Deer-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1317px -954px; + background-position: -1060px -1338px; width: 105px; height: 105px; } .Mount_Body_Dragon-Aquatic { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1317px -1060px; + background-position: -1166px -1338px; width: 105px; height: 105px; } .Mount_Body_Dragon-Base { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: 0px -1241px; + background-position: -1272px -1338px; width: 105px; height: 105px; } .Mount_Body_Dragon-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -106px -1241px; + background-position: -1378px -1338px; width: 105px; height: 105px; } .Mount_Body_Dragon-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -212px -1241px; + background-position: -1514px 0px; width: 105px; height: 105px; } .Mount_Body_Dragon-Cupid { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -318px -1241px; + background-position: -1514px -106px; width: 105px; height: 105px; } .Mount_Body_Dragon-Desert { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -424px -1241px; + background-position: -1514px -212px; width: 105px; height: 105px; } .Mount_Body_Dragon-Ember { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -530px -1241px; + background-position: -1514px -318px; width: 105px; height: 105px; } .Mount_Body_Dragon-Fairy { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -636px -1241px; + background-position: -1514px -424px; width: 105px; height: 105px; } .Mount_Body_Dragon-Floral { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -742px -1241px; + background-position: -1514px -530px; width: 105px; height: 105px; } .Mount_Body_Dragon-Ghost { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -848px -1241px; + background-position: -1514px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_Dragon-Glass { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -1514px -742px; width: 105px; height: 105px; } .Mount_Body_Dragon-Golden { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -954px -1241px; + background-position: -1514px -848px; width: 105px; height: 105px; } .Mount_Body_Dragon-Holly { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1060px -1241px; + background-position: -1514px -954px; width: 105px; height: 105px; } .Mount_Body_Dragon-Peppermint { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1166px -1241px; + background-position: -1514px -1060px; width: 105px; height: 105px; } .Mount_Body_Dragon-Rainbow { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1272px -1241px; + background-position: -1514px -1166px; width: 105px; height: 105px; } .Mount_Body_Dragon-Red { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1423px 0px; + background-position: -1514px -1272px; width: 105px; height: 105px; } .Mount_Body_Dragon-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1423px -106px; + background-position: 0px -1444px; width: 105px; height: 105px; } .Mount_Body_Dragon-Shade { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1423px -212px; + background-position: -106px -1444px; width: 105px; height: 105px; } .Mount_Body_Dragon-Shimmer { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1423px -318px; + background-position: -212px -1444px; width: 105px; height: 105px; } .Mount_Body_Dragon-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1423px -424px; + background-position: -318px -1444px; width: 105px; height: 105px; } .Mount_Body_Dragon-Spooky { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1423px -530px; + background-position: -424px -1444px; width: 105px; height: 105px; } .Mount_Body_Dragon-StarryNight { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: 0px -121px; + background-position: 0px 0px; width: 120px; height: 120px; } .Mount_Body_Dragon-Thunderstorm { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1423px -742px; + background-position: -636px -1444px; width: 105px; height: 105px; } .Mount_Body_Dragon-White { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1423px -848px; + background-position: -742px -1444px; width: 105px; height: 105px; } .Mount_Body_Dragon-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1423px -954px; + background-position: -848px -1444px; width: 105px; height: 105px; } .Mount_Body_Egg-Base { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1423px -1060px; + background-position: -954px -1444px; width: 105px; height: 105px; } .Mount_Body_Egg-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1423px -1166px; + background-position: -1060px -1444px; width: 105px; height: 105px; } .Mount_Body_Egg-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: 0px -1347px; + background-position: -1166px -1444px; width: 105px; height: 105px; } .Mount_Body_Egg-Desert { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -106px -1347px; + background-position: -1272px -1444px; width: 105px; height: 105px; } .Mount_Body_Egg-Golden { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -212px -1347px; + background-position: -1378px -1444px; width: 105px; height: 105px; } .Mount_Body_Egg-Red { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -318px -1347px; + background-position: -1484px -1444px; width: 105px; height: 105px; } .Mount_Body_Egg-Shade { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -424px -1347px; + background-position: -1620px 0px; width: 105px; height: 105px; } .Mount_Body_Egg-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -530px -1347px; + background-position: -1620px -106px; width: 105px; height: 105px; } .Mount_Body_Egg-White { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -636px -1347px; + background-position: -1620px -212px; width: 105px; height: 105px; } .Mount_Body_Egg-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -742px -1347px; + background-position: -1620px -318px; width: 105px; height: 105px; } .Mount_Body_Falcon-Base { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -848px -1347px; + background-position: -1620px -424px; width: 105px; height: 105px; } .Mount_Body_Falcon-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -954px -1347px; + background-position: -1620px -530px; width: 105px; height: 105px; } .Mount_Body_Falcon-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1060px -1347px; + background-position: -1620px -636px; width: 105px; height: 105px; } .Mount_Body_Falcon-Desert { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1166px -1347px; + background-position: -1620px -742px; width: 105px; height: 105px; } .Mount_Body_Falcon-Golden { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1272px -1347px; + background-position: -1620px -848px; width: 105px; height: 105px; } .Mount_Body_Falcon-Red { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1378px -1347px; + background-position: -1620px -954px; width: 105px; height: 105px; } .Mount_Body_Falcon-Shade { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1529px 0px; + background-position: -1620px -1060px; width: 105px; height: 105px; } .Mount_Body_Falcon-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1529px -106px; + background-position: -1620px -1166px; width: 105px; height: 105px; } .Mount_Body_Falcon-White { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1529px -212px; + background-position: -1620px -1272px; width: 105px; height: 105px; } .Mount_Body_Falcon-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1529px -318px; + background-position: -1620px -1378px; width: 105px; height: 105px; } .Mount_Body_Ferret-Base { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1529px -424px; + background-position: 0px -1550px; width: 105px; height: 105px; } .Mount_Body_Ferret-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1529px -530px; + background-position: -106px -1550px; width: 105px; height: 105px; } .Mount_Body_Ferret-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1529px -636px; + background-position: -212px -1550px; width: 105px; height: 105px; } .Mount_Body_Ferret-Desert { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1529px -742px; + background-position: -318px -1550px; width: 105px; height: 105px; } .Mount_Body_Ferret-Golden { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1529px -848px; + background-position: -424px -1550px; width: 105px; height: 105px; } .Mount_Body_Ferret-Red { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1529px -954px; + background-position: -530px -1550px; width: 105px; height: 105px; } .Mount_Body_Ferret-Shade { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1529px -1060px; + background-position: -954px -1126px; width: 105px; height: 105px; } .Mount_Body_Ferret-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1529px -1166px; + background-position: -318px -490px; width: 105px; height: 105px; } .Mount_Body_Ferret-White { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1529px -1272px; + background-position: -212px -490px; width: 105px; height: 105px; } .Mount_Body_Ferret-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: 0px -1453px; + background-position: -106px -490px; width: 105px; height: 105px; } .Mount_Body_FlyingPig-Aquatic { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -106px -1453px; + background-position: -530px -1444px; width: 105px; height: 105px; } .Mount_Body_FlyingPig-Base { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -212px -1453px; + background-position: 0px -1338px; width: 105px; height: 105px; } .Mount_Body_FlyingPig-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -318px -1453px; + background-position: -1408px -1166px; width: 105px; height: 105px; } .Mount_Body_FlyingPig-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -424px -1453px; + background-position: -1408px -1060px; width: 105px; height: 105px; } .Mount_Body_FlyingPig-Cupid { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -530px -1453px; + background-position: -1408px -954px; width: 105px; height: 105px; } .Mount_Body_FlyingPig-Desert { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -636px -1453px; + background-position: -1408px -848px; width: 105px; height: 105px; } .Mount_Body_FlyingPig-Ember { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -742px -1453px; + background-position: -1408px -742px; width: 105px; height: 105px; } .Mount_Body_FlyingPig-Fairy { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -848px -1453px; + background-position: -1408px -636px; width: 105px; height: 105px; } .Mount_Body_FlyingPig-Floral { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -954px -1453px; + background-position: -1408px -530px; width: 105px; height: 105px; } .Mount_Body_FlyingPig-Ghost { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1060px -1453px; + background-position: -1408px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_FlyingPig-Glass { + background-image: url('~assets/images/sprites/spritesmith-main-12.png'); + background-position: -1408px -318px; width: 105px; height: 105px; } .Mount_Body_FlyingPig-Golden { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1166px -1453px; + background-position: -1302px -318px; width: 105px; height: 105px; } .Mount_Body_FlyingPig-Holly { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1272px -1453px; + background-position: -1196px -318px; width: 105px; height: 105px; } .Mount_Body_FlyingPig-Peppermint { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1378px -1453px; + background-position: -1196px -212px; width: 105px; height: 105px; } .Mount_Body_FlyingPig-Rainbow { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1484px -1453px; + background-position: -1196px -106px; width: 105px; height: 105px; } .Mount_Body_FlyingPig-Red { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1635px 0px; + background-position: -1196px 0px; width: 105px; height: 105px; } .Mount_Body_FlyingPig-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1635px -106px; + background-position: -1060px -1020px; width: 105px; height: 105px; } .Mount_Body_FlyingPig-Shade { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1635px -212px; + background-position: -954px -1020px; width: 105px; height: 105px; } .Mount_Body_FlyingPig-Shimmer { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1635px -318px; + background-position: -848px -1020px; width: 105px; height: 105px; } .Mount_Body_FlyingPig-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1635px -424px; + background-position: -742px -1020px; width: 105px; height: 105px; } .Mount_Body_FlyingPig-Spooky { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1635px -530px; + background-position: -636px -1020px; width: 105px; height: 105px; } .Mount_Body_FlyingPig-StarryNight { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -121px 0px; + background-position: 0px -121px; width: 120px; height: 120px; } .Mount_Body_FlyingPig-Thunderstorm { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1635px -742px; + background-position: 0px -914px; width: 105px; height: 105px; } .Mount_Body_FlyingPig-White { background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1635px -848px; - width: 105px; - height: 105px; -} -.Mount_Body_FlyingPig-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1635px -954px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Aquatic { - background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1635px -1060px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Base { - background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1635px -1166px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1635px -1272px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1635px -1378px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Cupid { - background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: 0px -1559px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -106px -1559px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Ember { - background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -212px -1559px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Fairy { - background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -318px -1559px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Floral { - background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -424px -1559px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Ghost { - background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -530px -1559px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -636px -1559px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Holly { - background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -742px -1559px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -848px -1559px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -954px -1559px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Red { - background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1060px -1559px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-RoyalPurple { - background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1166px -1559px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1272px -1559px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Shimmer { - background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1378px -1559px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1484px -1559px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-Spooky { - background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1590px -1559px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-StarryNight { - background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: 0px 0px; - width: 120px; - height: 120px; -} -.Mount_Body_Fox-Thunderstorm { - background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1741px -106px; - width: 105px; - height: 105px; -} -.Mount_Body_Fox-White { - background-image: url('~assets/images/sprites/spritesmith-main-12.png'); - background-position: -1741px -212px; + background-position: -530px -1020px; width: 105px; height: 105px; } diff --git a/website/client/assets/css/sprites/spritesmith-main-13.css b/website/client/assets/css/sprites/spritesmith-main-13.css index 5a4455b328..921136f684 100644 --- a/website/client/assets/css/sprites/spritesmith-main-13.css +++ b/website/client/assets/css/sprites/spritesmith-main-13.css @@ -1,1440 +1,1470 @@ +.Mount_Body_FlyingPig-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: -560px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Aquatic { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: -212px -1108px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Base { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: -212px -472px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: -318px -472px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: -424px -472px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Cupid { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: -530px -472px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: -666px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Ember { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: -666px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Fairy { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: -666px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Floral { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: -666px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Ghost { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: -666px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Glass { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: 0px -578px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: -984px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Holly { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: -1196px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: -1196px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: -1196px -742px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Red { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: -1196px -848px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-RoyalPurple { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: -1196px -954px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: -1514px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Shimmer { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: -433px -357px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: -560px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Spooky { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: -560px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-StarryNight { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: -121px 0px; + width: 120px; + height: 120px; +} +.Mount_Body_Fox-Thunderstorm { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: -560px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-White { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: 0px -472px; + width: 105px; + height: 105px; +} .Mount_Body_Fox-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -636px -753px; + background-position: -106px -472px; width: 105px; height: 105px; } .Mount_Body_Frog-Base { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -544px 0px; + background-position: -454px 0px; width: 105px; height: 114px; } .Mount_Body_Frog-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -106px -532px; + background-position: -454px -115px; width: 105px; height: 114px; } .Mount_Body_Frog-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -544px -345px; + background-position: -454px -230px; width: 105px; height: 114px; } .Mount_Body_Frog-Desert { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -650px 0px; + background-position: -242px -124px; width: 105px; height: 114px; } .Mount_Body_Frog-Golden { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -530px -532px; + background-position: -348px 0px; width: 105px; height: 114px; } .Mount_Body_Frog-Red { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -424px -532px; + background-position: -348px -115px; width: 105px; height: 114px; } .Mount_Body_Frog-Shade { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -318px -532px; + background-position: 0px -242px; width: 105px; height: 114px; } .Mount_Body_Frog-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -212px -532px; + background-position: -106px -242px; width: 105px; height: 114px; } .Mount_Body_Frog-White { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -544px -230px; + background-position: -212px -242px; width: 105px; height: 114px; } .Mount_Body_Frog-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: 0px -532px; + background-position: -318px -242px; width: 105px; height: 114px; } .Mount_Body_Gryphon-Base { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -212px -859px; + background-position: -106px -578px; width: 105px; height: 105px; } .Mount_Body_Gryphon-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -318px -859px; + background-position: -212px -578px; width: 105px; height: 105px; } .Mount_Body_Gryphon-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -530px -965px; + background-position: -318px -578px; width: 105px; height: 105px; } .Mount_Body_Gryphon-Desert { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -742px -965px; + background-position: -424px -578px; width: 105px; height: 105px; } .Mount_Body_Gryphon-Golden { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1074px -106px; + background-position: -530px -578px; width: 105px; height: 105px; } .Mount_Body_Gryphon-Red { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1074px -212px; + background-position: -636px -578px; width: 105px; height: 105px; } .Mount_Body_Gryphon-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1074px -318px; + background-position: -772px 0px; width: 105px; height: 105px; } .Mount_Body_Gryphon-Shade { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1180px -954px; + background-position: -772px -106px; width: 105px; height: 105px; } .Mount_Body_Gryphon-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -954px -1283px; + background-position: -772px -212px; width: 105px; height: 105px; } .Mount_Body_Gryphon-White { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: 0px -1601px; + background-position: -772px -318px; width: 105px; height: 105px; } .Mount_Body_Gryphon-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -106px -1601px; + background-position: -772px -424px; width: 105px; height: 105px; } .Mount_Body_GuineaPig-Base { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -212px -1601px; + background-position: -772px -530px; width: 105px; height: 105px; } .Mount_Body_GuineaPig-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -318px -1601px; + background-position: 0px -684px; width: 105px; height: 105px; } .Mount_Body_GuineaPig-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -424px -1601px; + background-position: -106px -684px; width: 105px; height: 105px; } .Mount_Body_GuineaPig-Desert { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -530px -1601px; + background-position: -212px -684px; width: 105px; height: 105px; } .Mount_Body_GuineaPig-Golden { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -636px -1601px; + background-position: -318px -684px; width: 105px; height: 105px; } .Mount_Body_GuineaPig-Red { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -650px -115px; + background-position: -424px -684px; width: 105px; height: 105px; } .Mount_Body_GuineaPig-Shade { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -650px -221px; + background-position: -530px -684px; width: 105px; height: 105px; } .Mount_Body_GuineaPig-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -650px -327px; + background-position: -636px -684px; width: 105px; height: 105px; } .Mount_Body_GuineaPig-White { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -650px -433px; + background-position: -742px -684px; width: 105px; height: 105px; } .Mount_Body_GuineaPig-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -650px -539px; + background-position: -878px 0px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-Base { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: 0px -647px; + background-position: -878px -106px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -106px -647px; + background-position: -878px -212px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -212px -647px; + background-position: -878px -318px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-Desert { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -318px -647px; + background-position: -878px -424px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-Golden { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -424px -647px; + background-position: -878px -530px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-Red { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -530px -647px; + background-position: -878px -636px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-Shade { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -636px -647px; + background-position: 0px -790px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -756px 0px; + background-position: -106px -790px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-White { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -756px -106px; + background-position: -212px -790px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -756px -212px; + background-position: -318px -790px; width: 105px; height: 105px; } .Mount_Body_Hippo-Base { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -756px -318px; + background-position: -424px -790px; width: 105px; height: 105px; } .Mount_Body_Hippo-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -756px -424px; + background-position: -530px -790px; width: 105px; height: 105px; } .Mount_Body_Hippo-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -756px -530px; + background-position: -636px -790px; width: 105px; height: 105px; } .Mount_Body_Hippo-Desert { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -756px -636px; + background-position: -742px -790px; width: 105px; height: 105px; } .Mount_Body_Hippo-Golden { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: 0px -753px; + background-position: -848px -790px; width: 105px; height: 105px; } .Mount_Body_Hippo-Red { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -106px -753px; + background-position: -984px 0px; width: 105px; height: 105px; } .Mount_Body_Hippo-Shade { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -212px -753px; + background-position: -984px -106px; width: 105px; height: 105px; } .Mount_Body_Hippo-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -318px -753px; + background-position: -984px -212px; width: 105px; height: 105px; } .Mount_Body_Hippo-White { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -424px -753px; + background-position: -984px -318px; width: 105px; height: 105px; } .Mount_Body_Hippo-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -530px -753px; + background-position: -984px -424px; width: 105px; height: 105px; } .Mount_Body_Hippogriff-Hopeful { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -106px -408px; + background-position: -121px -121px; width: 111px; height: 108px; } .Mount_Body_Horse-Base { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -742px -753px; + background-position: -984px -636px; width: 105px; height: 105px; } .Mount_Body_Horse-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -862px 0px; + background-position: -984px -742px; width: 105px; height: 105px; } .Mount_Body_Horse-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -862px -106px; + background-position: 0px -896px; width: 105px; height: 105px; } .Mount_Body_Horse-Desert { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -862px -212px; + background-position: -106px -896px; width: 105px; height: 105px; } .Mount_Body_Horse-Golden { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -862px -318px; + background-position: -212px -896px; width: 105px; height: 105px; } .Mount_Body_Horse-Red { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -862px -424px; + background-position: -318px -896px; width: 105px; height: 105px; } .Mount_Body_Horse-Shade { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -862px -530px; + background-position: -424px -896px; width: 105px; height: 105px; } .Mount_Body_Horse-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -862px -636px; + background-position: -530px -896px; width: 105px; height: 105px; } .Mount_Body_Horse-White { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -862px -742px; + background-position: -636px -896px; width: 105px; height: 105px; } .Mount_Body_Horse-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: 0px -859px; + background-position: -742px -896px; width: 105px; height: 105px; } .Mount_Body_JackOLantern-Base { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -848px -1601px; + background-position: -1726px -424px; width: 90px; height: 105px; } .Mount_Body_JackOLantern-Ghost { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -439px -408px; + background-position: -1726px -318px; width: 90px; height: 105px; } .Mount_Body_Jackalope-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -106px -859px; + background-position: -848px -896px; width: 105px; height: 105px; } .Mount_Body_LionCub-Aquatic { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -424px -859px; + background-position: -1090px -106px; width: 105px; height: 105px; } .Mount_Body_LionCub-Base { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -530px -859px; + background-position: -1090px -212px; width: 105px; height: 105px; } .Mount_Body_LionCub-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -636px -859px; + background-position: -1090px -318px; width: 105px; height: 105px; } .Mount_Body_LionCub-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -742px -859px; + background-position: -1090px -424px; width: 105px; height: 105px; } .Mount_Body_LionCub-Cupid { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -848px -859px; + background-position: -1090px -530px; width: 105px; height: 105px; } .Mount_Body_LionCub-Desert { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -968px 0px; + background-position: -1090px -636px; width: 105px; height: 105px; } .Mount_Body_LionCub-Ember { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -968px -106px; + background-position: -1090px -742px; width: 105px; height: 105px; } .Mount_Body_LionCub-Ethereal { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -968px -212px; + background-position: -1090px -848px; width: 105px; height: 105px; } .Mount_Body_LionCub-Fairy { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -968px -318px; + background-position: 0px -1002px; width: 105px; height: 105px; } .Mount_Body_LionCub-Floral { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -968px -424px; + background-position: -106px -1002px; width: 105px; height: 105px; } .Mount_Body_LionCub-Ghost { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -968px -530px; + background-position: -212px -1002px; + width: 105px; + height: 105px; +} +.Mount_Body_LionCub-Glass { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: -318px -1002px; width: 105px; height: 105px; } .Mount_Body_LionCub-Golden { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -968px -636px; + background-position: -424px -1002px; width: 105px; height: 105px; } .Mount_Body_LionCub-Holly { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -968px -742px; + background-position: -530px -1002px; width: 105px; height: 105px; } .Mount_Body_LionCub-Peppermint { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -968px -848px; + background-position: -636px -1002px; width: 105px; height: 105px; } .Mount_Body_LionCub-Rainbow { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: 0px -965px; + background-position: -742px -1002px; width: 105px; height: 105px; } .Mount_Body_LionCub-Red { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -106px -965px; + background-position: -848px -1002px; width: 105px; height: 105px; } .Mount_Body_LionCub-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -212px -965px; + background-position: -954px -1002px; width: 105px; height: 105px; } .Mount_Body_LionCub-Shade { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -318px -965px; + background-position: -1060px -1002px; width: 105px; height: 105px; } .Mount_Body_LionCub-Shimmer { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -424px -965px; + background-position: -1196px 0px; width: 105px; height: 105px; } .Mount_Body_LionCub-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -218px -408px; + background-position: -106px -357px; width: 111px; height: 105px; } .Mount_Body_LionCub-Spooky { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -636px -965px; + background-position: -1196px -212px; width: 105px; height: 105px; } .Mount_Body_LionCub-StarryNight { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -408px -136px; + background-position: 0px -121px; width: 120px; height: 120px; } .Mount_Body_LionCub-Thunderstorm { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -848px -965px; + background-position: -1196px -424px; width: 105px; height: 105px; } .Mount_Body_LionCub-White { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -954px -965px; + background-position: -1196px -530px; width: 105px; height: 105px; } .Mount_Body_LionCub-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1074px 0px; + background-position: -1196px -636px; width: 105px; height: 105px; } .Mount_Body_MagicalBee-Base { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -544px -115px; + background-position: 0px -357px; width: 105px; height: 114px; } .Mount_Body_Mammoth-Base { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: 0px -408px; + background-position: -242px 0px; width: 105px; height: 123px; } .Mount_Body_MantisShrimp-Base { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -330px -408px; + background-position: -218px -357px; width: 108px; height: 105px; } .Mount_Body_Monkey-Base { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1074px -424px; + background-position: 0px -1108px; width: 105px; height: 105px; } .Mount_Body_Monkey-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1074px -530px; + background-position: -106px -1108px; width: 105px; height: 105px; } .Mount_Body_Monkey-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1074px -636px; + background-position: -327px -357px; width: 105px; height: 105px; } .Mount_Body_Monkey-Desert { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1074px -742px; + background-position: -318px -1108px; width: 105px; height: 105px; } .Mount_Body_Monkey-Golden { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1074px -848px; + background-position: -424px -1108px; width: 105px; height: 105px; } .Mount_Body_Monkey-Red { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1074px -954px; + background-position: -530px -1108px; width: 105px; height: 105px; } .Mount_Body_Monkey-Shade { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: 0px -1071px; + background-position: -636px -1108px; width: 105px; height: 105px; } .Mount_Body_Monkey-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -106px -1071px; + background-position: -742px -1108px; width: 105px; height: 105px; } .Mount_Body_Monkey-White { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -212px -1071px; + background-position: -848px -1108px; width: 105px; height: 105px; } .Mount_Body_Monkey-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -318px -1071px; + background-position: -954px -1108px; width: 105px; height: 105px; } .Mount_Body_Nudibranch-Base { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -424px -1071px; + background-position: -1060px -1108px; width: 105px; height: 105px; } .Mount_Body_Nudibranch-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -530px -1071px; + background-position: -1166px -1108px; width: 105px; height: 105px; } .Mount_Body_Nudibranch-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -636px -1071px; + background-position: -1302px 0px; width: 105px; height: 105px; } .Mount_Body_Nudibranch-Desert { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -742px -1071px; + background-position: -1302px -106px; width: 105px; height: 105px; } .Mount_Body_Nudibranch-Golden { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -848px -1071px; + background-position: -1302px -212px; width: 105px; height: 105px; } .Mount_Body_Nudibranch-Red { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -954px -1071px; + background-position: -1302px -318px; width: 105px; height: 105px; } .Mount_Body_Nudibranch-Shade { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1060px -1071px; + background-position: -1302px -424px; width: 105px; height: 105px; } .Mount_Body_Nudibranch-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1180px 0px; + background-position: -1302px -530px; width: 105px; height: 105px; } .Mount_Body_Nudibranch-White { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1180px -106px; + background-position: -1302px -636px; width: 105px; height: 105px; } .Mount_Body_Nudibranch-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1180px -212px; + background-position: -1302px -742px; width: 105px; height: 105px; } .Mount_Body_Octopus-Base { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1180px -318px; + background-position: -1302px -848px; width: 105px; height: 105px; } .Mount_Body_Octopus-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1180px -424px; + background-position: -1302px -954px; width: 105px; height: 105px; } .Mount_Body_Octopus-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1180px -530px; + background-position: -1302px -1060px; width: 105px; height: 105px; } .Mount_Body_Octopus-Desert { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1180px -636px; + background-position: 0px -1214px; width: 105px; height: 105px; } .Mount_Body_Octopus-Golden { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1180px -742px; + background-position: -106px -1214px; width: 105px; height: 105px; } .Mount_Body_Octopus-Red { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1180px -848px; + background-position: -212px -1214px; width: 105px; height: 105px; } .Mount_Body_Octopus-Shade { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -742px -1601px; + background-position: -318px -1214px; width: 105px; height: 105px; } .Mount_Body_Octopus-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1180px -1060px; + background-position: -424px -1214px; width: 105px; height: 105px; } .Mount_Body_Octopus-White { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: 0px -1177px; + background-position: -530px -1214px; width: 105px; height: 105px; } .Mount_Body_Octopus-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -106px -1177px; + background-position: -636px -1214px; width: 105px; height: 105px; } .Mount_Body_Orca-Base { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -212px -1177px; + background-position: -742px -1214px; width: 105px; height: 105px; } .Mount_Body_Owl-Base { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -318px -1177px; + background-position: -848px -1214px; width: 105px; height: 105px; } .Mount_Body_Owl-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -424px -1177px; + background-position: -954px -1214px; width: 105px; height: 105px; } .Mount_Body_Owl-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -530px -1177px; + background-position: -1060px -1214px; width: 105px; height: 105px; } .Mount_Body_Owl-Desert { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -636px -1177px; + background-position: -1166px -1214px; width: 105px; height: 105px; } .Mount_Body_Owl-Golden { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -742px -1177px; + background-position: -1272px -1214px; width: 105px; height: 105px; } .Mount_Body_Owl-Red { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -848px -1177px; + background-position: -1408px 0px; width: 105px; height: 105px; } .Mount_Body_Owl-Shade { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -954px -1177px; + background-position: -1408px -106px; width: 105px; height: 105px; } .Mount_Body_Owl-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1060px -1177px; + background-position: -1408px -212px; width: 105px; height: 105px; } .Mount_Body_Owl-White { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1166px -1177px; + background-position: -1408px -318px; width: 105px; height: 105px; } .Mount_Body_Owl-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1286px 0px; + background-position: -1408px -424px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Aquatic { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1286px -106px; + background-position: -1408px -530px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Base { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1286px -212px; + background-position: -1408px -636px; width: 105px; height: 105px; } .Mount_Body_PandaCub-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1286px -318px; + background-position: -1408px -742px; width: 105px; height: 105px; } .Mount_Body_PandaCub-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1286px -424px; + background-position: -1408px -848px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Cupid { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1286px -530px; + background-position: -1408px -954px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Desert { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1286px -636px; + background-position: -1408px -1060px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Ember { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1286px -742px; + background-position: -1408px -1166px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Fairy { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1286px -848px; + background-position: 0px -1320px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Floral { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1286px -954px; + background-position: -106px -1320px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Ghost { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1286px -1060px; + background-position: -212px -1320px; + width: 105px; + height: 105px; +} +.Mount_Body_PandaCub-Glass { + background-image: url('~assets/images/sprites/spritesmith-main-13.png'); + background-position: -318px -1320px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Golden { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1286px -1166px; + background-position: -424px -1320px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Holly { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: 0px -1283px; + background-position: -530px -1320px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Peppermint { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -106px -1283px; + background-position: -636px -1320px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Rainbow { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -212px -1283px; + background-position: -742px -1320px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Red { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -318px -1283px; + background-position: -848px -1320px; width: 105px; height: 105px; } .Mount_Body_PandaCub-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -424px -1283px; + background-position: -954px -1320px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Shade { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -530px -1283px; + background-position: -1060px -1320px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Shimmer { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -636px -1283px; + background-position: -1166px -1320px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -742px -1283px; + background-position: -1272px -1320px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Spooky { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -848px -1283px; + background-position: -1378px -1320px; width: 105px; height: 105px; } .Mount_Body_PandaCub-StarryNight { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -408px -257px; + background-position: 0px 0px; width: 120px; height: 120px; } .Mount_Body_PandaCub-Thunderstorm { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1060px -1283px; + background-position: -1514px -106px; width: 105px; height: 105px; } .Mount_Body_PandaCub-White { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1166px -1283px; + background-position: -1514px -212px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1272px -1283px; + background-position: -1514px -318px; width: 105px; height: 105px; } .Mount_Body_Parrot-Base { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1392px 0px; + background-position: -1514px -424px; width: 105px; height: 105px; } .Mount_Body_Parrot-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1392px -106px; + background-position: -1514px -530px; width: 105px; height: 105px; } .Mount_Body_Parrot-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1392px -212px; + background-position: -1514px -636px; width: 105px; height: 105px; } .Mount_Body_Parrot-Desert { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1392px -318px; + background-position: -1514px -742px; width: 105px; height: 105px; } .Mount_Body_Parrot-Golden { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1392px -424px; + background-position: -1514px -848px; width: 105px; height: 105px; } .Mount_Body_Parrot-Red { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1392px -530px; + background-position: -1514px -954px; width: 105px; height: 105px; } .Mount_Body_Parrot-Shade { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1392px -636px; + background-position: -1514px -1060px; width: 105px; height: 105px; } .Mount_Body_Parrot-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1392px -742px; + background-position: -1514px -1166px; width: 105px; height: 105px; } .Mount_Body_Parrot-White { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1392px -848px; + background-position: -1514px -1272px; width: 105px; height: 105px; } .Mount_Body_Parrot-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1392px -954px; + background-position: 0px -1426px; width: 105px; height: 105px; } .Mount_Body_Peacock-Base { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1392px -1060px; + background-position: -106px -1426px; width: 105px; height: 105px; } .Mount_Body_Peacock-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1392px -1166px; + background-position: -212px -1426px; width: 105px; height: 105px; } .Mount_Body_Peacock-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1392px -1272px; + background-position: -318px -1426px; width: 105px; height: 105px; } .Mount_Body_Peacock-Desert { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: 0px -1389px; + background-position: -424px -1426px; width: 105px; height: 105px; } .Mount_Body_Peacock-Golden { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -106px -1389px; + background-position: -530px -1426px; width: 105px; height: 105px; } .Mount_Body_Peacock-Red { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -212px -1389px; + background-position: -636px -1426px; width: 105px; height: 105px; } .Mount_Body_Peacock-Shade { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -318px -1389px; + background-position: -742px -1426px; width: 105px; height: 105px; } .Mount_Body_Peacock-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -424px -1389px; + background-position: -848px -1426px; width: 105px; height: 105px; } .Mount_Body_Peacock-White { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -530px -1389px; + background-position: -954px -1426px; width: 105px; height: 105px; } .Mount_Body_Peacock-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -636px -1389px; + background-position: -1060px -1426px; width: 105px; height: 105px; } .Mount_Body_Penguin-Base { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -742px -1389px; + background-position: -1166px -1426px; width: 105px; height: 105px; } .Mount_Body_Penguin-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -848px -1389px; + background-position: -1272px -1426px; width: 105px; height: 105px; } .Mount_Body_Penguin-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -954px -1389px; + background-position: -1378px -1426px; width: 105px; height: 105px; } .Mount_Body_Penguin-Desert { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1060px -1389px; + background-position: -1484px -1426px; width: 105px; height: 105px; } .Mount_Body_Penguin-Golden { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1166px -1389px; + background-position: -1620px 0px; width: 105px; height: 105px; } .Mount_Body_Penguin-Red { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1272px -1389px; + background-position: -1620px -106px; width: 105px; height: 105px; } .Mount_Body_Penguin-Shade { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1378px -1389px; + background-position: -1620px -212px; width: 105px; height: 105px; } .Mount_Body_Penguin-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1498px 0px; + background-position: -1620px -318px; width: 105px; height: 105px; } .Mount_Body_Penguin-White { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1498px -106px; + background-position: -1620px -424px; width: 105px; height: 105px; } .Mount_Body_Penguin-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1498px -212px; + background-position: -1620px -530px; width: 105px; height: 105px; } .Mount_Body_Phoenix-Base { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1498px -318px; + background-position: -1620px -636px; width: 105px; height: 105px; } .Mount_Body_Pterodactyl-Base { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1498px -424px; + background-position: -1620px -742px; width: 105px; height: 105px; } .Mount_Body_Pterodactyl-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1498px -530px; + background-position: -1620px -848px; width: 105px; height: 105px; } .Mount_Body_Pterodactyl-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1498px -636px; + background-position: -1620px -954px; width: 105px; height: 105px; } .Mount_Body_Pterodactyl-Desert { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1498px -742px; + background-position: -1620px -1060px; width: 105px; height: 105px; } .Mount_Body_Pterodactyl-Golden { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1498px -848px; + background-position: -1620px -1166px; width: 105px; height: 105px; } .Mount_Body_Pterodactyl-Red { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1498px -954px; + background-position: -1620px -1272px; width: 105px; height: 105px; } .Mount_Body_Pterodactyl-Shade { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1498px -1060px; + background-position: -1620px -1378px; width: 105px; height: 105px; } .Mount_Body_Pterodactyl-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1498px -1166px; + background-position: 0px -1532px; width: 105px; height: 105px; } .Mount_Body_Pterodactyl-White { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1498px -1272px; + background-position: -106px -1532px; width: 105px; height: 105px; } .Mount_Body_Pterodactyl-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1498px -1378px; + background-position: -212px -1532px; width: 105px; height: 105px; } .Mount_Body_Rat-Base { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: 0px -1495px; + background-position: -318px -1532px; width: 105px; height: 105px; } .Mount_Body_Rat-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -106px -1495px; + background-position: -424px -1532px; width: 105px; height: 105px; } .Mount_Body_Rat-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -212px -1495px; + background-position: -530px -1532px; width: 105px; height: 105px; } .Mount_Body_Rat-Desert { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -318px -1495px; + background-position: -636px -1532px; width: 105px; height: 105px; } .Mount_Body_Rat-Golden { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -424px -1495px; + background-position: -742px -1532px; width: 105px; height: 105px; } .Mount_Body_Rat-Red { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -530px -1495px; + background-position: -848px -1532px; width: 105px; height: 105px; } .Mount_Body_Rat-Shade { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -636px -1495px; + background-position: -954px -1532px; width: 105px; height: 105px; } .Mount_Body_Rat-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -742px -1495px; + background-position: -1060px -1532px; width: 105px; height: 105px; } .Mount_Body_Rat-White { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -848px -1495px; + background-position: -1166px -1532px; width: 105px; height: 105px; } .Mount_Body_Rat-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -954px -1495px; + background-position: -1272px -1532px; width: 105px; height: 105px; } .Mount_Body_Rock-Base { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1060px -1495px; + background-position: -1378px -1532px; width: 105px; height: 105px; } .Mount_Body_Rock-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1166px -1495px; + background-position: -1484px -1532px; width: 105px; height: 105px; } .Mount_Body_Rock-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1272px -1495px; + background-position: -1590px -1532px; width: 105px; height: 105px; } .Mount_Body_Rock-Desert { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1378px -1495px; + background-position: -1726px 0px; width: 105px; height: 105px; } .Mount_Body_Rock-Golden { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1484px -1495px; + background-position: -1726px -106px; width: 105px; height: 105px; } .Mount_Body_Rock-Red { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1604px 0px; + background-position: -1090px 0px; width: 105px; height: 105px; } .Mount_Body_Rock-Shade { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1604px -106px; + background-position: -954px -896px; width: 105px; height: 105px; } .Mount_Body_Rock-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1604px -212px; + background-position: -1726px -212px; width: 105px; height: 105px; } -.Mount_Body_Rock-White { - background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1604px -318px; - width: 105px; - height: 105px; -} -.Mount_Body_Rock-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1604px -424px; - width: 105px; - height: 105px; -} -.Mount_Body_Rooster-Base { - background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1604px -530px; - width: 105px; - height: 105px; -} -.Mount_Body_Rooster-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1604px -636px; - width: 105px; - height: 105px; -} -.Mount_Body_Rooster-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1604px -742px; - width: 105px; - height: 105px; -} -.Mount_Body_Rooster-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1604px -848px; - width: 105px; - height: 105px; -} -.Mount_Body_Rooster-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1604px -954px; - width: 105px; - height: 105px; -} -.Mount_Body_Rooster-Red { - background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1604px -1060px; - width: 105px; - height: 105px; -} -.Mount_Body_Rooster-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1604px -1166px; - width: 105px; - height: 105px; -} -.Mount_Body_Rooster-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1604px -1272px; - width: 105px; - height: 105px; -} -.Mount_Body_Rooster-White { - background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1604px -1378px; - width: 105px; - height: 105px; -} -.Mount_Body_Rooster-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -1604px -1484px; - width: 105px; - height: 105px; -} -.Mount_Body_Sabretooth-Base { - background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -136px -272px; - width: 135px; - height: 135px; -} -.Mount_Body_Sabretooth-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: 0px -272px; - width: 135px; - height: 135px; -} -.Mount_Body_Sabretooth-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -272px -136px; - width: 135px; - height: 135px; -} -.Mount_Body_Sabretooth-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -272px 0px; - width: 135px; - height: 135px; -} -.Mount_Body_Sabretooth-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -136px -136px; - width: 135px; - height: 135px; -} -.Mount_Body_Sabretooth-Red { - background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: 0px -136px; - width: 135px; - height: 135px; -} -.Mount_Body_Sabretooth-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -136px 0px; - width: 135px; - height: 135px; -} -.Mount_Body_Sabretooth-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -272px -272px; - width: 135px; - height: 135px; -} -.Mount_Body_Sabretooth-White { - background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: -408px 0px; - width: 135px; - height: 135px; -} -.Mount_Body_Sabretooth-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-13.png'); - background-position: 0px 0px; - width: 135px; - height: 135px; -} diff --git a/website/client/assets/css/sprites/spritesmith-main-14.css b/website/client/assets/css/sprites/spritesmith-main-14.css index 1a4458649c..404533d874 100644 --- a/website/client/assets/css/sprites/spritesmith-main-14.css +++ b/website/client/assets/css/sprites/spritesmith-main-14.css @@ -1,1134 +1,1278 @@ -.Mount_Body_Seahorse-Base { +.Mount_Body_Rock-White { background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1028px -212px; + background-position: -1164px -848px; width: 105px; height: 105px; } -.Mount_Body_Seahorse-CottonCandyBlue { +.Mount_Body_Rock-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1240px -530px; + background-position: -1270px -318px; width: 105px; height: 105px; } -.Mount_Body_Seahorse-CottonCandyPink { +.Mount_Body_Rooster-Base { background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1028px -318px; + background-position: -1164px -954px; width: 105px; height: 105px; } -.Mount_Body_Seahorse-Desert { +.Mount_Body_Rooster-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1028px -424px; + background-position: 0px -1164px; width: 105px; height: 105px; } -.Mount_Body_Seahorse-Golden { +.Mount_Body_Rooster-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1028px -530px; + background-position: -106px -1164px; width: 105px; height: 105px; } -.Mount_Body_Seahorse-Red { +.Mount_Body_Rooster-Desert { background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1028px -636px; + background-position: -212px -1164px; width: 105px; height: 105px; } -.Mount_Body_Seahorse-Shade { +.Mount_Body_Rooster-Golden { background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1028px -742px; + background-position: -318px -1164px; width: 105px; height: 105px; } -.Mount_Body_Seahorse-Skeleton { +.Mount_Body_Rooster-Red { background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1028px -848px; + background-position: -424px -1164px; width: 105px; height: 105px; } -.Mount_Body_Seahorse-White { +.Mount_Body_Rooster-Shade { background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: 0px -1028px; + background-position: -530px -1164px; width: 105px; height: 105px; } -.Mount_Body_Seahorse-Zombie { +.Mount_Body_Rooster-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -106px -1028px; + background-position: -636px -1164px; width: 105px; height: 105px; } -.Mount_Body_Sheep-Base { +.Mount_Body_Rooster-White { background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -212px -1028px; + background-position: -636px -1270px; width: 105px; height: 105px; } -.Mount_Body_Sheep-CottonCandyBlue { +.Mount_Body_Rooster-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -318px -1134px; + background-position: -1164px -742px; width: 105px; height: 105px; } -.Mount_Body_Sheep-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1240px -636px; - width: 105px; - height: 105px; -} -.Mount_Body_Sheep-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1240px -742px; - width: 105px; - height: 105px; -} -.Mount_Body_Sheep-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1240px -848px; - width: 105px; - height: 105px; -} -.Mount_Body_Sheep-Red { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1240px -954px; - width: 105px; - height: 105px; -} -.Mount_Body_Sheep-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1240px -1060px; - width: 105px; - height: 105px; -} -.Mount_Body_Sheep-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: 0px -1240px; - width: 105px; - height: 105px; -} -.Mount_Body_Sheep-White { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -106px -1240px; - width: 105px; - height: 105px; -} -.Mount_Body_Sheep-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -212px -1240px; - width: 105px; - height: 105px; -} -.Mount_Body_Slime-Base { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -318px -1240px; - width: 105px; - height: 105px; -} -.Mount_Body_Slime-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -424px -1240px; - width: 105px; - height: 105px; -} -.Mount_Body_Slime-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1452px -1060px; - width: 105px; - height: 105px; -} -.Mount_Body_Slime-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1452px -1166px; - width: 105px; - height: 105px; -} -.Mount_Body_Slime-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1452px -1272px; - width: 105px; - height: 105px; -} -.Mount_Body_Slime-Red { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: 0px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_Slime-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -106px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_Slime-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -212px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_Slime-White { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -318px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_Slime-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -424px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_Sloth-Base { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -530px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_Sloth-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -636px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_Sloth-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -742px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_Sloth-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -848px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_Sloth-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -954px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_Sloth-Red { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1060px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_Sloth-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1166px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_Sloth-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1272px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_Sloth-White { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1378px -1452px; - width: 105px; - height: 105px; -} -.Mount_Body_Sloth-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1558px 0px; - width: 105px; - height: 105px; -} -.Mount_Body_Snail-Base { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1558px -106px; - width: 105px; - height: 105px; -} -.Mount_Body_Snail-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1558px -212px; - width: 105px; - height: 105px; -} -.Mount_Body_Snail-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1558px -318px; - width: 105px; - height: 105px; -} -.Mount_Body_Snail-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1558px -424px; - width: 105px; - height: 105px; -} -.Mount_Body_Snail-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1558px -530px; - width: 105px; - height: 105px; -} -.Mount_Body_Snail-Red { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1558px -636px; - width: 105px; - height: 105px; -} -.Mount_Body_Snail-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -922px -324px; - width: 105px; - height: 105px; -} -.Mount_Body_Snail-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -922px -430px; - width: 105px; - height: 105px; -} -.Mount_Body_Snail-White { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -922px -536px; - width: 105px; - height: 105px; -} -.Mount_Body_Snail-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -922px -642px; - width: 105px; - height: 105px; -} -.Mount_Body_Snake-Base { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: 0px -816px; - width: 105px; - height: 105px; -} -.Mount_Body_Snake-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -106px -816px; - width: 105px; - height: 105px; -} -.Mount_Body_Snake-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -212px -816px; - width: 105px; - height: 105px; -} -.Mount_Body_Snake-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -318px -816px; - width: 105px; - height: 105px; -} -.Mount_Body_Snake-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -424px -816px; - width: 105px; - height: 105px; -} -.Mount_Body_Snake-Red { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -530px -816px; - width: 105px; - height: 105px; -} -.Mount_Body_Snake-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -636px -816px; - width: 105px; - height: 105px; -} -.Mount_Body_Snake-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -742px -816px; - width: 105px; - height: 105px; -} -.Mount_Body_Snake-White { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -848px -816px; - width: 105px; - height: 105px; -} -.Mount_Body_Snake-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: 0px -922px; - width: 105px; - height: 105px; -} -.Mount_Body_Spider-Base { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -106px -922px; - width: 105px; - height: 105px; -} -.Mount_Body_Spider-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -212px -922px; - width: 105px; - height: 105px; -} -.Mount_Body_Spider-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -318px -922px; - width: 105px; - height: 105px; -} -.Mount_Body_Spider-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -424px -922px; - width: 105px; - height: 105px; -} -.Mount_Body_Spider-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -530px -922px; - width: 105px; - height: 105px; -} -.Mount_Body_Spider-Red { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -636px -922px; - width: 105px; - height: 105px; -} -.Mount_Body_Spider-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -742px -922px; - width: 105px; - height: 105px; -} -.Mount_Body_Spider-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -848px -922px; - width: 105px; - height: 105px; -} -.Mount_Body_Spider-White { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1028px 0px; - width: 105px; - height: 105px; -} -.Mount_Body_Spider-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1028px -106px; - width: 105px; - height: 105px; -} -.Mount_Body_Squirrel-Base { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -816px -436px; - width: 105px; - height: 108px; -} -.Mount_Body_Squirrel-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -922px -109px; - width: 105px; - height: 108px; -} -.Mount_Body_Squirrel-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -922px 0px; - width: 105px; - height: 108px; -} -.Mount_Body_Squirrel-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -816px -654px; - width: 105px; - height: 108px; -} -.Mount_Body_Squirrel-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -816px -545px; - width: 105px; - height: 108px; -} -.Mount_Body_Squirrel-Red { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -665px -680px; - width: 105px; - height: 108px; -} -.Mount_Body_Squirrel-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -816px -327px; - width: 105px; - height: 108px; -} -.Mount_Body_Squirrel-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -816px -218px; - width: 105px; - height: 108px; -} -.Mount_Body_Squirrel-White { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -816px -109px; - width: 105px; - height: 108px; -} -.Mount_Body_Squirrel-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -816px 0px; - width: 105px; - height: 108px; -} -.Mount_Body_TRex-Base { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: 0px -408px; - width: 135px; - height: 135px; -} -.Mount_Body_TRex-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -136px -408px; - width: 135px; - height: 135px; -} -.Mount_Body_TRex-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -272px -408px; - width: 135px; - height: 135px; -} -.Mount_Body_TRex-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -408px -408px; - width: 135px; - height: 135px; -} -.Mount_Body_TRex-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -544px 0px; - width: 135px; - height: 135px; -} -.Mount_Body_TRex-Red { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -544px -136px; - width: 135px; - height: 135px; -} -.Mount_Body_TRex-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -544px -272px; - width: 135px; - height: 135px; -} -.Mount_Body_TRex-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -544px -408px; - width: 135px; - height: 135px; -} -.Mount_Body_TRex-White { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: 0px -544px; - width: 135px; - height: 135px; -} -.Mount_Body_TRex-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -136px -544px; - width: 135px; - height: 135px; -} -.Mount_Body_TigerCub-Aquatic { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -318px -1028px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Base { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -424px -1028px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -530px -1028px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -636px -1028px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Cupid { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -742px -1028px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -848px -1028px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Ember { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -954px -1028px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Fairy { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1134px 0px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Floral { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1134px -106px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Ghost { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1134px -212px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1134px -318px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Holly { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1134px -424px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1134px -530px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1134px -636px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Red { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1134px -742px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-RoyalPurple { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1134px -848px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1134px -954px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Shimmer { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: 0px -1134px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -106px -1134px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Spooky { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -212px -1134px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-StarryNight { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -544px -680px; - width: 120px; - height: 120px; -} -.Mount_Body_TigerCub-Thunderstorm { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -424px -1134px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-White { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -530px -1134px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -636px -1134px; - width: 105px; - height: 105px; -} -.Mount_Body_Treeling-Base { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -742px -1134px; - width: 105px; - height: 105px; -} -.Mount_Body_Treeling-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -848px -1134px; - width: 105px; - height: 105px; -} -.Mount_Body_Treeling-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -954px -1134px; - width: 105px; - height: 105px; -} -.Mount_Body_Treeling-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1060px -1134px; - width: 105px; - height: 105px; -} -.Mount_Body_Treeling-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1240px 0px; - width: 105px; - height: 105px; -} -.Mount_Body_Treeling-Red { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1240px -106px; - width: 105px; - height: 105px; -} -.Mount_Body_Treeling-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1240px -212px; - width: 105px; - height: 105px; -} -.Mount_Body_Treeling-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1240px -318px; - width: 105px; - height: 105px; -} -.Mount_Body_Treeling-White { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1240px -424px; - width: 105px; - height: 105px; -} -.Mount_Body_Treeling-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -922px -218px; - width: 105px; - height: 105px; -} -.Mount_Body_Triceratops-Base { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -530px -1240px; - width: 105px; - height: 105px; -} -.Mount_Body_Triceratops-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -636px -1240px; - width: 105px; - height: 105px; -} -.Mount_Body_Triceratops-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -742px -1240px; - width: 105px; - height: 105px; -} -.Mount_Body_Triceratops-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -848px -1240px; - width: 105px; - height: 105px; -} -.Mount_Body_Triceratops-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -954px -1240px; - width: 105px; - height: 105px; -} -.Mount_Body_Triceratops-Red { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1060px -1240px; - width: 105px; - height: 105px; -} -.Mount_Body_Triceratops-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1166px -1240px; - width: 105px; - height: 105px; -} -.Mount_Body_Triceratops-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1346px 0px; - width: 105px; - height: 105px; -} -.Mount_Body_Triceratops-White { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1346px -106px; - width: 105px; - height: 105px; -} -.Mount_Body_Triceratops-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1346px -212px; - width: 105px; - height: 105px; -} -.Mount_Body_Turkey-Base { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1346px -318px; - width: 105px; - height: 105px; -} -.Mount_Body_Turkey-Gilded { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1346px -424px; - width: 105px; - height: 105px; -} -.Mount_Body_Turtle-Base { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1346px -530px; - width: 105px; - height: 105px; -} -.Mount_Body_Turtle-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1346px -636px; - width: 105px; - height: 105px; -} -.Mount_Body_Turtle-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1346px -742px; - width: 105px; - height: 105px; -} -.Mount_Body_Turtle-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1346px -848px; - width: 105px; - height: 105px; -} -.Mount_Body_Turtle-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1346px -954px; - width: 105px; - height: 105px; -} -.Mount_Body_Turtle-Red { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1346px -1060px; - width: 105px; - height: 105px; -} -.Mount_Body_Turtle-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1346px -1166px; - width: 105px; - height: 105px; -} -.Mount_Body_Turtle-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: 0px -1346px; - width: 105px; - height: 105px; -} -.Mount_Body_Turtle-White { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -106px -1346px; - width: 105px; - height: 105px; -} -.Mount_Body_Turtle-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -212px -1346px; - width: 105px; - height: 105px; -} -.Mount_Body_Unicorn-Base { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -318px -1346px; - width: 105px; - height: 105px; -} -.Mount_Body_Unicorn-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -424px -1346px; - width: 105px; - height: 105px; -} -.Mount_Body_Unicorn-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -530px -1346px; - width: 105px; - height: 105px; -} -.Mount_Body_Unicorn-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -636px -1346px; - width: 105px; - height: 105px; -} -.Mount_Body_Unicorn-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -742px -1346px; - width: 105px; - height: 105px; -} -.Mount_Body_Unicorn-Red { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -848px -1346px; - width: 105px; - height: 105px; -} -.Mount_Body_Unicorn-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -954px -1346px; - width: 105px; - height: 105px; -} -.Mount_Body_Unicorn-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1060px -1346px; - width: 105px; - height: 105px; -} -.Mount_Body_Unicorn-White { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1166px -1346px; - width: 105px; - height: 105px; -} -.Mount_Body_Unicorn-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1272px -1346px; - width: 105px; - height: 105px; -} -.Mount_Body_Whale-Base { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1452px 0px; - width: 105px; - height: 105px; -} -.Mount_Body_Whale-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1452px -106px; - width: 105px; - height: 105px; -} -.Mount_Body_Whale-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1452px -212px; - width: 105px; - height: 105px; -} -.Mount_Body_Whale-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1452px -318px; - width: 105px; - height: 105px; -} -.Mount_Body_Whale-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1452px -424px; - width: 105px; - height: 105px; -} -.Mount_Body_Whale-Red { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1452px -530px; - width: 105px; - height: 105px; -} -.Mount_Body_Whale-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1452px -636px; - width: 105px; - height: 105px; -} -.Mount_Body_Whale-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1452px -742px; - width: 105px; - height: 105px; -} -.Mount_Body_Whale-White { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1452px -848px; - width: 105px; - height: 105px; -} -.Mount_Body_Whale-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1452px -954px; - width: 105px; - height: 105px; -} -.Mount_Body_Wolf-Aquatic { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -272px -544px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-Base { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: 0px 0px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -544px -544px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -680px 0px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-Cupid { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -680px -136px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -680px -272px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-Ember { +.Mount_Body_Sabretooth-Base { background-image: url('~assets/images/sprites/spritesmith-main-14.png'); background-position: -680px -408px; width: 135px; height: 135px; } -.Mount_Body_Wolf-Fairy { +.Mount_Body_Sabretooth-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -680px -544px; + background-position: 0px -136px; width: 135px; height: 135px; } -.Mount_Body_Wolf-Floral { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: 0px -680px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-Ghost { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -136px -680px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -272px -680px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-Holly { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -408px -680px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-Peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -408px -544px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-Rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -408px -272px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-Red { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -408px -136px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-RoyalPurple { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -408px 0px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -272px -272px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-Shimmer { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -136px -272px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: 0px -272px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-Spooky { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -272px -136px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-StarryNight { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -272px 0px; - width: 135px; - height: 135px; -} -.Mount_Body_Wolf-Thunderstorm { +.Mount_Body_Sabretooth-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-14.png'); background-position: -136px -136px; width: 135px; height: 135px; } +.Mount_Body_Sabretooth-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -272px 0px; + width: 135px; + height: 135px; +} +.Mount_Body_Sabretooth-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -272px -136px; + width: 135px; + height: 135px; +} +.Mount_Body_Sabretooth-Red { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: 0px -272px; + width: 135px; + height: 135px; +} +.Mount_Body_Sabretooth-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -136px -272px; + width: 135px; + height: 135px; +} +.Mount_Body_Sabretooth-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -272px -272px; + width: 135px; + height: 135px; +} +.Mount_Body_Sabretooth-White { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -408px 0px; + width: 135px; + height: 135px; +} +.Mount_Body_Sabretooth-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -408px -136px; + width: 135px; + height: 135px; +} +.Mount_Body_Seahorse-Base { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1376px -848px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1376px -954px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1376px -1060px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1376px -1166px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: 0px -1376px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-Red { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -106px -1376px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -212px -1376px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -318px -1376px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-White { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -424px -1376px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -530px -1376px; + width: 105px; + height: 105px; +} +.Mount_Body_Sheep-Base { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1588px -848px; + width: 105px; + height: 105px; +} +.Mount_Body_Sheep-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1588px -954px; + width: 105px; + height: 105px; +} +.Mount_Body_Sheep-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1588px -1060px; + width: 105px; + height: 105px; +} +.Mount_Body_Sheep-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1588px -1166px; + width: 105px; + height: 105px; +} +.Mount_Body_Sheep-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1588px -1272px; + width: 105px; + height: 105px; +} +.Mount_Body_Sheep-Red { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1588px -1378px; + width: 105px; + height: 105px; +} +.Mount_Body_Sheep-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: 0px -1588px; + width: 105px; + height: 105px; +} +.Mount_Body_Sheep-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -106px -1588px; + width: 105px; + height: 105px; +} +.Mount_Body_Sheep-White { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -212px -1588px; + width: 105px; + height: 105px; +} +.Mount_Body_Sheep-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -318px -1588px; + width: 105px; + height: 105px; +} +.Mount_Body_Slime-Base { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -424px -1588px; + width: 105px; + height: 105px; +} +.Mount_Body_Slime-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -530px -1588px; + width: 105px; + height: 105px; +} +.Mount_Body_Slime-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -636px -1588px; + width: 105px; + height: 105px; +} +.Mount_Body_Slime-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -742px -1588px; + width: 105px; + height: 105px; +} +.Mount_Body_Slime-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -848px -1588px; + width: 105px; + height: 105px; +} +.Mount_Body_Slime-Red { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -954px -1588px; + width: 105px; + height: 105px; +} +.Mount_Body_Slime-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1060px -1588px; + width: 105px; + height: 105px; +} +.Mount_Body_Slime-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1166px -1588px; + width: 105px; + height: 105px; +} +.Mount_Body_Slime-White { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1272px -1588px; + width: 105px; + height: 105px; +} +.Mount_Body_Slime-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1378px -1588px; + width: 105px; + height: 105px; +} +.Mount_Body_Sloth-Base { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1484px -1588px; + width: 105px; + height: 105px; +} +.Mount_Body_Sloth-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1694px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Sloth-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1694px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Sloth-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1694px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_Sloth-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1694px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Sloth-Red { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: 0px -952px; + width: 105px; + height: 105px; +} +.Mount_Body_Sloth-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -106px -952px; + width: 105px; + height: 105px; +} +.Mount_Body_Sloth-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -212px -952px; + width: 105px; + height: 105px; +} +.Mount_Body_Sloth-White { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -318px -952px; + width: 105px; + height: 105px; +} +.Mount_Body_Sloth-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -424px -952px; + width: 105px; + height: 105px; +} +.Mount_Body_Snail-Base { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -530px -952px; + width: 105px; + height: 105px; +} +.Mount_Body_Snail-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -636px -952px; + width: 105px; + height: 105px; +} +.Mount_Body_Snail-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -742px -952px; + width: 105px; + height: 105px; +} +.Mount_Body_Snail-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -848px -952px; + width: 105px; + height: 105px; +} +.Mount_Body_Snail-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1058px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Snail-Red { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1058px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Snail-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1058px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_Snail-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1058px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Snail-White { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1058px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Snail-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1058px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Snake-Base { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1058px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_Snake-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1058px -742px; + width: 105px; + height: 105px; +} +.Mount_Body_Snake-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1058px -848px; + width: 105px; + height: 105px; +} +.Mount_Body_Snake-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: 0px -1058px; + width: 105px; + height: 105px; +} +.Mount_Body_Snake-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -106px -1058px; + width: 105px; + height: 105px; +} +.Mount_Body_Snake-Red { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -212px -1058px; + width: 105px; + height: 105px; +} +.Mount_Body_Snake-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -318px -1058px; + width: 105px; + height: 105px; +} +.Mount_Body_Snake-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -424px -1058px; + width: 105px; + height: 105px; +} +.Mount_Body_Snake-White { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -530px -1058px; + width: 105px; + height: 105px; +} +.Mount_Body_Snake-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -636px -1058px; + width: 105px; + height: 105px; +} +.Mount_Body_Spider-Base { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -742px -1058px; + width: 105px; + height: 105px; +} +.Mount_Body_Spider-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -848px -1058px; + width: 105px; + height: 105px; +} +.Mount_Body_Spider-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -954px -1058px; + width: 105px; + height: 105px; +} +.Mount_Body_Spider-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1164px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Spider-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1164px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Spider-Red { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1164px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_Spider-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1164px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Spider-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1164px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Spider-White { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1164px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Spider-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1164px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_Squirrel-Base { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -952px -654px; + width: 105px; + height: 108px; +} +.Mount_Body_Squirrel-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -952px -545px; + width: 105px; + height: 108px; +} +.Mount_Body_Squirrel-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -952px -436px; + width: 105px; + height: 108px; +} +.Mount_Body_Squirrel-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -952px -327px; + width: 105px; + height: 108px; +} +.Mount_Body_Squirrel-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -529px -816px; + width: 105px; + height: 108px; +} +.Mount_Body_Squirrel-Red { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -952px -109px; + width: 105px; + height: 108px; +} +.Mount_Body_Squirrel-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -952px 0px; + width: 105px; + height: 108px; +} +.Mount_Body_Squirrel-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -741px -816px; + width: 105px; + height: 108px; +} +.Mount_Body_Squirrel-White { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -635px -816px; + width: 105px; + height: 108px; +} +.Mount_Body_Squirrel-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -952px -218px; + width: 105px; + height: 108px; +} +.Mount_Body_TRex-Base { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -272px -544px; + width: 135px; + height: 135px; +} +.Mount_Body_TRex-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -408px -544px; + width: 135px; + height: 135px; +} +.Mount_Body_TRex-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -544px -544px; + width: 135px; + height: 135px; +} +.Mount_Body_TRex-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -680px 0px; + width: 135px; + height: 135px; +} +.Mount_Body_TRex-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -680px -136px; + width: 135px; + height: 135px; +} +.Mount_Body_TRex-Red { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -680px -272px; + width: 135px; + height: 135px; +} +.Mount_Body_TRex-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: 0px 0px; + width: 135px; + height: 135px; +} +.Mount_Body_TRex-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -680px -544px; + width: 135px; + height: 135px; +} +.Mount_Body_TRex-White { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: 0px -680px; + width: 135px; + height: 135px; +} +.Mount_Body_TRex-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -136px -680px; + width: 135px; + height: 135px; +} +.Mount_Body_TigerCub-Aquatic { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -742px -1164px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Base { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -848px -1164px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -954px -1164px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1060px -1164px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Cupid { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1270px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1270px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Ember { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1270px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Fairy { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -952px -763px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Floral { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1270px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Ghost { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1270px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Glass { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1270px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1270px -742px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Holly { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1270px -848px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1270px -954px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1270px -1060px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Red { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: 0px -1270px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-RoyalPurple { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -106px -1270px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -212px -1270px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Shimmer { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -318px -1270px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -424px -1270px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Spooky { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -530px -1270px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-StarryNight { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -408px -816px; + width: 120px; + height: 120px; +} +.Mount_Body_TigerCub-Thunderstorm { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -742px -1270px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-White { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -848px -1270px; + width: 105px; + height: 105px; +} +.Mount_Body_TigerCub-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -954px -1270px; + width: 105px; + height: 105px; +} +.Mount_Body_Treeling-Base { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1060px -1270px; + width: 105px; + height: 105px; +} +.Mount_Body_Treeling-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1166px -1270px; + width: 105px; + height: 105px; +} +.Mount_Body_Treeling-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1376px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Treeling-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1376px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Treeling-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1376px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_Treeling-Red { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1376px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Treeling-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1376px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Treeling-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1376px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Treeling-White { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1376px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_Treeling-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1376px -742px; + width: 105px; + height: 105px; +} +.Mount_Body_Triceratops-Base { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -636px -1376px; + width: 105px; + height: 105px; +} +.Mount_Body_Triceratops-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -742px -1376px; + width: 105px; + height: 105px; +} +.Mount_Body_Triceratops-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -848px -1376px; + width: 105px; + height: 105px; +} +.Mount_Body_Triceratops-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -954px -1376px; + width: 105px; + height: 105px; +} +.Mount_Body_Triceratops-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1060px -1376px; + width: 105px; + height: 105px; +} +.Mount_Body_Triceratops-Red { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1166px -1376px; + width: 105px; + height: 105px; +} +.Mount_Body_Triceratops-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1272px -1376px; + width: 105px; + height: 105px; +} +.Mount_Body_Triceratops-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1482px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Triceratops-White { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1482px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Triceratops-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1482px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_Turkey-Base { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1482px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Turkey-Gilded { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1482px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Turtle-Base { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1482px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Turtle-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1482px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_Turtle-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1482px -742px; + width: 105px; + height: 105px; +} +.Mount_Body_Turtle-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1482px -848px; + width: 105px; + height: 105px; +} +.Mount_Body_Turtle-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1482px -954px; + width: 105px; + height: 105px; +} +.Mount_Body_Turtle-Red { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1482px -1060px; + width: 105px; + height: 105px; +} +.Mount_Body_Turtle-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1482px -1166px; + width: 105px; + height: 105px; +} +.Mount_Body_Turtle-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1482px -1272px; + width: 105px; + height: 105px; +} +.Mount_Body_Turtle-White { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: 0px -1482px; + width: 105px; + height: 105px; +} +.Mount_Body_Turtle-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -106px -1482px; + width: 105px; + height: 105px; +} +.Mount_Body_Unicorn-Base { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -212px -1482px; + width: 105px; + height: 105px; +} +.Mount_Body_Unicorn-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -318px -1482px; + width: 105px; + height: 105px; +} +.Mount_Body_Unicorn-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -424px -1482px; + width: 105px; + height: 105px; +} +.Mount_Body_Unicorn-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -530px -1482px; + width: 105px; + height: 105px; +} +.Mount_Body_Unicorn-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -636px -1482px; + width: 105px; + height: 105px; +} +.Mount_Body_Unicorn-Red { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -742px -1482px; + width: 105px; + height: 105px; +} +.Mount_Body_Unicorn-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -848px -1482px; + width: 105px; + height: 105px; +} +.Mount_Body_Unicorn-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -954px -1482px; + width: 105px; + height: 105px; +} +.Mount_Body_Unicorn-White { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1060px -1482px; + width: 105px; + height: 105px; +} +.Mount_Body_Unicorn-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1166px -1482px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-Base { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1272px -1482px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1378px -1482px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1588px 0px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1588px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1588px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-Red { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1588px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1588px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1588px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-White { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1588px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -1588px -742px; + width: 105px; + height: 105px; +} +.Mount_Body_Wolf-Aquatic { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -272px -680px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Base { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -408px -680px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -544px -680px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -680px -680px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Cupid { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -816px 0px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -816px -136px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Ember { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -816px -272px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Fairy { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -816px -408px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Floral { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -816px -544px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Ghost { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -816px -680px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Glass { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: 0px -816px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -136px -816px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Holly { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -272px -816px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -136px -544px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: 0px -544px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Red { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -544px -408px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-RoyalPurple { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -544px -272px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -544px -136px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Shimmer { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -544px 0px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -408px -408px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Spooky { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -272px -408px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-StarryNight { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: -136px -408px; + width: 135px; + height: 135px; +} +.Mount_Body_Wolf-Thunderstorm { + background-image: url('~assets/images/sprites/spritesmith-main-14.png'); + background-position: 0px -408px; + width: 135px; + height: 135px; +} .Mount_Body_Wolf-White { background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: 0px -136px; + background-position: -408px -272px; width: 135px; height: 135px; } @@ -1140,217 +1284,31 @@ } .Mount_Body_Yarn-Base { background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1558px -742px; + background-position: -1694px -424px; width: 105px; height: 105px; } .Mount_Body_Yarn-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1558px -848px; + background-position: -1694px -530px; width: 105px; height: 105px; } .Mount_Body_Yarn-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1558px -954px; + background-position: -1694px -636px; width: 105px; height: 105px; } .Mount_Body_Yarn-Desert { background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1558px -1060px; + background-position: -1694px -742px; width: 105px; height: 105px; } .Mount_Body_Yarn-Golden { background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1558px -1166px; - width: 105px; - height: 105px; -} -.Mount_Body_Yarn-Red { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1558px -1272px; - width: 105px; - height: 105px; -} -.Mount_Body_Yarn-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1558px -1378px; - width: 105px; - height: 105px; -} -.Mount_Body_Yarn-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: 0px -1558px; - width: 105px; - height: 105px; -} -.Mount_Body_Yarn-White { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -106px -1558px; - width: 105px; - height: 105px; -} -.Mount_Body_Yarn-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -212px -1558px; - width: 105px; - height: 105px; -} -.Mount_Head_Armadillo-Base { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -318px -1558px; - width: 105px; - height: 105px; -} -.Mount_Head_Armadillo-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -424px -1558px; - width: 105px; - height: 105px; -} -.Mount_Head_Armadillo-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -530px -1558px; - width: 105px; - height: 105px; -} -.Mount_Head_Armadillo-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -636px -1558px; - width: 105px; - height: 105px; -} -.Mount_Head_Armadillo-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -742px -1558px; - width: 105px; - height: 105px; -} -.Mount_Head_Armadillo-Red { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -848px -1558px; - width: 105px; - height: 105px; -} -.Mount_Head_Armadillo-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -954px -1558px; - width: 105px; - height: 105px; -} -.Mount_Head_Armadillo-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1060px -1558px; - width: 105px; - height: 105px; -} -.Mount_Head_Armadillo-White { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1166px -1558px; - width: 105px; - height: 105px; -} -.Mount_Head_Armadillo-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1272px -1558px; - width: 105px; - height: 105px; -} -.Mount_Head_Axolotl-Base { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1378px -1558px; - width: 105px; - height: 105px; -} -.Mount_Head_Axolotl-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1484px -1558px; - width: 105px; - height: 105px; -} -.Mount_Head_Axolotl-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1664px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Axolotl-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1664px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Axolotl-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1664px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Axolotl-Red { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1664px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Axolotl-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1664px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Axolotl-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1664px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Axolotl-White { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1664px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Axolotl-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1664px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Badger-Base { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1664px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_Badger-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1664px -954px; - width: 105px; - height: 105px; -} -.Mount_Head_Badger-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1664px -1060px; - width: 105px; - height: 105px; -} -.Mount_Head_Badger-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1664px -1166px; - width: 105px; - height: 105px; -} -.Mount_Head_Badger-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1664px -1272px; - width: 105px; - height: 105px; -} -.Mount_Head_Badger-Red { - background-image: url('~assets/images/sprites/spritesmith-main-14.png'); - background-position: -1664px -1378px; + background-position: -1694px -848px; width: 105px; height: 105px; } diff --git a/website/client/assets/css/sprites/spritesmith-main-15.css b/website/client/assets/css/sprites/spritesmith-main-15.css index e3f8002140..bc435eed3b 100644 --- a/website/client/assets/css/sprites/spritesmith-main-15.css +++ b/website/client/assets/css/sprites/spritesmith-main-15.css @@ -1,324 +1,516 @@ +.Mount_Body_Yarn-Red { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -878px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Yarn-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -212px -1126px; + width: 105px; + height: 105px; +} +.Mount_Body_Yarn-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -106px -914px; + width: 105px; + height: 105px; +} +.Mount_Body_Yarn-White { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -212px -914px; + width: 105px; + height: 105px; +} +.Mount_Body_Yarn-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -318px -914px; + width: 105px; + height: 105px; +} +.Mount_Head_Armadillo-Base { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -424px -914px; + width: 105px; + height: 105px; +} +.Mount_Head_Armadillo-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -530px -914px; + width: 105px; + height: 105px; +} +.Mount_Head_Armadillo-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -636px -914px; + width: 105px; + height: 105px; +} +.Mount_Head_Armadillo-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -742px -914px; + width: 105px; + height: 105px; +} +.Mount_Head_Armadillo-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -848px -914px; + width: 105px; + height: 105px; +} +.Mount_Head_Armadillo-Red { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -954px -914px; + width: 105px; + height: 105px; +} +.Mount_Head_Armadillo-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -1090px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Armadillo-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -1196px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Armadillo-White { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -1302px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Armadillo-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -1302px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Axolotl-Base { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -1302px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Axolotl-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -1302px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Axolotl-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -1302px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Axolotl-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -1302px -954px; + width: 105px; + height: 105px; +} +.Mount_Head_Axolotl-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -1302px -1060px; + width: 105px; + height: 105px; +} +.Mount_Head_Axolotl-Red { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: 0px -1232px; + width: 105px; + height: 105px; +} +.Mount_Head_Axolotl-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -106px -1232px; + width: 105px; + height: 105px; +} +.Mount_Head_Axolotl-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -212px -1232px; + width: 105px; + height: 105px; +} +.Mount_Head_Axolotl-White { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -954px -1338px; + width: 105px; + height: 105px; +} +.Mount_Head_Axolotl-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -848px -1550px; + width: 105px; + height: 105px; +} +.Mount_Head_Badger-Base { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -106px -490px; + width: 105px; + height: 105px; +} +.Mount_Head_Badger-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -212px -490px; + width: 105px; + height: 105px; +} +.Mount_Head_Badger-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -318px -490px; + width: 105px; + height: 105px; +} +.Mount_Head_Badger-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -424px -490px; + width: 105px; + height: 105px; +} +.Mount_Head_Badger-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -530px -490px; + width: 105px; + height: 105px; +} +.Mount_Head_Badger-Red { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -666px 0px; + width: 105px; + height: 105px; +} .Mount_Head_Badger-Shade { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1635px -1166px; + background-position: -666px -106px; width: 105px; height: 105px; } .Mount_Head_Badger-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -106px -1135px; + background-position: -666px -212px; width: 105px; height: 105px; } .Mount_Head_Badger-White { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -106px -711px; + background-position: -666px -318px; width: 105px; height: 105px; } .Mount_Head_Badger-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -212px -711px; + background-position: -666px -424px; width: 105px; height: 105px; } .Mount_Head_BearCub-Aquatic { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -318px -711px; + background-position: 0px -596px; width: 105px; height: 105px; } .Mount_Head_BearCub-Base { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -424px -711px; + background-position: -106px -596px; width: 105px; height: 105px; } .Mount_Head_BearCub-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -530px -711px; + background-position: -212px -596px; width: 105px; height: 105px; } .Mount_Head_BearCub-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -636px -711px; + background-position: -318px -596px; width: 105px; height: 105px; } .Mount_Head_BearCub-Cupid { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -742px -711px; + background-position: -424px -596px; width: 105px; height: 105px; } .Mount_Head_BearCub-Desert { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -893px 0px; + background-position: -530px -596px; width: 105px; height: 105px; } .Mount_Head_BearCub-Ember { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -893px -106px; + background-position: -636px -596px; width: 105px; height: 105px; } .Mount_Head_BearCub-Fairy { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -893px -212px; + background-position: -772px 0px; width: 105px; height: 105px; } .Mount_Head_BearCub-Floral { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -999px -742px; + background-position: -772px -106px; width: 105px; height: 105px; } .Mount_Head_BearCub-Ghost { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -424px -1029px; + background-position: -772px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_BearCub-Glass { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -772px -318px; width: 105px; height: 105px; } .Mount_Head_BearCub-Golden { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -530px -1029px; + background-position: -772px -424px; width: 105px; height: 105px; } .Mount_Head_BearCub-Holly { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -636px -1029px; + background-position: -772px -530px; width: 105px; height: 105px; } .Mount_Head_BearCub-Peppermint { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -742px -1029px; + background-position: 0px -702px; width: 105px; height: 105px; } .Mount_Head_BearCub-Polar { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -848px -1029px; + background-position: -106px -702px; width: 105px; height: 105px; } .Mount_Head_BearCub-Rainbow { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -954px -1029px; + background-position: -212px -702px; width: 105px; height: 105px; } .Mount_Head_BearCub-Red { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1060px -1029px; + background-position: -318px -702px; width: 105px; height: 105px; } .Mount_Head_BearCub-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1211px 0px; + background-position: -424px -702px; width: 105px; height: 105px; } .Mount_Head_BearCub-Shade { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1211px -106px; + background-position: -530px -702px; width: 105px; height: 105px; } .Mount_Head_BearCub-Shimmer { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1211px -212px; + background-position: -636px -702px; width: 105px; height: 105px; } .Mount_Head_BearCub-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: 0px -1241px; + background-position: -742px -702px; width: 105px; height: 105px; } .Mount_Head_BearCub-Spooky { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -212px -1453px; + background-position: -878px 0px; width: 105px; height: 105px; } .Mount_Head_BearCub-StarryNight { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: 0px -121px; + background-position: -121px -121px; width: 120px; height: 120px; } .Mount_Head_BearCub-Thunderstorm { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -106px -1559px; + background-position: -878px -212px; width: 105px; height: 105px; } .Mount_Head_BearCub-White { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -212px -1559px; + background-position: -878px -318px; width: 105px; height: 105px; } .Mount_Head_BearCub-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -318px -1559px; + background-position: -878px -424px; width: 105px; height: 105px; } .Mount_Head_Beetle-Base { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -424px -1559px; + background-position: -878px -530px; width: 105px; height: 105px; } .Mount_Head_Beetle-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -530px -1559px; + background-position: -878px -636px; width: 105px; height: 105px; } .Mount_Head_Beetle-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -636px -1559px; + background-position: 0px -808px; width: 105px; height: 105px; } .Mount_Head_Beetle-Desert { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -742px -1559px; + background-position: -106px -808px; width: 105px; height: 105px; } .Mount_Head_Beetle-Golden { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -848px -1559px; + background-position: -212px -808px; width: 105px; height: 105px; } .Mount_Head_Beetle-Red { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -954px -1559px; + background-position: -318px -808px; width: 105px; height: 105px; } .Mount_Head_Beetle-Shade { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1060px -1559px; + background-position: -424px -808px; width: 105px; height: 105px; } .Mount_Head_Beetle-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -106px -605px; + background-position: -530px -808px; width: 105px; height: 105px; } .Mount_Head_Beetle-White { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -212px -605px; + background-position: -636px -808px; width: 105px; height: 105px; } .Mount_Head_Beetle-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -318px -605px; + background-position: -742px -808px; width: 105px; height: 105px; } .Mount_Head_Bunny-Base { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -424px -605px; + background-position: -848px -808px; width: 105px; height: 105px; } .Mount_Head_Bunny-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -530px -605px; + background-position: -984px 0px; width: 105px; height: 105px; } .Mount_Head_Bunny-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -636px -605px; + background-position: -984px -106px; width: 105px; height: 105px; } .Mount_Head_Bunny-Desert { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -787px 0px; + background-position: -984px -212px; width: 105px; height: 105px; } .Mount_Head_Bunny-Golden { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -787px -106px; + background-position: -984px -318px; width: 105px; height: 105px; } .Mount_Head_Bunny-Red { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -787px -212px; + background-position: -984px -424px; width: 105px; height: 105px; } .Mount_Head_Bunny-Shade { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -787px -318px; + background-position: -984px -530px; width: 105px; height: 105px; } .Mount_Head_Bunny-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -787px -424px; + background-position: -984px -636px; width: 105px; height: 105px; } .Mount_Head_Bunny-White { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -787px -530px; + background-position: -984px -742px; width: 105px; height: 105px; } .Mount_Head_Bunny-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: 0px -711px; + background-position: 0px -914px; width: 105px; height: 105px; } .Mount_Head_Butterfly-Base { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -212px -242px; + background-position: -106px -366px; width: 105px; height: 123px; } .Mount_Head_Butterfly-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: 0px -366px; + background-position: -454px -124px; width: 105px; height: 123px; } .Mount_Head_Butterfly-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -106px -366px; + background-position: -242px 0px; width: 105px; height: 123px; } .Mount_Head_Butterfly-Desert { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -212px -366px; + background-position: 0px -366px; width: 105px; height: 123px; } .Mount_Head_Butterfly-Golden { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -363px 0px; + background-position: -348px 0px; width: 105px; height: 123px; } @@ -336,7 +528,7 @@ } .Mount_Head_Butterfly-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -469px -124px; + background-position: -212px -242px; width: 105px; height: 123px; } @@ -348,307 +540,313 @@ } .Mount_Head_Butterfly-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -469px 0px; + background-position: -454px 0px; width: 105px; height: 123px; } .Mount_Head_Cactus-Aquatic { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -893px -318px; + background-position: -1090px -106px; width: 105px; height: 105px; } .Mount_Head_Cactus-Base { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -893px -424px; + background-position: -1090px -212px; width: 105px; height: 105px; } .Mount_Head_Cactus-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -893px -530px; + background-position: -1090px -318px; width: 105px; height: 105px; } .Mount_Head_Cactus-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -893px -636px; + background-position: -1090px -424px; width: 105px; height: 105px; } .Mount_Head_Cactus-Cupid { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: 0px -817px; + background-position: -1090px -530px; width: 105px; height: 105px; } .Mount_Head_Cactus-Desert { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -106px -817px; + background-position: -1090px -636px; width: 105px; height: 105px; } .Mount_Head_Cactus-Ember { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -212px -817px; + background-position: -1090px -742px; width: 105px; height: 105px; } .Mount_Head_Cactus-Fairy { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -318px -817px; + background-position: -1090px -848px; width: 105px; height: 105px; } .Mount_Head_Cactus-Floral { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -424px -817px; + background-position: 0px -1020px; width: 105px; height: 105px; } .Mount_Head_Cactus-Ghost { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -530px -817px; + background-position: -106px -1020px; + width: 105px; + height: 105px; +} +.Mount_Head_Cactus-Glass { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -212px -1020px; width: 105px; height: 105px; } .Mount_Head_Cactus-Golden { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -636px -817px; + background-position: -318px -1020px; width: 105px; height: 105px; } .Mount_Head_Cactus-Holly { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -742px -817px; + background-position: -424px -1020px; width: 105px; height: 105px; } .Mount_Head_Cactus-Peppermint { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -848px -817px; + background-position: -530px -1020px; width: 105px; height: 105px; } .Mount_Head_Cactus-Rainbow { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -999px 0px; + background-position: -636px -1020px; width: 105px; height: 105px; } .Mount_Head_Cactus-Red { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -999px -106px; + background-position: -742px -1020px; width: 105px; height: 105px; } .Mount_Head_Cactus-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -999px -212px; + background-position: -848px -1020px; width: 105px; height: 105px; } .Mount_Head_Cactus-Shade { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -999px -318px; + background-position: -954px -1020px; width: 105px; height: 105px; } .Mount_Head_Cactus-Shimmer { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -999px -424px; + background-position: -1060px -1020px; width: 105px; height: 105px; } .Mount_Head_Cactus-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -999px -530px; + background-position: -1196px 0px; width: 105px; height: 105px; } .Mount_Head_Cactus-Spooky { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -999px -636px; + background-position: -1196px -106px; width: 105px; height: 105px; } .Mount_Head_Cactus-StarryNight { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -121px 0px; + background-position: 0px 0px; width: 120px; height: 120px; } .Mount_Head_Cactus-Thunderstorm { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: 0px -923px; + background-position: -1196px -318px; width: 105px; height: 105px; } .Mount_Head_Cactus-White { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -106px -923px; + background-position: -1196px -424px; width: 105px; height: 105px; } .Mount_Head_Cactus-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -212px -923px; + background-position: -1196px -530px; width: 105px; height: 105px; } .Mount_Head_Cheetah-Base { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -318px -923px; + background-position: -1196px -636px; width: 105px; height: 105px; } .Mount_Head_Cheetah-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -424px -923px; + background-position: -1196px -742px; width: 105px; height: 105px; } .Mount_Head_Cheetah-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -530px -923px; + background-position: -1196px -848px; width: 105px; height: 105px; } .Mount_Head_Cheetah-Desert { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -636px -923px; + background-position: -1196px -954px; width: 105px; height: 105px; } .Mount_Head_Cheetah-Golden { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -742px -923px; + background-position: 0px -1126px; width: 105px; height: 105px; } .Mount_Head_Cheetah-Red { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -848px -923px; + background-position: -106px -1126px; width: 105px; height: 105px; } .Mount_Head_Cheetah-Shade { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -954px -923px; + background-position: 0px -490px; width: 105px; height: 105px; } .Mount_Head_Cheetah-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1105px 0px; + background-position: -318px -1126px; width: 105px; height: 105px; } .Mount_Head_Cheetah-White { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1105px -106px; + background-position: -424px -1126px; width: 105px; height: 105px; } .Mount_Head_Cheetah-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1105px -212px; + background-position: -530px -1126px; width: 105px; height: 105px; } .Mount_Head_Cow-Base { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1105px -318px; + background-position: -636px -1126px; width: 105px; height: 105px; } .Mount_Head_Cow-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1105px -424px; + background-position: -742px -1126px; width: 105px; height: 105px; } .Mount_Head_Cow-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1105px -530px; + background-position: -848px -1126px; width: 105px; height: 105px; } .Mount_Head_Cow-Desert { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1105px -636px; + background-position: -954px -1126px; width: 105px; height: 105px; } .Mount_Head_Cow-Golden { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1105px -742px; + background-position: -1060px -1126px; width: 105px; height: 105px; } .Mount_Head_Cow-Red { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1105px -848px; + background-position: -1166px -1126px; width: 105px; height: 105px; } .Mount_Head_Cow-Shade { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: 0px -1029px; + background-position: -1302px 0px; width: 105px; height: 105px; } .Mount_Head_Cow-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -106px -1029px; + background-position: -1302px -106px; width: 105px; height: 105px; } .Mount_Head_Cow-White { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -212px -1029px; + background-position: -1302px -212px; width: 105px; height: 105px; } .Mount_Head_Cow-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -318px -1029px; + background-position: -1302px -318px; width: 105px; height: 105px; } .Mount_Head_Cuttlefish-Base { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -575px -345px; + background-position: -560px -345px; width: 105px; height: 114px; } .Mount_Head_Cuttlefish-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: 0px -490px; + background-position: -454px -248px; width: 105px; height: 114px; } .Mount_Head_Cuttlefish-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -106px -490px; + background-position: -348px -124px; width: 105px; height: 114px; } .Mount_Head_Cuttlefish-Desert { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -363px -124px; + background-position: -242px -124px; width: 105px; height: 114px; } .Mount_Head_Cuttlefish-Golden { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -242px -121px; + background-position: -212px -366px; width: 105px; height: 114px; } .Mount_Head_Cuttlefish-Red { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -469px -248px; + background-position: -318px -366px; width: 105px; height: 114px; } @@ -660,793 +858,607 @@ } .Mount_Head_Cuttlefish-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -575px 0px; + background-position: -560px 0px; width: 105px; height: 114px; } .Mount_Head_Cuttlefish-White { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -575px -115px; + background-position: -560px -115px; width: 105px; height: 114px; } .Mount_Head_Cuttlefish-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -575px -230px; + background-position: -560px -230px; width: 105px; height: 114px; } .Mount_Head_Deer-Base { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1211px -318px; + background-position: -318px -1232px; width: 105px; height: 105px; } .Mount_Head_Deer-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1211px -424px; + background-position: -424px -1232px; width: 105px; height: 105px; } .Mount_Head_Deer-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1211px -530px; + background-position: -530px -1232px; width: 105px; height: 105px; } .Mount_Head_Deer-Desert { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1211px -636px; + background-position: -636px -1232px; width: 105px; height: 105px; } .Mount_Head_Deer-Golden { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1211px -742px; + background-position: -742px -1232px; width: 105px; height: 105px; } .Mount_Head_Deer-Red { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1211px -848px; + background-position: -848px -1232px; width: 105px; height: 105px; } .Mount_Head_Deer-Shade { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1211px -954px; + background-position: -954px -1232px; width: 105px; height: 105px; } .Mount_Head_Deer-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: 0px -1135px; + background-position: -1060px -1232px; width: 105px; height: 105px; } .Mount_Head_Deer-White { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: 0px -605px; + background-position: -1166px -1232px; width: 105px; height: 105px; } .Mount_Head_Deer-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -212px -1135px; + background-position: -1272px -1232px; width: 105px; height: 105px; } .Mount_Head_Dragon-Aquatic { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -318px -1135px; + background-position: -1408px 0px; width: 105px; height: 105px; } .Mount_Head_Dragon-Base { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -424px -1135px; + background-position: -1408px -106px; width: 105px; height: 105px; } .Mount_Head_Dragon-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -530px -1135px; + background-position: -1408px -212px; width: 105px; height: 105px; } .Mount_Head_Dragon-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -636px -1135px; + background-position: -1408px -318px; width: 105px; height: 105px; } .Mount_Head_Dragon-Cupid { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -742px -1135px; + background-position: -1408px -424px; width: 105px; height: 105px; } .Mount_Head_Dragon-Desert { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -848px -1135px; + background-position: -1408px -530px; width: 105px; height: 105px; } .Mount_Head_Dragon-Ember { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -954px -1135px; + background-position: -1408px -636px; width: 105px; height: 105px; } .Mount_Head_Dragon-Fairy { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1060px -1135px; + background-position: -1408px -742px; width: 105px; height: 105px; } .Mount_Head_Dragon-Floral { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1166px -1135px; + background-position: -1408px -848px; width: 105px; height: 105px; } .Mount_Head_Dragon-Ghost { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1317px 0px; + background-position: -1408px -954px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Glass { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -1408px -1060px; width: 105px; height: 105px; } .Mount_Head_Dragon-Golden { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1317px -106px; + background-position: -1408px -1166px; width: 105px; height: 105px; } .Mount_Head_Dragon-Holly { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1317px -212px; + background-position: 0px -1338px; width: 105px; height: 105px; } .Mount_Head_Dragon-Peppermint { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1317px -318px; + background-position: -106px -1338px; width: 105px; height: 105px; } .Mount_Head_Dragon-Rainbow { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1317px -424px; + background-position: -212px -1338px; width: 105px; height: 105px; } .Mount_Head_Dragon-Red { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1317px -530px; + background-position: -318px -1338px; width: 105px; height: 105px; } .Mount_Head_Dragon-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1317px -636px; + background-position: -424px -1338px; width: 105px; height: 105px; } .Mount_Head_Dragon-Shade { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1317px -742px; + background-position: -530px -1338px; width: 105px; height: 105px; } .Mount_Head_Dragon-Shimmer { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1317px -848px; + background-position: -636px -1338px; width: 105px; height: 105px; } .Mount_Head_Dragon-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1317px -954px; + background-position: -742px -1338px; width: 105px; height: 105px; } .Mount_Head_Dragon-Spooky { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1317px -1060px; + background-position: -848px -1338px; width: 105px; height: 105px; } .Mount_Head_Dragon-StarryNight { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -121px -121px; + background-position: 0px -121px; width: 120px; height: 120px; } .Mount_Head_Dragon-Thunderstorm { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -106px -1241px; + background-position: -1060px -1338px; width: 105px; height: 105px; } .Mount_Head_Dragon-White { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -212px -1241px; + background-position: -1166px -1338px; width: 105px; height: 105px; } .Mount_Head_Dragon-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -318px -1241px; + background-position: -1272px -1338px; width: 105px; height: 105px; } .Mount_Head_Egg-Base { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -424px -1241px; + background-position: -1378px -1338px; width: 105px; height: 105px; } .Mount_Head_Egg-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -530px -1241px; + background-position: -1514px 0px; width: 105px; height: 105px; } .Mount_Head_Egg-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -636px -1241px; + background-position: -1514px -106px; width: 105px; height: 105px; } .Mount_Head_Egg-Desert { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -742px -1241px; + background-position: -1514px -212px; width: 105px; height: 105px; } .Mount_Head_Egg-Golden { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -848px -1241px; + background-position: -1514px -318px; width: 105px; height: 105px; } .Mount_Head_Egg-Red { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -954px -1241px; + background-position: -1514px -424px; width: 105px; height: 105px; } .Mount_Head_Egg-Shade { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1060px -1241px; + background-position: -1514px -530px; width: 105px; height: 105px; } .Mount_Head_Egg-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1166px -1241px; + background-position: -1514px -636px; width: 105px; height: 105px; } .Mount_Head_Egg-White { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1272px -1241px; + background-position: -1514px -742px; width: 105px; height: 105px; } .Mount_Head_Egg-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1423px 0px; + background-position: -1514px -848px; width: 105px; height: 105px; } .Mount_Head_Falcon-Base { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1423px -106px; + background-position: -1514px -954px; width: 105px; height: 105px; } .Mount_Head_Falcon-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1423px -212px; + background-position: -1514px -1060px; width: 105px; height: 105px; } .Mount_Head_Falcon-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1423px -318px; + background-position: -1514px -1166px; width: 105px; height: 105px; } .Mount_Head_Falcon-Desert { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1423px -424px; + background-position: -1514px -1272px; width: 105px; height: 105px; } .Mount_Head_Falcon-Golden { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1423px -530px; + background-position: 0px -1444px; width: 105px; height: 105px; } .Mount_Head_Falcon-Red { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1423px -636px; + background-position: -106px -1444px; width: 105px; height: 105px; } .Mount_Head_Falcon-Shade { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1423px -742px; + background-position: -212px -1444px; width: 105px; height: 105px; } .Mount_Head_Falcon-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1423px -848px; + background-position: -318px -1444px; width: 105px; height: 105px; } .Mount_Head_Falcon-White { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1423px -954px; + background-position: -424px -1444px; width: 105px; height: 105px; } .Mount_Head_Falcon-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1423px -1060px; + background-position: -530px -1444px; width: 105px; height: 105px; } .Mount_Head_Ferret-Base { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1423px -1166px; + background-position: -636px -1444px; width: 105px; height: 105px; } .Mount_Head_Ferret-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: 0px -1347px; + background-position: -742px -1444px; width: 105px; height: 105px; } .Mount_Head_Ferret-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -106px -1347px; + background-position: -848px -1444px; width: 105px; height: 105px; } .Mount_Head_Ferret-Desert { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -212px -1347px; + background-position: -954px -1444px; width: 105px; height: 105px; } .Mount_Head_Ferret-Golden { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -318px -1347px; + background-position: -1060px -1444px; width: 105px; height: 105px; } .Mount_Head_Ferret-Red { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -424px -1347px; + background-position: -1166px -1444px; width: 105px; height: 105px; } .Mount_Head_Ferret-Shade { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -530px -1347px; + background-position: -1272px -1444px; width: 105px; height: 105px; } .Mount_Head_Ferret-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -636px -1347px; + background-position: -1378px -1444px; width: 105px; height: 105px; } .Mount_Head_Ferret-White { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -742px -1347px; + background-position: -1484px -1444px; width: 105px; height: 105px; } .Mount_Head_Ferret-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -848px -1347px; + background-position: -1620px 0px; width: 105px; height: 105px; } .Mount_Head_FlyingPig-Aquatic { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -954px -1347px; + background-position: -1620px -106px; width: 105px; height: 105px; } .Mount_Head_FlyingPig-Base { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1060px -1347px; + background-position: -1620px -212px; width: 105px; height: 105px; } .Mount_Head_FlyingPig-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1166px -1347px; + background-position: -1620px -318px; width: 105px; height: 105px; } .Mount_Head_FlyingPig-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1272px -1347px; + background-position: -1620px -424px; width: 105px; height: 105px; } .Mount_Head_FlyingPig-Cupid { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1378px -1347px; + background-position: -1620px -530px; width: 105px; height: 105px; } .Mount_Head_FlyingPig-Desert { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1529px 0px; + background-position: -1620px -636px; width: 105px; height: 105px; } .Mount_Head_FlyingPig-Ember { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1529px -106px; + background-position: -1620px -742px; width: 105px; height: 105px; } .Mount_Head_FlyingPig-Fairy { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1529px -212px; + background-position: -1620px -848px; width: 105px; height: 105px; } .Mount_Head_FlyingPig-Floral { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1529px -318px; + background-position: -1620px -954px; width: 105px; height: 105px; } .Mount_Head_FlyingPig-Ghost { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1529px -424px; + background-position: -1620px -1060px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Glass { + background-image: url('~assets/images/sprites/spritesmith-main-15.png'); + background-position: -1620px -1166px; width: 105px; height: 105px; } .Mount_Head_FlyingPig-Golden { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1529px -530px; + background-position: -1620px -1272px; width: 105px; height: 105px; } .Mount_Head_FlyingPig-Holly { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1529px -636px; + background-position: -1620px -1378px; width: 105px; height: 105px; } .Mount_Head_FlyingPig-Peppermint { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1529px -742px; + background-position: 0px -1550px; width: 105px; height: 105px; } .Mount_Head_FlyingPig-Rainbow { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1529px -848px; + background-position: -106px -1550px; width: 105px; height: 105px; } .Mount_Head_FlyingPig-Red { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1529px -954px; + background-position: -212px -1550px; width: 105px; height: 105px; } .Mount_Head_FlyingPig-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1529px -1060px; + background-position: -318px -1550px; width: 105px; height: 105px; } .Mount_Head_FlyingPig-Shade { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1529px -1166px; + background-position: -424px -1550px; width: 105px; height: 105px; } .Mount_Head_FlyingPig-Shimmer { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1529px -1272px; + background-position: -530px -1550px; width: 105px; height: 105px; } .Mount_Head_FlyingPig-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: 0px -1453px; + background-position: -636px -1550px; width: 105px; height: 105px; } .Mount_Head_FlyingPig-Spooky { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -106px -1453px; + background-position: -742px -1550px; width: 105px; height: 105px; } .Mount_Head_FlyingPig-StarryNight { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -242px 0px; + background-position: -121px 0px; width: 120px; height: 120px; } .Mount_Head_FlyingPig-Thunderstorm { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -318px -1453px; + background-position: -954px -1550px; width: 105px; height: 105px; } .Mount_Head_FlyingPig-White { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -424px -1453px; + background-position: -1060px -1550px; width: 105px; height: 105px; } .Mount_Head_FlyingPig-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -530px -1453px; + background-position: -1166px -1550px; width: 105px; height: 105px; } .Mount_Head_Fox-Aquatic { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -636px -1453px; + background-position: -1272px -1550px; width: 105px; height: 105px; } .Mount_Head_Fox-Base { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -742px -1453px; + background-position: -1378px -1550px; width: 105px; height: 105px; } .Mount_Head_Fox-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -848px -1453px; + background-position: -1484px -1550px; width: 105px; height: 105px; } .Mount_Head_Fox-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -954px -1453px; + background-position: -1590px -1550px; width: 105px; height: 105px; } .Mount_Head_Fox-Cupid { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1060px -1453px; + background-position: -1726px 0px; width: 105px; height: 105px; } .Mount_Head_Fox-Desert { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1166px -1453px; + background-position: -1726px -106px; width: 105px; height: 105px; } .Mount_Head_Fox-Ember { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1272px -1453px; + background-position: -1726px -212px; width: 105px; height: 105px; } .Mount_Head_Fox-Fairy { background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1378px -1453px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Floral { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1484px -1453px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Ghost { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1635px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1635px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Holly { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1635px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1635px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1635px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Red { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1635px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-RoyalPurple { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1635px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1635px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Shimmer { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1635px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1635px -954px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Spooky { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1635px -1060px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-StarryNight { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: 0px 0px; - width: 120px; - height: 120px; -} -.Mount_Head_Fox-Thunderstorm { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1635px -1272px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-White { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1635px -1378px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: 0px -1559px; - width: 105px; - height: 105px; -} -.Mount_Head_Frog-Base { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -212px -490px; - width: 105px; - height: 114px; -} -.Mount_Head_Frog-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -318px -490px; - width: 105px; - height: 114px; -} -.Mount_Head_Frog-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -424px -490px; - width: 105px; - height: 114px; -} -.Mount_Head_Frog-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -530px -490px; - width: 105px; - height: 114px; -} -.Mount_Head_Frog-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -681px 0px; - width: 105px; - height: 114px; -} -.Mount_Head_Frog-Red { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -681px -115px; - width: 105px; - height: 114px; -} -.Mount_Head_Frog-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -681px -230px; - width: 105px; - height: 114px; -} -.Mount_Head_Frog-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -681px -345px; - width: 105px; - height: 114px; -} -.Mount_Head_Frog-White { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -681px -460px; - width: 105px; - height: 114px; -} -.Mount_Head_Frog-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -318px -366px; - width: 105px; - height: 114px; -} -.Mount_Head_Gryphon-Base { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1166px -1559px; - width: 105px; - height: 105px; -} -.Mount_Head_Gryphon-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1272px -1559px; - width: 105px; - height: 105px; -} -.Mount_Head_Gryphon-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1378px -1559px; - width: 105px; - height: 105px; -} -.Mount_Head_Gryphon-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1484px -1559px; - width: 105px; - height: 105px; -} -.Mount_Head_Gryphon-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1590px -1559px; - width: 105px; - height: 105px; -} -.Mount_Head_Gryphon-Red { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1741px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Gryphon-RoyalPurple { - background-image: url('~assets/images/sprites/spritesmith-main-15.png'); - background-position: -1741px -106px; + background-position: -1726px -318px; width: 105px; height: 105px; } diff --git a/website/client/assets/css/sprites/spritesmith-main-16.css b/website/client/assets/css/sprites/spritesmith-main-16.css index f9accfedbb..2a2b4f56eb 100644 --- a/website/client/assets/css/sprites/spritesmith-main-16.css +++ b/website/client/assets/css/sprites/spritesmith-main-16.css @@ -1,1440 +1,1470 @@ +.Mount_Head_Fox-Floral { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -318px -999px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Ghost { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -212px -1105px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Glass { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -1196px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -530px -1317px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Holly { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -427px -357px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -560px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -560px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Red { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -560px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-RoyalPurple { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -560px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: 0px -469px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Shimmer { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -106px -469px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -212px -469px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Spooky { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -530px -787px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-StarryNight { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -121px 0px; + width: 120px; + height: 120px; +} +.Mount_Head_Fox-Thunderstorm { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -530px -999px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-White { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -954px -999px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -1060px -999px; + width: 105px; + height: 105px; +} +.Mount_Head_Frog-Base { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -454px 0px; + width: 105px; + height: 114px; +} +.Mount_Head_Frog-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -454px -230px; + width: 105px; + height: 114px; +} +.Mount_Head_Frog-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -242px -124px; + width: 105px; + height: 114px; +} +.Mount_Head_Frog-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -121px -121px; + width: 105px; + height: 114px; +} +.Mount_Head_Frog-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -348px 0px; + width: 105px; + height: 114px; +} +.Mount_Head_Frog-Red { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -348px -115px; + width: 105px; + height: 114px; +} +.Mount_Head_Frog-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: 0px -242px; + width: 105px; + height: 114px; +} +.Mount_Head_Frog-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -106px -242px; + width: 105px; + height: 114px; +} +.Mount_Head_Frog-White { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -212px -242px; + width: 105px; + height: 114px; +} +.Mount_Head_Frog-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -318px -242px; + width: 105px; + height: 114px; +} +.Mount_Head_Gryphon-Base { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -318px -469px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -424px -469px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -530px -469px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -666px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -666px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-Red { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -666px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-RoyalPurple { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -666px -318px; + width: 105px; + height: 105px; +} .Mount_Head_Gryphon-Shade { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: 0px -638px; + background-position: -666px -424px; width: 105px; height: 105px; } .Mount_Head_Gryphon-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1180px -742px; + background-position: 0px -575px; width: 105px; height: 105px; } .Mount_Head_Gryphon-White { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -318px -850px; + background-position: -106px -575px; width: 105px; height: 105px; } .Mount_Head_Gryphon-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -530px -850px; + background-position: -212px -575px; width: 105px; height: 105px; } .Mount_Head_GuineaPig-Base { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -968px 0px; + background-position: -318px -575px; width: 105px; height: 105px; } .Mount_Head_GuineaPig-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -968px -106px; + background-position: -424px -575px; width: 105px; height: 105px; } .Mount_Head_GuineaPig-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -968px -212px; + background-position: -530px -575px; width: 105px; height: 105px; } .Mount_Head_GuineaPig-Desert { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1286px -106px; + background-position: -636px -575px; width: 105px; height: 105px; } .Mount_Head_GuineaPig-Golden { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1060px -1486px; + background-position: -772px 0px; width: 105px; height: 105px; } .Mount_Head_GuineaPig-Red { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1166px -1486px; + background-position: -772px -106px; width: 105px; height: 105px; } .Mount_Head_GuineaPig-Shade { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1272px -1486px; + background-position: -772px -212px; width: 105px; height: 105px; } .Mount_Head_GuineaPig-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1378px -1486px; + background-position: -772px -318px; width: 105px; height: 105px; } .Mount_Head_GuineaPig-White { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1484px -1486px; + background-position: -772px -424px; width: 105px; height: 105px; } .Mount_Head_GuineaPig-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1604px 0px; + background-position: -772px -530px; width: 105px; height: 105px; } .Mount_Head_Hedgehog-Base { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1604px -106px; + background-position: 0px -681px; width: 105px; height: 105px; } .Mount_Head_Hedgehog-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1604px -212px; + background-position: -106px -681px; width: 105px; height: 105px; } .Mount_Head_Hedgehog-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1604px -318px; + background-position: -212px -681px; width: 105px; height: 105px; } .Mount_Head_Hedgehog-Desert { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1604px -424px; + background-position: -318px -681px; width: 105px; height: 105px; } .Mount_Head_Hedgehog-Golden { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -544px -106px; + background-position: -424px -681px; width: 105px; height: 105px; } .Mount_Head_Hedgehog-Red { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -544px -212px; + background-position: -530px -681px; width: 105px; height: 105px; } .Mount_Head_Hedgehog-Shade { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -544px -318px; + background-position: -636px -681px; width: 105px; height: 105px; } .Mount_Head_Hedgehog-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -544px -424px; + background-position: -742px -681px; width: 105px; height: 105px; } .Mount_Head_Hedgehog-White { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: 0px -532px; + background-position: -878px 0px; width: 105px; height: 105px; } .Mount_Head_Hedgehog-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -106px -532px; + background-position: -878px -106px; width: 105px; height: 105px; } .Mount_Head_Hippo-Base { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -212px -532px; + background-position: -878px -212px; width: 105px; height: 105px; } .Mount_Head_Hippo-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -318px -532px; + background-position: -878px -318px; width: 105px; height: 105px; } .Mount_Head_Hippo-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -424px -532px; + background-position: -878px -424px; width: 105px; height: 105px; } .Mount_Head_Hippo-Desert { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -530px -532px; + background-position: -878px -530px; width: 105px; height: 105px; } .Mount_Head_Hippo-Golden { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -650px 0px; + background-position: -878px -636px; width: 105px; height: 105px; } .Mount_Head_Hippo-Red { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -650px -106px; + background-position: 0px -787px; width: 105px; height: 105px; } .Mount_Head_Hippo-Shade { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -650px -212px; + background-position: -106px -787px; width: 105px; height: 105px; } .Mount_Head_Hippo-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -650px -318px; + background-position: -212px -787px; width: 105px; height: 105px; } .Mount_Head_Hippo-White { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -650px -424px; + background-position: -318px -787px; width: 105px; height: 105px; } .Mount_Head_Hippo-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -650px -530px; + background-position: -424px -787px; width: 105px; height: 105px; } .Mount_Head_Hippogriff-Hopeful { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -212px -408px; + background-position: 0px -357px; width: 105px; height: 111px; } .Mount_Head_Horse-Base { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -106px -638px; + background-position: -636px -787px; width: 105px; height: 105px; } .Mount_Head_Horse-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -212px -638px; + background-position: -742px -787px; width: 105px; height: 105px; } .Mount_Head_Horse-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -318px -638px; + background-position: -848px -787px; width: 105px; height: 105px; } .Mount_Head_Horse-Desert { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -424px -638px; + background-position: -984px 0px; width: 105px; height: 105px; } .Mount_Head_Horse-Golden { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -530px -638px; + background-position: -984px -106px; width: 105px; height: 105px; } .Mount_Head_Horse-Red { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -636px -638px; + background-position: -984px -212px; width: 105px; height: 105px; } .Mount_Head_Horse-Shade { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -756px 0px; + background-position: -984px -318px; width: 105px; height: 105px; } .Mount_Head_Horse-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -756px -106px; + background-position: -984px -424px; width: 105px; height: 105px; } .Mount_Head_Horse-White { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -756px -212px; + background-position: -984px -530px; width: 105px; height: 105px; } .Mount_Head_Horse-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -756px -318px; + background-position: -984px -636px; width: 105px; height: 105px; } .Mount_Head_JackOLantern-Base { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -727px -1592px; + background-position: -1726px -424px; width: 90px; height: 105px; } .Mount_Head_JackOLantern-Ghost { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -636px -1592px; + background-position: -1726px -318px; width: 90px; height: 105px; } .Mount_Head_Jackalope-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -756px -424px; + background-position: -984px -742px; width: 105px; height: 105px; } .Mount_Head_LionCub-Aquatic { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: 0px -744px; + background-position: -212px -893px; width: 105px; height: 105px; } .Mount_Head_LionCub-Base { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -106px -744px; + background-position: -318px -893px; width: 105px; height: 105px; } .Mount_Head_LionCub-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -212px -744px; + background-position: -424px -893px; width: 105px; height: 105px; } .Mount_Head_LionCub-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -318px -744px; + background-position: -530px -893px; width: 105px; height: 105px; } .Mount_Head_LionCub-Cupid { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -424px -744px; + background-position: -636px -893px; width: 105px; height: 105px; } .Mount_Head_LionCub-Desert { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -530px -744px; + background-position: -742px -893px; width: 105px; height: 105px; } .Mount_Head_LionCub-Ember { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -636px -744px; + background-position: -848px -893px; width: 105px; height: 105px; } .Mount_Head_LionCub-Ethereal { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -742px -744px; + background-position: -954px -893px; width: 105px; height: 105px; } .Mount_Head_LionCub-Fairy { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -862px 0px; + background-position: -1090px 0px; width: 105px; height: 105px; } .Mount_Head_LionCub-Floral { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -862px -106px; + background-position: -1090px -106px; width: 105px; height: 105px; } .Mount_Head_LionCub-Ghost { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -862px -212px; + background-position: -1090px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Glass { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -1090px -318px; width: 105px; height: 105px; } .Mount_Head_LionCub-Golden { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -862px -318px; + background-position: -1090px -424px; width: 105px; height: 105px; } .Mount_Head_LionCub-Holly { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -862px -424px; + background-position: -1090px -530px; width: 105px; height: 105px; } .Mount_Head_LionCub-Peppermint { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -862px -530px; + background-position: -1090px -636px; width: 105px; height: 105px; } .Mount_Head_LionCub-Rainbow { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -862px -636px; + background-position: -1090px -742px; width: 105px; height: 105px; } .Mount_Head_LionCub-Red { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -862px -742px; + background-position: -1090px -848px; width: 105px; height: 105px; } .Mount_Head_LionCub-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: 0px -850px; + background-position: 0px -999px; width: 105px; height: 105px; } .Mount_Head_LionCub-Shade { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -106px -850px; + background-position: -106px -999px; width: 105px; height: 105px; } .Mount_Head_LionCub-Shimmer { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -212px -850px; + background-position: -212px -999px; width: 105px; height: 105px; } .Mount_Head_LionCub-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -318px -408px; + background-position: -106px -357px; width: 105px; height: 110px; } .Mount_Head_LionCub-Spooky { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -424px -850px; + background-position: -424px -999px; width: 105px; height: 105px; } .Mount_Head_LionCub-StarryNight { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -408px -257px; + background-position: 0px -121px; width: 120px; height: 120px; } .Mount_Head_LionCub-Thunderstorm { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -636px -850px; + background-position: -636px -999px; width: 105px; height: 105px; } .Mount_Head_LionCub-White { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -742px -850px; + background-position: -742px -999px; width: 105px; height: 105px; } .Mount_Head_LionCub-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -848px -850px; + background-position: -848px -999px; width: 105px; height: 105px; } .Mount_Head_MagicalBee-Base { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -106px -408px; + background-position: -454px -115px; width: 105px; height: 114px; } .Mount_Head_Mammoth-Base { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: 0px -408px; + background-position: -242px 0px; width: 105px; height: 123px; } .Mount_Head_MantisShrimp-Base { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -424px -408px; + background-position: -212px -357px; width: 108px; height: 105px; } .Mount_Head_Monkey-Base { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -968px -318px; + background-position: -1196px -106px; width: 105px; height: 105px; } .Mount_Head_Monkey-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -968px -424px; + background-position: -1196px -212px; width: 105px; height: 105px; } .Mount_Head_Monkey-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -968px -530px; + background-position: -1196px -318px; width: 105px; height: 105px; } .Mount_Head_Monkey-Desert { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -968px -636px; + background-position: -1196px -424px; width: 105px; height: 105px; } .Mount_Head_Monkey-Golden { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -968px -742px; + background-position: -1196px -530px; width: 105px; height: 105px; } .Mount_Head_Monkey-Red { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -968px -848px; + background-position: -1196px -636px; width: 105px; height: 105px; } .Mount_Head_Monkey-Shade { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: 0px -956px; + background-position: -1196px -742px; width: 105px; height: 105px; } .Mount_Head_Monkey-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -106px -956px; + background-position: -1196px -848px; width: 105px; height: 105px; } .Mount_Head_Monkey-White { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -212px -956px; + background-position: -1196px -954px; width: 105px; height: 105px; } .Mount_Head_Monkey-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -318px -956px; + background-position: 0px -1105px; width: 105px; height: 105px; } .Mount_Head_Nudibranch-Base { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -424px -956px; + background-position: -106px -1105px; width: 105px; height: 105px; } .Mount_Head_Nudibranch-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -530px -956px; + background-position: -321px -357px; width: 105px; height: 105px; } .Mount_Head_Nudibranch-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -636px -956px; + background-position: -318px -1105px; width: 105px; height: 105px; } .Mount_Head_Nudibranch-Desert { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -742px -956px; + background-position: -424px -1105px; width: 105px; height: 105px; } .Mount_Head_Nudibranch-Golden { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -848px -956px; + background-position: -530px -1105px; width: 105px; height: 105px; } .Mount_Head_Nudibranch-Red { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -954px -956px; + background-position: -636px -1105px; width: 105px; height: 105px; } .Mount_Head_Nudibranch-Shade { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1074px 0px; + background-position: -742px -1105px; width: 105px; height: 105px; } .Mount_Head_Nudibranch-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1074px -106px; + background-position: -848px -1105px; width: 105px; height: 105px; } .Mount_Head_Nudibranch-White { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1074px -212px; + background-position: -954px -1105px; width: 105px; height: 105px; } .Mount_Head_Nudibranch-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1074px -318px; + background-position: -1060px -1105px; width: 105px; height: 105px; } .Mount_Head_Octopus-Base { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1074px -424px; + background-position: -1166px -1105px; width: 105px; height: 105px; } .Mount_Head_Octopus-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1074px -530px; + background-position: -1302px 0px; width: 105px; height: 105px; } .Mount_Head_Octopus-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1074px -636px; + background-position: -1302px -106px; width: 105px; height: 105px; } .Mount_Head_Octopus-Desert { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1074px -742px; + background-position: -1302px -212px; width: 105px; height: 105px; } .Mount_Head_Octopus-Golden { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1074px -848px; + background-position: -1302px -318px; width: 105px; height: 105px; } .Mount_Head_Octopus-Red { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1074px -954px; + background-position: -1302px -424px; width: 105px; height: 105px; } .Mount_Head_Octopus-Shade { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: 0px -1062px; + background-position: -1302px -530px; width: 105px; height: 105px; } .Mount_Head_Octopus-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -106px -1062px; + background-position: -1302px -636px; width: 105px; height: 105px; } .Mount_Head_Octopus-White { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -212px -1062px; + background-position: -1302px -742px; width: 105px; height: 105px; } .Mount_Head_Octopus-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -318px -1062px; + background-position: -1302px -848px; width: 105px; height: 105px; } .Mount_Head_Orca-Base { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -424px -1062px; + background-position: -1302px -954px; width: 105px; height: 105px; } .Mount_Head_Owl-Base { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -530px -1062px; + background-position: -1302px -1060px; width: 105px; height: 105px; } .Mount_Head_Owl-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -636px -1062px; + background-position: 0px -1211px; width: 105px; height: 105px; } .Mount_Head_Owl-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -742px -1062px; + background-position: -106px -1211px; width: 105px; height: 105px; } .Mount_Head_Owl-Desert { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -848px -1062px; + background-position: -212px -1211px; width: 105px; height: 105px; } .Mount_Head_Owl-Golden { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -954px -1062px; + background-position: -318px -1211px; width: 105px; height: 105px; } .Mount_Head_Owl-Red { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1060px -1062px; + background-position: -424px -1211px; width: 105px; height: 105px; } .Mount_Head_Owl-Shade { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1180px 0px; + background-position: -530px -1211px; width: 105px; height: 105px; } .Mount_Head_Owl-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1180px -106px; + background-position: -636px -1211px; width: 105px; height: 105px; } .Mount_Head_Owl-White { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1180px -212px; + background-position: -742px -1211px; width: 105px; height: 105px; } .Mount_Head_Owl-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1180px -318px; + background-position: -848px -1211px; width: 105px; height: 105px; } .Mount_Head_PandaCub-Aquatic { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1180px -424px; + background-position: -954px -1211px; width: 105px; height: 105px; } .Mount_Head_PandaCub-Base { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1180px -530px; + background-position: -1060px -1211px; width: 105px; height: 105px; } .Mount_Head_PandaCub-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1180px -636px; + background-position: -1166px -1211px; width: 105px; height: 105px; } .Mount_Head_PandaCub-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -544px 0px; + background-position: -1272px -1211px; width: 105px; height: 105px; } .Mount_Head_PandaCub-Cupid { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1180px -848px; + background-position: -1408px 0px; width: 105px; height: 105px; } .Mount_Head_PandaCub-Desert { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1180px -954px; + background-position: -1408px -106px; width: 105px; height: 105px; } .Mount_Head_PandaCub-Ember { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1180px -1060px; + background-position: -1408px -212px; width: 105px; height: 105px; } .Mount_Head_PandaCub-Fairy { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: 0px -1168px; + background-position: -1408px -318px; width: 105px; height: 105px; } .Mount_Head_PandaCub-Floral { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -106px -1168px; + background-position: -1408px -424px; width: 105px; height: 105px; } .Mount_Head_PandaCub-Ghost { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -212px -1168px; + background-position: -1408px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Glass { + background-image: url('~assets/images/sprites/spritesmith-main-16.png'); + background-position: -1408px -636px; width: 105px; height: 105px; } .Mount_Head_PandaCub-Golden { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -318px -1168px; + background-position: -1408px -742px; width: 105px; height: 105px; } .Mount_Head_PandaCub-Holly { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -424px -1168px; + background-position: -1408px -848px; width: 105px; height: 105px; } .Mount_Head_PandaCub-Peppermint { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -530px -1168px; + background-position: -1408px -954px; width: 105px; height: 105px; } .Mount_Head_PandaCub-Rainbow { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -636px -1168px; + background-position: -1408px -1060px; width: 105px; height: 105px; } .Mount_Head_PandaCub-Red { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -742px -1168px; + background-position: -1408px -1166px; width: 105px; height: 105px; } .Mount_Head_PandaCub-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -848px -1168px; + background-position: 0px -1317px; width: 105px; height: 105px; } .Mount_Head_PandaCub-Shade { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -954px -1168px; + background-position: -106px -1317px; width: 105px; height: 105px; } .Mount_Head_PandaCub-Shimmer { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1060px -1168px; + background-position: -212px -1317px; width: 105px; height: 105px; } .Mount_Head_PandaCub-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1166px -1168px; + background-position: -318px -1317px; width: 105px; height: 105px; } .Mount_Head_PandaCub-Spooky { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1286px 0px; + background-position: -424px -1317px; width: 105px; height: 105px; } .Mount_Head_PandaCub-StarryNight { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -408px -136px; + background-position: 0px 0px; width: 120px; height: 120px; } .Mount_Head_PandaCub-Thunderstorm { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1286px -212px; + background-position: -636px -1317px; width: 105px; height: 105px; } .Mount_Head_PandaCub-White { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1286px -318px; + background-position: -742px -1317px; width: 105px; height: 105px; } .Mount_Head_PandaCub-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1286px -424px; + background-position: -848px -1317px; width: 105px; height: 105px; } .Mount_Head_Parrot-Base { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1286px -530px; + background-position: -954px -1317px; width: 105px; height: 105px; } .Mount_Head_Parrot-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1286px -636px; + background-position: -1060px -1317px; width: 105px; height: 105px; } .Mount_Head_Parrot-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1286px -742px; + background-position: -1166px -1317px; width: 105px; height: 105px; } .Mount_Head_Parrot-Desert { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1286px -848px; + background-position: -1272px -1317px; width: 105px; height: 105px; } .Mount_Head_Parrot-Golden { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1286px -954px; + background-position: -1378px -1317px; width: 105px; height: 105px; } .Mount_Head_Parrot-Red { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1286px -1060px; + background-position: -1514px 0px; width: 105px; height: 105px; } .Mount_Head_Parrot-Shade { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1286px -1166px; + background-position: -1514px -106px; width: 105px; height: 105px; } .Mount_Head_Parrot-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: 0px -1274px; + background-position: -1514px -212px; width: 105px; height: 105px; } .Mount_Head_Parrot-White { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -106px -1274px; + background-position: -1514px -318px; width: 105px; height: 105px; } .Mount_Head_Parrot-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -212px -1274px; + background-position: -1514px -424px; width: 105px; height: 105px; } .Mount_Head_Peacock-Base { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -318px -1274px; + background-position: -1514px -530px; width: 105px; height: 105px; } .Mount_Head_Peacock-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -424px -1274px; + background-position: -1514px -636px; width: 105px; height: 105px; } .Mount_Head_Peacock-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -530px -1274px; + background-position: -1514px -742px; width: 105px; height: 105px; } .Mount_Head_Peacock-Desert { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -636px -1274px; + background-position: -1514px -848px; width: 105px; height: 105px; } .Mount_Head_Peacock-Golden { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -742px -1274px; + background-position: -1514px -954px; width: 105px; height: 105px; } .Mount_Head_Peacock-Red { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -848px -1274px; + background-position: -1514px -1060px; width: 105px; height: 105px; } .Mount_Head_Peacock-Shade { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -954px -1274px; + background-position: -1514px -1166px; width: 105px; height: 105px; } .Mount_Head_Peacock-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1060px -1274px; + background-position: -1514px -1272px; width: 105px; height: 105px; } .Mount_Head_Peacock-White { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1166px -1274px; + background-position: 0px -1423px; width: 105px; height: 105px; } .Mount_Head_Peacock-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1272px -1274px; + background-position: -106px -1423px; width: 105px; height: 105px; } .Mount_Head_Penguin-Base { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1392px 0px; + background-position: -212px -1423px; width: 105px; height: 105px; } .Mount_Head_Penguin-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1392px -106px; + background-position: -318px -1423px; width: 105px; height: 105px; } .Mount_Head_Penguin-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1392px -212px; + background-position: -424px -1423px; width: 105px; height: 105px; } .Mount_Head_Penguin-Desert { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1392px -318px; + background-position: -530px -1423px; width: 105px; height: 105px; } .Mount_Head_Penguin-Golden { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1392px -424px; + background-position: -636px -1423px; width: 105px; height: 105px; } .Mount_Head_Penguin-Red { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1392px -530px; + background-position: -742px -1423px; width: 105px; height: 105px; } .Mount_Head_Penguin-Shade { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1392px -636px; + background-position: -848px -1423px; width: 105px; height: 105px; } .Mount_Head_Penguin-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1392px -742px; + background-position: -954px -1423px; width: 105px; height: 105px; } .Mount_Head_Penguin-White { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1392px -848px; + background-position: -1060px -1423px; width: 105px; height: 105px; } .Mount_Head_Penguin-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1392px -954px; + background-position: -1166px -1423px; width: 105px; height: 105px; } .Mount_Head_Phoenix-Base { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1392px -1060px; + background-position: -1272px -1423px; width: 105px; height: 105px; } .Mount_Head_Pterodactyl-Base { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1392px -1166px; + background-position: -1378px -1423px; width: 105px; height: 105px; } .Mount_Head_Pterodactyl-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1392px -1272px; + background-position: -1484px -1423px; width: 105px; height: 105px; } .Mount_Head_Pterodactyl-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: 0px -1380px; + background-position: -1620px 0px; width: 105px; height: 105px; } .Mount_Head_Pterodactyl-Desert { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -106px -1380px; + background-position: -1620px -106px; width: 105px; height: 105px; } .Mount_Head_Pterodactyl-Golden { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -212px -1380px; + background-position: -1620px -212px; width: 105px; height: 105px; } .Mount_Head_Pterodactyl-Red { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -318px -1380px; + background-position: -1620px -318px; width: 105px; height: 105px; } .Mount_Head_Pterodactyl-Shade { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -424px -1380px; + background-position: -1620px -424px; width: 105px; height: 105px; } .Mount_Head_Pterodactyl-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -530px -1380px; + background-position: -1620px -530px; width: 105px; height: 105px; } .Mount_Head_Pterodactyl-White { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -636px -1380px; + background-position: -1620px -636px; width: 105px; height: 105px; } .Mount_Head_Pterodactyl-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -742px -1380px; + background-position: -1620px -742px; width: 105px; height: 105px; } .Mount_Head_Rat-Base { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -848px -1380px; + background-position: -1620px -848px; width: 105px; height: 105px; } .Mount_Head_Rat-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -954px -1380px; + background-position: -1620px -954px; width: 105px; height: 105px; } .Mount_Head_Rat-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1060px -1380px; + background-position: -1620px -1060px; width: 105px; height: 105px; } .Mount_Head_Rat-Desert { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1166px -1380px; + background-position: -1620px -1166px; width: 105px; height: 105px; } .Mount_Head_Rat-Golden { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1272px -1380px; + background-position: -1620px -1272px; width: 105px; height: 105px; } .Mount_Head_Rat-Red { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1378px -1380px; + background-position: -1620px -1378px; width: 105px; height: 105px; } .Mount_Head_Rat-Shade { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1498px 0px; + background-position: 0px -1529px; width: 105px; height: 105px; } .Mount_Head_Rat-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1498px -106px; + background-position: -106px -1529px; width: 105px; height: 105px; } .Mount_Head_Rat-White { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1498px -212px; + background-position: -212px -1529px; width: 105px; height: 105px; } .Mount_Head_Rat-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1498px -318px; + background-position: -318px -1529px; width: 105px; height: 105px; } .Mount_Head_Rock-Base { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1498px -424px; + background-position: -424px -1529px; width: 105px; height: 105px; } .Mount_Head_Rock-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1498px -530px; + background-position: -530px -1529px; width: 105px; height: 105px; } .Mount_Head_Rock-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1498px -636px; + background-position: -636px -1529px; width: 105px; height: 105px; } .Mount_Head_Rock-Desert { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1498px -742px; + background-position: -742px -1529px; width: 105px; height: 105px; } .Mount_Head_Rock-Golden { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1498px -848px; + background-position: -848px -1529px; width: 105px; height: 105px; } .Mount_Head_Rock-Red { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1498px -954px; + background-position: -954px -1529px; width: 105px; height: 105px; } .Mount_Head_Rock-Shade { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1498px -1060px; + background-position: -1060px -1529px; width: 105px; height: 105px; } .Mount_Head_Rock-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1498px -1166px; + background-position: -1166px -1529px; width: 105px; height: 105px; } .Mount_Head_Rock-White { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1498px -1272px; + background-position: -1272px -1529px; width: 105px; height: 105px; } .Mount_Head_Rock-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1498px -1378px; + background-position: -1378px -1529px; width: 105px; height: 105px; } .Mount_Head_Rooster-Base { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: 0px -1486px; + background-position: -1484px -1529px; width: 105px; height: 105px; } .Mount_Head_Rooster-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -106px -1486px; + background-position: -1590px -1529px; width: 105px; height: 105px; } .Mount_Head_Rooster-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -212px -1486px; + background-position: -1726px 0px; width: 105px; height: 105px; } .Mount_Head_Rooster-Desert { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -318px -1486px; + background-position: -1726px -106px; width: 105px; height: 105px; } .Mount_Head_Rooster-Golden { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -424px -1486px; + background-position: -106px -893px; width: 105px; height: 105px; } .Mount_Head_Rooster-Red { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -530px -1486px; + background-position: 0px -893px; width: 105px; height: 105px; } .Mount_Head_Rooster-Shade { background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -636px -1486px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -742px -1486px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-White { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -848px -1486px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -954px -1486px; - width: 105px; - height: 105px; -} -.Mount_Head_Sabretooth-Base { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -272px -272px; - width: 135px; - height: 135px; -} -.Mount_Head_Sabretooth-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: 0px 0px; - width: 135px; - height: 135px; -} -.Mount_Head_Sabretooth-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -408px 0px; - width: 135px; - height: 135px; -} -.Mount_Head_Sabretooth-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -136px -272px; - width: 135px; - height: 135px; -} -.Mount_Head_Sabretooth-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: 0px -272px; - width: 135px; - height: 135px; -} -.Mount_Head_Sabretooth-Red { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -272px -136px; - width: 135px; - height: 135px; -} -.Mount_Head_Sabretooth-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -272px 0px; - width: 135px; - height: 135px; -} -.Mount_Head_Sabretooth-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -136px -136px; - width: 135px; - height: 135px; -} -.Mount_Head_Sabretooth-White { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: 0px -136px; - width: 135px; - height: 135px; -} -.Mount_Head_Sabretooth-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -136px 0px; - width: 135px; - height: 135px; -} -.Mount_Head_Seahorse-Base { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1604px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1604px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1604px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1604px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1604px -954px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-Red { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1604px -1060px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1604px -1166px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1604px -1272px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-White { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1604px -1378px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -1604px -1484px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-Base { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: 0px -1592px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -106px -1592px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -212px -1592px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -318px -1592px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -424px -1592px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-Red { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -756px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -756px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Sheep-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-16.png'); - background-position: -530px -1592px; + background-position: -1726px -212px; width: 105px; height: 105px; } diff --git a/website/client/assets/css/sprites/spritesmith-main-17.css b/website/client/assets/css/sprites/spritesmith-main-17.css index 97bc240bde..d983f23fe0 100644 --- a/website/client/assets/css/sprites/spritesmith-main-17.css +++ b/website/client/assets/css/sprites/spritesmith-main-17.css @@ -1,1026 +1,1224 @@ -.Mount_Head_Sheep-White { +.Mount_Head_Rooster-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -530px -1028px; + background-position: -1270px -848px; width: 105px; height: 105px; } -.Mount_Head_Sheep-Zombie { +.Mount_Head_Rooster-White { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -212px -1240px; + background-position: -1270px -530px; width: 105px; height: 105px; } -.Mount_Head_Slime-Base { +.Mount_Head_Rooster-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1134px -954px; + background-position: -1166px -1270px; width: 105px; height: 105px; } -.Mount_Head_Slime-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: 0px -1134px; - width: 105px; - height: 105px; -} -.Mount_Head_Slime-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -106px -1134px; - width: 105px; - height: 105px; -} -.Mount_Head_Slime-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -212px -1134px; - width: 105px; - height: 105px; -} -.Mount_Head_Slime-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -318px -1134px; - width: 105px; - height: 105px; -} -.Mount_Head_Slime-Red { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -424px -1134px; - width: 105px; - height: 105px; -} -.Mount_Head_Slime-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -530px -1134px; - width: 105px; - height: 105px; -} -.Mount_Head_Slime-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -636px -1134px; - width: 105px; - height: 105px; -} -.Mount_Head_Slime-White { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -742px -1134px; - width: 105px; - height: 105px; -} -.Mount_Head_Slime-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -848px -1134px; - width: 105px; - height: 105px; -} -.Mount_Head_Sloth-Base { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -530px -1346px; - width: 105px; - height: 105px; -} -.Mount_Head_Sloth-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -636px -1346px; - width: 105px; - height: 105px; -} -.Mount_Head_Sloth-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -742px -1346px; - width: 105px; - height: 105px; -} -.Mount_Head_Sloth-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -848px -1346px; - width: 105px; - height: 105px; -} -.Mount_Head_Sloth-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -954px -1346px; - width: 105px; - height: 105px; -} -.Mount_Head_Sloth-Red { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1060px -1346px; - width: 105px; - height: 105px; -} -.Mount_Head_Sloth-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1166px -1346px; - width: 105px; - height: 105px; -} -.Mount_Head_Sloth-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1272px -1346px; - width: 105px; - height: 105px; -} -.Mount_Head_Sloth-White { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1452px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Sloth-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1452px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Snail-Base { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1452px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Snail-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1452px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Snail-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1452px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Snail-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1452px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Snail-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1452px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Snail-Red { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1452px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Snail-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1452px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_Snail-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1452px -954px; - width: 105px; - height: 105px; -} -.Mount_Head_Snail-White { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1452px -1060px; - width: 105px; - height: 105px; -} -.Mount_Head_Snail-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1452px -1166px; - width: 105px; - height: 105px; -} -.Mount_Head_Snake-Base { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1452px -1272px; - width: 105px; - height: 105px; -} -.Mount_Head_Snake-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: 0px -1452px; - width: 105px; - height: 105px; -} -.Mount_Head_Snake-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -106px -1452px; - width: 105px; - height: 105px; -} -.Mount_Head_Snake-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -212px -1452px; - width: 105px; - height: 105px; -} -.Mount_Head_Snake-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -816px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Snake-Red { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -816px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Snake-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -816px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Snake-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -816px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Snake-White { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -816px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Snake-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -816px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Spider-Base { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -816px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Spider-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: 0px -816px; - width: 105px; - height: 105px; -} -.Mount_Head_Spider-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -106px -816px; - width: 105px; - height: 105px; -} -.Mount_Head_Spider-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -212px -816px; - width: 105px; - height: 105px; -} -.Mount_Head_Spider-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -318px -816px; - width: 105px; - height: 105px; -} -.Mount_Head_Spider-Red { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -424px -816px; - width: 105px; - height: 105px; -} -.Mount_Head_Spider-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -530px -816px; - width: 105px; - height: 105px; -} -.Mount_Head_Spider-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -636px -816px; - width: 105px; - height: 105px; -} -.Mount_Head_Spider-White { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -742px -816px; - width: 105px; - height: 105px; -} -.Mount_Head_Spider-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -922px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Squirrel-Base { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -922px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Squirrel-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -922px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Squirrel-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -922px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Squirrel-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -922px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Squirrel-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -922px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Squirrel-Red { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -922px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Squirrel-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -922px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Squirrel-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: 0px -922px; - width: 105px; - height: 105px; -} -.Mount_Head_Squirrel-White { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -106px -922px; - width: 105px; - height: 105px; -} -.Mount_Head_Squirrel-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -212px -922px; - width: 105px; - height: 105px; -} -.Mount_Head_TRex-Base { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: 0px -136px; - width: 135px; - height: 135px; -} -.Mount_Head_TRex-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -136px -136px; - width: 135px; - height: 135px; -} -.Mount_Head_TRex-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -272px 0px; - width: 135px; - height: 135px; -} -.Mount_Head_TRex-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -272px -136px; - width: 135px; - height: 135px; -} -.Mount_Head_TRex-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: 0px -272px; - width: 135px; - height: 135px; -} -.Mount_Head_TRex-Red { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -136px -272px; - width: 135px; - height: 135px; -} -.Mount_Head_TRex-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -272px -272px; - width: 135px; - height: 135px; -} -.Mount_Head_TRex-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -408px 0px; - width: 135px; - height: 135px; -} -.Mount_Head_TRex-White { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -408px -136px; - width: 135px; - height: 135px; -} -.Mount_Head_TRex-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -408px -272px; - width: 135px; - height: 135px; -} -.Mount_Head_TigerCub-Aquatic { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -318px -922px; - width: 105px; - height: 105px; -} -.Mount_Head_TigerCub-Base { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -424px -922px; - width: 105px; - height: 105px; -} -.Mount_Head_TigerCub-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -530px -922px; - width: 105px; - height: 105px; -} -.Mount_Head_TigerCub-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -636px -922px; - width: 105px; - height: 105px; -} -.Mount_Head_TigerCub-Cupid { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -742px -922px; - width: 105px; - height: 105px; -} -.Mount_Head_TigerCub-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -848px -922px; - width: 105px; - height: 105px; -} -.Mount_Head_TigerCub-Ember { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1028px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_TigerCub-Fairy { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1028px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_TigerCub-Floral { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1028px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_TigerCub-Ghost { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1028px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_TigerCub-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1028px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_TigerCub-Holly { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1028px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_TigerCub-Peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1028px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_TigerCub-Rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1028px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_TigerCub-Red { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1028px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_TigerCub-RoyalPurple { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: 0px -1028px; - width: 105px; - height: 105px; -} -.Mount_Head_TigerCub-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -106px -1028px; - width: 105px; - height: 105px; -} -.Mount_Head_TigerCub-Shimmer { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -212px -1028px; - width: 105px; - height: 105px; -} -.Mount_Head_TigerCub-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -318px -1028px; - width: 105px; - height: 105px; -} -.Mount_Head_TigerCub-Spooky { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -424px -1028px; - width: 105px; - height: 105px; -} -.Mount_Head_TigerCub-StarryNight { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -544px -680px; - width: 120px; - height: 120px; -} -.Mount_Head_TigerCub-Thunderstorm { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -636px -1028px; - width: 105px; - height: 105px; -} -.Mount_Head_TigerCub-White { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -742px -1028px; - width: 105px; - height: 105px; -} -.Mount_Head_TigerCub-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -848px -1028px; - width: 105px; - height: 105px; -} -.Mount_Head_Treeling-Base { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -954px -1028px; - width: 105px; - height: 105px; -} -.Mount_Head_Treeling-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1134px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Treeling-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1134px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Treeling-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1134px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Treeling-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1134px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Treeling-Red { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1134px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Treeling-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1134px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Treeling-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1134px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Treeling-White { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1134px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Treeling-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1134px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_Triceratops-Base { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -954px -1134px; - width: 105px; - height: 105px; -} -.Mount_Head_Triceratops-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1060px -1134px; - width: 105px; - height: 105px; -} -.Mount_Head_Triceratops-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1240px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Triceratops-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1240px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Triceratops-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1240px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Triceratops-Red { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1240px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Triceratops-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1240px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Triceratops-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1240px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Triceratops-White { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1240px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Triceratops-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1240px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Turkey-Base { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1240px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_Turkey-Gilded { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1240px -954px; - width: 105px; - height: 105px; -} -.Mount_Head_Turtle-Base { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1240px -1060px; - width: 105px; - height: 105px; -} -.Mount_Head_Turtle-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: 0px -1240px; - width: 105px; - height: 105px; -} -.Mount_Head_Turtle-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -106px -1240px; - width: 105px; - height: 105px; -} -.Mount_Head_Turtle-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -665px -680px; - width: 105px; - height: 105px; -} -.Mount_Head_Turtle-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -318px -1240px; - width: 105px; - height: 105px; -} -.Mount_Head_Turtle-Red { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -424px -1240px; - width: 105px; - height: 105px; -} -.Mount_Head_Turtle-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -530px -1240px; - width: 105px; - height: 105px; -} -.Mount_Head_Turtle-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -636px -1240px; - width: 105px; - height: 105px; -} -.Mount_Head_Turtle-White { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -742px -1240px; - width: 105px; - height: 105px; -} -.Mount_Head_Turtle-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -848px -1240px; - width: 105px; - height: 105px; -} -.Mount_Head_Unicorn-Base { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -954px -1240px; - width: 105px; - height: 105px; -} -.Mount_Head_Unicorn-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1060px -1240px; - width: 105px; - height: 105px; -} -.Mount_Head_Unicorn-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1166px -1240px; - width: 105px; - height: 105px; -} -.Mount_Head_Unicorn-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1346px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Unicorn-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1346px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Unicorn-Red { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1346px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Unicorn-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1346px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Unicorn-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1346px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Unicorn-White { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1346px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Unicorn-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1346px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Whale-Base { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1346px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Whale-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1346px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_Whale-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1346px -954px; - width: 105px; - height: 105px; -} -.Mount_Head_Whale-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1346px -1060px; - width: 105px; - height: 105px; -} -.Mount_Head_Whale-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1346px -1166px; - width: 105px; - height: 105px; -} -.Mount_Head_Whale-Red { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: 0px -1346px; - width: 105px; - height: 105px; -} -.Mount_Head_Whale-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -106px -1346px; - width: 105px; - height: 105px; -} -.Mount_Head_Whale-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -212px -1346px; - width: 105px; - height: 105px; -} -.Mount_Head_Whale-White { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -318px -1346px; - width: 105px; - height: 105px; -} -.Mount_Head_Whale-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -424px -1346px; - width: 105px; - height: 105px; -} -.Mount_Head_Wolf-Aquatic { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: 0px -408px; - width: 135px; - height: 135px; -} -.Mount_Head_Wolf-Base { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -136px -408px; - width: 135px; - height: 135px; -} -.Mount_Head_Wolf-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -272px -408px; - width: 135px; - height: 135px; -} -.Mount_Head_Wolf-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -408px -408px; - width: 135px; - height: 135px; -} -.Mount_Head_Wolf-Cupid { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -544px 0px; - width: 135px; - height: 135px; -} -.Mount_Head_Wolf-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -544px -136px; - width: 135px; - height: 135px; -} -.Mount_Head_Wolf-Ember { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: 0px 0px; - width: 135px; - height: 135px; -} -.Mount_Head_Wolf-Fairy { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -544px -408px; - width: 135px; - height: 135px; -} -.Mount_Head_Wolf-Floral { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: 0px -544px; - width: 135px; - height: 135px; -} -.Mount_Head_Wolf-Ghost { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -136px -544px; - width: 135px; - height: 135px; -} -.Mount_Head_Wolf-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -272px -544px; - width: 135px; - height: 135px; -} -.Mount_Head_Wolf-Holly { +.Mount_Head_Sabretooth-Base { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); background-position: -408px -544px; width: 135px; height: 135px; } -.Mount_Head_Wolf-Peppermint { +.Mount_Head_Sabretooth-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: 0px -136px; + width: 135px; + height: 135px; +} +.Mount_Head_Sabretooth-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -136px -136px; + width: 135px; + height: 135px; +} +.Mount_Head_Sabretooth-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -272px 0px; + width: 135px; + height: 135px; +} +.Mount_Head_Sabretooth-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -272px -136px; + width: 135px; + height: 135px; +} +.Mount_Head_Sabretooth-Red { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: 0px -272px; + width: 135px; + height: 135px; +} +.Mount_Head_Sabretooth-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -136px -272px; + width: 135px; + height: 135px; +} +.Mount_Head_Sabretooth-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -272px -272px; + width: 135px; + height: 135px; +} +.Mount_Head_Sabretooth-White { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -408px 0px; + width: 135px; + height: 135px; +} +.Mount_Head_Sabretooth-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -408px -136px; + width: 135px; + height: 135px; +} +.Mount_Head_Seahorse-Base { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1376px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1376px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1376px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1376px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1376px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-Red { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1376px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1376px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1376px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-White { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1376px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Seahorse-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1378px -1482px; + width: 105px; + height: 105px; +} +.Mount_Head_Sheep-Base { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1588px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Sheep-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1588px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Sheep-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1588px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Sheep-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1588px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Sheep-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1588px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Sheep-Red { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1588px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Sheep-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1588px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Sheep-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1588px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Sheep-White { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1588px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Sheep-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1588px -954px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-Base { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1588px -1060px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1588px -1166px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1588px -1272px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1588px -1378px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: 0px -1588px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-Red { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -106px -1588px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -212px -1588px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -318px -1588px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-White { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -424px -1588px; + width: 105px; + height: 105px; +} +.Mount_Head_Slime-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -530px -1588px; + width: 105px; + height: 105px; +} +.Mount_Head_Sloth-Base { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -636px -1588px; + width: 105px; + height: 105px; +} +.Mount_Head_Sloth-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -742px -1588px; + width: 105px; + height: 105px; +} +.Mount_Head_Sloth-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -848px -1588px; + width: 105px; + height: 105px; +} +.Mount_Head_Sloth-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -954px -1588px; + width: 105px; + height: 105px; +} +.Mount_Head_Sloth-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -635px -816px; + width: 105px; + height: 105px; +} +.Mount_Head_Sloth-Red { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -741px -816px; + width: 105px; + height: 105px; +} +.Mount_Head_Sloth-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -952px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Sloth-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -952px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Sloth-White { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -952px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Sloth-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -952px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Snail-Base { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -952px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Snail-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -952px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Snail-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -952px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Snail-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -952px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Snail-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: 0px -952px; + width: 105px; + height: 105px; +} +.Mount_Head_Snail-Red { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -106px -952px; + width: 105px; + height: 105px; +} +.Mount_Head_Snail-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -212px -952px; + width: 105px; + height: 105px; +} +.Mount_Head_Snail-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -318px -952px; + width: 105px; + height: 105px; +} +.Mount_Head_Snail-White { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -424px -952px; + width: 105px; + height: 105px; +} +.Mount_Head_Snail-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -530px -952px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Base { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -636px -952px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -742px -952px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -848px -952px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1058px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1058px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Red { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1058px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1058px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1058px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-White { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1058px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1058px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Base { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1058px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1058px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: 0px -1058px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -106px -1058px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -212px -1058px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Red { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -318px -1058px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -424px -1058px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -530px -1058px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-White { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -636px -1058px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -742px -1058px; + width: 105px; + height: 105px; +} +.Mount_Head_Squirrel-Base { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -848px -1058px; + width: 105px; + height: 105px; +} +.Mount_Head_Squirrel-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -954px -1058px; + width: 105px; + height: 105px; +} +.Mount_Head_Squirrel-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1164px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Squirrel-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1164px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Squirrel-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1164px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Squirrel-Red { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1164px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Squirrel-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1164px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Squirrel-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1164px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Squirrel-White { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1164px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Squirrel-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1164px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_TRex-Base { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: 0px -408px; + width: 135px; + height: 135px; +} +.Mount_Head_TRex-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -136px -408px; + width: 135px; + height: 135px; +} +.Mount_Head_TRex-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -272px -408px; + width: 135px; + height: 135px; +} +.Mount_Head_TRex-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -408px -408px; + width: 135px; + height: 135px; +} +.Mount_Head_TRex-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -544px 0px; + width: 135px; + height: 135px; +} +.Mount_Head_TRex-Red { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -544px -136px; + width: 135px; + height: 135px; +} +.Mount_Head_TRex-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -544px -272px; + width: 135px; + height: 135px; +} +.Mount_Head_TRex-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -544px -408px; + width: 135px; + height: 135px; +} +.Mount_Head_TRex-White { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: 0px -544px; + width: 135px; + height: 135px; +} +.Mount_Head_TRex-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -136px -544px; + width: 135px; + height: 135px; +} +.Mount_Head_TigerCub-Aquatic { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1164px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Base { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1164px -954px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: 0px -1164px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -106px -1164px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Cupid { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -212px -1164px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -318px -1164px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Ember { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -424px -1164px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Fairy { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -530px -1164px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Floral { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -636px -1164px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Ghost { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -742px -1164px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Glass { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -848px -1164px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -954px -1164px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Holly { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1060px -1164px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1270px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1270px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Red { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1270px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-RoyalPurple { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1270px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1270px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Shimmer { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -529px -816px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1270px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Spooky { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1270px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-StarryNight { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -408px -816px; + width: 120px; + height: 120px; +} +.Mount_Head_TigerCub-Thunderstorm { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1270px -954px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-White { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1270px -1060px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: 0px -1270px; + width: 105px; + height: 105px; +} +.Mount_Head_Treeling-Base { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -106px -1270px; + width: 105px; + height: 105px; +} +.Mount_Head_Treeling-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -212px -1270px; + width: 105px; + height: 105px; +} +.Mount_Head_Treeling-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -318px -1270px; + width: 105px; + height: 105px; +} +.Mount_Head_Treeling-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -424px -1270px; + width: 105px; + height: 105px; +} +.Mount_Head_Treeling-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -530px -1270px; + width: 105px; + height: 105px; +} +.Mount_Head_Treeling-Red { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -636px -1270px; + width: 105px; + height: 105px; +} +.Mount_Head_Treeling-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -742px -1270px; + width: 105px; + height: 105px; +} +.Mount_Head_Treeling-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -848px -1270px; + width: 105px; + height: 105px; +} +.Mount_Head_Treeling-White { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -954px -1270px; + width: 105px; + height: 105px; +} +.Mount_Head_Treeling-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1060px -1270px; + width: 105px; + height: 105px; +} +.Mount_Head_Triceratops-Base { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1376px -954px; + width: 105px; + height: 105px; +} +.Mount_Head_Triceratops-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1376px -1060px; + width: 105px; + height: 105px; +} +.Mount_Head_Triceratops-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1376px -1166px; + width: 105px; + height: 105px; +} +.Mount_Head_Triceratops-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: 0px -1376px; + width: 105px; + height: 105px; +} +.Mount_Head_Triceratops-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -106px -1376px; + width: 105px; + height: 105px; +} +.Mount_Head_Triceratops-Red { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -212px -1376px; + width: 105px; + height: 105px; +} +.Mount_Head_Triceratops-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -318px -1376px; + width: 105px; + height: 105px; +} +.Mount_Head_Triceratops-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -424px -1376px; + width: 105px; + height: 105px; +} +.Mount_Head_Triceratops-White { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -530px -1376px; + width: 105px; + height: 105px; +} +.Mount_Head_Triceratops-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -636px -1376px; + width: 105px; + height: 105px; +} +.Mount_Head_Turkey-Base { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -742px -1376px; + width: 105px; + height: 105px; +} +.Mount_Head_Turkey-Gilded { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -848px -1376px; + width: 105px; + height: 105px; +} +.Mount_Head_Turtle-Base { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -954px -1376px; + width: 105px; + height: 105px; +} +.Mount_Head_Turtle-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1060px -1376px; + width: 105px; + height: 105px; +} +.Mount_Head_Turtle-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1166px -1376px; + width: 105px; + height: 105px; +} +.Mount_Head_Turtle-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1272px -1376px; + width: 105px; + height: 105px; +} +.Mount_Head_Turtle-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1482px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Turtle-Red { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1482px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Turtle-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1482px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Turtle-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1482px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Turtle-White { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1482px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Turtle-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1482px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Unicorn-Base { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1482px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Unicorn-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1482px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Unicorn-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1482px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Unicorn-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1482px -954px; + width: 105px; + height: 105px; +} +.Mount_Head_Unicorn-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1482px -1060px; + width: 105px; + height: 105px; +} +.Mount_Head_Unicorn-Red { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1482px -1166px; + width: 105px; + height: 105px; +} +.Mount_Head_Unicorn-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1482px -1272px; + width: 105px; + height: 105px; +} +.Mount_Head_Unicorn-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: 0px -1482px; + width: 105px; + height: 105px; +} +.Mount_Head_Unicorn-White { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -106px -1482px; + width: 105px; + height: 105px; +} +.Mount_Head_Unicorn-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -212px -1482px; + width: 105px; + height: 105px; +} +.Mount_Head_Whale-Base { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -318px -1482px; + width: 105px; + height: 105px; +} +.Mount_Head_Whale-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -424px -1482px; + width: 105px; + height: 105px; +} +.Mount_Head_Whale-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -530px -1482px; + width: 105px; + height: 105px; +} +.Mount_Head_Whale-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -636px -1482px; + width: 105px; + height: 105px; +} +.Mount_Head_Whale-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -742px -1482px; + width: 105px; + height: 105px; +} +.Mount_Head_Whale-Red { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -848px -1482px; + width: 105px; + height: 105px; +} +.Mount_Head_Whale-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -954px -1482px; + width: 105px; + height: 105px; +} +.Mount_Head_Whale-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1060px -1482px; + width: 105px; + height: 105px; +} +.Mount_Head_Whale-White { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1166px -1482px; + width: 105px; + height: 105px; +} +.Mount_Head_Whale-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -1272px -1482px; + width: 105px; + height: 105px; +} +.Mount_Head_Wolf-Aquatic { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -272px -544px; + width: 135px; + height: 135px; +} +.Mount_Head_Wolf-Base { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: 0px 0px; + width: 135px; + height: 135px; +} +.Mount_Head_Wolf-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); background-position: -544px -544px; width: 135px; height: 135px; } -.Mount_Head_Wolf-Rainbow { +.Mount_Head_Wolf-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); background-position: -680px 0px; width: 135px; height: 135px; } -.Mount_Head_Wolf-Red { +.Mount_Head_Wolf-Cupid { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); background-position: -680px -136px; width: 135px; height: 135px; } -.Mount_Head_Wolf-RoyalPurple { +.Mount_Head_Wolf-Desert { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); background-position: -680px -272px; width: 135px; height: 135px; } -.Mount_Head_Wolf-Shade { +.Mount_Head_Wolf-Ember { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); background-position: -680px -408px; width: 135px; height: 135px; } -.Mount_Head_Wolf-Shimmer { +.Mount_Head_Wolf-Fairy { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); background-position: -680px -544px; width: 135px; height: 135px; } -.Mount_Head_Wolf-Skeleton { +.Mount_Head_Wolf-Floral { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); background-position: 0px -680px; width: 135px; height: 135px; } -.Mount_Head_Wolf-Spooky { +.Mount_Head_Wolf-Ghost { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); background-position: -136px -680px; width: 135px; height: 135px; } -.Mount_Head_Wolf-StarryNight { +.Mount_Head_Wolf-Glass { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); background-position: -272px -680px; width: 135px; height: 135px; } -.Mount_Head_Wolf-Thunderstorm { +.Mount_Head_Wolf-Golden { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); background-position: -408px -680px; width: 135px; height: 135px; } +.Mount_Head_Wolf-Holly { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -544px -680px; + width: 135px; + height: 135px; +} +.Mount_Head_Wolf-Peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -680px -680px; + width: 135px; + height: 135px; +} +.Mount_Head_Wolf-Rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -816px 0px; + width: 135px; + height: 135px; +} +.Mount_Head_Wolf-Red { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -816px -136px; + width: 135px; + height: 135px; +} +.Mount_Head_Wolf-RoyalPurple { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -816px -272px; + width: 135px; + height: 135px; +} +.Mount_Head_Wolf-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -816px -408px; + width: 135px; + height: 135px; +} +.Mount_Head_Wolf-Shimmer { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -816px -544px; + width: 135px; + height: 135px; +} +.Mount_Head_Wolf-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -816px -680px; + width: 135px; + height: 135px; +} +.Mount_Head_Wolf-Spooky { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: 0px -816px; + width: 135px; + height: 135px; +} +.Mount_Head_Wolf-StarryNight { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -136px -816px; + width: 135px; + height: 135px; +} +.Mount_Head_Wolf-Thunderstorm { + background-image: url('~assets/images/sprites/spritesmith-main-17.png'); + background-position: -272px -816px; + width: 135px; + height: 135px; +} .Mount_Head_Wolf-White { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -544px -272px; + background-position: -408px -272px; width: 135px; height: 135px; } @@ -1032,421 +1230,103 @@ } .Mount_Head_Yarn-Base { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -318px -1452px; + background-position: -1060px -1588px; width: 105px; height: 105px; } .Mount_Head_Yarn-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -424px -1452px; + background-position: -1166px -1588px; width: 105px; height: 105px; } .Mount_Head_Yarn-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -530px -1452px; + background-position: -1272px -1588px; width: 105px; height: 105px; } .Mount_Head_Yarn-Desert { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -636px -1452px; + background-position: -1378px -1588px; width: 105px; height: 105px; } .Mount_Head_Yarn-Golden { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -742px -1452px; + background-position: -1484px -1588px; width: 105px; height: 105px; } .Mount_Head_Yarn-Red { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -848px -1452px; + background-position: -1694px 0px; width: 105px; height: 105px; } .Mount_Head_Yarn-Shade { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -954px -1452px; + background-position: -1694px -106px; width: 105px; height: 105px; } .Mount_Head_Yarn-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1060px -1452px; + background-position: -1694px -212px; width: 105px; height: 105px; } .Mount_Head_Yarn-White { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1166px -1452px; + background-position: -1694px -318px; width: 105px; height: 105px; } .Mount_Head_Yarn-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1272px -1452px; + background-position: -1694px -424px; width: 105px; height: 105px; } .Mount_Icon_Aether-Invisible { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1460px -1452px; + background-position: -1694px -530px; width: 81px; height: 99px; } .Mount_Icon_Armadillo-Base { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1640px -1300px; + background-position: -1694px -630px; width: 81px; height: 99px; } .Mount_Icon_Armadillo-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1558px 0px; + background-position: -1694px -730px; width: 81px; height: 99px; } .Mount_Icon_Armadillo-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1558px -100px; + background-position: -1694px -830px; width: 81px; height: 99px; } .Mount_Icon_Armadillo-Desert { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1558px -200px; + background-position: -1694px -930px; width: 81px; height: 99px; } .Mount_Icon_Armadillo-Golden { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1558px -300px; + background-position: -1694px -1030px; width: 81px; height: 99px; } .Mount_Icon_Armadillo-Red { background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1558px -400px; - width: 81px; - height: 99px; -} -.Mount_Icon_Armadillo-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1558px -500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Armadillo-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1558px -600px; - width: 81px; - height: 99px; -} -.Mount_Icon_Armadillo-White { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1558px -700px; - width: 81px; - height: 99px; -} -.Mount_Icon_Armadillo-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1558px -800px; - width: 81px; - height: 99px; -} -.Mount_Icon_Axolotl-Base { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1558px -900px; - width: 81px; - height: 99px; -} -.Mount_Icon_Axolotl-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1558px -1000px; - width: 81px; - height: 99px; -} -.Mount_Icon_Axolotl-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1558px -1100px; - width: 81px; - height: 99px; -} -.Mount_Icon_Axolotl-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1558px -1200px; - width: 81px; - height: 99px; -} -.Mount_Icon_Axolotl-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1558px -1300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Axolotl-Red { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1558px -1400px; - width: 81px; - height: 99px; -} -.Mount_Icon_Axolotl-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1640px 0px; - width: 81px; - height: 99px; -} -.Mount_Icon_Axolotl-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1640px -100px; - width: 81px; - height: 99px; -} -.Mount_Icon_Axolotl-White { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1640px -200px; - width: 81px; - height: 99px; -} -.Mount_Icon_Axolotl-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1640px -300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Badger-Base { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1640px -400px; - width: 81px; - height: 99px; -} -.Mount_Icon_Badger-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1640px -500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Badger-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1640px -600px; - width: 81px; - height: 99px; -} -.Mount_Icon_Badger-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1640px -700px; - width: 81px; - height: 99px; -} -.Mount_Icon_Badger-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1640px -800px; - width: 81px; - height: 99px; -} -.Mount_Icon_Badger-Red { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1640px -900px; - width: 81px; - height: 99px; -} -.Mount_Icon_Badger-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1640px -1000px; - width: 81px; - height: 99px; -} -.Mount_Icon_Badger-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1640px -1100px; - width: 81px; - height: 99px; -} -.Mount_Icon_Badger-White { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1640px -1200px; - width: 81px; - height: 99px; -} -.Mount_Icon_Badger-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1378px -1452px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Aquatic { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1640px -1400px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Base { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: 0px -1558px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -82px -1558px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -164px -1558px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Cupid { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -246px -1558px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -328px -1558px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Ember { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -410px -1558px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Fairy { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -492px -1558px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Floral { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -574px -1558px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Ghost { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -656px -1558px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -738px -1558px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Holly { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -820px -1558px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -902px -1558px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Polar { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -984px -1558px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1066px -1558px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Red { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1148px -1558px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-RoyalPurple { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1230px -1558px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1312px -1558px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Shimmer { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1394px -1558px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1476px -1558px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Spooky { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1558px -1558px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-StarryNight { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1640px -1558px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Thunderstorm { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1722px 0px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-White { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1722px -100px; - width: 81px; - height: 99px; -} -.Mount_Icon_BearCub-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1722px -200px; - width: 81px; - height: 99px; -} -.Mount_Icon_Beetle-Base { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1722px -300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Beetle-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1722px -400px; - width: 81px; - height: 99px; -} -.Mount_Icon_Beetle-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1722px -500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Beetle-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-17.png'); - background-position: -1722px -600px; + background-position: -1694px -1130px; width: 81px; height: 99px; } diff --git a/website/client/assets/css/sprites/spritesmith-main-18.css b/website/client/assets/css/sprites/spritesmith-main-18.css index 4a6145b6e7..dfcd5c35d6 100644 --- a/website/client/assets/css/sprites/spritesmith-main-18.css +++ b/website/client/assets/css/sprites/spritesmith-main-18.css @@ -1,1992 +1,1992 @@ -.Mount_Icon_Beetle-Golden { +.Mount_Icon_Armadillo-Shade { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -82px 0px; width: 81px; height: 99px; } -.Mount_Icon_Beetle-Red { +.Mount_Icon_Armadillo-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -82px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Beetle-Shade { +.Mount_Icon_Armadillo-White { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -164px 0px; width: 81px; height: 99px; } -.Mount_Icon_Beetle-Skeleton { +.Mount_Icon_Armadillo-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: 0px -100px; width: 81px; height: 99px; } -.Mount_Icon_Beetle-White { +.Mount_Icon_Axolotl-Base { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -82px -100px; width: 81px; height: 99px; } -.Mount_Icon_Beetle-Zombie { +.Mount_Icon_Axolotl-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -164px -100px; width: 81px; height: 99px; } -.Mount_Icon_Bunny-Base { +.Mount_Icon_Axolotl-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -246px 0px; width: 81px; height: 99px; } -.Mount_Icon_Bunny-CottonCandyBlue { +.Mount_Icon_Axolotl-Desert { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -246px -100px; width: 81px; height: 99px; } -.Mount_Icon_Bunny-CottonCandyPink { +.Mount_Icon_Axolotl-Golden { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: 0px -200px; width: 81px; height: 99px; } -.Mount_Icon_Bunny-Desert { +.Mount_Icon_Axolotl-Red { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -82px -200px; width: 81px; height: 99px; } -.Mount_Icon_Bunny-Golden { +.Mount_Icon_Axolotl-Shade { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -164px -200px; width: 81px; height: 99px; } -.Mount_Icon_Bunny-Red { +.Mount_Icon_Axolotl-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -246px -200px; width: 81px; height: 99px; } -.Mount_Icon_Bunny-Shade { +.Mount_Icon_Axolotl-White { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -328px 0px; width: 81px; height: 99px; } -.Mount_Icon_Bunny-Skeleton { +.Mount_Icon_Axolotl-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -328px -100px; width: 81px; height: 99px; } -.Mount_Icon_Bunny-White { +.Mount_Icon_Badger-Base { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -328px -200px; width: 81px; height: 99px; } -.Mount_Icon_Bunny-Zombie { +.Mount_Icon_Badger-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: 0px -300px; width: 81px; height: 99px; } -.Mount_Icon_Butterfly-Base { +.Mount_Icon_Badger-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -82px -300px; width: 81px; height: 99px; } -.Mount_Icon_Butterfly-CottonCandyBlue { +.Mount_Icon_Badger-Desert { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -164px -300px; width: 81px; height: 99px; } -.Mount_Icon_Butterfly-CottonCandyPink { +.Mount_Icon_Badger-Golden { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -246px -300px; width: 81px; height: 99px; } -.Mount_Icon_Butterfly-Desert { +.Mount_Icon_Badger-Red { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -328px -300px; width: 81px; height: 99px; } -.Mount_Icon_Butterfly-Golden { +.Mount_Icon_Badger-Shade { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -410px 0px; width: 81px; height: 99px; } -.Mount_Icon_Butterfly-Red { +.Mount_Icon_Badger-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -410px -100px; width: 81px; height: 99px; } -.Mount_Icon_Butterfly-Shade { +.Mount_Icon_Badger-White { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -410px -200px; width: 81px; height: 99px; } -.Mount_Icon_Butterfly-Skeleton { +.Mount_Icon_Badger-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -410px -300px; width: 81px; height: 99px; } -.Mount_Icon_Butterfly-White { +.Mount_Icon_BearCub-Aquatic { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -492px 0px; width: 81px; height: 99px; } -.Mount_Icon_Butterfly-Zombie { +.Mount_Icon_BearCub-Base { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -492px -100px; width: 81px; height: 99px; } -.Mount_Icon_Cactus-Aquatic { +.Mount_Icon_BearCub-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -492px -200px; width: 81px; height: 99px; } -.Mount_Icon_Cactus-Base { +.Mount_Icon_BearCub-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -492px -300px; width: 81px; height: 99px; } -.Mount_Icon_Cactus-CottonCandyBlue { +.Mount_Icon_BearCub-Cupid { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: 0px -400px; width: 81px; height: 99px; } -.Mount_Icon_Cactus-CottonCandyPink { +.Mount_Icon_BearCub-Desert { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -82px -400px; width: 81px; height: 99px; } -.Mount_Icon_Cactus-Cupid { +.Mount_Icon_BearCub-Ember { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -164px -400px; width: 81px; height: 99px; } -.Mount_Icon_Cactus-Desert { +.Mount_Icon_BearCub-Fairy { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -246px -400px; width: 81px; height: 99px; } -.Mount_Icon_Cactus-Ember { +.Mount_Icon_BearCub-Floral { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -328px -400px; width: 81px; height: 99px; } -.Mount_Icon_Cactus-Fairy { +.Mount_Icon_BearCub-Ghost { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -410px -400px; width: 81px; height: 99px; } -.Mount_Icon_Cactus-Floral { +.Mount_Icon_BearCub-Glass { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -492px -400px; width: 81px; height: 99px; } -.Mount_Icon_Cactus-Ghost { +.Mount_Icon_BearCub-Golden { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -574px 0px; width: 81px; height: 99px; } -.Mount_Icon_Cactus-Golden { +.Mount_Icon_BearCub-Holly { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -574px -100px; width: 81px; height: 99px; } -.Mount_Icon_Cactus-Holly { +.Mount_Icon_BearCub-Peppermint { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -574px -200px; width: 81px; height: 99px; } -.Mount_Icon_Cactus-Peppermint { +.Mount_Icon_BearCub-Polar { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -574px -300px; width: 81px; height: 99px; } -.Mount_Icon_Cactus-Rainbow { +.Mount_Icon_BearCub-Rainbow { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -574px -400px; width: 81px; height: 99px; } -.Mount_Icon_Cactus-Red { +.Mount_Icon_BearCub-Red { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: 0px -500px; width: 81px; height: 99px; } -.Mount_Icon_Cactus-RoyalPurple { +.Mount_Icon_BearCub-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -82px -500px; width: 81px; height: 99px; } -.Mount_Icon_Cactus-Shade { +.Mount_Icon_BearCub-Shade { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -164px -500px; width: 81px; height: 99px; } -.Mount_Icon_Cactus-Shimmer { +.Mount_Icon_BearCub-Shimmer { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -246px -500px; width: 81px; height: 99px; } -.Mount_Icon_Cactus-Skeleton { +.Mount_Icon_BearCub-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -328px -500px; width: 81px; height: 99px; } -.Mount_Icon_Cactus-Spooky { +.Mount_Icon_BearCub-Spooky { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -410px -500px; width: 81px; height: 99px; } -.Mount_Icon_Cactus-StarryNight { +.Mount_Icon_BearCub-StarryNight { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -492px -500px; width: 81px; height: 99px; } -.Mount_Icon_Cactus-Thunderstorm { +.Mount_Icon_BearCub-Thunderstorm { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -574px -500px; width: 81px; height: 99px; } -.Mount_Icon_Cactus-White { +.Mount_Icon_BearCub-White { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -656px 0px; width: 81px; height: 99px; } -.Mount_Icon_Cactus-Zombie { +.Mount_Icon_BearCub-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -656px -100px; width: 81px; height: 99px; } -.Mount_Icon_Cheetah-Base { +.Mount_Icon_Beetle-Base { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -656px -200px; width: 81px; height: 99px; } -.Mount_Icon_Cheetah-CottonCandyBlue { +.Mount_Icon_Beetle-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -656px -300px; width: 81px; height: 99px; } -.Mount_Icon_Cheetah-CottonCandyPink { +.Mount_Icon_Beetle-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -656px -400px; width: 81px; height: 99px; } -.Mount_Icon_Cheetah-Desert { +.Mount_Icon_Beetle-Desert { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -656px -500px; width: 81px; height: 99px; } -.Mount_Icon_Cheetah-Golden { +.Mount_Icon_Beetle-Golden { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: 0px -600px; width: 81px; height: 99px; } -.Mount_Icon_Cheetah-Red { +.Mount_Icon_Beetle-Red { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -82px -600px; width: 81px; height: 99px; } -.Mount_Icon_Cheetah-Shade { +.Mount_Icon_Beetle-Shade { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -164px -600px; width: 81px; height: 99px; } -.Mount_Icon_Cheetah-Skeleton { +.Mount_Icon_Beetle-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -246px -600px; width: 81px; height: 99px; } -.Mount_Icon_Cheetah-White { +.Mount_Icon_Beetle-White { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -328px -600px; width: 81px; height: 99px; } -.Mount_Icon_Cheetah-Zombie { +.Mount_Icon_Beetle-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -410px -600px; width: 81px; height: 99px; } -.Mount_Icon_Cow-Base { +.Mount_Icon_Bunny-Base { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -492px -600px; width: 81px; height: 99px; } -.Mount_Icon_Cow-CottonCandyBlue { +.Mount_Icon_Bunny-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -574px -600px; width: 81px; height: 99px; } -.Mount_Icon_Cow-CottonCandyPink { +.Mount_Icon_Bunny-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -656px -600px; width: 81px; height: 99px; } -.Mount_Icon_Cow-Desert { +.Mount_Icon_Bunny-Desert { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -738px 0px; width: 81px; height: 99px; } -.Mount_Icon_Cow-Golden { +.Mount_Icon_Bunny-Golden { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -738px -100px; width: 81px; height: 99px; } -.Mount_Icon_Cow-Red { +.Mount_Icon_Bunny-Red { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -738px -200px; width: 81px; height: 99px; } -.Mount_Icon_Cow-Shade { +.Mount_Icon_Bunny-Shade { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -738px -300px; width: 81px; height: 99px; } -.Mount_Icon_Cow-Skeleton { +.Mount_Icon_Bunny-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -738px -400px; width: 81px; height: 99px; } -.Mount_Icon_Cow-White { +.Mount_Icon_Bunny-White { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -738px -500px; width: 81px; height: 99px; } -.Mount_Icon_Cow-Zombie { +.Mount_Icon_Bunny-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -738px -600px; width: 81px; height: 99px; } -.Mount_Icon_Cuttlefish-Base { +.Mount_Icon_Butterfly-Base { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: 0px -700px; width: 81px; height: 99px; } -.Mount_Icon_Cuttlefish-CottonCandyBlue { +.Mount_Icon_Butterfly-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -82px -700px; width: 81px; height: 99px; } -.Mount_Icon_Cuttlefish-CottonCandyPink { +.Mount_Icon_Butterfly-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -164px -700px; width: 81px; height: 99px; } -.Mount_Icon_Cuttlefish-Desert { +.Mount_Icon_Butterfly-Desert { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -246px -700px; width: 81px; height: 99px; } -.Mount_Icon_Cuttlefish-Golden { +.Mount_Icon_Butterfly-Golden { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -328px -700px; width: 81px; height: 99px; } -.Mount_Icon_Cuttlefish-Red { +.Mount_Icon_Butterfly-Red { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -410px -700px; width: 81px; height: 99px; } -.Mount_Icon_Cuttlefish-Shade { +.Mount_Icon_Butterfly-Shade { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -492px -700px; width: 81px; height: 99px; } -.Mount_Icon_Cuttlefish-Skeleton { +.Mount_Icon_Butterfly-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -574px -700px; width: 81px; height: 99px; } -.Mount_Icon_Cuttlefish-White { +.Mount_Icon_Butterfly-White { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -656px -700px; width: 81px; height: 99px; } -.Mount_Icon_Cuttlefish-Zombie { +.Mount_Icon_Butterfly-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -738px -700px; width: 81px; height: 99px; } -.Mount_Icon_Deer-Base { +.Mount_Icon_Cactus-Aquatic { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -820px 0px; width: 81px; height: 99px; } -.Mount_Icon_Deer-CottonCandyBlue { +.Mount_Icon_Cactus-Base { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -820px -100px; width: 81px; height: 99px; } -.Mount_Icon_Deer-CottonCandyPink { +.Mount_Icon_Cactus-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -820px -200px; width: 81px; height: 99px; } -.Mount_Icon_Deer-Desert { +.Mount_Icon_Cactus-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -820px -300px; width: 81px; height: 99px; } -.Mount_Icon_Deer-Golden { +.Mount_Icon_Cactus-Cupid { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -820px -400px; width: 81px; height: 99px; } -.Mount_Icon_Deer-Red { +.Mount_Icon_Cactus-Desert { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -820px -500px; width: 81px; height: 99px; } -.Mount_Icon_Deer-Shade { +.Mount_Icon_Cactus-Ember { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -820px -600px; width: 81px; height: 99px; } -.Mount_Icon_Deer-Skeleton { +.Mount_Icon_Cactus-Fairy { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -820px -700px; width: 81px; height: 99px; } -.Mount_Icon_Deer-White { +.Mount_Icon_Cactus-Floral { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: 0px -800px; width: 81px; height: 99px; } -.Mount_Icon_Deer-Zombie { +.Mount_Icon_Cactus-Ghost { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -82px -800px; width: 81px; height: 99px; } -.Mount_Icon_Dragon-Aquatic { +.Mount_Icon_Cactus-Glass { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -164px -800px; width: 81px; height: 99px; } -.Mount_Icon_Dragon-Base { +.Mount_Icon_Cactus-Golden { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -246px -800px; width: 81px; height: 99px; } -.Mount_Icon_Dragon-CottonCandyBlue { +.Mount_Icon_Cactus-Holly { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -328px -800px; width: 81px; height: 99px; } -.Mount_Icon_Dragon-CottonCandyPink { +.Mount_Icon_Cactus-Peppermint { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -410px -800px; width: 81px; height: 99px; } -.Mount_Icon_Dragon-Cupid { +.Mount_Icon_Cactus-Rainbow { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -492px -800px; width: 81px; height: 99px; } -.Mount_Icon_Dragon-Desert { +.Mount_Icon_Cactus-Red { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -574px -800px; width: 81px; height: 99px; } -.Mount_Icon_Dragon-Ember { +.Mount_Icon_Cactus-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -656px -800px; width: 81px; height: 99px; } -.Mount_Icon_Dragon-Fairy { +.Mount_Icon_Cactus-Shade { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -738px -800px; width: 81px; height: 99px; } -.Mount_Icon_Dragon-Floral { +.Mount_Icon_Cactus-Shimmer { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -820px -800px; width: 81px; height: 99px; } -.Mount_Icon_Dragon-Ghost { +.Mount_Icon_Cactus-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -902px 0px; width: 81px; height: 99px; } -.Mount_Icon_Dragon-Golden { +.Mount_Icon_Cactus-Spooky { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -902px -100px; width: 81px; height: 99px; } -.Mount_Icon_Dragon-Holly { +.Mount_Icon_Cactus-StarryNight { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -902px -200px; width: 81px; height: 99px; } -.Mount_Icon_Dragon-Peppermint { +.Mount_Icon_Cactus-Thunderstorm { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -902px -300px; width: 81px; height: 99px; } -.Mount_Icon_Dragon-Rainbow { +.Mount_Icon_Cactus-White { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -902px -400px; width: 81px; height: 99px; } -.Mount_Icon_Dragon-Red { +.Mount_Icon_Cactus-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -902px -500px; width: 81px; height: 99px; } -.Mount_Icon_Dragon-RoyalPurple { +.Mount_Icon_Cheetah-Base { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -902px -600px; width: 81px; height: 99px; } -.Mount_Icon_Dragon-Shade { +.Mount_Icon_Cheetah-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -902px -700px; width: 81px; height: 99px; } -.Mount_Icon_Dragon-Shimmer { +.Mount_Icon_Cheetah-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -902px -800px; width: 81px; height: 99px; } -.Mount_Icon_Dragon-Skeleton { +.Mount_Icon_Cheetah-Desert { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -984px 0px; width: 81px; height: 99px; } -.Mount_Icon_Dragon-Spooky { +.Mount_Icon_Cheetah-Golden { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -984px -100px; width: 81px; height: 99px; } -.Mount_Icon_Dragon-StarryNight { +.Mount_Icon_Cheetah-Red { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -984px -200px; width: 81px; height: 99px; } -.Mount_Icon_Dragon-Thunderstorm { +.Mount_Icon_Cheetah-Shade { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -984px -300px; width: 81px; height: 99px; } -.Mount_Icon_Dragon-White { +.Mount_Icon_Cheetah-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -984px -400px; width: 81px; height: 99px; } -.Mount_Icon_Dragon-Zombie { +.Mount_Icon_Cheetah-White { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -984px -500px; width: 81px; height: 99px; } -.Mount_Icon_Egg-Base { +.Mount_Icon_Cheetah-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -984px -600px; width: 81px; height: 99px; } -.Mount_Icon_Egg-CottonCandyBlue { +.Mount_Icon_Cow-Base { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -984px -700px; width: 81px; height: 99px; } -.Mount_Icon_Egg-CottonCandyPink { +.Mount_Icon_Cow-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -984px -800px; width: 81px; height: 99px; } -.Mount_Icon_Egg-Desert { +.Mount_Icon_Cow-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: 0px -900px; width: 81px; height: 99px; } -.Mount_Icon_Egg-Golden { +.Mount_Icon_Cow-Desert { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -82px -900px; width: 81px; height: 99px; } -.Mount_Icon_Egg-Red { +.Mount_Icon_Cow-Golden { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -164px -900px; width: 81px; height: 99px; } -.Mount_Icon_Egg-Shade { +.Mount_Icon_Cow-Red { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -246px -900px; width: 81px; height: 99px; } -.Mount_Icon_Egg-Skeleton { +.Mount_Icon_Cow-Shade { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -328px -900px; width: 81px; height: 99px; } -.Mount_Icon_Egg-White { +.Mount_Icon_Cow-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -410px -900px; width: 81px; height: 99px; } -.Mount_Icon_Egg-Zombie { +.Mount_Icon_Cow-White { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -492px -900px; width: 81px; height: 99px; } -.Mount_Icon_Falcon-Base { +.Mount_Icon_Cow-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -574px -900px; width: 81px; height: 99px; } -.Mount_Icon_Falcon-CottonCandyBlue { +.Mount_Icon_Cuttlefish-Base { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -656px -900px; width: 81px; height: 99px; } -.Mount_Icon_Falcon-CottonCandyPink { +.Mount_Icon_Cuttlefish-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -738px -900px; width: 81px; height: 99px; } -.Mount_Icon_Falcon-Desert { +.Mount_Icon_Cuttlefish-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -820px -900px; width: 81px; height: 99px; } -.Mount_Icon_Falcon-Golden { +.Mount_Icon_Cuttlefish-Desert { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -902px -900px; width: 81px; height: 99px; } -.Mount_Icon_Falcon-Red { +.Mount_Icon_Cuttlefish-Golden { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -984px -900px; width: 81px; height: 99px; } -.Mount_Icon_Falcon-Shade { +.Mount_Icon_Cuttlefish-Red { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1066px 0px; width: 81px; height: 99px; } -.Mount_Icon_Falcon-Skeleton { +.Mount_Icon_Cuttlefish-Shade { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1066px -100px; width: 81px; height: 99px; } -.Mount_Icon_Falcon-White { +.Mount_Icon_Cuttlefish-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1066px -200px; width: 81px; height: 99px; } -.Mount_Icon_Falcon-Zombie { +.Mount_Icon_Cuttlefish-White { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1066px -300px; width: 81px; height: 99px; } -.Mount_Icon_Ferret-Base { +.Mount_Icon_Cuttlefish-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1066px -400px; width: 81px; height: 99px; } -.Mount_Icon_Ferret-CottonCandyBlue { +.Mount_Icon_Deer-Base { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1066px -500px; width: 81px; height: 99px; } -.Mount_Icon_Ferret-CottonCandyPink { +.Mount_Icon_Deer-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1066px -600px; width: 81px; height: 99px; } -.Mount_Icon_Ferret-Desert { +.Mount_Icon_Deer-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1066px -700px; width: 81px; height: 99px; } -.Mount_Icon_Ferret-Golden { +.Mount_Icon_Deer-Desert { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1066px -800px; width: 81px; height: 99px; } -.Mount_Icon_Ferret-Red { +.Mount_Icon_Deer-Golden { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1066px -900px; width: 81px; height: 99px; } -.Mount_Icon_Ferret-Shade { +.Mount_Icon_Deer-Red { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: 0px -1000px; width: 81px; height: 99px; } -.Mount_Icon_Ferret-Skeleton { +.Mount_Icon_Deer-Shade { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -82px -1000px; width: 81px; height: 99px; } -.Mount_Icon_Ferret-White { +.Mount_Icon_Deer-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -164px -1000px; width: 81px; height: 99px; } -.Mount_Icon_Ferret-Zombie { +.Mount_Icon_Deer-White { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -246px -1000px; width: 81px; height: 99px; } -.Mount_Icon_FlyingPig-Aquatic { +.Mount_Icon_Deer-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -328px -1000px; width: 81px; height: 99px; } -.Mount_Icon_FlyingPig-Base { +.Mount_Icon_Dragon-Aquatic { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -410px -1000px; width: 81px; height: 99px; } -.Mount_Icon_FlyingPig-CottonCandyBlue { +.Mount_Icon_Dragon-Base { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -492px -1000px; width: 81px; height: 99px; } -.Mount_Icon_FlyingPig-CottonCandyPink { +.Mount_Icon_Dragon-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -574px -1000px; width: 81px; height: 99px; } -.Mount_Icon_FlyingPig-Cupid { +.Mount_Icon_Dragon-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -656px -1000px; width: 81px; height: 99px; } -.Mount_Icon_FlyingPig-Desert { +.Mount_Icon_Dragon-Cupid { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -738px -1000px; width: 81px; height: 99px; } -.Mount_Icon_FlyingPig-Ember { +.Mount_Icon_Dragon-Desert { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -820px -1000px; width: 81px; height: 99px; } -.Mount_Icon_FlyingPig-Fairy { +.Mount_Icon_Dragon-Ember { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -902px -1000px; width: 81px; height: 99px; } -.Mount_Icon_FlyingPig-Floral { +.Mount_Icon_Dragon-Fairy { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -984px -1000px; width: 81px; height: 99px; } -.Mount_Icon_FlyingPig-Ghost { +.Mount_Icon_Dragon-Floral { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1066px -1000px; width: 81px; height: 99px; } -.Mount_Icon_FlyingPig-Golden { +.Mount_Icon_Dragon-Ghost { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1148px 0px; width: 81px; height: 99px; } -.Mount_Icon_FlyingPig-Holly { +.Mount_Icon_Dragon-Glass { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1148px -100px; width: 81px; height: 99px; } -.Mount_Icon_FlyingPig-Peppermint { +.Mount_Icon_Dragon-Golden { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1148px -200px; width: 81px; height: 99px; } -.Mount_Icon_FlyingPig-Rainbow { +.Mount_Icon_Dragon-Holly { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1148px -300px; width: 81px; height: 99px; } -.Mount_Icon_FlyingPig-Red { +.Mount_Icon_Dragon-Peppermint { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1148px -400px; width: 81px; height: 99px; } -.Mount_Icon_FlyingPig-RoyalPurple { +.Mount_Icon_Dragon-Rainbow { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1148px -500px; width: 81px; height: 99px; } -.Mount_Icon_FlyingPig-Shade { +.Mount_Icon_Dragon-Red { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1148px -600px; width: 81px; height: 99px; } -.Mount_Icon_FlyingPig-Shimmer { +.Mount_Icon_Dragon-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1148px -700px; width: 81px; height: 99px; } -.Mount_Icon_FlyingPig-Skeleton { +.Mount_Icon_Dragon-Shade { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1148px -800px; width: 81px; height: 99px; } -.Mount_Icon_FlyingPig-Spooky { +.Mount_Icon_Dragon-Shimmer { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1148px -900px; width: 81px; height: 99px; } -.Mount_Icon_FlyingPig-StarryNight { +.Mount_Icon_Dragon-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1148px -1000px; width: 81px; height: 99px; } -.Mount_Icon_FlyingPig-Thunderstorm { +.Mount_Icon_Dragon-Spooky { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: 0px -1100px; width: 81px; height: 99px; } -.Mount_Icon_FlyingPig-White { +.Mount_Icon_Dragon-StarryNight { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: 0px 0px; width: 81px; height: 99px; } -.Mount_Icon_FlyingPig-Zombie { +.Mount_Icon_Dragon-Thunderstorm { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -164px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Fox-Aquatic { +.Mount_Icon_Dragon-White { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -246px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Fox-Base { +.Mount_Icon_Dragon-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -328px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Fox-CottonCandyBlue { +.Mount_Icon_Egg-Base { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -410px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Fox-CottonCandyPink { +.Mount_Icon_Egg-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -492px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Fox-Cupid { +.Mount_Icon_Egg-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -574px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Fox-Desert { +.Mount_Icon_Egg-Desert { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -656px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Fox-Ember { +.Mount_Icon_Egg-Golden { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -738px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Fox-Fairy { +.Mount_Icon_Egg-Red { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -820px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Fox-Floral { +.Mount_Icon_Egg-Shade { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -902px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Fox-Ghost { +.Mount_Icon_Egg-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -984px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Fox-Golden { +.Mount_Icon_Egg-White { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1066px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Fox-Holly { +.Mount_Icon_Egg-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1148px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Fox-Peppermint { +.Mount_Icon_Falcon-Base { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1230px 0px; width: 81px; height: 99px; } -.Mount_Icon_Fox-Rainbow { +.Mount_Icon_Falcon-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1230px -100px; width: 81px; height: 99px; } -.Mount_Icon_Fox-Red { +.Mount_Icon_Falcon-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1230px -200px; width: 81px; height: 99px; } -.Mount_Icon_Fox-RoyalPurple { +.Mount_Icon_Falcon-Desert { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1230px -300px; width: 81px; height: 99px; } -.Mount_Icon_Fox-Shade { +.Mount_Icon_Falcon-Golden { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1230px -400px; width: 81px; height: 99px; } -.Mount_Icon_Fox-Shimmer { +.Mount_Icon_Falcon-Red { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1230px -500px; width: 81px; height: 99px; } -.Mount_Icon_Fox-Skeleton { +.Mount_Icon_Falcon-Shade { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1230px -600px; width: 81px; height: 99px; } -.Mount_Icon_Fox-Spooky { +.Mount_Icon_Falcon-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1230px -700px; width: 81px; height: 99px; } -.Mount_Icon_Fox-StarryNight { +.Mount_Icon_Falcon-White { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1230px -800px; width: 81px; height: 99px; } -.Mount_Icon_Fox-Thunderstorm { +.Mount_Icon_Falcon-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1230px -900px; width: 81px; height: 99px; } -.Mount_Icon_Fox-White { +.Mount_Icon_Ferret-Base { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1230px -1000px; width: 81px; height: 99px; } -.Mount_Icon_Fox-Zombie { +.Mount_Icon_Ferret-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1230px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Frog-Base { +.Mount_Icon_Ferret-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: 0px -1200px; width: 81px; height: 99px; } -.Mount_Icon_Frog-CottonCandyBlue { +.Mount_Icon_Ferret-Desert { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -82px -1200px; width: 81px; height: 99px; } -.Mount_Icon_Frog-CottonCandyPink { +.Mount_Icon_Ferret-Golden { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -164px -1200px; width: 81px; height: 99px; } -.Mount_Icon_Frog-Desert { +.Mount_Icon_Ferret-Red { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -246px -1200px; width: 81px; height: 99px; } -.Mount_Icon_Frog-Golden { +.Mount_Icon_Ferret-Shade { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -328px -1200px; width: 81px; height: 99px; } -.Mount_Icon_Frog-Red { +.Mount_Icon_Ferret-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -410px -1200px; width: 81px; height: 99px; } -.Mount_Icon_Frog-Shade { +.Mount_Icon_Ferret-White { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -492px -1200px; width: 81px; height: 99px; } -.Mount_Icon_Frog-Skeleton { +.Mount_Icon_Ferret-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -574px -1200px; width: 81px; height: 99px; } -.Mount_Icon_Frog-White { +.Mount_Icon_FlyingPig-Aquatic { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -656px -1200px; width: 81px; height: 99px; } -.Mount_Icon_Frog-Zombie { +.Mount_Icon_FlyingPig-Base { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -738px -1200px; width: 81px; height: 99px; } -.Mount_Icon_Gryphon-Base { +.Mount_Icon_FlyingPig-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -820px -1200px; width: 81px; height: 99px; } -.Mount_Icon_Gryphon-CottonCandyBlue { +.Mount_Icon_FlyingPig-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -902px -1200px; width: 81px; height: 99px; } -.Mount_Icon_Gryphon-CottonCandyPink { +.Mount_Icon_FlyingPig-Cupid { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -984px -1200px; width: 81px; height: 99px; } -.Mount_Icon_Gryphon-Desert { +.Mount_Icon_FlyingPig-Desert { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1066px -1200px; width: 81px; height: 99px; } -.Mount_Icon_Gryphon-Golden { +.Mount_Icon_FlyingPig-Ember { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1148px -1200px; width: 81px; height: 99px; } -.Mount_Icon_Gryphon-Red { +.Mount_Icon_FlyingPig-Fairy { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1230px -1200px; width: 81px; height: 99px; } -.Mount_Icon_Gryphon-RoyalPurple { +.Mount_Icon_FlyingPig-Floral { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1312px 0px; width: 81px; height: 99px; } -.Mount_Icon_Gryphon-Shade { +.Mount_Icon_FlyingPig-Ghost { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1312px -100px; width: 81px; height: 99px; } -.Mount_Icon_Gryphon-Skeleton { +.Mount_Icon_FlyingPig-Glass { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1312px -200px; width: 81px; height: 99px; } -.Mount_Icon_Gryphon-White { +.Mount_Icon_FlyingPig-Golden { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1312px -300px; width: 81px; height: 99px; } -.Mount_Icon_Gryphon-Zombie { +.Mount_Icon_FlyingPig-Holly { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1312px -400px; width: 81px; height: 99px; } -.Mount_Icon_GuineaPig-Base { +.Mount_Icon_FlyingPig-Peppermint { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1312px -500px; width: 81px; height: 99px; } -.Mount_Icon_GuineaPig-CottonCandyBlue { +.Mount_Icon_FlyingPig-Rainbow { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1312px -600px; width: 81px; height: 99px; } -.Mount_Icon_GuineaPig-CottonCandyPink { +.Mount_Icon_FlyingPig-Red { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1312px -700px; width: 81px; height: 99px; } -.Mount_Icon_GuineaPig-Desert { +.Mount_Icon_FlyingPig-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1312px -800px; width: 81px; height: 99px; } -.Mount_Icon_GuineaPig-Golden { +.Mount_Icon_FlyingPig-Shade { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1312px -900px; width: 81px; height: 99px; } -.Mount_Icon_GuineaPig-Red { +.Mount_Icon_FlyingPig-Shimmer { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1312px -1000px; width: 81px; height: 99px; } -.Mount_Icon_GuineaPig-Shade { +.Mount_Icon_FlyingPig-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1312px -1100px; width: 81px; height: 99px; } -.Mount_Icon_GuineaPig-Skeleton { +.Mount_Icon_FlyingPig-Spooky { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1312px -1200px; width: 81px; height: 99px; } -.Mount_Icon_GuineaPig-White { +.Mount_Icon_FlyingPig-StarryNight { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1394px 0px; width: 81px; height: 99px; } -.Mount_Icon_GuineaPig-Zombie { +.Mount_Icon_FlyingPig-Thunderstorm { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1394px -100px; width: 81px; height: 99px; } -.Mount_Icon_Hedgehog-Base { +.Mount_Icon_FlyingPig-White { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1394px -200px; width: 81px; height: 99px; } -.Mount_Icon_Hedgehog-CottonCandyBlue { +.Mount_Icon_FlyingPig-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1394px -300px; width: 81px; height: 99px; } -.Mount_Icon_Hedgehog-CottonCandyPink { +.Mount_Icon_Fox-Aquatic { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1394px -400px; width: 81px; height: 99px; } -.Mount_Icon_Hedgehog-Desert { +.Mount_Icon_Fox-Base { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1394px -500px; width: 81px; height: 99px; } -.Mount_Icon_Hedgehog-Golden { +.Mount_Icon_Fox-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1394px -600px; width: 81px; height: 99px; } -.Mount_Icon_Hedgehog-Red { +.Mount_Icon_Fox-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1394px -700px; width: 81px; height: 99px; } -.Mount_Icon_Hedgehog-Shade { +.Mount_Icon_Fox-Cupid { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1394px -800px; width: 81px; height: 99px; } -.Mount_Icon_Hedgehog-Skeleton { +.Mount_Icon_Fox-Desert { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1394px -900px; width: 81px; height: 99px; } -.Mount_Icon_Hedgehog-White { +.Mount_Icon_Fox-Ember { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1394px -1000px; width: 81px; height: 99px; } -.Mount_Icon_Hedgehog-Zombie { +.Mount_Icon_Fox-Fairy { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1394px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Hippo-Base { +.Mount_Icon_Fox-Floral { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1394px -1200px; width: 81px; height: 99px; } -.Mount_Icon_Hippo-CottonCandyBlue { +.Mount_Icon_Fox-Ghost { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: 0px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Hippo-CottonCandyPink { +.Mount_Icon_Fox-Glass { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -82px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Hippo-Desert { +.Mount_Icon_Fox-Golden { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -164px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Hippo-Golden { +.Mount_Icon_Fox-Holly { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -246px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Hippo-Red { +.Mount_Icon_Fox-Peppermint { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -328px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Hippo-Shade { +.Mount_Icon_Fox-Rainbow { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -410px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Hippo-Skeleton { +.Mount_Icon_Fox-Red { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -492px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Hippo-White { +.Mount_Icon_Fox-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -574px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Hippo-Zombie { +.Mount_Icon_Fox-Shade { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -656px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Hippogriff-Hopeful { +.Mount_Icon_Fox-Shimmer { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -738px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Horse-Base { +.Mount_Icon_Fox-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -820px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Horse-CottonCandyBlue { +.Mount_Icon_Fox-Spooky { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -902px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Horse-CottonCandyPink { +.Mount_Icon_Fox-StarryNight { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -984px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Horse-Desert { +.Mount_Icon_Fox-Thunderstorm { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1066px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Horse-Golden { +.Mount_Icon_Fox-White { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1148px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Horse-Red { +.Mount_Icon_Fox-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1230px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Horse-Shade { +.Mount_Icon_Frog-Base { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1312px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Horse-Skeleton { +.Mount_Icon_Frog-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1394px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Horse-White { +.Mount_Icon_Frog-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1476px 0px; width: 81px; height: 99px; } -.Mount_Icon_Horse-Zombie { +.Mount_Icon_Frog-Desert { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1476px -100px; width: 81px; height: 99px; } -.Mount_Icon_JackOLantern-Base { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1476px -300px; - width: 81px; - height: 99px; -} -.Mount_Icon_JackOLantern-Ghost { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1476px -400px; - width: 81px; - height: 99px; -} -.Mount_Icon_Jackalope-RoyalPurple { +.Mount_Icon_Frog-Golden { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1476px -200px; width: 81px; height: 99px; } -.Mount_Icon_LionCub-Aquatic { +.Mount_Icon_Frog-Red { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1476px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Frog-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1476px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Frog-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1476px -500px; width: 81px; height: 99px; } -.Mount_Icon_LionCub-Base { +.Mount_Icon_Frog-White { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1476px -600px; width: 81px; height: 99px; } -.Mount_Icon_LionCub-CottonCandyBlue { +.Mount_Icon_Frog-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1476px -700px; width: 81px; height: 99px; } -.Mount_Icon_LionCub-CottonCandyPink { +.Mount_Icon_Gryphon-Base { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1476px -800px; width: 81px; height: 99px; } -.Mount_Icon_LionCub-Cupid { +.Mount_Icon_Gryphon-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1476px -900px; width: 81px; height: 99px; } -.Mount_Icon_LionCub-Desert { +.Mount_Icon_Gryphon-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1476px -1000px; width: 81px; height: 99px; } -.Mount_Icon_LionCub-Ember { +.Mount_Icon_Gryphon-Desert { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1476px -1100px; width: 81px; height: 99px; } -.Mount_Icon_LionCub-Ethereal { +.Mount_Icon_Gryphon-Golden { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1476px -1200px; width: 81px; height: 99px; } -.Mount_Icon_LionCub-Fairy { +.Mount_Icon_Gryphon-Red { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1476px -1300px; width: 81px; height: 99px; } -.Mount_Icon_LionCub-Floral { +.Mount_Icon_Gryphon-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: 0px -1400px; width: 81px; height: 99px; } -.Mount_Icon_LionCub-Ghost { +.Mount_Icon_Gryphon-Shade { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -82px -1400px; width: 81px; height: 99px; } -.Mount_Icon_LionCub-Golden { +.Mount_Icon_Gryphon-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -164px -1400px; width: 81px; height: 99px; } -.Mount_Icon_LionCub-Holly { +.Mount_Icon_Gryphon-White { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -246px -1400px; width: 81px; height: 99px; } -.Mount_Icon_LionCub-Peppermint { +.Mount_Icon_Gryphon-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -328px -1400px; width: 81px; height: 99px; } -.Mount_Icon_LionCub-Rainbow { +.Mount_Icon_GuineaPig-Base { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -410px -1400px; width: 81px; height: 99px; } -.Mount_Icon_LionCub-Red { +.Mount_Icon_GuineaPig-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -492px -1400px; width: 81px; height: 99px; } -.Mount_Icon_LionCub-RoyalPurple { +.Mount_Icon_GuineaPig-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -574px -1400px; width: 81px; height: 99px; } -.Mount_Icon_LionCub-Shade { +.Mount_Icon_GuineaPig-Desert { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -656px -1400px; width: 81px; height: 99px; } -.Mount_Icon_LionCub-Shimmer { +.Mount_Icon_GuineaPig-Golden { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -738px -1400px; width: 81px; height: 99px; } -.Mount_Icon_LionCub-Skeleton { +.Mount_Icon_GuineaPig-Red { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -820px -1400px; width: 81px; height: 99px; } -.Mount_Icon_LionCub-Spooky { +.Mount_Icon_GuineaPig-Shade { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -902px -1400px; width: 81px; height: 99px; } -.Mount_Icon_LionCub-StarryNight { +.Mount_Icon_GuineaPig-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -984px -1400px; width: 81px; height: 99px; } -.Mount_Icon_LionCub-Thunderstorm { +.Mount_Icon_GuineaPig-White { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1066px -1400px; width: 81px; height: 99px; } -.Mount_Icon_LionCub-White { +.Mount_Icon_GuineaPig-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1148px -1400px; width: 81px; height: 99px; } -.Mount_Icon_LionCub-Zombie { +.Mount_Icon_Hedgehog-Base { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1230px -1400px; width: 81px; height: 99px; } -.Mount_Icon_MagicalBee-Base { +.Mount_Icon_Hedgehog-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1312px -1400px; width: 81px; height: 99px; } -.Mount_Icon_Mammoth-Base { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1640px -1087px; - width: 78px; - height: 86px; -} -.Mount_Icon_MantisShrimp-Base { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1476px -1400px; - width: 81px; - height: 99px; -} -.Mount_Icon_Monkey-Base { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1558px 0px; - width: 81px; - height: 99px; -} -.Mount_Icon_Monkey-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1558px -100px; - width: 81px; - height: 99px; -} -.Mount_Icon_Monkey-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1558px -200px; - width: 81px; - height: 99px; -} -.Mount_Icon_Monkey-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1558px -300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Monkey-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1558px -400px; - width: 81px; - height: 99px; -} -.Mount_Icon_Monkey-Red { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1558px -500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Monkey-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1558px -600px; - width: 81px; - height: 99px; -} -.Mount_Icon_Monkey-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1558px -700px; - width: 81px; - height: 99px; -} -.Mount_Icon_Monkey-White { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1558px -800px; - width: 81px; - height: 99px; -} -.Mount_Icon_Monkey-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1558px -900px; - width: 81px; - height: 99px; -} -.Mount_Icon_Nudibranch-Base { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1558px -1000px; - width: 81px; - height: 99px; -} -.Mount_Icon_Nudibranch-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1558px -1100px; - width: 81px; - height: 99px; -} -.Mount_Icon_Nudibranch-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1558px -1200px; - width: 81px; - height: 99px; -} -.Mount_Icon_Nudibranch-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1558px -1300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Nudibranch-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1558px -1400px; - width: 81px; - height: 99px; -} -.Mount_Icon_Nudibranch-Red { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: 0px -1500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Nudibranch-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -82px -1500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Nudibranch-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -164px -1500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Nudibranch-White { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -246px -1500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Nudibranch-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -328px -1500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Octopus-Base { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -410px -1500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Octopus-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -492px -1500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Octopus-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -574px -1500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Octopus-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -656px -1500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Octopus-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -738px -1500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Octopus-Red { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -820px -1500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Octopus-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -902px -1500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Octopus-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -984px -1500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Octopus-White { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1066px -1500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Octopus-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1148px -1500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Orca-Base { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1640px -1000px; - width: 78px; - height: 86px; -} -.Mount_Icon_Owl-Base { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1312px -1500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Owl-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1394px -1500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Owl-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1476px -1500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Owl-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1558px -1500px; - width: 81px; - height: 99px; -} -.Mount_Icon_Owl-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1640px 0px; - width: 81px; - height: 99px; -} -.Mount_Icon_Owl-Red { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1640px -100px; - width: 81px; - height: 99px; -} -.Mount_Icon_Owl-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1640px -200px; - width: 81px; - height: 99px; -} -.Mount_Icon_Owl-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1640px -300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Owl-White { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1640px -400px; - width: 81px; - height: 99px; -} -.Mount_Icon_Owl-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1640px -500px; - width: 81px; - height: 99px; -} -.Mount_Icon_PandaCub-Aquatic { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1640px -600px; - width: 81px; - height: 99px; -} -.Mount_Icon_PandaCub-Base { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1640px -700px; - width: 81px; - height: 99px; -} -.Mount_Icon_PandaCub-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1640px -800px; - width: 81px; - height: 99px; -} -.Mount_Icon_PandaCub-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-18.png'); - background-position: -1230px -1500px; - width: 81px; - height: 99px; -} -.Mount_Icon_PandaCub-Cupid { +.Mount_Icon_Hedgehog-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1394px -1400px; width: 81px; height: 99px; } -.Mount_Icon_PandaCub-Desert { +.Mount_Icon_Hedgehog-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1476px -1400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1558px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-Red { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1558px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1558px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1558px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-White { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1558px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1558px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hippo-Base { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1558px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hippo-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1558px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hippo-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1558px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hippo-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1558px -900px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hippo-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1558px -1000px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hippo-Red { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1558px -1100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hippo-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1558px -1200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hippo-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1558px -1300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hippo-White { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1558px -1400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hippo-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: 0px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hippogriff-Hopeful { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -82px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Base { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -164px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -246px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -328px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -410px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -492px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Red { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -574px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -656px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -738px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-White { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -820px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -902px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_JackOLantern-Base { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1066px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_JackOLantern-Ghost { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1148px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Jackalope-RoyalPurple { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -984px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_LionCub-Aquatic { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1230px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_LionCub-Base { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1312px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_LionCub-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1394px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_LionCub-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1476px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_LionCub-Cupid { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1558px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_LionCub-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1640px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_LionCub-Ember { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1640px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_LionCub-Ethereal { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1640px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_LionCub-Fairy { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1640px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_LionCub-Floral { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1640px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_LionCub-Ghost { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1640px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_LionCub-Glass { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1640px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_LionCub-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1640px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_LionCub-Holly { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1640px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_LionCub-Peppermint { background-image: url('~assets/images/sprites/spritesmith-main-18.png'); background-position: -1640px -900px; width: 81px; height: 99px; } +.Mount_Icon_LionCub-Rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1640px -1000px; + width: 81px; + height: 99px; +} +.Mount_Icon_LionCub-Red { + background-image: url('~assets/images/sprites/spritesmith-main-18.png'); + background-position: -1640px -1100px; + width: 81px; + height: 99px; +} diff --git a/website/client/assets/css/sprites/spritesmith-main-19.css b/website/client/assets/css/sprites/spritesmith-main-19.css index 9b32d26a5c..1dfa234c83 100644 --- a/website/client/assets/css/sprites/spritesmith-main-19.css +++ b/website/client/assets/css/sprites/spritesmith-main-19.css @@ -1,2004 +1,2004 @@ -.Mount_Icon_PandaCub-Ember { +.Mount_Icon_LionCub-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -82px 0px; width: 81px; height: 99px; } -.Mount_Icon_PandaCub-Fairy { +.Mount_Icon_LionCub-Shade { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -164px -1100px; width: 81px; height: 99px; } -.Mount_Icon_PandaCub-Floral { +.Mount_Icon_LionCub-Shimmer { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -164px 0px; width: 81px; height: 99px; } -.Mount_Icon_PandaCub-Ghost { +.Mount_Icon_LionCub-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: 0px -100px; width: 81px; height: 99px; } -.Mount_Icon_PandaCub-Golden { +.Mount_Icon_LionCub-Spooky { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -82px -100px; width: 81px; height: 99px; } -.Mount_Icon_PandaCub-Holly { +.Mount_Icon_LionCub-StarryNight { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -164px -100px; width: 81px; height: 99px; } -.Mount_Icon_PandaCub-Peppermint { +.Mount_Icon_LionCub-Thunderstorm { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -246px 0px; width: 81px; height: 99px; } -.Mount_Icon_PandaCub-Rainbow { +.Mount_Icon_LionCub-White { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -246px -100px; width: 81px; height: 99px; } -.Mount_Icon_PandaCub-Red { +.Mount_Icon_LionCub-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: 0px -200px; width: 81px; height: 99px; } -.Mount_Icon_PandaCub-RoyalPurple { +.Mount_Icon_MagicalBee-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -82px -200px; width: 81px; height: 99px; } -.Mount_Icon_PandaCub-Shade { +.Mount_Icon_Mammoth-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -164px -200px; - width: 81px; - height: 99px; + background-position: -1640px -1070px; + width: 78px; + height: 86px; } -.Mount_Icon_PandaCub-Shimmer { +.Mount_Icon_MantisShrimp-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -246px -200px; width: 81px; height: 99px; } -.Mount_Icon_PandaCub-Skeleton { +.Mount_Icon_Monkey-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -328px 0px; width: 81px; height: 99px; } -.Mount_Icon_PandaCub-Spooky { +.Mount_Icon_Monkey-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -328px -100px; width: 81px; height: 99px; } -.Mount_Icon_PandaCub-StarryNight { +.Mount_Icon_Monkey-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -328px -200px; width: 81px; height: 99px; } -.Mount_Icon_PandaCub-Thunderstorm { +.Mount_Icon_Monkey-Desert { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: 0px -300px; width: 81px; height: 99px; } -.Mount_Icon_PandaCub-White { +.Mount_Icon_Monkey-Golden { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -82px -300px; width: 81px; height: 99px; } -.Mount_Icon_PandaCub-Zombie { +.Mount_Icon_Monkey-Red { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -164px -300px; width: 81px; height: 99px; } -.Mount_Icon_Parrot-Base { +.Mount_Icon_Monkey-Shade { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -246px -300px; width: 81px; height: 99px; } -.Mount_Icon_Parrot-CottonCandyBlue { +.Mount_Icon_Monkey-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -328px -300px; width: 81px; height: 99px; } -.Mount_Icon_Parrot-CottonCandyPink { +.Mount_Icon_Monkey-White { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -410px 0px; width: 81px; height: 99px; } -.Mount_Icon_Parrot-Desert { +.Mount_Icon_Monkey-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -410px -100px; width: 81px; height: 99px; } -.Mount_Icon_Parrot-Golden { +.Mount_Icon_Nudibranch-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -410px -200px; width: 81px; height: 99px; } -.Mount_Icon_Parrot-Red { +.Mount_Icon_Nudibranch-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -410px -300px; width: 81px; height: 99px; } -.Mount_Icon_Parrot-Shade { +.Mount_Icon_Nudibranch-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -492px 0px; width: 81px; height: 99px; } -.Mount_Icon_Parrot-Skeleton { +.Mount_Icon_Nudibranch-Desert { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -492px -100px; width: 81px; height: 99px; } -.Mount_Icon_Parrot-White { +.Mount_Icon_Nudibranch-Golden { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -492px -200px; width: 81px; height: 99px; } -.Mount_Icon_Parrot-Zombie { +.Mount_Icon_Nudibranch-Red { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -492px -300px; width: 81px; height: 99px; } -.Mount_Icon_Peacock-Base { +.Mount_Icon_Nudibranch-Shade { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: 0px -400px; width: 81px; height: 99px; } -.Mount_Icon_Peacock-CottonCandyBlue { +.Mount_Icon_Nudibranch-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -82px -400px; width: 81px; height: 99px; } -.Mount_Icon_Peacock-CottonCandyPink { +.Mount_Icon_Nudibranch-White { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -164px -400px; width: 81px; height: 99px; } -.Mount_Icon_Peacock-Desert { +.Mount_Icon_Nudibranch-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -246px -400px; width: 81px; height: 99px; } -.Mount_Icon_Peacock-Golden { +.Mount_Icon_Octopus-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -328px -400px; width: 81px; height: 99px; } -.Mount_Icon_Peacock-Red { +.Mount_Icon_Octopus-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -410px -400px; width: 81px; height: 99px; } -.Mount_Icon_Peacock-Shade { +.Mount_Icon_Octopus-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -492px -400px; width: 81px; height: 99px; } -.Mount_Icon_Peacock-Skeleton { +.Mount_Icon_Octopus-Desert { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -574px 0px; width: 81px; height: 99px; } -.Mount_Icon_Peacock-White { +.Mount_Icon_Octopus-Golden { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -574px -100px; width: 81px; height: 99px; } -.Mount_Icon_Peacock-Zombie { +.Mount_Icon_Octopus-Red { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -574px -200px; width: 81px; height: 99px; } -.Mount_Icon_Penguin-Base { +.Mount_Icon_Octopus-Shade { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -574px -300px; width: 81px; height: 99px; } -.Mount_Icon_Penguin-CottonCandyBlue { +.Mount_Icon_Octopus-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -574px -400px; width: 81px; height: 99px; } -.Mount_Icon_Penguin-CottonCandyPink { +.Mount_Icon_Octopus-White { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: 0px -500px; width: 81px; height: 99px; } -.Mount_Icon_Penguin-Desert { +.Mount_Icon_Octopus-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -82px -500px; width: 81px; height: 99px; } -.Mount_Icon_Penguin-Golden { +.Mount_Icon_Orca-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -164px -500px; - width: 81px; - height: 99px; + background-position: -1640px -983px; + width: 78px; + height: 86px; } -.Mount_Icon_Penguin-Red { +.Mount_Icon_Owl-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -246px -500px; width: 81px; height: 99px; } -.Mount_Icon_Penguin-Shade { +.Mount_Icon_Owl-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -328px -500px; width: 81px; height: 99px; } -.Mount_Icon_Penguin-Skeleton { +.Mount_Icon_Owl-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -410px -500px; width: 81px; height: 99px; } -.Mount_Icon_Penguin-White { +.Mount_Icon_Owl-Desert { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -492px -500px; width: 81px; height: 99px; } -.Mount_Icon_Penguin-Zombie { +.Mount_Icon_Owl-Golden { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -574px -500px; width: 81px; height: 99px; } -.Mount_Icon_Phoenix-Base { +.Mount_Icon_Owl-Red { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -656px 0px; width: 81px; height: 99px; } -.Mount_Icon_Pterodactyl-Base { +.Mount_Icon_Owl-Shade { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -656px -100px; width: 81px; height: 99px; } -.Mount_Icon_Pterodactyl-CottonCandyBlue { +.Mount_Icon_Owl-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -656px -200px; width: 81px; height: 99px; } -.Mount_Icon_Pterodactyl-CottonCandyPink { +.Mount_Icon_Owl-White { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -656px -300px; width: 81px; height: 99px; } -.Mount_Icon_Pterodactyl-Desert { +.Mount_Icon_Owl-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -656px -400px; width: 81px; height: 99px; } -.Mount_Icon_Pterodactyl-Golden { +.Mount_Icon_PandaCub-Aquatic { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -656px -500px; width: 81px; height: 99px; } -.Mount_Icon_Pterodactyl-Red { +.Mount_Icon_PandaCub-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: 0px -600px; width: 81px; height: 99px; } -.Mount_Icon_Pterodactyl-Shade { +.Mount_Icon_PandaCub-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -82px -600px; width: 81px; height: 99px; } -.Mount_Icon_Pterodactyl-Skeleton { +.Mount_Icon_PandaCub-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -164px -600px; width: 81px; height: 99px; } -.Mount_Icon_Pterodactyl-White { +.Mount_Icon_PandaCub-Cupid { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -246px -600px; width: 81px; height: 99px; } -.Mount_Icon_Pterodactyl-Zombie { +.Mount_Icon_PandaCub-Desert { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -328px -600px; width: 81px; height: 99px; } -.Mount_Icon_Rat-Base { +.Mount_Icon_PandaCub-Ember { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -410px -600px; width: 81px; height: 99px; } -.Mount_Icon_Rat-CottonCandyBlue { +.Mount_Icon_PandaCub-Fairy { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -492px -600px; width: 81px; height: 99px; } -.Mount_Icon_Rat-CottonCandyPink { +.Mount_Icon_PandaCub-Floral { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -574px -600px; width: 81px; height: 99px; } -.Mount_Icon_Rat-Desert { +.Mount_Icon_PandaCub-Ghost { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -656px -600px; width: 81px; height: 99px; } -.Mount_Icon_Rat-Golden { +.Mount_Icon_PandaCub-Glass { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -738px 0px; width: 81px; height: 99px; } -.Mount_Icon_Rat-Red { +.Mount_Icon_PandaCub-Golden { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -738px -100px; width: 81px; height: 99px; } -.Mount_Icon_Rat-Shade { +.Mount_Icon_PandaCub-Holly { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -738px -200px; width: 81px; height: 99px; } -.Mount_Icon_Rat-Skeleton { +.Mount_Icon_PandaCub-Peppermint { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -738px -300px; width: 81px; height: 99px; } -.Mount_Icon_Rat-White { +.Mount_Icon_PandaCub-Rainbow { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -738px -400px; width: 81px; height: 99px; } -.Mount_Icon_Rat-Zombie { +.Mount_Icon_PandaCub-Red { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -738px -500px; width: 81px; height: 99px; } -.Mount_Icon_Rock-Base { +.Mount_Icon_PandaCub-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -738px -600px; width: 81px; height: 99px; } -.Mount_Icon_Rock-CottonCandyBlue { +.Mount_Icon_PandaCub-Shade { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: 0px -700px; width: 81px; height: 99px; } -.Mount_Icon_Rock-CottonCandyPink { +.Mount_Icon_PandaCub-Shimmer { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -82px -700px; width: 81px; height: 99px; } -.Mount_Icon_Rock-Desert { +.Mount_Icon_PandaCub-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -164px -700px; width: 81px; height: 99px; } -.Mount_Icon_Rock-Golden { +.Mount_Icon_PandaCub-Spooky { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -246px -700px; width: 81px; height: 99px; } -.Mount_Icon_Rock-Red { +.Mount_Icon_PandaCub-StarryNight { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -328px -700px; width: 81px; height: 99px; } -.Mount_Icon_Rock-Shade { +.Mount_Icon_PandaCub-Thunderstorm { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -410px -700px; width: 81px; height: 99px; } -.Mount_Icon_Rock-Skeleton { +.Mount_Icon_PandaCub-White { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -492px -700px; width: 81px; height: 99px; } -.Mount_Icon_Rock-White { +.Mount_Icon_PandaCub-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -574px -700px; width: 81px; height: 99px; } -.Mount_Icon_Rock-Zombie { +.Mount_Icon_Parrot-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -656px -700px; width: 81px; height: 99px; } -.Mount_Icon_Rooster-Base { +.Mount_Icon_Parrot-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -738px -700px; width: 81px; height: 99px; } -.Mount_Icon_Rooster-CottonCandyBlue { +.Mount_Icon_Parrot-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -820px 0px; width: 81px; height: 99px; } -.Mount_Icon_Rooster-CottonCandyPink { +.Mount_Icon_Parrot-Desert { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -820px -100px; width: 81px; height: 99px; } -.Mount_Icon_Rooster-Desert { +.Mount_Icon_Parrot-Golden { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -820px -200px; width: 81px; height: 99px; } -.Mount_Icon_Rooster-Golden { +.Mount_Icon_Parrot-Red { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -820px -300px; width: 81px; height: 99px; } -.Mount_Icon_Rooster-Red { +.Mount_Icon_Parrot-Shade { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -820px -400px; width: 81px; height: 99px; } -.Mount_Icon_Rooster-Shade { +.Mount_Icon_Parrot-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -820px -500px; width: 81px; height: 99px; } -.Mount_Icon_Rooster-Skeleton { +.Mount_Icon_Parrot-White { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -820px -600px; width: 81px; height: 99px; } -.Mount_Icon_Rooster-White { +.Mount_Icon_Parrot-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -820px -700px; width: 81px; height: 99px; } -.Mount_Icon_Rooster-Zombie { +.Mount_Icon_Peacock-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: 0px -800px; width: 81px; height: 99px; } -.Mount_Icon_Sabretooth-Base { +.Mount_Icon_Peacock-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -82px -800px; width: 81px; height: 99px; } -.Mount_Icon_Sabretooth-CottonCandyBlue { +.Mount_Icon_Peacock-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -164px -800px; width: 81px; height: 99px; } -.Mount_Icon_Sabretooth-CottonCandyPink { +.Mount_Icon_Peacock-Desert { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -246px -800px; width: 81px; height: 99px; } -.Mount_Icon_Sabretooth-Desert { +.Mount_Icon_Peacock-Golden { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -328px -800px; width: 81px; height: 99px; } -.Mount_Icon_Sabretooth-Golden { +.Mount_Icon_Peacock-Red { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -410px -800px; width: 81px; height: 99px; } -.Mount_Icon_Sabretooth-Red { +.Mount_Icon_Peacock-Shade { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -492px -800px; width: 81px; height: 99px; } -.Mount_Icon_Sabretooth-Shade { +.Mount_Icon_Peacock-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -574px -800px; width: 81px; height: 99px; } -.Mount_Icon_Sabretooth-Skeleton { +.Mount_Icon_Peacock-White { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -656px -800px; width: 81px; height: 99px; } -.Mount_Icon_Sabretooth-White { +.Mount_Icon_Peacock-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -738px -800px; width: 81px; height: 99px; } -.Mount_Icon_Sabretooth-Zombie { +.Mount_Icon_Penguin-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -820px -800px; width: 81px; height: 99px; } -.Mount_Icon_Seahorse-Base { +.Mount_Icon_Penguin-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -902px 0px; width: 81px; height: 99px; } -.Mount_Icon_Seahorse-CottonCandyBlue { +.Mount_Icon_Penguin-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -902px -100px; width: 81px; height: 99px; } -.Mount_Icon_Seahorse-CottonCandyPink { +.Mount_Icon_Penguin-Desert { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -902px -200px; width: 81px; height: 99px; } -.Mount_Icon_Seahorse-Desert { +.Mount_Icon_Penguin-Golden { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -902px -300px; width: 81px; height: 99px; } -.Mount_Icon_Seahorse-Golden { +.Mount_Icon_Penguin-Red { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -902px -400px; width: 81px; height: 99px; } -.Mount_Icon_Seahorse-Red { +.Mount_Icon_Penguin-Shade { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -902px -500px; width: 81px; height: 99px; } -.Mount_Icon_Seahorse-Shade { +.Mount_Icon_Penguin-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -902px -600px; width: 81px; height: 99px; } -.Mount_Icon_Seahorse-Skeleton { +.Mount_Icon_Penguin-White { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -902px -700px; width: 81px; height: 99px; } -.Mount_Icon_Seahorse-White { +.Mount_Icon_Penguin-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -902px -800px; width: 81px; height: 99px; } -.Mount_Icon_Seahorse-Zombie { +.Mount_Icon_Phoenix-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -984px 0px; width: 81px; height: 99px; } -.Mount_Icon_Sheep-Base { +.Mount_Icon_Pterodactyl-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -984px -100px; width: 81px; height: 99px; } -.Mount_Icon_Sheep-CottonCandyBlue { +.Mount_Icon_Pterodactyl-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -984px -200px; width: 81px; height: 99px; } -.Mount_Icon_Sheep-CottonCandyPink { +.Mount_Icon_Pterodactyl-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -984px -300px; width: 81px; height: 99px; } -.Mount_Icon_Sheep-Desert { +.Mount_Icon_Pterodactyl-Desert { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -984px -400px; width: 81px; height: 99px; } -.Mount_Icon_Sheep-Golden { +.Mount_Icon_Pterodactyl-Golden { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -984px -500px; width: 81px; height: 99px; } -.Mount_Icon_Sheep-Red { +.Mount_Icon_Pterodactyl-Red { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -984px -600px; width: 81px; height: 99px; } -.Mount_Icon_Sheep-Shade { +.Mount_Icon_Pterodactyl-Shade { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -984px -700px; width: 81px; height: 99px; } -.Mount_Icon_Sheep-Skeleton { +.Mount_Icon_Pterodactyl-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -984px -800px; width: 81px; height: 99px; } -.Mount_Icon_Sheep-White { +.Mount_Icon_Pterodactyl-White { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: 0px -900px; width: 81px; height: 99px; } -.Mount_Icon_Sheep-Zombie { +.Mount_Icon_Pterodactyl-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -82px -900px; width: 81px; height: 99px; } -.Mount_Icon_Slime-Base { +.Mount_Icon_Rat-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -164px -900px; width: 81px; height: 99px; } -.Mount_Icon_Slime-CottonCandyBlue { +.Mount_Icon_Rat-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -246px -900px; width: 81px; height: 99px; } -.Mount_Icon_Slime-CottonCandyPink { +.Mount_Icon_Rat-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -328px -900px; width: 81px; height: 99px; } -.Mount_Icon_Slime-Desert { +.Mount_Icon_Rat-Desert { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -410px -900px; width: 81px; height: 99px; } -.Mount_Icon_Slime-Golden { +.Mount_Icon_Rat-Golden { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -492px -900px; width: 81px; height: 99px; } -.Mount_Icon_Slime-Red { +.Mount_Icon_Rat-Red { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -574px -900px; width: 81px; height: 99px; } -.Mount_Icon_Slime-Shade { +.Mount_Icon_Rat-Shade { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -656px -900px; width: 81px; height: 99px; } -.Mount_Icon_Slime-Skeleton { +.Mount_Icon_Rat-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -738px -900px; width: 81px; height: 99px; } -.Mount_Icon_Slime-White { +.Mount_Icon_Rat-White { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -820px -900px; width: 81px; height: 99px; } -.Mount_Icon_Slime-Zombie { +.Mount_Icon_Rat-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -902px -900px; width: 81px; height: 99px; } -.Mount_Icon_Sloth-Base { +.Mount_Icon_Rock-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -984px -900px; width: 81px; height: 99px; } -.Mount_Icon_Sloth-CottonCandyBlue { +.Mount_Icon_Rock-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1066px 0px; width: 81px; height: 99px; } -.Mount_Icon_Sloth-CottonCandyPink { +.Mount_Icon_Rock-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1066px -100px; width: 81px; height: 99px; } -.Mount_Icon_Sloth-Desert { +.Mount_Icon_Rock-Desert { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1066px -200px; width: 81px; height: 99px; } -.Mount_Icon_Sloth-Golden { +.Mount_Icon_Rock-Golden { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1066px -300px; width: 81px; height: 99px; } -.Mount_Icon_Sloth-Red { +.Mount_Icon_Rock-Red { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1066px -400px; width: 81px; height: 99px; } -.Mount_Icon_Sloth-Shade { +.Mount_Icon_Rock-Shade { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1066px -500px; width: 81px; height: 99px; } -.Mount_Icon_Sloth-Skeleton { +.Mount_Icon_Rock-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1066px -600px; width: 81px; height: 99px; } -.Mount_Icon_Sloth-White { +.Mount_Icon_Rock-White { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1066px -700px; width: 81px; height: 99px; } -.Mount_Icon_Sloth-Zombie { +.Mount_Icon_Rock-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1066px -800px; width: 81px; height: 99px; } -.Mount_Icon_Snail-Base { +.Mount_Icon_Rooster-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1066px -900px; width: 81px; height: 99px; } -.Mount_Icon_Snail-CottonCandyBlue { +.Mount_Icon_Rooster-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: 0px -1000px; width: 81px; height: 99px; } -.Mount_Icon_Snail-CottonCandyPink { +.Mount_Icon_Rooster-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -82px -1000px; width: 81px; height: 99px; } -.Mount_Icon_Snail-Desert { +.Mount_Icon_Rooster-Desert { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -164px -1000px; width: 81px; height: 99px; } -.Mount_Icon_Snail-Golden { +.Mount_Icon_Rooster-Golden { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -246px -1000px; width: 81px; height: 99px; } -.Mount_Icon_Snail-Red { +.Mount_Icon_Rooster-Red { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -328px -1000px; width: 81px; height: 99px; } -.Mount_Icon_Snail-Shade { +.Mount_Icon_Rooster-Shade { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -410px -1000px; width: 81px; height: 99px; } -.Mount_Icon_Snail-Skeleton { +.Mount_Icon_Rooster-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -492px -1000px; width: 81px; height: 99px; } -.Mount_Icon_Snail-White { +.Mount_Icon_Rooster-White { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -574px -1000px; width: 81px; height: 99px; } -.Mount_Icon_Snail-Zombie { +.Mount_Icon_Rooster-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -656px -1000px; width: 81px; height: 99px; } -.Mount_Icon_Snake-Base { +.Mount_Icon_Sabretooth-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -738px -1000px; width: 81px; height: 99px; } -.Mount_Icon_Snake-CottonCandyBlue { +.Mount_Icon_Sabretooth-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -820px -1000px; width: 81px; height: 99px; } -.Mount_Icon_Snake-CottonCandyPink { +.Mount_Icon_Sabretooth-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -902px -1000px; width: 81px; height: 99px; } -.Mount_Icon_Snake-Desert { +.Mount_Icon_Sabretooth-Desert { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -984px -1000px; width: 81px; height: 99px; } -.Mount_Icon_Snake-Golden { +.Mount_Icon_Sabretooth-Golden { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1066px -1000px; width: 81px; height: 99px; } -.Mount_Icon_Snake-Red { +.Mount_Icon_Sabretooth-Red { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1148px 0px; width: 81px; height: 99px; } -.Mount_Icon_Snake-Shade { +.Mount_Icon_Sabretooth-Shade { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1148px -100px; width: 81px; height: 99px; } -.Mount_Icon_Snake-Skeleton { +.Mount_Icon_Sabretooth-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1148px -200px; width: 81px; height: 99px; } -.Mount_Icon_Snake-White { +.Mount_Icon_Sabretooth-White { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1148px -300px; width: 81px; height: 99px; } -.Mount_Icon_Snake-Zombie { +.Mount_Icon_Sabretooth-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1148px -400px; width: 81px; height: 99px; } -.Mount_Icon_Spider-Base { +.Mount_Icon_Seahorse-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1148px -500px; width: 81px; height: 99px; } -.Mount_Icon_Spider-CottonCandyBlue { +.Mount_Icon_Seahorse-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1148px -600px; width: 81px; height: 99px; } -.Mount_Icon_Spider-CottonCandyPink { +.Mount_Icon_Seahorse-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1148px -700px; width: 81px; height: 99px; } -.Mount_Icon_Spider-Desert { +.Mount_Icon_Seahorse-Desert { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1148px -800px; width: 81px; height: 99px; } -.Mount_Icon_Spider-Golden { +.Mount_Icon_Seahorse-Golden { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1148px -900px; width: 81px; height: 99px; } -.Mount_Icon_Spider-Red { +.Mount_Icon_Seahorse-Red { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1148px -1000px; width: 81px; height: 99px; } -.Mount_Icon_Spider-Shade { +.Mount_Icon_Seahorse-Shade { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: 0px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Spider-Skeleton { +.Mount_Icon_Seahorse-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -82px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Spider-White { +.Mount_Icon_Seahorse-White { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: 0px 0px; width: 81px; height: 99px; } -.Mount_Icon_Spider-Zombie { +.Mount_Icon_Seahorse-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -246px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Squirrel-Base { +.Mount_Icon_Sheep-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -328px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Squirrel-CottonCandyBlue { +.Mount_Icon_Sheep-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -410px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Squirrel-CottonCandyPink { +.Mount_Icon_Sheep-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -492px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Squirrel-Desert { +.Mount_Icon_Sheep-Desert { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -574px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Squirrel-Golden { +.Mount_Icon_Sheep-Golden { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -656px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Squirrel-Red { +.Mount_Icon_Sheep-Red { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -738px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Squirrel-Shade { +.Mount_Icon_Sheep-Shade { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -820px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Squirrel-Skeleton { +.Mount_Icon_Sheep-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -902px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Squirrel-White { +.Mount_Icon_Sheep-White { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -984px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Squirrel-Zombie { +.Mount_Icon_Sheep-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1066px -1100px; width: 81px; height: 99px; } -.Mount_Icon_TRex-Base { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1312px -500px; - width: 81px; - height: 99px; -} -.Mount_Icon_TRex-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1312px -600px; - width: 81px; - height: 99px; -} -.Mount_Icon_TRex-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1312px -700px; - width: 81px; - height: 99px; -} -.Mount_Icon_TRex-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1312px -800px; - width: 81px; - height: 99px; -} -.Mount_Icon_TRex-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1312px -900px; - width: 81px; - height: 99px; -} -.Mount_Icon_TRex-Red { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1312px -1000px; - width: 81px; - height: 99px; -} -.Mount_Icon_TRex-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1312px -1100px; - width: 81px; - height: 99px; -} -.Mount_Icon_TRex-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1312px -1200px; - width: 81px; - height: 99px; -} -.Mount_Icon_TRex-White { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1394px 0px; - width: 81px; - height: 99px; -} -.Mount_Icon_TRex-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1394px -100px; - width: 81px; - height: 99px; -} -.Mount_Icon_TigerCub-Aquatic { +.Mount_Icon_Slime-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1148px -1100px; width: 81px; height: 99px; } -.Mount_Icon_TigerCub-Base { +.Mount_Icon_Slime-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1230px 0px; width: 81px; height: 99px; } -.Mount_Icon_TigerCub-CottonCandyBlue { +.Mount_Icon_Slime-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1230px -100px; width: 81px; height: 99px; } -.Mount_Icon_TigerCub-CottonCandyPink { +.Mount_Icon_Slime-Desert { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1230px -200px; width: 81px; height: 99px; } -.Mount_Icon_TigerCub-Cupid { +.Mount_Icon_Slime-Golden { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1230px -300px; width: 81px; height: 99px; } -.Mount_Icon_TigerCub-Desert { +.Mount_Icon_Slime-Red { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1230px -400px; width: 81px; height: 99px; } -.Mount_Icon_TigerCub-Ember { +.Mount_Icon_Slime-Shade { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1230px -500px; width: 81px; height: 99px; } -.Mount_Icon_TigerCub-Fairy { +.Mount_Icon_Slime-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1230px -600px; width: 81px; height: 99px; } -.Mount_Icon_TigerCub-Floral { +.Mount_Icon_Slime-White { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1230px -700px; width: 81px; height: 99px; } -.Mount_Icon_TigerCub-Ghost { +.Mount_Icon_Slime-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1230px -800px; width: 81px; height: 99px; } -.Mount_Icon_TigerCub-Golden { +.Mount_Icon_Sloth-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1230px -900px; width: 81px; height: 99px; } -.Mount_Icon_TigerCub-Holly { +.Mount_Icon_Sloth-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1230px -1000px; width: 81px; height: 99px; } -.Mount_Icon_TigerCub-Peppermint { +.Mount_Icon_Sloth-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1230px -1100px; width: 81px; height: 99px; } -.Mount_Icon_TigerCub-Rainbow { +.Mount_Icon_Sloth-Desert { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: 0px -1200px; width: 81px; height: 99px; } -.Mount_Icon_TigerCub-Red { +.Mount_Icon_Sloth-Golden { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -82px -1200px; width: 81px; height: 99px; } -.Mount_Icon_TigerCub-RoyalPurple { +.Mount_Icon_Sloth-Red { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -164px -1200px; width: 81px; height: 99px; } -.Mount_Icon_TigerCub-Shade { +.Mount_Icon_Sloth-Shade { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -246px -1200px; width: 81px; height: 99px; } -.Mount_Icon_TigerCub-Shimmer { +.Mount_Icon_Sloth-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -328px -1200px; width: 81px; height: 99px; } -.Mount_Icon_TigerCub-Skeleton { +.Mount_Icon_Sloth-White { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -410px -1200px; width: 81px; height: 99px; } -.Mount_Icon_TigerCub-Spooky { +.Mount_Icon_Sloth-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -492px -1200px; width: 81px; height: 99px; } -.Mount_Icon_TigerCub-StarryNight { +.Mount_Icon_Snail-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -574px -1200px; width: 81px; height: 99px; } -.Mount_Icon_TigerCub-Thunderstorm { +.Mount_Icon_Snail-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -656px -1200px; width: 81px; height: 99px; } -.Mount_Icon_TigerCub-White { +.Mount_Icon_Snail-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -738px -1200px; width: 81px; height: 99px; } -.Mount_Icon_TigerCub-Zombie { +.Mount_Icon_Snail-Desert { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -820px -1200px; width: 81px; height: 99px; } -.Mount_Icon_Treeling-Base { +.Mount_Icon_Snail-Golden { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -902px -1200px; width: 81px; height: 99px; } -.Mount_Icon_Treeling-CottonCandyBlue { +.Mount_Icon_Snail-Red { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -984px -1200px; width: 81px; height: 99px; } -.Mount_Icon_Treeling-CottonCandyPink { +.Mount_Icon_Snail-Shade { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1066px -1200px; width: 81px; height: 99px; } -.Mount_Icon_Treeling-Desert { +.Mount_Icon_Snail-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1148px -1200px; width: 81px; height: 99px; } -.Mount_Icon_Treeling-Golden { +.Mount_Icon_Snail-White { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1230px -1200px; width: 81px; height: 99px; } -.Mount_Icon_Treeling-Red { +.Mount_Icon_Snail-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1312px 0px; width: 81px; height: 99px; } -.Mount_Icon_Treeling-Shade { +.Mount_Icon_Snake-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1312px -100px; width: 81px; height: 99px; } -.Mount_Icon_Treeling-Skeleton { +.Mount_Icon_Snake-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1312px -200px; width: 81px; height: 99px; } -.Mount_Icon_Treeling-White { +.Mount_Icon_Snake-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1312px -300px; width: 81px; height: 99px; } -.Mount_Icon_Treeling-Zombie { +.Mount_Icon_Snake-Desert { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1312px -400px; width: 81px; height: 99px; } -.Mount_Icon_Triceratops-Base { +.Mount_Icon_Snake-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1312px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Snake-Red { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1312px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_Snake-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1312px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_Snake-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1312px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_Snake-White { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1312px -900px; + width: 81px; + height: 99px; +} +.Mount_Icon_Snake-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1312px -1000px; + width: 81px; + height: 99px; +} +.Mount_Icon_Spider-Base { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1312px -1100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Spider-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1312px -1200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Spider-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1394px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Spider-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1394px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Spider-Golden { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1394px -200px; width: 81px; height: 99px; } -.Mount_Icon_Triceratops-CottonCandyBlue { +.Mount_Icon_Spider-Red { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1394px -300px; width: 81px; height: 99px; } -.Mount_Icon_Triceratops-CottonCandyPink { +.Mount_Icon_Spider-Shade { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1394px -400px; width: 81px; height: 99px; } -.Mount_Icon_Triceratops-Desert { +.Mount_Icon_Spider-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1394px -500px; width: 81px; height: 99px; } -.Mount_Icon_Triceratops-Golden { +.Mount_Icon_Spider-White { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1394px -600px; width: 81px; height: 99px; } -.Mount_Icon_Triceratops-Red { +.Mount_Icon_Spider-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1394px -700px; width: 81px; height: 99px; } -.Mount_Icon_Triceratops-Shade { +.Mount_Icon_Squirrel-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1394px -800px; width: 81px; height: 99px; } -.Mount_Icon_Triceratops-Skeleton { +.Mount_Icon_Squirrel-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1394px -900px; width: 81px; height: 99px; } -.Mount_Icon_Triceratops-White { +.Mount_Icon_Squirrel-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1394px -1000px; width: 81px; height: 99px; } -.Mount_Icon_Triceratops-Zombie { +.Mount_Icon_Squirrel-Desert { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1394px -1100px; width: 81px; height: 99px; } -.Mount_Icon_Turkey-Base { +.Mount_Icon_Squirrel-Golden { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1394px -1200px; width: 81px; height: 99px; } -.Mount_Icon_Turkey-Gilded { +.Mount_Icon_Squirrel-Red { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: 0px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Turtle-Base { +.Mount_Icon_Squirrel-Shade { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -82px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Turtle-CottonCandyBlue { +.Mount_Icon_Squirrel-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -164px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Turtle-CottonCandyPink { +.Mount_Icon_Squirrel-White { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -246px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Turtle-Desert { +.Mount_Icon_Squirrel-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -328px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Turtle-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -410px -1300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Turtle-Red { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -492px -1300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Turtle-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -574px -1300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Turtle-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -656px -1300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Turtle-White { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -738px -1300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Turtle-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -820px -1300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Unicorn-Base { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -902px -1300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Unicorn-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -984px -1300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Unicorn-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1066px -1300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Unicorn-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1148px -1300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Unicorn-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1230px -1300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Unicorn-Red { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1312px -1300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Unicorn-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1394px -1300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Unicorn-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1476px 0px; - width: 81px; - height: 99px; -} -.Mount_Icon_Unicorn-White { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1476px -100px; - width: 81px; - height: 99px; -} -.Mount_Icon_Unicorn-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1476px -200px; - width: 81px; - height: 99px; -} -.Mount_Icon_Whale-Base { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1640px -1096px; - width: 78px; - height: 86px; -} -.Mount_Icon_Whale-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1640px -1009px; - width: 78px; - height: 86px; -} -.Mount_Icon_Whale-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1640px -922px; - width: 78px; - height: 86px; -} -.Mount_Icon_Whale-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1640px -835px; - width: 78px; - height: 86px; -} -.Mount_Icon_Whale-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1640px -1183px; - width: 78px; - height: 86px; -} -.Mount_Icon_Whale-Red { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1640px -661px; - width: 78px; - height: 86px; -} -.Mount_Icon_Whale-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1640px -574px; - width: 78px; - height: 86px; -} -.Mount_Icon_Whale-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1640px -487px; - width: 78px; - height: 86px; -} -.Mount_Icon_Whale-White { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1640px -748px; - width: 78px; - height: 86px; -} -.Mount_Icon_Whale-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1640px -400px; - width: 78px; - height: 86px; -} -.Mount_Icon_Wolf-Aquatic { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1476px -1300px; - width: 81px; - height: 99px; -} -.Mount_Icon_Wolf-Base { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: 0px -1400px; - width: 81px; - height: 99px; -} -.Mount_Icon_Wolf-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -82px -1400px; - width: 81px; - height: 99px; -} -.Mount_Icon_Wolf-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -164px -1400px; - width: 81px; - height: 99px; -} -.Mount_Icon_Wolf-Cupid { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -246px -1400px; - width: 81px; - height: 99px; -} -.Mount_Icon_Wolf-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -328px -1400px; - width: 81px; - height: 99px; -} -.Mount_Icon_Wolf-Ember { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -410px -1400px; - width: 81px; - height: 99px; -} -.Mount_Icon_Wolf-Fairy { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -492px -1400px; - width: 81px; - height: 99px; -} -.Mount_Icon_Wolf-Floral { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -574px -1400px; - width: 81px; - height: 99px; -} -.Mount_Icon_Wolf-Ghost { +.Mount_Icon_TRex-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -656px -1400px; width: 81px; height: 99px; } -.Mount_Icon_Wolf-Golden { +.Mount_Icon_TRex-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -738px -1400px; width: 81px; height: 99px; } -.Mount_Icon_Wolf-Holly { +.Mount_Icon_TRex-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -820px -1400px; width: 81px; height: 99px; } -.Mount_Icon_Wolf-Peppermint { +.Mount_Icon_TRex-Desert { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -902px -1400px; width: 81px; height: 99px; } -.Mount_Icon_Wolf-Rainbow { +.Mount_Icon_TRex-Golden { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -984px -1400px; width: 81px; height: 99px; } -.Mount_Icon_Wolf-Red { +.Mount_Icon_TRex-Red { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1066px -1400px; width: 81px; height: 99px; } -.Mount_Icon_Wolf-RoyalPurple { +.Mount_Icon_TRex-Shade { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1148px -1400px; width: 81px; height: 99px; } -.Mount_Icon_Wolf-Shade { +.Mount_Icon_TRex-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1230px -1400px; width: 81px; height: 99px; } -.Mount_Icon_Wolf-Shimmer { +.Mount_Icon_TRex-White { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1312px -1400px; width: 81px; height: 99px; } -.Mount_Icon_Wolf-Skeleton { +.Mount_Icon_TRex-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1394px -1400px; width: 81px; height: 99px; } -.Mount_Icon_Wolf-Spooky { +.Mount_Icon_TigerCub-Aquatic { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1476px -1400px; + background-position: -410px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Wolf-StarryNight { +.Mount_Icon_TigerCub-Base { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1558px 0px; + background-position: -492px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Wolf-Thunderstorm { +.Mount_Icon_TigerCub-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1558px -100px; + background-position: -574px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Wolf-White { +.Mount_Icon_TigerCub-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1558px -200px; + background-position: -656px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Wolf-Zombie { +.Mount_Icon_TigerCub-Cupid { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1558px -300px; + background-position: -738px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Yarn-Base { +.Mount_Icon_TigerCub-Desert { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1558px -400px; + background-position: -820px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Yarn-CottonCandyBlue { +.Mount_Icon_TigerCub-Ember { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1558px -500px; + background-position: -902px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Yarn-CottonCandyPink { +.Mount_Icon_TigerCub-Fairy { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1558px -600px; + background-position: -984px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Yarn-Desert { +.Mount_Icon_TigerCub-Floral { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1558px -700px; + background-position: -1066px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Yarn-Golden { +.Mount_Icon_TigerCub-Ghost { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1558px -800px; + background-position: -1148px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Yarn-Red { +.Mount_Icon_TigerCub-Glass { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1558px -900px; + background-position: -1230px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Yarn-Shade { +.Mount_Icon_TigerCub-Golden { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1558px -1000px; + background-position: -1312px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Yarn-Skeleton { +.Mount_Icon_TigerCub-Holly { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1558px -1100px; + background-position: -1394px -1300px; width: 81px; height: 99px; } -.Mount_Icon_Yarn-White { +.Mount_Icon_TigerCub-Peppermint { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1558px -1200px; + background-position: -1476px 0px; width: 81px; height: 99px; } -.Mount_Icon_Yarn-Zombie { +.Mount_Icon_TigerCub-Rainbow { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1558px -1300px; + background-position: -1476px -100px; width: 81px; height: 99px; } -.Pet-Armadillo-Base { +.Mount_Icon_TigerCub-Red { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1558px -1400px; + background-position: -1476px -200px; width: 81px; height: 99px; } -.Pet-Armadillo-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: 0px -1500px; - width: 81px; - height: 99px; -} -.Pet-Armadillo-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -82px -1500px; - width: 81px; - height: 99px; -} -.Pet-Armadillo-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -164px -1500px; - width: 81px; - height: 99px; -} -.Pet-Armadillo-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -246px -1500px; - width: 81px; - height: 99px; -} -.Pet-Armadillo-Red { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -328px -1500px; - width: 81px; - height: 99px; -} -.Pet-Armadillo-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -410px -1500px; - width: 81px; - height: 99px; -} -.Pet-Armadillo-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -492px -1500px; - width: 81px; - height: 99px; -} -.Pet-Armadillo-White { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -574px -1500px; - width: 81px; - height: 99px; -} -.Pet-Armadillo-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -656px -1500px; - width: 81px; - height: 99px; -} -.Pet-Axolotl-Base { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -738px -1500px; - width: 81px; - height: 99px; -} -.Pet-Axolotl-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -820px -1500px; - width: 81px; - height: 99px; -} -.Pet-Axolotl-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -902px -1500px; - width: 81px; - height: 99px; -} -.Pet-Axolotl-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -984px -1500px; - width: 81px; - height: 99px; -} -.Pet-Axolotl-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1066px -1500px; - width: 81px; - height: 99px; -} -.Pet-Axolotl-Red { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1148px -1500px; - width: 81px; - height: 99px; -} -.Pet-Axolotl-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1230px -1500px; - width: 81px; - height: 99px; -} -.Pet-Axolotl-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1312px -1500px; - width: 81px; - height: 99px; -} -.Pet-Axolotl-White { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1394px -1500px; - width: 81px; - height: 99px; -} -.Pet-Axolotl-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1476px -1500px; - width: 81px; - height: 99px; -} -.Pet-Badger-Base { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1558px -1500px; - width: 81px; - height: 99px; -} -.Pet-Badger-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1640px 0px; - width: 81px; - height: 99px; -} -.Pet-Badger-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1640px -100px; - width: 81px; - height: 99px; -} -.Pet-Badger-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1640px -200px; - width: 81px; - height: 99px; -} -.Pet-Badger-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1476px -1200px; - width: 81px; - height: 99px; -} -.Pet-Badger-Red { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1476px -1100px; - width: 81px; - height: 99px; -} -.Pet-Badger-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1476px -1000px; - width: 81px; - height: 99px; -} -.Pet-Badger-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1476px -900px; - width: 81px; - height: 99px; -} -.Pet-Badger-White { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1476px -800px; - width: 81px; - height: 99px; -} -.Pet-Badger-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1476px -700px; - width: 81px; - height: 99px; -} -.Pet-Bear-Veteran { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1476px -600px; - width: 81px; - height: 99px; -} -.Pet-BearCub-Aquatic { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1476px -500px; - width: 81px; - height: 99px; -} -.Pet-BearCub-Base { - background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1476px -400px; - width: 81px; - height: 99px; -} -.Pet-BearCub-CottonCandyBlue { +.Mount_Icon_TigerCub-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); background-position: -1476px -300px; width: 81px; height: 99px; } -.Pet-BearCub-CottonCandyPink { +.Mount_Icon_TigerCub-Shade { background-image: url('~assets/images/sprites/spritesmith-main-19.png'); - background-position: -1640px -300px; + background-position: -1476px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_TigerCub-Shimmer { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1476px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_TigerCub-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1476px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_TigerCub-Spooky { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1476px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_TigerCub-StarryNight { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1476px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_TigerCub-Thunderstorm { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1476px -900px; + width: 81px; + height: 99px; +} +.Mount_Icon_TigerCub-White { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1476px -1000px; + width: 81px; + height: 99px; +} +.Mount_Icon_TigerCub-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1476px -1100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Treeling-Base { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1476px -1200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Treeling-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1476px -1300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Treeling-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: 0px -1400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Treeling-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -82px -1400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Treeling-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -164px -1400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Treeling-Red { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -246px -1400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Treeling-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -328px -1400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Treeling-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -410px -1400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Treeling-White { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -492px -1400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Treeling-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -574px -1400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Triceratops-Base { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1476px -1400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Triceratops-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1558px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Triceratops-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1558px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Triceratops-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1558px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Triceratops-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1558px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Triceratops-Red { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1558px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Triceratops-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1558px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Triceratops-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1558px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_Triceratops-White { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1558px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_Triceratops-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1558px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_Turkey-Base { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1558px -900px; + width: 81px; + height: 99px; +} +.Mount_Icon_Turkey-Gilded { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1558px -1000px; + width: 81px; + height: 99px; +} +.Mount_Icon_Turtle-Base { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1558px -1100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Turtle-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1558px -1200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Turtle-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1558px -1300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Turtle-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1558px -1400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Turtle-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: 0px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Turtle-Red { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -82px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Turtle-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -164px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Turtle-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -246px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Turtle-White { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -328px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Turtle-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -410px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Unicorn-Base { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -492px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Unicorn-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -574px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Unicorn-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -656px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Unicorn-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -738px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Unicorn-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -820px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Unicorn-Red { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -902px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Unicorn-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -984px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Unicorn-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1066px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Unicorn-White { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1148px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Unicorn-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1230px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Whale-Base { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1640px -896px; + width: 78px; + height: 86px; +} +.Mount_Icon_Whale-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1640px -809px; + width: 78px; + height: 86px; +} +.Mount_Icon_Whale-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1640px -722px; + width: 78px; + height: 86px; +} +.Mount_Icon_Whale-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1640px -1157px; + width: 78px; + height: 86px; +} +.Mount_Icon_Whale-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1640px -548px; + width: 78px; + height: 86px; +} +.Mount_Icon_Whale-Red { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1640px -200px; + width: 78px; + height: 86px; +} +.Mount_Icon_Whale-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1640px -635px; + width: 78px; + height: 86px; +} +.Mount_Icon_Whale-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1640px -287px; + width: 78px; + height: 86px; +} +.Mount_Icon_Whale-White { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1640px -374px; + width: 78px; + height: 86px; +} +.Mount_Icon_Whale-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1640px -461px; + width: 78px; + height: 86px; +} +.Mount_Icon_Wolf-Aquatic { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1640px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-Base { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1558px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1476px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1394px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-Cupid { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1312px -1500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -164px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-Ember { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -164px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-Fairy { + background-image: url('~assets/images/sprites/spritesmith-main-19.png'); + background-position: -1640px -100px; width: 81px; height: 99px; } diff --git a/website/client/assets/css/sprites/spritesmith-main-2.css b/website/client/assets/css/sprites/spritesmith-main-2.css index 64aac4d214..d0eaab8882 100644 --- a/website/client/assets/css/sprites/spritesmith-main-2.css +++ b/website/client/assets/css/sprites/spritesmith-main-2.css @@ -1,3936 +1,3900 @@ -.hair_flower_13 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: 0px 0px; - width: 114px; - height: 90px; -} -.customize-option.hair_flower_13 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -25px -15px; - width: 60px; - height: 60px; -} -.hair_flower_14 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: 0px -182px; - width: 114px; - height: 90px; -} -.customize-option.hair_flower_14 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -25px -197px; - width: 60px; - height: 60px; -} -.hair_flower_15 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -115px 0px; - width: 114px; - height: 90px; -} -.customize-option.hair_flower_15 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -140px -15px; - width: 60px; - height: 60px; -} -.hair_flower_16 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: 0px -91px; - width: 114px; - height: 90px; -} -.customize-option.hair_flower_16 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -25px -106px; - width: 60px; - height: 60px; -} -.hair_flower_2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -345px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_flower_2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -370px -106px; - width: 60px; - height: 60px; -} -.hair_flower_3 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -345px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_flower_3 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -370px -197px; - width: 60px; - height: 60px; -} -.hair_flower_4 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -728px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_flower_4 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -753px -1107px; - width: 60px; - height: 60px; -} -.hair_flower_5 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -115px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_flower_5 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -140px -197px; - width: 60px; - height: 60px; -} -.hair_flower_6 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -206px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_flower_6 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -231px -197px; - width: 60px; - height: 60px; -} -.hair_flower_7 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -115px -91px; - width: 114px; - height: 90px; -} -.customize-option.hair_flower_7 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -140px -106px; - width: 60px; - height: 60px; -} -.hair_flower_8 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -230px 0px; - width: 114px; - height: 90px; -} -.customize-option.hair_flower_8 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -255px -15px; - width: 60px; - height: 60px; -} -.hair_flower_9 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -230px -91px; - width: 114px; - height: 90px; -} -.customize-option.hair_flower_9 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -255px -106px; - width: 60px; - height: 60px; -} -.hair_bangs_1_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -273px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -298px -561px; - width: 60px; - height: 60px; -} -.hair_bangs_1_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: 0px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -25px -288px; - width: 60px; - height: 60px; -} -.hair_bangs_1_black { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -91px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_black { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -116px -288px; - width: 60px; - height: 60px; -} -.hair_bangs_1_blond { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -182px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_blond { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -207px -288px; - width: 60px; - height: 60px; -} -.hair_bangs_1_blue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -273px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_blue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -298px -288px; - width: 60px; - height: 60px; -} -.hair_bangs_1_brown { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -436px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_brown { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -461px -15px; - width: 60px; - height: 60px; -} -.hair_bangs_1_candycane { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -436px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_candycane { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -461px -106px; - width: 60px; - height: 60px; -} -.hair_bangs_1_candycorn { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -436px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_candycorn { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -461px -197px; - width: 60px; - height: 60px; -} -.hair_bangs_1_festive { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -436px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_festive { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -461px -288px; - width: 60px; - height: 60px; -} -.hair_bangs_1_frost { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: 0px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_frost { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -25px -379px; - width: 60px; - height: 60px; -} -.hair_bangs_1_ghostwhite { +.chair_green { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); background-position: -91px -364px; width: 90px; height: 90px; } -.customize-option.hair_bangs_1_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -116px -379px; - width: 60px; - height: 60px; -} -.hair_bangs_1_green { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -182px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_green { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -207px -379px; - width: 60px; - height: 60px; -} -.hair_bangs_1_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -273px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -298px -379px; - width: 60px; - height: 60px; -} -.hair_bangs_1_holly { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -364px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_holly { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -389px -379px; - width: 60px; - height: 60px; -} -.hair_bangs_1_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -527px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -552px -15px; - width: 60px; - height: 60px; -} -.hair_bangs_1_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -527px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -552px -106px; - width: 60px; - height: 60px; -} -.hair_bangs_1_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -527px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -552px -197px; - width: 60px; - height: 60px; -} -.hair_bangs_1_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -527px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -552px -288px; - width: 60px; - height: 60px; -} -.hair_bangs_1_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -527px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -552px -379px; - width: 60px; - height: 60px; -} -.hair_bangs_1_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: 0px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -25px -470px; - width: 60px; - height: 60px; -} -.hair_bangs_1_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -91px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -116px -470px; - width: 60px; - height: 60px; -} -.hair_bangs_1_porange { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -182px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_porange { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -207px -470px; - width: 60px; - height: 60px; -} -.hair_bangs_1_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -273px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -298px -470px; - width: 60px; - height: 60px; -} -.hair_bangs_1_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -364px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -389px -470px; - width: 60px; - height: 60px; -} -.hair_bangs_1_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -455px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -480px -470px; - width: 60px; - height: 60px; -} -.hair_bangs_1_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -618px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -643px -15px; - width: 60px; - height: 60px; -} -.hair_bangs_1_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -618px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -643px -106px; - width: 60px; - height: 60px; -} -.hair_bangs_1_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -618px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -643px -197px; - width: 60px; - height: 60px; -} -.hair_bangs_1_purple { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -618px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_purple { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -643px -288px; - width: 60px; - height: 60px; -} -.hair_bangs_1_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -618px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -643px -379px; - width: 60px; - height: 60px; -} -.hair_bangs_1_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -618px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -643px -470px; - width: 60px; - height: 60px; -} -.hair_bangs_1_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: 0px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -25px -561px; - width: 60px; - height: 60px; -} -.hair_bangs_1_red { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -91px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_red { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -116px -561px; - width: 60px; - height: 60px; -} -.hair_bangs_1_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -182px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -207px -561px; - width: 60px; - height: 60px; -} -.hair_bangs_1_white { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -364px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_white { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -389px -561px; - width: 60px; - height: 60px; -} -.hair_bangs_1_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -455px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -480px -561px; - width: 60px; - height: 60px; -} -.hair_bangs_1_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -546px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -571px -561px; - width: 60px; - height: 60px; -} -.hair_bangs_1_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -709px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -734px -15px; - width: 60px; - height: 60px; -} -.hair_bangs_1_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -709px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_1_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -734px -106px; - width: 60px; - height: 60px; -} -.hair_bangs_2_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -891px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -916px -288px; - width: 60px; - height: 60px; -} -.hair_bangs_2_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -709px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -734px -197px; - width: 60px; - height: 60px; -} -.hair_bangs_2_black { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -709px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_black { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -734px -288px; - width: 60px; - height: 60px; -} -.hair_bangs_2_blond { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -709px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_blond { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -734px -379px; - width: 60px; - height: 60px; -} -.hair_bangs_2_blue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -709px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_blue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -734px -470px; - width: 60px; - height: 60px; -} -.hair_bangs_2_brown { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -709px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_brown { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -734px -561px; - width: 60px; - height: 60px; -} -.hair_bangs_2_candycane { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: 0px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_candycane { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -25px -652px; - width: 60px; - height: 60px; -} -.hair_bangs_2_candycorn { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -91px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_candycorn { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -116px -652px; - width: 60px; - height: 60px; -} -.hair_bangs_2_festive { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -182px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_festive { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -207px -652px; - width: 60px; - height: 60px; -} -.hair_bangs_2_frost { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -273px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_frost { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -298px -652px; - width: 60px; - height: 60px; -} -.hair_bangs_2_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -364px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -389px -652px; - width: 60px; - height: 60px; -} -.hair_bangs_2_green { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -455px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_green { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -480px -652px; - width: 60px; - height: 60px; -} -.hair_bangs_2_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -546px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -571px -652px; - width: 60px; - height: 60px; -} -.hair_bangs_2_holly { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -637px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_holly { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -662px -652px; - width: 60px; - height: 60px; -} -.hair_bangs_2_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -800px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -825px -15px; - width: 60px; - height: 60px; -} -.hair_bangs_2_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -800px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -825px -106px; - width: 60px; - height: 60px; -} -.hair_bangs_2_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -800px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -825px -197px; - width: 60px; - height: 60px; -} -.hair_bangs_2_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -800px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -825px -288px; - width: 60px; - height: 60px; -} -.hair_bangs_2_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -800px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -825px -379px; - width: 60px; - height: 60px; -} -.hair_bangs_2_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -800px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -825px -470px; - width: 60px; - height: 60px; -} -.hair_bangs_2_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -800px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -825px -561px; - width: 60px; - height: 60px; -} -.hair_bangs_2_porange { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -800px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_porange { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -825px -652px; - width: 60px; - height: 60px; -} -.hair_bangs_2_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: 0px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -25px -743px; - width: 60px; - height: 60px; -} -.hair_bangs_2_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -91px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -116px -743px; - width: 60px; - height: 60px; -} -.hair_bangs_2_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -182px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -207px -743px; - width: 60px; - height: 60px; -} -.hair_bangs_2_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -273px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -298px -743px; - width: 60px; - height: 60px; -} -.hair_bangs_2_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -364px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -389px -743px; - width: 60px; - height: 60px; -} -.hair_bangs_2_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -455px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -480px -743px; - width: 60px; - height: 60px; -} -.hair_bangs_2_purple { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -546px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_purple { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -571px -743px; - width: 60px; - height: 60px; -} -.hair_bangs_2_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -637px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -662px -743px; - width: 60px; - height: 60px; -} -.hair_bangs_2_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -728px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -753px -743px; - width: 60px; - height: 60px; -} -.hair_bangs_2_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -891px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -916px -15px; - width: 60px; - height: 60px; -} -.hair_bangs_2_red { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -891px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_red { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -916px -106px; - width: 60px; - height: 60px; -} -.hair_bangs_2_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -891px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -916px -197px; - width: 60px; - height: 60px; -} -.hair_bangs_2_white { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -891px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_white { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -916px -379px; - width: 60px; - height: 60px; -} -.hair_bangs_2_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -891px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -916px -470px; - width: 60px; - height: 60px; -} -.hair_bangs_2_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -891px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -916px -561px; - width: 60px; - height: 60px; -} -.hair_bangs_2_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -891px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -916px -652px; - width: 60px; - height: 60px; -} -.hair_bangs_2_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -891px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_2_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -916px -743px; - width: 60px; - height: 60px; -} -.hair_bangs_3_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1073px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1098px -197px; - width: 60px; - height: 60px; -} -.hair_bangs_3_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: 0px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -25px -834px; - width: 60px; - height: 60px; -} -.hair_bangs_3_black { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -91px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_black { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -116px -834px; - width: 60px; - height: 60px; -} -.hair_bangs_3_blond { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -182px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_blond { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -207px -834px; - width: 60px; - height: 60px; -} -.hair_bangs_3_blue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -273px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_blue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -298px -834px; - width: 60px; - height: 60px; -} -.hair_bangs_3_brown { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -364px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_brown { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -389px -834px; - width: 60px; - height: 60px; -} -.hair_bangs_3_candycane { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -455px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_candycane { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -480px -834px; - width: 60px; - height: 60px; -} -.hair_bangs_3_candycorn { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -546px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_candycorn { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -571px -834px; - width: 60px; - height: 60px; -} -.hair_bangs_3_festive { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -637px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_festive { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -662px -834px; - width: 60px; - height: 60px; -} -.hair_bangs_3_frost { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -728px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_frost { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -753px -834px; - width: 60px; - height: 60px; -} -.hair_bangs_3_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -819px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -844px -834px; - width: 60px; - height: 60px; -} -.hair_bangs_3_green { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -982px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_green { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1007px -15px; - width: 60px; - height: 60px; -} -.hair_bangs_3_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -982px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1007px -106px; - width: 60px; - height: 60px; -} -.hair_bangs_3_holly { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -982px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_holly { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1007px -197px; - width: 60px; - height: 60px; -} -.hair_bangs_3_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -982px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1007px -288px; - width: 60px; - height: 60px; -} -.hair_bangs_3_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -982px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1007px -379px; - width: 60px; - height: 60px; -} -.hair_bangs_3_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -982px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1007px -470px; - width: 60px; - height: 60px; -} -.hair_bangs_3_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -982px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1007px -561px; - width: 60px; - height: 60px; -} -.hair_bangs_3_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -982px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1007px -652px; - width: 60px; - height: 60px; -} -.hair_bangs_3_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -982px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1007px -743px; - width: 60px; - height: 60px; -} -.hair_bangs_3_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -982px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1007px -834px; - width: 60px; - height: 60px; -} -.hair_bangs_3_porange { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: 0px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_porange { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -25px -925px; - width: 60px; - height: 60px; -} -.hair_bangs_3_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -91px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -116px -925px; - width: 60px; - height: 60px; -} -.hair_bangs_3_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -182px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -207px -925px; - width: 60px; - height: 60px; -} -.hair_bangs_3_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -273px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -298px -925px; - width: 60px; - height: 60px; -} -.hair_bangs_3_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -364px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -389px -925px; - width: 60px; - height: 60px; -} -.hair_bangs_3_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -455px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -480px -925px; - width: 60px; - height: 60px; -} -.hair_bangs_3_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -546px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -571px -925px; - width: 60px; - height: 60px; -} -.hair_bangs_3_purple { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -637px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_purple { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -662px -925px; - width: 60px; - height: 60px; -} -.hair_bangs_3_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -728px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -753px -925px; - width: 60px; - height: 60px; -} -.hair_bangs_3_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -819px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -844px -925px; - width: 60px; - height: 60px; -} -.hair_bangs_3_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -910px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -935px -925px; - width: 60px; - height: 60px; -} -.hair_bangs_3_red { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1073px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_red { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1098px -15px; - width: 60px; - height: 60px; -} -.hair_bangs_3_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1073px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1098px -106px; - width: 60px; - height: 60px; -} -.hair_bangs_3_white { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1073px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_white { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1098px -288px; - width: 60px; - height: 60px; -} -.hair_bangs_3_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1073px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1098px -379px; - width: 60px; - height: 60px; -} -.hair_bangs_3_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1073px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1098px -470px; - width: 60px; - height: 60px; -} -.hair_bangs_3_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1073px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1098px -561px; - width: 60px; - height: 60px; -} -.hair_bangs_3_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1073px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_3_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1098px -652px; - width: 60px; - height: 60px; -} -.hair_bangs_4_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -546px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -571px -1107px; - width: 60px; - height: 60px; -} -.hair_bangs_4_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1073px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1098px -743px; - width: 60px; - height: 60px; -} -.hair_bangs_4_black { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1073px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_black { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1098px -834px; - width: 60px; - height: 60px; -} -.hair_bangs_4_blond { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1073px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_blond { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1098px -925px; - width: 60px; - height: 60px; -} -.hair_bangs_4_blue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: 0px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_blue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -25px -1016px; - width: 60px; - height: 60px; -} -.hair_bangs_4_brown { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -91px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_brown { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -116px -1016px; - width: 60px; - height: 60px; -} -.hair_bangs_4_candycane { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -182px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_candycane { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -207px -1016px; - width: 60px; - height: 60px; -} -.hair_bangs_4_candycorn { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -273px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_candycorn { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -298px -1016px; - width: 60px; - height: 60px; -} -.hair_bangs_4_festive { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -364px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_festive { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -389px -1016px; - width: 60px; - height: 60px; -} -.hair_bangs_4_frost { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -455px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_frost { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -480px -1016px; - width: 60px; - height: 60px; -} -.hair_bangs_4_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -546px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -571px -1016px; - width: 60px; - height: 60px; -} -.hair_bangs_4_green { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -637px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_green { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -662px -1016px; - width: 60px; - height: 60px; -} -.hair_bangs_4_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -728px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -753px -1016px; - width: 60px; - height: 60px; -} -.hair_bangs_4_holly { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -819px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_holly { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -844px -1016px; - width: 60px; - height: 60px; -} -.hair_bangs_4_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -910px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -935px -1016px; - width: 60px; - height: 60px; -} -.hair_bangs_4_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1001px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1026px -1016px; - width: 60px; - height: 60px; -} -.hair_bangs_4_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1164px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1189px -15px; - width: 60px; - height: 60px; -} -.hair_bangs_4_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1164px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1189px -106px; - width: 60px; - height: 60px; -} -.hair_bangs_4_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1164px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1189px -197px; - width: 60px; - height: 60px; -} -.hair_bangs_4_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1164px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1189px -288px; - width: 60px; - height: 60px; -} -.hair_bangs_4_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1164px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1189px -379px; - width: 60px; - height: 60px; -} -.hair_bangs_4_porange { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1164px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_porange { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1189px -470px; - width: 60px; - height: 60px; -} -.hair_bangs_4_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1164px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1189px -561px; - width: 60px; - height: 60px; -} -.hair_bangs_4_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1164px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1189px -652px; - width: 60px; - height: 60px; -} -.hair_bangs_4_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1164px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1189px -743px; - width: 60px; - height: 60px; -} -.hair_bangs_4_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1164px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1189px -834px; - width: 60px; - height: 60px; -} -.hair_bangs_4_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1164px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1189px -925px; - width: 60px; - height: 60px; -} -.hair_bangs_4_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1164px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1189px -1016px; - width: 60px; - height: 60px; -} -.hair_bangs_4_purple { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: 0px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_purple { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -25px -1107px; - width: 60px; - height: 60px; -} -.hair_bangs_4_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -91px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -116px -1107px; - width: 60px; - height: 60px; -} -.hair_bangs_4_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -182px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -207px -1107px; - width: 60px; - height: 60px; -} -.hair_bangs_4_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -273px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -298px -1107px; - width: 60px; - height: 60px; -} -.hair_bangs_4_red { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -364px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_red { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -389px -1107px; - width: 60px; - height: 60px; -} -.hair_bangs_4_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -455px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -480px -1107px; - width: 60px; - height: 60px; -} -.hair_bangs_4_white { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -637px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_white { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -662px -1107px; - width: 60px; - height: 60px; -} -.hair_bangs_4_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1710px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1735px -288px; - width: 60px; - height: 60px; -} -.hair_bangs_4_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -819px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -844px -1107px; - width: 60px; - height: 60px; -} -.hair_bangs_4_yellow { +.chair_pink { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); background-position: -910px -1092px; width: 90px; height: 90px; } -.customize-option.hair_bangs_4_yellow { +.chair_red { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -935px -1107px; - width: 60px; - height: 60px; -} -.hair_bangs_4_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1001px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_bangs_4_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1026px -1107px; - width: 60px; - height: 60px; -} -.hair_base_10_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: 0px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -25px -1380px; - width: 60px; - height: 60px; -} -.hair_base_10_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1346px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1371px -1016px; - width: 60px; - height: 60px; -} -.hair_base_10_black { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1346px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_black { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1371px -1107px; - width: 60px; - height: 60px; -} -.hair_base_10_blond { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1346px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_blond { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1371px -1198px; - width: 60px; - height: 60px; -} -.hair_base_10_blue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: 0px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_blue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -25px -1289px; - width: 60px; - height: 60px; -} -.hair_base_10_brown { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -91px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_brown { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -116px -1289px; - width: 60px; - height: 60px; -} -.hair_base_10_candycane { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -182px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_candycane { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -207px -1289px; - width: 60px; - height: 60px; -} -.hair_base_10_candycorn { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -273px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_candycorn { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -298px -1289px; - width: 60px; - height: 60px; -} -.hair_base_10_festive { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -364px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_festive { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -389px -1289px; - width: 60px; - height: 60px; -} -.hair_base_10_frost { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -455px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_frost { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -480px -1289px; - width: 60px; - height: 60px; -} -.hair_base_10_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -546px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -571px -1289px; - width: 60px; - height: 60px; -} -.hair_base_10_green { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -637px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_green { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -662px -1289px; - width: 60px; - height: 60px; -} -.hair_base_10_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -728px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -753px -1289px; - width: 60px; - height: 60px; -} -.hair_base_10_holly { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -819px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_holly { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -844px -1289px; - width: 60px; - height: 60px; -} -.hair_base_10_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -910px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -935px -1289px; - width: 60px; - height: 60px; -} -.hair_base_10_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1001px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1026px -1289px; - width: 60px; - height: 60px; -} -.hair_base_10_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1092px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1117px -1289px; - width: 60px; - height: 60px; -} -.hair_base_10_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1183px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1208px -1289px; - width: 60px; - height: 60px; -} -.hair_base_10_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1274px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1299px -1289px; - width: 60px; - height: 60px; -} -.hair_base_10_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1437px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1462px -15px; - width: 60px; - height: 60px; -} -.hair_base_10_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1437px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1462px -106px; - width: 60px; - height: 60px; -} -.hair_base_10_porange { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1437px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_porange { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1462px -197px; - width: 60px; - height: 60px; -} -.hair_base_10_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1437px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1462px -288px; - width: 60px; - height: 60px; -} -.hair_base_10_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1437px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1462px -379px; - width: 60px; - height: 60px; -} -.hair_base_10_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1437px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1462px -470px; - width: 60px; - height: 60px; -} -.hair_base_10_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1437px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1462px -561px; - width: 60px; - height: 60px; -} -.hair_base_10_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1437px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1462px -652px; - width: 60px; - height: 60px; -} -.hair_base_10_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1437px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1462px -743px; - width: 60px; - height: 60px; -} -.hair_base_10_purple { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1437px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_purple { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1462px -834px; - width: 60px; - height: 60px; -} -.hair_base_10_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1437px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1462px -925px; - width: 60px; - height: 60px; -} -.hair_base_10_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1437px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1462px -1016px; - width: 60px; - height: 60px; -} -.hair_base_10_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1437px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1462px -1107px; - width: 60px; - height: 60px; -} -.hair_base_10_red { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1437px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_red { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1462px -1198px; - width: 60px; - height: 60px; -} -.hair_base_10_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1437px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1462px -1289px; - width: 60px; - height: 60px; -} -.hair_base_10_white { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -91px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_white { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -116px -1380px; - width: 60px; - height: 60px; -} -.hair_base_10_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -182px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -207px -1380px; - width: 60px; - height: 60px; -} -.hair_base_10_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -273px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -298px -1380px; - width: 60px; - height: 60px; -} -.hair_base_10_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -364px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -389px -1380px; - width: 60px; - height: 60px; -} -.hair_base_10_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -455px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_10_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -480px -1380px; - width: 60px; - height: 60px; -} -.hair_base_11_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -637px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -662px -1471px; - width: 60px; - height: 60px; -} -.hair_base_11_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -546px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -571px -1380px; - width: 60px; - height: 60px; -} -.hair_base_11_black { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -637px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_black { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -662px -1380px; - width: 60px; - height: 60px; -} -.hair_base_11_blond { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -728px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_blond { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -753px -1380px; - width: 60px; - height: 60px; -} -.hair_base_11_blue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -819px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_blue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -844px -1380px; - width: 60px; - height: 60px; -} -.hair_base_11_brown { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -910px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_brown { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -935px -1380px; - width: 60px; - height: 60px; -} -.hair_base_11_candycane { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1001px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_candycane { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1026px -1380px; - width: 60px; - height: 60px; -} -.hair_base_11_candycorn { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1092px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_candycorn { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1117px -1380px; - width: 60px; - height: 60px; -} -.hair_base_11_festive { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1183px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_festive { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1208px -1380px; - width: 60px; - height: 60px; -} -.hair_base_11_frost { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1274px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_frost { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1299px -1380px; - width: 60px; - height: 60px; -} -.hair_base_11_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1365px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1390px -1380px; - width: 60px; - height: 60px; -} -.hair_base_11_green { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1528px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_green { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1553px -15px; - width: 60px; - height: 60px; -} -.hair_base_11_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1528px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1553px -106px; - width: 60px; - height: 60px; -} -.hair_base_11_holly { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1528px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_holly { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1553px -197px; - width: 60px; - height: 60px; -} -.hair_base_11_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1528px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1553px -288px; - width: 60px; - height: 60px; -} -.hair_base_11_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1528px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1553px -379px; - width: 60px; - height: 60px; -} -.hair_base_11_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1528px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1553px -470px; - width: 60px; - height: 60px; -} -.hair_base_11_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1528px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1553px -561px; - width: 60px; - height: 60px; -} -.hair_base_11_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1528px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1553px -652px; - width: 60px; - height: 60px; -} -.hair_base_11_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1528px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1553px -743px; - width: 60px; - height: 60px; -} -.hair_base_11_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1528px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1553px -834px; - width: 60px; - height: 60px; -} -.hair_base_11_porange { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1528px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_porange { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1553px -925px; - width: 60px; - height: 60px; -} -.hair_base_11_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1528px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1553px -1016px; - width: 60px; - height: 60px; -} -.hair_base_11_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1528px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1553px -1107px; - width: 60px; - height: 60px; -} -.hair_base_11_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1528px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1553px -1198px; - width: 60px; - height: 60px; -} -.hair_base_11_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1528px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1553px -1289px; - width: 60px; - height: 60px; -} -.hair_base_11_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1528px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1553px -1380px; - width: 60px; - height: 60px; -} -.hair_base_11_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: 0px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -25px -1471px; - width: 60px; - height: 60px; -} -.hair_base_11_purple { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -91px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_purple { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -116px -1471px; - width: 60px; - height: 60px; -} -.hair_base_11_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -182px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -207px -1471px; - width: 60px; - height: 60px; -} -.hair_base_11_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -273px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -298px -1471px; - width: 60px; - height: 60px; -} -.hair_base_11_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -364px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -389px -1471px; - width: 60px; - height: 60px; -} -.hair_base_11_red { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -455px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_red { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -480px -1471px; - width: 60px; - height: 60px; -} -.hair_base_11_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -546px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -571px -1471px; - width: 60px; - height: 60px; -} -.hair_base_11_white { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -728px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_white { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -753px -1471px; - width: 60px; - height: 60px; -} -.hair_base_11_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -819px -1456px; + background-position: -182px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_11_winternight { +.chair_yellow { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -844px -1471px; - width: 60px; - height: 60px; -} -.hair_base_11_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -910px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -935px -1471px; - width: 60px; - height: 60px; -} -.hair_base_11_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1001px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1026px -1471px; - width: 60px; - height: 60px; -} -.hair_base_11_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1092px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_11_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1117px -1471px; - width: 60px; - height: 60px; -} -.hair_base_12_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1092px -1547px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1117px -1562px; - width: 60px; - height: 60px; -} -.hair_base_12_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1183px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1208px -1471px; - width: 60px; - height: 60px; -} -.hair_base_12_black { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1274px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_black { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1299px -1471px; - width: 60px; - height: 60px; -} -.hair_base_12_blond { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1365px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_blond { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1390px -1471px; - width: 60px; - height: 60px; -} -.hair_base_12_blue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1456px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_blue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1481px -1471px; - width: 60px; - height: 60px; -} -.hair_base_12_brown { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1619px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_brown { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1644px -15px; - width: 60px; - height: 60px; -} -.hair_base_12_candycane { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1619px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_candycane { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1644px -106px; - width: 60px; - height: 60px; -} -.hair_base_12_candycorn { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1619px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_candycorn { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1644px -197px; - width: 60px; - height: 60px; -} -.hair_base_12_festive { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1619px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_festive { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1644px -288px; - width: 60px; - height: 60px; -} -.hair_base_12_frost { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1619px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_frost { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1644px -379px; - width: 60px; - height: 60px; -} -.hair_base_12_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1619px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1644px -470px; - width: 60px; - height: 60px; -} -.hair_base_12_green { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1619px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_green { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1644px -561px; - width: 60px; - height: 60px; -} -.hair_base_12_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1619px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1644px -652px; - width: 60px; - height: 60px; -} -.hair_base_12_holly { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1619px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_holly { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1644px -743px; - width: 60px; - height: 60px; -} -.hair_base_12_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1619px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1644px -834px; - width: 60px; - height: 60px; -} -.hair_base_12_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1619px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1644px -925px; - width: 60px; - height: 60px; -} -.hair_base_12_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1619px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1644px -1016px; - width: 60px; - height: 60px; -} -.hair_base_12_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1619px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1644px -1107px; - width: 60px; - height: 60px; -} -.hair_base_12_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1619px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1644px -1198px; - width: 60px; - height: 60px; -} -.hair_base_12_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1619px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1644px -1289px; - width: 60px; - height: 60px; -} -.hair_base_12_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1619px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1644px -1380px; - width: 60px; - height: 60px; -} -.hair_base_12_porange { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1619px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_porange { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1644px -1471px; - width: 60px; - height: 60px; -} -.hair_base_12_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: 0px -1547px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -25px -1562px; - width: 60px; - height: 60px; -} -.hair_base_12_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -91px -1547px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -116px -1562px; - width: 60px; - height: 60px; -} -.hair_base_12_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -182px -1547px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -207px -1562px; - width: 60px; - height: 60px; -} -.hair_base_12_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -273px -1547px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -298px -1562px; - width: 60px; - height: 60px; -} -.hair_base_12_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -364px -1547px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_12_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -389px -1562px; - width: 60px; - height: 60px; -} -.hair_base_12_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -455px -1547px; + background-position: -345px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_12_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -480px -1562px; - width: 60px; - height: 60px; -} -.hair_base_12_purple { +.hair_flower_1 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -546px -1547px; + background-position: 0px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_12_purple { +.customize-option.hair_flower_1 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -571px -1562px; + background-position: -25px -379px; width: 60px; height: 60px; } -.hair_base_12_pyellow { +.hair_flower_10 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -637px -1547px; - width: 90px; + background-position: -230px -91px; + width: 114px; height: 90px; } -.customize-option.hair_base_12_pyellow { +.customize-option.hair_flower_10 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -662px -1562px; + background-position: -255px -106px; width: 60px; height: 60px; } -.hair_base_12_pyellow2 { +.hair_flower_11 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -728px -1547px; - width: 90px; + background-position: 0px -91px; + width: 114px; height: 90px; } -.customize-option.hair_base_12_pyellow2 { +.customize-option.hair_flower_11 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -753px -1562px; + background-position: -25px -106px; width: 60px; height: 60px; } -.hair_base_12_rainbow { +.hair_flower_12 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -819px -1547px; - width: 90px; + background-position: -115px -91px; + width: 114px; height: 90px; } -.customize-option.hair_base_12_rainbow { +.customize-option.hair_flower_12 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -844px -1562px; + background-position: -140px -106px; width: 60px; height: 60px; } -.hair_base_12_red { +.hair_flower_13 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -910px -1547px; - width: 90px; + background-position: -230px 0px; + width: 114px; height: 90px; } -.customize-option.hair_base_12_red { +.customize-option.hair_flower_13 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -935px -1562px; + background-position: -255px -15px; width: 60px; height: 60px; } -.hair_base_12_snowy { +.hair_flower_14 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1001px -1547px; - width: 90px; + background-position: 0px 0px; + width: 114px; height: 90px; } -.customize-option.hair_base_12_snowy { +.customize-option.hair_flower_14 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1026px -1562px; + background-position: -25px -15px; width: 60px; height: 60px; } -.hair_base_12_white { +.hair_flower_15 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1183px -1547px; - width: 90px; + background-position: 0px -182px; + width: 114px; height: 90px; } -.customize-option.hair_base_12_white { +.customize-option.hair_flower_15 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1208px -1562px; + background-position: -25px -197px; width: 60px; height: 60px; } -.hair_base_12_winternight { +.hair_flower_16 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1274px -1547px; - width: 90px; + background-position: -115px -182px; + width: 114px; height: 90px; } -.customize-option.hair_base_12_winternight { +.customize-option.hair_flower_16 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1299px -1562px; + background-position: -140px -197px; width: 60px; height: 60px; } -.hair_base_12_winterstar { +.hair_flower_2 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1365px -1547px; + background-position: 0px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_12_winterstar { +.customize-option.hair_flower_2 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1390px -1562px; + background-position: -25px -288px; width: 60px; height: 60px; } -.hair_base_12_yellow { +.hair_flower_3 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1456px -1547px; + background-position: -91px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_12_yellow { +.customize-option.hair_flower_3 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1481px -1562px; + background-position: -116px -288px; width: 60px; height: 60px; } -.hair_base_12_zombie { +.hair_flower_4 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1547px -1547px; + background-position: -182px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_12_zombie { +.customize-option.hair_flower_4 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1572px -1562px; + background-position: -207px -288px; width: 60px; height: 60px; } -.hair_base_13_aurora { +.hair_flower_5 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1710px 0px; + background-position: -273px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_13_aurora { +.customize-option.hair_flower_5 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1735px -15px; + background-position: -298px -288px; width: 60px; height: 60px; } -.hair_base_13_black { +.hair_flower_6 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1710px -91px; + background-position: -364px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_13_black { +.customize-option.hair_flower_6 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1735px -106px; + background-position: -389px -288px; width: 60px; height: 60px; } -.hair_base_13_blond { +.hair_flower_7 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1710px -182px; - width: 90px; + background-position: -230px -182px; + width: 114px; height: 90px; } -.customize-option.hair_base_13_blond { +.customize-option.hair_flower_7 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1735px -197px; + background-position: -255px -197px; width: 60px; height: 60px; } -.hair_base_13_blue { +.hair_flower_8 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); background-position: -345px 0px; - width: 90px; + width: 114px; height: 90px; } -.customize-option.hair_base_13_blue { +.customize-option.hair_flower_8 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); background-position: -370px -15px; width: 60px; height: 60px; } -.hair_base_1_TRUred { +.hair_flower_9 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1346px -455px; - width: 90px; + background-position: -115px 0px; + width: 114px; height: 90px; } -.customize-option.hair_base_1_TRUred { +.customize-option.hair_flower_9 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1371px -470px; + background-position: -140px -15px; width: 60px; height: 60px; } -.hair_base_1_aurora { +.hair_bangs_1_TRUred { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: 0px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_TRUred { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -25px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_1_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -273px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -298px -379px; + width: 60px; + height: 60px; +} +.hair_bangs_1_black { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -364px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_black { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -389px -379px; + width: 60px; + height: 60px; +} +.hair_bangs_1_blond { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -460px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_blond { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -485px -15px; + width: 60px; + height: 60px; +} +.hair_bangs_1_blue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -460px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_blue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -485px -106px; + width: 60px; + height: 60px; +} +.hair_bangs_1_brown { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -460px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_brown { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -485px -197px; + width: 60px; + height: 60px; +} +.hair_bangs_1_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -460px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -485px -288px; + width: 60px; + height: 60px; +} +.hair_bangs_1_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -460px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -485px -379px; + width: 60px; + height: 60px; +} +.hair_bangs_1_festive { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: 0px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_festive { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -25px -470px; + width: 60px; + height: 60px; +} +.hair_bangs_1_frost { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -91px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_frost { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -116px -470px; + width: 60px; + height: 60px; +} +.hair_bangs_1_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -182px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -207px -470px; + width: 60px; + height: 60px; +} +.hair_bangs_1_green { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -273px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_green { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -298px -470px; + width: 60px; + height: 60px; +} +.hair_bangs_1_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -364px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -389px -470px; + width: 60px; + height: 60px; +} +.hair_bangs_1_holly { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -455px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_holly { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -480px -470px; + width: 60px; + height: 60px; +} +.hair_bangs_1_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -551px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -576px -15px; + width: 60px; + height: 60px; +} +.hair_bangs_1_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -551px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -576px -106px; + width: 60px; + height: 60px; +} +.hair_bangs_1_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -551px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -576px -197px; + width: 60px; + height: 60px; +} +.hair_bangs_1_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -551px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -576px -288px; + width: 60px; + height: 60px; +} +.hair_bangs_1_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -551px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -576px -379px; + width: 60px; + height: 60px; +} +.hair_bangs_1_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -551px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -576px -470px; + width: 60px; + height: 60px; +} +.hair_bangs_1_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: 0px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -25px -561px; + width: 60px; + height: 60px; +} +.hair_bangs_1_porange { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -91px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_porange { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -116px -561px; + width: 60px; + height: 60px; +} +.hair_bangs_1_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -182px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -207px -561px; + width: 60px; + height: 60px; +} +.hair_bangs_1_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -273px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -298px -561px; + width: 60px; + height: 60px; +} +.hair_bangs_1_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -364px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -389px -561px; + width: 60px; + height: 60px; +} +.hair_bangs_1_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -455px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -480px -561px; + width: 60px; + height: 60px; +} +.hair_bangs_1_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -546px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -571px -561px; + width: 60px; + height: 60px; +} +.hair_bangs_1_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -642px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -667px -15px; + width: 60px; + height: 60px; +} +.hair_bangs_1_purple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -642px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_purple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -667px -106px; + width: 60px; + height: 60px; +} +.hair_bangs_1_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -642px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -667px -197px; + width: 60px; + height: 60px; +} +.hair_bangs_1_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -642px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -667px -288px; + width: 60px; + height: 60px; +} +.hair_bangs_1_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -642px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -667px -379px; + width: 60px; + height: 60px; +} +.hair_bangs_1_red { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -642px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_red { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -667px -470px; + width: 60px; + height: 60px; +} +.hair_bangs_1_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -642px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -667px -561px; + width: 60px; + height: 60px; +} +.hair_bangs_1_white { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -91px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_white { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -116px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_1_winternight { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -182px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_winternight { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -207px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_1_winterstar { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -273px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_winterstar { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -298px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_1_yellow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -364px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_yellow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -389px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_1_zombie { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -455px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_1_zombie { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -480px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_2_TRUred { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -455px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_TRUred { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -480px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_2_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -546px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -571px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_2_black { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -637px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_black { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -662px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_2_blond { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -733px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_blond { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -758px -15px; + width: 60px; + height: 60px; +} +.hair_bangs_2_blue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -733px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_blue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -758px -106px; + width: 60px; + height: 60px; +} +.hair_bangs_2_brown { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -733px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_brown { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -758px -197px; + width: 60px; + height: 60px; +} +.hair_bangs_2_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -733px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -758px -288px; + width: 60px; + height: 60px; +} +.hair_bangs_2_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -733px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -758px -379px; + width: 60px; + height: 60px; +} +.hair_bangs_2_festive { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -733px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_festive { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -758px -470px; + width: 60px; + height: 60px; +} +.hair_bangs_2_frost { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -733px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_frost { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -758px -561px; + width: 60px; + height: 60px; +} +.hair_bangs_2_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -733px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -758px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_2_green { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: 0px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_green { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -25px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_2_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -91px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -116px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_2_holly { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -182px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_holly { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -207px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_2_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -273px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -298px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_2_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -364px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -389px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_2_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -455px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -480px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_2_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -546px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -571px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_2_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -637px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -662px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_2_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -728px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -753px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_2_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -824px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -849px -15px; + width: 60px; + height: 60px; +} +.hair_bangs_2_porange { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -824px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_porange { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -849px -106px; + width: 60px; + height: 60px; +} +.hair_bangs_2_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -824px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -849px -197px; + width: 60px; + height: 60px; +} +.hair_bangs_2_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -824px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -849px -288px; + width: 60px; + height: 60px; +} +.hair_bangs_2_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -824px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -849px -379px; + width: 60px; + height: 60px; +} +.hair_bangs_2_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -824px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -849px -470px; + width: 60px; + height: 60px; +} +.hair_bangs_2_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -824px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -849px -561px; + width: 60px; + height: 60px; +} +.hair_bangs_2_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -824px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -849px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_2_purple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -824px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_purple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -849px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_2_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: 0px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -25px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_2_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -91px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -116px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_2_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -182px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -207px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_2_red { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -273px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_red { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -298px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_2_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -364px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -389px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_2_white { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -546px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_white { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -571px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_2_winternight { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -637px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_winternight { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -662px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_2_winterstar { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -728px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_winterstar { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -753px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_2_yellow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -819px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_yellow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -844px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_2_zombie { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -915px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_2_zombie { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -940px -15px; + width: 60px; + height: 60px; +} +.hair_bangs_3_TRUred { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -182px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_TRUred { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -207px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_3_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -915px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -940px -106px; + width: 60px; + height: 60px; +} +.hair_bangs_3_black { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -915px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_black { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -940px -197px; + width: 60px; + height: 60px; +} +.hair_bangs_3_blond { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -915px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_blond { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -940px -288px; + width: 60px; + height: 60px; +} +.hair_bangs_3_blue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -915px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_blue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -940px -379px; + width: 60px; + height: 60px; +} +.hair_bangs_3_brown { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -915px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_brown { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -940px -470px; + width: 60px; + height: 60px; +} +.hair_bangs_3_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -915px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -940px -561px; + width: 60px; + height: 60px; +} +.hair_bangs_3_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -915px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -940px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_3_festive { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -915px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_festive { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -940px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_3_frost { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -915px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_frost { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -940px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_3_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: 0px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -25px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_3_green { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -91px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_green { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -116px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_3_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -182px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -207px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_3_holly { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -273px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_holly { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -298px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_3_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -364px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -389px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_3_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -455px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -480px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_3_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -546px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -571px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_3_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -637px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -662px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_3_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -728px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -753px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_3_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -819px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -844px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_3_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -910px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -935px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_3_porange { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1006px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_porange { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1031px -15px; + width: 60px; + height: 60px; +} +.hair_bangs_3_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1006px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1031px -106px; + width: 60px; + height: 60px; +} +.hair_bangs_3_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1006px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1031px -197px; + width: 60px; + height: 60px; +} +.hair_bangs_3_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1006px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1031px -288px; + width: 60px; + height: 60px; +} +.hair_bangs_3_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1006px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1031px -379px; + width: 60px; + height: 60px; +} +.hair_bangs_3_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1006px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1031px -470px; + width: 60px; + height: 60px; +} +.hair_bangs_3_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1006px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1031px -561px; + width: 60px; + height: 60px; +} +.hair_bangs_3_purple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1006px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_purple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1031px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_3_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1006px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1031px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_3_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1006px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1031px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_3_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1006px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1031px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_3_red { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: 0px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_red { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -25px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_3_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -91px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -116px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_3_white { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -273px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_white { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -298px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_3_winternight { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -364px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_winternight { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -389px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_3_winterstar { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -455px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_winterstar { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -480px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_3_yellow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -546px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_yellow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -571px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_3_zombie { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -637px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_3_zombie { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -662px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_4_TRUred { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1188px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_TRUred { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1213px -379px; + width: 60px; + height: 60px; +} +.hair_bangs_4_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -728px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -753px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_4_black { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -819px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_black { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -844px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_4_blond { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -910px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_blond { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -935px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_4_blue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1001px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_blue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1026px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_4_brown { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1097px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_brown { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1122px -15px; + width: 60px; + height: 60px; +} +.hair_bangs_4_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1097px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1122px -106px; + width: 60px; + height: 60px; +} +.hair_bangs_4_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1097px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1122px -197px; + width: 60px; + height: 60px; +} +.hair_bangs_4_festive { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1097px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_festive { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1122px -288px; + width: 60px; + height: 60px; +} +.hair_bangs_4_frost { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1097px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_frost { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1122px -379px; + width: 60px; + height: 60px; +} +.hair_bangs_4_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1097px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1122px -470px; + width: 60px; + height: 60px; +} +.hair_bangs_4_green { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1097px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_green { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1122px -561px; + width: 60px; + height: 60px; +} +.hair_bangs_4_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1097px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1122px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_4_holly { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1097px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_holly { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1122px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_4_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1097px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1122px -834px; + width: 60px; + height: 60px; +} +.hair_bangs_4_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1097px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1122px -925px; + width: 60px; + height: 60px; +} +.hair_bangs_4_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1097px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1122px -1016px; + width: 60px; + height: 60px; +} +.hair_bangs_4_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: 0px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -25px -1107px; + width: 60px; + height: 60px; +} +.hair_bangs_4_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -91px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -116px -1107px; + width: 60px; + height: 60px; +} +.hair_bangs_4_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -182px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -207px -1107px; + width: 60px; + height: 60px; +} +.hair_bangs_4_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -273px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -298px -1107px; + width: 60px; + height: 60px; +} +.hair_bangs_4_porange { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -364px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_porange { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -389px -1107px; + width: 60px; + height: 60px; +} +.hair_bangs_4_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -455px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -480px -1107px; + width: 60px; + height: 60px; +} +.hair_bangs_4_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -546px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -571px -1107px; + width: 60px; + height: 60px; +} +.hair_bangs_4_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -637px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -662px -1107px; + width: 60px; + height: 60px; +} +.hair_bangs_4_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -728px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -753px -1107px; + width: 60px; + height: 60px; +} +.hair_bangs_4_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -819px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -844px -1107px; + width: 60px; + height: 60px; +} +.hair_bangs_4_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -345px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -370px -106px; + width: 60px; + height: 60px; +} +.hair_bangs_4_purple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1001px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_purple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1026px -1107px; + width: 60px; + height: 60px; +} +.hair_bangs_4_pyellow { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); background-position: -1092px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_1_aurora { +.customize-option.hair_bangs_4_pyellow { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); background-position: -1117px -1107px; width: 60px; height: 60px; } +.hair_bangs_4_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1188px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1213px -15px; + width: 60px; + height: 60px; +} +.hair_bangs_4_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1188px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1213px -106px; + width: 60px; + height: 60px; +} +.hair_bangs_4_red { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1188px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_red { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1213px -197px; + width: 60px; + height: 60px; +} +.hair_bangs_4_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1188px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1213px -288px; + width: 60px; + height: 60px; +} +.hair_bangs_4_white { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1188px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_white { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1213px -470px; + width: 60px; + height: 60px; +} +.hair_bangs_4_winternight { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1188px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_winternight { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1213px -561px; + width: 60px; + height: 60px; +} +.hair_bangs_4_winterstar { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1188px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_winterstar { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1213px -652px; + width: 60px; + height: 60px; +} +.hair_bangs_4_yellow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1188px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_yellow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1213px -743px; + width: 60px; + height: 60px; +} +.hair_bangs_4_zombie { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1188px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_bangs_4_zombie { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1213px -834px; + width: 60px; + height: 60px; +} +.hair_base_10_TRUred { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1001px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_TRUred { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1026px -1380px; + width: 60px; + height: 60px; +} +.hair_base_10_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -728px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -753px -1289px; + width: 60px; + height: 60px; +} +.hair_base_10_black { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -819px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_black { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -844px -1289px; + width: 60px; + height: 60px; +} +.hair_base_10_blond { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -910px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_blond { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -935px -1289px; + width: 60px; + height: 60px; +} +.hair_base_10_blue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1001px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_blue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1026px -1289px; + width: 60px; + height: 60px; +} +.hair_base_10_brown { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1092px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_brown { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1117px -1289px; + width: 60px; + height: 60px; +} +.hair_base_10_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1183px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1208px -1289px; + width: 60px; + height: 60px; +} +.hair_base_10_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1274px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1299px -1289px; + width: 60px; + height: 60px; +} +.hair_base_10_festive { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1370px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_festive { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1395px -15px; + width: 60px; + height: 60px; +} +.hair_base_10_frost { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1370px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_frost { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1395px -106px; + width: 60px; + height: 60px; +} +.hair_base_10_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1370px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1395px -197px; + width: 60px; + height: 60px; +} +.hair_base_10_green { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1370px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_green { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1395px -288px; + width: 60px; + height: 60px; +} +.hair_base_10_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1370px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1395px -379px; + width: 60px; + height: 60px; +} +.hair_base_10_holly { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1370px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_holly { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1395px -470px; + width: 60px; + height: 60px; +} +.hair_base_10_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1370px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1395px -561px; + width: 60px; + height: 60px; +} +.hair_base_10_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1370px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1395px -652px; + width: 60px; + height: 60px; +} +.hair_base_10_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1370px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1395px -743px; + width: 60px; + height: 60px; +} +.hair_base_10_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1370px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1395px -834px; + width: 60px; + height: 60px; +} +.hair_base_10_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1370px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1395px -925px; + width: 60px; + height: 60px; +} +.hair_base_10_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1370px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1395px -1016px; + width: 60px; + height: 60px; +} +.hair_base_10_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1370px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1395px -1107px; + width: 60px; + height: 60px; +} +.hair_base_10_porange { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1370px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_porange { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1395px -1198px; + width: 60px; + height: 60px; +} +.hair_base_10_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1370px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1395px -1289px; + width: 60px; + height: 60px; +} +.hair_base_10_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: 0px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -25px -1380px; + width: 60px; + height: 60px; +} +.hair_base_10_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -91px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -116px -1380px; + width: 60px; + height: 60px; +} +.hair_base_10_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -182px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -207px -1380px; + width: 60px; + height: 60px; +} +.hair_base_10_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -273px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -298px -1380px; + width: 60px; + height: 60px; +} +.hair_base_10_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -364px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -389px -1380px; + width: 60px; + height: 60px; +} +.hair_base_10_purple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -455px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_purple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -480px -1380px; + width: 60px; + height: 60px; +} +.hair_base_10_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -546px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -571px -1380px; + width: 60px; + height: 60px; +} +.hair_base_10_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -637px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -662px -1380px; + width: 60px; + height: 60px; +} +.hair_base_10_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -728px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -753px -1380px; + width: 60px; + height: 60px; +} +.hair_base_10_red { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -819px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_red { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -844px -1380px; + width: 60px; + height: 60px; +} +.hair_base_10_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -910px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -935px -1380px; + width: 60px; + height: 60px; +} +.hair_base_10_white { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1092px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_white { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1117px -1380px; + width: 60px; + height: 60px; +} +.hair_base_10_winternight { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1183px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_winternight { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1208px -1380px; + width: 60px; + height: 60px; +} +.hair_base_10_winterstar { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1274px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_winterstar { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1299px -1380px; + width: 60px; + height: 60px; +} +.hair_base_10_yellow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1365px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_yellow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1390px -1380px; + width: 60px; + height: 60px; +} +.hair_base_10_zombie { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1461px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_10_zombie { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1486px -15px; + width: 60px; + height: 60px; +} +.hair_base_11_TRUred { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1552px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_TRUred { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1577px -106px; + width: 60px; + height: 60px; +} +.hair_base_11_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1461px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1486px -106px; + width: 60px; + height: 60px; +} +.hair_base_11_black { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1461px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_black { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1486px -197px; + width: 60px; + height: 60px; +} +.hair_base_11_blond { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1461px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_blond { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1486px -288px; + width: 60px; + height: 60px; +} +.hair_base_11_blue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1461px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_blue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1486px -379px; + width: 60px; + height: 60px; +} +.hair_base_11_brown { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1461px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_brown { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1486px -470px; + width: 60px; + height: 60px; +} +.hair_base_11_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1461px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1486px -561px; + width: 60px; + height: 60px; +} +.hair_base_11_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1461px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1486px -652px; + width: 60px; + height: 60px; +} +.hair_base_11_festive { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1461px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_festive { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1486px -743px; + width: 60px; + height: 60px; +} +.hair_base_11_frost { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1461px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_frost { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1486px -834px; + width: 60px; + height: 60px; +} +.hair_base_11_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1461px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1486px -925px; + width: 60px; + height: 60px; +} +.hair_base_11_green { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1461px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_green { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1486px -1016px; + width: 60px; + height: 60px; +} +.hair_base_11_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1461px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1486px -1107px; + width: 60px; + height: 60px; +} +.hair_base_11_holly { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1461px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_holly { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1486px -1198px; + width: 60px; + height: 60px; +} +.hair_base_11_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1461px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1486px -1289px; + width: 60px; + height: 60px; +} +.hair_base_11_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1461px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1486px -1380px; + width: 60px; + height: 60px; +} +.hair_base_11_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: 0px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -25px -1471px; + width: 60px; + height: 60px; +} +.hair_base_11_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -91px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -116px -1471px; + width: 60px; + height: 60px; +} +.hair_base_11_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -182px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -207px -1471px; + width: 60px; + height: 60px; +} +.hair_base_11_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -273px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -298px -1471px; + width: 60px; + height: 60px; +} +.hair_base_11_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -364px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -389px -1471px; + width: 60px; + height: 60px; +} +.hair_base_11_porange { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -455px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_porange { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -480px -1471px; + width: 60px; + height: 60px; +} +.hair_base_11_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -546px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -571px -1471px; + width: 60px; + height: 60px; +} +.hair_base_11_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -637px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -662px -1471px; + width: 60px; + height: 60px; +} +.hair_base_11_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -728px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -753px -1471px; + width: 60px; + height: 60px; +} +.hair_base_11_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -819px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -844px -1471px; + width: 60px; + height: 60px; +} +.hair_base_11_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -910px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -935px -1471px; + width: 60px; + height: 60px; +} +.hair_base_11_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1001px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1026px -1471px; + width: 60px; + height: 60px; +} +.hair_base_11_purple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1092px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_purple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1117px -1471px; + width: 60px; + height: 60px; +} +.hair_base_11_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1183px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1208px -1471px; + width: 60px; + height: 60px; +} +.hair_base_11_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1274px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1299px -1471px; + width: 60px; + height: 60px; +} +.hair_base_11_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1365px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1390px -1471px; + width: 60px; + height: 60px; +} +.hair_base_11_red { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1456px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_red { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1481px -1471px; + width: 60px; + height: 60px; +} +.hair_base_11_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1552px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1577px -15px; + width: 60px; + height: 60px; +} +.hair_base_11_white { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1552px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_white { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1577px -197px; + width: 60px; + height: 60px; +} +.hair_base_11_winternight { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1552px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_winternight { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1577px -288px; + width: 60px; + height: 60px; +} +.hair_base_11_winterstar { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1552px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_winterstar { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1577px -379px; + width: 60px; + height: 60px; +} +.hair_base_11_yellow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1552px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_yellow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1577px -470px; + width: 60px; + height: 60px; +} +.hair_base_11_zombie { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1552px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_11_zombie { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1577px -561px; + width: 60px; + height: 60px; +} +.hair_base_12_TRUred { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1643px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_TRUred { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1668px -470px; + width: 60px; + height: 60px; +} +.hair_base_12_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1552px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1577px -652px; + width: 60px; + height: 60px; +} +.hair_base_12_black { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1552px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_black { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1577px -743px; + width: 60px; + height: 60px; +} +.hair_base_12_blond { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1552px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_blond { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1577px -834px; + width: 60px; + height: 60px; +} +.hair_base_12_blue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1552px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_blue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1577px -925px; + width: 60px; + height: 60px; +} +.hair_base_12_brown { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1552px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_brown { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1577px -1016px; + width: 60px; + height: 60px; +} +.hair_base_12_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1552px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1577px -1107px; + width: 60px; + height: 60px; +} +.hair_base_12_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1552px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1577px -1198px; + width: 60px; + height: 60px; +} +.hair_base_12_festive { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1552px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_festive { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1577px -1289px; + width: 60px; + height: 60px; +} +.hair_base_12_frost { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1552px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_frost { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1577px -1380px; + width: 60px; + height: 60px; +} +.hair_base_12_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1552px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1577px -1471px; + width: 60px; + height: 60px; +} +.hair_base_12_green { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: 0px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_green { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -25px -1562px; + width: 60px; + height: 60px; +} +.hair_base_12_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -91px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -116px -1562px; + width: 60px; + height: 60px; +} +.hair_base_12_holly { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -182px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_holly { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -207px -1562px; + width: 60px; + height: 60px; +} +.hair_base_12_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -273px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -298px -1562px; + width: 60px; + height: 60px; +} +.hair_base_12_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -364px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -389px -1562px; + width: 60px; + height: 60px; +} +.hair_base_12_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -455px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -480px -1562px; + width: 60px; + height: 60px; +} +.hair_base_12_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -546px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -571px -1562px; + width: 60px; + height: 60px; +} +.hair_base_12_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -637px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -662px -1562px; + width: 60px; + height: 60px; +} +.hair_base_12_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -728px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -753px -1562px; + width: 60px; + height: 60px; +} +.hair_base_12_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -819px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -844px -1562px; + width: 60px; + height: 60px; +} +.hair_base_12_porange { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -910px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_porange { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -935px -1562px; + width: 60px; + height: 60px; +} +.hair_base_12_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1001px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1026px -1562px; + width: 60px; + height: 60px; +} +.hair_base_12_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1092px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1117px -1562px; + width: 60px; + height: 60px; +} +.hair_base_12_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1183px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1208px -1562px; + width: 60px; + height: 60px; +} +.hair_base_12_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1274px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1299px -1562px; + width: 60px; + height: 60px; +} +.hair_base_12_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1365px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1390px -1562px; + width: 60px; + height: 60px; +} +.hair_base_12_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1456px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1481px -1562px; + width: 60px; + height: 60px; +} +.hair_base_12_purple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1547px -1547px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_purple { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1572px -1562px; + width: 60px; + height: 60px; +} +.hair_base_12_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1643px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1668px -15px; + width: 60px; + height: 60px; +} +.hair_base_12_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1643px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1668px -106px; + width: 60px; + height: 60px; +} +.hair_base_12_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1643px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1668px -197px; + width: 60px; + height: 60px; +} +.hair_base_12_red { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1643px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_red { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1668px -288px; + width: 60px; + height: 60px; +} +.hair_base_12_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1643px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_12_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1668px -379px; + width: 60px; + height: 60px; +} +.hair_base_1_TRUred { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -182px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_TRUred { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -207px -1289px; + width: 60px; + height: 60px; +} +.hair_base_1_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1188px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_1_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-2.png'); + background-position: -1213px -925px; + width: 60px; + height: 60px; +} .hair_base_1_black { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1255px 0px; + background-position: -1188px -1001px; width: 90px; height: 90px; } .customize-option.hair_base_1_black { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1280px -15px; + background-position: -1213px -1016px; width: 60px; height: 60px; } .hair_base_1_blond { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1255px -91px; + background-position: -1188px -1092px; width: 90px; height: 90px; } .customize-option.hair_base_1_blond { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1280px -106px; + background-position: -1213px -1107px; width: 60px; height: 60px; } .hair_base_1_blue { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1255px -182px; + background-position: 0px -1183px; width: 90px; height: 90px; } .customize-option.hair_base_1_blue { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1280px -197px; + background-position: -25px -1198px; width: 60px; height: 60px; } .hair_base_1_brown { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1255px -273px; + background-position: -91px -1183px; width: 90px; height: 90px; } .customize-option.hair_base_1_brown { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1280px -288px; + background-position: -116px -1198px; width: 60px; height: 60px; } .hair_base_1_candycane { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1255px -364px; + background-position: -182px -1183px; width: 90px; height: 90px; } .customize-option.hair_base_1_candycane { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1280px -379px; + background-position: -207px -1198px; width: 60px; height: 60px; } .hair_base_1_candycorn { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1255px -455px; + background-position: -273px -1183px; width: 90px; height: 90px; } .customize-option.hair_base_1_candycorn { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1280px -470px; + background-position: -298px -1198px; width: 60px; height: 60px; } .hair_base_1_festive { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1255px -546px; + background-position: -364px -1183px; width: 90px; height: 90px; } .customize-option.hair_base_1_festive { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1280px -561px; + background-position: -389px -1198px; width: 60px; height: 60px; } .hair_base_1_frost { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1255px -637px; + background-position: -455px -1183px; width: 90px; height: 90px; } .customize-option.hair_base_1_frost { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1280px -652px; + background-position: -480px -1198px; width: 60px; height: 60px; } .hair_base_1_ghostwhite { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1255px -728px; + background-position: -546px -1183px; width: 90px; height: 90px; } .customize-option.hair_base_1_ghostwhite { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1280px -743px; + background-position: -571px -1198px; width: 60px; height: 60px; } .hair_base_1_green { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1255px -819px; + background-position: -637px -1183px; width: 90px; height: 90px; } .customize-option.hair_base_1_green { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1280px -834px; + background-position: -662px -1198px; width: 60px; height: 60px; } .hair_base_1_halloween { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1255px -910px; + background-position: -728px -1183px; width: 90px; height: 90px; } .customize-option.hair_base_1_halloween { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1280px -925px; + background-position: -753px -1198px; width: 60px; height: 60px; } .hair_base_1_holly { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1255px -1001px; + background-position: -819px -1183px; width: 90px; height: 90px; } .customize-option.hair_base_1_holly { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1280px -1016px; + background-position: -844px -1198px; width: 60px; height: 60px; } .hair_base_1_hollygreen { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1255px -1092px; + background-position: -910px -1183px; width: 90px; height: 90px; } .customize-option.hair_base_1_hollygreen { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1280px -1107px; + background-position: -935px -1198px; width: 60px; height: 60px; } .hair_base_1_midnight { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: 0px -1183px; + background-position: -1001px -1183px; width: 90px; height: 90px; } .customize-option.hair_base_1_midnight { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -25px -1198px; + background-position: -1026px -1198px; width: 60px; height: 60px; } .hair_base_1_pblue { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -91px -1183px; + background-position: -1092px -1183px; width: 90px; height: 90px; } .customize-option.hair_base_1_pblue { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -116px -1198px; + background-position: -1117px -1198px; width: 60px; height: 60px; } .hair_base_1_pblue2 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -182px -1183px; + background-position: -1183px -1183px; width: 90px; height: 90px; } .customize-option.hair_base_1_pblue2 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -207px -1198px; + background-position: -1208px -1198px; width: 60px; height: 60px; } .hair_base_1_peppermint { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -273px -1183px; + background-position: -1279px 0px; width: 90px; height: 90px; } .customize-option.hair_base_1_peppermint { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -298px -1198px; + background-position: -1304px -15px; width: 60px; height: 60px; } .hair_base_1_pgreen { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -364px -1183px; + background-position: -1279px -91px; width: 90px; height: 90px; } .customize-option.hair_base_1_pgreen { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -389px -1198px; + background-position: -1304px -106px; width: 60px; height: 60px; } .hair_base_1_pgreen2 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -455px -1183px; + background-position: -1279px -182px; width: 90px; height: 90px; } .customize-option.hair_base_1_pgreen2 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -480px -1198px; + background-position: -1304px -197px; width: 60px; height: 60px; } .hair_base_1_porange { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -546px -1183px; + background-position: -1279px -273px; width: 90px; height: 90px; } .customize-option.hair_base_1_porange { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -571px -1198px; + background-position: -1304px -288px; width: 60px; height: 60px; } .hair_base_1_porange2 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -637px -1183px; + background-position: -1279px -364px; width: 90px; height: 90px; } .customize-option.hair_base_1_porange2 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -662px -1198px; + background-position: -1304px -379px; width: 60px; height: 60px; } .hair_base_1_ppink { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -728px -1183px; + background-position: -1279px -455px; width: 90px; height: 90px; } .customize-option.hair_base_1_ppink { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -753px -1198px; + background-position: -1304px -470px; width: 60px; height: 60px; } .hair_base_1_ppink2 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -819px -1183px; + background-position: -1279px -546px; width: 90px; height: 90px; } .customize-option.hair_base_1_ppink2 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -844px -1198px; + background-position: -1304px -561px; width: 60px; height: 60px; } .hair_base_1_ppurple { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -910px -1183px; + background-position: -1279px -637px; width: 90px; height: 90px; } .customize-option.hair_base_1_ppurple { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -935px -1198px; + background-position: -1304px -652px; width: 60px; height: 60px; } .hair_base_1_ppurple2 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1001px -1183px; + background-position: -1279px -728px; width: 90px; height: 90px; } .customize-option.hair_base_1_ppurple2 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1026px -1198px; + background-position: -1304px -743px; width: 60px; height: 60px; } .hair_base_1_pumpkin { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1092px -1183px; + background-position: -1279px -819px; width: 90px; height: 90px; } .customize-option.hair_base_1_pumpkin { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1117px -1198px; + background-position: -1304px -834px; width: 60px; height: 60px; } .hair_base_1_purple { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1183px -1183px; + background-position: -1279px -910px; width: 90px; height: 90px; } .customize-option.hair_base_1_purple { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1208px -1198px; + background-position: -1304px -925px; width: 60px; height: 60px; } .hair_base_1_pyellow { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1346px 0px; + background-position: -1279px -1001px; width: 90px; height: 90px; } .customize-option.hair_base_1_pyellow { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1371px -15px; + background-position: -1304px -1016px; width: 60px; height: 60px; } .hair_base_1_pyellow2 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1346px -91px; + background-position: -1279px -1092px; width: 90px; height: 90px; } .customize-option.hair_base_1_pyellow2 { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1371px -106px; + background-position: -1304px -1107px; width: 60px; height: 60px; } .hair_base_1_rainbow { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1346px -182px; + background-position: -1279px -1183px; width: 90px; height: 90px; } .customize-option.hair_base_1_rainbow { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1371px -197px; + background-position: -1304px -1198px; width: 60px; height: 60px; } .hair_base_1_red { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1346px -273px; + background-position: 0px -1274px; width: 90px; height: 90px; } .customize-option.hair_base_1_red { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1371px -288px; + background-position: -25px -1289px; width: 60px; height: 60px; } .hair_base_1_snowy { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1346px -364px; + background-position: -91px -1274px; width: 90px; height: 90px; } .customize-option.hair_base_1_snowy { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1371px -379px; + background-position: -116px -1289px; width: 60px; height: 60px; } .hair_base_1_white { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1346px -546px; + background-position: -273px -1274px; width: 90px; height: 90px; } .customize-option.hair_base_1_white { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1371px -561px; + background-position: -298px -1289px; width: 60px; height: 60px; } .hair_base_1_winternight { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1346px -637px; + background-position: -364px -1274px; width: 90px; height: 90px; } .customize-option.hair_base_1_winternight { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1371px -652px; + background-position: -389px -1289px; width: 60px; height: 60px; } .hair_base_1_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1346px -728px; + background-position: -455px -1274px; width: 90px; height: 90px; } .customize-option.hair_base_1_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1371px -743px; + background-position: -480px -1289px; width: 60px; height: 60px; } .hair_base_1_yellow { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1346px -819px; + background-position: -546px -1274px; width: 90px; height: 90px; } .customize-option.hair_base_1_yellow { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1371px -834px; + background-position: -571px -1289px; width: 60px; height: 60px; } .hair_base_1_zombie { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1346px -910px; + background-position: -637px -1274px; width: 90px; height: 90px; } .customize-option.hair_base_1_zombie { background-image: url('~assets/images/sprites/spritesmith-main-2.png'); - background-position: -1371px -925px; + background-position: -662px -1289px; width: 60px; height: 60px; } diff --git a/website/client/assets/css/sprites/spritesmith-main-20.css b/website/client/assets/css/sprites/spritesmith-main-20.css index 32ef4d4846..22a4af0590 100644 --- a/website/client/assets/css/sprites/spritesmith-main-20.css +++ b/website/client/assets/css/sprites/spritesmith-main-20.css @@ -1,819 +1,1209 @@ -.Pet-BearCub-Cupid { +.Mount_Icon_Wolf-Floral { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1066px -600px; + background-position: -738px -1203px; width: 81px; height: 99px; } -.Pet-BearCub-Desert { +.Mount_Icon_Wolf-Ghost { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -82px -1103px; width: 81px; height: 99px; } -.Pet-BearCub-Ember { +.Mount_Icon_Wolf-Glass { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -164px 0px; width: 81px; height: 99px; } -.Pet-BearCub-Fairy { +.Mount_Icon_Wolf-Golden { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: 0px -103px; width: 81px; height: 99px; } -.Pet-BearCub-Floral { +.Mount_Icon_Wolf-Holly { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -82px -103px; width: 81px; height: 99px; } -.Pet-BearCub-Ghost { +.Mount_Icon_Wolf-Peppermint { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -164px -103px; width: 81px; height: 99px; } -.Pet-BearCub-Golden { +.Mount_Icon_Wolf-Rainbow { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -246px 0px; width: 81px; height: 99px; } -.Pet-BearCub-Holly { +.Mount_Icon_Wolf-Red { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -246px -100px; width: 81px; height: 99px; } -.Pet-BearCub-Peppermint { +.Mount_Icon_Wolf-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: 0px -203px; width: 81px; height: 99px; } -.Pet-BearCub-Polar { +.Mount_Icon_Wolf-Shade { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -82px -203px; width: 81px; height: 99px; } -.Pet-BearCub-Rainbow { +.Mount_Icon_Wolf-Shimmer { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -164px -203px; width: 81px; height: 99px; } -.Pet-BearCub-Red { +.Mount_Icon_Wolf-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -246px -203px; width: 81px; height: 99px; } -.Pet-BearCub-RoyalPurple { +.Mount_Icon_Wolf-Spooky { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -328px 0px; width: 81px; height: 99px; } -.Pet-BearCub-Shade { +.Mount_Icon_Wolf-StarryNight { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -328px -100px; width: 81px; height: 99px; } -.Pet-BearCub-Shimmer { +.Mount_Icon_Wolf-Thunderstorm { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -328px -200px; width: 81px; height: 99px; } -.Pet-BearCub-Skeleton { +.Mount_Icon_Wolf-White { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: 0px -303px; width: 81px; height: 99px; } -.Pet-BearCub-Spooky { +.Mount_Icon_Wolf-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -82px -303px; width: 81px; height: 99px; } -.Pet-BearCub-StarryNight { +.Mount_Icon_Yarn-Base { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -164px -303px; width: 81px; height: 99px; } -.Pet-BearCub-Thunderstorm { +.Mount_Icon_Yarn-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -246px -303px; width: 81px; height: 99px; } -.Pet-BearCub-White { +.Mount_Icon_Yarn-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -328px -303px; width: 81px; height: 99px; } -.Pet-BearCub-Zombie { +.Mount_Icon_Yarn-Desert { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -410px 0px; width: 81px; height: 99px; } -.Pet-Beetle-Base { +.Mount_Icon_Yarn-Golden { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -410px -100px; width: 81px; height: 99px; } -.Pet-Beetle-CottonCandyBlue { +.Mount_Icon_Yarn-Red { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -410px -200px; width: 81px; height: 99px; } -.Pet-Beetle-CottonCandyPink { +.Mount_Icon_Yarn-Shade { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -410px -300px; width: 81px; height: 99px; } -.Pet-Beetle-Desert { +.Mount_Icon_Yarn-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -492px 0px; width: 81px; height: 99px; } -.Pet-Beetle-Golden { +.Mount_Icon_Yarn-White { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -492px -100px; width: 81px; height: 99px; } -.Pet-Beetle-Red { +.Mount_Icon_Yarn-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -492px -200px; width: 81px; height: 99px; } -.Pet-Beetle-Shade { +.Pet-Armadillo-Base { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -492px -300px; width: 81px; height: 99px; } -.Pet-Beetle-Skeleton { +.Pet-Armadillo-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: 0px -403px; width: 81px; height: 99px; } -.Pet-Beetle-White { +.Pet-Armadillo-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -82px -403px; width: 81px; height: 99px; } -.Pet-Beetle-Zombie { +.Pet-Armadillo-Desert { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -164px -403px; width: 81px; height: 99px; } -.Pet-Bunny-Base { +.Pet-Armadillo-Golden { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -246px -403px; width: 81px; height: 99px; } -.Pet-Bunny-CottonCandyBlue { +.Pet-Armadillo-Red { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -328px -403px; width: 81px; height: 99px; } -.Pet-Bunny-CottonCandyPink { +.Pet-Armadillo-Shade { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -410px -403px; width: 81px; height: 99px; } -.Pet-Bunny-Desert { +.Pet-Armadillo-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -492px -403px; width: 81px; height: 99px; } -.Pet-Bunny-Golden { +.Pet-Armadillo-White { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -574px 0px; width: 81px; height: 99px; } -.Pet-Bunny-Red { +.Pet-Armadillo-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -574px -100px; width: 81px; height: 99px; } -.Pet-Bunny-Shade { +.Pet-Axolotl-Base { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -574px -200px; width: 81px; height: 99px; } -.Pet-Bunny-Skeleton { +.Pet-Axolotl-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -574px -300px; width: 81px; height: 99px; } -.Pet-Bunny-White { +.Pet-Axolotl-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -574px -400px; width: 81px; height: 99px; } -.Pet-Bunny-Zombie { +.Pet-Axolotl-Desert { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: 0px -503px; width: 81px; height: 99px; } -.Pet-Butterfly-Base { +.Pet-Axolotl-Golden { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -82px -503px; width: 81px; height: 99px; } -.Pet-Butterfly-CottonCandyBlue { +.Pet-Axolotl-Red { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -164px -503px; width: 81px; height: 99px; } -.Pet-Butterfly-CottonCandyPink { +.Pet-Axolotl-Shade { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -246px -503px; width: 81px; height: 99px; } -.Pet-Butterfly-Desert { +.Pet-Axolotl-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -328px -503px; width: 81px; height: 99px; } -.Pet-Butterfly-Golden { +.Pet-Axolotl-White { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -410px -503px; width: 81px; height: 99px; } -.Pet-Butterfly-Red { +.Pet-Axolotl-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -492px -503px; width: 81px; height: 99px; } -.Pet-Butterfly-Shade { +.Pet-Badger-Base { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -574px -503px; width: 81px; height: 99px; } -.Pet-Butterfly-Skeleton { +.Pet-Badger-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -656px 0px; width: 81px; height: 99px; } -.Pet-Butterfly-White { +.Pet-Badger-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -656px -100px; width: 81px; height: 99px; } -.Pet-Butterfly-Zombie { +.Pet-Badger-Desert { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -656px -200px; width: 81px; height: 99px; } -.Pet-Cactus-Aquatic { +.Pet-Badger-Golden { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -656px -300px; width: 81px; height: 99px; } -.Pet-Cactus-Base { +.Pet-Badger-Red { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -656px -400px; width: 81px; height: 99px; } -.Pet-Cactus-CottonCandyBlue { +.Pet-Badger-Shade { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -656px -500px; width: 81px; height: 99px; } -.Pet-Cactus-CottonCandyPink { +.Pet-Badger-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: 0px -603px; width: 81px; height: 99px; } -.Pet-Cactus-Cupid { +.Pet-Badger-White { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -82px -603px; width: 81px; height: 99px; } -.Pet-Cactus-Desert { +.Pet-Badger-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -164px -603px; width: 81px; height: 99px; } -.Pet-Cactus-Ember { +.Pet-Bear-Veteran { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -246px -603px; width: 81px; height: 99px; } -.Pet-Cactus-Fairy { +.Pet-BearCub-Aquatic { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -328px -603px; width: 81px; height: 99px; } -.Pet-Cactus-Floral { +.Pet-BearCub-Base { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -410px -603px; width: 81px; height: 99px; } -.Pet-Cactus-Ghost { +.Pet-BearCub-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -492px -603px; width: 81px; height: 99px; } -.Pet-Cactus-Golden { +.Pet-BearCub-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -574px -603px; width: 81px; height: 99px; } -.Pet-Cactus-Holly { +.Pet-BearCub-Cupid { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -656px -603px; width: 81px; height: 99px; } -.Pet-Cactus-Peppermint { +.Pet-BearCub-Desert { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -738px 0px; width: 81px; height: 99px; } -.Pet-Cactus-Rainbow { +.Pet-BearCub-Ember { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -738px -100px; width: 81px; height: 99px; } -.Pet-Cactus-Red { +.Pet-BearCub-Fairy { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -738px -200px; width: 81px; height: 99px; } -.Pet-Cactus-RoyalPurple { +.Pet-BearCub-Floral { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -738px -300px; width: 81px; height: 99px; } -.Pet-Cactus-Shade { +.Pet-BearCub-Ghost { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -738px -400px; width: 81px; height: 99px; } -.Pet-Cactus-Shimmer { +.Pet-BearCub-Glass { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -738px -500px; width: 81px; height: 99px; } -.Pet-Cactus-Skeleton { +.Pet-BearCub-Golden { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -738px -600px; width: 81px; height: 99px; } -.Pet-Cactus-Spooky { +.Pet-BearCub-Holly { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: 0px -703px; width: 81px; height: 99px; } -.Pet-Cactus-StarryNight { +.Pet-BearCub-Peppermint { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -82px -703px; width: 81px; height: 99px; } -.Pet-Cactus-Thunderstorm { +.Pet-BearCub-Polar { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -164px -703px; width: 81px; height: 99px; } -.Pet-Cactus-White { +.Pet-BearCub-Rainbow { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -246px -703px; width: 81px; height: 99px; } -.Pet-Cactus-Zombie { +.Pet-BearCub-Red { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -328px -703px; width: 81px; height: 99px; } -.Pet-Cheetah-Base { +.Pet-BearCub-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -410px -703px; width: 81px; height: 99px; } -.Pet-Cheetah-CottonCandyBlue { +.Pet-BearCub-Shade { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -492px -703px; width: 81px; height: 99px; } -.Pet-Cheetah-CottonCandyPink { +.Pet-BearCub-Shimmer { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -574px -703px; width: 81px; height: 99px; } -.Pet-Cheetah-Desert { +.Pet-BearCub-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -656px -703px; width: 81px; height: 99px; } -.Pet-Cheetah-Golden { +.Pet-BearCub-Spooky { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -738px -703px; width: 81px; height: 99px; } -.Pet-Cheetah-Red { +.Pet-BearCub-StarryNight { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -820px 0px; width: 81px; height: 99px; } -.Pet-Cheetah-Shade { +.Pet-BearCub-Thunderstorm { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -820px -100px; width: 81px; height: 99px; } -.Pet-Cheetah-Skeleton { +.Pet-BearCub-White { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -820px -200px; width: 81px; height: 99px; } -.Pet-Cheetah-White { +.Pet-BearCub-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -820px -300px; width: 81px; height: 99px; } -.Pet-Cheetah-Zombie { +.Pet-Beetle-Base { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -820px -400px; width: 81px; height: 99px; } -.Pet-Cow-Base { +.Pet-Beetle-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -820px -500px; width: 81px; height: 99px; } -.Pet-Cow-CottonCandyBlue { +.Pet-Beetle-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -820px -600px; width: 81px; height: 99px; } -.Pet-Cow-CottonCandyPink { +.Pet-Beetle-Desert { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -820px -700px; width: 81px; height: 99px; } -.Pet-Cow-Desert { +.Pet-Beetle-Golden { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -902px 0px; width: 81px; height: 99px; } -.Pet-Cow-Golden { +.Pet-Beetle-Red { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -902px -100px; width: 81px; height: 99px; } -.Pet-Cow-Red { +.Pet-Beetle-Shade { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -902px -200px; width: 81px; height: 99px; } -.Pet-Cow-Shade { +.Pet-Beetle-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -902px -300px; width: 81px; height: 99px; } -.Pet-Cow-Skeleton { +.Pet-Beetle-White { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -902px -400px; width: 81px; height: 99px; } -.Pet-Cow-White { +.Pet-Beetle-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -902px -500px; width: 81px; height: 99px; } -.Pet-Cow-Zombie { +.Pet-Bunny-Base { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -902px -600px; width: 81px; height: 99px; } -.Pet-Cuttlefish-Base { +.Pet-Bunny-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -902px -700px; width: 81px; height: 99px; } -.Pet-Cuttlefish-CottonCandyBlue { +.Pet-Bunny-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: 0px -803px; width: 81px; height: 99px; } -.Pet-Cuttlefish-CottonCandyPink { +.Pet-Bunny-Desert { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -82px -803px; width: 81px; height: 99px; } -.Pet-Cuttlefish-Desert { +.Pet-Bunny-Golden { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -164px -803px; width: 81px; height: 99px; } -.Pet-Cuttlefish-Golden { +.Pet-Bunny-Red { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -246px -803px; width: 81px; height: 99px; } -.Pet-Cuttlefish-Red { +.Pet-Bunny-Shade { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -328px -803px; width: 81px; height: 99px; } -.Pet-Cuttlefish-Shade { +.Pet-Bunny-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -410px -803px; width: 81px; height: 99px; } -.Pet-Cuttlefish-Skeleton { +.Pet-Bunny-White { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -492px -803px; width: 81px; height: 99px; } -.Pet-Cuttlefish-White { +.Pet-Bunny-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -574px -803px; width: 81px; height: 99px; } -.Pet-Cuttlefish-Zombie { +.Pet-Butterfly-Base { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -656px -803px; width: 81px; height: 99px; } -.Pet-Deer-Base { +.Pet-Butterfly-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -738px -803px; width: 81px; height: 99px; } -.Pet-Deer-CottonCandyBlue { +.Pet-Butterfly-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -820px -803px; width: 81px; height: 99px; } -.Pet-Deer-CottonCandyPink { +.Pet-Butterfly-Desert { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -902px -803px; width: 81px; height: 99px; } -.Pet-Deer-Desert { +.Pet-Butterfly-Golden { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -984px 0px; width: 81px; height: 99px; } -.Pet-Deer-Golden { +.Pet-Butterfly-Red { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -984px -100px; width: 81px; height: 99px; } -.Pet-Deer-Red { +.Pet-Butterfly-Shade { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -984px -200px; width: 81px; height: 99px; } -.Pet-Deer-Shade { +.Pet-Butterfly-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -984px -300px; width: 81px; height: 99px; } -.Pet-Deer-Skeleton { +.Pet-Butterfly-White { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -984px -400px; width: 81px; height: 99px; } -.Pet-Deer-White { +.Pet-Butterfly-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -984px -500px; width: 81px; height: 99px; } -.Pet-Deer-Zombie { +.Pet-Cactus-Aquatic { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -984px -600px; width: 81px; height: 99px; } -.Pet-Dragon-Aquatic { +.Pet-Cactus-Base { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -984px -700px; width: 81px; height: 99px; } -.Pet-Dragon-Base { +.Pet-Cactus-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -984px -800px; width: 81px; height: 99px; } -.Pet-Dragon-CottonCandyBlue { +.Pet-Cactus-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: 0px -903px; width: 81px; height: 99px; } -.Pet-Dragon-CottonCandyPink { +.Pet-Cactus-Cupid { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -82px -903px; width: 81px; height: 99px; } -.Pet-Dragon-Cupid { +.Pet-Cactus-Desert { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -164px -903px; width: 81px; height: 99px; } -.Pet-Dragon-Desert { +.Pet-Cactus-Ember { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -246px -903px; width: 81px; height: 99px; } -.Pet-Dragon-Ember { +.Pet-Cactus-Fairy { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -328px -903px; width: 81px; height: 99px; } -.Pet-Dragon-Fairy { +.Pet-Cactus-Floral { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -410px -903px; width: 81px; height: 99px; } -.Pet-Dragon-Floral { +.Pet-Cactus-Ghost { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -492px -903px; width: 81px; height: 99px; } -.Pet-Dragon-Ghost { +.Pet-Cactus-Glass { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -574px -903px; width: 81px; height: 99px; } -.Pet-Dragon-Golden { +.Pet-Cactus-Golden { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -656px -903px; width: 81px; height: 99px; } -.Pet-Dragon-Holly { +.Pet-Cactus-Holly { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -738px -903px; width: 81px; height: 99px; } -.Pet-Dragon-Hydra { +.Pet-Cactus-Peppermint { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -820px -903px; width: 81px; height: 99px; } -.Pet-Dragon-Peppermint { +.Pet-Cactus-Rainbow { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -902px -903px; width: 81px; height: 99px; } -.Pet-Dragon-Rainbow { +.Pet-Cactus-Red { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -984px -903px; width: 81px; height: 99px; } -.Pet-Dragon-Red { +.Pet-Cactus-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1066px 0px; width: 81px; height: 99px; } -.Pet-Dragon-RoyalPurple { +.Pet-Cactus-Shade { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1066px -100px; width: 81px; height: 99px; } -.Pet-Dragon-Shade { +.Pet-Cactus-Shimmer { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1066px -200px; width: 81px; height: 99px; } -.Pet-Dragon-Shimmer { +.Pet-Cactus-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1066px -300px; width: 81px; height: 99px; } -.Pet-Dragon-Skeleton { +.Pet-Cactus-Spooky { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1066px -400px; width: 81px; height: 99px; } -.Pet-Dragon-Spooky { +.Pet-Cactus-StarryNight { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1066px -500px; width: 81px; height: 99px; } +.Pet-Cactus-Thunderstorm { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1066px -600px; + width: 81px; + height: 99px; +} +.Pet-Cactus-White { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1066px -700px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1066px -800px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Base { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1066px -900px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: 0px -1003px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -82px -1003px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -164px -1003px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -246px -1003px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Red { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -328px -1003px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -410px -1003px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -492px -1003px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-White { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -574px -1003px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -656px -1003px; + width: 81px; + height: 99px; +} +.Pet-Cow-Base { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -738px -1003px; + width: 81px; + height: 99px; +} +.Pet-Cow-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -820px -1003px; + width: 81px; + height: 99px; +} +.Pet-Cow-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -902px -1003px; + width: 81px; + height: 99px; +} +.Pet-Cow-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -984px -1003px; + width: 81px; + height: 99px; +} +.Pet-Cow-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1066px -1003px; + width: 81px; + height: 99px; +} +.Pet-Cow-Red { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1148px 0px; + width: 81px; + height: 99px; +} +.Pet-Cow-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1148px -100px; + width: 81px; + height: 99px; +} +.Pet-Cow-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1148px -200px; + width: 81px; + height: 99px; +} +.Pet-Cow-White { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1148px -300px; + width: 81px; + height: 99px; +} +.Pet-Cow-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1148px -400px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Base { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1148px -500px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1148px -600px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1148px -700px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1148px -800px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1148px -900px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Red { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1148px -1000px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: 0px -1103px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -82px 0px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-White { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -164px -1103px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -246px -1103px; + width: 81px; + height: 99px; +} +.Pet-Deer-Base { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -328px -1103px; + width: 81px; + height: 99px; +} +.Pet-Deer-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -410px -1103px; + width: 81px; + height: 99px; +} +.Pet-Deer-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -492px -1103px; + width: 81px; + height: 99px; +} +.Pet-Deer-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -574px -1103px; + width: 81px; + height: 99px; +} +.Pet-Deer-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -656px -1103px; + width: 81px; + height: 99px; +} +.Pet-Deer-Red { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -738px -1103px; + width: 81px; + height: 99px; +} +.Pet-Deer-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -820px -1103px; + width: 81px; + height: 99px; +} +.Pet-Deer-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -902px -1103px; + width: 81px; + height: 99px; +} +.Pet-Deer-White { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -984px -1103px; + width: 81px; + height: 99px; +} +.Pet-Deer-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1066px -1103px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Aquatic { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1148px -1103px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Base { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1230px 0px; + width: 81px; + height: 99px; +} +.Pet-Dragon-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1230px -100px; + width: 81px; + height: 99px; +} +.Pet-Dragon-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1230px -200px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Cupid { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1230px -300px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1230px -400px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Ember { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1230px -500px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Fairy { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1230px -600px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Floral { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1230px -700px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Ghost { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1230px -800px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Glass { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1230px -900px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1230px -1000px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Holly { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1230px -1100px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Hydra { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: 0px -1203px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -82px -1203px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -164px -1203px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Red { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -246px -1203px; + width: 81px; + height: 99px; +} +.Pet-Dragon-RoyalPurple { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -328px -1203px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -410px -1203px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Shimmer { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -492px -1203px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -574px -1203px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Spooky { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -656px -1203px; + width: 81px; + height: 99px; +} .Pet-Dragon-StarryNight { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: 0px 0px; @@ -822,1169 +1212,779 @@ } .Pet-Dragon-Thunderstorm { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1066px -700px; + background-position: -820px -1203px; width: 81px; height: 99px; } .Pet-Dragon-White { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1066px -800px; + background-position: -902px -1203px; width: 81px; height: 99px; } .Pet-Dragon-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1066px -900px; + background-position: -984px -1203px; width: 81px; height: 99px; } .Pet-Egg-Base { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: 0px -1003px; + background-position: -1066px -1203px; width: 81px; height: 99px; } .Pet-Egg-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -82px -1003px; + background-position: -1148px -1203px; width: 81px; height: 99px; } .Pet-Egg-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -164px -1003px; + background-position: -1230px -1203px; width: 81px; height: 99px; } .Pet-Egg-Desert { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -246px -1003px; + background-position: -1312px 0px; width: 81px; height: 99px; } .Pet-Egg-Golden { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -328px -1003px; + background-position: -1312px -100px; width: 81px; height: 99px; } .Pet-Egg-Red { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -410px -1003px; + background-position: -1312px -200px; width: 81px; height: 99px; } .Pet-Egg-Shade { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -492px -1003px; + background-position: -1312px -300px; width: 81px; height: 99px; } .Pet-Egg-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -574px -1003px; + background-position: -1312px -400px; width: 81px; height: 99px; } .Pet-Egg-White { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -656px -1003px; + background-position: -1312px -500px; width: 81px; height: 99px; } .Pet-Egg-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -738px -1003px; + background-position: -1312px -600px; width: 81px; height: 99px; } .Pet-Falcon-Base { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -820px -1003px; + background-position: -1312px -700px; width: 81px; height: 99px; } .Pet-Falcon-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -902px -1003px; + background-position: -1312px -800px; width: 81px; height: 99px; } .Pet-Falcon-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -984px -1003px; + background-position: -1312px -900px; width: 81px; height: 99px; } .Pet-Falcon-Desert { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1066px -1003px; + background-position: -1312px -1000px; width: 81px; height: 99px; } .Pet-Falcon-Golden { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1148px 0px; + background-position: -1312px -1100px; width: 81px; height: 99px; } .Pet-Falcon-Red { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1148px -100px; + background-position: -1312px -1200px; width: 81px; height: 99px; } .Pet-Falcon-Shade { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1148px -200px; + background-position: -1394px 0px; width: 81px; height: 99px; } .Pet-Falcon-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1148px -300px; + background-position: -1394px -100px; width: 81px; height: 99px; } .Pet-Falcon-White { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1148px -400px; + background-position: -1394px -200px; width: 81px; height: 99px; } .Pet-Falcon-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1148px -500px; + background-position: -1394px -300px; width: 81px; height: 99px; } .Pet-Ferret-Base { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1148px -600px; + background-position: -1394px -400px; width: 81px; height: 99px; } .Pet-Ferret-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1148px -700px; + background-position: -1394px -500px; width: 81px; height: 99px; } .Pet-Ferret-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1148px -800px; + background-position: -1394px -600px; width: 81px; height: 99px; } .Pet-Ferret-Desert { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1148px -900px; + background-position: -1394px -700px; width: 81px; height: 99px; } .Pet-Ferret-Golden { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1148px -1000px; + background-position: -1394px -800px; width: 81px; height: 99px; } .Pet-Ferret-Red { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: 0px -1103px; + background-position: -1394px -900px; width: 81px; height: 99px; } .Pet-Ferret-Shade { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -82px 0px; + background-position: -1394px -1000px; width: 81px; height: 99px; } .Pet-Ferret-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -164px -1103px; + background-position: -1394px -1100px; width: 81px; height: 99px; } .Pet-Ferret-White { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -246px -1103px; + background-position: -1394px -1200px; width: 81px; height: 99px; } .Pet-Ferret-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -328px -1103px; + background-position: 0px -1303px; width: 81px; height: 99px; } .Pet-FlyingPig-Aquatic { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -410px -1103px; + background-position: -82px -1303px; width: 81px; height: 99px; } .Pet-FlyingPig-Base { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -492px -1103px; + background-position: -164px -1303px; width: 81px; height: 99px; } .Pet-FlyingPig-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -574px -1103px; + background-position: -246px -1303px; width: 81px; height: 99px; } .Pet-FlyingPig-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -656px -1103px; + background-position: -328px -1303px; width: 81px; height: 99px; } .Pet-FlyingPig-Cupid { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -738px -1103px; + background-position: -410px -1303px; width: 81px; height: 99px; } .Pet-FlyingPig-Desert { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -820px -1103px; + background-position: -492px -1303px; width: 81px; height: 99px; } .Pet-FlyingPig-Ember { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -902px -1103px; + background-position: -574px -1303px; width: 81px; height: 99px; } .Pet-FlyingPig-Fairy { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -984px -1103px; + background-position: -656px -1303px; width: 81px; height: 99px; } .Pet-FlyingPig-Floral { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1066px -1103px; + background-position: -738px -1303px; width: 81px; height: 99px; } .Pet-FlyingPig-Ghost { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1148px -1103px; - width: 81px; - height: 99px; -} -.Pet-FlyingPig-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1230px 0px; - width: 81px; - height: 99px; -} -.Pet-FlyingPig-Holly { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1230px -100px; - width: 81px; - height: 99px; -} -.Pet-FlyingPig-Peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1230px -200px; - width: 81px; - height: 99px; -} -.Pet-FlyingPig-Rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1230px -300px; - width: 81px; - height: 99px; -} -.Pet-FlyingPig-Red { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1230px -400px; - width: 81px; - height: 99px; -} -.Pet-FlyingPig-RoyalPurple { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1230px -500px; - width: 81px; - height: 99px; -} -.Pet-FlyingPig-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1230px -600px; - width: 81px; - height: 99px; -} -.Pet-FlyingPig-Shimmer { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1230px -700px; - width: 81px; - height: 99px; -} -.Pet-FlyingPig-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1230px -800px; - width: 81px; - height: 99px; -} -.Pet-FlyingPig-Spooky { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1230px -900px; - width: 81px; - height: 99px; -} -.Pet-FlyingPig-StarryNight { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1230px -1000px; - width: 81px; - height: 99px; -} -.Pet-FlyingPig-Thunderstorm { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1230px -1100px; - width: 81px; - height: 99px; -} -.Pet-FlyingPig-White { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: 0px -1203px; - width: 81px; - height: 99px; -} -.Pet-FlyingPig-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -82px -1203px; - width: 81px; - height: 99px; -} -.Pet-Fox-Aquatic { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -164px -1203px; - width: 81px; - height: 99px; -} -.Pet-Fox-Base { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -246px -1203px; - width: 81px; - height: 99px; -} -.Pet-Fox-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -328px -1203px; - width: 81px; - height: 99px; -} -.Pet-Fox-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -410px -1203px; - width: 81px; - height: 99px; -} -.Pet-Fox-Cupid { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -492px -1203px; - width: 81px; - height: 99px; -} -.Pet-Fox-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -574px -1203px; - width: 81px; - height: 99px; -} -.Pet-Fox-Ember { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -656px -1203px; - width: 81px; - height: 99px; -} -.Pet-Fox-Fairy { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -738px -1203px; - width: 81px; - height: 99px; -} -.Pet-Fox-Floral { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -820px -1203px; - width: 81px; - height: 99px; -} -.Pet-Fox-Ghost { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -902px -1203px; - width: 81px; - height: 99px; -} -.Pet-Fox-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -984px -1203px; - width: 81px; - height: 99px; -} -.Pet-Fox-Holly { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1066px -1203px; - width: 81px; - height: 99px; -} -.Pet-Fox-Peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1148px -1203px; - width: 81px; - height: 99px; -} -.Pet-Fox-Rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1230px -1203px; - width: 81px; - height: 99px; -} -.Pet-Fox-Red { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1312px 0px; - width: 81px; - height: 99px; -} -.Pet-Fox-RoyalPurple { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1312px -100px; - width: 81px; - height: 99px; -} -.Pet-Fox-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1312px -200px; - width: 81px; - height: 99px; -} -.Pet-Fox-Shimmer { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1312px -300px; - width: 81px; - height: 99px; -} -.Pet-Fox-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1312px -400px; - width: 81px; - height: 99px; -} -.Pet-Fox-Spooky { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1312px -500px; - width: 81px; - height: 99px; -} -.Pet-Fox-StarryNight { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1312px -600px; - width: 81px; - height: 99px; -} -.Pet-Fox-Thunderstorm { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1312px -700px; - width: 81px; - height: 99px; -} -.Pet-Fox-White { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1312px -800px; - width: 81px; - height: 99px; -} -.Pet-Fox-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1312px -900px; - width: 81px; - height: 99px; -} -.Pet-Frog-Base { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1312px -1000px; - width: 81px; - height: 99px; -} -.Pet-Frog-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1312px -1100px; - width: 81px; - height: 99px; -} -.Pet-Frog-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1312px -1200px; - width: 81px; - height: 99px; -} -.Pet-Frog-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1394px 0px; - width: 81px; - height: 99px; -} -.Pet-Frog-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1394px -100px; - width: 81px; - height: 99px; -} -.Pet-Frog-Red { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1394px -200px; - width: 81px; - height: 99px; -} -.Pet-Frog-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1394px -300px; - width: 81px; - height: 99px; -} -.Pet-Frog-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1394px -400px; - width: 81px; - height: 99px; -} -.Pet-Frog-White { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1394px -500px; - width: 81px; - height: 99px; -} -.Pet-Frog-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1394px -600px; - width: 81px; - height: 99px; -} -.Pet-Gryphon-Base { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1394px -700px; - width: 81px; - height: 99px; -} -.Pet-Gryphon-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1394px -800px; - width: 81px; - height: 99px; -} -.Pet-Gryphon-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1394px -900px; - width: 81px; - height: 99px; -} -.Pet-Gryphon-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1394px -1000px; - width: 81px; - height: 99px; -} -.Pet-Gryphon-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1394px -1100px; - width: 81px; - height: 99px; -} -.Pet-Gryphon-Red { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1394px -1200px; - width: 81px; - height: 99px; -} -.Pet-Gryphon-RoyalPurple { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: 0px -1303px; - width: 81px; - height: 99px; -} -.Pet-Gryphon-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -82px -1303px; - width: 81px; - height: 99px; -} -.Pet-Gryphon-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -164px -1303px; - width: 81px; - height: 99px; -} -.Pet-Gryphon-White { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -246px -1303px; - width: 81px; - height: 99px; -} -.Pet-Gryphon-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -328px -1303px; - width: 81px; - height: 99px; -} -.Pet-GuineaPig-Base { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -410px -1303px; - width: 81px; - height: 99px; -} -.Pet-GuineaPig-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -492px -1303px; - width: 81px; - height: 99px; -} -.Pet-GuineaPig-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -574px -1303px; - width: 81px; - height: 99px; -} -.Pet-GuineaPig-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -656px -1303px; - width: 81px; - height: 99px; -} -.Pet-GuineaPig-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -738px -1303px; - width: 81px; - height: 99px; -} -.Pet-GuineaPig-Red { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -820px -1303px; width: 81px; height: 99px; } -.Pet-GuineaPig-Shade { +.Pet-FlyingPig-Glass { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -902px -1303px; width: 81px; height: 99px; } -.Pet-GuineaPig-Skeleton { +.Pet-FlyingPig-Golden { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -984px -1303px; width: 81px; height: 99px; } -.Pet-GuineaPig-White { +.Pet-FlyingPig-Holly { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1066px -1303px; width: 81px; height: 99px; } -.Pet-GuineaPig-Zombie { +.Pet-FlyingPig-Peppermint { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1148px -1303px; width: 81px; height: 99px; } -.Pet-Hedgehog-Base { +.Pet-FlyingPig-Rainbow { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1230px -1303px; width: 81px; height: 99px; } -.Pet-Hedgehog-CottonCandyBlue { +.Pet-FlyingPig-Red { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1312px -1303px; width: 81px; height: 99px; } -.Pet-Hedgehog-CottonCandyPink { +.Pet-FlyingPig-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1394px -1303px; width: 81px; height: 99px; } -.Pet-Hedgehog-Desert { +.Pet-FlyingPig-Shade { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1476px 0px; width: 81px; height: 99px; } -.Pet-Hedgehog-Golden { +.Pet-FlyingPig-Shimmer { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1476px -100px; width: 81px; height: 99px; } -.Pet-Hedgehog-Red { +.Pet-FlyingPig-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1476px -200px; width: 81px; height: 99px; } -.Pet-Hedgehog-Shade { +.Pet-FlyingPig-Spooky { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1476px -300px; width: 81px; height: 99px; } -.Pet-Hedgehog-Skeleton { +.Pet-FlyingPig-StarryNight { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1476px -400px; width: 81px; height: 99px; } -.Pet-Hedgehog-White { +.Pet-FlyingPig-Thunderstorm { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1476px -500px; width: 81px; height: 99px; } -.Pet-Hedgehog-Zombie { +.Pet-FlyingPig-White { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1476px -600px; width: 81px; height: 99px; } -.Pet-Hippo-Base { +.Pet-FlyingPig-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1476px -700px; width: 81px; height: 99px; } -.Pet-Hippo-CottonCandyBlue { +.Pet-Fox-Aquatic { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1476px -800px; width: 81px; height: 99px; } -.Pet-Hippo-CottonCandyPink { +.Pet-Fox-Base { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1476px -900px; width: 81px; height: 99px; } -.Pet-Hippo-Desert { +.Pet-Fox-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1476px -1000px; width: 81px; height: 99px; } -.Pet-Hippo-Golden { +.Pet-Fox-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1476px -1100px; width: 81px; height: 99px; } -.Pet-Hippo-Red { +.Pet-Fox-Cupid { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1476px -1200px; width: 81px; height: 99px; } -.Pet-Hippo-Shade { +.Pet-Fox-Desert { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1476px -1300px; width: 81px; height: 99px; } -.Pet-Hippo-Skeleton { +.Pet-Fox-Ember { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: 0px -1403px; width: 81px; height: 99px; } -.Pet-Hippo-White { +.Pet-Fox-Fairy { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -82px -1403px; width: 81px; height: 99px; } -.Pet-Hippo-Zombie { +.Pet-Fox-Floral { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -164px -1403px; width: 81px; height: 99px; } -.Pet-Hippogriff-Hopeful { +.Pet-Fox-Ghost { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -246px -1403px; width: 81px; height: 99px; } -.Pet-Horse-Base { +.Pet-Fox-Glass { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -328px -1403px; width: 81px; height: 99px; } -.Pet-Horse-CottonCandyBlue { +.Pet-Fox-Golden { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -410px -1403px; width: 81px; height: 99px; } -.Pet-Horse-CottonCandyPink { +.Pet-Fox-Holly { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -492px -1403px; width: 81px; height: 99px; } -.Pet-Horse-Desert { +.Pet-Fox-Peppermint { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -574px -1403px; width: 81px; height: 99px; } -.Pet-Horse-Golden { +.Pet-Fox-Rainbow { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -656px -1403px; width: 81px; height: 99px; } -.Pet-Horse-Red { +.Pet-Fox-Red { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -738px -1403px; width: 81px; height: 99px; } -.Pet-Horse-Shade { +.Pet-Fox-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -820px -1403px; width: 81px; height: 99px; } -.Pet-Horse-Skeleton { +.Pet-Fox-Shade { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -902px -1403px; width: 81px; height: 99px; } -.Pet-Horse-White { +.Pet-Fox-Shimmer { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -984px -1403px; width: 81px; height: 99px; } -.Pet-Horse-Zombie { +.Pet-Fox-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1066px -1403px; width: 81px; height: 99px; } -.Pet-JackOLantern-Base { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1230px -1403px; - width: 81px; - height: 99px; -} -.Pet-JackOLantern-Ghost { - background-image: url('~assets/images/sprites/spritesmith-main-20.png'); - background-position: -1312px -1403px; - width: 81px; - height: 99px; -} -.Pet-Jackalope-RoyalPurple { +.Pet-Fox-Spooky { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1148px -1403px; width: 81px; height: 99px; } -.Pet-Lion-Veteran { +.Pet-Fox-StarryNight { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1230px -1403px; + width: 81px; + height: 99px; +} +.Pet-Fox-Thunderstorm { + background-image: url('~assets/images/sprites/spritesmith-main-20.png'); + background-position: -1312px -1403px; + width: 81px; + height: 99px; +} +.Pet-Fox-White { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1394px -1403px; width: 81px; height: 99px; } -.Pet-LionCub-Aquatic { +.Pet-Fox-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1476px -1403px; width: 81px; height: 99px; } -.Pet-LionCub-Base { +.Pet-Frog-Base { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1558px 0px; width: 81px; height: 99px; } -.Pet-LionCub-CottonCandyBlue { +.Pet-Frog-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1558px -100px; width: 81px; height: 99px; } -.Pet-LionCub-CottonCandyPink { +.Pet-Frog-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1558px -200px; width: 81px; height: 99px; } -.Pet-LionCub-Cupid { +.Pet-Frog-Desert { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1558px -300px; width: 81px; height: 99px; } -.Pet-LionCub-Desert { +.Pet-Frog-Golden { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1558px -400px; width: 81px; height: 99px; } -.Pet-LionCub-Ember { +.Pet-Frog-Red { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1558px -500px; width: 81px; height: 99px; } -.Pet-LionCub-Fairy { +.Pet-Frog-Shade { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1558px -600px; width: 81px; height: 99px; } -.Pet-LionCub-Floral { +.Pet-Frog-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1558px -700px; width: 81px; height: 99px; } -.Pet-LionCub-Ghost { +.Pet-Frog-White { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1558px -800px; width: 81px; height: 99px; } -.Pet-LionCub-Golden { +.Pet-Frog-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1558px -900px; width: 81px; height: 99px; } -.Pet-LionCub-Holly { +.Pet-Gryphon-Base { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1558px -1000px; width: 81px; height: 99px; } -.Pet-LionCub-Peppermint { +.Pet-Gryphon-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1558px -1100px; width: 81px; height: 99px; } -.Pet-LionCub-Rainbow { +.Pet-Gryphon-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1558px -1200px; width: 81px; height: 99px; } -.Pet-LionCub-Red { +.Pet-Gryphon-Desert { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1558px -1300px; width: 81px; height: 99px; } -.Pet-LionCub-RoyalPurple { +.Pet-Gryphon-Golden { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1558px -1400px; width: 81px; height: 99px; } -.Pet-LionCub-Shade { +.Pet-Gryphon-Red { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: 0px -1503px; width: 81px; height: 99px; } -.Pet-LionCub-Shimmer { +.Pet-Gryphon-RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -82px -1503px; width: 81px; height: 99px; } -.Pet-LionCub-Skeleton { +.Pet-Gryphon-Shade { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -164px -1503px; width: 81px; height: 99px; } -.Pet-LionCub-Spooky { +.Pet-Gryphon-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -246px -1503px; width: 81px; height: 99px; } -.Pet-LionCub-StarryNight { +.Pet-Gryphon-White { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -328px -1503px; width: 81px; height: 99px; } -.Pet-LionCub-Thunderstorm { +.Pet-Gryphon-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -410px -1503px; width: 81px; height: 99px; } -.Pet-LionCub-White { +.Pet-GuineaPig-Base { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -492px -1503px; width: 81px; height: 99px; } -.Pet-LionCub-Zombie { +.Pet-GuineaPig-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -574px -1503px; width: 81px; height: 99px; } -.Pet-MagicalBee-Base { +.Pet-GuineaPig-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -656px -1503px; width: 81px; height: 99px; } -.Pet-Mammoth-Base { +.Pet-GuineaPig-Desert { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -738px -1503px; width: 81px; height: 99px; } -.Pet-MantisShrimp-Base { +.Pet-GuineaPig-Golden { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -820px -1503px; width: 81px; height: 99px; } -.Pet-Monkey-Base { +.Pet-GuineaPig-Red { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -902px -1503px; width: 81px; height: 99px; } -.Pet-Monkey-CottonCandyBlue { +.Pet-GuineaPig-Shade { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -984px -1503px; width: 81px; height: 99px; } -.Pet-Monkey-CottonCandyPink { +.Pet-GuineaPig-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1066px -1503px; width: 81px; height: 99px; } -.Pet-Monkey-Desert { +.Pet-GuineaPig-White { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1148px -1503px; width: 81px; height: 99px; } -.Pet-Monkey-Golden { +.Pet-GuineaPig-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1230px -1503px; width: 81px; height: 99px; } -.Pet-Monkey-Red { +.Pet-Hedgehog-Base { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1312px -1503px; width: 81px; height: 99px; } -.Pet-Monkey-Shade { +.Pet-Hedgehog-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1394px -1503px; width: 81px; height: 99px; } -.Pet-Monkey-Skeleton { +.Pet-Hedgehog-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1476px -1503px; width: 81px; height: 99px; } -.Pet-Monkey-White { +.Pet-Hedgehog-Desert { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1558px -1503px; width: 81px; height: 99px; } -.Pet-Monkey-Zombie { +.Pet-Hedgehog-Golden { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1640px 0px; width: 81px; height: 99px; } -.Pet-Nudibranch-Base { +.Pet-Hedgehog-Red { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1640px -100px; width: 81px; height: 99px; } -.Pet-Nudibranch-CottonCandyBlue { +.Pet-Hedgehog-Shade { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1640px -200px; width: 81px; height: 99px; } -.Pet-Nudibranch-CottonCandyPink { +.Pet-Hedgehog-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1640px -300px; width: 81px; height: 99px; } -.Pet-Nudibranch-Desert { +.Pet-Hedgehog-White { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1640px -400px; width: 81px; height: 99px; } -.Pet-Nudibranch-Golden { +.Pet-Hedgehog-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1640px -500px; width: 81px; height: 99px; } -.Pet-Nudibranch-Red { +.Pet-Hippo-Base { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1640px -600px; width: 81px; height: 99px; } -.Pet-Nudibranch-Shade { +.Pet-Hippo-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1640px -700px; width: 81px; height: 99px; } -.Pet-Nudibranch-Skeleton { +.Pet-Hippo-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1640px -800px; width: 81px; height: 99px; } -.Pet-Nudibranch-White { +.Pet-Hippo-Desert { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1640px -900px; width: 81px; height: 99px; } -.Pet-Nudibranch-Zombie { +.Pet-Hippo-Golden { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1640px -1000px; width: 81px; height: 99px; } -.Pet-Octopus-Base { +.Pet-Hippo-Red { background-image: url('~assets/images/sprites/spritesmith-main-20.png'); background-position: -1640px -1100px; width: 81px; diff --git a/website/client/assets/css/sprites/spritesmith-main-21.css b/website/client/assets/css/sprites/spritesmith-main-21.css index 3b919709ac..0bcc1ed1a4 100644 --- a/website/client/assets/css/sprites/spritesmith-main-21.css +++ b/website/client/assets/css/sprites/spritesmith-main-21.css @@ -1,2016 +1,1992 @@ -.Pet-Octopus-CottonCandyBlue { +.Pet-Hippo-Shade { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -82px 0px; width: 81px; height: 99px; } -.Pet-Octopus-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -246px -1100px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -164px 0px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: 0px -100px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Red { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -82px -100px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -164px -100px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -246px 0px; - width: 81px; - height: 99px; -} -.Pet-Octopus-White { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -246px -100px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: 0px -200px; - width: 81px; - height: 99px; -} -.Pet-Orca-Base { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -82px -200px; - width: 81px; - height: 99px; -} -.Pet-Owl-Base { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -164px -200px; - width: 81px; - height: 99px; -} -.Pet-Owl-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -246px -200px; - width: 81px; - height: 99px; -} -.Pet-Owl-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -328px 0px; - width: 81px; - height: 99px; -} -.Pet-Owl-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -328px -100px; - width: 81px; - height: 99px; -} -.Pet-Owl-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -328px -200px; - width: 81px; - height: 99px; -} -.Pet-Owl-Red { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: 0px -300px; - width: 81px; - height: 99px; -} -.Pet-Owl-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -82px -300px; - width: 81px; - height: 99px; -} -.Pet-Owl-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -164px -300px; - width: 81px; - height: 99px; -} -.Pet-Owl-White { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -246px -300px; - width: 81px; - height: 99px; -} -.Pet-Owl-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -328px -300px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Aquatic { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -410px 0px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Base { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -410px -100px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -410px -200px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -410px -300px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Cupid { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -492px 0px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -492px -100px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Ember { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -492px -200px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Fairy { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -492px -300px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Floral { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: 0px -400px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Ghost { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -82px -400px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -164px -400px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Holly { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -246px -400px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -328px -400px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -410px -400px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Red { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -492px -400px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-RoyalPurple { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -574px 0px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -574px -100px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Shimmer { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -574px -200px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -574px -300px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Spooky { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -574px -400px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-StarryNight { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: 0px -500px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Thunderstorm { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -82px -500px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-White { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -164px -500px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -246px -500px; - width: 81px; - height: 99px; -} -.Pet-Parrot-Base { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -328px -500px; - width: 81px; - height: 99px; -} -.Pet-Parrot-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -410px -500px; - width: 81px; - height: 99px; -} -.Pet-Parrot-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -492px -500px; - width: 81px; - height: 99px; -} -.Pet-Parrot-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -574px -500px; - width: 81px; - height: 99px; -} -.Pet-Parrot-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -656px 0px; - width: 81px; - height: 99px; -} -.Pet-Parrot-Red { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -656px -100px; - width: 81px; - height: 99px; -} -.Pet-Parrot-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -656px -200px; - width: 81px; - height: 99px; -} -.Pet-Parrot-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -656px -300px; - width: 81px; - height: 99px; -} -.Pet-Parrot-White { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -656px -400px; - width: 81px; - height: 99px; -} -.Pet-Parrot-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -656px -500px; - width: 81px; - height: 99px; -} -.Pet-Peacock-Base { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: 0px -600px; - width: 81px; - height: 99px; -} -.Pet-Peacock-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -82px -600px; - width: 81px; - height: 99px; -} -.Pet-Peacock-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -164px -600px; - width: 81px; - height: 99px; -} -.Pet-Peacock-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -246px -600px; - width: 81px; - height: 99px; -} -.Pet-Peacock-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -328px -600px; - width: 81px; - height: 99px; -} -.Pet-Peacock-Red { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -410px -600px; - width: 81px; - height: 99px; -} -.Pet-Peacock-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -492px -600px; - width: 81px; - height: 99px; -} -.Pet-Peacock-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -574px -600px; - width: 81px; - height: 99px; -} -.Pet-Peacock-White { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -656px -600px; - width: 81px; - height: 99px; -} -.Pet-Peacock-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -738px 0px; - width: 81px; - height: 99px; -} -.Pet-Penguin-Base { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -738px -100px; - width: 81px; - height: 99px; -} -.Pet-Penguin-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -738px -200px; - width: 81px; - height: 99px; -} -.Pet-Penguin-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -738px -300px; - width: 81px; - height: 99px; -} -.Pet-Penguin-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -738px -400px; - width: 81px; - height: 99px; -} -.Pet-Penguin-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -738px -500px; - width: 81px; - height: 99px; -} -.Pet-Penguin-Red { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -738px -600px; - width: 81px; - height: 99px; -} -.Pet-Penguin-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: 0px -700px; - width: 81px; - height: 99px; -} -.Pet-Penguin-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -82px -700px; - width: 81px; - height: 99px; -} -.Pet-Penguin-White { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -164px -700px; - width: 81px; - height: 99px; -} -.Pet-Penguin-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -246px -700px; - width: 81px; - height: 99px; -} -.Pet-Phoenix-Base { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -328px -700px; - width: 81px; - height: 99px; -} -.Pet-Pterodactyl-Base { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -410px -700px; - width: 81px; - height: 99px; -} -.Pet-Pterodactyl-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -492px -700px; - width: 81px; - height: 99px; -} -.Pet-Pterodactyl-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -574px -700px; - width: 81px; - height: 99px; -} -.Pet-Pterodactyl-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -656px -700px; - width: 81px; - height: 99px; -} -.Pet-Pterodactyl-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -738px -700px; - width: 81px; - height: 99px; -} -.Pet-Pterodactyl-Red { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -820px 0px; - width: 81px; - height: 99px; -} -.Pet-Pterodactyl-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -820px -100px; - width: 81px; - height: 99px; -} -.Pet-Pterodactyl-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -820px -200px; - width: 81px; - height: 99px; -} -.Pet-Pterodactyl-White { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -820px -300px; - width: 81px; - height: 99px; -} -.Pet-Pterodactyl-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -820px -400px; - width: 81px; - height: 99px; -} -.Pet-Rat-Base { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -820px -500px; - width: 81px; - height: 99px; -} -.Pet-Rat-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -820px -600px; - width: 81px; - height: 99px; -} -.Pet-Rat-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -820px -700px; - width: 81px; - height: 99px; -} -.Pet-Rat-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: 0px -800px; - width: 81px; - height: 99px; -} -.Pet-Rat-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -82px -800px; - width: 81px; - height: 99px; -} -.Pet-Rat-Red { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -164px -800px; - width: 81px; - height: 99px; -} -.Pet-Rat-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -246px -800px; - width: 81px; - height: 99px; -} -.Pet-Rat-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -328px -800px; - width: 81px; - height: 99px; -} -.Pet-Rat-White { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -410px -800px; - width: 81px; - height: 99px; -} -.Pet-Rat-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -492px -800px; - width: 81px; - height: 99px; -} -.Pet-Rock-Base { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -574px -800px; - width: 81px; - height: 99px; -} -.Pet-Rock-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -656px -800px; - width: 81px; - height: 99px; -} -.Pet-Rock-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -738px -800px; - width: 81px; - height: 99px; -} -.Pet-Rock-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -820px -800px; - width: 81px; - height: 99px; -} -.Pet-Rock-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -902px 0px; - width: 81px; - height: 99px; -} -.Pet-Rock-Red { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -902px -100px; - width: 81px; - height: 99px; -} -.Pet-Rock-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -902px -200px; - width: 81px; - height: 99px; -} -.Pet-Rock-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -902px -300px; - width: 81px; - height: 99px; -} -.Pet-Rock-White { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -902px -400px; - width: 81px; - height: 99px; -} -.Pet-Rock-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -902px -500px; - width: 81px; - height: 99px; -} -.Pet-Rooster-Base { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -902px -600px; - width: 81px; - height: 99px; -} -.Pet-Rooster-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -902px -700px; - width: 81px; - height: 99px; -} -.Pet-Rooster-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -902px -800px; - width: 81px; - height: 99px; -} -.Pet-Rooster-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -984px 0px; - width: 81px; - height: 99px; -} -.Pet-Rooster-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -984px -100px; - width: 81px; - height: 99px; -} -.Pet-Rooster-Red { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -984px -200px; - width: 81px; - height: 99px; -} -.Pet-Rooster-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -984px -300px; - width: 81px; - height: 99px; -} -.Pet-Rooster-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -984px -400px; - width: 81px; - height: 99px; -} -.Pet-Rooster-White { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -984px -500px; - width: 81px; - height: 99px; -} -.Pet-Rooster-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -984px -600px; - width: 81px; - height: 99px; -} -.Pet-Sabretooth-Base { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -984px -700px; - width: 81px; - height: 99px; -} -.Pet-Sabretooth-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -984px -800px; - width: 81px; - height: 99px; -} -.Pet-Sabretooth-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: 0px -900px; - width: 81px; - height: 99px; -} -.Pet-Sabretooth-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -82px -900px; - width: 81px; - height: 99px; -} -.Pet-Sabretooth-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -164px -900px; - width: 81px; - height: 99px; -} -.Pet-Sabretooth-Red { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -246px -900px; - width: 81px; - height: 99px; -} -.Pet-Sabretooth-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -328px -900px; - width: 81px; - height: 99px; -} -.Pet-Sabretooth-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -410px -900px; - width: 81px; - height: 99px; -} -.Pet-Sabretooth-White { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -492px -900px; - width: 81px; - height: 99px; -} -.Pet-Sabretooth-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -574px -900px; - width: 81px; - height: 99px; -} -.Pet-Seahorse-Base { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -656px -900px; - width: 81px; - height: 99px; -} -.Pet-Seahorse-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -738px -900px; - width: 81px; - height: 99px; -} -.Pet-Seahorse-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -820px -900px; - width: 81px; - height: 99px; -} -.Pet-Seahorse-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -902px -900px; - width: 81px; - height: 99px; -} -.Pet-Seahorse-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -984px -900px; - width: 81px; - height: 99px; -} -.Pet-Seahorse-Red { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1066px 0px; - width: 81px; - height: 99px; -} -.Pet-Seahorse-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1066px -100px; - width: 81px; - height: 99px; -} -.Pet-Seahorse-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1066px -200px; - width: 81px; - height: 99px; -} -.Pet-Seahorse-White { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1066px -300px; - width: 81px; - height: 99px; -} -.Pet-Seahorse-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1066px -400px; - width: 81px; - height: 99px; -} -.Pet-Sheep-Base { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1066px -500px; - width: 81px; - height: 99px; -} -.Pet-Sheep-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1066px -600px; - width: 81px; - height: 99px; -} -.Pet-Sheep-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1066px -700px; - width: 81px; - height: 99px; -} -.Pet-Sheep-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1066px -800px; - width: 81px; - height: 99px; -} -.Pet-Sheep-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1066px -900px; - width: 81px; - height: 99px; -} -.Pet-Sheep-Red { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: 0px -1000px; - width: 81px; - height: 99px; -} -.Pet-Sheep-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -82px -1000px; - width: 81px; - height: 99px; -} -.Pet-Sheep-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -164px -1000px; - width: 81px; - height: 99px; -} -.Pet-Sheep-White { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -246px -1000px; - width: 81px; - height: 99px; -} -.Pet-Sheep-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -328px -1000px; - width: 81px; - height: 99px; -} -.Pet-Slime-Base { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -410px -1000px; - width: 81px; - height: 99px; -} -.Pet-Slime-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -492px -1000px; - width: 81px; - height: 99px; -} -.Pet-Slime-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -574px -1000px; - width: 81px; - height: 99px; -} -.Pet-Slime-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -656px -1000px; - width: 81px; - height: 99px; -} -.Pet-Slime-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -738px -1000px; - width: 81px; - height: 99px; -} -.Pet-Slime-Red { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -820px -1000px; - width: 81px; - height: 99px; -} -.Pet-Slime-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -902px -1000px; - width: 81px; - height: 99px; -} -.Pet-Slime-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -984px -1000px; - width: 81px; - height: 99px; -} -.Pet-Slime-White { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1066px -1000px; - width: 81px; - height: 99px; -} -.Pet-Slime-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1148px 0px; - width: 81px; - height: 99px; -} -.Pet-Sloth-Base { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1148px -100px; - width: 81px; - height: 99px; -} -.Pet-Sloth-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1148px -200px; - width: 81px; - height: 99px; -} -.Pet-Sloth-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1148px -300px; - width: 81px; - height: 99px; -} -.Pet-Sloth-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1148px -400px; - width: 81px; - height: 99px; -} -.Pet-Sloth-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1148px -500px; - width: 81px; - height: 99px; -} -.Pet-Sloth-Red { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1148px -600px; - width: 81px; - height: 99px; -} -.Pet-Sloth-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1148px -700px; - width: 81px; - height: 99px; -} -.Pet-Sloth-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1148px -800px; - width: 81px; - height: 99px; -} -.Pet-Sloth-White { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1148px -900px; - width: 81px; - height: 99px; -} -.Pet-Sloth-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1148px -1000px; - width: 81px; - height: 99px; -} -.Pet-Snail-Base { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: 0px -1100px; - width: 81px; - height: 99px; -} -.Pet-Snail-CottonCandyBlue { +.Pet-Hippo-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -82px -1100px; width: 81px; height: 99px; } -.Pet-Snail-CottonCandyPink { +.Pet-Hippo-White { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -164px -1100px; + background-position: -164px 0px; width: 81px; height: 99px; } -.Pet-Snail-Desert { +.Pet-Hippo-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: 0px -100px; + width: 81px; + height: 99px; +} +.Pet-Hippogriff-Hopeful { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -82px -100px; + width: 81px; + height: 99px; +} +.Pet-Horse-Base { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -164px -100px; + width: 81px; + height: 99px; +} +.Pet-Horse-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -246px 0px; + width: 81px; + height: 99px; +} +.Pet-Horse-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -246px -100px; + width: 81px; + height: 99px; +} +.Pet-Horse-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: 0px -200px; + width: 81px; + height: 99px; +} +.Pet-Horse-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -82px -200px; + width: 81px; + height: 99px; +} +.Pet-Horse-Red { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -164px -200px; + width: 81px; + height: 99px; +} +.Pet-Horse-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -246px -200px; + width: 81px; + height: 99px; +} +.Pet-Horse-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -328px 0px; + width: 81px; + height: 99px; +} +.Pet-Horse-White { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -328px -100px; + width: 81px; + height: 99px; +} +.Pet-Horse-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -328px -200px; + width: 81px; + height: 99px; +} +.Pet-JackOLantern-Base { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -82px -300px; + width: 81px; + height: 99px; +} +.Pet-JackOLantern-Ghost { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -164px -300px; + width: 81px; + height: 99px; +} +.Pet-Jackalope-RoyalPurple { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: 0px -300px; + width: 81px; + height: 99px; +} +.Pet-Lion-Veteran { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -246px -300px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Aquatic { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -328px -300px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Base { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -410px 0px; + width: 81px; + height: 99px; +} +.Pet-LionCub-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -410px -100px; + width: 81px; + height: 99px; +} +.Pet-LionCub-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -410px -200px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Cupid { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -410px -300px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -492px 0px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Ember { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -492px -100px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Fairy { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -492px -200px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Floral { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -492px -300px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Ghost { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: 0px -400px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Glass { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -82px -400px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -164px -400px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Holly { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -246px -400px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -328px -400px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -410px -400px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Red { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -492px -400px; + width: 81px; + height: 99px; +} +.Pet-LionCub-RoyalPurple { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -574px 0px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -574px -100px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Shimmer { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -574px -200px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -574px -300px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Spooky { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -574px -400px; + width: 81px; + height: 99px; +} +.Pet-LionCub-StarryNight { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: 0px -500px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Thunderstorm { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -82px -500px; + width: 81px; + height: 99px; +} +.Pet-LionCub-White { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -164px -500px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -246px -500px; + width: 81px; + height: 99px; +} +.Pet-MagicalBee-Base { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -328px -500px; + width: 81px; + height: 99px; +} +.Pet-Mammoth-Base { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -410px -500px; + width: 81px; + height: 99px; +} +.Pet-MantisShrimp-Base { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -492px -500px; + width: 81px; + height: 99px; +} +.Pet-Monkey-Base { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -574px -500px; + width: 81px; + height: 99px; +} +.Pet-Monkey-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -656px 0px; + width: 81px; + height: 99px; +} +.Pet-Monkey-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -656px -100px; + width: 81px; + height: 99px; +} +.Pet-Monkey-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -656px -200px; + width: 81px; + height: 99px; +} +.Pet-Monkey-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -656px -300px; + width: 81px; + height: 99px; +} +.Pet-Monkey-Red { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -656px -400px; + width: 81px; + height: 99px; +} +.Pet-Monkey-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -656px -500px; + width: 81px; + height: 99px; +} +.Pet-Monkey-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: 0px -600px; + width: 81px; + height: 99px; +} +.Pet-Monkey-White { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -82px -600px; + width: 81px; + height: 99px; +} +.Pet-Monkey-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -164px -600px; + width: 81px; + height: 99px; +} +.Pet-Nudibranch-Base { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -246px -600px; + width: 81px; + height: 99px; +} +.Pet-Nudibranch-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -328px -600px; + width: 81px; + height: 99px; +} +.Pet-Nudibranch-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -410px -600px; + width: 81px; + height: 99px; +} +.Pet-Nudibranch-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -492px -600px; + width: 81px; + height: 99px; +} +.Pet-Nudibranch-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -574px -600px; + width: 81px; + height: 99px; +} +.Pet-Nudibranch-Red { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -656px -600px; + width: 81px; + height: 99px; +} +.Pet-Nudibranch-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -738px 0px; + width: 81px; + height: 99px; +} +.Pet-Nudibranch-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -738px -100px; + width: 81px; + height: 99px; +} +.Pet-Nudibranch-White { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -738px -200px; + width: 81px; + height: 99px; +} +.Pet-Nudibranch-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -738px -300px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Base { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -738px -400px; + width: 81px; + height: 99px; +} +.Pet-Octopus-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -738px -500px; + width: 81px; + height: 99px; +} +.Pet-Octopus-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -738px -600px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: 0px -700px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -82px -700px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Red { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -164px -700px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -246px -700px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -328px -700px; + width: 81px; + height: 99px; +} +.Pet-Octopus-White { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -410px -700px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -492px -700px; + width: 81px; + height: 99px; +} +.Pet-Orca-Base { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -574px -700px; + width: 81px; + height: 99px; +} +.Pet-Owl-Base { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -656px -700px; + width: 81px; + height: 99px; +} +.Pet-Owl-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -738px -700px; + width: 81px; + height: 99px; +} +.Pet-Owl-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -820px 0px; + width: 81px; + height: 99px; +} +.Pet-Owl-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -820px -100px; + width: 81px; + height: 99px; +} +.Pet-Owl-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -820px -200px; + width: 81px; + height: 99px; +} +.Pet-Owl-Red { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -820px -300px; + width: 81px; + height: 99px; +} +.Pet-Owl-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -820px -400px; + width: 81px; + height: 99px; +} +.Pet-Owl-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -820px -500px; + width: 81px; + height: 99px; +} +.Pet-Owl-White { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -820px -600px; + width: 81px; + height: 99px; +} +.Pet-Owl-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -820px -700px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Aquatic { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: 0px -800px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Base { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -82px -800px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -164px -800px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -246px -800px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Cupid { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -328px -800px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -410px -800px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Ember { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -492px -800px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Fairy { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -574px -800px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Floral { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -656px -800px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Ghost { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -738px -800px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Glass { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -820px -800px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -902px 0px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Holly { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -902px -100px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -902px -200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -902px -300px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Red { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -902px -400px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-RoyalPurple { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -902px -500px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -902px -600px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Shimmer { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -902px -700px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -902px -800px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Spooky { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -984px 0px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-StarryNight { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -984px -100px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Thunderstorm { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -984px -200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-White { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -984px -300px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -984px -400px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Base { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -984px -500px; + width: 81px; + height: 99px; +} +.Pet-Parrot-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -984px -600px; + width: 81px; + height: 99px; +} +.Pet-Parrot-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -984px -700px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -984px -800px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: 0px -900px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Red { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -82px -900px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -164px -900px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -246px -900px; + width: 81px; + height: 99px; +} +.Pet-Parrot-White { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -328px -900px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -410px -900px; + width: 81px; + height: 99px; +} +.Pet-Peacock-Base { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -492px -900px; + width: 81px; + height: 99px; +} +.Pet-Peacock-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -574px -900px; + width: 81px; + height: 99px; +} +.Pet-Peacock-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -656px -900px; + width: 81px; + height: 99px; +} +.Pet-Peacock-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -738px -900px; + width: 81px; + height: 99px; +} +.Pet-Peacock-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -820px -900px; + width: 81px; + height: 99px; +} +.Pet-Peacock-Red { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -902px -900px; + width: 81px; + height: 99px; +} +.Pet-Peacock-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -984px -900px; + width: 81px; + height: 99px; +} +.Pet-Peacock-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1066px 0px; + width: 81px; + height: 99px; +} +.Pet-Peacock-White { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1066px -100px; + width: 81px; + height: 99px; +} +.Pet-Peacock-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1066px -200px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Base { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1066px -300px; + width: 81px; + height: 99px; +} +.Pet-Penguin-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1066px -400px; + width: 81px; + height: 99px; +} +.Pet-Penguin-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1066px -500px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1066px -600px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1066px -700px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Red { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1066px -800px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1066px -900px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: 0px -1000px; + width: 81px; + height: 99px; +} +.Pet-Penguin-White { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -82px -1000px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -164px -1000px; + width: 81px; + height: 99px; +} +.Pet-Phoenix-Base { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -246px -1000px; + width: 81px; + height: 99px; +} +.Pet-Pterodactyl-Base { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -328px -1000px; + width: 81px; + height: 99px; +} +.Pet-Pterodactyl-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -410px -1000px; + width: 81px; + height: 99px; +} +.Pet-Pterodactyl-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -492px -1000px; + width: 81px; + height: 99px; +} +.Pet-Pterodactyl-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -574px -1000px; + width: 81px; + height: 99px; +} +.Pet-Pterodactyl-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -656px -1000px; + width: 81px; + height: 99px; +} +.Pet-Pterodactyl-Red { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -738px -1000px; + width: 81px; + height: 99px; +} +.Pet-Pterodactyl-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -820px -1000px; + width: 81px; + height: 99px; +} +.Pet-Pterodactyl-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -902px -1000px; + width: 81px; + height: 99px; +} +.Pet-Pterodactyl-White { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -984px -1000px; + width: 81px; + height: 99px; +} +.Pet-Pterodactyl-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1066px -1000px; + width: 81px; + height: 99px; +} +.Pet-Rat-Base { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1148px 0px; + width: 81px; + height: 99px; +} +.Pet-Rat-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1148px -100px; + width: 81px; + height: 99px; +} +.Pet-Rat-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1148px -200px; + width: 81px; + height: 99px; +} +.Pet-Rat-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1148px -300px; + width: 81px; + height: 99px; +} +.Pet-Rat-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1148px -400px; + width: 81px; + height: 99px; +} +.Pet-Rat-Red { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1148px -500px; + width: 81px; + height: 99px; +} +.Pet-Rat-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1148px -600px; + width: 81px; + height: 99px; +} +.Pet-Rat-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1148px -700px; + width: 81px; + height: 99px; +} +.Pet-Rat-White { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1148px -800px; + width: 81px; + height: 99px; +} +.Pet-Rat-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1148px -900px; + width: 81px; + height: 99px; +} +.Pet-Rock-Base { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1148px -1000px; + width: 81px; + height: 99px; +} +.Pet-Rock-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: 0px -1100px; + width: 81px; + height: 99px; +} +.Pet-Rock-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: 0px 0px; width: 81px; height: 99px; } -.Pet-Snail-Golden { +.Pet-Rock-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -164px -1100px; + width: 81px; + height: 99px; +} +.Pet-Rock-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -246px -1100px; + width: 81px; + height: 99px; +} +.Pet-Rock-Red { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -328px -1100px; width: 81px; height: 99px; } -.Pet-Snail-Red { +.Pet-Rock-Shade { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -410px -1100px; width: 81px; height: 99px; } -.Pet-Snail-Shade { +.Pet-Rock-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -492px -1100px; width: 81px; height: 99px; } -.Pet-Snail-Skeleton { +.Pet-Rock-White { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -574px -1100px; width: 81px; height: 99px; } -.Pet-Snail-White { +.Pet-Rock-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -656px -1100px; width: 81px; height: 99px; } -.Pet-Snail-Zombie { +.Pet-Rooster-Base { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -738px -1100px; width: 81px; height: 99px; } -.Pet-Snake-Base { +.Pet-Rooster-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -820px -1100px; width: 81px; height: 99px; } -.Pet-Snake-CottonCandyBlue { +.Pet-Rooster-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -902px -1100px; width: 81px; height: 99px; } -.Pet-Snake-CottonCandyPink { +.Pet-Rooster-Desert { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -984px -1100px; width: 81px; height: 99px; } -.Pet-Snake-Desert { +.Pet-Rooster-Golden { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1066px -1100px; width: 81px; height: 99px; } -.Pet-Snake-Golden { +.Pet-Rooster-Red { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1148px -1100px; width: 81px; height: 99px; } -.Pet-Snake-Red { +.Pet-Rooster-Shade { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1230px 0px; width: 81px; height: 99px; } -.Pet-Snake-Shade { +.Pet-Rooster-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1230px -100px; width: 81px; height: 99px; } -.Pet-Snake-Skeleton { +.Pet-Rooster-White { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1230px -200px; width: 81px; height: 99px; } -.Pet-Snake-White { +.Pet-Rooster-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1230px -300px; width: 81px; height: 99px; } -.Pet-Snake-Zombie { +.Pet-Sabretooth-Base { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1230px -400px; width: 81px; height: 99px; } -.Pet-Spider-Base { +.Pet-Sabretooth-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1230px -500px; width: 81px; height: 99px; } -.Pet-Spider-CottonCandyBlue { +.Pet-Sabretooth-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1230px -600px; width: 81px; height: 99px; } -.Pet-Spider-CottonCandyPink { +.Pet-Sabretooth-Desert { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1230px -700px; width: 81px; height: 99px; } -.Pet-Spider-Desert { +.Pet-Sabretooth-Golden { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1230px -800px; width: 81px; height: 99px; } -.Pet-Spider-Golden { +.Pet-Sabretooth-Red { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1230px -900px; width: 81px; height: 99px; } -.Pet-Spider-Red { +.Pet-Sabretooth-Shade { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1230px -1000px; width: 81px; height: 99px; } -.Pet-Spider-Shade { +.Pet-Sabretooth-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1230px -1100px; width: 81px; height: 99px; } -.Pet-Spider-Skeleton { +.Pet-Sabretooth-White { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: 0px -1200px; width: 81px; height: 99px; } -.Pet-Spider-White { +.Pet-Sabretooth-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -82px -1200px; width: 81px; height: 99px; } -.Pet-Spider-Zombie { +.Pet-Seahorse-Base { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -164px -1200px; width: 81px; height: 99px; } -.Pet-Squirrel-Base { +.Pet-Seahorse-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -246px -1200px; width: 81px; height: 99px; } -.Pet-Squirrel-CottonCandyBlue { +.Pet-Seahorse-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -328px -1200px; width: 81px; height: 99px; } -.Pet-Squirrel-CottonCandyPink { +.Pet-Seahorse-Desert { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -410px -1200px; width: 81px; height: 99px; } -.Pet-Squirrel-Desert { +.Pet-Seahorse-Golden { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -492px -1200px; width: 81px; height: 99px; } -.Pet-Squirrel-Golden { +.Pet-Seahorse-Red { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -574px -1200px; width: 81px; height: 99px; } -.Pet-Squirrel-Red { +.Pet-Seahorse-Shade { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -656px -1200px; width: 81px; height: 99px; } -.Pet-Squirrel-Shade { +.Pet-Seahorse-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -738px -1200px; width: 81px; height: 99px; } -.Pet-Squirrel-Skeleton { +.Pet-Seahorse-White { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -820px -1200px; width: 81px; height: 99px; } -.Pet-Squirrel-White { +.Pet-Seahorse-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -902px -1200px; width: 81px; height: 99px; } -.Pet-Squirrel-Zombie { +.Pet-Sheep-Base { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -984px -1200px; width: 81px; height: 99px; } -.Pet-TRex-Base { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -492px -1300px; - width: 81px; - height: 99px; -} -.Pet-TRex-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -574px -1300px; - width: 81px; - height: 99px; -} -.Pet-TRex-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -656px -1300px; - width: 81px; - height: 99px; -} -.Pet-TRex-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -738px -1300px; - width: 81px; - height: 99px; -} -.Pet-TRex-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -820px -1300px; - width: 81px; - height: 99px; -} -.Pet-TRex-Red { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -902px -1300px; - width: 81px; - height: 99px; -} -.Pet-TRex-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -984px -1300px; - width: 81px; - height: 99px; -} -.Pet-TRex-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1066px -1300px; - width: 81px; - height: 99px; -} -.Pet-TRex-White { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1148px -1300px; - width: 81px; - height: 99px; -} -.Pet-TRex-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1230px -1300px; - width: 81px; - height: 99px; -} -.Pet-Tiger-Veteran { +.Pet-Sheep-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1066px -1200px; width: 81px; height: 99px; } -.Pet-TigerCub-Aquatic { +.Pet-Sheep-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1148px -1200px; width: 81px; height: 99px; } -.Pet-TigerCub-Base { +.Pet-Sheep-Desert { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1230px -1200px; width: 81px; height: 99px; } -.Pet-TigerCub-CottonCandyBlue { +.Pet-Sheep-Golden { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1312px 0px; width: 81px; height: 99px; } -.Pet-TigerCub-CottonCandyPink { +.Pet-Sheep-Red { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1312px -100px; width: 81px; height: 99px; } -.Pet-TigerCub-Cupid { +.Pet-Sheep-Shade { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1312px -200px; width: 81px; height: 99px; } -.Pet-TigerCub-Desert { +.Pet-Sheep-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1312px -300px; width: 81px; height: 99px; } -.Pet-TigerCub-Ember { +.Pet-Sheep-White { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1312px -400px; width: 81px; height: 99px; } -.Pet-TigerCub-Fairy { +.Pet-Sheep-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1312px -500px; width: 81px; height: 99px; } -.Pet-TigerCub-Floral { +.Pet-Slime-Base { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1312px -600px; width: 81px; height: 99px; } -.Pet-TigerCub-Ghost { +.Pet-Slime-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1312px -700px; width: 81px; height: 99px; } -.Pet-TigerCub-Golden { +.Pet-Slime-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1312px -800px; width: 81px; height: 99px; } -.Pet-TigerCub-Holly { +.Pet-Slime-Desert { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1312px -900px; width: 81px; height: 99px; } -.Pet-TigerCub-Peppermint { +.Pet-Slime-Golden { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1312px -1000px; width: 81px; height: 99px; } -.Pet-TigerCub-Rainbow { +.Pet-Slime-Red { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1312px -1100px; width: 81px; height: 99px; } -.Pet-TigerCub-Red { +.Pet-Slime-Shade { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1312px -1200px; width: 81px; height: 99px; } -.Pet-TigerCub-RoyalPurple { +.Pet-Slime-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1394px 0px; width: 81px; height: 99px; } -.Pet-TigerCub-Shade { +.Pet-Slime-White { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1394px -100px; width: 81px; height: 99px; } -.Pet-TigerCub-Shimmer { +.Pet-Slime-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1394px -200px; width: 81px; height: 99px; } -.Pet-TigerCub-Skeleton { +.Pet-Sloth-Base { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1394px -300px; width: 81px; height: 99px; } -.Pet-TigerCub-Spooky { +.Pet-Sloth-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1394px -400px; width: 81px; height: 99px; } -.Pet-TigerCub-StarryNight { +.Pet-Sloth-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1394px -500px; width: 81px; height: 99px; } -.Pet-TigerCub-Thunderstorm { +.Pet-Sloth-Desert { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1394px -600px; width: 81px; height: 99px; } -.Pet-TigerCub-White { +.Pet-Sloth-Golden { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1394px -700px; width: 81px; height: 99px; } -.Pet-TigerCub-Zombie { +.Pet-Sloth-Red { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1394px -800px; width: 81px; height: 99px; } -.Pet-Treeling-Base { +.Pet-Sloth-Shade { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1394px -900px; width: 81px; height: 99px; } -.Pet-Treeling-CottonCandyBlue { +.Pet-Sloth-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1394px -1000px; width: 81px; height: 99px; } -.Pet-Treeling-CottonCandyPink { +.Pet-Sloth-White { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1394px -1100px; width: 81px; height: 99px; } -.Pet-Treeling-Desert { +.Pet-Sloth-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1394px -1200px; width: 81px; height: 99px; } -.Pet-Treeling-Golden { +.Pet-Snail-Base { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: 0px -1300px; width: 81px; height: 99px; } -.Pet-Treeling-Red { +.Pet-Snail-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -82px -1300px; width: 81px; height: 99px; } -.Pet-Treeling-Shade { +.Pet-Snail-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -164px -1300px; width: 81px; height: 99px; } -.Pet-Treeling-Skeleton { +.Pet-Snail-Desert { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -246px -1300px; width: 81px; height: 99px; } -.Pet-Treeling-White { +.Pet-Snail-Golden { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -328px -1300px; width: 81px; height: 99px; } -.Pet-Treeling-Zombie { +.Pet-Snail-Red { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -410px -1300px; width: 81px; height: 99px; } -.Pet-Triceratops-Base { +.Pet-Snail-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -492px -1300px; + width: 81px; + height: 99px; +} +.Pet-Snail-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -574px -1300px; + width: 81px; + height: 99px; +} +.Pet-Snail-White { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -656px -1300px; + width: 81px; + height: 99px; +} +.Pet-Snail-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -738px -1300px; + width: 81px; + height: 99px; +} +.Pet-Snake-Base { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -820px -1300px; + width: 81px; + height: 99px; +} +.Pet-Snake-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -902px -1300px; + width: 81px; + height: 99px; +} +.Pet-Snake-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -984px -1300px; + width: 81px; + height: 99px; +} +.Pet-Snake-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1066px -1300px; + width: 81px; + height: 99px; +} +.Pet-Snake-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1148px -1300px; + width: 81px; + height: 99px; +} +.Pet-Snake-Red { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1230px -1300px; + width: 81px; + height: 99px; +} +.Pet-Snake-Shade { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1312px -1300px; width: 81px; height: 99px; } -.Pet-Triceratops-CottonCandyBlue { +.Pet-Snake-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1394px -1300px; width: 81px; height: 99px; } -.Pet-Triceratops-CottonCandyPink { +.Pet-Snake-White { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1476px 0px; width: 81px; height: 99px; } -.Pet-Triceratops-Desert { +.Pet-Snake-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1476px -100px; width: 81px; height: 99px; } -.Pet-Triceratops-Golden { +.Pet-Spider-Base { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1476px -200px; width: 81px; height: 99px; } -.Pet-Triceratops-Red { +.Pet-Spider-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1476px -300px; width: 81px; height: 99px; } -.Pet-Triceratops-Shade { +.Pet-Spider-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1476px -400px; width: 81px; height: 99px; } -.Pet-Triceratops-Skeleton { +.Pet-Spider-Desert { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1476px -500px; width: 81px; height: 99px; } -.Pet-Triceratops-White { +.Pet-Spider-Golden { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1476px -600px; width: 81px; height: 99px; } -.Pet-Triceratops-Zombie { +.Pet-Spider-Red { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1476px -700px; width: 81px; height: 99px; } -.Pet-Turkey-Base { +.Pet-Spider-Shade { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1476px -800px; width: 81px; height: 99px; } -.Pet-Turkey-Gilded { +.Pet-Spider-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1476px -900px; width: 81px; height: 99px; } -.Pet-Turtle-Base { +.Pet-Spider-White { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1476px -1000px; width: 81px; height: 99px; } -.Pet-Turtle-CottonCandyBlue { +.Pet-Spider-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1476px -1100px; width: 81px; height: 99px; } -.Pet-Turtle-CottonCandyPink { +.Pet-Squirrel-Base { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1476px -1200px; width: 81px; height: 99px; } -.Pet-Turtle-Desert { +.Pet-Squirrel-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1476px -1300px; width: 81px; height: 99px; } -.Pet-Turtle-Golden { +.Pet-Squirrel-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: 0px -1400px; width: 81px; height: 99px; } -.Pet-Turtle-Red { +.Pet-Squirrel-Desert { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -82px -1400px; width: 81px; height: 99px; } -.Pet-Turtle-Shade { +.Pet-Squirrel-Golden { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -164px -1400px; width: 81px; height: 99px; } -.Pet-Turtle-Skeleton { +.Pet-Squirrel-Red { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -246px -1400px; width: 81px; height: 99px; } -.Pet-Turtle-White { +.Pet-Squirrel-Shade { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -328px -1400px; width: 81px; height: 99px; } -.Pet-Turtle-Zombie { +.Pet-Squirrel-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -410px -1400px; width: 81px; height: 99px; } -.Pet-Unicorn-Base { +.Pet-Squirrel-White { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -492px -1400px; width: 81px; height: 99px; } -.Pet-Unicorn-CottonCandyBlue { +.Pet-Squirrel-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -574px -1400px; width: 81px; height: 99px; } -.Pet-Unicorn-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -656px -1400px; - width: 81px; - height: 99px; -} -.Pet-Unicorn-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -738px -1400px; - width: 81px; - height: 99px; -} -.Pet-Unicorn-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -820px -1400px; - width: 81px; - height: 99px; -} -.Pet-Unicorn-Red { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -902px -1400px; - width: 81px; - height: 99px; -} -.Pet-Unicorn-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -984px -1400px; - width: 81px; - height: 99px; -} -.Pet-Unicorn-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1066px -1400px; - width: 81px; - height: 99px; -} -.Pet-Unicorn-White { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1148px -1400px; - width: 81px; - height: 99px; -} -.Pet-Unicorn-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1230px -1400px; - width: 81px; - height: 99px; -} -.Pet-Whale-Base { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1312px -1400px; - width: 81px; - height: 99px; -} -.Pet-Whale-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1394px -1400px; - width: 81px; - height: 99px; -} -.Pet-Whale-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1476px -1400px; - width: 81px; - height: 99px; -} -.Pet-Whale-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1558px 0px; - width: 81px; - height: 99px; -} -.Pet-Whale-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1558px -100px; - width: 81px; - height: 99px; -} -.Pet-Whale-Red { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1558px -200px; - width: 81px; - height: 99px; -} -.Pet-Whale-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1558px -300px; - width: 81px; - height: 99px; -} -.Pet-Whale-Skeleton { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1558px -400px; - width: 81px; - height: 99px; -} -.Pet-Whale-White { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1558px -500px; - width: 81px; - height: 99px; -} -.Pet-Whale-Zombie { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1558px -600px; - width: 81px; - height: 99px; -} -.Pet-Wolf-Aquatic { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1558px -700px; - width: 81px; - height: 99px; -} -.Pet-Wolf-Base { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1558px -800px; - width: 81px; - height: 99px; -} -.Pet-Wolf-CottonCandyBlue { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1558px -900px; - width: 81px; - height: 99px; -} -.Pet-Wolf-CottonCandyPink { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1558px -1000px; - width: 81px; - height: 99px; -} -.Pet-Wolf-Cupid { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1558px -1100px; - width: 81px; - height: 99px; -} -.Pet-Wolf-Desert { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1558px -1200px; - width: 81px; - height: 99px; -} -.Pet-Wolf-Ember { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1558px -1300px; - width: 81px; - height: 99px; -} -.Pet-Wolf-Fairy { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1558px -1400px; - width: 81px; - height: 99px; -} -.Pet-Wolf-Floral { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: 0px -1500px; - width: 81px; - height: 99px; -} -.Pet-Wolf-Ghost { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -82px -1500px; - width: 81px; - height: 99px; -} -.Pet-Wolf-Golden { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -164px -1500px; - width: 81px; - height: 99px; -} -.Pet-Wolf-Holly { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -246px -1500px; - width: 81px; - height: 99px; -} -.Pet-Wolf-Peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -328px -1500px; - width: 81px; - height: 99px; -} -.Pet-Wolf-Rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -410px -1500px; - width: 81px; - height: 99px; -} -.Pet-Wolf-Red { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -492px -1500px; - width: 81px; - height: 99px; -} -.Pet-Wolf-RoyalPurple { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -574px -1500px; - width: 81px; - height: 99px; -} -.Pet-Wolf-Shade { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -656px -1500px; - width: 81px; - height: 99px; -} -.Pet-Wolf-Shimmer { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -738px -1500px; - width: 81px; - height: 99px; -} -.Pet-Wolf-Skeleton { +.Pet-TRex-Base { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -820px -1500px; width: 81px; height: 99px; } -.Pet-Wolf-Spooky { +.Pet-TRex-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -902px -1500px; width: 81px; height: 99px; } -.Pet-Wolf-StarryNight { +.Pet-TRex-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -984px -1500px; width: 81px; height: 99px; } -.Pet-Wolf-Thunderstorm { +.Pet-TRex-Desert { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1066px -1500px; width: 81px; height: 99px; } -.Pet-Wolf-Veteran { +.Pet-TRex-Golden { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1148px -1500px; width: 81px; height: 99px; } -.Pet-Wolf-White { +.Pet-TRex-Red { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1230px -1500px; width: 81px; height: 99px; } -.Pet-Wolf-Zombie { +.Pet-TRex-Shade { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1312px -1500px; width: 81px; height: 99px; } -.Pet-Yarn-Base { +.Pet-TRex-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1394px -1500px; width: 81px; height: 99px; } -.Pet-Yarn-CottonCandyBlue { +.Pet-TRex-White { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1476px -1500px; width: 81px; height: 99px; } -.Pet-Yarn-CottonCandyPink { +.Pet-TRex-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1558px -1500px; width: 81px; height: 99px; } -.Pet-Yarn-Desert { +.Pet-Tiger-Veteran { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -656px -1400px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Aquatic { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -738px -1400px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Base { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -820px -1400px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -902px -1400px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -984px -1400px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Cupid { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1066px -1400px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1148px -1400px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Ember { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1230px -1400px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Fairy { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1312px -1400px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Floral { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1394px -1400px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Ghost { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1476px -1400px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Glass { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1558px 0px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1558px -100px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Holly { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1558px -200px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1558px -300px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1558px -400px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Red { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1558px -500px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-RoyalPurple { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1558px -600px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1558px -700px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Shimmer { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1558px -800px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1558px -900px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Spooky { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1558px -1000px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-StarryNight { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1558px -1100px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Thunderstorm { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1558px -1200px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-White { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1558px -1300px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -1558px -1400px; + width: 81px; + height: 99px; +} +.Pet-Treeling-Base { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: 0px -1500px; + width: 81px; + height: 99px; +} +.Pet-Treeling-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -82px -1500px; + width: 81px; + height: 99px; +} +.Pet-Treeling-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -164px -1500px; + width: 81px; + height: 99px; +} +.Pet-Treeling-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -246px -1500px; + width: 81px; + height: 99px; +} +.Pet-Treeling-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -328px -1500px; + width: 81px; + height: 99px; +} +.Pet-Treeling-Red { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -410px -1500px; + width: 81px; + height: 99px; +} +.Pet-Treeling-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -492px -1500px; + width: 81px; + height: 99px; +} +.Pet-Treeling-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -574px -1500px; + width: 81px; + height: 99px; +} +.Pet-Treeling-White { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -656px -1500px; + width: 81px; + height: 99px; +} +.Pet-Treeling-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-21.png'); + background-position: -738px -1500px; + width: 81px; + height: 99px; +} +.Pet-Triceratops-Base { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1640px 0px; width: 81px; height: 99px; } -.Pet-Yarn-Golden { +.Pet-Triceratops-CottonCandyBlue { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1640px -100px; width: 81px; height: 99px; } -.Pet-Yarn-Red { +.Pet-Triceratops-CottonCandyPink { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1640px -200px; width: 81px; height: 99px; } -.Pet-Yarn-Shade { +.Pet-Triceratops-Desert { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1640px -300px; width: 81px; height: 99px; } -.Pet-Yarn-Skeleton { +.Pet-Triceratops-Golden { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1640px -400px; width: 81px; height: 99px; } -.Pet-Yarn-White { +.Pet-Triceratops-Red { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1640px -500px; width: 81px; height: 99px; } -.Pet-Yarn-Zombie { +.Pet-Triceratops-Shade { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1640px -600px; width: 81px; height: 99px; } -.Pet_HatchingPotion_Aquatic { +.Pet-Triceratops-Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); background-position: -1640px -700px; - width: 68px; - height: 68px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_Base { +.Pet-Triceratops-White { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1640px -769px; - width: 68px; - height: 68px; + background-position: -1640px -800px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_CottonCandyBlue { +.Pet-Triceratops-Zombie { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1640px -838px; - width: 68px; - height: 68px; + background-position: -1640px -900px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_CottonCandyPink { +.Pet-Turkey-Base { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1640px -907px; - width: 68px; - height: 68px; + background-position: -1640px -1000px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_Cupid { +.Pet-Turkey-Gilded { background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1640px -976px; - width: 68px; - height: 68px; -} -.Pet_HatchingPotion_Desert { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1640px -1045px; - width: 68px; - height: 68px; -} -.Pet_HatchingPotion_Ember { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1640px -1114px; - width: 68px; - height: 68px; -} -.Pet_HatchingPotion_Fairy { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1640px -1183px; - width: 68px; - height: 68px; -} -.Pet_HatchingPotion_Floral { - background-image: url('~assets/images/sprites/spritesmith-main-21.png'); - background-position: -1640px -1252px; - width: 68px; - height: 68px; + background-position: -1640px -1100px; + width: 81px; + height: 99px; } diff --git a/website/client/assets/css/sprites/spritesmith-main-22.css b/website/client/assets/css/sprites/spritesmith-main-22.css index 2a23fa620d..2fec11aee1 100644 --- a/website/client/assets/css/sprites/spritesmith-main-22.css +++ b/website/client/assets/css/sprites/spritesmith-main-22.css @@ -1,96 +1,552 @@ +.Pet-Turtle-Base { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -82px 0px; + width: 81px; + height: 99px; +} +.Pet-Turtle-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -492px -500px; + width: 81px; + height: 99px; +} +.Pet-Turtle-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -164px 0px; + width: 81px; + height: 99px; +} +.Pet-Turtle-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: 0px -100px; + width: 81px; + height: 99px; +} +.Pet-Turtle-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -82px -100px; + width: 81px; + height: 99px; +} +.Pet-Turtle-Red { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -164px -100px; + width: 81px; + height: 99px; +} +.Pet-Turtle-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -246px 0px; + width: 81px; + height: 99px; +} +.Pet-Turtle-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -246px -100px; + width: 81px; + height: 99px; +} +.Pet-Turtle-White { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: 0px -200px; + width: 81px; + height: 99px; +} +.Pet-Turtle-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -82px -200px; + width: 81px; + height: 99px; +} +.Pet-Unicorn-Base { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -164px -200px; + width: 81px; + height: 99px; +} +.Pet-Unicorn-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -246px -200px; + width: 81px; + height: 99px; +} +.Pet-Unicorn-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -328px 0px; + width: 81px; + height: 99px; +} +.Pet-Unicorn-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -328px -100px; + width: 81px; + height: 99px; +} +.Pet-Unicorn-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -328px -200px; + width: 81px; + height: 99px; +} +.Pet-Unicorn-Red { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: 0px -300px; + width: 81px; + height: 99px; +} +.Pet-Unicorn-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -82px -300px; + width: 81px; + height: 99px; +} +.Pet-Unicorn-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -164px -300px; + width: 81px; + height: 99px; +} +.Pet-Unicorn-White { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -246px -300px; + width: 81px; + height: 99px; +} +.Pet-Unicorn-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -328px -300px; + width: 81px; + height: 99px; +} +.Pet-Whale-Base { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -410px 0px; + width: 81px; + height: 99px; +} +.Pet-Whale-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -410px -100px; + width: 81px; + height: 99px; +} +.Pet-Whale-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -410px -200px; + width: 81px; + height: 99px; +} +.Pet-Whale-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -410px -300px; + width: 81px; + height: 99px; +} +.Pet-Whale-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -492px 0px; + width: 81px; + height: 99px; +} +.Pet-Whale-Red { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -492px -100px; + width: 81px; + height: 99px; +} +.Pet-Whale-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -492px -200px; + width: 81px; + height: 99px; +} +.Pet-Whale-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -492px -300px; + width: 81px; + height: 99px; +} +.Pet-Whale-White { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: 0px -400px; + width: 81px; + height: 99px; +} +.Pet-Whale-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -82px -400px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Aquatic { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -164px -400px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Base { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -246px -400px; + width: 81px; + height: 99px; +} +.Pet-Wolf-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -328px -400px; + width: 81px; + height: 99px; +} +.Pet-Wolf-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -410px -400px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Cupid { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -492px -400px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -574px 0px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Ember { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -574px -100px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Fairy { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -574px -200px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Floral { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -574px -300px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Ghost { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -574px -400px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Glass { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: 0px -500px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -82px -500px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Holly { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -164px -500px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -246px -500px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -328px -500px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Red { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -410px -500px; + width: 81px; + height: 99px; +} +.Pet-Wolf-RoyalPurple { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: 0px 0px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -574px -500px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Shimmer { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -656px 0px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -656px -100px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Spooky { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -656px -200px; + width: 81px; + height: 99px; +} +.Pet-Wolf-StarryNight { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -656px -300px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Thunderstorm { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -656px -400px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Veteran { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -656px -500px; + width: 81px; + height: 99px; +} +.Pet-Wolf-White { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: 0px -600px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -82px -600px; + width: 81px; + height: 99px; +} +.Pet-Yarn-Base { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -164px -600px; + width: 81px; + height: 99px; +} +.Pet-Yarn-CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -246px -600px; + width: 81px; + height: 99px; +} +.Pet-Yarn-CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -328px -600px; + width: 81px; + height: 99px; +} +.Pet-Yarn-Desert { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -410px -600px; + width: 81px; + height: 99px; +} +.Pet-Yarn-Golden { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -492px -600px; + width: 81px; + height: 99px; +} +.Pet-Yarn-Red { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -574px -600px; + width: 81px; + height: 99px; +} +.Pet-Yarn-Shade { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -656px -600px; + width: 81px; + height: 99px; +} +.Pet-Yarn-Skeleton { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -738px 0px; + width: 81px; + height: 99px; +} +.Pet-Yarn-White { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -738px -100px; + width: 81px; + height: 99px; +} +.Pet-Yarn-Zombie { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -738px -200px; + width: 81px; + height: 99px; +} +.Pet_HatchingPotion_Aquatic { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -738px -369px; + width: 68px; + height: 68px; +} +.Pet_HatchingPotion_Base { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -552px -700px; + width: 68px; + height: 68px; +} +.Pet_HatchingPotion_CottonCandyBlue { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -738px -438px; + width: 68px; + height: 68px; +} +.Pet_HatchingPotion_CottonCandyPink { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -738px -507px; + width: 68px; + height: 68px; +} +.Pet_HatchingPotion_Cupid { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -738px -576px; + width: 68px; + height: 68px; +} +.Pet_HatchingPotion_Desert { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: 0px -700px; + width: 68px; + height: 68px; +} +.Pet_HatchingPotion_Ember { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -69px -700px; + width: 68px; + height: 68px; +} +.Pet_HatchingPotion_Fairy { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -138px -700px; + width: 68px; + height: 68px; +} +.Pet_HatchingPotion_Floral { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -207px -700px; + width: 68px; + height: 68px; +} .Pet_HatchingPotion_Ghost { background-image: url('~assets/images/sprites/spritesmith-main-22.png'); - background-position: -69px 0px; + background-position: -276px -700px; + width: 68px; + height: 68px; +} +.Pet_HatchingPotion_Glass { + background-image: url('~assets/images/sprites/spritesmith-main-22.png'); + background-position: -345px -700px; width: 68px; height: 68px; } .Pet_HatchingPotion_Golden { background-image: url('~assets/images/sprites/spritesmith-main-22.png'); - background-position: -138px -138px; + background-position: -414px -700px; width: 68px; height: 68px; } .Pet_HatchingPotion_Holly { background-image: url('~assets/images/sprites/spritesmith-main-22.png'); - background-position: 0px -69px; + background-position: -483px -700px; width: 68px; height: 68px; } .Pet_HatchingPotion_Peppermint { background-image: url('~assets/images/sprites/spritesmith-main-22.png'); - background-position: -69px -69px; + background-position: -738px -300px; width: 68px; height: 68px; } .Pet_HatchingPotion_Purple { background-image: url('~assets/images/sprites/spritesmith-main-22.png'); - background-position: -138px 0px; + background-position: -621px -700px; width: 68px; height: 68px; } .Pet_HatchingPotion_Rainbow { background-image: url('~assets/images/sprites/spritesmith-main-22.png'); - background-position: -138px -69px; + background-position: -690px -700px; width: 68px; height: 68px; } .Pet_HatchingPotion_Red { background-image: url('~assets/images/sprites/spritesmith-main-22.png'); - background-position: 0px -138px; + background-position: -820px 0px; width: 68px; height: 68px; } .Pet_HatchingPotion_RoyalPurple { background-image: url('~assets/images/sprites/spritesmith-main-22.png'); - background-position: -69px -138px; + background-position: -820px -69px; width: 68px; height: 68px; } .Pet_HatchingPotion_Shade { background-image: url('~assets/images/sprites/spritesmith-main-22.png'); - background-position: 0px 0px; + background-position: -820px -138px; width: 68px; height: 68px; } .Pet_HatchingPotion_Shimmer { background-image: url('~assets/images/sprites/spritesmith-main-22.png'); - background-position: -207px 0px; + background-position: -820px -207px; width: 68px; height: 68px; } .Pet_HatchingPotion_Skeleton { background-image: url('~assets/images/sprites/spritesmith-main-22.png'); - background-position: -207px -69px; + background-position: -820px -276px; width: 68px; height: 68px; } .Pet_HatchingPotion_Spooky { background-image: url('~assets/images/sprites/spritesmith-main-22.png'); - background-position: -207px -138px; + background-position: -820px -345px; width: 68px; height: 68px; } .Pet_HatchingPotion_StarryNight { background-image: url('~assets/images/sprites/spritesmith-main-22.png'); - background-position: 0px -207px; + background-position: -820px -414px; width: 68px; height: 68px; } .Pet_HatchingPotion_Thunderstorm { background-image: url('~assets/images/sprites/spritesmith-main-22.png'); - background-position: -69px -207px; + background-position: -820px -483px; width: 68px; height: 68px; } .Pet_HatchingPotion_White { background-image: url('~assets/images/sprites/spritesmith-main-22.png'); - background-position: -138px -207px; + background-position: -820px -552px; width: 68px; height: 68px; } .Pet_HatchingPotion_Zombie { background-image: url('~assets/images/sprites/spritesmith-main-22.png'); - background-position: -207px -207px; + background-position: -820px -621px; width: 68px; height: 68px; } diff --git a/website/client/assets/css/sprites/spritesmith-main-3.css b/website/client/assets/css/sprites/spritesmith-main-3.css index 012e080658..c715c26941 100644 --- a/website/client/assets/css/sprites/spritesmith-main-3.css +++ b/website/client/assets/css/sprites/spritesmith-main-3.css @@ -1,3478 +1,3478 @@ -.hair_base_13_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -455px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -480px -379px; - width: 60px; - height: 60px; -} -.hair_base_13_brown { +.hair_base_12_white { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -91px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_13_brown { +.customize-option.hair_base_12_white { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -116px -15px; width: 60px; height: 60px; } -.hair_base_13_candycane { +.hair_base_12_winternight { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -728px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_13_candycane { +.customize-option.hair_base_12_winternight { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -753px -1107px; width: 60px; height: 60px; } -.hair_base_13_candycorn { +.hair_base_12_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: 0px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_13_candycorn { +.customize-option.hair_base_12_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -25px -106px; width: 60px; height: 60px; } -.hair_base_13_festive { +.hair_base_12_yellow { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -91px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_13_festive { +.customize-option.hair_base_12_yellow { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -116px -106px; width: 60px; height: 60px; } -.hair_base_13_frost { +.hair_base_12_zombie { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -182px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_13_frost { +.customize-option.hair_base_12_zombie { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -207px -15px; width: 60px; height: 60px; } -.hair_base_13_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -182px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -207px -106px; - width: 60px; - height: 60px; -} -.hair_base_13_green { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: 0px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_green { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -25px -197px; - width: 60px; - height: 60px; -} -.hair_base_13_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -91px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -116px -197px; - width: 60px; - height: 60px; -} -.hair_base_13_holly { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -182px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_holly { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -207px -197px; - width: 60px; - height: 60px; -} -.hair_base_13_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -273px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -298px -15px; - width: 60px; - height: 60px; -} -.hair_base_13_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -273px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -298px -106px; - width: 60px; - height: 60px; -} -.hair_base_13_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -273px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -298px -197px; - width: 60px; - height: 60px; -} -.hair_base_13_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: 0px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -25px -288px; - width: 60px; - height: 60px; -} -.hair_base_13_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -91px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -116px -288px; - width: 60px; - height: 60px; -} -.hair_base_13_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -182px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -207px -288px; - width: 60px; - height: 60px; -} -.hair_base_13_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -273px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -298px -288px; - width: 60px; - height: 60px; -} -.hair_base_13_porange { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -364px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_porange { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -389px -15px; - width: 60px; - height: 60px; -} -.hair_base_13_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -364px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -389px -106px; - width: 60px; - height: 60px; -} -.hair_base_13_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -364px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -389px -197px; - width: 60px; - height: 60px; -} -.hair_base_13_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -364px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -389px -288px; - width: 60px; - height: 60px; -} -.hair_base_13_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: 0px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -25px -379px; - width: 60px; - height: 60px; -} -.hair_base_13_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -91px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -116px -379px; - width: 60px; - height: 60px; -} -.hair_base_13_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -182px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -207px -379px; - width: 60px; - height: 60px; -} -.hair_base_13_purple { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -273px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_purple { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -298px -379px; - width: 60px; - height: 60px; -} -.hair_base_13_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -364px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -389px -379px; - width: 60px; - height: 60px; -} -.hair_base_13_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -455px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -480px -15px; - width: 60px; - height: 60px; -} -.hair_base_13_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -455px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -480px -106px; - width: 60px; - height: 60px; -} -.hair_base_13_red { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -455px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_red { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -480px -197px; - width: 60px; - height: 60px; -} -.hair_base_13_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -455px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -480px -288px; - width: 60px; - height: 60px; -} -.hair_base_13_white { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: 0px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_white { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -25px -470px; - width: 60px; - height: 60px; -} -.hair_base_13_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -91px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -116px -470px; - width: 60px; - height: 60px; -} -.hair_base_13_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -182px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -207px -470px; - width: 60px; - height: 60px; -} -.hair_base_13_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -273px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -298px -470px; - width: 60px; - height: 60px; -} -.hair_base_13_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -364px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_13_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -389px -470px; - width: 60px; - height: 60px; -} -.hair_base_14_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -728px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -753px -379px; - width: 60px; - height: 60px; -} -.hair_base_14_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -455px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -480px -470px; - width: 60px; - height: 60px; -} -.hair_base_14_black { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -546px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_black { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -571px -15px; - width: 60px; - height: 60px; -} -.hair_base_14_blond { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -546px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_blond { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -571px -106px; - width: 60px; - height: 60px; -} -.hair_base_14_blue { +.hair_base_13_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -546px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_14_blue { +.customize-option.hair_base_13_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -571px -197px; width: 60px; height: 60px; } -.hair_base_14_brown { +.hair_base_13_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -182px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -207px -106px; + width: 60px; + height: 60px; +} +.hair_base_13_black { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: 0px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_black { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -25px -197px; + width: 60px; + height: 60px; +} +.hair_base_13_blond { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -91px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_blond { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -116px -197px; + width: 60px; + height: 60px; +} +.hair_base_13_blue { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -182px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_blue { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -207px -197px; + width: 60px; + height: 60px; +} +.hair_base_13_brown { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -273px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_brown { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -298px -15px; + width: 60px; + height: 60px; +} +.hair_base_13_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -273px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -298px -106px; + width: 60px; + height: 60px; +} +.hair_base_13_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -273px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -298px -197px; + width: 60px; + height: 60px; +} +.hair_base_13_festive { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: 0px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_festive { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -25px -288px; + width: 60px; + height: 60px; +} +.hair_base_13_frost { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -91px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_frost { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -116px -288px; + width: 60px; + height: 60px; +} +.hair_base_13_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -182px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -207px -288px; + width: 60px; + height: 60px; +} +.hair_base_13_green { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -273px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_green { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -298px -288px; + width: 60px; + height: 60px; +} +.hair_base_13_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -364px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -389px -15px; + width: 60px; + height: 60px; +} +.hair_base_13_holly { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -364px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_holly { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -389px -106px; + width: 60px; + height: 60px; +} +.hair_base_13_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -364px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -389px -197px; + width: 60px; + height: 60px; +} +.hair_base_13_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -364px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -389px -288px; + width: 60px; + height: 60px; +} +.hair_base_13_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: 0px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -25px -379px; + width: 60px; + height: 60px; +} +.hair_base_13_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -91px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -116px -379px; + width: 60px; + height: 60px; +} +.hair_base_13_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -182px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -207px -379px; + width: 60px; + height: 60px; +} +.hair_base_13_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -273px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -298px -379px; + width: 60px; + height: 60px; +} +.hair_base_13_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -364px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -389px -379px; + width: 60px; + height: 60px; +} +.hair_base_13_porange { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -455px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_porange { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -480px -15px; + width: 60px; + height: 60px; +} +.hair_base_13_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -455px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -480px -106px; + width: 60px; + height: 60px; +} +.hair_base_13_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -455px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -480px -197px; + width: 60px; + height: 60px; +} +.hair_base_13_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -455px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -480px -288px; + width: 60px; + height: 60px; +} +.hair_base_13_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -455px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -480px -379px; + width: 60px; + height: 60px; +} +.hair_base_13_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: 0px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -25px -470px; + width: 60px; + height: 60px; +} +.hair_base_13_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -91px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -116px -470px; + width: 60px; + height: 60px; +} +.hair_base_13_purple { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -182px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_purple { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -207px -470px; + width: 60px; + height: 60px; +} +.hair_base_13_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -273px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -298px -470px; + width: 60px; + height: 60px; +} +.hair_base_13_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -364px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -389px -470px; + width: 60px; + height: 60px; +} +.hair_base_13_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -455px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -480px -470px; + width: 60px; + height: 60px; +} +.hair_base_13_red { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -546px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_red { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -571px -15px; + width: 60px; + height: 60px; +} +.hair_base_13_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -546px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_13_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -571px -106px; + width: 60px; + height: 60px; +} +.hair_base_13_white { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -546px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_14_brown { +.customize-option.hair_base_13_white { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -571px -288px; width: 60px; height: 60px; } -.hair_base_14_candycane { +.hair_base_13_winternight { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -546px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_14_candycane { +.customize-option.hair_base_13_winternight { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -571px -379px; width: 60px; height: 60px; } -.hair_base_14_candycorn { +.hair_base_13_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -546px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_14_candycorn { +.customize-option.hair_base_13_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -571px -470px; width: 60px; height: 60px; } -.hair_base_14_festive { +.hair_base_13_yellow { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: 0px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_14_festive { +.customize-option.hair_base_13_yellow { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -25px -561px; width: 60px; height: 60px; } -.hair_base_14_frost { +.hair_base_13_zombie { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -91px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_14_frost { +.customize-option.hair_base_13_zombie { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -116px -561px; width: 60px; height: 60px; } -.hair_base_14_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -182px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -207px -561px; - width: 60px; - height: 60px; -} -.hair_base_14_green { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -273px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_green { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -298px -561px; - width: 60px; - height: 60px; -} -.hair_base_14_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -364px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -389px -561px; - width: 60px; - height: 60px; -} -.hair_base_14_holly { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -455px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_holly { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -480px -561px; - width: 60px; - height: 60px; -} -.hair_base_14_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -546px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -571px -561px; - width: 60px; - height: 60px; -} -.hair_base_14_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -637px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -662px -15px; - width: 60px; - height: 60px; -} -.hair_base_14_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -637px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -662px -106px; - width: 60px; - height: 60px; -} -.hair_base_14_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -637px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -662px -197px; - width: 60px; - height: 60px; -} -.hair_base_14_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -637px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -662px -288px; - width: 60px; - height: 60px; -} -.hair_base_14_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -637px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -662px -379px; - width: 60px; - height: 60px; -} -.hair_base_14_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -637px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -662px -470px; - width: 60px; - height: 60px; -} -.hair_base_14_porange { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -637px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_porange { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -662px -561px; - width: 60px; - height: 60px; -} -.hair_base_14_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: 0px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -25px -652px; - width: 60px; - height: 60px; -} -.hair_base_14_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -91px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -116px -652px; - width: 60px; - height: 60px; -} -.hair_base_14_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -182px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -207px -652px; - width: 60px; - height: 60px; -} -.hair_base_14_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -273px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -298px -652px; - width: 60px; - height: 60px; -} -.hair_base_14_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -364px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -389px -652px; - width: 60px; - height: 60px; -} -.hair_base_14_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -455px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -480px -652px; - width: 60px; - height: 60px; -} -.hair_base_14_purple { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -546px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_purple { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -571px -652px; - width: 60px; - height: 60px; -} -.hair_base_14_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -637px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -662px -652px; - width: 60px; - height: 60px; -} -.hair_base_14_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -728px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -753px -15px; - width: 60px; - height: 60px; -} -.hair_base_14_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -728px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -753px -106px; - width: 60px; - height: 60px; -} -.hair_base_14_red { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -728px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_red { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -753px -197px; - width: 60px; - height: 60px; -} -.hair_base_14_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -728px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -753px -288px; - width: 60px; - height: 60px; -} -.hair_base_14_white { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -728px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_white { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -753px -470px; - width: 60px; - height: 60px; -} -.hair_base_14_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -728px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -753px -561px; - width: 60px; - height: 60px; -} -.hair_base_14_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -728px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -753px -652px; - width: 60px; - height: 60px; -} -.hair_base_14_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: 0px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -25px -743px; - width: 60px; - height: 60px; -} -.hair_base_14_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -91px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_14_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -116px -743px; - width: 60px; - height: 60px; -} -.hair_base_15_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -910px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -935px -637px; - width: 60px; - height: 60px; -} -.hair_base_15_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -182px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -207px -728px; - width: 60px; - height: 60px; -} -.hair_base_15_black { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -273px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_black { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -298px -728px; - width: 60px; - height: 60px; -} -.hair_base_15_blond { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -364px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_blond { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -389px -728px; - width: 60px; - height: 60px; -} -.hair_base_15_blue { +.hair_base_14_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -455px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_15_blue { +.customize-option.hair_base_14_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -480px -728px; + background-position: -480px -743px; width: 60px; height: 60px; } -.hair_base_15_brown { +.hair_base_14_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -182px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -207px -561px; + width: 60px; + height: 60px; +} +.hair_base_14_black { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -273px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_black { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -298px -561px; + width: 60px; + height: 60px; +} +.hair_base_14_blond { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -364px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_blond { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -389px -561px; + width: 60px; + height: 60px; +} +.hair_base_14_blue { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -455px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_blue { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -480px -561px; + width: 60px; + height: 60px; +} +.hair_base_14_brown { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -546px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_brown { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -571px -561px; + width: 60px; + height: 60px; +} +.hair_base_14_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -637px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -662px -15px; + width: 60px; + height: 60px; +} +.hair_base_14_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -637px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -662px -106px; + width: 60px; + height: 60px; +} +.hair_base_14_festive { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -637px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_festive { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -662px -197px; + width: 60px; + height: 60px; +} +.hair_base_14_frost { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -637px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_frost { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -662px -288px; + width: 60px; + height: 60px; +} +.hair_base_14_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -637px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -662px -379px; + width: 60px; + height: 60px; +} +.hair_base_14_green { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -637px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_green { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -662px -470px; + width: 60px; + height: 60px; +} +.hair_base_14_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -637px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -662px -561px; + width: 60px; + height: 60px; +} +.hair_base_14_holly { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: 0px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_holly { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -25px -652px; + width: 60px; + height: 60px; +} +.hair_base_14_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -91px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -116px -652px; + width: 60px; + height: 60px; +} +.hair_base_14_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -182px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -207px -652px; + width: 60px; + height: 60px; +} +.hair_base_14_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -273px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -298px -652px; + width: 60px; + height: 60px; +} +.hair_base_14_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -364px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -389px -652px; + width: 60px; + height: 60px; +} +.hair_base_14_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -455px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -480px -652px; + width: 60px; + height: 60px; +} +.hair_base_14_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -546px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -571px -652px; + width: 60px; + height: 60px; +} +.hair_base_14_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -637px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -662px -652px; + width: 60px; + height: 60px; +} +.hair_base_14_porange { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -728px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_porange { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -753px -15px; + width: 60px; + height: 60px; +} +.hair_base_14_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -728px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -753px -106px; + width: 60px; + height: 60px; +} +.hair_base_14_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -728px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -753px -197px; + width: 60px; + height: 60px; +} +.hair_base_14_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -728px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -753px -288px; + width: 60px; + height: 60px; +} +.hair_base_14_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -728px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -753px -379px; + width: 60px; + height: 60px; +} +.hair_base_14_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -728px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -753px -470px; + width: 60px; + height: 60px; +} +.hair_base_14_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -728px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -753px -561px; + width: 60px; + height: 60px; +} +.hair_base_14_purple { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -728px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_purple { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -753px -652px; + width: 60px; + height: 60px; +} +.hair_base_14_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: 0px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -25px -743px; + width: 60px; + height: 60px; +} +.hair_base_14_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -91px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -116px -743px; + width: 60px; + height: 60px; +} +.hair_base_14_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -182px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -207px -743px; + width: 60px; + height: 60px; +} +.hair_base_14_red { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -273px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_red { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -298px -743px; + width: 60px; + height: 60px; +} +.hair_base_14_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -364px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_14_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -389px -743px; + width: 60px; + height: 60px; +} +.hair_base_14_white { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -546px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_15_brown { +.customize-option.hair_base_14_white { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -571px -728px; + background-position: -571px -743px; width: 60px; height: 60px; } -.hair_base_15_candycane { +.hair_base_14_winternight { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -637px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_15_candycane { +.customize-option.hair_base_14_winternight { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -662px -728px; + background-position: -662px -743px; width: 60px; height: 60px; } -.hair_base_15_candycorn { +.hair_base_14_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -728px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_15_candycorn { +.customize-option.hair_base_14_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -753px -728px; + background-position: -753px -743px; width: 60px; height: 60px; } -.hair_base_15_festive { +.hair_base_14_yellow { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -819px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_15_festive { +.customize-option.hair_base_14_yellow { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -844px -0px; + background-position: -844px -15px; width: 60px; height: 60px; } -.hair_base_15_frost { +.hair_base_14_zombie { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -819px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_15_frost { +.customize-option.hair_base_14_zombie { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -844px -91px; + background-position: -844px -106px; width: 60px; height: 60px; } -.hair_base_15_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -819px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -844px -182px; - width: 60px; - height: 60px; -} -.hair_base_15_green { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -819px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_green { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -844px -273px; - width: 60px; - height: 60px; -} -.hair_base_15_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -819px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -844px -364px; - width: 60px; - height: 60px; -} -.hair_base_15_holly { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -819px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_holly { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -844px -455px; - width: 60px; - height: 60px; -} -.hair_base_15_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -819px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -844px -546px; - width: 60px; - height: 60px; -} -.hair_base_15_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -819px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -844px -637px; - width: 60px; - height: 60px; -} -.hair_base_15_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -819px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -844px -728px; - width: 60px; - height: 60px; -} -.hair_base_15_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: 0px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -25px -819px; - width: 60px; - height: 60px; -} -.hair_base_15_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -91px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -116px -819px; - width: 60px; - height: 60px; -} -.hair_base_15_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -182px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -207px -819px; - width: 60px; - height: 60px; -} -.hair_base_15_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -273px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -298px -819px; - width: 60px; - height: 60px; -} -.hair_base_15_porange { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -364px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_porange { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -389px -819px; - width: 60px; - height: 60px; -} -.hair_base_15_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -455px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -480px -819px; - width: 60px; - height: 60px; -} -.hair_base_15_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -546px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -571px -819px; - width: 60px; - height: 60px; -} -.hair_base_15_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -637px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -662px -819px; - width: 60px; - height: 60px; -} -.hair_base_15_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -728px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -753px -819px; - width: 60px; - height: 60px; -} -.hair_base_15_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -819px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -844px -819px; - width: 60px; - height: 60px; -} -.hair_base_15_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -910px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -935px -0px; - width: 60px; - height: 60px; -} -.hair_base_15_purple { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -910px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_purple { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -935px -91px; - width: 60px; - height: 60px; -} -.hair_base_15_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -910px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -935px -182px; - width: 60px; - height: 60px; -} -.hair_base_15_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -910px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -935px -273px; - width: 60px; - height: 60px; -} -.hair_base_15_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -910px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -935px -364px; - width: 60px; - height: 60px; -} -.hair_base_15_red { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -910px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_red { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -935px -455px; - width: 60px; - height: 60px; -} -.hair_base_15_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -910px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -935px -546px; - width: 60px; - height: 60px; -} -.hair_base_15_white { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -910px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_white { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -935px -728px; - width: 60px; - height: 60px; -} -.hair_base_15_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -910px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -935px -819px; - width: 60px; - height: 60px; -} -.hair_base_15_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: 0px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -25px -910px; - width: 60px; - height: 60px; -} -.hair_base_15_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -91px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -116px -910px; - width: 60px; - height: 60px; -} -.hair_base_15_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -182px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_15_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -207px -910px; - width: 60px; - height: 60px; -} -.hair_base_16_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1092px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1117px -182px; - width: 60px; - height: 60px; -} -.hair_base_16_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -273px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -298px -910px; - width: 60px; - height: 60px; -} -.hair_base_16_black { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -364px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_black { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -389px -910px; - width: 60px; - height: 60px; -} -.hair_base_16_blond { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -455px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_blond { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -480px -910px; - width: 60px; - height: 60px; -} -.hair_base_16_blue { +.hair_base_15_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -546px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_16_blue { +.customize-option.hair_base_15_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -571px -910px; width: 60px; height: 60px; } -.hair_base_16_brown { +.hair_base_15_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -819px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -844px -182px; + width: 60px; + height: 60px; +} +.hair_base_15_black { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -819px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_black { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -844px -273px; + width: 60px; + height: 60px; +} +.hair_base_15_blond { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -819px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_blond { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -844px -364px; + width: 60px; + height: 60px; +} +.hair_base_15_blue { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -819px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_blue { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -844px -455px; + width: 60px; + height: 60px; +} +.hair_base_15_brown { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -819px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_brown { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -844px -546px; + width: 60px; + height: 60px; +} +.hair_base_15_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -819px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -844px -637px; + width: 60px; + height: 60px; +} +.hair_base_15_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -819px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -844px -728px; + width: 60px; + height: 60px; +} +.hair_base_15_festive { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: 0px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_festive { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -25px -819px; + width: 60px; + height: 60px; +} +.hair_base_15_frost { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -91px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_frost { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -116px -819px; + width: 60px; + height: 60px; +} +.hair_base_15_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -182px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -207px -819px; + width: 60px; + height: 60px; +} +.hair_base_15_green { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -273px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_green { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -298px -819px; + width: 60px; + height: 60px; +} +.hair_base_15_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -364px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -389px -819px; + width: 60px; + height: 60px; +} +.hair_base_15_holly { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -455px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_holly { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -480px -819px; + width: 60px; + height: 60px; +} +.hair_base_15_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -546px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -571px -819px; + width: 60px; + height: 60px; +} +.hair_base_15_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -637px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -662px -819px; + width: 60px; + height: 60px; +} +.hair_base_15_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -728px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -753px -819px; + width: 60px; + height: 60px; +} +.hair_base_15_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -819px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -844px -819px; + width: 60px; + height: 60px; +} +.hair_base_15_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -910px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -935px -0px; + width: 60px; + height: 60px; +} +.hair_base_15_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -910px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -935px -91px; + width: 60px; + height: 60px; +} +.hair_base_15_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -910px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -935px -182px; + width: 60px; + height: 60px; +} +.hair_base_15_porange { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -910px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_porange { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -935px -273px; + width: 60px; + height: 60px; +} +.hair_base_15_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -910px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -935px -364px; + width: 60px; + height: 60px; +} +.hair_base_15_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -910px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -935px -455px; + width: 60px; + height: 60px; +} +.hair_base_15_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -910px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -935px -546px; + width: 60px; + height: 60px; +} +.hair_base_15_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -910px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -935px -637px; + width: 60px; + height: 60px; +} +.hair_base_15_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -910px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -935px -728px; + width: 60px; + height: 60px; +} +.hair_base_15_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -910px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -935px -819px; + width: 60px; + height: 60px; +} +.hair_base_15_purple { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: 0px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_purple { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -25px -910px; + width: 60px; + height: 60px; +} +.hair_base_15_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -91px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -116px -910px; + width: 60px; + height: 60px; +} +.hair_base_15_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -182px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -207px -910px; + width: 60px; + height: 60px; +} +.hair_base_15_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -273px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -298px -910px; + width: 60px; + height: 60px; +} +.hair_base_15_red { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -364px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_red { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -389px -910px; + width: 60px; + height: 60px; +} +.hair_base_15_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -455px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_15_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -480px -910px; + width: 60px; + height: 60px; +} +.hair_base_15_white { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -637px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_16_brown { +.customize-option.hair_base_15_white { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -662px -910px; width: 60px; height: 60px; } -.hair_base_16_candycane { +.hair_base_15_winternight { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -728px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_16_candycane { +.customize-option.hair_base_15_winternight { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -753px -910px; width: 60px; height: 60px; } -.hair_base_16_candycorn { +.hair_base_15_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -819px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_16_candycorn { +.customize-option.hair_base_15_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -844px -910px; width: 60px; height: 60px; } -.hair_base_16_festive { +.hair_base_15_yellow { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -910px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_16_festive { +.customize-option.hair_base_15_yellow { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -935px -910px; width: 60px; height: 60px; } -.hair_base_16_frost { +.hair_base_15_zombie { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1001px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_16_frost { +.customize-option.hair_base_15_zombie { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1026px -0px; width: 60px; height: 60px; } -.hair_base_16_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1001px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1026px -91px; - width: 60px; - height: 60px; -} -.hair_base_16_green { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1001px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_green { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1026px -182px; - width: 60px; - height: 60px; -} -.hair_base_16_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1001px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1026px -273px; - width: 60px; - height: 60px; -} -.hair_base_16_holly { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1001px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_holly { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1026px -364px; - width: 60px; - height: 60px; -} -.hair_base_16_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1001px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1026px -455px; - width: 60px; - height: 60px; -} -.hair_base_16_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1001px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1026px -546px; - width: 60px; - height: 60px; -} -.hair_base_16_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1001px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1026px -637px; - width: 60px; - height: 60px; -} -.hair_base_16_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1001px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1026px -728px; - width: 60px; - height: 60px; -} -.hair_base_16_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1001px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1026px -819px; - width: 60px; - height: 60px; -} -.hair_base_16_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1001px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1026px -910px; - width: 60px; - height: 60px; -} -.hair_base_16_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: 0px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -25px -1001px; - width: 60px; - height: 60px; -} -.hair_base_16_porange { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -91px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_porange { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -116px -1001px; - width: 60px; - height: 60px; -} -.hair_base_16_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -182px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -207px -1001px; - width: 60px; - height: 60px; -} -.hair_base_16_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -273px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -298px -1001px; - width: 60px; - height: 60px; -} -.hair_base_16_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -364px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -389px -1001px; - width: 60px; - height: 60px; -} -.hair_base_16_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -455px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -480px -1001px; - width: 60px; - height: 60px; -} -.hair_base_16_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -546px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -571px -1001px; - width: 60px; - height: 60px; -} -.hair_base_16_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -637px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -662px -1001px; - width: 60px; - height: 60px; -} -.hair_base_16_purple { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -728px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_purple { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -753px -1001px; - width: 60px; - height: 60px; -} -.hair_base_16_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -819px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -844px -1001px; - width: 60px; - height: 60px; -} -.hair_base_16_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -910px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -935px -1001px; - width: 60px; - height: 60px; -} -.hair_base_16_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1001px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1026px -1001px; - width: 60px; - height: 60px; -} -.hair_base_16_red { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1092px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_red { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1117px -0px; - width: 60px; - height: 60px; -} -.hair_base_16_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1092px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1117px -91px; - width: 60px; - height: 60px; -} -.hair_base_16_white { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1092px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_white { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1117px -273px; - width: 60px; - height: 60px; -} -.hair_base_16_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1092px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1117px -364px; - width: 60px; - height: 60px; -} -.hair_base_16_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1092px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1117px -455px; - width: 60px; - height: 60px; -} -.hair_base_16_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1092px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1117px -546px; - width: 60px; - height: 60px; -} -.hair_base_16_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1092px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_16_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1117px -637px; - width: 60px; - height: 60px; -} -.hair_base_17_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -273px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -298px -1183px; - width: 60px; - height: 60px; -} -.hair_base_17_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1092px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1117px -728px; - width: 60px; - height: 60px; -} -.hair_base_17_black { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1092px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_black { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1117px -819px; - width: 60px; - height: 60px; -} -.hair_base_17_blond { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1092px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_blond { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1117px -910px; - width: 60px; - height: 60px; -} -.hair_base_17_blue { +.hair_base_16_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1092px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_17_blue { +.customize-option.hair_base_16_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1117px -1001px; width: 60px; height: 60px; } -.hair_base_17_brown { +.hair_base_16_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1001px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1026px -91px; + width: 60px; + height: 60px; +} +.hair_base_16_black { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1001px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_black { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1026px -182px; + width: 60px; + height: 60px; +} +.hair_base_16_blond { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1001px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_blond { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1026px -273px; + width: 60px; + height: 60px; +} +.hair_base_16_blue { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1001px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_blue { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1026px -364px; + width: 60px; + height: 60px; +} +.hair_base_16_brown { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1001px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_brown { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1026px -455px; + width: 60px; + height: 60px; +} +.hair_base_16_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1001px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1026px -546px; + width: 60px; + height: 60px; +} +.hair_base_16_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1001px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1026px -637px; + width: 60px; + height: 60px; +} +.hair_base_16_festive { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1001px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_festive { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1026px -728px; + width: 60px; + height: 60px; +} +.hair_base_16_frost { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1001px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_frost { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1026px -819px; + width: 60px; + height: 60px; +} +.hair_base_16_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1001px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1026px -910px; + width: 60px; + height: 60px; +} +.hair_base_16_green { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: 0px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_green { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -25px -1001px; + width: 60px; + height: 60px; +} +.hair_base_16_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -91px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -116px -1001px; + width: 60px; + height: 60px; +} +.hair_base_16_holly { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -182px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_holly { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -207px -1001px; + width: 60px; + height: 60px; +} +.hair_base_16_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -273px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -298px -1001px; + width: 60px; + height: 60px; +} +.hair_base_16_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -364px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -389px -1001px; + width: 60px; + height: 60px; +} +.hair_base_16_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -455px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -480px -1001px; + width: 60px; + height: 60px; +} +.hair_base_16_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -546px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -571px -1001px; + width: 60px; + height: 60px; +} +.hair_base_16_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -637px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -662px -1001px; + width: 60px; + height: 60px; +} +.hair_base_16_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -728px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -753px -1001px; + width: 60px; + height: 60px; +} +.hair_base_16_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -819px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -844px -1001px; + width: 60px; + height: 60px; +} +.hair_base_16_porange { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -910px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_porange { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -935px -1001px; + width: 60px; + height: 60px; +} +.hair_base_16_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1001px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1026px -1001px; + width: 60px; + height: 60px; +} +.hair_base_16_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1092px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1117px -0px; + width: 60px; + height: 60px; +} +.hair_base_16_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1092px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1117px -91px; + width: 60px; + height: 60px; +} +.hair_base_16_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1092px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1117px -182px; + width: 60px; + height: 60px; +} +.hair_base_16_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1092px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1117px -273px; + width: 60px; + height: 60px; +} +.hair_base_16_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1092px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1117px -364px; + width: 60px; + height: 60px; +} +.hair_base_16_purple { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1092px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_purple { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1117px -455px; + width: 60px; + height: 60px; +} +.hair_base_16_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1092px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1117px -546px; + width: 60px; + height: 60px; +} +.hair_base_16_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1092px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1117px -637px; + width: 60px; + height: 60px; +} +.hair_base_16_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1092px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1117px -728px; + width: 60px; + height: 60px; +} +.hair_base_16_red { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1092px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_red { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1117px -819px; + width: 60px; + height: 60px; +} +.hair_base_16_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1092px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_16_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1117px -910px; + width: 60px; + height: 60px; +} +.hair_base_16_white { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: 0px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_17_brown { +.customize-option.hair_base_16_white { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -25px -1092px; width: 60px; height: 60px; } -.hair_base_17_candycane { +.hair_base_16_winternight { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -91px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_17_candycane { +.customize-option.hair_base_16_winternight { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -116px -1092px; width: 60px; height: 60px; } -.hair_base_17_candycorn { +.hair_base_16_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -182px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_17_candycorn { +.customize-option.hair_base_16_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -207px -1092px; width: 60px; height: 60px; } -.hair_base_17_festive { +.hair_base_16_yellow { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -273px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_17_festive { +.customize-option.hair_base_16_yellow { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -298px -1092px; width: 60px; height: 60px; } -.hair_base_17_frost { +.hair_base_16_zombie { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -364px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_17_frost { +.customize-option.hair_base_16_zombie { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -389px -1092px; width: 60px; height: 60px; } -.hair_base_17_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -455px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -480px -1092px; - width: 60px; - height: 60px; -} -.hair_base_17_green { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -546px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_green { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -571px -1092px; - width: 60px; - height: 60px; -} -.hair_base_17_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -637px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -662px -1092px; - width: 60px; - height: 60px; -} -.hair_base_17_holly { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: 0px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_holly { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -25px -0px; - width: 60px; - height: 60px; -} -.hair_base_17_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -819px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -844px -1092px; - width: 60px; - height: 60px; -} -.hair_base_17_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -910px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -935px -1092px; - width: 60px; - height: 60px; -} -.hair_base_17_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1001px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1026px -1092px; - width: 60px; - height: 60px; -} -.hair_base_17_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1092px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1117px -1092px; - width: 60px; - height: 60px; -} -.hair_base_17_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1183px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1208px -0px; - width: 60px; - height: 60px; -} -.hair_base_17_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1183px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1208px -91px; - width: 60px; - height: 60px; -} -.hair_base_17_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1183px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1208px -182px; - width: 60px; - height: 60px; -} -.hair_base_17_porange { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1183px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_porange { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1208px -273px; - width: 60px; - height: 60px; -} -.hair_base_17_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1183px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1208px -364px; - width: 60px; - height: 60px; -} -.hair_base_17_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1183px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1208px -455px; - width: 60px; - height: 60px; -} -.hair_base_17_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1183px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1208px -546px; - width: 60px; - height: 60px; -} -.hair_base_17_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1183px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1208px -637px; - width: 60px; - height: 60px; -} -.hair_base_17_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1183px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1208px -728px; - width: 60px; - height: 60px; -} -.hair_base_17_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1183px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1208px -819px; - width: 60px; - height: 60px; -} -.hair_base_17_purple { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1183px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_purple { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1208px -910px; - width: 60px; - height: 60px; -} -.hair_base_17_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1183px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1208px -1001px; - width: 60px; - height: 60px; -} -.hair_base_17_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1183px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1208px -1092px; - width: 60px; - height: 60px; -} -.hair_base_17_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: 0px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -25px -1183px; - width: 60px; - height: 60px; -} -.hair_base_17_red { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -91px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_red { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -116px -1183px; - width: 60px; - height: 60px; -} -.hair_base_17_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -182px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -207px -1183px; - width: 60px; - height: 60px; -} -.hair_base_17_white { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -364px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_white { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -389px -1183px; - width: 60px; - height: 60px; -} -.hair_base_17_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -455px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -480px -1183px; - width: 60px; - height: 60px; -} -.hair_base_17_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -546px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -571px -1183px; - width: 60px; - height: 60px; -} -.hair_base_17_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -637px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -662px -1183px; - width: 60px; - height: 60px; -} -.hair_base_17_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -728px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_17_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -753px -1183px; - width: 60px; - height: 60px; -} -.hair_base_18_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1274px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1299px -1274px; - width: 60px; - height: 60px; -} -.hair_base_18_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -819px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -844px -1183px; - width: 60px; - height: 60px; -} -.hair_base_18_black { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -910px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_black { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -935px -1183px; - width: 60px; - height: 60px; -} -.hair_base_18_blond { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1001px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_blond { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1026px -1183px; - width: 60px; - height: 60px; -} -.hair_base_18_blue { +.hair_base_17_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1092px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_18_blue { +.customize-option.hair_base_17_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1117px -1183px; width: 60px; height: 60px; } -.hair_base_18_brown { +.hair_base_17_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -455px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -480px -1092px; + width: 60px; + height: 60px; +} +.hair_base_17_black { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -546px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_black { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -571px -1092px; + width: 60px; + height: 60px; +} +.hair_base_17_blond { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -637px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_blond { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -662px -1092px; + width: 60px; + height: 60px; +} +.hair_base_17_blue { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: 0px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_blue { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -25px -0px; + width: 60px; + height: 60px; +} +.hair_base_17_brown { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -819px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_brown { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -844px -1092px; + width: 60px; + height: 60px; +} +.hair_base_17_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -910px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -935px -1092px; + width: 60px; + height: 60px; +} +.hair_base_17_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1001px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1026px -1092px; + width: 60px; + height: 60px; +} +.hair_base_17_festive { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1092px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_festive { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1117px -1092px; + width: 60px; + height: 60px; +} +.hair_base_17_frost { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1183px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_frost { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1208px -0px; + width: 60px; + height: 60px; +} +.hair_base_17_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1183px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1208px -91px; + width: 60px; + height: 60px; +} +.hair_base_17_green { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1183px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_green { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1208px -182px; + width: 60px; + height: 60px; +} +.hair_base_17_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1183px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1208px -273px; + width: 60px; + height: 60px; +} +.hair_base_17_holly { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1183px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_holly { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1208px -364px; + width: 60px; + height: 60px; +} +.hair_base_17_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1183px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1208px -455px; + width: 60px; + height: 60px; +} +.hair_base_17_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1183px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1208px -546px; + width: 60px; + height: 60px; +} +.hair_base_17_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1183px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1208px -637px; + width: 60px; + height: 60px; +} +.hair_base_17_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1183px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1208px -728px; + width: 60px; + height: 60px; +} +.hair_base_17_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1183px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1208px -819px; + width: 60px; + height: 60px; +} +.hair_base_17_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1183px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1208px -910px; + width: 60px; + height: 60px; +} +.hair_base_17_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1183px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1208px -1001px; + width: 60px; + height: 60px; +} +.hair_base_17_porange { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1183px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_porange { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1208px -1092px; + width: 60px; + height: 60px; +} +.hair_base_17_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: 0px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -25px -1183px; + width: 60px; + height: 60px; +} +.hair_base_17_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -91px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -116px -1183px; + width: 60px; + height: 60px; +} +.hair_base_17_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -182px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -207px -1183px; + width: 60px; + height: 60px; +} +.hair_base_17_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -273px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -298px -1183px; + width: 60px; + height: 60px; +} +.hair_base_17_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -364px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -389px -1183px; + width: 60px; + height: 60px; +} +.hair_base_17_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -455px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -480px -1183px; + width: 60px; + height: 60px; +} +.hair_base_17_purple { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -546px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_purple { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -571px -1183px; + width: 60px; + height: 60px; +} +.hair_base_17_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -637px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -662px -1183px; + width: 60px; + height: 60px; +} +.hair_base_17_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -728px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -753px -1183px; + width: 60px; + height: 60px; +} +.hair_base_17_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -819px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -844px -1183px; + width: 60px; + height: 60px; +} +.hair_base_17_red { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -910px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_red { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -935px -1183px; + width: 60px; + height: 60px; +} +.hair_base_17_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1001px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_17_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1026px -1183px; + width: 60px; + height: 60px; +} +.hair_base_17_white { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1183px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_18_brown { +.customize-option.hair_base_17_white { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1208px -1183px; width: 60px; height: 60px; } -.hair_base_18_candycane { +.hair_base_17_winternight { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1274px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_18_candycane { +.customize-option.hair_base_17_winternight { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1299px -0px; width: 60px; height: 60px; } -.hair_base_18_candycorn { +.hair_base_17_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1274px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_18_candycorn { +.customize-option.hair_base_17_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1299px -91px; width: 60px; height: 60px; } -.hair_base_18_festive { +.hair_base_17_yellow { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1274px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_18_festive { +.customize-option.hair_base_17_yellow { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1299px -182px; width: 60px; height: 60px; } -.hair_base_18_frost { +.hair_base_17_zombie { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1274px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_18_frost { +.customize-option.hair_base_17_zombie { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1299px -273px; width: 60px; height: 60px; } -.hair_base_18_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1274px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1299px -364px; - width: 60px; - height: 60px; -} -.hair_base_18_green { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1274px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_green { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1299px -455px; - width: 60px; - height: 60px; -} -.hair_base_18_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1274px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1299px -546px; - width: 60px; - height: 60px; -} -.hair_base_18_holly { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1274px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_holly { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1299px -637px; - width: 60px; - height: 60px; -} -.hair_base_18_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1274px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1299px -728px; - width: 60px; - height: 60px; -} -.hair_base_18_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1274px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1299px -819px; - width: 60px; - height: 60px; -} -.hair_base_18_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1274px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1299px -910px; - width: 60px; - height: 60px; -} -.hair_base_18_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1274px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1299px -1001px; - width: 60px; - height: 60px; -} -.hair_base_18_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1274px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1299px -1092px; - width: 60px; - height: 60px; -} -.hair_base_18_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1274px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1299px -1183px; - width: 60px; - height: 60px; -} -.hair_base_18_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: 0px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -25px -1274px; - width: 60px; - height: 60px; -} -.hair_base_18_porange { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -91px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_porange { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -116px -1274px; - width: 60px; - height: 60px; -} -.hair_base_18_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -182px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -207px -1274px; - width: 60px; - height: 60px; -} -.hair_base_18_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -273px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -298px -1274px; - width: 60px; - height: 60px; -} -.hair_base_18_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -364px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -389px -1274px; - width: 60px; - height: 60px; -} -.hair_base_18_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -455px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -480px -1274px; - width: 60px; - height: 60px; -} -.hair_base_18_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -546px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -571px -1274px; - width: 60px; - height: 60px; -} -.hair_base_18_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -637px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -662px -1274px; - width: 60px; - height: 60px; -} -.hair_base_18_purple { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -728px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_purple { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -753px -1274px; - width: 60px; - height: 60px; -} -.hair_base_18_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -819px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -844px -1274px; - width: 60px; - height: 60px; -} -.hair_base_18_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -910px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -935px -1274px; - width: 60px; - height: 60px; -} -.hair_base_18_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1001px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1026px -1274px; - width: 60px; - height: 60px; -} -.hair_base_18_red { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1092px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_red { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1117px -1274px; - width: 60px; - height: 60px; -} -.hair_base_18_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1183px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1208px -1274px; - width: 60px; - height: 60px; -} -.hair_base_18_white { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1365px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_white { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1390px -0px; - width: 60px; - height: 60px; -} -.hair_base_18_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1365px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1390px -91px; - width: 60px; - height: 60px; -} -.hair_base_18_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1365px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1390px -182px; - width: 60px; - height: 60px; -} -.hair_base_18_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1365px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1390px -273px; - width: 60px; - height: 60px; -} -.hair_base_18_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1365px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_18_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1390px -364px; - width: 60px; - height: 60px; -} -.hair_base_19_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1456px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_19_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1481px -637px; - width: 60px; - height: 60px; -} -.hair_base_19_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1365px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_19_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1390px -455px; - width: 60px; - height: 60px; -} -.hair_base_19_black { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1365px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_19_black { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1390px -546px; - width: 60px; - height: 60px; -} -.hair_base_19_blond { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1365px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_19_blond { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1390px -637px; - width: 60px; - height: 60px; -} -.hair_base_19_blue { +.hair_base_18_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1365px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_19_blue { +.customize-option.hair_base_18_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1390px -728px; width: 60px; height: 60px; } -.hair_base_19_brown { +.hair_base_18_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1274px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1299px -364px; + width: 60px; + height: 60px; +} +.hair_base_18_black { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1274px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_black { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1299px -455px; + width: 60px; + height: 60px; +} +.hair_base_18_blond { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1274px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_blond { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1299px -546px; + width: 60px; + height: 60px; +} +.hair_base_18_blue { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1274px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_blue { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1299px -637px; + width: 60px; + height: 60px; +} +.hair_base_18_brown { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1274px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_brown { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1299px -728px; + width: 60px; + height: 60px; +} +.hair_base_18_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1274px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1299px -819px; + width: 60px; + height: 60px; +} +.hair_base_18_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1274px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1299px -910px; + width: 60px; + height: 60px; +} +.hair_base_18_festive { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1274px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_festive { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1299px -1001px; + width: 60px; + height: 60px; +} +.hair_base_18_frost { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1274px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_frost { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1299px -1092px; + width: 60px; + height: 60px; +} +.hair_base_18_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1274px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1299px -1183px; + width: 60px; + height: 60px; +} +.hair_base_18_green { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: 0px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_green { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -25px -1274px; + width: 60px; + height: 60px; +} +.hair_base_18_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -91px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -116px -1274px; + width: 60px; + height: 60px; +} +.hair_base_18_holly { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -182px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_holly { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -207px -1274px; + width: 60px; + height: 60px; +} +.hair_base_18_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -273px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -298px -1274px; + width: 60px; + height: 60px; +} +.hair_base_18_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -364px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -389px -1274px; + width: 60px; + height: 60px; +} +.hair_base_18_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -455px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -480px -1274px; + width: 60px; + height: 60px; +} +.hair_base_18_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -546px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -571px -1274px; + width: 60px; + height: 60px; +} +.hair_base_18_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -637px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -662px -1274px; + width: 60px; + height: 60px; +} +.hair_base_18_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -728px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -753px -1274px; + width: 60px; + height: 60px; +} +.hair_base_18_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -819px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -844px -1274px; + width: 60px; + height: 60px; +} +.hair_base_18_porange { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -910px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_porange { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -935px -1274px; + width: 60px; + height: 60px; +} +.hair_base_18_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1001px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1026px -1274px; + width: 60px; + height: 60px; +} +.hair_base_18_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1092px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1117px -1274px; + width: 60px; + height: 60px; +} +.hair_base_18_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1183px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1208px -1274px; + width: 60px; + height: 60px; +} +.hair_base_18_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1274px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1299px -1274px; + width: 60px; + height: 60px; +} +.hair_base_18_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1365px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1390px -0px; + width: 60px; + height: 60px; +} +.hair_base_18_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1365px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1390px -91px; + width: 60px; + height: 60px; +} +.hair_base_18_purple { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1365px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_purple { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1390px -182px; + width: 60px; + height: 60px; +} +.hair_base_18_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1365px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1390px -273px; + width: 60px; + height: 60px; +} +.hair_base_18_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1365px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1390px -364px; + width: 60px; + height: 60px; +} +.hair_base_18_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1365px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1390px -455px; + width: 60px; + height: 60px; +} +.hair_base_18_red { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1365px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_red { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1390px -546px; + width: 60px; + height: 60px; +} +.hair_base_18_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1365px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_18_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1390px -637px; + width: 60px; + height: 60px; +} +.hair_base_18_white { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1365px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_19_brown { +.customize-option.hair_base_18_white { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1390px -819px; width: 60px; height: 60px; } -.hair_base_19_candycane { +.hair_base_18_winternight { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1365px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_19_candycane { +.customize-option.hair_base_18_winternight { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1390px -910px; width: 60px; height: 60px; } -.hair_base_19_candycorn { +.hair_base_18_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1365px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_19_candycorn { +.customize-option.hair_base_18_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1390px -1001px; width: 60px; height: 60px; } -.hair_base_19_festive { +.hair_base_18_yellow { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1365px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_19_festive { +.customize-option.hair_base_18_yellow { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1390px -1092px; width: 60px; height: 60px; } -.hair_base_19_frost { +.hair_base_18_zombie { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1365px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_19_frost { +.customize-option.hair_base_18_zombie { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1390px -1183px; width: 60px; height: 60px; } -.hair_base_19_ghostwhite { +.hair_base_19_TRUred { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: 0px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_19_TRUred { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -25px -1456px; + width: 60px; + height: 60px; +} +.hair_base_19_aurora { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1365px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_19_ghostwhite { +.customize-option.hair_base_19_aurora { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1390px -1274px; width: 60px; height: 60px; } -.hair_base_19_green { +.hair_base_19_black { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: 0px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_19_green { +.customize-option.hair_base_19_black { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -25px -1365px; width: 60px; height: 60px; } -.hair_base_19_halloween { +.hair_base_19_blond { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -91px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_19_halloween { +.customize-option.hair_base_19_blond { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -116px -1365px; width: 60px; height: 60px; } -.hair_base_19_holly { +.hair_base_19_blue { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -182px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_19_holly { +.customize-option.hair_base_19_blue { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -207px -1365px; width: 60px; height: 60px; } -.hair_base_19_hollygreen { +.hair_base_19_brown { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -273px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_19_hollygreen { +.customize-option.hair_base_19_brown { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -298px -1365px; width: 60px; height: 60px; } -.hair_base_19_midnight { +.hair_base_19_candycane { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -364px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_19_midnight { +.customize-option.hair_base_19_candycane { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -389px -1365px; width: 60px; height: 60px; } -.hair_base_19_pblue { +.hair_base_19_candycorn { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -455px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_19_pblue { +.customize-option.hair_base_19_candycorn { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -480px -1365px; width: 60px; height: 60px; } -.hair_base_19_pblue2 { +.hair_base_19_festive { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -546px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_19_pblue2 { +.customize-option.hair_base_19_festive { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -571px -1365px; width: 60px; height: 60px; } -.hair_base_19_peppermint { +.hair_base_19_frost { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -637px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_19_peppermint { +.customize-option.hair_base_19_frost { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -662px -1365px; width: 60px; height: 60px; } -.hair_base_19_pgreen { +.hair_base_19_ghostwhite { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -728px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_19_pgreen { +.customize-option.hair_base_19_ghostwhite { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -753px -1365px; width: 60px; height: 60px; } -.hair_base_19_pgreen2 { +.hair_base_19_green { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -819px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_19_pgreen2 { +.customize-option.hair_base_19_green { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -844px -1365px; width: 60px; height: 60px; } -.hair_base_19_porange { +.hair_base_19_halloween { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -910px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_19_porange { +.customize-option.hair_base_19_halloween { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -935px -1365px; width: 60px; height: 60px; } -.hair_base_19_porange2 { +.hair_base_19_holly { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1001px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_19_porange2 { +.customize-option.hair_base_19_holly { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1026px -1365px; width: 60px; height: 60px; } -.hair_base_19_ppink { +.hair_base_19_hollygreen { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1092px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_19_ppink { +.customize-option.hair_base_19_hollygreen { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1117px -1365px; width: 60px; height: 60px; } -.hair_base_19_ppink2 { +.hair_base_19_midnight { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1183px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_19_ppink2 { +.customize-option.hair_base_19_midnight { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1208px -1365px; width: 60px; height: 60px; } -.hair_base_19_ppurple { +.hair_base_19_pblue { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1274px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_19_ppurple { +.customize-option.hair_base_19_pblue { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1299px -1365px; width: 60px; height: 60px; } -.hair_base_19_ppurple2 { +.hair_base_19_pblue2 { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1365px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_19_ppurple2 { +.customize-option.hair_base_19_pblue2 { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1390px -1365px; width: 60px; height: 60px; } -.hair_base_19_pumpkin { +.hair_base_19_peppermint { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1456px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_19_pumpkin { +.customize-option.hair_base_19_peppermint { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1481px -0px; width: 60px; height: 60px; } -.hair_base_19_purple { +.hair_base_19_pgreen { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1456px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_19_purple { +.customize-option.hair_base_19_pgreen { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1481px -91px; width: 60px; height: 60px; } -.hair_base_19_pyellow { +.hair_base_19_pgreen2 { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1456px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_19_pyellow { +.customize-option.hair_base_19_pgreen2 { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1481px -182px; width: 60px; height: 60px; } -.hair_base_19_pyellow2 { +.hair_base_19_porange { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1456px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_19_pyellow2 { +.customize-option.hair_base_19_porange { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1481px -273px; width: 60px; height: 60px; } -.hair_base_19_rainbow { +.hair_base_19_porange2 { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1456px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_19_rainbow { +.customize-option.hair_base_19_porange2 { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1481px -364px; width: 60px; height: 60px; } -.hair_base_19_red { +.hair_base_19_ppink { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1456px -455px; width: 90px; height: 90px; } -.customize-option.hair_base_19_red { +.customize-option.hair_base_19_ppink { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1481px -455px; width: 60px; height: 60px; } -.hair_base_19_snowy { +.hair_base_19_ppink2 { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1456px -546px; width: 90px; height: 90px; } -.customize-option.hair_base_19_snowy { +.customize-option.hair_base_19_ppink2 { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1481px -546px; width: 60px; height: 60px; } -.hair_base_19_white { +.hair_base_19_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1456px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_19_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1481px -637px; + width: 60px; + height: 60px; +} +.hair_base_19_ppurple2 { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1456px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_19_white { +.customize-option.hair_base_19_ppurple2 { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1481px -728px; width: 60px; height: 60px; } -.hair_base_19_winternight { +.hair_base_19_pumpkin { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1456px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_19_winternight { +.customize-option.hair_base_19_pumpkin { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1481px -819px; width: 60px; height: 60px; } -.hair_base_19_winterstar { +.hair_base_19_purple { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1456px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_19_winterstar { +.customize-option.hair_base_19_purple { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1481px -910px; width: 60px; height: 60px; } -.hair_base_19_yellow { +.hair_base_19_pyellow { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1456px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_19_yellow { +.customize-option.hair_base_19_pyellow { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1481px -1001px; width: 60px; height: 60px; } -.hair_base_19_zombie { +.hair_base_19_pyellow2 { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1456px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_19_zombie { +.customize-option.hair_base_19_pyellow2 { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1481px -1092px; width: 60px; height: 60px; } +.hair_base_19_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1456px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_19_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1481px -1183px; + width: 60px; + height: 60px; +} +.hair_base_19_red { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1456px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_19_red { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1481px -1274px; + width: 60px; + height: 60px; +} +.hair_base_19_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1456px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_19_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -1481px -1365px; + width: 60px; + height: 60px; +} +.hair_base_19_white { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -91px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_19_white { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -116px -1456px; + width: 60px; + height: 60px; +} +.hair_base_19_winternight { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -182px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_19_winternight { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -207px -1456px; + width: 60px; + height: 60px; +} +.hair_base_19_winterstar { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -273px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_19_winterstar { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -298px -1456px; + width: 60px; + height: 60px; +} +.hair_base_19_yellow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -364px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_19_yellow { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -389px -1456px; + width: 60px; + height: 60px; +} +.hair_base_19_zombie { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -455px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_19_zombie { + background-image: url('~assets/images/sprites/spritesmith-main-3.png'); + background-position: -480px -1456px; + width: 60px; + height: 60px; +} .hair_base_20_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -182px -1547px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -207px -1547px; - width: 60px; - height: 60px; -} -.hair_base_20_black { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -273px -1547px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_black { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -298px -1547px; - width: 60px; - height: 60px; -} -.hair_base_20_blond { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -364px -1547px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_blond { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -389px -1547px; - width: 60px; - height: 60px; -} -.hair_base_20_blue { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -455px -1547px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_blue { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -480px -1547px; - width: 60px; - height: 60px; -} -.hair_base_20_brown { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -546px -1547px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_brown { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -571px -1547px; - width: 60px; - height: 60px; -} -.hair_base_20_candycane { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -637px -1547px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_candycane { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -662px -1547px; - width: 60px; - height: 60px; -} -.hair_base_20_candycorn { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -728px -1547px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_candycorn { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -753px -1547px; - width: 60px; - height: 60px; -} -.hair_base_20_festive { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -819px -1547px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_festive { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -844px -1547px; - width: 60px; - height: 60px; -} -.hair_base_20_frost { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -910px -1547px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_frost { - background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -935px -1547px; - width: 60px; - height: 60px; -} -.hair_base_20_ghostwhite { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1001px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_20_ghostwhite { +.customize-option.hair_base_20_aurora { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1026px -1547px; width: 60px; height: 60px; } -.hair_base_20_green { +.hair_base_20_black { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1092px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_20_green { +.customize-option.hair_base_20_black { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1117px -1547px; width: 60px; height: 60px; } -.hair_base_20_halloween { +.hair_base_20_blond { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1183px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_20_halloween { +.customize-option.hair_base_20_blond { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1208px -1547px; width: 60px; height: 60px; } -.hair_base_20_holly { +.hair_base_20_blue { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1274px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_20_holly { +.customize-option.hair_base_20_blue { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1299px -1547px; width: 60px; height: 60px; } -.hair_base_20_hollygreen { +.hair_base_20_brown { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1365px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_20_hollygreen { +.customize-option.hair_base_20_brown { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1390px -1547px; width: 60px; height: 60px; } -.hair_base_20_midnight { +.hair_base_20_candycane { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1456px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_20_midnight { +.customize-option.hair_base_20_candycane { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1481px -1547px; width: 60px; height: 60px; } -.hair_base_20_pblue { +.hair_base_20_candycorn { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1547px -1547px; width: 90px; height: 90px; } -.customize-option.hair_base_20_pblue { +.customize-option.hair_base_20_candycorn { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1572px -1547px; width: 60px; height: 60px; } -.hair_base_20_pblue2 { +.hair_base_20_festive { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1638px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_20_pblue2 { +.customize-option.hair_base_20_festive { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1663px -0px; width: 60px; height: 60px; } -.hair_base_20_peppermint { +.hair_base_20_frost { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1638px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_20_peppermint { +.customize-option.hair_base_20_frost { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1663px -91px; width: 60px; height: 60px; } -.hair_base_20_pgreen { +.hair_base_20_ghostwhite { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1638px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_20_pgreen { +.customize-option.hair_base_20_ghostwhite { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1663px -182px; width: 60px; height: 60px; } -.hair_base_20_pgreen2 { +.hair_base_20_green { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1638px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_20_pgreen2 { +.customize-option.hair_base_20_green { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1663px -273px; width: 60px; height: 60px; } -.hair_base_20_porange { +.hair_base_20_halloween { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1638px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_20_porange { +.customize-option.hair_base_20_halloween { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); background-position: -1663px -364px; width: 60px; @@ -3480,469 +3480,469 @@ } .hair_base_2_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1547px -1183px; + background-position: -455px -1547px; width: 90px; height: 90px; } .customize-option.hair_base_2_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1572px -1198px; + background-position: -480px -1562px; width: 60px; height: 60px; } .hair_base_2_aurora { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1456px -1183px; + background-position: -546px -1456px; width: 90px; height: 90px; } .customize-option.hair_base_2_aurora { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1481px -1198px; + background-position: -571px -1471px; width: 60px; height: 60px; } .hair_base_2_black { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1456px -1274px; + background-position: -637px -1456px; width: 90px; height: 90px; } .customize-option.hair_base_2_black { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1481px -1289px; + background-position: -662px -1471px; width: 60px; height: 60px; } .hair_base_2_blond { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1456px -1365px; + background-position: -728px -1456px; width: 90px; height: 90px; } .customize-option.hair_base_2_blond { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1481px -1380px; + background-position: -753px -1471px; width: 60px; height: 60px; } .hair_base_2_blue { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: 0px -1456px; + background-position: -819px -1456px; width: 90px; height: 90px; } .customize-option.hair_base_2_blue { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -25px -1471px; + background-position: -844px -1471px; width: 60px; height: 60px; } .hair_base_2_brown { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -91px -1456px; + background-position: -910px -1456px; width: 90px; height: 90px; } .customize-option.hair_base_2_brown { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -116px -1471px; + background-position: -935px -1471px; width: 60px; height: 60px; } .hair_base_2_candycane { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -182px -1456px; + background-position: -1001px -1456px; width: 90px; height: 90px; } .customize-option.hair_base_2_candycane { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -207px -1471px; + background-position: -1026px -1471px; width: 60px; height: 60px; } .hair_base_2_candycorn { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -273px -1456px; + background-position: -1092px -1456px; width: 90px; height: 90px; } .customize-option.hair_base_2_candycorn { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -298px -1471px; + background-position: -1117px -1471px; width: 60px; height: 60px; } .hair_base_2_festive { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -364px -1456px; + background-position: -1183px -1456px; width: 90px; height: 90px; } .customize-option.hair_base_2_festive { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -389px -1471px; + background-position: -1208px -1471px; width: 60px; height: 60px; } .hair_base_2_frost { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -455px -1456px; + background-position: -1274px -1456px; width: 90px; height: 90px; } .customize-option.hair_base_2_frost { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -480px -1471px; + background-position: -1299px -1471px; width: 60px; height: 60px; } .hair_base_2_ghostwhite { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -546px -1456px; + background-position: -1365px -1456px; width: 90px; height: 90px; } .customize-option.hair_base_2_ghostwhite { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -571px -1471px; + background-position: -1390px -1471px; width: 60px; height: 60px; } .hair_base_2_green { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -637px -1456px; + background-position: -1456px -1456px; width: 90px; height: 90px; } .customize-option.hair_base_2_green { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -662px -1471px; + background-position: -1481px -1471px; width: 60px; height: 60px; } .hair_base_2_halloween { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -728px -1456px; + background-position: -1547px 0px; width: 90px; height: 90px; } .customize-option.hair_base_2_halloween { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -753px -1471px; + background-position: -1572px -15px; width: 60px; height: 60px; } .hair_base_2_holly { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -819px -1456px; + background-position: -1547px -91px; width: 90px; height: 90px; } .customize-option.hair_base_2_holly { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -844px -1471px; + background-position: -1572px -106px; width: 60px; height: 60px; } .hair_base_2_hollygreen { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -910px -1456px; + background-position: -1547px -182px; width: 90px; height: 90px; } .customize-option.hair_base_2_hollygreen { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -935px -1471px; + background-position: -1572px -197px; width: 60px; height: 60px; } .hair_base_2_midnight { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1001px -1456px; + background-position: -1547px -273px; width: 90px; height: 90px; } .customize-option.hair_base_2_midnight { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1026px -1471px; + background-position: -1572px -288px; width: 60px; height: 60px; } .hair_base_2_pblue { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1092px -1456px; + background-position: -1547px -364px; width: 90px; height: 90px; } .customize-option.hair_base_2_pblue { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1117px -1471px; + background-position: -1572px -379px; width: 60px; height: 60px; } .hair_base_2_pblue2 { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1183px -1456px; + background-position: -1547px -455px; width: 90px; height: 90px; } .customize-option.hair_base_2_pblue2 { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1208px -1471px; + background-position: -1572px -470px; width: 60px; height: 60px; } .hair_base_2_peppermint { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1274px -1456px; + background-position: -1547px -546px; width: 90px; height: 90px; } .customize-option.hair_base_2_peppermint { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1299px -1471px; + background-position: -1572px -561px; width: 60px; height: 60px; } .hair_base_2_pgreen { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1365px -1456px; + background-position: -1547px -637px; width: 90px; height: 90px; } .customize-option.hair_base_2_pgreen { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1390px -1471px; + background-position: -1572px -652px; width: 60px; height: 60px; } .hair_base_2_pgreen2 { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1456px -1456px; + background-position: -1547px -728px; width: 90px; height: 90px; } .customize-option.hair_base_2_pgreen2 { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1481px -1471px; + background-position: -1572px -743px; width: 60px; height: 60px; } .hair_base_2_porange { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1547px 0px; + background-position: -1547px -819px; width: 90px; height: 90px; } .customize-option.hair_base_2_porange { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1572px -15px; + background-position: -1572px -834px; width: 60px; height: 60px; } .hair_base_2_porange2 { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1547px -91px; + background-position: -1547px -910px; width: 90px; height: 90px; } .customize-option.hair_base_2_porange2 { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1572px -106px; + background-position: -1572px -925px; width: 60px; height: 60px; } .hair_base_2_ppink { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1547px -182px; + background-position: -1547px -1001px; width: 90px; height: 90px; } .customize-option.hair_base_2_ppink { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1572px -197px; + background-position: -1572px -1016px; width: 60px; height: 60px; } .hair_base_2_ppink2 { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1547px -273px; + background-position: -1547px -1092px; width: 90px; height: 90px; } .customize-option.hair_base_2_ppink2 { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1572px -288px; + background-position: -1572px -1107px; width: 60px; height: 60px; } .hair_base_2_ppurple { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1547px -364px; + background-position: -1547px -1183px; width: 90px; height: 90px; } .customize-option.hair_base_2_ppurple { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1572px -379px; + background-position: -1572px -1198px; width: 60px; height: 60px; } .hair_base_2_ppurple2 { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1547px -455px; + background-position: -1547px -1274px; width: 90px; height: 90px; } .customize-option.hair_base_2_ppurple2 { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1572px -470px; + background-position: -1572px -1289px; width: 60px; height: 60px; } .hair_base_2_pumpkin { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1547px -546px; + background-position: -1547px -1365px; width: 90px; height: 90px; } .customize-option.hair_base_2_pumpkin { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1572px -561px; + background-position: -1572px -1380px; width: 60px; height: 60px; } .hair_base_2_purple { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1547px -637px; + background-position: -1547px -1456px; width: 90px; height: 90px; } .customize-option.hair_base_2_purple { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1572px -652px; + background-position: -1572px -1471px; width: 60px; height: 60px; } .hair_base_2_pyellow { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1547px -728px; + background-position: 0px -1547px; width: 90px; height: 90px; } .customize-option.hair_base_2_pyellow { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1572px -743px; + background-position: -25px -1562px; width: 60px; height: 60px; } .hair_base_2_pyellow2 { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1547px -819px; + background-position: -91px -1547px; width: 90px; height: 90px; } .customize-option.hair_base_2_pyellow2 { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1572px -834px; + background-position: -116px -1562px; width: 60px; height: 60px; } .hair_base_2_rainbow { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1547px -910px; + background-position: -182px -1547px; width: 90px; height: 90px; } .customize-option.hair_base_2_rainbow { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1572px -925px; + background-position: -207px -1562px; width: 60px; height: 60px; } .hair_base_2_red { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1547px -1001px; + background-position: -273px -1547px; width: 90px; height: 90px; } .customize-option.hair_base_2_red { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1572px -1016px; + background-position: -298px -1562px; width: 60px; height: 60px; } .hair_base_2_snowy { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1547px -1092px; + background-position: -364px -1547px; width: 90px; height: 90px; } .customize-option.hair_base_2_snowy { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1572px -1107px; + background-position: -389px -1562px; width: 60px; height: 60px; } .hair_base_2_white { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1547px -1274px; + background-position: -546px -1547px; width: 90px; height: 90px; } .customize-option.hair_base_2_white { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1572px -1289px; + background-position: -571px -1562px; width: 60px; height: 60px; } .hair_base_2_winternight { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1547px -1365px; + background-position: -637px -1547px; width: 90px; height: 90px; } .customize-option.hair_base_2_winternight { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1572px -1380px; + background-position: -662px -1562px; width: 60px; height: 60px; } .hair_base_2_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1547px -1456px; + background-position: -728px -1547px; width: 90px; height: 90px; } .customize-option.hair_base_2_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -1572px -1471px; + background-position: -753px -1562px; width: 60px; height: 60px; } .hair_base_2_yellow { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: 0px -1547px; + background-position: -819px -1547px; width: 90px; height: 90px; } .customize-option.hair_base_2_yellow { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -25px -1562px; + background-position: -844px -1562px; width: 60px; height: 60px; } .hair_base_2_zombie { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -91px -1547px; + background-position: -910px -1547px; width: 90px; height: 90px; } .customize-option.hair_base_2_zombie { background-image: url('~assets/images/sprites/spritesmith-main-3.png'); - background-position: -116px -1562px; + background-position: -935px -1562px; width: 60px; height: 60px; } diff --git a/website/client/assets/css/sprites/spritesmith-main-4.css b/website/client/assets/css/sprites/spritesmith-main-4.css index 4917446fe0..133af34e05 100644 --- a/website/client/assets/css/sprites/spritesmith-main-4.css +++ b/website/client/assets/css/sprites/spritesmith-main-4.css @@ -1,3948 +1,3948 @@ .hair_base_20_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: 0px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -25px -273px; - width: 60px; - height: 60px; -} -.hair_base_20_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -91px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -116px -0px; - width: 60px; - height: 60px; -} -.hair_base_20_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -728px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -753px -1092px; - width: 60px; - height: 60px; -} -.hair_base_20_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: 0px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -25px -91px; - width: 60px; - height: 60px; -} -.hair_base_20_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -91px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -116px -91px; - width: 60px; - height: 60px; -} -.hair_base_20_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -182px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -207px -0px; - width: 60px; - height: 60px; -} -.hair_base_20_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -182px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -207px -91px; - width: 60px; - height: 60px; -} -.hair_base_20_purple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: 0px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_purple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -25px -182px; - width: 60px; - height: 60px; -} -.hair_base_20_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -91px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -116px -182px; - width: 60px; - height: 60px; -} -.hair_base_20_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -182px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -207px -182px; - width: 60px; - height: 60px; -} -.hair_base_20_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -273px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -298px -0px; - width: 60px; - height: 60px; -} -.hair_base_20_red { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -273px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_red { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -298px -91px; - width: 60px; - height: 60px; -} -.hair_base_20_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -273px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -298px -182px; - width: 60px; - height: 60px; -} -.hair_base_20_white { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -91px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_white { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -116px -273px; - width: 60px; - height: 60px; -} -.hair_base_20_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -182px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -207px -273px; - width: 60px; - height: 60px; -} -.hair_base_20_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -273px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -298px -273px; - width: 60px; - height: 60px; -} -.hair_base_20_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -364px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -389px -0px; - width: 60px; - height: 60px; -} -.hair_base_20_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -364px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_20_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -389px -91px; - width: 60px; - height: 60px; -} -.hair_base_3_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -637px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -662px -197px; - width: 60px; - height: 60px; -} -.hair_base_3_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -364px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -389px -197px; - width: 60px; - height: 60px; -} -.hair_base_3_black { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -364px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_black { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -389px -288px; - width: 60px; - height: 60px; -} -.hair_base_3_blond { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: 0px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_blond { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -25px -379px; - width: 60px; - height: 60px; -} -.hair_base_3_blue { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -91px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_3_blue { +.customize-option.hair_base_20_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -116px -379px; + background-position: -116px -364px; width: 60px; height: 60px; } -.hair_base_3_brown { +.hair_base_20_holly { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -91px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_20_holly { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -116px -0px; + width: 60px; + height: 60px; +} +.hair_base_20_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -728px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_20_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -753px -1092px; + width: 60px; + height: 60px; +} +.hair_base_20_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: 0px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_20_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -25px -91px; + width: 60px; + height: 60px; +} +.hair_base_20_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -91px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_20_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -116px -91px; + width: 60px; + height: 60px; +} +.hair_base_20_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -182px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_20_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -207px -0px; + width: 60px; + height: 60px; +} +.hair_base_20_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -182px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_20_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -207px -91px; + width: 60px; + height: 60px; +} +.hair_base_20_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: 0px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_20_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -25px -182px; + width: 60px; + height: 60px; +} +.hair_base_20_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -91px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_20_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -116px -182px; + width: 60px; + height: 60px; +} +.hair_base_20_porange { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -182px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_20_porange { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -207px -182px; + width: 60px; + height: 60px; +} +.hair_base_20_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -273px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_20_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -298px -0px; + width: 60px; + height: 60px; +} +.hair_base_20_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -273px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_20_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -298px -91px; + width: 60px; + height: 60px; +} +.hair_base_20_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -273px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_20_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -298px -182px; + width: 60px; + height: 60px; +} +.hair_base_20_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: 0px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_20_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -25px -273px; + width: 60px; + height: 60px; +} +.hair_base_20_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -91px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_20_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -116px -273px; + width: 60px; + height: 60px; +} +.hair_base_20_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -182px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_20_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -207px -273px; + width: 60px; + height: 60px; +} +.hair_base_20_purple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -273px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_20_purple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -298px -273px; + width: 60px; + height: 60px; +} +.hair_base_20_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -364px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_20_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -389px -0px; + width: 60px; + height: 60px; +} +.hair_base_20_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -364px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_20_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -389px -91px; + width: 60px; + height: 60px; +} +.hair_base_20_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -364px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_20_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -389px -182px; + width: 60px; + height: 60px; +} +.hair_base_20_red { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -364px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_20_red { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -389px -273px; + width: 60px; + height: 60px; +} +.hair_base_20_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: 0px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_20_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -25px -364px; + width: 60px; + height: 60px; +} +.hair_base_20_white { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -182px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_3_brown { +.customize-option.hair_base_20_white { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -207px -379px; + background-position: -207px -364px; width: 60px; height: 60px; } -.hair_base_3_candycane { +.hair_base_20_winternight { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -273px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_3_candycane { +.customize-option.hair_base_20_winternight { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -298px -379px; + background-position: -298px -364px; width: 60px; height: 60px; } -.hair_base_3_candycorn { +.hair_base_20_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -364px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_3_candycorn { +.customize-option.hair_base_20_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -389px -379px; + background-position: -389px -364px; width: 60px; height: 60px; } -.hair_base_3_festive { +.hair_base_20_yellow { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -455px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_3_festive { +.customize-option.hair_base_20_yellow { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -480px -15px; + background-position: -480px -0px; width: 60px; height: 60px; } -.hair_base_3_frost { +.hair_base_20_zombie { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -455px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_3_frost { +.customize-option.hair_base_20_zombie { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -480px -106px; + background-position: -480px -91px; width: 60px; height: 60px; } -.hair_base_3_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -455px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -480px -197px; - width: 60px; - height: 60px; -} -.hair_base_3_green { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -455px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_green { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -480px -288px; - width: 60px; - height: 60px; -} -.hair_base_3_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -455px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -480px -379px; - width: 60px; - height: 60px; -} -.hair_base_3_holly { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: 0px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_holly { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -25px -470px; - width: 60px; - height: 60px; -} -.hair_base_3_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -91px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -116px -470px; - width: 60px; - height: 60px; -} -.hair_base_3_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -182px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -207px -470px; - width: 60px; - height: 60px; -} -.hair_base_3_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -273px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -298px -470px; - width: 60px; - height: 60px; -} -.hair_base_3_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -364px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -389px -470px; - width: 60px; - height: 60px; -} -.hair_base_3_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -455px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -480px -470px; - width: 60px; - height: 60px; -} -.hair_base_3_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -546px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -571px -15px; - width: 60px; - height: 60px; -} -.hair_base_3_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -546px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -571px -106px; - width: 60px; - height: 60px; -} -.hair_base_3_porange { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -546px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_porange { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -571px -197px; - width: 60px; - height: 60px; -} -.hair_base_3_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -546px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -571px -288px; - width: 60px; - height: 60px; -} -.hair_base_3_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -546px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -571px -379px; - width: 60px; - height: 60px; -} -.hair_base_3_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -546px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -571px -470px; - width: 60px; - height: 60px; -} -.hair_base_3_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: 0px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -25px -561px; - width: 60px; - height: 60px; -} -.hair_base_3_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -91px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -116px -561px; - width: 60px; - height: 60px; -} -.hair_base_3_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -182px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -207px -561px; - width: 60px; - height: 60px; -} -.hair_base_3_purple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -273px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_purple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -298px -561px; - width: 60px; - height: 60px; -} -.hair_base_3_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -364px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -389px -561px; - width: 60px; - height: 60px; -} -.hair_base_3_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -455px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -480px -561px; - width: 60px; - height: 60px; -} -.hair_base_3_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -546px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -571px -561px; - width: 60px; - height: 60px; -} -.hair_base_3_red { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -637px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_red { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -662px -15px; - width: 60px; - height: 60px; -} -.hair_base_3_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -637px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -662px -106px; - width: 60px; - height: 60px; -} -.hair_base_3_white { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -637px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_white { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -662px -288px; - width: 60px; - height: 60px; -} -.hair_base_3_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -637px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -662px -379px; - width: 60px; - height: 60px; -} -.hair_base_3_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -637px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -662px -470px; - width: 60px; - height: 60px; -} -.hair_base_3_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -637px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -662px -561px; - width: 60px; - height: 60px; -} -.hair_base_3_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: 0px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_3_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -25px -652px; - width: 60px; - height: 60px; -} -.hair_base_4_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: 0px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -25px -834px; - width: 60px; - height: 60px; -} -.hair_base_4_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -91px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -116px -652px; - width: 60px; - height: 60px; -} -.hair_base_4_black { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -182px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_black { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -207px -652px; - width: 60px; - height: 60px; -} -.hair_base_4_blond { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -273px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_blond { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -298px -652px; - width: 60px; - height: 60px; -} -.hair_base_4_blue { +.hair_base_3_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -364px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_4_blue { +.customize-option.hair_base_3_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -389px -652px; width: 60px; height: 60px; } -.hair_base_4_brown { +.hair_base_3_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -455px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -480px -197px; + width: 60px; + height: 60px; +} +.hair_base_3_black { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -455px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_black { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -480px -288px; + width: 60px; + height: 60px; +} +.hair_base_3_blond { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -455px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_blond { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -480px -379px; + width: 60px; + height: 60px; +} +.hair_base_3_blue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: 0px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_blue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -25px -470px; + width: 60px; + height: 60px; +} +.hair_base_3_brown { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -91px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_brown { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -116px -470px; + width: 60px; + height: 60px; +} +.hair_base_3_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -182px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -207px -470px; + width: 60px; + height: 60px; +} +.hair_base_3_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -273px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -298px -470px; + width: 60px; + height: 60px; +} +.hair_base_3_festive { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -364px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_festive { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -389px -470px; + width: 60px; + height: 60px; +} +.hair_base_3_frost { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -455px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_frost { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -480px -470px; + width: 60px; + height: 60px; +} +.hair_base_3_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -546px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -571px -15px; + width: 60px; + height: 60px; +} +.hair_base_3_green { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -546px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_green { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -571px -106px; + width: 60px; + height: 60px; +} +.hair_base_3_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -546px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -571px -197px; + width: 60px; + height: 60px; +} +.hair_base_3_holly { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -546px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_holly { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -571px -288px; + width: 60px; + height: 60px; +} +.hair_base_3_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -546px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -571px -379px; + width: 60px; + height: 60px; +} +.hair_base_3_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -546px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -571px -470px; + width: 60px; + height: 60px; +} +.hair_base_3_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: 0px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -25px -561px; + width: 60px; + height: 60px; +} +.hair_base_3_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -91px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -116px -561px; + width: 60px; + height: 60px; +} +.hair_base_3_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -182px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -207px -561px; + width: 60px; + height: 60px; +} +.hair_base_3_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -273px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -298px -561px; + width: 60px; + height: 60px; +} +.hair_base_3_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -364px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -389px -561px; + width: 60px; + height: 60px; +} +.hair_base_3_porange { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -455px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_porange { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -480px -561px; + width: 60px; + height: 60px; +} +.hair_base_3_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -546px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -571px -561px; + width: 60px; + height: 60px; +} +.hair_base_3_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -637px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -662px -15px; + width: 60px; + height: 60px; +} +.hair_base_3_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -637px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -662px -106px; + width: 60px; + height: 60px; +} +.hair_base_3_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -637px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -662px -197px; + width: 60px; + height: 60px; +} +.hair_base_3_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -637px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -662px -288px; + width: 60px; + height: 60px; +} +.hair_base_3_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -637px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -662px -379px; + width: 60px; + height: 60px; +} +.hair_base_3_purple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -637px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_purple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -662px -470px; + width: 60px; + height: 60px; +} +.hair_base_3_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -637px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -662px -561px; + width: 60px; + height: 60px; +} +.hair_base_3_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: 0px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -25px -652px; + width: 60px; + height: 60px; +} +.hair_base_3_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -91px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -116px -652px; + width: 60px; + height: 60px; +} +.hair_base_3_red { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -182px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_red { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -207px -652px; + width: 60px; + height: 60px; +} +.hair_base_3_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -273px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_3_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -298px -652px; + width: 60px; + height: 60px; +} +.hair_base_3_white { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -455px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_4_brown { +.customize-option.hair_base_3_white { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -480px -652px; width: 60px; height: 60px; } -.hair_base_4_candycane { +.hair_base_3_winternight { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -546px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_4_candycane { +.customize-option.hair_base_3_winternight { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -571px -652px; width: 60px; height: 60px; } -.hair_base_4_candycorn { +.hair_base_3_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -637px -637px; width: 90px; height: 90px; } -.customize-option.hair_base_4_candycorn { +.customize-option.hair_base_3_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -662px -652px; width: 60px; height: 60px; } -.hair_base_4_festive { +.hair_base_3_yellow { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -728px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_4_festive { +.customize-option.hair_base_3_yellow { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -753px -15px; width: 60px; height: 60px; } -.hair_base_4_frost { +.hair_base_3_zombie { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -728px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_4_frost { +.customize-option.hair_base_3_zombie { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -753px -106px; width: 60px; height: 60px; } -.hair_base_4_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -728px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -753px -197px; - width: 60px; - height: 60px; -} -.hair_base_4_green { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -728px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_green { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -753px -288px; - width: 60px; - height: 60px; -} -.hair_base_4_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -728px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -753px -379px; - width: 60px; - height: 60px; -} -.hair_base_4_holly { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -728px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_holly { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -753px -470px; - width: 60px; - height: 60px; -} -.hair_base_4_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -728px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -753px -561px; - width: 60px; - height: 60px; -} -.hair_base_4_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -728px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -753px -652px; - width: 60px; - height: 60px; -} -.hair_base_4_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: 0px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -25px -743px; - width: 60px; - height: 60px; -} -.hair_base_4_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -91px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -116px -743px; - width: 60px; - height: 60px; -} -.hair_base_4_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -182px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -207px -743px; - width: 60px; - height: 60px; -} -.hair_base_4_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -273px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -298px -743px; - width: 60px; - height: 60px; -} -.hair_base_4_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -364px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -389px -743px; - width: 60px; - height: 60px; -} -.hair_base_4_porange { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -455px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_porange { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -480px -743px; - width: 60px; - height: 60px; -} -.hair_base_4_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -546px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -571px -743px; - width: 60px; - height: 60px; -} -.hair_base_4_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -637px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -662px -743px; - width: 60px; - height: 60px; -} -.hair_base_4_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -728px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -753px -743px; - width: 60px; - height: 60px; -} -.hair_base_4_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -819px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -844px -15px; - width: 60px; - height: 60px; -} -.hair_base_4_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -819px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -844px -106px; - width: 60px; - height: 60px; -} -.hair_base_4_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -819px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -844px -197px; - width: 60px; - height: 60px; -} -.hair_base_4_purple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -819px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_purple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -844px -288px; - width: 60px; - height: 60px; -} -.hair_base_4_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -819px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -844px -379px; - width: 60px; - height: 60px; -} -.hair_base_4_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -819px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -844px -470px; - width: 60px; - height: 60px; -} -.hair_base_4_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -819px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -844px -561px; - width: 60px; - height: 60px; -} -.hair_base_4_red { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -819px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_red { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -844px -652px; - width: 60px; - height: 60px; -} -.hair_base_4_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -819px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -844px -743px; - width: 60px; - height: 60px; -} -.hair_base_4_white { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -91px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_white { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -116px -834px; - width: 60px; - height: 60px; -} -.hair_base_4_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -182px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -207px -834px; - width: 60px; - height: 60px; -} -.hair_base_4_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -273px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -298px -834px; - width: 60px; - height: 60px; -} -.hair_base_4_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -364px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -389px -834px; - width: 60px; - height: 60px; -} -.hair_base_4_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -455px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_4_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -480px -834px; - width: 60px; - height: 60px; -} -.hair_base_5_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1001px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1026px -743px; - width: 60px; - height: 60px; -} -.hair_base_5_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -546px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -571px -834px; - width: 60px; - height: 60px; -} -.hair_base_5_black { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -637px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_black { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -662px -834px; - width: 60px; - height: 60px; -} -.hair_base_5_blond { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -728px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_blond { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -753px -834px; - width: 60px; - height: 60px; -} -.hair_base_5_blue { +.hair_base_4_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -819px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_5_blue { +.customize-option.hair_base_4_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -844px -834px; width: 60px; height: 60px; } -.hair_base_5_brown { +.hair_base_4_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -728px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -753px -197px; + width: 60px; + height: 60px; +} +.hair_base_4_black { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -728px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_black { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -753px -288px; + width: 60px; + height: 60px; +} +.hair_base_4_blond { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -728px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_blond { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -753px -379px; + width: 60px; + height: 60px; +} +.hair_base_4_blue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -728px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_blue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -753px -470px; + width: 60px; + height: 60px; +} +.hair_base_4_brown { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -728px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_brown { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -753px -561px; + width: 60px; + height: 60px; +} +.hair_base_4_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -728px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -753px -652px; + width: 60px; + height: 60px; +} +.hair_base_4_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: 0px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -25px -743px; + width: 60px; + height: 60px; +} +.hair_base_4_festive { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -91px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_festive { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -116px -743px; + width: 60px; + height: 60px; +} +.hair_base_4_frost { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -182px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_frost { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -207px -743px; + width: 60px; + height: 60px; +} +.hair_base_4_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -273px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -298px -743px; + width: 60px; + height: 60px; +} +.hair_base_4_green { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -364px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_green { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -389px -743px; + width: 60px; + height: 60px; +} +.hair_base_4_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -455px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -480px -743px; + width: 60px; + height: 60px; +} +.hair_base_4_holly { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -546px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_holly { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -571px -743px; + width: 60px; + height: 60px; +} +.hair_base_4_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -637px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -662px -743px; + width: 60px; + height: 60px; +} +.hair_base_4_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -728px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -753px -743px; + width: 60px; + height: 60px; +} +.hair_base_4_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -819px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -844px -15px; + width: 60px; + height: 60px; +} +.hair_base_4_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -819px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -844px -106px; + width: 60px; + height: 60px; +} +.hair_base_4_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -819px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -844px -197px; + width: 60px; + height: 60px; +} +.hair_base_4_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -819px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -844px -288px; + width: 60px; + height: 60px; +} +.hair_base_4_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -819px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -844px -379px; + width: 60px; + height: 60px; +} +.hair_base_4_porange { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -819px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_porange { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -844px -470px; + width: 60px; + height: 60px; +} +.hair_base_4_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -819px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -844px -561px; + width: 60px; + height: 60px; +} +.hair_base_4_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -819px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -844px -652px; + width: 60px; + height: 60px; +} +.hair_base_4_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -819px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -844px -743px; + width: 60px; + height: 60px; +} +.hair_base_4_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: 0px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -25px -834px; + width: 60px; + height: 60px; +} +.hair_base_4_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -91px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -116px -834px; + width: 60px; + height: 60px; +} +.hair_base_4_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -182px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -207px -834px; + width: 60px; + height: 60px; +} +.hair_base_4_purple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -273px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_purple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -298px -834px; + width: 60px; + height: 60px; +} +.hair_base_4_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -364px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -389px -834px; + width: 60px; + height: 60px; +} +.hair_base_4_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -455px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -480px -834px; + width: 60px; + height: 60px; +} +.hair_base_4_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -546px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -571px -834px; + width: 60px; + height: 60px; +} +.hair_base_4_red { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -637px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_red { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -662px -834px; + width: 60px; + height: 60px; +} +.hair_base_4_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -728px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_4_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -753px -834px; + width: 60px; + height: 60px; +} +.hair_base_4_white { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -910px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_5_brown { +.customize-option.hair_base_4_white { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -935px -15px; width: 60px; height: 60px; } -.hair_base_5_candycane { +.hair_base_4_winternight { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -910px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_5_candycane { +.customize-option.hair_base_4_winternight { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -935px -106px; width: 60px; height: 60px; } -.hair_base_5_candycorn { +.hair_base_4_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -910px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_5_candycorn { +.customize-option.hair_base_4_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -935px -197px; width: 60px; height: 60px; } -.hair_base_5_festive { +.hair_base_4_yellow { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -910px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_5_festive { +.customize-option.hair_base_4_yellow { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -935px -288px; width: 60px; height: 60px; } -.hair_base_5_frost { +.hair_base_4_zombie { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -910px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_5_frost { +.customize-option.hair_base_4_zombie { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -935px -379px; width: 60px; height: 60px; } -.hair_base_5_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -910px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -935px -470px; - width: 60px; - height: 60px; -} -.hair_base_5_green { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -910px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_green { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -935px -561px; - width: 60px; - height: 60px; -} -.hair_base_5_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -910px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -935px -652px; - width: 60px; - height: 60px; -} -.hair_base_5_holly { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -910px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_holly { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -935px -743px; - width: 60px; - height: 60px; -} -.hair_base_5_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -910px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -935px -834px; - width: 60px; - height: 60px; -} -.hair_base_5_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: 0px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -25px -925px; - width: 60px; - height: 60px; -} -.hair_base_5_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -91px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -116px -925px; - width: 60px; - height: 60px; -} -.hair_base_5_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -182px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -207px -925px; - width: 60px; - height: 60px; -} -.hair_base_5_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -273px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -298px -925px; - width: 60px; - height: 60px; -} -.hair_base_5_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -364px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -389px -925px; - width: 60px; - height: 60px; -} -.hair_base_5_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -455px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -480px -925px; - width: 60px; - height: 60px; -} -.hair_base_5_porange { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -546px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_porange { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -571px -925px; - width: 60px; - height: 60px; -} -.hair_base_5_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -637px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -662px -925px; - width: 60px; - height: 60px; -} -.hair_base_5_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -728px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -753px -925px; - width: 60px; - height: 60px; -} -.hair_base_5_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -819px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -844px -925px; - width: 60px; - height: 60px; -} -.hair_base_5_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -910px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -935px -925px; - width: 60px; - height: 60px; -} -.hair_base_5_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1001px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1026px -15px; - width: 60px; - height: 60px; -} -.hair_base_5_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1001px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1026px -106px; - width: 60px; - height: 60px; -} -.hair_base_5_purple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1001px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_purple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1026px -197px; - width: 60px; - height: 60px; -} -.hair_base_5_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1001px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1026px -288px; - width: 60px; - height: 60px; -} -.hair_base_5_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1001px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1026px -379px; - width: 60px; - height: 60px; -} -.hair_base_5_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1001px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1026px -470px; - width: 60px; - height: 60px; -} -.hair_base_5_red { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1001px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_red { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1026px -561px; - width: 60px; - height: 60px; -} -.hair_base_5_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1001px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1026px -652px; - width: 60px; - height: 60px; -} -.hair_base_5_white { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1001px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_white { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1026px -834px; - width: 60px; - height: 60px; -} -.hair_base_5_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1001px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1026px -925px; - width: 60px; - height: 60px; -} -.hair_base_5_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: 0px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -25px -1016px; - width: 60px; - height: 60px; -} -.hair_base_5_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -91px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -116px -1016px; - width: 60px; - height: 60px; -} -.hair_base_5_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -182px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_5_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -207px -1016px; - width: 60px; - height: 60px; -} -.hair_base_6_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1092px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1117px -1107px; - width: 60px; - height: 60px; -} -.hair_base_6_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -273px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -298px -1016px; - width: 60px; - height: 60px; -} -.hair_base_6_black { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -364px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_black { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -389px -1016px; - width: 60px; - height: 60px; -} -.hair_base_6_blond { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -455px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_blond { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -480px -1016px; - width: 60px; - height: 60px; -} -.hair_base_6_blue { +.hair_base_5_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -546px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_6_blue { +.customize-option.hair_base_5_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -571px -1016px; width: 60px; height: 60px; } -.hair_base_6_brown { +.hair_base_5_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -910px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -935px -470px; + width: 60px; + height: 60px; +} +.hair_base_5_black { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -910px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_black { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -935px -561px; + width: 60px; + height: 60px; +} +.hair_base_5_blond { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -910px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_blond { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -935px -652px; + width: 60px; + height: 60px; +} +.hair_base_5_blue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -910px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_blue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -935px -743px; + width: 60px; + height: 60px; +} +.hair_base_5_brown { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -910px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_brown { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -935px -834px; + width: 60px; + height: 60px; +} +.hair_base_5_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: 0px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -25px -925px; + width: 60px; + height: 60px; +} +.hair_base_5_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -91px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -116px -925px; + width: 60px; + height: 60px; +} +.hair_base_5_festive { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -182px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_festive { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -207px -925px; + width: 60px; + height: 60px; +} +.hair_base_5_frost { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -273px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_frost { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -298px -925px; + width: 60px; + height: 60px; +} +.hair_base_5_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -364px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -389px -925px; + width: 60px; + height: 60px; +} +.hair_base_5_green { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -455px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_green { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -480px -925px; + width: 60px; + height: 60px; +} +.hair_base_5_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -546px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -571px -925px; + width: 60px; + height: 60px; +} +.hair_base_5_holly { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -637px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_holly { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -662px -925px; + width: 60px; + height: 60px; +} +.hair_base_5_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -728px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -753px -925px; + width: 60px; + height: 60px; +} +.hair_base_5_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -819px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -844px -925px; + width: 60px; + height: 60px; +} +.hair_base_5_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -910px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -935px -925px; + width: 60px; + height: 60px; +} +.hair_base_5_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1001px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1026px -15px; + width: 60px; + height: 60px; +} +.hair_base_5_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1001px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1026px -106px; + width: 60px; + height: 60px; +} +.hair_base_5_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1001px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1026px -197px; + width: 60px; + height: 60px; +} +.hair_base_5_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1001px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1026px -288px; + width: 60px; + height: 60px; +} +.hair_base_5_porange { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1001px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_porange { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1026px -379px; + width: 60px; + height: 60px; +} +.hair_base_5_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1001px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1026px -470px; + width: 60px; + height: 60px; +} +.hair_base_5_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1001px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1026px -561px; + width: 60px; + height: 60px; +} +.hair_base_5_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1001px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1026px -652px; + width: 60px; + height: 60px; +} +.hair_base_5_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1001px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1026px -743px; + width: 60px; + height: 60px; +} +.hair_base_5_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1001px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1026px -834px; + width: 60px; + height: 60px; +} +.hair_base_5_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1001px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1026px -925px; + width: 60px; + height: 60px; +} +.hair_base_5_purple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: 0px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_purple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -25px -1016px; + width: 60px; + height: 60px; +} +.hair_base_5_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -91px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -116px -1016px; + width: 60px; + height: 60px; +} +.hair_base_5_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -182px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -207px -1016px; + width: 60px; + height: 60px; +} +.hair_base_5_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -273px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -298px -1016px; + width: 60px; + height: 60px; +} +.hair_base_5_red { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -364px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_red { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -389px -1016px; + width: 60px; + height: 60px; +} +.hair_base_5_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -455px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_5_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -480px -1016px; + width: 60px; + height: 60px; +} +.hair_base_5_white { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -637px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_6_brown { +.customize-option.hair_base_5_white { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -662px -1016px; width: 60px; height: 60px; } -.hair_base_6_candycane { +.hair_base_5_winternight { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -728px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_6_candycane { +.customize-option.hair_base_5_winternight { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -753px -1016px; width: 60px; height: 60px; } -.hair_base_6_candycorn { +.hair_base_5_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -819px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_6_candycorn { +.customize-option.hair_base_5_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -844px -1016px; width: 60px; height: 60px; } -.hair_base_6_festive { +.hair_base_5_yellow { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -910px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_6_festive { +.customize-option.hair_base_5_yellow { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -935px -1016px; width: 60px; height: 60px; } -.hair_base_6_frost { +.hair_base_5_zombie { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1001px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_6_frost { +.customize-option.hair_base_5_zombie { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1026px -1016px; width: 60px; height: 60px; } -.hair_base_6_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1092px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1117px -15px; - width: 60px; - height: 60px; -} -.hair_base_6_green { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1092px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_green { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1117px -106px; - width: 60px; - height: 60px; -} -.hair_base_6_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1092px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1117px -197px; - width: 60px; - height: 60px; -} -.hair_base_6_holly { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1092px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_holly { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1117px -288px; - width: 60px; - height: 60px; -} -.hair_base_6_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1092px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1117px -379px; - width: 60px; - height: 60px; -} -.hair_base_6_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1092px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1117px -470px; - width: 60px; - height: 60px; -} -.hair_base_6_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1092px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1117px -561px; - width: 60px; - height: 60px; -} -.hair_base_6_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1092px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1117px -652px; - width: 60px; - height: 60px; -} -.hair_base_6_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1092px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1117px -743px; - width: 60px; - height: 60px; -} -.hair_base_6_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1092px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1117px -834px; - width: 60px; - height: 60px; -} -.hair_base_6_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1092px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1117px -925px; - width: 60px; - height: 60px; -} -.hair_base_6_porange { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1092px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_porange { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1117px -1016px; - width: 60px; - height: 60px; -} -.hair_base_6_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: 0px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -25px -1107px; - width: 60px; - height: 60px; -} -.hair_base_6_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -91px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -116px -1107px; - width: 60px; - height: 60px; -} -.hair_base_6_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -182px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -207px -1107px; - width: 60px; - height: 60px; -} -.hair_base_6_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -273px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -298px -1107px; - width: 60px; - height: 60px; -} -.hair_base_6_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -364px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -389px -1107px; - width: 60px; - height: 60px; -} -.hair_base_6_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -455px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -480px -1107px; - width: 60px; - height: 60px; -} -.hair_base_6_purple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -546px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_purple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -571px -1107px; - width: 60px; - height: 60px; -} -.hair_base_6_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -637px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -662px -1107px; - width: 60px; - height: 60px; -} -.hair_base_6_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: 0px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -25px -15px; - width: 60px; - height: 60px; -} -.hair_base_6_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -819px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -844px -1107px; - width: 60px; - height: 60px; -} -.hair_base_6_red { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -910px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_red { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -935px -1107px; - width: 60px; - height: 60px; -} -.hair_base_6_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1001px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1026px -1107px; - width: 60px; - height: 60px; -} -.hair_base_6_white { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1183px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_white { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1208px -15px; - width: 60px; - height: 60px; -} -.hair_base_6_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1183px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1208px -106px; - width: 60px; - height: 60px; -} -.hair_base_6_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1183px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1208px -197px; - width: 60px; - height: 60px; -} -.hair_base_6_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1183px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1208px -288px; - width: 60px; - height: 60px; -} -.hair_base_6_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1183px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_6_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1208px -379px; - width: 60px; - height: 60px; -} -.hair_base_7_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1274px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1299px -1016px; - width: 60px; - height: 60px; -} -.hair_base_7_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1183px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1208px -470px; - width: 60px; - height: 60px; -} -.hair_base_7_black { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1183px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_black { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1208px -561px; - width: 60px; - height: 60px; -} -.hair_base_7_blond { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1183px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_blond { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1208px -652px; - width: 60px; - height: 60px; -} -.hair_base_7_blue { +.hair_base_6_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1183px -728px; width: 90px; height: 90px; } -.customize-option.hair_base_7_blue { +.customize-option.hair_base_6_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1208px -743px; width: 60px; height: 60px; } -.hair_base_7_brown { +.hair_base_6_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1092px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1117px -15px; + width: 60px; + height: 60px; +} +.hair_base_6_black { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1092px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_black { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1117px -106px; + width: 60px; + height: 60px; +} +.hair_base_6_blond { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1092px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_blond { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1117px -197px; + width: 60px; + height: 60px; +} +.hair_base_6_blue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1092px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_blue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1117px -288px; + width: 60px; + height: 60px; +} +.hair_base_6_brown { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1092px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_brown { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1117px -379px; + width: 60px; + height: 60px; +} +.hair_base_6_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1092px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1117px -470px; + width: 60px; + height: 60px; +} +.hair_base_6_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1092px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1117px -561px; + width: 60px; + height: 60px; +} +.hair_base_6_festive { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1092px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_festive { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1117px -652px; + width: 60px; + height: 60px; +} +.hair_base_6_frost { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1092px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_frost { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1117px -743px; + width: 60px; + height: 60px; +} +.hair_base_6_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1092px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1117px -834px; + width: 60px; + height: 60px; +} +.hair_base_6_green { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1092px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_green { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1117px -925px; + width: 60px; + height: 60px; +} +.hair_base_6_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1092px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1117px -1016px; + width: 60px; + height: 60px; +} +.hair_base_6_holly { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: 0px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_holly { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -25px -1107px; + width: 60px; + height: 60px; +} +.hair_base_6_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -91px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -116px -1107px; + width: 60px; + height: 60px; +} +.hair_base_6_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -182px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -207px -1107px; + width: 60px; + height: 60px; +} +.hair_base_6_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -273px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -298px -1107px; + width: 60px; + height: 60px; +} +.hair_base_6_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -364px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -389px -1107px; + width: 60px; + height: 60px; +} +.hair_base_6_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -455px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -480px -1107px; + width: 60px; + height: 60px; +} +.hair_base_6_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -546px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -571px -1107px; + width: 60px; + height: 60px; +} +.hair_base_6_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -637px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -662px -1107px; + width: 60px; + height: 60px; +} +.hair_base_6_porange { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: 0px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_porange { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -25px -15px; + width: 60px; + height: 60px; +} +.hair_base_6_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -819px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -844px -1107px; + width: 60px; + height: 60px; +} +.hair_base_6_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -910px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -935px -1107px; + width: 60px; + height: 60px; +} +.hair_base_6_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1001px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1026px -1107px; + width: 60px; + height: 60px; +} +.hair_base_6_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1092px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1117px -1107px; + width: 60px; + height: 60px; +} +.hair_base_6_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1183px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1208px -15px; + width: 60px; + height: 60px; +} +.hair_base_6_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1183px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1208px -106px; + width: 60px; + height: 60px; +} +.hair_base_6_purple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1183px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_purple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1208px -197px; + width: 60px; + height: 60px; +} +.hair_base_6_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1183px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1208px -288px; + width: 60px; + height: 60px; +} +.hair_base_6_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1183px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1208px -379px; + width: 60px; + height: 60px; +} +.hair_base_6_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1183px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1208px -470px; + width: 60px; + height: 60px; +} +.hair_base_6_red { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1183px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_red { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1208px -561px; + width: 60px; + height: 60px; +} +.hair_base_6_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1183px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_6_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1208px -652px; + width: 60px; + height: 60px; +} +.hair_base_6_white { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1183px -819px; width: 90px; height: 90px; } -.customize-option.hair_base_7_brown { +.customize-option.hair_base_6_white { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1208px -834px; width: 60px; height: 60px; } -.hair_base_7_candycane { +.hair_base_6_winternight { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1183px -910px; width: 90px; height: 90px; } -.customize-option.hair_base_7_candycane { +.customize-option.hair_base_6_winternight { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1208px -925px; width: 60px; height: 60px; } -.hair_base_7_candycorn { +.hair_base_6_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1183px -1001px; width: 90px; height: 90px; } -.customize-option.hair_base_7_candycorn { +.customize-option.hair_base_6_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1208px -1016px; width: 60px; height: 60px; } -.hair_base_7_festive { +.hair_base_6_yellow { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1183px -1092px; width: 90px; height: 90px; } -.customize-option.hair_base_7_festive { +.customize-option.hair_base_6_yellow { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1208px -1107px; width: 60px; height: 60px; } -.hair_base_7_frost { +.hair_base_6_zombie { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: 0px -1183px; width: 90px; height: 90px; } -.customize-option.hair_base_7_frost { +.customize-option.hair_base_6_zombie { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -25px -1198px; width: 60px; height: 60px; } -.hair_base_7_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -91px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -116px -1198px; - width: 60px; - height: 60px; -} -.hair_base_7_green { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -182px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_green { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -207px -1198px; - width: 60px; - height: 60px; -} -.hair_base_7_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -273px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -298px -1198px; - width: 60px; - height: 60px; -} -.hair_base_7_holly { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -364px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_holly { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -389px -1198px; - width: 60px; - height: 60px; -} -.hair_base_7_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -455px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -480px -1198px; - width: 60px; - height: 60px; -} -.hair_base_7_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -546px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -571px -1198px; - width: 60px; - height: 60px; -} -.hair_base_7_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -637px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -662px -1198px; - width: 60px; - height: 60px; -} -.hair_base_7_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -728px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -753px -1198px; - width: 60px; - height: 60px; -} -.hair_base_7_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -819px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -844px -1198px; - width: 60px; - height: 60px; -} -.hair_base_7_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -910px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -935px -1198px; - width: 60px; - height: 60px; -} -.hair_base_7_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1001px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1026px -1198px; - width: 60px; - height: 60px; -} -.hair_base_7_porange { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1092px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_porange { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1117px -1198px; - width: 60px; - height: 60px; -} -.hair_base_7_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1183px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1208px -1198px; - width: 60px; - height: 60px; -} -.hair_base_7_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1274px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1299px -15px; - width: 60px; - height: 60px; -} -.hair_base_7_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1274px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1299px -106px; - width: 60px; - height: 60px; -} -.hair_base_7_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1274px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1299px -197px; - width: 60px; - height: 60px; -} -.hair_base_7_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1274px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1299px -288px; - width: 60px; - height: 60px; -} -.hair_base_7_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1274px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1299px -379px; - width: 60px; - height: 60px; -} -.hair_base_7_purple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1274px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_purple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1299px -470px; - width: 60px; - height: 60px; -} -.hair_base_7_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1274px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1299px -561px; - width: 60px; - height: 60px; -} -.hair_base_7_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1274px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1299px -652px; - width: 60px; - height: 60px; -} -.hair_base_7_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1274px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1299px -743px; - width: 60px; - height: 60px; -} -.hair_base_7_red { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1274px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_red { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1299px -834px; - width: 60px; - height: 60px; -} -.hair_base_7_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1274px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1299px -925px; - width: 60px; - height: 60px; -} -.hair_base_7_white { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1274px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_white { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1299px -1107px; - width: 60px; - height: 60px; -} -.hair_base_7_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1274px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1299px -1198px; - width: 60px; - height: 60px; -} -.hair_base_7_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: 0px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -25px -1289px; - width: 60px; - height: 60px; -} -.hair_base_7_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -91px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -116px -1289px; - width: 60px; - height: 60px; -} -.hair_base_7_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -182px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_7_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -207px -1289px; - width: 60px; - height: 60px; -} -.hair_base_8_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -546px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -571px -1380px; - width: 60px; - height: 60px; -} -.hair_base_8_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -273px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -298px -1289px; - width: 60px; - height: 60px; -} -.hair_base_8_black { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -364px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_black { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -389px -1289px; - width: 60px; - height: 60px; -} -.hair_base_8_blond { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -455px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_blond { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -480px -1289px; - width: 60px; - height: 60px; -} -.hair_base_8_blue { +.hair_base_7_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -546px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_8_blue { +.customize-option.hair_base_7_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -571px -1289px; width: 60px; height: 60px; } -.hair_base_8_brown { +.hair_base_7_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -91px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -116px -1198px; + width: 60px; + height: 60px; +} +.hair_base_7_black { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -182px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_black { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -207px -1198px; + width: 60px; + height: 60px; +} +.hair_base_7_blond { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -273px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_blond { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -298px -1198px; + width: 60px; + height: 60px; +} +.hair_base_7_blue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -364px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_blue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -389px -1198px; + width: 60px; + height: 60px; +} +.hair_base_7_brown { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -455px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_brown { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -480px -1198px; + width: 60px; + height: 60px; +} +.hair_base_7_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -546px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -571px -1198px; + width: 60px; + height: 60px; +} +.hair_base_7_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -637px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -662px -1198px; + width: 60px; + height: 60px; +} +.hair_base_7_festive { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -728px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_festive { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -753px -1198px; + width: 60px; + height: 60px; +} +.hair_base_7_frost { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -819px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_frost { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -844px -1198px; + width: 60px; + height: 60px; +} +.hair_base_7_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -910px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -935px -1198px; + width: 60px; + height: 60px; +} +.hair_base_7_green { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1001px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_green { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1026px -1198px; + width: 60px; + height: 60px; +} +.hair_base_7_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1092px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1117px -1198px; + width: 60px; + height: 60px; +} +.hair_base_7_holly { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1183px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_holly { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1208px -1198px; + width: 60px; + height: 60px; +} +.hair_base_7_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1274px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1299px -15px; + width: 60px; + height: 60px; +} +.hair_base_7_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1274px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1299px -106px; + width: 60px; + height: 60px; +} +.hair_base_7_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1274px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1299px -197px; + width: 60px; + height: 60px; +} +.hair_base_7_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1274px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1299px -288px; + width: 60px; + height: 60px; +} +.hair_base_7_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1274px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1299px -379px; + width: 60px; + height: 60px; +} +.hair_base_7_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1274px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1299px -470px; + width: 60px; + height: 60px; +} +.hair_base_7_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1274px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1299px -561px; + width: 60px; + height: 60px; +} +.hair_base_7_porange { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1274px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_porange { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1299px -652px; + width: 60px; + height: 60px; +} +.hair_base_7_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1274px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1299px -743px; + width: 60px; + height: 60px; +} +.hair_base_7_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1274px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1299px -834px; + width: 60px; + height: 60px; +} +.hair_base_7_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1274px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1299px -925px; + width: 60px; + height: 60px; +} +.hair_base_7_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1274px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1299px -1016px; + width: 60px; + height: 60px; +} +.hair_base_7_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1274px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1299px -1107px; + width: 60px; + height: 60px; +} +.hair_base_7_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1274px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1299px -1198px; + width: 60px; + height: 60px; +} +.hair_base_7_purple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: 0px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_purple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -25px -1289px; + width: 60px; + height: 60px; +} +.hair_base_7_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -91px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -116px -1289px; + width: 60px; + height: 60px; +} +.hair_base_7_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -182px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -207px -1289px; + width: 60px; + height: 60px; +} +.hair_base_7_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -273px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -298px -1289px; + width: 60px; + height: 60px; +} +.hair_base_7_red { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -364px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_red { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -389px -1289px; + width: 60px; + height: 60px; +} +.hair_base_7_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -455px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_7_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -480px -1289px; + width: 60px; + height: 60px; +} +.hair_base_7_white { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -637px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_8_brown { +.customize-option.hair_base_7_white { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -662px -1289px; width: 60px; height: 60px; } -.hair_base_8_candycane { +.hair_base_7_winternight { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -728px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_8_candycane { +.customize-option.hair_base_7_winternight { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -753px -1289px; width: 60px; height: 60px; } -.hair_base_8_candycorn { +.hair_base_7_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -819px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_8_candycorn { +.customize-option.hair_base_7_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -844px -1289px; width: 60px; height: 60px; } -.hair_base_8_festive { +.hair_base_7_yellow { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -910px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_8_festive { +.customize-option.hair_base_7_yellow { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -935px -1289px; width: 60px; height: 60px; } -.hair_base_8_frost { +.hair_base_7_zombie { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1001px -1274px; width: 90px; height: 90px; } -.customize-option.hair_base_8_frost { +.customize-option.hair_base_7_zombie { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1026px -1289px; width: 60px; height: 60px; } -.hair_base_8_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1092px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1117px -1289px; - width: 60px; - height: 60px; -} -.hair_base_8_green { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1183px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_green { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1208px -1289px; - width: 60px; - height: 60px; -} -.hair_base_8_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1274px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1299px -1289px; - width: 60px; - height: 60px; -} -.hair_base_8_holly { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1365px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_holly { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1390px -15px; - width: 60px; - height: 60px; -} -.hair_base_8_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1365px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1390px -106px; - width: 60px; - height: 60px; -} -.hair_base_8_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1365px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1390px -197px; - width: 60px; - height: 60px; -} -.hair_base_8_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1365px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1390px -288px; - width: 60px; - height: 60px; -} -.hair_base_8_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1365px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1390px -379px; - width: 60px; - height: 60px; -} -.hair_base_8_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1365px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1390px -470px; - width: 60px; - height: 60px; -} -.hair_base_8_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1365px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1390px -561px; - width: 60px; - height: 60px; -} -.hair_base_8_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1365px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1390px -652px; - width: 60px; - height: 60px; -} -.hair_base_8_porange { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1365px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_porange { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1390px -743px; - width: 60px; - height: 60px; -} -.hair_base_8_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1365px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1390px -834px; - width: 60px; - height: 60px; -} -.hair_base_8_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1365px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1390px -925px; - width: 60px; - height: 60px; -} -.hair_base_8_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1365px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1390px -1016px; - width: 60px; - height: 60px; -} -.hair_base_8_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1365px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1390px -1107px; - width: 60px; - height: 60px; -} -.hair_base_8_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1365px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1390px -1198px; - width: 60px; - height: 60px; -} -.hair_base_8_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1365px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1390px -1289px; - width: 60px; - height: 60px; -} -.hair_base_8_purple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: 0px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_purple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -25px -1380px; - width: 60px; - height: 60px; -} -.hair_base_8_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -91px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -116px -1380px; - width: 60px; - height: 60px; -} -.hair_base_8_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -182px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -207px -1380px; - width: 60px; - height: 60px; -} -.hair_base_8_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -273px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -298px -1380px; - width: 60px; - height: 60px; -} -.hair_base_8_red { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -364px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_red { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -389px -1380px; - width: 60px; - height: 60px; -} -.hair_base_8_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -455px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -480px -1380px; - width: 60px; - height: 60px; -} -.hair_base_8_white { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -637px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_white { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -662px -1380px; - width: 60px; - height: 60px; -} -.hair_base_8_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -728px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -753px -1380px; - width: 60px; - height: 60px; -} -.hair_base_8_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -819px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -844px -1380px; - width: 60px; - height: 60px; -} -.hair_base_8_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -910px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -935px -1380px; - width: 60px; - height: 60px; -} -.hair_base_8_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1001px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_8_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1026px -1380px; - width: 60px; - height: 60px; -} -.hair_base_9_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1183px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_TRUred { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1208px -1471px; - width: 60px; - height: 60px; -} -.hair_base_9_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1092px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_aurora { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1117px -1380px; - width: 60px; - height: 60px; -} -.hair_base_9_black { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1183px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_black { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1208px -1380px; - width: 60px; - height: 60px; -} -.hair_base_9_blond { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1274px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_blond { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1299px -1380px; - width: 60px; - height: 60px; -} -.hair_base_9_blue { +.hair_base_8_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1365px -1365px; width: 90px; height: 90px; } -.customize-option.hair_base_9_blue { +.customize-option.hair_base_8_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1390px -1380px; width: 60px; height: 60px; } -.hair_base_9_brown { +.hair_base_8_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1092px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1117px -1289px; + width: 60px; + height: 60px; +} +.hair_base_8_black { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1183px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_black { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1208px -1289px; + width: 60px; + height: 60px; +} +.hair_base_8_blond { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1274px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_blond { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1299px -1289px; + width: 60px; + height: 60px; +} +.hair_base_8_blue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1365px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_blue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1390px -15px; + width: 60px; + height: 60px; +} +.hair_base_8_brown { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1365px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_brown { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1390px -106px; + width: 60px; + height: 60px; +} +.hair_base_8_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1365px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1390px -197px; + width: 60px; + height: 60px; +} +.hair_base_8_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1365px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1390px -288px; + width: 60px; + height: 60px; +} +.hair_base_8_festive { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1365px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_festive { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1390px -379px; + width: 60px; + height: 60px; +} +.hair_base_8_frost { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1365px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_frost { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1390px -470px; + width: 60px; + height: 60px; +} +.hair_base_8_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1365px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1390px -561px; + width: 60px; + height: 60px; +} +.hair_base_8_green { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1365px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_green { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1390px -652px; + width: 60px; + height: 60px; +} +.hair_base_8_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1365px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1390px -743px; + width: 60px; + height: 60px; +} +.hair_base_8_holly { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1365px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_holly { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1390px -834px; + width: 60px; + height: 60px; +} +.hair_base_8_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1365px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1390px -925px; + width: 60px; + height: 60px; +} +.hair_base_8_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1365px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1390px -1016px; + width: 60px; + height: 60px; +} +.hair_base_8_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1365px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1390px -1107px; + width: 60px; + height: 60px; +} +.hair_base_8_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1365px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1390px -1198px; + width: 60px; + height: 60px; +} +.hair_base_8_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1365px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1390px -1289px; + width: 60px; + height: 60px; +} +.hair_base_8_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: 0px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -25px -1380px; + width: 60px; + height: 60px; +} +.hair_base_8_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -91px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -116px -1380px; + width: 60px; + height: 60px; +} +.hair_base_8_porange { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -182px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_porange { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -207px -1380px; + width: 60px; + height: 60px; +} +.hair_base_8_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -273px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -298px -1380px; + width: 60px; + height: 60px; +} +.hair_base_8_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -364px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -389px -1380px; + width: 60px; + height: 60px; +} +.hair_base_8_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -455px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -480px -1380px; + width: 60px; + height: 60px; +} +.hair_base_8_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -546px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -571px -1380px; + width: 60px; + height: 60px; +} +.hair_base_8_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -637px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -662px -1380px; + width: 60px; + height: 60px; +} +.hair_base_8_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -728px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -753px -1380px; + width: 60px; + height: 60px; +} +.hair_base_8_purple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -819px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_purple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -844px -1380px; + width: 60px; + height: 60px; +} +.hair_base_8_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -910px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -935px -1380px; + width: 60px; + height: 60px; +} +.hair_base_8_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1001px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1026px -1380px; + width: 60px; + height: 60px; +} +.hair_base_8_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1092px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1117px -1380px; + width: 60px; + height: 60px; +} +.hair_base_8_red { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1183px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_red { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1208px -1380px; + width: 60px; + height: 60px; +} +.hair_base_8_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1274px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_8_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1299px -1380px; + width: 60px; + height: 60px; +} +.hair_base_8_white { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1456px 0px; width: 90px; height: 90px; } -.customize-option.hair_base_9_brown { +.customize-option.hair_base_8_white { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1481px -15px; width: 60px; height: 60px; } -.hair_base_9_candycane { +.hair_base_8_winternight { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1456px -91px; width: 90px; height: 90px; } -.customize-option.hair_base_9_candycane { +.customize-option.hair_base_8_winternight { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1481px -106px; width: 60px; height: 60px; } -.hair_base_9_candycorn { +.hair_base_8_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1456px -182px; width: 90px; height: 90px; } -.customize-option.hair_base_9_candycorn { +.customize-option.hair_base_8_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1481px -197px; width: 60px; height: 60px; } -.hair_base_9_festive { +.hair_base_8_yellow { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1456px -273px; width: 90px; height: 90px; } -.customize-option.hair_base_9_festive { +.customize-option.hair_base_8_yellow { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1481px -288px; width: 60px; height: 60px; } -.hair_base_9_frost { +.hair_base_8_zombie { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1456px -364px; width: 90px; height: 90px; } -.customize-option.hair_base_9_frost { +.customize-option.hair_base_8_zombie { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1481px -379px; width: 60px; height: 60px; } -.hair_base_9_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1456px -455px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_ghostwhite { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1481px -470px; - width: 60px; - height: 60px; -} -.hair_base_9_green { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1456px -546px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_green { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1481px -561px; - width: 60px; - height: 60px; -} -.hair_base_9_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1456px -637px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_halloween { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1481px -652px; - width: 60px; - height: 60px; -} -.hair_base_9_holly { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1456px -728px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_holly { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1481px -743px; - width: 60px; - height: 60px; -} -.hair_base_9_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1456px -819px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_hollygreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1481px -834px; - width: 60px; - height: 60px; -} -.hair_base_9_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1456px -910px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_midnight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1481px -925px; - width: 60px; - height: 60px; -} -.hair_base_9_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1456px -1001px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_pblue { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1481px -1016px; - width: 60px; - height: 60px; -} -.hair_base_9_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1456px -1092px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1481px -1107px; - width: 60px; - height: 60px; -} -.hair_base_9_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1456px -1183px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_peppermint { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1481px -1198px; - width: 60px; - height: 60px; -} -.hair_base_9_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1456px -1274px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_pgreen { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1481px -1289px; - width: 60px; - height: 60px; -} -.hair_base_9_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1456px -1365px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1481px -1380px; - width: 60px; - height: 60px; -} -.hair_base_9_porange { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: 0px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_porange { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -25px -1471px; - width: 60px; - height: 60px; -} -.hair_base_9_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -91px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -116px -1471px; - width: 60px; - height: 60px; -} -.hair_base_9_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -182px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_ppink { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -207px -1471px; - width: 60px; - height: 60px; -} -.hair_base_9_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -273px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_ppink2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -298px -1471px; - width: 60px; - height: 60px; -} -.hair_base_9_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -364px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_ppurple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -389px -1471px; - width: 60px; - height: 60px; -} -.hair_base_9_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -455px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_ppurple2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -480px -1471px; - width: 60px; - height: 60px; -} -.hair_base_9_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -546px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_pumpkin { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -571px -1471px; - width: 60px; - height: 60px; -} -.hair_base_9_purple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -637px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_purple { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -662px -1471px; - width: 60px; - height: 60px; -} -.hair_base_9_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -728px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_pyellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -753px -1471px; - width: 60px; - height: 60px; -} -.hair_base_9_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -819px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_pyellow2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -844px -1471px; - width: 60px; - height: 60px; -} -.hair_base_9_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -910px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_rainbow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -935px -1471px; - width: 60px; - height: 60px; -} -.hair_base_9_red { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1001px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_red { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1026px -1471px; - width: 60px; - height: 60px; -} -.hair_base_9_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1092px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_snowy { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1117px -1471px; - width: 60px; - height: 60px; -} -.hair_base_9_white { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1274px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_white { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1299px -1471px; - width: 60px; - height: 60px; -} -.hair_base_9_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1365px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_winternight { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1390px -1471px; - width: 60px; - height: 60px; -} -.hair_base_9_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1456px -1456px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_winterstar { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1481px -1471px; - width: 60px; - height: 60px; -} -.hair_base_9_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1547px 0px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_yellow { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1572px -15px; - width: 60px; - height: 60px; -} -.hair_base_9_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1547px -91px; - width: 90px; - height: 90px; -} -.customize-option.hair_base_9_zombie { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1572px -106px; - width: 60px; - height: 60px; -} -.hair_beard_1_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1547px -182px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_pblue2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1572px -197px; - width: 60px; - height: 60px; -} -.hair_beard_1_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1547px -273px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_pgreen2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1572px -288px; - width: 60px; - height: 60px; -} -.hair_beard_1_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1547px -364px; - width: 90px; - height: 90px; -} -.customize-option.hair_beard_1_porange2 { - background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1572px -379px; - width: 60px; - height: 60px; -} -.hair_beard_1_ppink2 { +.hair_base_9_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1547px -455px; width: 90px; height: 90px; } -.customize-option.hair_beard_1_ppink2 { +.customize-option.hair_base_9_TRUred { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1572px -470px; width: 60px; height: 60px; } -.hair_beard_1_ppurple2 { +.hair_base_9_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1456px -455px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_aurora { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1481px -470px; + width: 60px; + height: 60px; +} +.hair_base_9_black { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1456px -546px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_black { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1481px -561px; + width: 60px; + height: 60px; +} +.hair_base_9_blond { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1456px -637px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_blond { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1481px -652px; + width: 60px; + height: 60px; +} +.hair_base_9_blue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1456px -728px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_blue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1481px -743px; + width: 60px; + height: 60px; +} +.hair_base_9_brown { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1456px -819px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_brown { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1481px -834px; + width: 60px; + height: 60px; +} +.hair_base_9_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1456px -910px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1481px -925px; + width: 60px; + height: 60px; +} +.hair_base_9_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1456px -1001px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_candycorn { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1481px -1016px; + width: 60px; + height: 60px; +} +.hair_base_9_festive { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1456px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_festive { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1481px -1107px; + width: 60px; + height: 60px; +} +.hair_base_9_frost { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1456px -1183px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_frost { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1481px -1198px; + width: 60px; + height: 60px; +} +.hair_base_9_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1456px -1274px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_ghostwhite { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1481px -1289px; + width: 60px; + height: 60px; +} +.hair_base_9_green { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1456px -1365px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_green { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1481px -1380px; + width: 60px; + height: 60px; +} +.hair_base_9_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: 0px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_halloween { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -25px -1471px; + width: 60px; + height: 60px; +} +.hair_base_9_holly { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -91px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_holly { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -116px -1471px; + width: 60px; + height: 60px; +} +.hair_base_9_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -182px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_hollygreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -207px -1471px; + width: 60px; + height: 60px; +} +.hair_base_9_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -273px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_midnight { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -298px -1471px; + width: 60px; + height: 60px; +} +.hair_base_9_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -364px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_pblue { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -389px -1471px; + width: 60px; + height: 60px; +} +.hair_base_9_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -455px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_pblue2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -480px -1471px; + width: 60px; + height: 60px; +} +.hair_base_9_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -546px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_peppermint { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -571px -1471px; + width: 60px; + height: 60px; +} +.hair_base_9_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -637px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_pgreen { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -662px -1471px; + width: 60px; + height: 60px; +} +.hair_base_9_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -728px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_pgreen2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -753px -1471px; + width: 60px; + height: 60px; +} +.hair_base_9_porange { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -819px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_porange { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -844px -1471px; + width: 60px; + height: 60px; +} +.hair_base_9_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -910px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_porange2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -935px -1471px; + width: 60px; + height: 60px; +} +.hair_base_9_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1001px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_ppink { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1026px -1471px; + width: 60px; + height: 60px; +} +.hair_base_9_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1092px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_ppink2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1117px -1471px; + width: 60px; + height: 60px; +} +.hair_base_9_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1183px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_ppurple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1208px -1471px; + width: 60px; + height: 60px; +} +.hair_base_9_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1274px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_ppurple2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1299px -1471px; + width: 60px; + height: 60px; +} +.hair_base_9_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1365px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_pumpkin { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1390px -1471px; + width: 60px; + height: 60px; +} +.hair_base_9_purple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1456px -1456px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_purple { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1481px -1471px; + width: 60px; + height: 60px; +} +.hair_base_9_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1547px 0px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_pyellow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1572px -15px; + width: 60px; + height: 60px; +} +.hair_base_9_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1547px -91px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1572px -106px; + width: 60px; + height: 60px; +} +.hair_base_9_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1547px -182px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_rainbow { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1572px -197px; + width: 60px; + height: 60px; +} +.hair_base_9_red { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1547px -273px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_red { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1572px -288px; + width: 60px; + height: 60px; +} +.hair_base_9_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1547px -364px; + width: 90px; + height: 90px; +} +.customize-option.hair_base_9_snowy { + background-image: url('~assets/images/sprites/spritesmith-main-4.png'); + background-position: -1572px -379px; + width: 60px; + height: 60px; +} +.hair_base_9_white { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1547px -546px; width: 90px; height: 90px; } -.customize-option.hair_beard_1_ppurple2 { +.customize-option.hair_base_9_white { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1572px -561px; width: 60px; height: 60px; } -.hair_beard_1_pyellow2 { +.hair_base_9_winternight { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1547px -637px; width: 90px; height: 90px; } -.customize-option.hair_beard_1_pyellow2 { +.customize-option.hair_base_9_winternight { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1572px -652px; width: 60px; height: 60px; } -.hair_beard_2_pblue2 { +.hair_base_9_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1547px -728px; width: 90px; height: 90px; } -.customize-option.hair_beard_2_pblue2 { +.customize-option.hair_base_9_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1572px -743px; width: 60px; height: 60px; } -.hair_beard_2_pgreen2 { +.hair_base_9_yellow { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1547px -819px; width: 90px; height: 90px; } -.customize-option.hair_beard_2_pgreen2 { +.customize-option.hair_base_9_yellow { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1572px -834px; width: 60px; height: 60px; } -.hair_beard_2_porange2 { +.hair_base_9_zombie { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1547px -910px; width: 90px; height: 90px; } -.customize-option.hair_beard_2_porange2 { +.customize-option.hair_base_9_zombie { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1572px -925px; width: 60px; height: 60px; } -.hair_beard_2_ppink2 { +.hair_beard_1_pblue2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1547px -1001px; width: 90px; height: 90px; } -.customize-option.hair_beard_2_ppink2 { +.customize-option.hair_beard_1_pblue2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1572px -1016px; width: 60px; height: 60px; } -.hair_beard_2_ppurple2 { +.hair_beard_1_pgreen2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1547px -1092px; width: 90px; height: 90px; } -.customize-option.hair_beard_2_ppurple2 { +.customize-option.hair_beard_1_pgreen2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1572px -1107px; width: 60px; height: 60px; } -.hair_beard_2_pyellow2 { +.hair_beard_1_porange2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1547px -1183px; width: 90px; height: 90px; } -.customize-option.hair_beard_2_pyellow2 { +.customize-option.hair_beard_1_porange2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1572px -1198px; width: 60px; height: 60px; } -.hair_beard_3_pblue2 { +.hair_beard_1_ppink2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1547px -1274px; width: 90px; height: 90px; } -.customize-option.hair_beard_3_pblue2 { +.customize-option.hair_beard_1_ppink2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1572px -1289px; width: 60px; height: 60px; } -.hair_beard_3_pgreen2 { +.hair_beard_1_ppurple2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1547px -1365px; width: 90px; height: 90px; } -.customize-option.hair_beard_3_pgreen2 { +.customize-option.hair_beard_1_ppurple2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1572px -1380px; width: 60px; height: 60px; } -.hair_beard_3_porange2 { +.hair_beard_1_pyellow2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1547px -1456px; width: 90px; height: 90px; } -.customize-option.hair_beard_3_porange2 { +.customize-option.hair_beard_1_pyellow2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1572px -1471px; width: 60px; height: 60px; } -.hair_beard_3_ppink2 { +.hair_beard_2_pblue2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: 0px -1547px; width: 90px; height: 90px; } -.customize-option.hair_beard_3_ppink2 { +.customize-option.hair_beard_2_pblue2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -25px -1562px; width: 60px; height: 60px; } -.hair_beard_3_ppurple2 { +.hair_beard_2_pgreen2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -91px -1547px; width: 90px; height: 90px; } -.customize-option.hair_beard_3_ppurple2 { +.customize-option.hair_beard_2_pgreen2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -116px -1562px; width: 60px; height: 60px; } -.hair_beard_3_pyellow2 { +.hair_beard_2_porange2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -182px -1547px; width: 90px; height: 90px; } -.customize-option.hair_beard_3_pyellow2 { +.customize-option.hair_beard_2_porange2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -207px -1562px; width: 60px; height: 60px; } -.hair_mustache_1_pblue2 { +.hair_beard_2_ppink2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -273px -1547px; width: 90px; height: 90px; } -.customize-option.hair_mustache_1_pblue2 { +.customize-option.hair_beard_2_ppink2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -298px -1562px; width: 60px; height: 60px; } -.hair_mustache_1_pgreen2 { +.hair_beard_2_ppurple2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -364px -1547px; width: 90px; height: 90px; } -.customize-option.hair_mustache_1_pgreen2 { +.customize-option.hair_beard_2_ppurple2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -389px -1562px; width: 60px; height: 60px; } -.hair_mustache_1_porange2 { +.hair_beard_2_pyellow2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -455px -1547px; width: 90px; height: 90px; } -.customize-option.hair_mustache_1_porange2 { +.customize-option.hair_beard_2_pyellow2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -480px -1562px; width: 60px; height: 60px; } -.hair_mustache_1_ppink2 { +.hair_beard_3_pblue2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -546px -1547px; width: 90px; height: 90px; } -.customize-option.hair_mustache_1_ppink2 { +.customize-option.hair_beard_3_pblue2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -571px -1562px; width: 60px; height: 60px; } -.hair_mustache_1_ppurple2 { +.hair_beard_3_pgreen2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -637px -1547px; width: 90px; height: 90px; } -.customize-option.hair_mustache_1_ppurple2 { +.customize-option.hair_beard_3_pgreen2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -662px -1562px; width: 60px; height: 60px; } -.hair_mustache_1_pyellow2 { +.hair_beard_3_porange2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -728px -1547px; width: 90px; height: 90px; } -.customize-option.hair_mustache_1_pyellow2 { +.customize-option.hair_beard_3_porange2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -753px -1562px; width: 60px; height: 60px; } -.hair_mustache_2_pblue2 { +.hair_beard_3_ppink2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -819px -1547px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_pblue2 { +.customize-option.hair_beard_3_ppink2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -844px -1562px; width: 60px; height: 60px; } -.hair_mustache_2_pgreen2 { +.hair_beard_3_ppurple2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -910px -1547px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_pgreen2 { +.customize-option.hair_beard_3_ppurple2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -935px -1562px; width: 60px; height: 60px; } -.hair_mustache_2_porange2 { +.hair_beard_3_pyellow2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1001px -1547px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_porange2 { +.customize-option.hair_beard_3_pyellow2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1026px -1562px; width: 60px; height: 60px; } -.hair_mustache_2_ppink2 { +.hair_mustache_1_pblue2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1092px -1547px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_ppink2 { +.customize-option.hair_mustache_1_pblue2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1117px -1562px; width: 60px; height: 60px; } -.hair_mustache_2_ppurple2 { +.hair_mustache_1_pgreen2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1183px -1547px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_ppurple2 { +.customize-option.hair_mustache_1_pgreen2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1208px -1562px; width: 60px; height: 60px; } -.hair_mustache_2_pyellow2 { +.hair_mustache_1_porange2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1274px -1547px; width: 90px; height: 90px; } -.customize-option.hair_mustache_2_pyellow2 { +.customize-option.hair_mustache_1_porange2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1299px -1562px; width: 60px; height: 60px; } -.broad_shirt_black { +.hair_mustache_1_ppink2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1365px -1547px; width: 90px; height: 90px; } -.customize-option.broad_shirt_black { +.customize-option.hair_mustache_1_ppink2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1390px -1582px; + background-position: -1390px -1562px; width: 60px; height: 60px; } -.broad_shirt_blue { +.hair_mustache_1_ppurple2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1456px -1547px; width: 90px; height: 90px; } -.customize-option.broad_shirt_blue { +.customize-option.hair_mustache_1_ppurple2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1481px -1582px; + background-position: -1481px -1562px; width: 60px; height: 60px; } -.broad_shirt_convict { +.hair_mustache_1_pyellow2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1547px -1547px; width: 90px; height: 90px; } -.customize-option.broad_shirt_convict { +.customize-option.hair_mustache_1_pyellow2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1572px -1582px; + background-position: -1572px -1562px; width: 60px; height: 60px; } -.broad_shirt_cross { +.hair_mustache_2_pblue2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1638px 0px; width: 90px; height: 90px; } -.customize-option.broad_shirt_cross { +.customize-option.hair_mustache_2_pblue2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1663px -35px; + background-position: -1663px -15px; width: 60px; height: 60px; } -.broad_shirt_fire { +.hair_mustache_2_pgreen2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1638px -91px; width: 90px; height: 90px; } -.customize-option.broad_shirt_fire { +.customize-option.hair_mustache_2_pgreen2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1663px -126px; + background-position: -1663px -106px; width: 60px; height: 60px; } -.broad_shirt_green { +.hair_mustache_2_porange2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1638px -182px; width: 90px; height: 90px; } -.customize-option.broad_shirt_green { +.customize-option.hair_mustache_2_porange2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1663px -217px; + background-position: -1663px -197px; width: 60px; height: 60px; } -.broad_shirt_horizon { +.hair_mustache_2_ppink2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1638px -273px; width: 90px; height: 90px; } -.customize-option.broad_shirt_horizon { +.customize-option.hair_mustache_2_ppink2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1663px -308px; + background-position: -1663px -288px; width: 60px; height: 60px; } -.broad_shirt_ocean { +.hair_mustache_2_ppurple2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); background-position: -1638px -364px; width: 90px; height: 90px; } -.customize-option.broad_shirt_ocean { +.customize-option.hair_mustache_2_ppurple2 { background-image: url('~assets/images/sprites/spritesmith-main-4.png'); - background-position: -1663px -399px; + background-position: -1663px -379px; width: 60px; height: 60px; } diff --git a/website/client/assets/css/sprites/spritesmith-main-5.css b/website/client/assets/css/sprites/spritesmith-main-5.css index 2bf6de2081..d7d50e3c0e 100644 --- a/website/client/assets/css/sprites/spritesmith-main-5.css +++ b/website/client/assets/css/sprites/spritesmith-main-5.css @@ -1,1824 +1,1932 @@ +.hair_mustache_2_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-5.png'); + background-position: -728px -1092px; + width: 90px; + height: 90px; +} +.customize-option.hair_mustache_2_pyellow2 { + background-image: url('~assets/images/sprites/spritesmith-main-5.png'); + background-position: -753px -1107px; + width: 60px; + height: 60px; +} +.broad_shirt_black { + background-image: url('~assets/images/sprites/spritesmith-main-5.png'); + background-position: -91px -1183px; + width: 90px; + height: 90px; +} +.customize-option.broad_shirt_black { + background-image: url('~assets/images/sprites/spritesmith-main-5.png'); + background-position: -116px -1218px; + width: 60px; + height: 60px; +} +.broad_shirt_blue { + background-image: url('~assets/images/sprites/spritesmith-main-5.png'); + background-position: -1092px -1092px; + width: 90px; + height: 90px; +} +.customize-option.broad_shirt_blue { + background-image: url('~assets/images/sprites/spritesmith-main-5.png'); + background-position: -1117px -1127px; + width: 60px; + height: 60px; +} +.broad_shirt_convict { + background-image: url('~assets/images/sprites/spritesmith-main-5.png'); + background-position: -1212px -182px; + width: 90px; + height: 90px; +} +.customize-option.broad_shirt_convict { + background-image: url('~assets/images/sprites/spritesmith-main-5.png'); + background-position: -1237px -217px; + width: 60px; + height: 60px; +} +.broad_shirt_cross { + background-image: url('~assets/images/sprites/spritesmith-main-5.png'); + background-position: -1212px -728px; + width: 90px; + height: 90px; +} +.customize-option.broad_shirt_cross { + background-image: url('~assets/images/sprites/spritesmith-main-5.png'); + background-position: -1237px -763px; + width: 60px; + height: 60px; +} +.broad_shirt_fire { + background-image: url('~assets/images/sprites/spritesmith-main-5.png'); + background-position: -1212px -910px; + width: 90px; + height: 90px; +} +.customize-option.broad_shirt_fire { + background-image: url('~assets/images/sprites/spritesmith-main-5.png'); + background-position: -1237px -945px; + width: 60px; + height: 60px; +} +.broad_shirt_green { + background-image: url('~assets/images/sprites/spritesmith-main-5.png'); + background-position: -455px -1183px; + width: 90px; + height: 90px; +} +.customize-option.broad_shirt_green { + background-image: url('~assets/images/sprites/spritesmith-main-5.png'); + background-position: -480px -1218px; + width: 60px; + height: 60px; +} +.broad_shirt_horizon { + background-image: url('~assets/images/sprites/spritesmith-main-5.png'); + background-position: -1001px -1183px; + width: 90px; + height: 90px; +} +.customize-option.broad_shirt_horizon { + background-image: url('~assets/images/sprites/spritesmith-main-5.png'); + background-position: -1026px -1218px; + width: 60px; + height: 60px; +} +.broad_shirt_ocean { + background-image: url('~assets/images/sprites/spritesmith-main-5.png'); + background-position: -1303px -182px; + width: 90px; + height: 90px; +} +.customize-option.broad_shirt_ocean { + background-image: url('~assets/images/sprites/spritesmith-main-5.png'); + background-position: -1328px -217px; + width: 60px; + height: 60px; +} .broad_shirt_pink { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -728px -1089px; + background-position: -1303px -546px; width: 90px; height: 90px; } .customize-option.broad_shirt_pink { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -753px -1124px; + background-position: -1328px -581px; width: 60px; height: 60px; } .broad_shirt_purple { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1288px -364px; + background-position: -1303px -910px; width: 90px; height: 90px; } .customize-option.broad_shirt_purple { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1313px -399px; + background-position: -1328px -945px; width: 60px; height: 60px; } .broad_shirt_rainbow { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1092px -1089px; + background-position: -910px -1274px; width: 90px; height: 90px; } .customize-option.broad_shirt_rainbow { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1117px -1124px; + background-position: -935px -1309px; width: 60px; height: 60px; } .broad_shirt_redblue { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1197px -182px; + background-position: -1001px -1274px; width: 90px; height: 90px; } .customize-option.broad_shirt_redblue { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1222px -217px; + background-position: -1026px -1309px; width: 60px; height: 60px; } .broad_shirt_thunder { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1197px -728px; + background-position: -1394px -91px; width: 90px; height: 90px; } .customize-option.broad_shirt_thunder { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1222px -763px; + background-position: -1419px -126px; width: 60px; height: 60px; } .broad_shirt_tropical { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1197px -910px; + background-position: -1394px -273px; width: 90px; height: 90px; } .customize-option.broad_shirt_tropical { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1222px -945px; + background-position: -1419px -308px; width: 60px; height: 60px; } .broad_shirt_white { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -546px -1180px; + background-position: -1394px -910px; width: 90px; height: 90px; } .customize-option.broad_shirt_white { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -571px -1215px; + background-position: -1419px -945px; width: 60px; height: 60px; } .broad_shirt_yellow { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1288px -182px; + background-position: -273px -1365px; width: 90px; height: 90px; } .customize-option.broad_shirt_yellow { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1313px -217px; + background-position: -298px -1400px; width: 60px; height: 60px; } .broad_shirt_zombie { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1288px -546px; + background-position: -1485px -364px; width: 90px; height: 90px; } .customize-option.broad_shirt_zombie { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1313px -581px; + background-position: -1510px -399px; width: 60px; height: 60px; } .slim_shirt_black { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1288px -910px; + background-position: -1485px -546px; width: 90px; height: 90px; } .customize-option.slim_shirt_black { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1313px -945px; + background-position: -1510px -581px; width: 60px; height: 60px; } .slim_shirt_blue { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1001px -1271px; + background-position: -1485px -728px; width: 90px; height: 90px; } .customize-option.slim_shirt_blue { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1026px -1306px; + background-position: -1510px -763px; width: 60px; height: 60px; } .slim_shirt_convict { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1092px -1271px; + background-position: -1485px -910px; width: 90px; height: 90px; } .customize-option.slim_shirt_convict { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1117px -1306px; + background-position: -1510px -945px; width: 60px; height: 60px; } .slim_shirt_cross { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1379px -182px; + background-position: -91px -1456px; width: 90px; height: 90px; } .customize-option.slim_shirt_cross { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1404px -217px; + background-position: -116px -1491px; width: 60px; height: 60px; } .slim_shirt_fire { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1379px -364px; + background-position: -546px -1456px; width: 90px; height: 90px; } .customize-option.slim_shirt_fire { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1404px -399px; + background-position: -571px -1491px; width: 60px; height: 60px; } .slim_shirt_green { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1379px -1001px; + background-position: -637px -1456px; width: 90px; height: 90px; } .customize-option.slim_shirt_green { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1404px -1036px; + background-position: -662px -1491px; width: 60px; height: 60px; } .slim_shirt_horizon { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1470px -455px; + background-position: -819px -1456px; width: 90px; height: 90px; } .customize-option.slim_shirt_horizon { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1495px -490px; + background-position: -844px -1491px; width: 60px; height: 60px; } .slim_shirt_ocean { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1470px -637px; + background-position: 0px -455px; width: 90px; height: 90px; } .customize-option.slim_shirt_ocean { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1495px -672px; + background-position: -25px -490px; width: 60px; height: 60px; } .slim_shirt_pink { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1470px -819px; + background-position: -91px -455px; width: 90px; height: 90px; } .customize-option.slim_shirt_pink { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1495px -854px; + background-position: -116px -490px; width: 60px; height: 60px; } .slim_shirt_purple { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1470px -1001px; + background-position: -182px -455px; width: 90px; height: 90px; } .customize-option.slim_shirt_purple { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1495px -1036px; + background-position: -207px -490px; width: 60px; height: 60px; } .slim_shirt_rainbow { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -637px -1453px; + background-position: -273px -455px; width: 90px; height: 90px; } .customize-option.slim_shirt_rainbow { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -662px -1488px; + background-position: -298px -490px; width: 60px; height: 60px; } .slim_shirt_redblue { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -728px -1453px; + background-position: -364px -455px; width: 90px; height: 90px; } .customize-option.slim_shirt_redblue { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -753px -1488px; + background-position: -389px -490px; width: 60px; height: 60px; } .slim_shirt_thunder { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -910px -1453px; + background-position: -455px -455px; width: 90px; height: 90px; } .customize-option.slim_shirt_thunder { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -935px -1488px; + background-position: -480px -490px; width: 60px; height: 60px; } .slim_shirt_tropical { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -460px -273px; + background-position: -575px 0px; width: 90px; height: 90px; } .customize-option.slim_shirt_tropical { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -485px -308px; + background-position: -600px -35px; width: 60px; height: 60px; } .slim_shirt_white { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: 0px -452px; + background-position: -575px -91px; width: 90px; height: 90px; } .customize-option.slim_shirt_white { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -25px -487px; + background-position: -600px -126px; width: 60px; height: 60px; } .slim_shirt_yellow { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -91px -452px; + background-position: -575px -182px; width: 90px; height: 90px; } .customize-option.slim_shirt_yellow { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -116px -487px; + background-position: -600px -217px; width: 60px; height: 60px; } .slim_shirt_zombie { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -182px -452px; + background-position: -575px -273px; width: 90px; height: 90px; } .customize-option.slim_shirt_zombie { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -207px -487px; + background-position: -600px -308px; width: 60px; height: 60px; } .skin_0ff591 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -364px -452px; + background-position: -575px -455px; width: 90px; height: 90px; } .customize-option.skin_0ff591 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -389px -467px; + background-position: -600px -470px; width: 60px; height: 60px; } .skin_0ff591_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -273px -452px; + background-position: -575px -364px; width: 90px; height: 90px; } .customize-option.skin_0ff591_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -298px -467px; + background-position: -600px -379px; width: 60px; height: 60px; } .skin_2b43f6 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -560px 0px; + background-position: -91px -546px; width: 90px; height: 90px; } .customize-option.skin_2b43f6 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -585px -15px; + background-position: -116px -561px; width: 60px; height: 60px; } .skin_2b43f6_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -455px -452px; + background-position: 0px -546px; width: 90px; height: 90px; } .customize-option.skin_2b43f6_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -480px -467px; + background-position: -25px -561px; width: 60px; height: 60px; } .skin_6bd049 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -560px -182px; + background-position: -273px -546px; width: 90px; height: 90px; } .customize-option.skin_6bd049 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -585px -197px; + background-position: -298px -561px; width: 60px; height: 60px; } .skin_6bd049_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -560px -91px; + background-position: -182px -546px; width: 90px; height: 90px; } .customize-option.skin_6bd049_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -585px -106px; + background-position: -207px -561px; width: 60px; height: 60px; } .skin_800ed0 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -560px -364px; + background-position: -455px -546px; width: 90px; height: 90px; } .customize-option.skin_800ed0 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -585px -379px; + background-position: -480px -561px; width: 60px; height: 60px; } .skin_800ed0_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -560px -273px; + background-position: -364px -546px; width: 90px; height: 90px; } .customize-option.skin_800ed0_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -585px -288px; + background-position: -389px -561px; width: 60px; height: 60px; } .skin_915533 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -91px -543px; + background-position: -666px 0px; width: 90px; height: 90px; } .customize-option.skin_915533 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -116px -558px; + background-position: -691px -15px; width: 60px; height: 60px; } .skin_915533_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: 0px -543px; + background-position: -546px -546px; width: 90px; height: 90px; } .customize-option.skin_915533_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -25px -558px; + background-position: -571px -561px; width: 60px; height: 60px; } .skin_98461a { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -273px -543px; + background-position: -666px -182px; width: 90px; height: 90px; } .customize-option.skin_98461a { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -298px -558px; + background-position: -691px -197px; width: 60px; height: 60px; } .skin_98461a_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -182px -543px; + background-position: -666px -91px; width: 90px; height: 90px; } .customize-option.skin_98461a_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -207px -558px; + background-position: -691px -106px; width: 60px; height: 60px; } .skin_aurora { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -455px -543px; + background-position: -666px -364px; width: 90px; height: 90px; } .customize-option.skin_aurora { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -480px -558px; + background-position: -691px -379px; width: 60px; height: 60px; } .skin_aurora_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -364px -543px; + background-position: -666px -273px; width: 90px; height: 90px; } .customize-option.skin_aurora_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -389px -558px; + background-position: -691px -288px; width: 60px; height: 60px; } .skin_bear { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -651px 0px; + background-position: -666px -546px; width: 90px; height: 90px; } .customize-option.skin_bear { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -676px -15px; + background-position: -691px -561px; width: 60px; height: 60px; } .skin_bear_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -546px -543px; + background-position: -666px -455px; width: 90px; height: 90px; } .customize-option.skin_bear_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -571px -558px; + background-position: -691px -470px; width: 60px; height: 60px; } .skin_c06534 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -651px -182px; + background-position: -91px -637px; width: 90px; height: 90px; } .customize-option.skin_c06534 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -676px -197px; + background-position: -116px -652px; width: 60px; height: 60px; } .skin_c06534_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -651px -91px; + background-position: 0px -637px; width: 90px; height: 90px; } .customize-option.skin_c06534_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -676px -106px; + background-position: -25px -652px; width: 60px; height: 60px; } .skin_c3e1dc { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -651px -364px; + background-position: -273px -637px; width: 90px; height: 90px; } .customize-option.skin_c3e1dc { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -676px -379px; + background-position: -298px -652px; width: 60px; height: 60px; } .skin_c3e1dc_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -651px -273px; + background-position: -182px -637px; width: 90px; height: 90px; } .customize-option.skin_c3e1dc_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -676px -288px; + background-position: -207px -652px; width: 60px; height: 60px; } .skin_cactus { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: 0px -634px; + background-position: -455px -637px; width: 90px; height: 90px; } .customize-option.skin_cactus { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -25px -649px; + background-position: -480px -652px; width: 60px; height: 60px; } .skin_cactus_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -651px -455px; + background-position: -364px -637px; width: 90px; height: 90px; } .customize-option.skin_cactus_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -676px -470px; + background-position: -389px -652px; width: 60px; height: 60px; } .skin_candycorn { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -182px -634px; + background-position: -637px -637px; width: 90px; height: 90px; } .customize-option.skin_candycorn { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -207px -649px; + background-position: -662px -652px; width: 60px; height: 60px; } .skin_candycorn_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -91px -634px; + background-position: -546px -637px; width: 90px; height: 90px; } .customize-option.skin_candycorn_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -116px -649px; + background-position: -571px -652px; width: 60px; height: 60px; } .skin_clownfish { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -364px -634px; + background-position: -757px -91px; width: 90px; height: 90px; } .customize-option.skin_clownfish { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -389px -649px; + background-position: -782px -106px; width: 60px; height: 60px; } .skin_clownfish_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -273px -634px; + background-position: -757px 0px; width: 90px; height: 90px; } .customize-option.skin_clownfish_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -298px -649px; + background-position: -782px -15px; width: 60px; height: 60px; } .skin_d7a9f7 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -546px -634px; + background-position: -757px -273px; width: 90px; height: 90px; } .customize-option.skin_d7a9f7 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -571px -649px; + background-position: -782px -288px; width: 60px; height: 60px; } .skin_d7a9f7_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -455px -634px; + background-position: -757px -182px; width: 90px; height: 90px; } .customize-option.skin_d7a9f7_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -480px -649px; + background-position: -782px -197px; width: 60px; height: 60px; } .skin_dapper { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -742px 0px; + background-position: -757px -455px; width: 90px; height: 90px; } .customize-option.skin_dapper { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -767px -15px; + background-position: -782px -470px; width: 60px; height: 60px; } .skin_dapper_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -637px -634px; + background-position: -757px -364px; width: 90px; height: 90px; } .customize-option.skin_dapper_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -662px -649px; + background-position: -782px -379px; width: 60px; height: 60px; } .skin_ddc994 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -742px -182px; + background-position: -757px -637px; width: 90px; height: 90px; } .customize-option.skin_ddc994 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -767px -197px; + background-position: -782px -652px; width: 60px; height: 60px; } .skin_ddc994_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -742px -91px; + background-position: -757px -546px; width: 90px; height: 90px; } .customize-option.skin_ddc994_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -767px -106px; + background-position: -782px -561px; width: 60px; height: 60px; } .skin_deepocean { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -742px -364px; + background-position: -91px -728px; width: 90px; height: 90px; } .customize-option.skin_deepocean { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -767px -379px; + background-position: -116px -743px; width: 60px; height: 60px; } .skin_deepocean_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -742px -273px; + background-position: 0px -728px; width: 90px; height: 90px; } .customize-option.skin_deepocean_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -767px -288px; + background-position: -25px -743px; width: 60px; height: 60px; } .skin_ea8349 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -742px -546px; + background-position: -273px -728px; width: 90px; height: 90px; } .customize-option.skin_ea8349 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -767px -561px; + background-position: -298px -743px; width: 60px; height: 60px; } .skin_ea8349_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -742px -455px; + background-position: -182px -728px; width: 90px; height: 90px; } .customize-option.skin_ea8349_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -767px -470px; + background-position: -207px -743px; width: 60px; height: 60px; } .skin_eb052b { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -91px -725px; + background-position: -455px -728px; width: 90px; height: 90px; } .customize-option.skin_eb052b { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -116px -740px; + background-position: -480px -743px; width: 60px; height: 60px; } .skin_eb052b_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: 0px -725px; + background-position: -364px -728px; width: 90px; height: 90px; } .customize-option.skin_eb052b_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -25px -740px; + background-position: -389px -743px; width: 60px; height: 60px; } .skin_f5a76e { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -273px -725px; + background-position: -637px -728px; width: 90px; height: 90px; } .customize-option.skin_f5a76e { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -298px -740px; + background-position: -662px -743px; width: 60px; height: 60px; } .skin_f5a76e_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -182px -725px; + background-position: -546px -728px; width: 90px; height: 90px; } .customize-option.skin_f5a76e_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -207px -740px; + background-position: -571px -743px; width: 60px; height: 60px; } .skin_f5d70f { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -455px -725px; + background-position: -848px 0px; width: 90px; height: 90px; } .customize-option.skin_f5d70f { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -480px -740px; + background-position: -873px -15px; width: 60px; height: 60px; } .skin_f5d70f_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -364px -725px; + background-position: -728px -728px; width: 90px; height: 90px; } .customize-option.skin_f5d70f_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -389px -740px; + background-position: -753px -743px; width: 60px; height: 60px; } .skin_f69922 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -637px -725px; + background-position: -848px -182px; width: 90px; height: 90px; } .customize-option.skin_f69922 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -662px -740px; + background-position: -873px -197px; width: 60px; height: 60px; } .skin_f69922_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -546px -725px; + background-position: -848px -91px; width: 90px; height: 90px; } .customize-option.skin_f69922_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -571px -740px; + background-position: -873px -106px; width: 60px; height: 60px; } .skin_festive { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -833px 0px; + background-position: -848px -364px; width: 90px; height: 90px; } .customize-option.skin_festive { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -858px -15px; + background-position: -873px -379px; width: 60px; height: 60px; } .skin_festive_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -728px -725px; + background-position: -848px -273px; width: 90px; height: 90px; } .customize-option.skin_festive_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -753px -740px; + background-position: -873px -288px; width: 60px; height: 60px; } .skin_fox { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -833px -182px; + background-position: -848px -546px; width: 90px; height: 90px; } .customize-option.skin_fox { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -858px -197px; + background-position: -873px -561px; width: 60px; height: 60px; } .skin_fox_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -833px -91px; + background-position: -848px -455px; width: 90px; height: 90px; } .customize-option.skin_fox_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -858px -106px; + background-position: -873px -470px; width: 60px; height: 60px; } .skin_ghost { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -833px -364px; + background-position: -848px -728px; width: 90px; height: 90px; } .customize-option.skin_ghost { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -858px -379px; + background-position: -873px -743px; width: 60px; height: 60px; } .skin_ghost_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -833px -273px; + background-position: -848px -637px; width: 90px; height: 90px; } .customize-option.skin_ghost_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -858px -288px; + background-position: -873px -652px; width: 60px; height: 60px; } .skin_holly { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -833px -546px; + background-position: -91px -819px; width: 90px; height: 90px; } .customize-option.skin_holly { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -858px -561px; + background-position: -116px -834px; width: 60px; height: 60px; } .skin_holly_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -833px -455px; + background-position: 0px -819px; width: 90px; height: 90px; } .customize-option.skin_holly_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -858px -470px; + background-position: -25px -834px; width: 60px; height: 60px; } .skin_lion { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: 0px -816px; + background-position: -273px -819px; width: 90px; height: 90px; } .customize-option.skin_lion { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -25px -831px; + background-position: -298px -834px; width: 60px; height: 60px; } .skin_lion_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -833px -637px; + background-position: -182px -819px; width: 90px; height: 90px; } .customize-option.skin_lion_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -858px -652px; + background-position: -207px -834px; width: 60px; height: 60px; } .skin_merblue { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -182px -816px; + background-position: -455px -819px; width: 90px; height: 90px; } .customize-option.skin_merblue { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -207px -831px; + background-position: -480px -834px; width: 60px; height: 60px; } .skin_merblue_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -91px -816px; + background-position: -364px -819px; width: 90px; height: 90px; } .customize-option.skin_merblue_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -116px -831px; + background-position: -389px -834px; width: 60px; height: 60px; } .skin_mergold { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -364px -816px; + background-position: -637px -819px; width: 90px; height: 90px; } .customize-option.skin_mergold { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -389px -831px; + background-position: -662px -834px; width: 60px; height: 60px; } .skin_mergold_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -273px -816px; + background-position: -546px -819px; width: 90px; height: 90px; } .customize-option.skin_mergold_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -298px -831px; + background-position: -571px -834px; width: 60px; height: 60px; } .skin_mergreen { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -546px -816px; + background-position: -819px -819px; width: 90px; height: 90px; } .customize-option.skin_mergreen { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -571px -831px; + background-position: -844px -834px; width: 60px; height: 60px; } .skin_mergreen_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -455px -816px; + background-position: -728px -819px; width: 90px; height: 90px; } .customize-option.skin_mergreen_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -480px -831px; + background-position: -753px -834px; width: 60px; height: 60px; } .skin_merruby { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -728px -816px; + background-position: -939px -91px; width: 90px; height: 90px; } .customize-option.skin_merruby { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -753px -831px; + background-position: -964px -106px; width: 60px; height: 60px; } .skin_merruby_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -637px -816px; + background-position: -939px 0px; width: 90px; height: 90px; } .customize-option.skin_merruby_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -662px -831px; + background-position: -964px -15px; width: 60px; height: 60px; } .skin_monster { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -924px 0px; + background-position: -939px -273px; width: 90px; height: 90px; } .customize-option.skin_monster { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -949px -15px; + background-position: -964px -288px; width: 60px; height: 60px; } .skin_monster_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -819px -816px; + background-position: -939px -182px; width: 90px; height: 90px; } .customize-option.skin_monster_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -844px -831px; + background-position: -964px -197px; width: 60px; height: 60px; } .skin_ogre { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -924px -182px; + background-position: -939px -455px; width: 90px; height: 90px; } .customize-option.skin_ogre { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -949px -197px; + background-position: -964px -470px; width: 60px; height: 60px; } .skin_ogre_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -924px -91px; + background-position: -939px -364px; width: 90px; height: 90px; } .customize-option.skin_ogre_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -949px -106px; + background-position: -964px -379px; width: 60px; height: 60px; } .skin_panda { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -924px -364px; + background-position: -939px -637px; width: 90px; height: 90px; } .customize-option.skin_panda { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -949px -379px; + background-position: -964px -652px; width: 60px; height: 60px; } .skin_panda_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -924px -273px; + background-position: -939px -546px; width: 90px; height: 90px; } .customize-option.skin_panda_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -949px -288px; + background-position: -964px -561px; width: 60px; height: 60px; } .skin_pastelBlue { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -924px -546px; + background-position: -939px -819px; width: 90px; height: 90px; } .customize-option.skin_pastelBlue { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -949px -561px; + background-position: -964px -834px; width: 60px; height: 60px; } .skin_pastelBlue_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -924px -455px; + background-position: -939px -728px; width: 90px; height: 90px; } .customize-option.skin_pastelBlue_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -949px -470px; + background-position: -964px -743px; width: 60px; height: 60px; } .skin_pastelGreen { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -924px -728px; + background-position: -91px -910px; width: 90px; height: 90px; } .customize-option.skin_pastelGreen { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -949px -743px; + background-position: -116px -925px; width: 60px; height: 60px; } .skin_pastelGreen_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -924px -637px; + background-position: 0px -910px; width: 90px; height: 90px; } .customize-option.skin_pastelGreen_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -949px -652px; + background-position: -25px -925px; width: 60px; height: 60px; } .skin_pastelOrange { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -91px -907px; + background-position: -273px -910px; width: 90px; height: 90px; } .customize-option.skin_pastelOrange { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -116px -922px; + background-position: -298px -925px; width: 60px; height: 60px; } .skin_pastelOrange_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: 0px -907px; + background-position: -182px -910px; width: 90px; height: 90px; } .customize-option.skin_pastelOrange_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -25px -922px; + background-position: -207px -925px; width: 60px; height: 60px; } .skin_pastelPink { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -273px -907px; + background-position: -455px -910px; width: 90px; height: 90px; } .customize-option.skin_pastelPink { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -298px -922px; + background-position: -480px -925px; width: 60px; height: 60px; } .skin_pastelPink_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -182px -907px; + background-position: -364px -910px; width: 90px; height: 90px; } .customize-option.skin_pastelPink_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -207px -922px; + background-position: -389px -925px; width: 60px; height: 60px; } .skin_pastelPurple { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -455px -907px; + background-position: -637px -910px; width: 90px; height: 90px; } .customize-option.skin_pastelPurple { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -480px -922px; + background-position: -662px -925px; width: 60px; height: 60px; } .skin_pastelPurple_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -364px -907px; + background-position: -546px -910px; width: 90px; height: 90px; } .customize-option.skin_pastelPurple_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -389px -922px; + background-position: -571px -925px; width: 60px; height: 60px; } .skin_pastelRainbowChevron { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -637px -907px; + background-position: -819px -910px; width: 90px; height: 90px; } .customize-option.skin_pastelRainbowChevron { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -662px -922px; + background-position: -844px -925px; width: 60px; height: 60px; } .skin_pastelRainbowChevron_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -546px -907px; + background-position: -728px -910px; width: 90px; height: 90px; } .customize-option.skin_pastelRainbowChevron_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -571px -922px; + background-position: -753px -925px; width: 60px; height: 60px; } .skin_pastelRainbowDiagonal { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -819px -907px; + background-position: -1030px 0px; width: 90px; height: 90px; } .customize-option.skin_pastelRainbowDiagonal { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -844px -922px; + background-position: -1055px -15px; width: 60px; height: 60px; } .skin_pastelRainbowDiagonal_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -728px -907px; + background-position: -910px -910px; width: 90px; height: 90px; } .customize-option.skin_pastelRainbowDiagonal_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -753px -922px; + background-position: -935px -925px; width: 60px; height: 60px; } .skin_pastelYellow { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1015px 0px; + background-position: -1030px -182px; width: 90px; height: 90px; } .customize-option.skin_pastelYellow { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1040px -15px; + background-position: -1055px -197px; width: 60px; height: 60px; } .skin_pastelYellow_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -910px -907px; + background-position: -1030px -91px; width: 90px; height: 90px; } .customize-option.skin_pastelYellow_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -935px -922px; + background-position: -1055px -106px; width: 60px; height: 60px; } .skin_pig { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1015px -182px; + background-position: -1030px -364px; width: 90px; height: 90px; } .customize-option.skin_pig { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1040px -197px; + background-position: -1055px -379px; width: 60px; height: 60px; } .skin_pig_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1015px -91px; + background-position: -1030px -273px; width: 90px; height: 90px; } .customize-option.skin_pig_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1040px -106px; + background-position: -1055px -288px; width: 60px; height: 60px; } .skin_polar { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1015px -364px; + background-position: -1030px -546px; width: 90px; height: 90px; } .customize-option.skin_polar { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1040px -379px; + background-position: -1055px -561px; width: 60px; height: 60px; } .skin_polar_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1015px -273px; + background-position: -1030px -455px; width: 90px; height: 90px; } .customize-option.skin_polar_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1040px -288px; + background-position: -1055px -470px; width: 60px; height: 60px; } .skin_pumpkin { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1015px -546px; + background-position: -1030px -728px; width: 90px; height: 90px; } .customize-option.skin_pumpkin { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1040px -561px; + background-position: -1055px -743px; width: 60px; height: 60px; } .skin_pumpkin2 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1015px -728px; + background-position: -1030px -910px; width: 90px; height: 90px; } .customize-option.skin_pumpkin2 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1040px -743px; + background-position: -1055px -925px; width: 60px; height: 60px; } .skin_pumpkin2_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1015px -637px; + background-position: -1030px -819px; width: 90px; height: 90px; } .customize-option.skin_pumpkin2_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1040px -652px; + background-position: -1055px -834px; width: 60px; height: 60px; } .skin_pumpkin_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1015px -455px; + background-position: -1030px -637px; width: 90px; height: 90px; } .customize-option.skin_pumpkin_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1040px -470px; + background-position: -1055px -652px; width: 60px; height: 60px; } .skin_rainbow { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: 0px -998px; + background-position: -91px -1001px; width: 90px; height: 90px; } .customize-option.skin_rainbow { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -25px -1013px; + background-position: -116px -1016px; width: 60px; height: 60px; } .skin_rainbow_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1015px -819px; + background-position: 0px -1001px; width: 90px; height: 90px; } .customize-option.skin_rainbow_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1040px -834px; + background-position: -25px -1016px; width: 60px; height: 60px; } .skin_reptile { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -182px -998px; + background-position: -273px -1001px; width: 90px; height: 90px; } .customize-option.skin_reptile { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -207px -1013px; + background-position: -298px -1016px; width: 60px; height: 60px; } .skin_reptile_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -91px -998px; + background-position: -182px -1001px; width: 90px; height: 90px; } .customize-option.skin_reptile_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -116px -1013px; + background-position: -207px -1016px; width: 60px; height: 60px; } .skin_shadow { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -364px -998px; + background-position: -455px -1001px; width: 90px; height: 90px; } .customize-option.skin_shadow { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -389px -1013px; + background-position: -480px -1016px; width: 60px; height: 60px; } .skin_shadow2 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -546px -998px; + background-position: -637px -1001px; width: 90px; height: 90px; } .customize-option.skin_shadow2 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -571px -1013px; + background-position: -662px -1016px; width: 60px; height: 60px; } .skin_shadow2_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -455px -998px; + background-position: -546px -1001px; width: 90px; height: 90px; } .customize-option.skin_shadow2_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -480px -1013px; + background-position: -571px -1016px; width: 60px; height: 60px; } .skin_shadow_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -273px -998px; + background-position: -364px -1001px; width: 90px; height: 90px; } .customize-option.skin_shadow_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -298px -1013px; + background-position: -389px -1016px; width: 60px; height: 60px; } .skin_shark { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -728px -998px; + background-position: -819px -1001px; width: 90px; height: 90px; } .customize-option.skin_shark { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -753px -1013px; + background-position: -844px -1016px; width: 60px; height: 60px; } .skin_shark_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -637px -998px; + background-position: -728px -1001px; width: 90px; height: 90px; } .customize-option.skin_shark_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -662px -1013px; + background-position: -753px -1016px; width: 60px; height: 60px; } .skin_skeleton { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -910px -998px; + background-position: -1001px -1001px; width: 90px; height: 90px; } .customize-option.skin_skeleton { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -935px -1013px; + background-position: -1026px -1016px; width: 60px; height: 60px; } .skin_skeleton2 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1106px 0px; + background-position: -1121px -91px; width: 90px; height: 90px; } .customize-option.skin_skeleton2 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1131px -15px; + background-position: -1146px -106px; width: 60px; height: 60px; } .skin_skeleton2_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1001px -998px; + background-position: -1121px 0px; width: 90px; height: 90px; } .customize-option.skin_skeleton2_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1026px -1013px; + background-position: -1146px -15px; width: 60px; height: 60px; } .skin_skeleton_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -819px -998px; + background-position: -910px -1001px; width: 90px; height: 90px; } .customize-option.skin_skeleton_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -844px -1013px; + background-position: -935px -1016px; width: 60px; height: 60px; } .skin_snowy { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1106px -182px; + background-position: -1121px -273px; width: 90px; height: 90px; } .customize-option.skin_snowy { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1131px -197px; + background-position: -1146px -288px; width: 60px; height: 60px; } .skin_snowy_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1106px -91px; + background-position: -1121px -182px; width: 90px; height: 90px; } .customize-option.skin_snowy_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1131px -106px; + background-position: -1146px -197px; width: 60px; height: 60px; } .skin_sugar { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1106px -364px; + background-position: -1121px -455px; width: 90px; height: 90px; } .customize-option.skin_sugar { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1131px -379px; + background-position: -1146px -470px; width: 60px; height: 60px; } .skin_sugar_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1106px -273px; + background-position: -1121px -364px; width: 90px; height: 90px; } .customize-option.skin_sugar_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1131px -288px; + background-position: -1146px -379px; width: 60px; height: 60px; } .skin_tiger { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1106px -546px; + background-position: -1121px -637px; width: 90px; height: 90px; } .customize-option.skin_tiger { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1131px -561px; + background-position: -1146px -652px; width: 60px; height: 60px; } .skin_tiger_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1106px -455px; + background-position: -1121px -546px; width: 90px; height: 90px; } .customize-option.skin_tiger_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1131px -470px; + background-position: -1146px -561px; width: 60px; height: 60px; } .skin_transparent { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1106px -728px; + background-position: -1121px -819px; width: 90px; height: 90px; } .customize-option.skin_transparent { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1131px -743px; + background-position: -1146px -834px; width: 60px; height: 60px; } .skin_transparent_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1106px -637px; + background-position: -1121px -728px; width: 90px; height: 90px; } .customize-option.skin_transparent_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1131px -652px; + background-position: -1146px -743px; width: 60px; height: 60px; } .skin_tropicalwater { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1106px -910px; + background-position: -1121px -1001px; width: 90px; height: 90px; } .customize-option.skin_tropicalwater { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1131px -925px; + background-position: -1146px -1016px; width: 60px; height: 60px; } .skin_tropicalwater_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1106px -819px; + background-position: -1121px -910px; width: 90px; height: 90px; } .customize-option.skin_tropicalwater_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1131px -834px; + background-position: -1146px -925px; width: 60px; height: 60px; } .skin_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -91px -1089px; + background-position: -91px -1092px; width: 90px; height: 90px; } .customize-option.skin_winterstar { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -116px -1104px; + background-position: -116px -1107px; width: 60px; height: 60px; } .skin_winterstar_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: 0px -1089px; + background-position: 0px -1092px; width: 90px; height: 90px; } .customize-option.skin_winterstar_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -25px -1104px; + background-position: -25px -1107px; width: 60px; height: 60px; } .skin_wolf { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -273px -1089px; + background-position: -273px -1092px; width: 90px; height: 90px; } .customize-option.skin_wolf { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -298px -1104px; + background-position: -298px -1107px; width: 60px; height: 60px; } .skin_wolf_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -182px -1089px; + background-position: -182px -1092px; width: 90px; height: 90px; } .customize-option.skin_wolf_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -207px -1104px; + background-position: -207px -1107px; width: 60px; height: 60px; } .skin_zombie { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -455px -1089px; + background-position: -455px -1092px; width: 90px; height: 90px; } .customize-option.skin_zombie { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -480px -1104px; + background-position: -480px -1107px; width: 60px; height: 60px; } .skin_zombie2 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -637px -1089px; + background-position: -637px -1092px; width: 90px; height: 90px; } .customize-option.skin_zombie2 { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -662px -1104px; + background-position: -662px -1107px; width: 60px; height: 60px; } .skin_zombie2_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -546px -1089px; + background-position: -546px -1092px; width: 90px; height: 90px; } .customize-option.skin_zombie2_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -571px -1104px; + background-position: -571px -1107px; width: 60px; height: 60px; } .skin_zombie_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -364px -1089px; + background-position: -364px -1092px; width: 90px; height: 90px; } .customize-option.skin_zombie_sleep { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -389px -1104px; + background-position: -389px -1107px; width: 60px; height: 60px; } .body_armoire_cozyScarf { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -345px -273px; + background-position: -345px -364px; width: 114px; height: 87px; } .broad_armor_armoire_antiProcrastinationArmor { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -819px -1089px; + background-position: -819px -1092px; width: 90px; height: 90px; } .broad_armor_armoire_barristerRobes { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -910px -1089px; + background-position: -910px -1092px; width: 90px; height: 90px; } .broad_armor_armoire_basicArcherArmor { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1001px -1089px; + background-position: -1001px -1092px; width: 90px; height: 90px; } @@ -1830,13 +1938,13 @@ } .broad_armor_armoire_candlestickMakerOutfit { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1197px 0px; + background-position: -1212px 0px; width: 90px; height: 90px; } .broad_armor_armoire_cannoneerRags { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1197px -91px; + background-position: -1212px -91px; width: 90px; height: 90px; } @@ -1848,31 +1956,31 @@ } .broad_armor_armoire_cobblersCoveralls { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1197px -273px; + background-position: -1212px -273px; width: 90px; height: 90px; } .broad_armor_armoire_crystalCrescentRobes { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1197px -364px; + background-position: -1212px -364px; width: 90px; height: 90px; } .broad_armor_armoire_dragonTamerArmor { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1197px -455px; + background-position: -1212px -455px; width: 90px; height: 90px; } .broad_armor_armoire_falconerArmor { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1197px -546px; + background-position: -1212px -546px; width: 90px; height: 90px; } .broad_armor_armoire_farrierOutfit { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1197px -637px; + background-position: -1212px -637px; width: 90px; height: 90px; } @@ -1884,7 +1992,7 @@ } .broad_armor_armoire_gladiatorArmor { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1197px -819px; + background-position: -1212px -819px; width: 90px; height: 90px; } @@ -1896,247 +2004,253 @@ } .broad_armor_armoire_goldenToga { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1197px -1001px; + background-position: -1212px -1001px; width: 90px; height: 90px; } .broad_armor_armoire_gownOfHearts { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: 0px -1180px; + background-position: -1212px -1092px; width: 90px; height: 90px; } .broad_armor_armoire_graduateRobe { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -91px -1180px; + background-position: 0px -1183px; width: 90px; height: 90px; } .broad_armor_armoire_greenFestivalYukata { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -182px -1180px; + background-position: -460px -358px; width: 90px; height: 90px; } .broad_armor_armoire_hornedIronArmor { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -273px -1180px; + background-position: -182px -1183px; width: 90px; height: 90px; } .broad_armor_armoire_ironBlueArcherArmor { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -364px -1180px; + background-position: -273px -1183px; width: 90px; height: 90px; } .broad_armor_armoire_jesterCostume { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -455px -1180px; + background-position: -364px -1183px; width: 90px; height: 90px; } .broad_armor_armoire_lamplightersGreatcoat { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -115px -364px; + background-position: -460px 0px; width: 114px; height: 87px; } .broad_armor_armoire_lunarArmor { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -637px -1180px; + background-position: -546px -1183px; width: 90px; height: 90px; } .broad_armor_armoire_merchantTunic { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -728px -1180px; + background-position: -637px -1183px; width: 90px; height: 90px; } .broad_armor_armoire_minerOveralls { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -819px -1180px; + background-position: -728px -1183px; width: 90px; height: 90px; } .broad_armor_armoire_mushroomDruidArmor { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -910px -1180px; + background-position: -819px -1183px; width: 90px; height: 90px; } .broad_armor_armoire_ogreArmor { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1001px -1180px; + background-position: -910px -1183px; width: 90px; height: 90px; } -.broad_armor_armoire_plagueDoctorOvercoat { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1092px -1180px; - width: 90px; - height: 90px; -} -.broad_armor_armoire_ramFleeceRobes { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1183px -1180px; - width: 90px; - height: 90px; -} -.broad_armor_armoire_rancherRobes { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1288px 0px; - width: 90px; - height: 90px; -} -.broad_armor_armoire_redPartyDress { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1288px -91px; - width: 90px; - height: 90px; -} -.broad_armor_armoire_robeOfDiamonds { +.broad_armor_armoire_piraticalPrincessGown { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); background-position: -115px -182px; width: 114px; height: 90px; } +.broad_armor_armoire_plagueDoctorOvercoat { + background-image: url('~assets/images/sprites/spritesmith-main-5.png'); + background-position: -1092px -1183px; + width: 90px; + height: 90px; +} +.broad_armor_armoire_ramFleeceRobes { + background-image: url('~assets/images/sprites/spritesmith-main-5.png'); + background-position: -1183px -1183px; + width: 90px; + height: 90px; +} +.broad_armor_armoire_rancherRobes { + background-image: url('~assets/images/sprites/spritesmith-main-5.png'); + background-position: -1303px 0px; + width: 90px; + height: 90px; +} +.broad_armor_armoire_redPartyDress { + background-image: url('~assets/images/sprites/spritesmith-main-5.png'); + background-position: -1303px -91px; + width: 90px; + height: 90px; +} +.broad_armor_armoire_robeOfDiamonds { + background-image: url('~assets/images/sprites/spritesmith-main-5.png'); + background-position: -230px -182px; + width: 114px; + height: 90px; +} .broad_armor_armoire_royalRobes { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1288px -273px; + background-position: -1303px -273px; width: 90px; height: 90px; } .broad_armor_armoire_shepherdRobes { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -460px -182px; + background-position: -1303px -364px; width: 90px; height: 90px; } .broad_armor_armoire_stripedSwimsuit { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1288px -455px; + background-position: -1303px -455px; width: 90px; height: 90px; } .broad_armor_armoire_swanDancerTutu { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -460px 0px; + background-position: -460px -267px; width: 99px; height: 90px; } .broad_armor_armoire_vermilionArcherArmor { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1288px -637px; + background-position: -1303px -637px; width: 90px; height: 90px; } .broad_armor_armoire_vikingTunic { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1288px -728px; + background-position: -1303px -728px; width: 90px; height: 90px; } .broad_armor_armoire_woodElfArmor { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1288px -819px; + background-position: -1303px -819px; width: 90px; height: 90px; } .broad_armor_armoire_wovenRobes { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -345px 0px; + background-position: -345px -91px; width: 114px; height: 90px; } .broad_armor_armoire_yellowPartyDress { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1288px -1001px; + background-position: -1303px -1001px; width: 90px; height: 90px; } .eyewear_armoire_goofyGlasses { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1288px -1092px; + background-position: -1303px -1092px; width: 90px; height: 90px; } .eyewear_armoire_plagueDoctorMask { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: 0px -1271px; + background-position: -1303px -1183px; width: 90px; height: 90px; } .headAccessory_armoire_comicalArrow { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1470px -182px; + background-position: -1485px -91px; width: 90px; height: 90px; } .head_armoire_antiProcrastinationHelm { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -91px -1271px; + background-position: 0px -1274px; width: 90px; height: 90px; } .head_armoire_barristerWig { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -182px -1271px; + background-position: -91px -1274px; width: 90px; height: 90px; } .head_armoire_basicArcherCap { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -273px -1271px; + background-position: -182px -1274px; width: 90px; height: 90px; } .head_armoire_bigWig { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -364px -1271px; + background-position: -273px -1274px; width: 90px; height: 90px; } .head_armoire_birdsNest { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -455px -1271px; + background-position: -364px -1274px; width: 90px; height: 90px; } .head_armoire_blackCat { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -546px -1271px; + background-position: -455px -1274px; width: 90px; height: 90px; } .head_armoire_blueFloppyHat { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -637px -1271px; + background-position: -546px -1274px; width: 90px; height: 90px; } .head_armoire_blueHairbow { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -728px -1271px; + background-position: -637px -1274px; width: 90px; height: 90px; } .head_armoire_candlestickMakerHat { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -819px -1271px; + background-position: -728px -1274px; width: 90px; height: 90px; } .head_armoire_cannoneerBandanna { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -910px -1271px; + background-position: -819px -1274px; width: 90px; height: 90px; } .head_armoire_coachDriversHat { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -345px -91px; + background-position: -345px -182px; width: 114px; height: 90px; } @@ -2148,319 +2262,331 @@ } .head_armoire_crownOfHearts { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1183px -1271px; + background-position: -1092px -1274px; width: 90px; height: 90px; } .head_armoire_crystalCrescentHat { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1274px -1271px; + background-position: -1183px -1274px; width: 90px; height: 90px; } .head_armoire_dragonTamerHelm { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1379px 0px; + background-position: -1274px -1274px; width: 90px; height: 90px; } .head_armoire_falconerCap { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1379px -91px; + background-position: -1394px 0px; width: 90px; height: 90px; } .head_armoire_flutteryWig { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: 0px -273px; + background-position: -115px -273px; width: 114px; height: 90px; } .head_armoire_gladiatorHelm { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1379px -273px; + background-position: -1394px -182px; width: 90px; height: 90px; } .head_armoire_glassblowersHat { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -115px -273px; + background-position: -230px -273px; width: 114px; height: 90px; } .head_armoire_goldenLaurels { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1379px -455px; + background-position: -1394px -364px; width: 90px; height: 90px; } .head_armoire_graduateCap { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1379px -546px; + background-position: -1394px -455px; width: 90px; height: 90px; } .head_armoire_greenFloppyHat { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1379px -637px; + background-position: -1394px -546px; width: 90px; height: 90px; } .head_armoire_hornedIronHelm { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1379px -728px; + background-position: -1394px -637px; width: 90px; height: 90px; } .head_armoire_ironBlueArcherHelm { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1379px -819px; + background-position: -1394px -728px; width: 90px; height: 90px; } .head_armoire_jesterCap { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1379px -910px; + background-position: -1394px -819px; width: 90px; height: 90px; } .head_armoire_lamplightersTopHat { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -230px -273px; + background-position: -115px -364px; width: 114px; height: 87px; } .head_armoire_lunarCrown { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1379px -1092px; + background-position: -1394px -1001px; width: 90px; height: 90px; } .head_armoire_merchantChaperon { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1379px -1183px; + background-position: -1394px -1092px; width: 90px; height: 90px; } .head_armoire_minerHelmet { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: 0px -1362px; + background-position: -1394px -1183px; width: 90px; height: 90px; } .head_armoire_mushroomDruidCap { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -91px -1362px; + background-position: -1394px -1274px; width: 90px; height: 90px; } .head_armoire_ogreMask { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -182px -1362px; + background-position: 0px -1365px; width: 90px; height: 90px; } .head_armoire_orangeCat { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -273px -1362px; + background-position: -91px -1365px; width: 90px; height: 90px; } .head_armoire_paperBag { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -364px -1362px; + background-position: -182px -1365px; width: 90px; height: 90px; } +.head_armoire_piraticalPrincessHeaddress { + background-image: url('~assets/images/sprites/spritesmith-main-5.png'); + background-position: 0px -364px; + width: 114px; + height: 90px; +} .head_armoire_plagueDoctorHat { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -455px -1362px; + background-position: -364px -1365px; width: 90px; height: 90px; } .head_armoire_ramHeaddress { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -546px -1362px; + background-position: -455px -1365px; width: 90px; height: 90px; } .head_armoire_rancherHat { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -637px -1362px; + background-position: -546px -1365px; width: 90px; height: 90px; } .head_armoire_redFloppyHat { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -728px -1362px; + background-position: -637px -1365px; width: 90px; height: 90px; } .head_armoire_redHairbow { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -819px -1362px; + background-position: -728px -1365px; width: 90px; height: 90px; } .head_armoire_royalCrown { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -910px -1362px; + background-position: -819px -1365px; width: 90px; height: 90px; } .head_armoire_shepherdHeaddress { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1001px -1362px; + background-position: -910px -1365px; width: 90px; height: 90px; } .head_armoire_swanFeatherCrown { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1092px -1362px; + background-position: -1001px -1365px; width: 90px; height: 90px; } .head_armoire_vermilionArcherHelm { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1183px -1362px; + background-position: -1092px -1365px; width: 90px; height: 90px; } .head_armoire_vikingHelm { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1274px -1362px; + background-position: -1183px -1365px; width: 90px; height: 90px; } .head_armoire_violetFloppyHat { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1365px -1362px; + background-position: -1274px -1365px; width: 90px; height: 90px; } .head_armoire_woodElfHelm { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1470px 0px; + background-position: -1365px -1365px; width: 90px; height: 90px; } .head_armoire_yellowHairbow { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1470px -91px; + background-position: -1485px 0px; width: 90px; height: 90px; } .shield_armoire_antiProcrastinationShield { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1470px -273px; + background-position: -1485px -182px; width: 90px; height: 90px; } .shield_armoire_dragonTamerShield { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1470px -364px; + background-position: -1485px -273px; width: 90px; height: 90px; } .shield_armoire_fancyBlownGlassVase { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -345px -182px; + background-position: -345px -273px; width: 114px; height: 90px; } .shield_armoire_fancyShoe { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1470px -546px; + background-position: -1485px -455px; width: 90px; height: 90px; } .shield_armoire_festivalParasol { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: 0px -364px; + background-position: -230px -364px; width: 114px; height: 87px; } .shield_armoire_floralBouquet { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1470px -728px; + background-position: -1485px -637px; width: 90px; height: 90px; } .shield_armoire_flutteryFan { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -230px -182px; + background-position: 0px -273px; width: 114px; height: 90px; } .shield_armoire_gladiatorShield { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1470px -910px; + background-position: -1485px -819px; width: 90px; height: 90px; } .shield_armoire_goldenBaton { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -460px -91px; + background-position: -460px -176px; width: 99px; height: 90px; } .shield_armoire_handmadeCandlestick { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1470px -1092px; + background-position: -1485px -1001px; width: 90px; height: 90px; } .shield_armoire_horseshoe { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1470px -1183px; + background-position: -1485px -1092px; width: 90px; height: 90px; } .shield_armoire_midnightShield { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1470px -1274px; + background-position: -1485px -1183px; width: 90px; height: 90px; } .shield_armoire_mushroomDruidShield { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: 0px -1453px; + background-position: -1485px -1274px; width: 90px; height: 90px; } .shield_armoire_mysticLamp { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -91px -1453px; + background-position: -1485px -1365px; width: 90px; height: 90px; } .shield_armoire_perchingFalcon { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -182px -1453px; + background-position: 0px -1456px; width: 90px; height: 90px; } +.shield_armoire_piraticalSkullShield { + background-image: url('~assets/images/sprites/spritesmith-main-5.png'); + background-position: -345px 0px; + width: 114px; + height: 90px; +} .shield_armoire_ramHornShield { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -273px -1453px; + background-position: -182px -1456px; width: 90px; height: 90px; } .shield_armoire_redRose { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -364px -1453px; + background-position: -273px -1456px; width: 90px; height: 90px; } .shield_armoire_royalCane { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -455px -1453px; + background-position: -364px -1456px; width: 90px; height: 90px; } .shield_armoire_sandyBucket { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -546px -1453px; + background-position: -455px -1456px; width: 90px; height: 90px; } @@ -2472,13 +2598,13 @@ } .shield_armoire_swanFeatherFan { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -230px -364px; + background-position: -460px -88px; width: 114px; height: 87px; } .shield_armoire_vikingShield { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -819px -1453px; + background-position: -728px -1456px; width: 90px; height: 90px; } @@ -2490,637 +2616,475 @@ } .shop_armor_armoire_antiProcrastinationArmor { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -798px -1613px; - width: 40px; - height: 40px; + background-position: -1186px -1456px; + width: 68px; + height: 68px; } .shop_armor_armoire_barristerRobes { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -690px -1544px; + background-position: -1255px -1456px; width: 68px; height: 68px; } .shop_armor_armoire_basicArcherArmor { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1288px -1183px; + background-position: -1324px -1456px; width: 68px; height: 68px; } .shop_armor_armoire_bluePartyDress { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1197px -1092px; + background-position: -1393px -1456px; width: 68px; height: 68px; } .shop_armor_armoire_candlestickMakerOutfit { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1106px -1001px; + background-position: -1462px -1456px; width: 68px; height: 68px; } .shop_armor_armoire_cannoneerRags { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1015px -910px; + background-position: -1576px 0px; width: 68px; height: 68px; } .shop_armor_armoire_coachDriverLivery { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -924px -819px; + background-position: -1576px -69px; width: 68px; height: 68px; } .shop_armor_armoire_cobblersCoveralls { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -833px -728px; + background-position: -1576px -138px; width: 68px; height: 68px; } .shop_armor_armoire_crystalCrescentRobes { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -742px -637px; + background-position: -1576px -207px; width: 68px; height: 68px; } .shop_armor_armoire_dragonTamerArmor { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -651px -546px; + background-position: -1576px -276px; width: 68px; height: 68px; } .shop_armor_armoire_falconerArmor { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -560px -455px; + background-position: -1576px -345px; width: 68px; height: 68px; } .shop_armor_armoire_farrierOutfit { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -757px -1613px; - width: 40px; - height: 40px; + background-position: -1576px -414px; + width: 68px; + height: 68px; } .shop_armor_armoire_flutteryFrock { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -345px -364px; + background-position: -1576px -483px; width: 68px; height: 68px; } .shop_armor_armoire_gladiatorArmor { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1001px -1453px; + background-position: -1576px -552px; width: 68px; height: 68px; } .shop_armor_armoire_glassblowersCoveralls { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1070px -1453px; + background-position: -1576px -621px; width: 68px; height: 68px; } .shop_armor_armoire_goldenToga { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1139px -1453px; + background-position: -1576px -690px; width: 68px; height: 68px; } .shop_armor_armoire_gownOfHearts { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1208px -1453px; + background-position: -1576px -759px; width: 68px; height: 68px; } .shop_armor_armoire_graduateRobe { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1277px -1453px; + background-position: -1576px -828px; width: 68px; height: 68px; } .shop_armor_armoire_greenFestivalYukata { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1346px -1453px; + background-position: -1576px -897px; width: 68px; height: 68px; } .shop_armor_armoire_hornedIronArmor { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1415px -1453px; + background-position: -1576px -966px; width: 68px; height: 68px; } .shop_armor_armoire_ironBlueArcherArmor { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1484px -1453px; + background-position: -1576px -1035px; width: 68px; height: 68px; } .shop_armor_armoire_jesterCostume { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1561px 0px; + background-position: -1576px -1104px; width: 68px; height: 68px; } .shop_armor_armoire_lamplightersGreatcoat { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1561px -69px; + background-position: -1576px -1173px; width: 68px; height: 68px; } .shop_armor_armoire_lunarArmor { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1561px -138px; + background-position: -1576px -1242px; width: 68px; height: 68px; } .shop_armor_armoire_merchantTunic { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1561px -207px; + background-position: -1576px -1311px; width: 68px; height: 68px; } .shop_armor_armoire_minerOveralls { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1561px -276px; + background-position: -1576px -1380px; width: 68px; height: 68px; } .shop_armor_armoire_mushroomDruidArmor { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1561px -345px; + background-position: -1576px -1449px; width: 68px; height: 68px; } .shop_armor_armoire_ogreArmor { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1561px -414px; + background-position: 0px -1547px; width: 68px; height: 68px; } .shop_armor_armoire_plagueDoctorOvercoat { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1561px -483px; + background-position: -69px -1547px; width: 68px; height: 68px; } .shop_armor_armoire_ramFleeceRobes { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1561px -552px; + background-position: -138px -1547px; width: 68px; height: 68px; } .shop_armor_armoire_rancherRobes { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1561px -621px; + background-position: -207px -1547px; width: 68px; height: 68px; } .shop_armor_armoire_redPartyDress { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1561px -690px; + background-position: -276px -1547px; width: 68px; height: 68px; } .shop_armor_armoire_robeOfDiamonds { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1561px -759px; + background-position: -345px -1547px; width: 68px; height: 68px; } .shop_armor_armoire_royalRobes { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1561px -828px; + background-position: -414px -1547px; width: 68px; height: 68px; } .shop_armor_armoire_shepherdRobes { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1561px -897px; + background-position: -483px -1547px; width: 68px; height: 68px; } .shop_armor_armoire_stripedSwimsuit { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1561px -966px; + background-position: -910px -1456px; width: 68px; height: 68px; } .shop_armor_armoire_swanDancerTutu { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -716px -1613px; - width: 40px; - height: 40px; + background-position: -621px -1547px; + width: 68px; + height: 68px; } .shop_armor_armoire_vermilionArcherArmor { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1561px -1104px; + background-position: -690px -1547px; width: 68px; height: 68px; } .shop_armor_armoire_vikingTunic { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1561px -1173px; + background-position: -759px -1547px; width: 68px; height: 68px; } .shop_armor_armoire_woodElfArmor { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1561px -1242px; + background-position: -828px -1547px; width: 68px; height: 68px; } .shop_armor_armoire_wovenRobes { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1561px -1311px; + background-position: -897px -1547px; width: 68px; height: 68px; } .shop_armor_armoire_yellowPartyDress { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -634px -1613px; - width: 40px; - height: 40px; + background-position: -966px -1547px; + width: 68px; + height: 68px; } .shop_body_armoire_cozyScarf { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1561px -1449px; + background-position: -1035px -1547px; width: 68px; height: 68px; } .shop_eyewear_armoire_goofyGlasses { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: 0px -1544px; + background-position: -1104px -1547px; width: 68px; height: 68px; } .shop_eyewear_armoire_plagueDoctorMask { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -69px -1544px; - width: 68px; - height: 68px; -} -.shop_headAccessory_armoire_comicalArrow { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -138px -1613px; + background-position: -1173px -1547px; width: 68px; height: 68px; } .shop_head_armoire_antiProcrastinationHelm { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -552px -1613px; - width: 40px; - height: 40px; + background-position: -1242px -1547px; + width: 68px; + height: 68px; } .shop_head_armoire_barristerWig { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -207px -1544px; + background-position: -1311px -1547px; width: 68px; height: 68px; } .shop_head_armoire_basicArcherCap { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -276px -1544px; + background-position: -1380px -1547px; width: 68px; height: 68px; } .shop_head_armoire_bigWig { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -345px -1544px; + background-position: -1449px -1547px; width: 68px; height: 68px; } .shop_head_armoire_birdsNest { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -414px -1544px; + background-position: -1518px -1547px; width: 68px; height: 68px; } .shop_head_armoire_blackCat { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -483px -1544px; + background-position: -1645px 0px; width: 68px; height: 68px; } .shop_head_armoire_blueFloppyHat { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -552px -1544px; + background-position: -1645px -69px; width: 68px; height: 68px; } .shop_head_armoire_blueHairbow { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -621px -1544px; + background-position: -1645px -138px; width: 68px; height: 68px; } .shop_head_armoire_candlestickMakerHat { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1470px -1365px; + background-position: -1645px -207px; width: 68px; height: 68px; } .shop_head_armoire_cannoneerBandanna { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -759px -1544px; + background-position: -1645px -276px; width: 68px; height: 68px; } .shop_head_armoire_coachDriversHat { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -828px -1544px; + background-position: -1645px -345px; width: 68px; height: 68px; } .shop_head_armoire_crownOfDiamonds { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -897px -1544px; + background-position: -1645px -414px; width: 68px; height: 68px; } .shop_head_armoire_crownOfHearts { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -966px -1544px; + background-position: -1645px -483px; width: 68px; height: 68px; } .shop_head_armoire_crystalCrescentHat { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1035px -1544px; + background-position: -1645px -552px; width: 68px; height: 68px; } .shop_head_armoire_dragonTamerHelm { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1104px -1544px; + background-position: -1645px -621px; width: 68px; height: 68px; } .shop_head_armoire_falconerCap { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1173px -1544px; + background-position: -1645px -690px; width: 68px; height: 68px; } .shop_head_armoire_flutteryWig { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1242px -1544px; + background-position: -1645px -759px; width: 68px; height: 68px; } .shop_head_armoire_gladiatorHelm { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1311px -1544px; + background-position: -1645px -828px; width: 68px; height: 68px; } .shop_head_armoire_glassblowersHat { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1380px -1544px; + background-position: -1645px -897px; width: 68px; height: 68px; } .shop_head_armoire_goldenLaurels { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1449px -1544px; + background-position: -1645px -966px; width: 68px; height: 68px; } .shop_head_armoire_graduateCap { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1518px -1544px; + background-position: -1645px -1035px; width: 68px; height: 68px; } .shop_head_armoire_greenFloppyHat { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1630px 0px; + background-position: -1645px -1104px; width: 68px; height: 68px; } .shop_head_armoire_hornedIronHelm { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1630px -69px; + background-position: -1645px -1173px; width: 68px; height: 68px; } .shop_head_armoire_ironBlueArcherHelm { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1630px -138px; + background-position: -1645px -1242px; width: 68px; height: 68px; } .shop_head_armoire_jesterCap { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1630px -207px; + background-position: -1645px -1311px; width: 68px; height: 68px; } .shop_head_armoire_lamplightersTopHat { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1630px -276px; + background-position: -1645px -1380px; width: 68px; height: 68px; } .shop_head_armoire_lunarCrown { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1630px -345px; + background-position: -1645px -1449px; width: 68px; height: 68px; } .shop_head_armoire_merchantChaperon { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1630px -414px; + background-position: -1645px -1518px; width: 68px; height: 68px; } .shop_head_armoire_minerHelmet { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1630px -483px; + background-position: 0px -1616px; width: 68px; height: 68px; } .shop_head_armoire_mushroomDruidCap { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1630px -552px; + background-position: -69px -1616px; width: 68px; height: 68px; } -.shop_head_armoire_ogreMask { +.shop_armor_armoire_piraticalPrincessGown { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1630px -621px; + background-position: -979px -1456px; width: 68px; height: 68px; } -.shop_head_armoire_orangeCat { +.shop_head_armoire_piraticalPrincessHeaddress { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1630px -690px; + background-position: -552px -1547px; width: 68px; height: 68px; } -.shop_head_armoire_paperBag { +.shop_shield_armoire_piraticalSkullShield { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1630px -759px; + background-position: -1048px -1456px; width: 68px; height: 68px; } -.shop_head_armoire_plagueDoctorHat { +.shop_weapon_armoire_poisonedGoblet { background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1630px -828px; - width: 68px; - height: 68px; -} -.shop_head_armoire_ramHeaddress { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1630px -897px; - width: 68px; - height: 68px; -} -.shop_head_armoire_rancherHat { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1630px -966px; - width: 68px; - height: 68px; -} -.shop_head_armoire_redFloppyHat { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1630px -1035px; - width: 68px; - height: 68px; -} -.shop_head_armoire_redHairbow { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1630px -1104px; - width: 68px; - height: 68px; -} -.shop_head_armoire_royalCrown { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1630px -1173px; - width: 68px; - height: 68px; -} -.shop_head_armoire_shepherdHeaddress { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1630px -1242px; - width: 68px; - height: 68px; -} -.shop_head_armoire_swanFeatherCrown { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1587px -1544px; - width: 40px; - height: 40px; -} -.shop_head_armoire_vermilionArcherHelm { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1630px -1380px; - width: 68px; - height: 68px; -} -.shop_head_armoire_vikingHelm { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1630px -1449px; - width: 68px; - height: 68px; -} -.shop_head_armoire_violetFloppyHat { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1630px -1518px; - width: 68px; - height: 68px; -} -.shop_head_armoire_woodElfHelm { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: 0px -1613px; - width: 68px; - height: 68px; -} -.shop_head_armoire_yellowHairbow { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -69px -1613px; - width: 68px; - height: 68px; -} -.shop_shield_armoire_antiProcrastinationShield { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -414px -364px; - width: 40px; - height: 40px; -} -.shop_shield_armoire_dragonTamerShield { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -276px -1613px; - width: 68px; - height: 68px; -} -.shop_shield_armoire_fancyBlownGlassVase { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -345px -1613px; - width: 68px; - height: 68px; -} -.shop_shield_armoire_fancyShoe { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -414px -1613px; - width: 68px; - height: 68px; -} -.shop_shield_armoire_festivalParasol { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -483px -1613px; - width: 68px; - height: 68px; -} -.shop_shield_armoire_floralBouquet { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -207px -1613px; - width: 68px; - height: 68px; -} -.shop_shield_armoire_flutteryFan { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1630px -1311px; - width: 68px; - height: 68px; -} -.shop_shield_armoire_gladiatorShield { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -138px -1544px; - width: 68px; - height: 68px; -} -.shop_shield_armoire_goldenBaton { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -593px -1613px; - width: 40px; - height: 40px; -} -.shop_shield_armoire_handmadeCandlestick { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1561px -1380px; - width: 68px; - height: 68px; -} -.shop_shield_armoire_horseshoe { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -675px -1613px; - width: 40px; - height: 40px; -} -.shop_shield_armoire_midnightShield { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1561px -1035px; - width: 68px; - height: 68px; -} -.shop_shield_armoire_mushroomDruidShield { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -460px -364px; - width: 68px; - height: 68px; -} -.shop_shield_armoire_mysticLamp { - background-image: url('~assets/images/sprites/spritesmith-main-5.png'); - background-position: -1379px -1274px; + background-position: -1117px -1456px; width: 68px; height: 68px; } diff --git a/website/client/assets/css/sprites/spritesmith-main-6.css b/website/client/assets/css/sprites/spritesmith-main-6.css index 01c233f173..4f4d08c020 100644 --- a/website/client/assets/css/sprites/spritesmith-main-6.css +++ b/website/client/assets/css/sprites/spritesmith-main-6.css @@ -1,2244 +1,2328 @@ +.shop_headAccessory_armoire_comicalArrow { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -759px -1431px; + width: 68px; + height: 68px; +} +.shop_head_armoire_ogreMask { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: 0px -1431px; + width: 68px; + height: 68px; +} +.shop_head_armoire_orangeCat { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -138px -1500px; + width: 68px; + height: 68px; +} +.shop_head_armoire_paperBag { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1454px -552px; + width: 68px; + height: 68px; +} +.shop_head_armoire_plagueDoctorHat { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1454px -621px; + width: 68px; + height: 68px; +} +.shop_head_armoire_ramHeaddress { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1454px -690px; + width: 68px; + height: 68px; +} +.shop_head_armoire_rancherHat { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1454px -759px; + width: 68px; + height: 68px; +} +.shop_head_armoire_redFloppyHat { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1454px -828px; + width: 68px; + height: 68px; +} +.shop_head_armoire_redHairbow { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1454px -897px; + width: 68px; + height: 68px; +} +.shop_head_armoire_royalCrown { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1454px -1173px; + width: 68px; + height: 68px; +} +.shop_head_armoire_shepherdHeaddress { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1454px -1311px; + width: 68px; + height: 68px; +} +.shop_head_armoire_swanFeatherCrown { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1661px -621px; + width: 40px; + height: 40px; +} +.shop_head_armoire_vermilionArcherHelm { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -69px -1431px; + width: 68px; + height: 68px; +} +.shop_head_armoire_vikingHelm { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -138px -1431px; + width: 68px; + height: 68px; +} +.shop_head_armoire_violetFloppyHat { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -207px -1431px; + width: 68px; + height: 68px; +} +.shop_head_armoire_woodElfHelm { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -621px -1431px; + width: 68px; + height: 68px; +} +.shop_head_armoire_yellowHairbow { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -690px -1431px; + width: 68px; + height: 68px; +} +.shop_shield_armoire_antiProcrastinationShield { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -828px -1431px; + width: 68px; + height: 68px; +} +.shop_shield_armoire_dragonTamerShield { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -897px -1431px; + width: 68px; + height: 68px; +} +.shop_shield_armoire_fancyBlownGlassVase { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -966px -1431px; + width: 68px; + height: 68px; +} +.shop_shield_armoire_fancyShoe { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1035px -1431px; + width: 68px; + height: 68px; +} +.shop_shield_armoire_festivalParasol { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1104px -1431px; + width: 68px; + height: 68px; +} +.shop_shield_armoire_floralBouquet { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1173px -1431px; + width: 68px; + height: 68px; +} +.shop_shield_armoire_flutteryFan { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1242px -1431px; + width: 68px; + height: 68px; +} +.shop_shield_armoire_gladiatorShield { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1311px -1431px; + width: 68px; + height: 68px; +} +.shop_shield_armoire_goldenBaton { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1380px -1431px; + width: 68px; + height: 68px; +} +.shop_shield_armoire_handmadeCandlestick { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1449px -1431px; + width: 68px; + height: 68px; +} +.shop_shield_armoire_horseshoe { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1523px 0px; + width: 68px; + height: 68px; +} +.shop_shield_armoire_midnightShield { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1523px -69px; + width: 68px; + height: 68px; +} +.shop_shield_armoire_mushroomDruidShield { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1523px -138px; + width: 68px; + height: 68px; +} +.shop_shield_armoire_mysticLamp { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1523px -207px; + width: 68px; + height: 68px; +} .shop_shield_armoire_perchingFalcon { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1560px -276px; + background-position: -1523px -276px; width: 68px; height: 68px; } .shop_shield_armoire_ramHornShield { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -759px -1447px; + background-position: -1523px -345px; width: 68px; height: 68px; } .shop_shield_armoire_redRose { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1242px -1585px; + background-position: -1523px -414px; width: 68px; height: 68px; } .shop_shield_armoire_royalCane { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1560px -69px; + background-position: -1523px -483px; width: 68px; height: 68px; } .shop_shield_armoire_sandyBucket { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1560px -138px; + background-position: -1523px -552px; width: 68px; height: 68px; } .shop_shield_armoire_shieldOfDiamonds { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1560px -207px; + background-position: -1523px -621px; width: 68px; height: 68px; } .shop_shield_armoire_swanFeatherFan { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1560px -1449px; - width: 40px; - height: 40px; + background-position: -1523px -690px; + width: 68px; + height: 68px; } .shop_shield_armoire_vikingShield { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1560px -345px; + background-position: -1523px -759px; width: 68px; height: 68px; } .shop_shield_armoire_weaversShuttle { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1560px -414px; + background-position: -1523px -828px; width: 68px; height: 68px; } .shop_weapon_armoire_barristerGavel { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1560px -483px; + background-position: -1523px -897px; width: 68px; height: 68px; } .shop_weapon_armoire_basicCrossbow { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -138px -1585px; + background-position: -1523px -966px; width: 68px; height: 68px; } .shop_weapon_armoire_basicLongbow { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -207px -1585px; + background-position: -1523px -1035px; width: 68px; height: 68px; } .shop_weapon_armoire_batWand { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -345px -1585px; + background-position: -1274px -1271px; width: 68px; height: 68px; } .shop_weapon_armoire_battleAxe { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -276px -1585px; + background-position: -1183px -1180px; width: 68px; height: 68px; } .shop_weapon_armoire_blueLongbow { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -414px -1585px; + background-position: 0px -1362px; width: 68px; height: 68px; } .shop_weapon_armoire_cannon { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -483px -1585px; + background-position: -69px -1362px; width: 68px; height: 68px; } .shop_weapon_armoire_coachDriversWhip { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -552px -1585px; + background-position: -138px -1362px; width: 68px; height: 68px; } .shop_weapon_armoire_cobblersHammer { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -621px -1585px; + background-position: -207px -1362px; width: 68px; height: 68px; } .shop_weapon_armoire_crystalCrescentStaff { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -690px -1585px; + background-position: -276px -1362px; width: 68px; height: 68px; } .shop_weapon_armoire_festivalFirecracker { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -759px -1585px; + background-position: -345px -1362px; width: 68px; height: 68px; } .shop_weapon_armoire_flutteryArmy { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -828px -1585px; + background-position: -414px -1362px; width: 68px; height: 68px; } .shop_weapon_armoire_forestFungusStaff { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -897px -1585px; + background-position: -483px -1362px; width: 68px; height: 68px; } .shop_weapon_armoire_glassblowersBlowpipe { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -966px -1585px; + background-position: -552px -1362px; width: 68px; height: 68px; } .shop_weapon_armoire_glowingSpear { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1035px -1585px; + background-position: -621px -1362px; width: 68px; height: 68px; } .shop_weapon_armoire_goldWingStaff { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1104px -1585px; + background-position: -690px -1362px; width: 68px; height: 68px; } .shop_weapon_armoire_habiticanDiploma { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1173px -1585px; + background-position: -759px -1362px; width: 68px; height: 68px; } .shop_weapon_armoire_hoofClippers { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1629px -1518px; - width: 40px; - height: 40px; + background-position: -828px -1362px; + width: 68px; + height: 68px; } .shop_weapon_armoire_ironCrook { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1311px -1585px; + background-position: -897px -1362px; width: 68px; height: 68px; } .shop_weapon_armoire_jesterBaton { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1380px -1585px; + background-position: -966px -1362px; width: 68px; height: 68px; } .shop_weapon_armoire_lamplighter { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1449px -1585px; + background-position: -1035px -1362px; width: 68px; height: 68px; } .shop_weapon_armoire_lunarSceptre { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1469px -182px; + background-position: -1104px -1362px; width: 68px; height: 68px; } .shop_weapon_armoire_merchantsDisplayTray { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1469px -458px; + background-position: -1173px -1362px; width: 68px; height: 68px; } .shop_weapon_armoire_miningPickax { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1469px -596px; + background-position: -1242px -1362px; width: 68px; height: 68px; } .shop_weapon_armoire_mythmakerSword { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1469px -665px; + background-position: -1311px -1362px; width: 68px; height: 68px; } .shop_weapon_armoire_ogreClub { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -966px -1447px; + background-position: -1380px -1362px; width: 68px; height: 68px; } .shop_weapon_armoire_rancherLasso { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1035px -1447px; + background-position: -1454px 0px; width: 68px; height: 68px; } .shop_weapon_armoire_sandySpade { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1104px -1447px; + background-position: -1454px -69px; width: 68px; height: 68px; } .shop_weapon_armoire_scepterOfDiamonds { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1173px -1447px; + background-position: -1454px -138px; width: 68px; height: 68px; } .shop_weapon_armoire_shepherdsCrook { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1242px -1447px; + background-position: -1454px -207px; width: 68px; height: 68px; } .shop_weapon_armoire_vermilionArcherBow { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1311px -1447px; + background-position: -1454px -276px; width: 68px; height: 68px; } .shop_weapon_armoire_wandOfHearts { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1380px -1447px; + background-position: -1454px -345px; width: 68px; height: 68px; } .shop_weapon_armoire_weaversComb { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1449px -1447px; + background-position: -1454px -414px; width: 68px; height: 68px; } .shop_weapon_armoire_woodElfStaff { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1560px 0px; + background-position: -1454px -483px; width: 68px; height: 68px; } .slim_armor_armoire_antiProcrastinationArmor { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -637px -1265px; + background-position: -1363px -728px; width: 90px; height: 90px; } .slim_armor_armoire_barristerRobes { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -923px -273px; + background-position: -1363px -546px; width: 90px; height: 90px; } .slim_armor_armoire_basicArcherArmor { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -819px -992px; + background-position: -1363px -455px; width: 90px; height: 90px; } .slim_armor_armoire_bluePartyDress { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -345px -455px; + background-position: -115px -91px; width: 114px; height: 90px; } .slim_armor_armoire_candlestickMakerOutfit { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1287px -819px; + background-position: -1363px -364px; width: 90px; height: 90px; } .slim_armor_armoire_cannoneerRags { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -273px -1265px; + background-position: -1363px -273px; width: 90px; height: 90px; } .slim_armor_armoire_coachDriverLivery { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: 0px -455px; + background-position: 0px -182px; width: 114px; height: 90px; } .slim_armor_armoire_cobblersCoveralls { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1378px -364px; + background-position: -1363px -182px; width: 90px; height: 90px; } .slim_armor_armoire_crystalCrescentRobes { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1378px -728px; + background-position: -1363px -91px; width: 90px; height: 90px; } .slim_armor_armoire_dragonTamerArmor { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1378px -1092px; + background-position: -1183px -1271px; width: 90px; height: 90px; } .slim_armor_armoire_falconerArmor { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -637px -1356px; + background-position: -910px -1271px; width: 90px; height: 90px; } .slim_armor_armoire_farrierOutfit { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -767px -810px; + background-position: -819px -1271px; width: 90px; height: 90px; } .slim_armor_armoire_flutteryFrock { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -587px -182px; + background-position: -357px -91px; width: 114px; height: 90px; } .slim_armor_armoire_gladiatorArmor { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1014px -819px; + background-position: -637px -1271px; width: 90px; height: 90px; } .slim_armor_armoire_glassblowersCoveralls { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -242px 0px; + background-position: 0px -273px; width: 114px; height: 90px; } .slim_armor_armoire_goldenToga { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -910px -1083px; + background-position: -546px -1271px; width: 90px; height: 90px; } .slim_armor_armoire_gownOfHearts { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1196px -728px; + background-position: -455px -1271px; width: 90px; height: 90px; } .slim_armor_armoire_graduateRobe { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1196px -819px; + background-position: -364px -1271px; width: 90px; height: 90px; } .slim_armor_armoire_greenFestivalYukata { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1196px -910px; + background-position: -273px -1271px; width: 90px; height: 90px; } .slim_armor_armoire_hornedIronArmor { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1196px -1001px; + background-position: -182px -1271px; width: 90px; height: 90px; } .slim_armor_armoire_ironBlueArcherArmor { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -364px -1174px; + background-position: -91px -1271px; width: 90px; height: 90px; } .slim_armor_armoire_jesterCostume { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -819px -1174px; + background-position: 0px -1271px; width: 90px; height: 90px; } .slim_armor_armoire_lamplightersGreatcoat { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -230px -634px; + background-position: 0px -546px; width: 114px; height: 87px; } .slim_armor_armoire_lunarArmor { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1001px -1174px; + background-position: -1272px -910px; width: 90px; height: 90px; } .slim_armor_armoire_merchantTunic { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1287px 0px; + background-position: -1272px -637px; width: 90px; height: 90px; } .slim_armor_armoire_minerOveralls { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1287px -91px; + background-position: -1272px -546px; width: 90px; height: 90px; } .slim_armor_armoire_mushroomDruidArmor { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1287px -182px; + background-position: -1272px -364px; width: 90px; height: 90px; } .slim_armor_armoire_ogreArmor { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1287px -273px; + background-position: -1272px -273px; width: 90px; height: 90px; } -.slim_armor_armoire_plagueDoctorOvercoat { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1287px -364px; - width: 90px; - height: 90px; -} -.slim_armor_armoire_ramFleeceRobes { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1287px -455px; - width: 90px; - height: 90px; -} -.slim_armor_armoire_rancherRobes { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1287px -546px; - width: 90px; - height: 90px; -} -.slim_armor_armoire_redPartyDress { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1287px -637px; - width: 90px; - height: 90px; -} -.slim_armor_armoire_robeOfDiamonds { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: 0px -182px; - width: 114px; - height: 90px; -} -.slim_armor_armoire_royalRobes { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1287px -910px; - width: 90px; - height: 90px; -} -.slim_armor_armoire_shepherdRobes { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1287px -1092px; - width: 90px; - height: 90px; -} -.slim_armor_armoire_stripedSwimsuit { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: 0px -1265px; - width: 90px; - height: 90px; -} -.slim_armor_armoire_swanDancerTutu { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -106px -810px; - width: 99px; - height: 90px; -} -.slim_armor_armoire_vermilionArcherArmor { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -364px -1265px; - width: 90px; - height: 90px; -} -.slim_armor_armoire_vikingTunic { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -455px -1265px; - width: 90px; - height: 90px; -} -.slim_armor_armoire_woodElfArmor { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -546px -1265px; - width: 90px; - height: 90px; -} -.slim_armor_armoire_wovenRobes { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -115px -182px; - width: 114px; - height: 90px; -} -.slim_armor_armoire_yellowPartyDress { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -728px -1265px; - width: 90px; - height: 90px; -} -.weapon_armoire_barristerGavel { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -819px -1265px; - width: 90px; - height: 90px; -} -.weapon_armoire_basicCrossbow { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -910px -1265px; - width: 90px; - height: 90px; -} -.weapon_armoire_basicLongbow { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1092px -1265px; - width: 90px; - height: 90px; -} -.weapon_armoire_batWand { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1378px 0px; - width: 90px; - height: 90px; -} -.weapon_armoire_battleAxe { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1183px -1265px; - width: 90px; - height: 90px; -} -.weapon_armoire_blueLongbow { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1378px -91px; - width: 90px; - height: 90px; -} -.weapon_armoire_cannon { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1378px -273px; - width: 90px; - height: 90px; -} -.weapon_armoire_coachDriversWhip { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -230px -182px; - width: 114px; - height: 90px; -} -.weapon_armoire_cobblersHammer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1378px -455px; - width: 90px; - height: 90px; -} -.weapon_armoire_crystalCrescentStaff { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1378px -546px; - width: 90px; - height: 90px; -} -.weapon_armoire_festivalFirecracker { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1378px -637px; - width: 90px; - height: 90px; -} -.weapon_armoire_flutteryArmy { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -357px 0px; - width: 114px; - height: 90px; -} -.weapon_armoire_forestFungusStaff { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1378px -910px; - width: 90px; - height: 90px; -} -.weapon_armoire_glassblowersBlowpipe { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -357px -91px; - width: 114px; - height: 90px; -} -.weapon_armoire_glowingSpear { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1378px -1183px; - width: 90px; - height: 90px; -} -.weapon_armoire_goldWingStaff { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -182px -1356px; - width: 90px; - height: 90px; -} -.weapon_armoire_habiticanDiploma { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -273px -1356px; - width: 90px; - height: 90px; -} -.weapon_armoire_hoofClippers { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -364px -1356px; - width: 90px; - height: 90px; -} -.weapon_armoire_ironCrook { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -455px -1356px; - width: 90px; - height: 90px; -} -.weapon_armoire_jesterBaton { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -546px -1356px; - width: 90px; - height: 90px; -} -.weapon_armoire_lamplighter { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -115px -634px; - width: 114px; - height: 87px; -} -.weapon_armoire_lunarSceptre { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -728px -1356px; - width: 90px; - height: 90px; -} -.weapon_armoire_merchantsDisplayTray { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -819px -1356px; - width: 90px; - height: 90px; -} -.weapon_armoire_miningPickax { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1001px -1356px; - width: 90px; - height: 90px; -} -.weapon_armoire_mythmakerSword { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1092px -1356px; - width: 90px; - height: 90px; -} -.weapon_armoire_ogreClub { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1274px -1356px; - width: 90px; - height: 90px; -} -.weapon_armoire_rancherLasso { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1365px -1356px; - width: 90px; - height: 90px; -} -.weapon_armoire_sandySpade { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -676px -810px; - width: 90px; - height: 90px; -} -.weapon_armoire_scepterOfDiamonds { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: 0px -273px; - width: 114px; - height: 90px; -} -.weapon_armoire_shepherdsCrook { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -923px 0px; - width: 90px; - height: 90px; -} -.weapon_armoire_vermilionArcherBow { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -923px -91px; - width: 90px; - height: 90px; -} -.weapon_armoire_wandOfHearts { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -923px -182px; - width: 90px; - height: 90px; -} -.weapon_armoire_weaversComb { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -115px -273px; - width: 114px; - height: 90px; -} -.weapon_armoire_woodElfStaff { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -923px -364px; - width: 90px; - height: 90px; -} -.armor_special_bardRobes { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -923px -455px; - width: 90px; - height: 90px; -} -.broad_armor_healer_1 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -923px -546px; - width: 90px; - height: 90px; -} -.broad_armor_healer_2 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -923px -637px; - width: 90px; - height: 90px; -} -.broad_armor_healer_3 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -923px -728px; - width: 90px; - height: 90px; -} -.broad_armor_healer_4 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: 0px -901px; - width: 90px; - height: 90px; -} -.broad_armor_healer_5 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -91px -901px; - width: 90px; - height: 90px; -} -.broad_armor_rogue_1 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -182px -901px; - width: 90px; - height: 90px; -} -.broad_armor_rogue_2 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -273px -901px; - width: 90px; - height: 90px; -} -.broad_armor_rogue_3 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -364px -901px; - width: 90px; - height: 90px; -} -.broad_armor_rogue_4 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -455px -901px; - width: 90px; - height: 90px; -} -.broad_armor_rogue_5 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -546px -901px; - width: 90px; - height: 90px; -} -.broad_armor_special_2 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -637px -901px; - width: 90px; - height: 90px; -} -.broad_armor_special_bardRobes { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -728px -901px; - width: 90px; - height: 90px; -} -.broad_armor_special_dandySuit { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -819px -901px; - width: 90px; - height: 90px; -} -.broad_armor_special_finnedOceanicArmor { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -910px -901px; - width: 90px; - height: 90px; -} -.broad_armor_special_lunarWarriorArmor { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1014px 0px; - width: 90px; - height: 90px; -} -.broad_armor_special_mammothRiderArmor { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1014px -91px; - width: 90px; - height: 90px; -} -.broad_armor_special_nomadsCuirass { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1014px -182px; - width: 90px; - height: 90px; -} -.broad_armor_special_pageArmor { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1014px -273px; - width: 90px; - height: 90px; -} -.broad_armor_special_pyromancersRobes { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1014px -364px; - width: 90px; - height: 90px; -} -.broad_armor_special_roguishRainbowMessengerRobes { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1014px -455px; - width: 90px; - height: 90px; -} -.broad_armor_special_samuraiArmor { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1014px -546px; - width: 90px; - height: 90px; -} -.broad_armor_special_sneakthiefRobes { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1014px -637px; - width: 90px; - height: 90px; -} -.broad_armor_special_snowSovereignRobes { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1014px -728px; - width: 90px; - height: 90px; -} -.broad_armor_special_turkeyArmorBase { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -230px -273px; - width: 114px; - height: 90px; -} -.broad_armor_warrior_1 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: 0px -992px; - width: 90px; - height: 90px; -} -.broad_armor_warrior_2 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -91px -992px; - width: 90px; - height: 90px; -} -.broad_armor_warrior_3 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -182px -992px; - width: 90px; - height: 90px; -} -.broad_armor_warrior_4 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -273px -992px; - width: 90px; - height: 90px; -} -.broad_armor_warrior_5 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -364px -992px; - width: 90px; - height: 90px; -} -.broad_armor_wizard_1 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -455px -992px; - width: 90px; - height: 90px; -} -.broad_armor_wizard_2 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -546px -992px; - width: 90px; - height: 90px; -} -.broad_armor_wizard_3 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -637px -992px; - width: 90px; - height: 90px; -} -.broad_armor_wizard_4 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -728px -992px; - width: 90px; - height: 90px; -} -.broad_armor_wizard_5 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1469px -91px; - width: 90px; - height: 90px; -} -.shop_armor_healer_1 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1469px -734px; - width: 68px; - height: 68px; -} -.shop_armor_healer_2 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1469px -803px; - width: 68px; - height: 68px; -} -.shop_armor_healer_3 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1469px -872px; - width: 68px; - height: 68px; -} -.shop_armor_healer_4 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1469px -1286px; - width: 68px; - height: 68px; -} -.shop_armor_healer_5 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1469px -1355px; - width: 68px; - height: 68px; -} -.shop_armor_rogue_1 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1378px -1274px; - width: 68px; - height: 68px; -} -.shop_armor_rogue_2 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1287px -1183px; - width: 68px; - height: 68px; -} -.shop_armor_rogue_3 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1196px -1092px; - width: 68px; - height: 68px; -} -.shop_armor_rogue_4 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1105px -1001px; - width: 68px; - height: 68px; -} -.shop_armor_rogue_5 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1014px -910px; - width: 68px; - height: 68px; -} -.shop_armor_special_0 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -923px -819px; - width: 68px; - height: 68px; -} -.shop_armor_special_1 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -817px -728px; - width: 68px; - height: 68px; -} -.shop_armor_special_2 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -115px -722px; - width: 68px; - height: 68px; -} -.shop_armor_special_bardRobes { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -184px -722px; - width: 68px; - height: 68px; -} -.shop_armor_special_dandySuit { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -253px -722px; - width: 68px; - height: 68px; -} -.shop_armor_special_finnedOceanicArmor { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -322px -722px; - width: 68px; - height: 68px; -} -.shop_armor_special_lunarWarriorArmor { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -391px -722px; - width: 68px; - height: 68px; -} -.shop_armor_special_mammothRiderArmor { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -460px -722px; - width: 68px; - height: 68px; -} -.shop_armor_special_nomadsCuirass { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -529px -722px; - width: 68px; - height: 68px; -} -.shop_armor_special_pageArmor { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -598px -722px; - width: 68px; - height: 68px; -} -.shop_armor_special_pyromancersRobes { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -667px -722px; - width: 68px; - height: 68px; -} -.shop_armor_special_roguishRainbowMessengerRobes { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -736px -722px; - width: 68px; - height: 68px; -} -.shop_armor_special_samuraiArmor { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: 0px -1447px; - width: 68px; - height: 68px; -} -.shop_armor_special_sneakthiefRobes { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -69px -1447px; - width: 68px; - height: 68px; -} -.shop_armor_special_snowSovereignRobes { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -138px -1447px; - width: 68px; - height: 68px; -} -.shop_armor_special_turkeyArmorBase { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -207px -1447px; - width: 68px; - height: 68px; -} -.shop_armor_warrior_1 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -276px -1447px; - width: 68px; - height: 68px; -} -.shop_armor_warrior_2 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -345px -1447px; - width: 68px; - height: 68px; -} -.shop_armor_warrior_3 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -414px -1447px; - width: 68px; - height: 68px; -} -.shop_armor_warrior_4 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -483px -1447px; - width: 68px; - height: 68px; -} -.shop_armor_warrior_5 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -552px -1447px; - width: 68px; - height: 68px; -} -.shop_armor_wizard_1 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -621px -1447px; - width: 68px; - height: 68px; -} -.shop_armor_wizard_2 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -690px -1447px; - width: 68px; - height: 68px; -} -.shop_armor_wizard_3 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1518px -1585px; - width: 68px; - height: 68px; -} -.shop_armor_wizard_4 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -828px -1447px; - width: 68px; - height: 68px; -} -.shop_armor_wizard_5 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -897px -1447px; - width: 68px; - height: 68px; -} -.slim_armor_healer_1 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -910px -992px; - width: 90px; - height: 90px; -} -.slim_armor_healer_2 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1001px -992px; - width: 90px; - height: 90px; -} -.slim_armor_healer_3 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1105px 0px; - width: 90px; - height: 90px; -} -.slim_armor_healer_4 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1105px -91px; - width: 90px; - height: 90px; -} -.slim_armor_healer_5 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1105px -182px; - width: 90px; - height: 90px; -} -.slim_armor_rogue_1 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1105px -273px; - width: 90px; - height: 90px; -} -.slim_armor_rogue_2 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1105px -364px; - width: 90px; - height: 90px; -} -.slim_armor_rogue_3 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1105px -455px; - width: 90px; - height: 90px; -} -.slim_armor_rogue_4 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1105px -546px; - width: 90px; - height: 90px; -} -.slim_armor_rogue_5 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1105px -637px; - width: 90px; - height: 90px; -} -.slim_armor_special_2 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1105px -728px; - width: 90px; - height: 90px; -} -.slim_armor_special_bardRobes { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1105px -819px; - width: 90px; - height: 90px; -} -.slim_armor_special_dandySuit { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1105px -910px; - width: 90px; - height: 90px; -} -.slim_armor_special_finnedOceanicArmor { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: 0px -1083px; - width: 90px; - height: 90px; -} -.slim_armor_special_lunarWarriorArmor { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -91px -1083px; - width: 90px; - height: 90px; -} -.slim_armor_special_mammothRiderArmor { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -182px -1083px; - width: 90px; - height: 90px; -} -.slim_armor_special_nomadsCuirass { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -273px -1083px; - width: 90px; - height: 90px; -} -.slim_armor_special_pageArmor { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -364px -1083px; - width: 90px; - height: 90px; -} -.slim_armor_special_pyromancersRobes { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -455px -1083px; - width: 90px; - height: 90px; -} -.slim_armor_special_roguishRainbowMessengerRobes { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -546px -1083px; - width: 90px; - height: 90px; -} -.slim_armor_special_samuraiArmor { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -637px -1083px; - width: 90px; - height: 90px; -} -.slim_armor_special_sneakthiefRobes { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -728px -1083px; - width: 90px; - height: 90px; -} -.slim_armor_special_snowSovereignRobes { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -819px -1083px; - width: 90px; - height: 90px; -} -.slim_armor_special_turkeyArmorBase { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: 0px -364px; - width: 114px; - height: 90px; -} -.slim_armor_warrior_1 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1001px -1083px; - width: 90px; - height: 90px; -} -.slim_armor_warrior_2 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1092px -1083px; - width: 90px; - height: 90px; -} -.slim_armor_warrior_3 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1196px 0px; - width: 90px; - height: 90px; -} -.slim_armor_warrior_4 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1196px -91px; - width: 90px; - height: 90px; -} -.slim_armor_warrior_5 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1196px -182px; - width: 90px; - height: 90px; -} -.slim_armor_wizard_1 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1196px -273px; - width: 90px; - height: 90px; -} -.slim_armor_wizard_2 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1196px -364px; - width: 90px; - height: 90px; -} -.slim_armor_wizard_3 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1196px -455px; - width: 90px; - height: 90px; -} -.slim_armor_wizard_4 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1196px -546px; - width: 90px; - height: 90px; -} -.slim_armor_wizard_5 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1196px -637px; - width: 90px; - height: 90px; -} -.back_special_aetherCloak { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -115px -364px; - width: 114px; - height: 90px; -} -.back_special_snowdriftVeil { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -702px -528px; - width: 114px; - height: 87px; -} -.back_special_turkeyTailBase { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -345px -364px; - width: 114px; - height: 90px; -} -.shop_back_special_aetherCloak { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1469px -251px; - width: 68px; - height: 68px; -} -.shop_back_special_snowdriftVeil { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1469px -320px; - width: 68px; - height: 68px; -} -.shop_back_special_turkeyTailBase { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1469px -389px; - width: 68px; - height: 68px; -} -.body_special_aetherAmulet { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -472px 0px; - width: 114px; - height: 90px; -} -.shop_body_special_aetherAmulet { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1469px -527px; - width: 68px; - height: 68px; -} -.broad_armor_special_birthday { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: 0px -1174px; - width: 90px; - height: 90px; -} -.broad_armor_special_birthday2015 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -91px -1174px; - width: 90px; - height: 90px; -} -.broad_armor_special_birthday2016 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -182px -1174px; - width: 90px; - height: 90px; -} -.broad_armor_special_birthday2017 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -273px -1174px; - width: 90px; - height: 90px; -} -.broad_armor_special_birthday2018 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -472px -91px; - width: 114px; - height: 90px; -} -.shop_armor_special_birthday { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1469px -941px; - width: 68px; - height: 68px; -} -.shop_armor_special_birthday2015 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1469px -1010px; - width: 68px; - height: 68px; -} -.shop_armor_special_birthday2016 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1469px -1079px; - width: 68px; - height: 68px; -} -.shop_armor_special_birthday2017 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1469px -1148px; - width: 68px; - height: 68px; -} -.shop_armor_special_birthday2018 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1469px -1217px; - width: 68px; - height: 68px; -} -.slim_armor_special_birthday { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -455px -1174px; - width: 90px; - height: 90px; -} -.slim_armor_special_birthday2015 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -546px -1174px; - width: 90px; - height: 90px; -} -.slim_armor_special_birthday2016 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -637px -1174px; - width: 90px; - height: 90px; -} -.slim_armor_special_birthday2017 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -728px -1174px; - width: 90px; - height: 90px; -} -.slim_armor_special_birthday2018 { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -472px -182px; - width: 114px; - height: 90px; -} -.broad_armor_special_fall2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -488px -810px; - width: 93px; - height: 90px; -} -.broad_armor_special_fall2015Mage { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -817px -364px; - width: 105px; - height: 90px; -} -.broad_armor_special_fall2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1092px -1174px; - width: 90px; - height: 90px; -} -.broad_armor_special_fall2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1183px -1174px; - width: 90px; - height: 90px; -} -.broad_armor_special_fall2016Healer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -702px -176px; - width: 114px; - height: 87px; -} -.broad_armor_special_fall2016Mage { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -702px -88px; - width: 114px; - height: 87px; -} -.broad_armor_special_fall2016Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -702px 0px; - width: 114px; - height: 87px; -} -.broad_armor_special_fall2016Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -575px -546px; - width: 114px; - height: 87px; -} -.broad_armor_special_fall2017Healer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -121px -91px; - width: 114px; - height: 90px; -} -.broad_armor_special_fall2017Mage { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -460px -455px; - width: 114px; - height: 90px; -} -.broad_armor_special_fall2017Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -587px 0px; - width: 114px; - height: 90px; -} -.broad_armor_special_fall2017Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -587px -91px; - width: 114px; - height: 90px; -} -.broad_armor_special_fallHealer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1287px -728px; - width: 90px; - height: 90px; -} -.broad_armor_special_fallMage { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: 0px -91px; - width: 120px; - height: 90px; -} -.broad_armor_special_fallRogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: 0px -810px; - width: 105px; - height: 90px; -} -.broad_armor_special_fallWarrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1287px -1001px; - width: 90px; - height: 90px; -} -.head_special_fall2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -394px -810px; - width: 93px; - height: 90px; -} -.head_special_fall2015Mage { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -817px -273px; - width: 105px; - height: 90px; -} -.head_special_fall2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -91px -1265px; - width: 90px; - height: 90px; -} -.head_special_fall2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -182px -1265px; - width: 90px; - height: 90px; -} -.head_special_fall2016Healer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -345px -546px; - width: 114px; - height: 87px; -} -.head_special_fall2016Mage { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -115px -546px; - width: 114px; - height: 87px; -} -.head_special_fall2016Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -702px -352px; - width: 114px; - height: 87px; -} -.head_special_fall2016Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -230px -546px; - width: 114px; - height: 87px; -} -.head_special_fall2017Healer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -587px -455px; - width: 114px; - height: 90px; -} -.head_special_fall2017Mage { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -587px -273px; - width: 114px; - height: 90px; -} -.head_special_fall2017Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -230px -455px; - width: 114px; - height: 90px; -} -.head_special_fall2017Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -115px -455px; - width: 114px; - height: 90px; -} -.head_special_fallHealer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1001px -1265px; - width: 90px; - height: 90px; -} -.head_special_fallMage { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -121px 0px; - width: 120px; - height: 90px; -} -.head_special_fallRogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -817px -455px; - width: 105px; - height: 90px; -} -.head_special_fallWarrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1274px -1265px; - width: 90px; - height: 90px; -} -.shield_special_fall2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -300px -810px; - width: 93px; - height: 90px; -} -.shield_special_fall2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -817px -637px; - width: 105px; - height: 90px; -} -.shield_special_fall2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1378px -182px; - width: 90px; - height: 90px; -} -.shield_special_fall2016Healer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -702px -264px; - width: 114px; - height: 87px; -} -.shield_special_fall2016Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: 0px -546px; - width: 114px; - height: 87px; -} -.shield_special_fall2016Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -702px -440px; - width: 114px; - height: 87px; -} -.shield_special_fall2017Healer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -230px -364px; - width: 114px; - height: 90px; -} -.shield_special_fall2017Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -345px -273px; - width: 114px; - height: 90px; -} -.shield_special_fall2017Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -357px -182px; - width: 114px; - height: 90px; -} -.shield_special_fallHealer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1378px -819px; - width: 90px; - height: 90px; -} -.shield_special_fallRogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -817px 0px; - width: 105px; - height: 90px; -} -.shield_special_fallWarrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1378px -1001px; - width: 90px; - height: 90px; -} -.shop_armor_special_fall2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1560px -552px; - width: 68px; - height: 68px; -} -.shop_armor_special_fall2015Mage { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1560px -621px; - width: 68px; - height: 68px; -} -.shop_armor_special_fall2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1560px -690px; - width: 68px; - height: 68px; -} -.shop_armor_special_fall2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1560px -759px; - width: 68px; - height: 68px; -} -.shop_armor_special_fall2016Healer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1560px -828px; - width: 68px; - height: 68px; -} -.shop_armor_special_fall2016Mage { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1560px -897px; - width: 68px; - height: 68px; -} -.shop_armor_special_fall2016Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1560px -966px; - width: 68px; - height: 68px; -} -.shop_armor_special_fall2016Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1560px -1035px; - width: 68px; - height: 68px; -} -.shop_armor_special_fall2017Healer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1560px -1104px; - width: 68px; - height: 68px; -} -.shop_armor_special_fall2017Mage { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1560px -1173px; - width: 68px; - height: 68px; -} -.shop_armor_special_fall2017Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1560px -1242px; - width: 68px; - height: 68px; -} -.shop_armor_special_fall2017Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1560px -1311px; - width: 68px; - height: 68px; -} -.shop_armor_special_fallHealer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1560px -1380px; - width: 68px; - height: 68px; -} -.shop_armor_special_fallMage { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: 0px -1516px; - width: 68px; - height: 68px; -} -.shop_armor_special_fallRogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -69px -1516px; - width: 68px; - height: 68px; -} -.shop_armor_special_fallWarrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -138px -1516px; - width: 68px; - height: 68px; -} -.shop_head_special_fall2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -207px -1516px; - width: 68px; - height: 68px; -} -.shop_head_special_fall2015Mage { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -276px -1516px; - width: 68px; - height: 68px; -} -.shop_head_special_fall2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -345px -1516px; - width: 68px; - height: 68px; -} -.shop_head_special_fall2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -414px -1516px; - width: 68px; - height: 68px; -} -.shop_head_special_fall2016Healer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -483px -1516px; - width: 68px; - height: 68px; -} -.shop_head_special_fall2016Mage { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -552px -1516px; - width: 68px; - height: 68px; -} -.shop_head_special_fall2016Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -621px -1516px; - width: 68px; - height: 68px; -} -.shop_head_special_fall2016Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -690px -1516px; - width: 68px; - height: 68px; -} -.shop_head_special_fall2017Healer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -759px -1516px; - width: 68px; - height: 68px; -} -.shop_head_special_fall2017Mage { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -828px -1516px; - width: 68px; - height: 68px; -} -.shop_head_special_fall2017Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -897px -1516px; - width: 68px; - height: 68px; -} -.shop_head_special_fall2017Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -966px -1516px; - width: 68px; - height: 68px; -} -.shop_head_special_fallHealer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1035px -1516px; - width: 68px; - height: 68px; -} -.shop_head_special_fallMage { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1104px -1516px; - width: 68px; - height: 68px; -} -.shop_head_special_fallRogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1173px -1516px; - width: 68px; - height: 68px; -} -.shop_head_special_fallWarrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1242px -1516px; - width: 68px; - height: 68px; -} -.shop_shield_special_fall2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1311px -1516px; - width: 68px; - height: 68px; -} -.shop_shield_special_fall2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1380px -1516px; - width: 68px; - height: 68px; -} -.shop_shield_special_fall2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1449px -1516px; - width: 68px; - height: 68px; -} -.shop_shield_special_fall2016Healer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1518px -1516px; - width: 68px; - height: 68px; -} -.shop_shield_special_fall2016Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1629px 0px; - width: 68px; - height: 68px; -} -.shop_shield_special_fall2016Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1629px -69px; - width: 68px; - height: 68px; -} -.shop_shield_special_fall2017Healer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1629px -138px; - width: 68px; - height: 68px; -} -.shop_shield_special_fall2017Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1629px -207px; - width: 68px; - height: 68px; -} -.shop_shield_special_fall2017Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1629px -276px; - width: 68px; - height: 68px; -} -.shop_shield_special_fallHealer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1629px -345px; - width: 68px; - height: 68px; -} -.shop_shield_special_fallRogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1629px -414px; - width: 68px; - height: 68px; -} -.shop_shield_special_fallWarrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1629px -483px; - width: 68px; - height: 68px; -} -.shop_weapon_special_fall2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1629px -552px; - width: 68px; - height: 68px; -} -.shop_weapon_special_fall2015Mage { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1629px -621px; - width: 68px; - height: 68px; -} -.shop_weapon_special_fall2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1629px -690px; - width: 68px; - height: 68px; -} -.shop_weapon_special_fall2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1629px -759px; - width: 68px; - height: 68px; -} -.shop_weapon_special_fall2016Healer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1629px -828px; - width: 68px; - height: 68px; -} -.shop_weapon_special_fall2016Mage { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1629px -897px; - width: 68px; - height: 68px; -} -.shop_weapon_special_fall2016Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1629px -966px; - width: 68px; - height: 68px; -} -.shop_weapon_special_fall2016Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1629px -1035px; - width: 68px; - height: 68px; -} -.shop_weapon_special_fall2017Healer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1629px -1104px; - width: 68px; - height: 68px; -} -.shop_weapon_special_fall2017Mage { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1629px -1173px; - width: 68px; - height: 68px; -} -.shop_weapon_special_fall2017Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1629px -1242px; - width: 68px; - height: 68px; -} -.shop_weapon_special_fall2017Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1629px -1311px; - width: 68px; - height: 68px; -} -.shop_weapon_special_fallHealer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1629px -1380px; - width: 68px; - height: 68px; -} -.shop_weapon_special_fallMage { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1629px -1449px; - width: 68px; - height: 68px; -} -.shop_weapon_special_fallRogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: 0px -1585px; - width: 68px; - height: 68px; -} -.shop_weapon_special_fallWarrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -69px -1585px; - width: 68px; - height: 68px; -} -.slim_armor_special_fall2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -206px -810px; - width: 93px; - height: 90px; -} -.slim_armor_special_fall2015Mage { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -817px -182px; - width: 105px; - height: 90px; -} -.slim_armor_special_fall2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: 0px -1356px; - width: 90px; - height: 90px; -} -.slim_armor_special_fall2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -91px -1356px; - width: 90px; - height: 90px; -} -.slim_armor_special_fall2016Healer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -345px -634px; - width: 114px; - height: 87px; -} -.slim_armor_special_fall2016Mage { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -460px -634px; - width: 114px; - height: 87px; -} -.slim_armor_special_fall2016Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -575px -634px; - width: 114px; - height: 87px; -} -.slim_armor_special_fall2016Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -690px -634px; - width: 114px; - height: 87px; -} -.slim_armor_special_fall2017Healer { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -472px -273px; - width: 114px; - height: 90px; -} -.slim_armor_special_fall2017Mage { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -242px -91px; - width: 114px; - height: 90px; -} -.slim_armor_special_fall2017Rogue { +.slim_armor_armoire_piraticalPrincessGown { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); background-position: -472px -364px; width: 114px; height: 90px; } -.slim_armor_special_fall2017Warrior { +.slim_armor_armoire_plagueDoctorOvercoat { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -587px -364px; + background-position: -1272px -182px; + width: 90px; + height: 90px; +} +.slim_armor_armoire_ramFleeceRobes { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1272px -91px; + width: 90px; + height: 90px; +} +.slim_armor_armoire_rancherRobes { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1272px 0px; + width: 90px; + height: 90px; +} +.slim_armor_armoire_redPartyDress { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1092px -1180px; + width: 90px; + height: 90px; +} +.slim_armor_armoire_robeOfDiamonds { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -460px -455px; width: 114px; height: 90px; } -.slim_armor_special_fallHealer { +.slim_armor_armoire_royalRobes { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -910px -1356px; + background-position: -1001px -1180px; width: 90px; height: 90px; } -.slim_armor_special_fallMage { +.slim_armor_armoire_shepherdRobes { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: 0px 0px; - width: 120px; + background-position: -910px -1180px; + width: 90px; height: 90px; } -.slim_armor_special_fallRogue { +.slim_armor_armoire_stripedSwimsuit { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -637px -1180px; + width: 90px; + height: 90px; +} +.slim_armor_armoire_swanDancerTutu { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -530px -634px; + width: 99px; + height: 90px; +} +.slim_armor_armoire_vermilionArcherArmor { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: 0px -1180px; + width: 90px; + height: 90px; +} +.slim_armor_armoire_vikingTunic { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1181px -637px; + width: 90px; + height: 90px; +} +.slim_armor_armoire_woodElfArmor { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1181px -546px; + width: 90px; + height: 90px; +} +.slim_armor_armoire_wovenRobes { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -472px 0px; + width: 114px; + height: 90px; +} +.slim_armor_armoire_yellowPartyDress { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1181px -455px; + width: 90px; + height: 90px; +} +.weapon_armoire_barristerGavel { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1181px -364px; + width: 90px; + height: 90px; +} +.weapon_armoire_basicCrossbow { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -455px -1089px; + width: 90px; + height: 90px; +} +.weapon_armoire_basicLongbow { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -455px -816px; + width: 90px; + height: 90px; +} +.weapon_armoire_batWand { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); background-position: -817px -546px; - width: 105px; - height: 90px; -} -.slim_armor_special_fallWarrior { - background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1183px -1356px; width: 90px; height: 90px; } -.weapon_special_fall2015Healer { +.weapon_armoire_battleAxe { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -582px -810px; + background-position: -91px -816px; + width: 90px; + height: 90px; +} +.weapon_armoire_blueLongbow { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -817px 0px; + width: 90px; + height: 90px; +} +.weapon_armoire_cannon { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1092px -1271px; + width: 90px; + height: 90px; +} +.weapon_armoire_coachDriversWhip { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -242px -91px; + width: 114px; + height: 90px; +} +.weapon_armoire_cobblersHammer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -546px -1180px; + width: 90px; + height: 90px; +} +.weapon_armoire_crystalCrescentStaff { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -455px -1180px; + width: 90px; + height: 90px; +} +.weapon_armoire_festivalFirecracker { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1090px -819px; + width: 90px; + height: 90px; +} +.weapon_armoire_flutteryArmy { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -587px -182px; + width: 114px; + height: 90px; +} +.weapon_armoire_forestFungusStaff { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1272px -819px; + width: 90px; + height: 90px; +} +.weapon_armoire_glassblowersBlowpipe { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -115px -182px; + width: 114px; + height: 90px; +} +.weapon_armoire_glowingSpear { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1363px -910px; + width: 90px; + height: 90px; +} +.weapon_armoire_goldWingStaff { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -282px -725px; + width: 90px; + height: 90px; +} +.weapon_armoire_habiticanDiploma { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -373px -725px; + width: 90px; + height: 90px; +} +.weapon_armoire_hoofClippers { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -464px -725px; + width: 90px; + height: 90px; +} +.weapon_armoire_ironCrook { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -555px -725px; + width: 90px; + height: 90px; +} +.weapon_armoire_jesterBaton { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -646px -725px; + width: 90px; + height: 90px; +} +.weapon_armoire_lamplighter { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -702px -88px; + width: 114px; + height: 87px; +} +.weapon_armoire_lunarSceptre { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -817px -91px; + width: 90px; + height: 90px; +} +.weapon_armoire_merchantsDisplayTray { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -817px -182px; + width: 90px; + height: 90px; +} +.weapon_armoire_miningPickax { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -817px -273px; + width: 90px; + height: 90px; +} +.weapon_armoire_mythmakerSword { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -817px -364px; + width: 90px; + height: 90px; +} +.weapon_armoire_ogreClub { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -817px -455px; + width: 90px; + height: 90px; +} +.weapon_armoire_poisonedGoblet { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -230px -182px; + width: 114px; + height: 90px; +} +.weapon_armoire_rancherLasso { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -817px -637px; + width: 90px; + height: 90px; +} +.weapon_armoire_sandySpade { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: 0px -816px; + width: 90px; + height: 90px; +} +.weapon_armoire_scepterOfDiamonds { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: 0px -364px; + width: 114px; + height: 90px; +} +.weapon_armoire_shepherdsCrook { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -182px -816px; + width: 90px; + height: 90px; +} +.weapon_armoire_vermilionArcherBow { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -273px -816px; + width: 90px; + height: 90px; +} +.weapon_armoire_wandOfHearts { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -364px -816px; + width: 90px; + height: 90px; +} +.weapon_armoire_weaversComb { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -115px -364px; + width: 114px; + height: 90px; +} +.weapon_armoire_woodElfStaff { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -546px -816px; + width: 90px; + height: 90px; +} +.armor_special_bardRobes { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -637px -816px; + width: 90px; + height: 90px; +} +.broad_armor_healer_1 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -728px -816px; + width: 90px; + height: 90px; +} +.broad_armor_healer_2 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -908px 0px; + width: 90px; + height: 90px; +} +.broad_armor_healer_3 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -908px -91px; + width: 90px; + height: 90px; +} +.broad_armor_healer_4 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -908px -182px; + width: 90px; + height: 90px; +} +.broad_armor_healer_5 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -908px -273px; + width: 90px; + height: 90px; +} +.broad_armor_rogue_1 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -908px -364px; + width: 90px; + height: 90px; +} +.broad_armor_rogue_2 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -908px -455px; + width: 90px; + height: 90px; +} +.broad_armor_rogue_3 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -908px -546px; + width: 90px; + height: 90px; +} +.broad_armor_rogue_4 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -908px -637px; + width: 90px; + height: 90px; +} +.broad_armor_rogue_5 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -908px -728px; + width: 90px; + height: 90px; +} +.broad_armor_special_2 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: 0px -907px; + width: 90px; + height: 90px; +} +.broad_armor_special_bardRobes { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -91px -907px; + width: 90px; + height: 90px; +} +.broad_armor_special_dandySuit { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -182px -907px; + width: 90px; + height: 90px; +} +.broad_armor_special_finnedOceanicArmor { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -273px -907px; + width: 90px; + height: 90px; +} +.broad_armor_special_lunarWarriorArmor { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -364px -907px; + width: 90px; + height: 90px; +} +.broad_armor_special_mammothRiderArmor { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -455px -907px; + width: 90px; + height: 90px; +} +.broad_armor_special_nomadsCuirass { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -546px -907px; + width: 90px; + height: 90px; +} +.broad_armor_special_pageArmor { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -637px -907px; + width: 90px; + height: 90px; +} +.broad_armor_special_pyromancersRobes { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -728px -907px; + width: 90px; + height: 90px; +} +.broad_armor_special_roguishRainbowMessengerRobes { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -819px -907px; + width: 90px; + height: 90px; +} +.broad_armor_special_samuraiArmor { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -999px 0px; + width: 90px; + height: 90px; +} +.broad_armor_special_sneakthiefRobes { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -999px -91px; + width: 90px; + height: 90px; +} +.broad_armor_special_snowSovereignRobes { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -999px -182px; + width: 90px; + height: 90px; +} +.broad_armor_special_turkeyArmorBase { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -357px 0px; + width: 114px; + height: 90px; +} +.broad_armor_warrior_1 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -999px -364px; + width: 90px; + height: 90px; +} +.broad_armor_warrior_2 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -999px -455px; + width: 90px; + height: 90px; +} +.broad_armor_warrior_3 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -999px -546px; + width: 90px; + height: 90px; +} +.broad_armor_warrior_4 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -999px -637px; + width: 90px; + height: 90px; +} +.broad_armor_warrior_5 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -999px -728px; + width: 90px; + height: 90px; +} +.broad_armor_wizard_1 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -999px -819px; + width: 90px; + height: 90px; +} +.broad_armor_wizard_2 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: 0px -998px; + width: 90px; + height: 90px; +} +.broad_armor_wizard_3 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -91px -998px; + width: 90px; + height: 90px; +} +.broad_armor_wizard_4 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -182px -998px; + width: 90px; + height: 90px; +} +.broad_armor_wizard_5 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -273px -998px; + width: 90px; + height: 90px; +} +.shop_armor_healer_1 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1523px -1104px; + width: 68px; + height: 68px; +} +.shop_armor_healer_2 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1523px -1173px; + width: 68px; + height: 68px; +} +.shop_armor_healer_3 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1523px -1242px; + width: 68px; + height: 68px; +} +.shop_armor_healer_4 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1523px -1311px; + width: 68px; + height: 68px; +} +.shop_armor_healer_5 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1523px -1380px; + width: 68px; + height: 68px; +} +.shop_armor_rogue_1 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: 0px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_rogue_2 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -69px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_rogue_3 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1661px -552px; + width: 68px; + height: 68px; +} +.shop_armor_rogue_4 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -207px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_rogue_5 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -276px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_0 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -345px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_1 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -414px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_2 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -483px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_bardRobes { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -552px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_dandySuit { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -621px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_finnedOceanicArmor { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -690px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_lunarWarriorArmor { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -759px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_mammothRiderArmor { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -828px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_nomadsCuirass { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -897px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_pageArmor { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -966px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_pyromancersRobes { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1661px -414px; + width: 68px; + height: 68px; +} +.shop_armor_special_roguishRainbowMessengerRobes { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1661px -483px; + width: 68px; + height: 68px; +} +.shop_armor_special_samuraiArmor { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1363px -1092px; + width: 68px; + height: 68px; +} +.shop_armor_special_sneakthiefRobes { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1363px -1161px; + width: 68px; + height: 68px; +} +.shop_armor_special_snowSovereignRobes { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1363px -1230px; + width: 68px; + height: 68px; +} +.shop_armor_special_turkeyArmorBase { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1272px -1183px; + width: 68px; + height: 68px; +} +.shop_armor_warrior_1 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1181px -1092px; + width: 68px; + height: 68px; +} +.shop_armor_warrior_2 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1090px -1001px; + width: 68px; + height: 68px; +} +.shop_armor_warrior_3 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -999px -910px; + width: 68px; + height: 68px; +} +.shop_armor_warrior_4 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -908px -819px; + width: 68px; + height: 68px; +} +.shop_armor_warrior_5 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -817px -728px; + width: 68px; + height: 68px; +} +.shop_armor_wizard_1 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -737px -725px; + width: 68px; + height: 68px; +} +.shop_armor_wizard_2 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -819px -816px; + width: 68px; + height: 68px; +} +.shop_armor_wizard_3 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -910px -907px; + width: 68px; + height: 68px; +} +.shop_armor_wizard_4 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1001px -998px; + width: 68px; + height: 68px; +} +.shop_armor_wizard_5 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1092px -1089px; + width: 68px; + height: 68px; +} +.slim_armor_healer_1 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -364px -998px; + width: 90px; + height: 90px; +} +.slim_armor_healer_2 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -455px -998px; + width: 90px; + height: 90px; +} +.slim_armor_healer_3 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -546px -998px; + width: 90px; + height: 90px; +} +.slim_armor_healer_4 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -637px -998px; + width: 90px; + height: 90px; +} +.slim_armor_healer_5 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -728px -998px; + width: 90px; + height: 90px; +} +.slim_armor_rogue_1 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -819px -998px; + width: 90px; + height: 90px; +} +.slim_armor_rogue_2 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -910px -998px; + width: 90px; + height: 90px; +} +.slim_armor_rogue_3 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1090px 0px; + width: 90px; + height: 90px; +} +.slim_armor_rogue_4 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1090px -91px; + width: 90px; + height: 90px; +} +.slim_armor_rogue_5 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1090px -182px; + width: 90px; + height: 90px; +} +.slim_armor_special_2 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1090px -273px; + width: 90px; + height: 90px; +} +.slim_armor_special_bardRobes { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1090px -364px; + width: 90px; + height: 90px; +} +.slim_armor_special_dandySuit { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1090px -455px; + width: 90px; + height: 90px; +} +.slim_armor_special_finnedOceanicArmor { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1090px -546px; + width: 90px; + height: 90px; +} +.slim_armor_special_lunarWarriorArmor { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1090px -637px; + width: 90px; + height: 90px; +} +.slim_armor_special_mammothRiderArmor { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1090px -728px; + width: 90px; + height: 90px; +} +.slim_armor_special_nomadsCuirass { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -724px -634px; + width: 90px; + height: 90px; +} +.slim_armor_special_pageArmor { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1090px -910px; + width: 90px; + height: 90px; +} +.slim_armor_special_pyromancersRobes { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: 0px -1089px; + width: 90px; + height: 90px; +} +.slim_armor_special_roguishRainbowMessengerRobes { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -91px -1089px; + width: 90px; + height: 90px; +} +.slim_armor_special_samuraiArmor { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -182px -1089px; + width: 90px; + height: 90px; +} +.slim_armor_special_sneakthiefRobes { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -273px -1089px; + width: 90px; + height: 90px; +} +.slim_armor_special_snowSovereignRobes { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -364px -1089px; + width: 90px; + height: 90px; +} +.slim_armor_special_turkeyArmorBase { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -230px -364px; + width: 114px; + height: 90px; +} +.slim_armor_warrior_1 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -546px -1089px; + width: 90px; + height: 90px; +} +.slim_armor_warrior_2 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -637px -1089px; + width: 90px; + height: 90px; +} +.slim_armor_warrior_3 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -728px -1089px; + width: 90px; + height: 90px; +} +.slim_armor_warrior_4 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -819px -1089px; + width: 90px; + height: 90px; +} +.slim_armor_warrior_5 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -910px -1089px; + width: 90px; + height: 90px; +} +.slim_armor_wizard_1 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1001px -1089px; + width: 90px; + height: 90px; +} +.slim_armor_wizard_2 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1181px 0px; + width: 90px; + height: 90px; +} +.slim_armor_wizard_3 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1181px -91px; + width: 90px; + height: 90px; +} +.slim_armor_wizard_4 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1181px -182px; + width: 90px; + height: 90px; +} +.slim_armor_wizard_5 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1181px -273px; + width: 90px; + height: 90px; +} +.back_special_aetherCloak { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -345px -364px; + width: 114px; + height: 90px; +} +.back_special_snowdriftVeil { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -115px -546px; + width: 114px; + height: 87px; +} +.back_special_turkeyTailBase { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -230px -455px; + width: 114px; + height: 90px; +} +.shop_back_special_aetherCloak { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1454px -966px; + width: 68px; + height: 68px; +} +.shop_back_special_snowdriftVeil { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1454px -1035px; + width: 68px; + height: 68px; +} +.shop_back_special_turkeyTailBase { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1454px -1104px; + width: 68px; + height: 68px; +} +.body_special_aetherAmulet { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -345px -455px; + width: 114px; + height: 90px; +} +.shop_body_special_aetherAmulet { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1454px -1242px; + width: 68px; + height: 68px; +} +.broad_armor_special_birthday { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1181px -728px; + width: 90px; + height: 90px; +} +.broad_armor_special_birthday2015 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1181px -819px; + width: 90px; + height: 90px; +} +.broad_armor_special_birthday2016 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1181px -910px; + width: 90px; + height: 90px; +} +.broad_armor_special_birthday2017 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1181px -1001px; + width: 90px; + height: 90px; +} +.broad_armor_special_birthday2018 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -587px 0px; + width: 114px; + height: 90px; +} +.shop_armor_special_birthday { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -276px -1431px; + width: 68px; + height: 68px; +} +.shop_armor_special_birthday2015 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -345px -1431px; + width: 68px; + height: 68px; +} +.shop_armor_special_birthday2016 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -414px -1431px; + width: 68px; + height: 68px; +} +.shop_armor_special_birthday2017 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -483px -1431px; + width: 68px; + height: 68px; +} +.shop_armor_special_birthday2018 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -552px -1431px; + width: 68px; + height: 68px; +} +.slim_armor_special_birthday { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -91px -1180px; + width: 90px; + height: 90px; +} +.slim_armor_special_birthday2015 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -182px -1180px; + width: 90px; + height: 90px; +} +.slim_armor_special_birthday2016 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -273px -1180px; + width: 90px; + height: 90px; +} +.slim_armor_special_birthday2017 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -364px -1180px; + width: 90px; + height: 90px; +} +.slim_armor_special_birthday2018 { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -587px -91px; + width: 114px; + height: 90px; +} +.broad_armor_special_fall2015Healer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -630px -634px; width: 93px; height: 90px; } -.weapon_special_fall2015Mage { +.broad_armor_special_fall2015Mage { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -817px -91px; + background-position: -318px -634px; width: 105px; height: 90px; } -.weapon_special_fall2015Rogue { +.broad_armor_special_fall2015Rogue { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -1469px 0px; + background-position: -728px -1180px; width: 90px; height: 90px; } -.weapon_special_fall2015Warrior { +.broad_armor_special_fall2015Warrior { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: -910px -1174px; + background-position: -819px -1180px; width: 90px; height: 90px; } -.weapon_special_fall2016Healer { +.broad_armor_special_fall2016Healer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -587px -273px; + width: 114px; + height: 87px; +} +.broad_armor_special_fall2016Mage { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -345px -546px; + width: 114px; + height: 87px; +} +.broad_armor_special_fall2016Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -587px -361px; + width: 114px; + height: 87px; +} +.broad_armor_special_fall2016Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -587px -449px; + width: 114px; + height: 87px; +} +.broad_armor_special_fall2017Healer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -115px -455px; + width: 114px; + height: 90px; +} +.broad_armor_special_fall2017Mage { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: 0px -455px; + width: 114px; + height: 90px; +} +.broad_armor_special_fall2017Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: 0px -91px; + width: 114px; + height: 90px; +} +.broad_armor_special_fall2017Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -472px -182px; + width: 114px; + height: 90px; +} +.broad_armor_special_fallHealer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1272px -455px; + width: 90px; + height: 90px; +} +.broad_armor_special_fallMage { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -121px 0px; + width: 120px; + height: 90px; +} +.broad_armor_special_fallRogue { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -424px -634px; + width: 105px; + height: 90px; +} +.broad_armor_special_fallWarrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1272px -728px; + width: 90px; + height: 90px; +} +.head_special_fall2015Healer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: 0px -725px; + width: 93px; + height: 90px; +} +.head_special_fall2015Mage { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -212px -634px; + width: 105px; + height: 90px; +} +.head_special_fall2015Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1272px -1001px; + width: 90px; + height: 90px; +} +.head_special_fall2015Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1272px -1092px; + width: 90px; + height: 90px; +} +.head_special_fall2016Healer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -230px -546px; + width: 114px; + height: 87px; +} +.head_special_fall2016Mage { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -702px -352px; + width: 114px; + height: 87px; +} +.head_special_fall2016Rogue { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); background-position: -460px -546px; width: 114px; height: 87px; } -.weapon_special_fall2016Mage { +.head_special_fall2016Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -575px -546px; + width: 114px; + height: 87px; +} +.head_special_fall2017Healer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -345px -273px; + width: 114px; + height: 90px; +} +.head_special_fall2017Mage { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -230px -273px; + width: 114px; + height: 90px; +} +.head_special_fall2017Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -115px -273px; + width: 114px; + height: 90px; +} +.head_special_fall2017Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -357px -182px; + width: 114px; + height: 90px; +} +.head_special_fallHealer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -728px -1271px; + width: 90px; + height: 90px; +} +.head_special_fallMage { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: 0px 0px; + width: 120px; + height: 90px; +} +.head_special_fallRogue { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -106px -634px; + width: 105px; + height: 90px; +} +.head_special_fallWarrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1001px -1271px; + width: 90px; + height: 90px; +} +.shield_special_fall2015Healer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -94px -725px; + width: 93px; + height: 90px; +} +.shield_special_fall2015Rogue { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); background-position: 0px -634px; - width: 114px; - height: 87px; + width: 105px; + height: 90px; } -.weapon_special_fall2016Rogue { +.shield_special_fall2015Warrior { background-image: url('~assets/images/sprites/spritesmith-main-6.png'); - background-position: 0px -722px; + background-position: -1363px 0px; + width: 90px; + height: 90px; +} +.shield_special_fall2016Healer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -702px 0px; width: 114px; height: 87px; } +.shield_special_fall2016Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -702px -176px; + width: 114px; + height: 87px; +} +.shield_special_fall2016Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -702px -264px; + width: 114px; + height: 87px; +} +.shield_special_fall2017Healer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -242px 0px; + width: 114px; + height: 90px; +} +.shield_special_fall2017Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -472px -91px; + width: 114px; + height: 90px; +} +.shield_special_fall2017Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -472px -273px; + width: 114px; + height: 90px; +} +.shield_special_fallHealer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1363px -637px; + width: 90px; + height: 90px; +} +.shield_special_fallRogue { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -702px -531px; + width: 105px; + height: 90px; +} +.shield_special_fallWarrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1363px -819px; + width: 90px; + height: 90px; +} +.shop_armor_special_fall2015Healer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1035px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_fall2015Mage { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1104px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_fall2015Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1173px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_fall2015Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1242px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_fall2016Healer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1311px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_fall2016Mage { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1380px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_fall2016Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1449px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_fall2016Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1518px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_fall2017Healer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1592px 0px; + width: 68px; + height: 68px; +} +.shop_armor_special_fall2017Mage { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1592px -69px; + width: 68px; + height: 68px; +} +.shop_armor_special_fall2017Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1592px -138px; + width: 68px; + height: 68px; +} +.shop_armor_special_fall2017Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1592px -207px; + width: 68px; + height: 68px; +} +.shop_armor_special_fallHealer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1592px -276px; + width: 68px; + height: 68px; +} +.shop_armor_special_fallMage { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1592px -345px; + width: 68px; + height: 68px; +} +.shop_armor_special_fallRogue { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1592px -414px; + width: 68px; + height: 68px; +} +.shop_armor_special_fallWarrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1592px -483px; + width: 68px; + height: 68px; +} +.shop_head_special_fall2015Healer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1592px -552px; + width: 68px; + height: 68px; +} +.shop_head_special_fall2015Mage { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1592px -621px; + width: 68px; + height: 68px; +} +.shop_head_special_fall2015Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1592px -690px; + width: 68px; + height: 68px; +} +.shop_head_special_fall2015Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1592px -759px; + width: 68px; + height: 68px; +} +.shop_head_special_fall2016Healer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1592px -828px; + width: 68px; + height: 68px; +} +.shop_head_special_fall2016Mage { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1592px -897px; + width: 68px; + height: 68px; +} +.shop_head_special_fall2016Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1592px -966px; + width: 68px; + height: 68px; +} +.shop_head_special_fall2016Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1592px -1035px; + width: 68px; + height: 68px; +} +.shop_head_special_fall2017Healer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1592px -1104px; + width: 68px; + height: 68px; +} +.shop_head_special_fall2017Mage { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1592px -1173px; + width: 68px; + height: 68px; +} +.shop_head_special_fall2017Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1592px -1242px; + width: 68px; + height: 68px; +} +.shop_head_special_fall2017Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1592px -1311px; + width: 68px; + height: 68px; +} +.shop_head_special_fallHealer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1592px -1380px; + width: 68px; + height: 68px; +} +.shop_head_special_fallMage { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1592px -1449px; + width: 68px; + height: 68px; +} +.shop_head_special_fallRogue { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: 0px -1569px; + width: 68px; + height: 68px; +} +.shop_head_special_fallWarrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -69px -1569px; + width: 68px; + height: 68px; +} +.shop_shield_special_fall2015Healer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -138px -1569px; + width: 68px; + height: 68px; +} +.shop_shield_special_fall2015Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -207px -1569px; + width: 68px; + height: 68px; +} +.shop_shield_special_fall2015Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -276px -1569px; + width: 68px; + height: 68px; +} +.shop_shield_special_fall2016Healer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -345px -1569px; + width: 68px; + height: 68px; +} +.shop_shield_special_fall2016Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -414px -1569px; + width: 68px; + height: 68px; +} +.shop_shield_special_fall2016Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -483px -1569px; + width: 68px; + height: 68px; +} +.shop_shield_special_fall2017Healer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -552px -1569px; + width: 68px; + height: 68px; +} +.shop_shield_special_fall2017Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -621px -1569px; + width: 68px; + height: 68px; +} +.shop_shield_special_fall2017Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -690px -1569px; + width: 68px; + height: 68px; +} +.shop_shield_special_fallHealer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -759px -1569px; + width: 68px; + height: 68px; +} +.shop_shield_special_fallRogue { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -828px -1569px; + width: 68px; + height: 68px; +} +.shop_shield_special_fallWarrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -897px -1569px; + width: 68px; + height: 68px; +} +.shop_weapon_special_fall2015Healer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -966px -1569px; + width: 68px; + height: 68px; +} +.shop_weapon_special_fall2015Mage { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1035px -1569px; + width: 68px; + height: 68px; +} +.shop_weapon_special_fall2015Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1104px -1569px; + width: 68px; + height: 68px; +} +.shop_weapon_special_fall2015Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1173px -1569px; + width: 68px; + height: 68px; +} +.shop_weapon_special_fall2016Healer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1242px -1569px; + width: 68px; + height: 68px; +} +.shop_weapon_special_fall2016Mage { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1311px -1569px; + width: 68px; + height: 68px; +} +.shop_weapon_special_fall2016Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1380px -1569px; + width: 68px; + height: 68px; +} +.shop_weapon_special_fall2016Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1449px -1569px; + width: 68px; + height: 68px; +} +.shop_weapon_special_fall2017Healer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1518px -1569px; + width: 68px; + height: 68px; +} +.shop_weapon_special_fall2017Mage { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1587px -1569px; + width: 68px; + height: 68px; +} +.shop_weapon_special_fall2017Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1661px 0px; + width: 68px; + height: 68px; +} +.shop_weapon_special_fall2017Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1661px -69px; + width: 68px; + height: 68px; +} +.shop_weapon_special_fallHealer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1661px -138px; + width: 68px; + height: 68px; +} +.shop_weapon_special_fallMage { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1661px -207px; + width: 68px; + height: 68px; +} +.shop_weapon_special_fallRogue { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1661px -276px; + width: 68px; + height: 68px; +} +.shop_weapon_special_fallWarrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1661px -345px; + width: 68px; + height: 68px; +} +.slim_armor_special_fall2015Healer { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -188px -725px; + width: 93px; + height: 90px; +} +.slim_armor_special_fall2015Mage { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -702px -440px; + width: 105px; + height: 90px; +} +.slim_armor_special_fall2015Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -999px -273px; + width: 90px; + height: 90px; +} +.slim_armor_special_fall2015Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-6.png'); + background-position: -1363px -1001px; + width: 90px; + height: 90px; +} diff --git a/website/client/assets/css/sprites/spritesmith-main-7.css b/website/client/assets/css/sprites/spritesmith-main-7.css index b31eb666a7..426e40654e 100644 --- a/website/client/assets/css/sprites/spritesmith-main-7.css +++ b/website/client/assets/css/sprites/spritesmith-main-7.css @@ -1,2334 +1,2316 @@ +.slim_armor_special_fall2016Healer { + background-image: url('~assets/images/sprites/spritesmith-main-7.png'); + background-position: -115px -667px; + width: 114px; + height: 87px; +} +.slim_armor_special_fall2016Mage { + background-image: url('~assets/images/sprites/spritesmith-main-7.png'); + background-position: -802px -88px; + width: 114px; + height: 87px; +} +.slim_armor_special_fall2016Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-7.png'); + background-position: -802px 0px; + width: 114px; + height: 87px; +} +.slim_armor_special_fall2016Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-7.png'); + background-position: 0px -667px; + width: 114px; + height: 87px; +} +.slim_armor_special_fall2017Healer { + background-image: url('~assets/images/sprites/spritesmith-main-7.png'); + background-position: -230px -394px; + width: 114px; + height: 90px; +} +.slim_armor_special_fall2017Mage { + background-image: url('~assets/images/sprites/spritesmith-main-7.png'); + background-position: -345px -182px; + width: 114px; + height: 90px; +} +.slim_armor_special_fall2017Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-7.png'); + background-position: 0px -303px; + width: 114px; + height: 90px; +} +.slim_armor_special_fall2017Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-7.png'); + background-position: -460px -91px; + width: 114px; + height: 90px; +} +.slim_armor_special_fallHealer { + background-image: url('~assets/images/sprites/spritesmith-main-7.png'); + background-position: -546px -1125px; + width: 90px; + height: 90px; +} +.slim_armor_special_fallMage { + background-image: url('~assets/images/sprites/spritesmith-main-7.png'); + background-position: -121px -121px; + width: 120px; + height: 90px; +} +.slim_armor_special_fallRogue { + background-image: url('~assets/images/sprites/spritesmith-main-7.png'); + background-position: -690px -576px; + width: 105px; + height: 90px; +} +.slim_armor_special_fallWarrior { + background-image: url('~assets/images/sprites/spritesmith-main-7.png'); + background-position: -910px -1125px; + width: 90px; + height: 90px; +} +.weapon_special_fall2015Healer { + background-image: url('~assets/images/sprites/spritesmith-main-7.png'); + background-position: -840px -846px; + width: 93px; + height: 90px; +} +.weapon_special_fall2015Mage { + background-image: url('~assets/images/sprites/spritesmith-main-7.png'); + background-position: -690px -303px; + width: 105px; + height: 90px; +} +.weapon_special_fall2015Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-7.png'); + background-position: -182px -1216px; + width: 90px; + height: 90px; +} +.weapon_special_fall2015Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-7.png'); + background-position: -91px -1216px; + width: 90px; + height: 90px; +} +.weapon_special_fall2016Healer { + background-image: url('~assets/images/sprites/spritesmith-main-7.png'); + background-position: -230px -667px; + width: 114px; + height: 87px; +} +.weapon_special_fall2016Mage { + background-image: url('~assets/images/sprites/spritesmith-main-7.png'); + background-position: -345px -667px; + width: 114px; + height: 87px; +} +.weapon_special_fall2016Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-7.png'); + background-position: -460px -667px; + width: 114px; + height: 87px; +} .weapon_special_fall2016Warrior { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -112px -546px; + background-position: -575px -667px; width: 114px; height: 87px; } .weapon_special_fall2017Healer { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -230px -273px; + background-position: -115px -303px; width: 114px; height: 90px; } .weapon_special_fall2017Mage { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -345px -455px; + background-position: -230px -303px; width: 114px; height: 90px; } .weapon_special_fall2017Rogue { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -230px -364px; + background-position: -345px -303px; width: 114px; height: 90px; } .weapon_special_fall2017Warrior { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -242px -91px; + background-position: -460px 0px; width: 114px; height: 90px; } .weapon_special_fallHealer { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -978px -546px; + background-position: 0px -1216px; width: 90px; height: 90px; } .weapon_special_fallMage { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: 0px 0px; + background-position: 0px -212px; width: 120px; height: 90px; } .weapon_special_fallRogue { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -424px -637px; + background-position: -690px -394px; width: 105px; height: 90px; } .weapon_special_fallWarrior { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -978px -637px; + background-position: -1284px -1001px; width: 90px; height: 90px; } .broad_armor_special_gaymerx { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -91px -916px; + background-position: -1284px -910px; width: 90px; height: 90px; } .head_special_gaymerx { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -182px -916px; + background-position: -1284px -819px; width: 90px; height: 90px; } .shop_armor_special_gaymerx { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -414px -1578px; + background-position: -1604px -207px; width: 68px; height: 68px; } .shop_head_special_gaymerx { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1640px -1173px; + background-position: -1604px -138px; width: 68px; height: 68px; } .slim_armor_special_gaymerx { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -273px -1007px; + background-position: -1284px -728px; width: 90px; height: 90px; } .back_mystery_201402 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -364px -1007px; + background-position: -1284px -637px; width: 90px; height: 90px; } .broad_armor_mystery_201402 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -637px -1007px; + background-position: -1284px -546px; width: 90px; height: 90px; } .head_mystery_201402 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -728px -1007px; + background-position: -1284px -455px; width: 90px; height: 90px; } .shop_armor_mystery_201402 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1640px -552px; + background-position: -897px -1467px; width: 68px; height: 68px; } .shop_back_mystery_201402 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -759px -1509px; + background-position: -828px -1467px; width: 68px; height: 68px; } .shop_head_mystery_201402 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1571px -483px; + background-position: -759px -1467px; width: 68px; height: 68px; } .shop_set_mystery_201402 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1571px -414px; + background-position: -483px -1467px; width: 68px; height: 68px; } .slim_armor_mystery_201402 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1251px -1001px; + background-position: -1284px -364px; width: 90px; height: 90px; } .broad_armor_mystery_201403 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -182px -1189px; + background-position: -1284px -273px; width: 90px; height: 90px; } .headAccessory_mystery_201403 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -273px -1189px; + background-position: -1284px -182px; width: 90px; height: 90px; } .shop_armor_mystery_201403 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1242px -1440px; + background-position: 0px -1467px; width: 68px; height: 68px; } .shop_headAccessory_mystery_201403 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1173px -1440px; + background-position: -1535px -759px; width: 68px; height: 68px; } .shop_set_mystery_201403 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -828px -1440px; + background-position: -1535px -690px; width: 68px; height: 68px; } .slim_armor_mystery_201403 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -364px -1189px; + background-position: -273px -1125px; width: 90px; height: 90px; } .back_mystery_201404 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -546px -1189px; + background-position: -1008px -364px; width: 90px; height: 90px; } .headAccessory_mystery_201404 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -728px -1189px; + background-position: -1102px -455px; width: 90px; height: 90px; } .shop_back_mystery_201404 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -345px -1440px; + background-position: -1311px -1467px; width: 68px; height: 68px; } .shop_headAccessory_mystery_201404 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -276px -1440px; + background-position: -1242px -1467px; width: 68px; height: 68px; } .shop_set_mystery_201404 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: 0px -1440px; + background-position: -1173px -1467px; width: 68px; height: 68px; } .broad_armor_mystery_201405 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -819px -1189px; + background-position: -637px -1034px; width: 90px; height: 90px; } .head_mystery_201405 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -910px -1189px; + background-position: -546px -1034px; width: 90px; height: 90px; } .shop_armor_mystery_201405 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1502px -966px; + background-position: -1673px -276px; width: 68px; height: 68px; } .shop_head_mystery_201405 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1502px -897px; + background-position: -803px -1307px; width: 68px; height: 68px; } .shop_set_mystery_201405 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1502px -828px; + background-position: -1535px -1380px; width: 68px; height: 68px; } .slim_armor_mystery_201405 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1001px -1189px; + background-position: -1375px -1001px; width: 90px; height: 90px; } .broad_armor_mystery_201406 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -793px -618px; + background-position: -91px -846px; width: 90px; height: 96px; } .head_mystery_201406 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: 0px -728px; + background-position: 0px -846px; width: 90px; height: 96px; } .shop_armor_mystery_201406 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1502px -483px; + background-position: -1466px -690px; width: 68px; height: 68px; } .shop_head_mystery_201406 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1502px -207px; + background-position: -1466px -966px; width: 68px; height: 68px; } .shop_set_mystery_201406 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1502px -138px; + background-position: -1535px -276px; width: 68px; height: 68px; } .slim_armor_mystery_201406 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -91px -728px; + background-position: -917px -724px; width: 90px; height: 96px; } .broad_armor_mystery_201407 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1342px -182px; + background-position: -1274px -1216px; width: 90px; height: 90px; } .head_mystery_201407 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1342px -364px; + background-position: -1284px -1092px; width: 90px; height: 90px; } .shop_armor_mystery_201407 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -828px -1371px; + background-position: -1673px -759px; width: 68px; height: 68px; } .shop_head_mystery_201407 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -552px -1371px; + background-position: -1673px -828px; width: 68px; height: 68px; } .shop_set_mystery_201407 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -483px -1371px; + background-position: -527px -1307px; width: 68px; height: 68px; } .slim_armor_mystery_201407 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -455px -1280px; + background-position: -1284px -91px; width: 90px; height: 90px; } .broad_armor_mystery_201408 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -728px -1280px; + background-position: -1284px 0px; width: 90px; height: 90px; } .head_mystery_201408 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -546px -1280px; + background-position: -1183px -1125px; width: 90px; height: 90px; } .shop_armor_mystery_201408 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1433px -621px; + background-position: -276px -1398px; width: 68px; height: 68px; } .shop_head_mystery_201408 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1433px -690px; + background-position: -1173px -1398px; width: 68px; height: 68px; } .shop_set_mystery_201408 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1433px -966px; + background-position: -1449px -1398px; width: 68px; height: 68px; } .slim_armor_mystery_201408 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1342px -910px; + background-position: -1001px -1125px; width: 90px; height: 90px; } .broad_armor_mystery_201409 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1342px -819px; + background-position: -728px -1125px; width: 90px; height: 90px; } .headAccessory_mystery_201409 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1342px -455px; + background-position: -637px -1125px; width: 90px; height: 90px; } .shop_armor_mystery_201409 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -897px -1371px; + background-position: -138px -1536px; width: 68px; height: 68px; } .shop_headAccessory_mystery_201409 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1502px -552px; + background-position: -759px -1536px; width: 68px; height: 68px; } .shop_set_mystery_201409 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -690px -1440px; + background-position: -828px -1536px; width: 68px; height: 68px; } .slim_armor_mystery_201409 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1251px -1092px; + background-position: -455px -1125px; width: 90px; height: 90px; } .back_mystery_201410 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -276px -728px; + background-position: -600px -755px; width: 93px; height: 90px; } .broad_armor_mystery_201410 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -370px -728px; + background-position: -694px -755px; width: 93px; height: 90px; } .shop_armor_mystery_201410 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1571px -897px; + background-position: -1673px -1311px; width: 68px; height: 68px; } .shop_back_mystery_201410 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1571px -1311px; + background-position: -1673px -1380px; width: 68px; height: 68px; } .shop_set_mystery_201410 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1242px -1509px; + background-position: -458px -1307px; width: 68px; height: 68px; } .slim_armor_mystery_201410 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -746px -728px; + background-position: -464px -846px; width: 93px; height: 90px; } .head_mystery_201411 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -364px -1098px; + background-position: -364px -1125px; width: 90px; height: 90px; } .shop_head_mystery_201411 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1640px -690px; + background-position: -1286px -1307px; width: 68px; height: 68px; } .shop_set_mystery_201411 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1640px -759px; + background-position: -1466px -138px; width: 68px; height: 68px; } .shop_weapon_mystery_201411 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1640px -1035px; + background-position: -1466px -207px; width: 68px; height: 68px; } .weapon_mystery_201411 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: 0px -1007px; + background-position: -1193px -273px; width: 90px; height: 90px; } .broad_armor_mystery_201412 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1069px -910px; + background-position: -1193px -182px; width: 90px; height: 90px; } .head_mystery_201412 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1069px -546px; + background-position: -819px -1034px; width: 90px; height: 90px; } .shop_armor_mystery_201412 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -69px -1578px; + background-position: -345px -1398px; width: 68px; height: 68px; } .shop_head_mystery_201412 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -138px -1578px; + background-position: -414px -1398px; width: 68px; height: 68px; } .shop_set_mystery_201412 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -483px -1578px; + background-position: -1104px -1398px; width: 68px; height: 68px; } .slim_armor_mystery_201412 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -910px -916px; + background-position: -728px -1034px; width: 90px; height: 90px; } .broad_armor_mystery_201501 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -188px -825px; + background-position: -455px -1034px; width: 90px; height: 90px; } .head_mystery_201501 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1342px -1001px; + background-position: -364px -1034px; width: 90px; height: 90px; } .shop_armor_mystery_201501 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -966px -1371px; + background-position: -1535px -345px; width: 68px; height: 68px; } .shop_head_mystery_201501 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1035px -1371px; + background-position: -1535px -1035px; width: 68px; height: 68px; } .shop_set_mystery_201501 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1380px -1371px; + background-position: -1535px -1104px; width: 68px; height: 68px; } .slim_armor_mystery_201501 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -643px -825px; + background-position: -273px -1034px; width: 90px; height: 90px; } .headAccessory_mystery_201502 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -734px -825px; + background-position: -182px -1034px; width: 90px; height: 90px; } .shop_headAccessory_mystery_201502 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1502px 0px; + background-position: -1604px -828px; width: 68px; height: 68px; } .shop_set_mystery_201502 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1242px -1578px; + background-position: -1604px -897px; width: 68px; height: 68px; } .shop_weapon_mystery_201502 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1173px -1578px; + background-position: -69px -1536px; width: 68px; height: 68px; } .weapon_mystery_201502 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -978px -182px; + background-position: -1102px -819px; width: 90px; height: 90px; } .broad_armor_mystery_201503 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -978px -273px; + background-position: -1102px -637px; width: 90px; height: 90px; } .eyewear_mystery_201503 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -978px -364px; + background-position: -1102px -182px; width: 90px; height: 90px; } .shop_armor_mystery_201503 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1104px -1578px; + background-position: -897px -1536px; width: 68px; height: 68px; } .shop_eyewear_mystery_201503 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1035px -1578px; + background-position: -1518px -1536px; width: 68px; height: 68px; } .shop_set_mystery_201503 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -966px -1578px; + background-position: -1673px -207px; width: 68px; height: 68px; } .slim_armor_mystery_201503 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -978px -728px; + background-position: -1102px -91px; width: 90px; height: 90px; } .back_mystery_201504 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -978px -819px; + background-position: -1102px 0px; width: 90px; height: 90px; } .broad_armor_mystery_201504 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: 0px -916px; + background-position: 0px -943px; width: 90px; height: 90px; } .shop_armor_mystery_201504 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -897px -1578px; + background-position: -1673px -897px; width: 68px; height: 68px; } .shop_back_mystery_201504 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -828px -1578px; + background-position: -1673px -966px; width: 68px; height: 68px; } .shop_set_mystery_201504 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -759px -1578px; + background-position: -1673px -1242px; width: 68px; height: 68px; } .slim_armor_mystery_201504 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -364px -916px; + background-position: -1008px -819px; width: 90px; height: 90px; } .head_mystery_201505 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -455px -916px; + background-position: -182px -1125px; width: 90px; height: 90px; } .shop_head_mystery_201505 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -690px -1578px; + background-position: -690px -667px; width: 68px; height: 68px; } .shop_set_mystery_201505 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -621px -1578px; + background-position: -934px -846px; width: 68px; height: 68px; } .shop_weapon_mystery_201505 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -552px -1578px; + background-position: -182px -1307px; width: 68px; height: 68px; } .weapon_mystery_201505 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -819px -916px; + background-position: -1008px -455px; width: 90px; height: 90px; } .broad_armor_mystery_201506 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -702px -106px; + background-position: -917px 0px; width: 90px; height: 105px; } .eyewear_mystery_201506 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -702px -212px; + background-position: -690px -197px; width: 90px; height: 105px; } .shop_armor_mystery_201506 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -345px -1578px; + background-position: -872px -1307px; width: 68px; height: 68px; } .shop_eyewear_mystery_201506 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -276px -1578px; + background-position: -941px -1307px; width: 68px; height: 68px; } .shop_set_mystery_201506 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -207px -1578px; + background-position: -1217px -1307px; width: 68px; height: 68px; } .slim_armor_mystery_201506 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -702px -318px; + background-position: -690px -91px; width: 90px; height: 105px; } .back_mystery_201507 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -702px 0px; + background-position: -802px -564px; width: 90px; height: 105px; } .eyewear_mystery_201507 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -793px 0px; + background-position: -802px -458px; width: 90px; height: 105px; } .shop_back_mystery_201507 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: 0px -1578px; + background-position: -1466px -276px; width: 68px; height: 68px; } .shop_eyewear_mystery_201507 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1640px -1449px; + background-position: -1466px -552px; width: 68px; height: 68px; } .shop_set_mystery_201507 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1640px -1380px; + background-position: -1466px -621px; width: 68px; height: 68px; } .broad_armor_mystery_201508 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -884px -455px; + background-position: -1008px -273px; width: 93px; height: 90px; } .head_mystery_201508 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -884px -364px; + background-position: -652px -846px; width: 93px; height: 90px; } .shop_armor_mystery_201508 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1640px -1311px; + background-position: -1466px -1035px; width: 68px; height: 68px; } .shop_head_mystery_201508 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1640px -1242px; + background-position: -1466px -1311px; width: 68px; height: 68px; } .shop_set_mystery_201508 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1640px -1104px; + background-position: 0px -1398px; width: 68px; height: 68px; } .slim_armor_mystery_201508 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -884px -273px; + background-position: -558px -846px; width: 93px; height: 90px; } .broad_armor_mystery_201509 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -455px -1007px; + background-position: -1008px -546px; width: 90px; height: 90px; } .head_mystery_201509 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -546px -1007px; + background-position: -1008px -637px; width: 90px; height: 90px; } .shop_armor_mystery_201509 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1640px -966px; + background-position: -690px -1398px; width: 68px; height: 68px; } .shop_head_mystery_201509 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1640px -897px; + background-position: -759px -1398px; width: 68px; height: 68px; } .shop_set_mystery_201509 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1640px -828px; + background-position: -828px -1398px; width: 68px; height: 68px; } .slim_armor_mystery_201509 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -910px -1007px; + background-position: -1008px -728px; width: 90px; height: 90px; } .back_mystery_201510 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -212px -637px; + background-position: -212px -755px; width: 105px; height: 90px; } .headAccessory_mystery_201510 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -884px -91px; + background-position: -370px -846px; width: 93px; height: 90px; } .shop_back_mystery_201510 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1640px -621px; + background-position: -1535px 0px; width: 68px; height: 68px; } .shop_headAccessory_mystery_201510 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1640px -483px; + background-position: -1535px -69px; width: 68px; height: 68px; } .shop_set_mystery_201510 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1640px -414px; + background-position: -1535px -138px; width: 68px; height: 68px; } .broad_armor_mystery_201511 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1160px -364px; + background-position: -91px -943px; width: 90px; height: 90px; } .head_mystery_201511 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1160px -455px; + background-position: -182px -943px; width: 90px; height: 90px; } .shop_armor_mystery_201511 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1640px -345px; + background-position: -1535px -483px; width: 68px; height: 68px; } .shop_head_mystery_201511 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1640px -276px; + background-position: -1535px -552px; width: 68px; height: 68px; } .shop_set_mystery_201511 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1640px -207px; + background-position: -1535px -621px; width: 68px; height: 68px; } .slim_armor_mystery_201511 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1160px -819px; + background-position: -273px -943px; width: 90px; height: 90px; } .broad_armor_mystery_201512 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1160px -910px; + background-position: -364px -943px; width: 90px; height: 90px; } .head_mystery_201512 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1160px -1001px; + background-position: -455px -943px; width: 90px; height: 90px; } .shop_armor_mystery_201512 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1640px -138px; + background-position: -69px -1467px; width: 68px; height: 68px; } .shop_head_mystery_201512 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1640px -69px; + background-position: -345px -1467px; width: 68px; height: 68px; } .shop_set_mystery_201512 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1311px -1509px; + background-position: -414px -1467px; width: 68px; height: 68px; } .slim_armor_mystery_201512 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -273px -1098px; + background-position: -546px -943px; width: 90px; height: 90px; } .head_mystery_201601 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -121px 0px; + background-position: 0px -121px; width: 120px; height: 90px; } .shield_mystery_201601 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: 0px -91px; + background-position: -121px -212px; width: 120px; height: 90px; } .shop_head_mystery_201601 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1173px -1509px; + background-position: -1604px -69px; width: 68px; height: 68px; } .shop_set_mystery_201601 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1104px -1509px; + background-position: -1604px -483px; width: 68px; height: 68px; } .shop_shield_mystery_201601 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -690px -1509px; + background-position: -1604px -552px; width: 68px; height: 68px; } .back_mystery_201602 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -819px -1098px; + background-position: -637px -943px; width: 90px; height: 90px; } .head_mystery_201602 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -910px -1098px; + background-position: -728px -943px; width: 90px; height: 90px; } .shop_back_mystery_201602 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -621px -1509px; + background-position: -1604px -1173px; width: 68px; height: 68px; } .shop_head_mystery_201602 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -207px -1509px; + background-position: -1604px -1242px; width: 68px; height: 68px; } .shop_set_mystery_201602 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -138px -1509px; + background-position: 0px -1536px; width: 68px; height: 68px; } .broad_armor_mystery_201603 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1251px -91px; + background-position: -819px -943px; width: 90px; height: 90px; } .head_mystery_201603 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1251px -182px; + background-position: -910px -943px; width: 90px; height: 90px; } .shop_armor_mystery_201603 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -69px -1509px; + background-position: -207px -1536px; width: 68px; height: 68px; } .shop_head_mystery_201603 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: 0px -1509px; + background-position: -621px -1536px; width: 68px; height: 68px; } .shop_set_mystery_201603 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1571px -1380px; + background-position: -690px -1536px; width: 68px; height: 68px; } .slim_armor_mystery_201603 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1251px -546px; + background-position: -1001px -943px; width: 90px; height: 90px; } .broad_armor_mystery_201604 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -558px -728px; + background-position: -276px -846px; width: 93px; height: 90px; } .head_mystery_201604 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -464px -728px; + background-position: -182px -846px; width: 93px; height: 90px; } .shop_armor_mystery_201604 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1571px -828px; + background-position: -966px -1536px; width: 68px; height: 68px; } .shop_head_mystery_201604 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1571px -759px; + background-position: -1380px -1536px; width: 68px; height: 68px; } .shop_set_mystery_201604 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1571px -138px; + background-position: -1449px -1536px; width: 68px; height: 68px; } .slim_armor_mystery_201604 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -182px -728px; + background-position: -788px -755px; width: 93px; height: 90px; } .broad_armor_mystery_201605 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: 0px -1189px; + background-position: -1102px -273px; width: 90px; height: 90px; } .head_mystery_201605 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -91px -1189px; + background-position: -1102px -364px; width: 90px; height: 90px; } .shop_armor_mystery_201605 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -457px -546px; + background-position: -1673px -345px; width: 68px; height: 68px; } .shop_head_mystery_201605 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1311px -1440px; + background-position: -1673px -414px; width: 68px; height: 68px; } .shop_set_mystery_201605 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -759px -1440px; + background-position: 0px -1605px; width: 68px; height: 68px; } .slim_armor_mystery_201605 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -455px -1189px; + background-position: -1102px -546px; width: 90px; height: 90px; } .broad_armor_mystery_201606 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -793px -212px; + background-position: -917px -212px; width: 90px; height: 105px; } .head_mystery_201606 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -637px -1189px; + background-position: -1102px -728px; width: 90px; height: 90px; } .shop_armor_mystery_201606 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -414px -1440px; + background-position: -1673px -1035px; width: 68px; height: 68px; } .shop_head_mystery_201606 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1502px -1311px; + background-position: -1673px -1104px; width: 68px; height: 68px; } .shop_set_mystery_201606 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1502px -1242px; + background-position: -1673px -1173px; width: 68px; height: 68px; } .slim_armor_mystery_201606 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -793px -106px; + background-position: -917px -318px; width: 90px; height: 105px; } .broad_armor_mystery_201607 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1092px -1189px; + background-position: -1102px -910px; width: 90px; height: 90px; } .head_mystery_201607 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1183px -1189px; + background-position: 0px -1034px; width: 90px; height: 90px; } .shop_armor_mystery_201607 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1502px -69px; + background-position: -1673px -1449px; width: 68px; height: 68px; } .shop_head_mystery_201607 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1242px -1371px; + background-position: -1673px -1518px; width: 68px; height: 68px; } .shop_set_mystery_201607 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1173px -1371px; + background-position: -802px -670px; width: 68px; height: 68px; } .slim_armor_mystery_201607 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1342px -273px; + background-position: -91px -1034px; width: 90px; height: 90px; } .back_mystery_201608 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -884px -728px; + background-position: -506px -755px; width: 93px; height: 90px; } .head_mystery_201608 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -884px -637px; + background-position: -412px -755px; width: 93px; height: 90px; } .shop_back_mystery_201608 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -207px -1371px; + background-position: -251px -1307px; width: 68px; height: 68px; } .shop_head_mystery_201608 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -138px -1371px; + background-position: -320px -1307px; width: 68px; height: 68px; } .shop_set_mystery_201608 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -69px -1371px; + background-position: -389px -1307px; width: 68px; height: 68px; } .broad_armor_mystery_201609 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -884px -546px; + background-position: -318px -755px; width: 93px; height: 90px; } .head_mystery_201609 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -884px -182px; + background-position: -242px -212px; width: 93px; height: 90px; } .shop_armor_mystery_201609 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1433px -1173px; + background-position: -596px -1307px; width: 68px; height: 68px; } .shop_head_mystery_201609 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1433px -1104px; + background-position: -665px -1307px; width: 68px; height: 68px; } .shop_set_mystery_201609 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1433px -1035px; + background-position: -734px -1307px; width: 68px; height: 68px; } .slim_armor_mystery_201609 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -884px 0px; + background-position: -1008px 0px; width: 93px; height: 90px; } .broad_armor_mystery_201610 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -793px -318px; + background-position: -917px -624px; width: 90px; height: 99px; } .head_mystery_201610 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -793px -418px; + background-position: -917px -424px; width: 90px; height: 99px; } .shop_armor_mystery_201610 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1433px -345px; + background-position: -1010px -1307px; width: 68px; height: 68px; } .shop_head_mystery_201610 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1433px -276px; + background-position: -1079px -1307px; width: 68px; height: 68px; } .shop_set_mystery_201610 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1433px 0px; + background-position: -1148px -1307px; width: 68px; height: 68px; } .slim_armor_mystery_201610 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -793px -518px; + background-position: -917px -524px; width: 90px; height: 99px; } .head_mystery_201611 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -637px -1280px; + background-position: -910px -1034px; width: 90px; height: 90px; } .shop_head_mystery_201611 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1321px -1280px; + background-position: -1355px -1307px; width: 68px; height: 68px; } .shop_set_mystery_201611 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1252px -1280px; + background-position: -1466px 0px; width: 68px; height: 68px; } .shop_weapon_mystery_201611 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -526px -546px; + background-position: -1466px -69px; width: 68px; height: 68px; } .weapon_mystery_201611 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1001px -1280px; + background-position: -1001px -1034px; width: 90px; height: 90px; } .broad_armor_mystery_201612 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1092px -1280px; + background-position: -1092px -1034px; width: 90px; height: 90px; } .head_mystery_201612 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -910px -1280px; + background-position: -1193px 0px; width: 90px; height: 90px; } .shop_armor_mystery_201612 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1571px -69px; + background-position: -1466px -345px; width: 68px; height: 68px; } .shop_head_mystery_201612 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -595px -546px; + background-position: -1466px -414px; width: 68px; height: 68px; } .shop_set_mystery_201612 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1183px -1280px; + background-position: -1466px -483px; width: 68px; height: 68px; } .slim_armor_mystery_201612 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -819px -1280px; + background-position: -1193px -91px; width: 90px; height: 90px; } .eyewear_mystery_201701 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -702px -530px; + background-position: -917px -106px; width: 90px; height: 105px; } .shield_mystery_201701 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -702px -424px; + background-position: -802px -352px; width: 90px; height: 105px; } .shop_eyewear_mystery_201701 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1433px -69px; + background-position: -1466px -759px; width: 68px; height: 68px; } .shop_set_mystery_201701 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1433px -138px; + background-position: -1466px -828px; width: 68px; height: 68px; } .shop_shield_mystery_201701 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1433px -207px; + background-position: -1466px -897px; width: 68px; height: 68px; } .back_mystery_201702 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -364px -1280px; + background-position: -1193px -364px; width: 90px; height: 90px; } .head_mystery_201702 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -273px -1280px; + background-position: -1193px -455px; width: 90px; height: 90px; } .shop_back_mystery_201702 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1433px -414px; + background-position: -1466px -1104px; width: 68px; height: 68px; } .shop_head_mystery_201702 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1433px -483px; + background-position: -1466px -1173px; width: 68px; height: 68px; } .shop_set_mystery_201702 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1433px -552px; + background-position: -1466px -1242px; width: 68px; height: 68px; } .broad_armor_mystery_201703 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -182px -1280px; + background-position: -1193px -546px; width: 90px; height: 90px; } .head_mystery_201703 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -91px -1280px; + background-position: -1193px -637px; width: 90px; height: 90px; } .shop_armor_mystery_201703 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1433px -759px; + background-position: -69px -1398px; width: 68px; height: 68px; } .shop_head_mystery_201703 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1433px -828px; + background-position: -138px -1398px; width: 68px; height: 68px; } .shop_set_mystery_201703 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1433px -897px; + background-position: -207px -1398px; width: 68px; height: 68px; } .slim_armor_mystery_201703 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: 0px -1280px; + background-position: -1193px -728px; width: 90px; height: 90px; } .back_mystery_201704 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1342px -1183px; + background-position: -1193px -819px; width: 90px; height: 90px; } .broad_armor_mystery_201704 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1342px -1092px; + background-position: -1193px -910px; width: 90px; height: 90px; } .shop_armor_mystery_201704 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1311px -1578px; + background-position: -483px -1398px; width: 68px; height: 68px; } .shop_back_mystery_201704 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1433px -1242px; + background-position: -552px -1398px; width: 68px; height: 68px; } .shop_set_mystery_201704 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: 0px -1371px; + background-position: -621px -1398px; width: 68px; height: 68px; } .slim_armor_mystery_201704 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1342px -728px; + background-position: -1193px -1001px; width: 90px; height: 90px; } .body_mystery_201705 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1342px -637px; + background-position: 0px -1125px; width: 90px; height: 90px; } .head_mystery_201705 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1342px -546px; + background-position: -91px -1125px; width: 90px; height: 90px; } .shop_body_mystery_201705 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -276px -1371px; + background-position: -897px -1398px; width: 68px; height: 68px; } .shop_head_mystery_201705 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -345px -1371px; + background-position: -966px -1398px; width: 68px; height: 68px; } .shop_set_mystery_201705 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -414px -1371px; + background-position: -1035px -1398px; width: 68px; height: 68px; } .back_mystery_201706 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: 0px -546px; + background-position: -575px -576px; width: 111px; height: 90px; } .body_mystery_201706 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -587px -455px; + background-position: -690px 0px; width: 111px; height: 90px; } .shop_back_mystery_201706 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -621px -1371px; + background-position: -1242px -1398px; width: 68px; height: 68px; } .shop_body_mystery_201706 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -690px -1371px; + background-position: -1311px -1398px; width: 68px; height: 68px; } .shop_set_mystery_201706 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -759px -1371px; + background-position: -1380px -1398px; width: 68px; height: 68px; } .broad_armor_mystery_201707 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: 0px -637px; + background-position: -106px -755px; width: 105px; height: 90px; } .head_mystery_201707 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -106px -637px; + background-position: 0px -755px; width: 105px; height: 90px; } .shop_armor_mystery_201707 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1433px -1311px; + background-position: -69px -1605px; width: 40px; height: 40px; } .shop_head_mystery_201707 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1502px -1380px; + background-position: -1424px -1307px; width: 40px; height: 40px; } .shop_set_mystery_201707 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1104px -1371px; + background-position: -1535px -207px; width: 68px; height: 68px; } .slim_armor_mystery_201707 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -318px -637px; + background-position: -690px -485px; width: 105px; height: 90px; } .shield_mystery_201708 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1342px -91px; + background-position: -819px -1125px; width: 90px; height: 90px; } .shop_set_mystery_201708 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1311px -1371px; + background-position: -1535px -414px; width: 68px; height: 68px; } .shop_shield_mystery_201708 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1571px -1449px; + background-position: -759px -667px; width: 40px; height: 40px; } .shop_weapon_mystery_201708 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1640px -1518px; + background-position: -871px -670px; width: 40px; height: 40px; } .weapon_mystery_201708 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1342px 0px; + background-position: -1092px -1125px; width: 90px; height: 90px; } .back_mystery_201709 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -587px -364px; + background-position: -230px -576px; width: 114px; height: 90px; } .shield_mystery_201709 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -587px -273px; + background-position: -115px -576px; width: 114px; height: 90px; } .shop_back_mystery_201709 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1502px -276px; + background-position: -1535px -828px; width: 68px; height: 68px; } .shop_set_mystery_201709 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1502px -345px; + background-position: -1535px -897px; width: 68px; height: 68px; } .shop_shield_mystery_201709 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1502px -414px; + background-position: -1535px -966px; width: 68px; height: 68px; } .broad_armor_mystery_201710 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -94px -825px; + background-position: -746px -846px; width: 93px; height: 90px; } .head_mystery_201710 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -652px -728px; + background-position: -1008px -182px; width: 93px; height: 90px; } .shop_armor_mystery_201710 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1502px -621px; + background-position: -1535px -1173px; width: 68px; height: 68px; } .shop_head_mystery_201710 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1502px -690px; + background-position: -1535px -1242px; width: 68px; height: 68px; } .shop_set_mystery_201710 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1502px -759px; + background-position: -1535px -1311px; width: 68px; height: 68px; } .slim_armor_mystery_201710 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: 0px -825px; + background-position: -1008px -91px; width: 93px; height: 90px; } .body_mystery_201711 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -587px -182px; + background-position: 0px -576px; width: 114px; height: 90px; } .broad_armor_mystery_201711 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -587px -91px; + background-position: -575px -485px; width: 114px; height: 90px; } .shop_armor_mystery_201711 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1502px -1035px; + background-position: -138px -1467px; width: 68px; height: 68px; } .shop_body_mystery_201711 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1502px -1104px; + background-position: -207px -1467px; width: 68px; height: 68px; } .shop_set_mystery_201711 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1502px -1173px; + background-position: -276px -1467px; width: 68px; height: 68px; } .slim_armor_mystery_201711 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -587px 0px; + background-position: -460px -485px; width: 114px; height: 90px; } .broad_armor_mystery_201712 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -460px -455px; + background-position: -345px -485px; width: 114px; height: 90px; } .head_mystery_201712 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -242px 0px; + background-position: -230px -485px; width: 114px; height: 90px; } .shop_armor_mystery_201712 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -69px -1440px; + background-position: -552px -1467px; width: 68px; height: 68px; } .shop_head_mystery_201712 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -138px -1440px; + background-position: -621px -1467px; width: 68px; height: 68px; } .shop_set_mystery_201712 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -207px -1440px; + background-position: -690px -1467px; width: 68px; height: 68px; } .slim_armor_mystery_201712 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -230px -455px; + background-position: -115px -485px; width: 114px; height: 90px; } .back_mystery_201801 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -115px -455px; + background-position: 0px -485px; width: 114px; height: 90px; } .headAccessory_mystery_201801 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: 0px -455px; + background-position: -575px -364px; width: 114px; height: 90px; } .shop_back_mystery_201801 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -483px -1440px; + background-position: -966px -1467px; width: 68px; height: 68px; } .shop_headAccessory_mystery_201801 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -552px -1440px; + background-position: -1035px -1467px; width: 68px; height: 68px; } .shop_set_mystery_201801 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -621px -1440px; + background-position: -1104px -1467px; width: 68px; height: 68px; } .broad_armor_mystery_201802 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -472px -364px; + background-position: -575px -273px; width: 114px; height: 90px; } .head_mystery_201802 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -472px -273px; + background-position: -575px -182px; width: 114px; height: 90px; } .shield_mystery_201802 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -472px -182px; + background-position: -575px -91px; width: 114px; height: 90px; } .shop_armor_mystery_201802 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -897px -1440px; + background-position: -1380px -1467px; width: 68px; height: 68px; } .shop_head_mystery_201802 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -966px -1440px; + background-position: -1449px -1467px; width: 68px; height: 68px; } .shop_set_mystery_201802 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1035px -1440px; + background-position: -1518px -1467px; width: 68px; height: 68px; } .shop_shield_mystery_201802 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1104px -1440px; + background-position: -1604px 0px; width: 68px; height: 68px; } .slim_armor_mystery_201802 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -472px -91px; + background-position: -575px 0px; width: 114px; height: 90px; } .back_mystery_201803 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -472px 0px; + background-position: -460px -394px; width: 114px; height: 90px; } .head_mystery_201803 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -345px -364px; + background-position: -345px -394px; width: 114px; height: 90px; } .shop_back_mystery_201803 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1380px -1440px; + background-position: -1604px -276px; width: 68px; height: 68px; } .shop_head_mystery_201803 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1449px -1440px; + background-position: -1604px -345px; width: 68px; height: 68px; } .shop_set_mystery_201803 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1571px 0px; + background-position: -1604px -414px; width: 68px; height: 68px; } .back_mystery_201804 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -121px -91px; + background-position: -460px -576px; width: 114px; height: 90px; } .headAccessory_mystery_201804 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -115px -364px; + background-position: -115px -394px; width: 114px; height: 90px; } .shop_back_mystery_201804 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1571px -207px; + background-position: -1604px -621px; width: 68px; height: 68px; } .shop_headAccessory_mystery_201804 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1571px -276px; + background-position: -1604px -690px; width: 68px; height: 68px; } .shop_set_mystery_201804 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1571px -345px; + background-position: -1604px -759px; width: 68px; height: 68px; } .back_mystery_201805 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: 0px -364px; + background-position: 0px -394px; width: 114px; height: 90px; } .head_mystery_201805 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -345px -273px; + background-position: -460px -273px; width: 114px; height: 90px; } .shop_back_mystery_201805 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1571px -552px; + background-position: -1604px -966px; width: 68px; height: 68px; } .shop_head_mystery_201805 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1571px -621px; + background-position: -1604px -1035px; width: 68px; height: 68px; } .shop_set_mystery_201805 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1571px -690px; + background-position: -1604px -1104px; width: 68px; height: 68px; } +.broad_armor_mystery_201806 { + background-image: url('~assets/images/sprites/spritesmith-main-7.png'); + background-position: -230px 0px; + width: 114px; + height: 120px; +} +.head_mystery_201806 { + background-image: url('~assets/images/sprites/spritesmith-main-7.png'); + background-position: -115px 0px; + width: 114px; + height: 120px; +} +.shop_armor_mystery_201806 { + background-image: url('~assets/images/sprites/spritesmith-main-7.png'); + background-position: -1604px -1311px; + width: 68px; + height: 68px; +} +.shop_head_mystery_201806 { + background-image: url('~assets/images/sprites/spritesmith-main-7.png'); + background-position: -1604px -1380px; + width: 68px; + height: 68px; +} +.shop_set_mystery_201806 { + background-image: url('~assets/images/sprites/spritesmith-main-7.png'); + background-position: -1604px -1449px; + width: 68px; + height: 68px; +} +.slim_armor_mystery_201806 { + background-image: url('~assets/images/sprites/spritesmith-main-7.png'); + background-position: 0px 0px; + width: 114px; + height: 120px; +} .broad_armor_mystery_301404 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1251px -910px; + background-position: -273px -1216px; width: 90px; height: 90px; } .eyewear_mystery_301404 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1251px -819px; + background-position: -364px -1216px; width: 90px; height: 90px; } .head_mystery_301404 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1251px -728px; + background-position: -455px -1216px; width: 90px; height: 90px; } .shop_armor_mystery_301404 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1571px -966px; + background-position: -276px -1536px; width: 68px; height: 68px; } .shop_eyewear_mystery_301404 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1571px -1035px; + background-position: -345px -1536px; width: 68px; height: 68px; } .shop_head_mystery_301404 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1571px -1104px; + background-position: -414px -1536px; width: 68px; height: 68px; } .shop_set_mystery_301404 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1571px -1173px; + background-position: -483px -1536px; width: 68px; height: 68px; } .shop_weapon_mystery_301404 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1571px -1242px; + background-position: -552px -1536px; width: 68px; height: 68px; } .slim_armor_mystery_301404 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1251px -637px; + background-position: -546px -1216px; width: 90px; height: 90px; } .weapon_mystery_301404 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1251px -455px; + background-position: -637px -1216px; width: 90px; height: 90px; } .eyewear_mystery_301405 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1251px -364px; + background-position: -728px -1216px; width: 90px; height: 90px; } .headAccessory_mystery_301405 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1251px 0px; + background-position: -910px -1216px; width: 90px; height: 90px; } .head_mystery_301405 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1251px -273px; + background-position: -819px -1216px; width: 90px; height: 90px; } .shield_mystery_301405 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1092px -1098px; + background-position: -1001px -1216px; width: 90px; height: 90px; } .shop_eyewear_mystery_301405 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -276px -1509px; + background-position: -1035px -1536px; width: 68px; height: 68px; } .shop_headAccessory_mystery_301405 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -414px -1509px; + background-position: -1173px -1536px; width: 68px; height: 68px; } .shop_head_mystery_301405 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -345px -1509px; + background-position: -1104px -1536px; width: 68px; height: 68px; } .shop_set_mystery_301405 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -483px -1509px; + background-position: -1242px -1536px; width: 68px; height: 68px; } .shop_shield_mystery_301405 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -552px -1509px; + background-position: -1311px -1536px; width: 68px; height: 68px; } .broad_armor_mystery_301703 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1001px -1098px; + background-position: -1092px -1216px; width: 90px; height: 90px; } .eyewear_mystery_301703 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -728px -1098px; + background-position: -1183px -1216px; width: 90px; height: 90px; } .head_mystery_301703 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -227px -546px; + background-position: -802px -264px; width: 114px; height: 87px; } .shop_armor_mystery_301703 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -828px -1509px; + background-position: -1587px -1536px; width: 68px; height: 68px; } .shop_eyewear_mystery_301703 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -897px -1509px; + background-position: -1673px 0px; width: 68px; height: 68px; } .shop_head_mystery_301703 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -966px -1509px; + background-position: -1673px -69px; width: 68px; height: 68px; } .shop_set_mystery_301703 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1035px -1509px; + background-position: -1673px -138px; width: 68px; height: 68px; } .slim_armor_mystery_301703 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -637px -1098px; + background-position: -1375px 0px; width: 90px; height: 90px; } .broad_armor_mystery_301704 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -546px -1098px; + background-position: -1375px -91px; width: 90px; height: 90px; } .head_mystery_301704 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -455px -1098px; + background-position: -1375px -182px; width: 90px; height: 90px; } .shield_mystery_301704 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -182px -1098px; + background-position: -1375px -273px; width: 90px; height: 90px; } .shop_armor_mystery_301704 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1380px -1509px; + background-position: -1673px -483px; width: 68px; height: 68px; } .shop_head_mystery_301704 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1449px -1509px; + background-position: -1673px -552px; width: 68px; height: 68px; } .shop_set_mystery_301704 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1518px -1509px; + background-position: -1673px -621px; width: 68px; height: 68px; } .shop_shield_mystery_301704 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1640px 0px; + background-position: -1673px -690px; width: 68px; height: 68px; } .slim_armor_mystery_301704 { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -91px -1098px; + background-position: -1375px -364px; width: 90px; height: 90px; } .broad_armor_special_spring2015Healer { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: 0px -1098px; + background-position: -1375px -455px; width: 90px; height: 90px; } .broad_armor_special_spring2015Mage { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1160px -728px; + background-position: -1375px -546px; width: 90px; height: 90px; } .broad_armor_special_spring2015Rogue { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1160px -637px; + background-position: -1375px -637px; width: 90px; height: 90px; } .broad_armor_special_spring2015Warrior { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1160px -546px; + background-position: -1375px -728px; width: 90px; height: 90px; } .broad_armor_special_spring2016Healer { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1160px -273px; + background-position: -1375px -819px; width: 90px; height: 90px; } .broad_armor_special_spring2016Mage { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1160px -182px; + background-position: -1375px -910px; width: 90px; height: 90px; } .broad_armor_special_spring2016Rogue { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -633px -637px; + background-position: -242px -121px; width: 102px; height: 90px; } .broad_armor_special_spring2016Warrior { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1160px -91px; + background-position: -1375px -1092px; width: 90px; height: 90px; } .broad_armor_special_spring2017Healer { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1160px 0px; + background-position: -1375px -1183px; width: 90px; height: 90px; } .broad_armor_special_spring2017Mage { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1001px -1007px; + background-position: 0px -1307px; width: 90px; height: 90px; } .broad_armor_special_spring2017Rogue { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -819px -1007px; + background-position: -91px -1307px; width: 90px; height: 90px; } .broad_armor_special_spring2017Warrior { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -342px -546px; + background-position: -802px -176px; width: 114px; height: 87px; } .broad_armor_special_spring2018Healer { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -115px -273px; + background-position: -345px -91px; width: 114px; height: 90px; } .broad_armor_special_spring2018Mage { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: 0px -273px; + background-position: -345px 0px; width: 114px; height: 90px; } .broad_armor_special_spring2018Rogue { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -357px -182px; + background-position: -460px -182px; width: 114px; height: 90px; } .broad_armor_special_spring2018Warrior { background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -357px -91px; + background-position: -345px -576px; width: 114px; height: 90px; } -.broad_armor_special_springHealer { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -182px -1007px; - width: 90px; - height: 90px; -} -.broad_armor_special_springMage { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -91px -1007px; - width: 90px; - height: 90px; -} -.broad_armor_special_springRogue { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1069px -819px; - width: 90px; - height: 90px; -} -.broad_armor_special_springWarrior { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1069px -728px; - width: 90px; - height: 90px; -} -.headAccessory_special_spring2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -552px -825px; - width: 90px; - height: 90px; -} -.headAccessory_special_spring2015Mage { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -461px -825px; - width: 90px; - height: 90px; -} -.headAccessory_special_spring2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -370px -825px; - width: 90px; - height: 90px; -} -.headAccessory_special_spring2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -279px -825px; - width: 90px; - height: 90px; -} -.head_special_spring2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1069px -637px; - width: 90px; - height: 90px; -} -.head_special_spring2015Mage { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1069px -455px; - width: 90px; - height: 90px; -} -.head_special_spring2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1069px -364px; - width: 90px; - height: 90px; -} -.head_special_spring2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1069px -273px; - width: 90px; - height: 90px; -} -.head_special_spring2016Healer { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1069px -182px; - width: 90px; - height: 90px; -} -.head_special_spring2016Mage { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1069px -91px; - width: 90px; - height: 90px; -} -.head_special_spring2016Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -530px -637px; - width: 102px; - height: 90px; -} -.head_special_spring2016Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -1069px 0px; - width: 90px; - height: 90px; -} -.head_special_spring2017Healer { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -728px -916px; - width: 90px; - height: 90px; -} -.head_special_spring2017Mage { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -637px -916px; - width: 90px; - height: 90px; -} -.head_special_spring2017Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -546px -916px; - width: 90px; - height: 90px; -} -.head_special_spring2017Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -273px -916px; - width: 90px; - height: 90px; -} -.head_special_spring2018Healer { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -230px -182px; - width: 114px; - height: 90px; -} -.head_special_spring2018Mage { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -115px -182px; - width: 114px; - height: 90px; -} -.head_special_spring2018Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: 0px -182px; - width: 114px; - height: 90px; -} -.head_special_spring2018Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -357px 0px; - width: 114px; - height: 90px; -} -.head_special_springHealer { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -978px -455px; - width: 90px; - height: 90px; -} -.head_special_springMage { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -978px -91px; - width: 90px; - height: 90px; -} -.head_special_springRogue { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -978px 0px; - width: 90px; - height: 90px; -} -.head_special_springWarrior { - background-image: url('~assets/images/sprites/spritesmith-main-7.png'); - background-position: -825px -825px; - width: 90px; - height: 90px; -} diff --git a/website/client/assets/css/sprites/spritesmith-main-8.css b/website/client/assets/css/sprites/spritesmith-main-8.css index 8dd360e826..be9be51453 100644 --- a/website/client/assets/css/sprites/spritesmith-main-8.css +++ b/website/client/assets/css/sprites/spritesmith-main-8.css @@ -1,1032 +1,1200 @@ -.headAccessory_special_spring2016Healer { +.broad_armor_special_springHealer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1274px -1242px; + background-position: -1381px -819px; width: 90px; height: 90px; } -.headAccessory_special_spring2016Mage { +.broad_armor_special_springMage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1405px -637px; + background-position: -1381px -455px; width: 90px; height: 90px; } -.headAccessory_special_spring2016Rogue { +.broad_armor_special_springRogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1120px 0px; - width: 102px; - height: 90px; -} -.headAccessory_special_spring2016Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1405px -182px; + background-position: -1108px -955px; width: 90px; height: 90px; } -.headAccessory_special_spring2017Healer { +.broad_armor_special_springWarrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1405px -364px; + background-position: -690px -681px; width: 90px; height: 90px; } -.headAccessory_special_spring2017Mage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1405px -455px; - width: 90px; - height: 90px; -} -.headAccessory_special_spring2017Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1405px -819px; - width: 90px; - height: 90px; -} -.headAccessory_special_spring2017Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1405px -910px; - width: 90px; - height: 90px; -} -.headAccessory_special_springHealer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1223px -637px; - width: 90px; - height: 90px; -} -.headAccessory_special_springMage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -637px -1151px; - width: 90px; - height: 90px; -} -.headAccessory_special_springRogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -182px -1242px; - width: 90px; - height: 90px; -} -.headAccessory_special_springWarrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -728px -1242px; - width: 90px; - height: 90px; -} -.shield_special_spring2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -910px -1242px; - width: 90px; - height: 90px; -} -.shield_special_spring2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1001px -1242px; - width: 90px; - height: 90px; -} -.shield_special_spring2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1092px -1242px; - width: 90px; - height: 90px; -} -.shield_special_spring2016Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1183px -1242px; - width: 90px; - height: 90px; -} -.shield_special_spring2016Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1120px -91px; - width: 102px; - height: 90px; -} -.shield_special_spring2016Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1405px 0px; - width: 90px; - height: 90px; -} -.shield_special_spring2017Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1405px -91px; - width: 90px; - height: 90px; -} -.shield_special_spring2017Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -787px -91px; - width: 114px; - height: 90px; -} -.shield_special_spring2017Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -336px -863px; - width: 114px; - height: 87px; -} -.shield_special_spring2018Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -460px -363px; - width: 114px; - height: 90px; -} -.shield_special_spring2018Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -787px -546px; - width: 114px; - height: 90px; -} -.shield_special_spring2018Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -787px -364px; - width: 114px; - height: 90px; -} -.shield_special_springHealer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1120px -546px; - width: 90px; - height: 90px; -} -.shield_special_springRogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1120px -637px; - width: 90px; - height: 90px; -} -.shield_special_springWarrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1120px -910px; - width: 90px; - height: 90px; -} -.shop_armor_special_spring2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1311px -1609px; - width: 68px; - height: 68px; -} -.shop_armor_special_spring2015Mage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1242px -1609px; - width: 68px; - height: 68px; -} -.shop_armor_special_spring2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1173px -1609px; - width: 68px; - height: 68px; -} -.shop_armor_special_spring2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1104px -1609px; - width: 68px; - height: 68px; -} -.shop_armor_special_spring2016Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1035px -1609px; - width: 68px; - height: 68px; -} -.shop_armor_special_spring2016Mage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -966px -1609px; - width: 68px; - height: 68px; -} -.shop_armor_special_spring2016Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -897px -1609px; - width: 68px; - height: 68px; -} -.shop_armor_special_spring2016Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -828px -1609px; - width: 68px; - height: 68px; -} -.shop_armor_special_spring2017Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -759px -1609px; - width: 68px; - height: 68px; -} -.shop_armor_special_spring2017Mage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -690px -1609px; - width: 68px; - height: 68px; -} -.shop_armor_special_spring2017Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -621px -1609px; - width: 68px; - height: 68px; -} -.shop_armor_special_spring2017Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -552px -1609px; - width: 68px; - height: 68px; -} -.shop_armor_special_spring2018Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -483px -1609px; - width: 68px; - height: 68px; -} -.shop_armor_special_spring2018Mage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -414px -1609px; - width: 68px; - height: 68px; -} -.shop_armor_special_spring2018Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -345px -1609px; - width: 68px; - height: 68px; -} -.shop_armor_special_spring2018Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -276px -1609px; - width: 68px; - height: 68px; -} -.shop_armor_special_springHealer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1634px -1380px; - width: 68px; - height: 68px; -} -.shop_armor_special_springMage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1634px -1311px; - width: 68px; - height: 68px; -} -.shop_armor_special_springRogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1634px -1242px; - width: 68px; - height: 68px; -} -.shop_armor_special_springWarrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1634px -1173px; - width: 68px; - height: 68px; -} -.shop_headAccessory_special_spring2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1311px -1540px; - width: 68px; - height: 68px; -} -.shop_headAccessory_special_spring2015Mage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1242px -1540px; - width: 68px; - height: 68px; -} -.shop_headAccessory_special_spring2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1173px -1540px; - width: 68px; - height: 68px; -} -.shop_headAccessory_special_spring2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1104px -1540px; - width: 68px; - height: 68px; -} -.shop_headAccessory_special_spring2016Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1035px -1540px; - width: 68px; - height: 68px; -} -.shop_headAccessory_special_spring2016Mage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -966px -1540px; - width: 68px; - height: 68px; -} -.shop_headAccessory_special_spring2016Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -897px -1540px; - width: 68px; - height: 68px; -} -.shop_headAccessory_special_spring2016Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -828px -1540px; - width: 68px; - height: 68px; -} -.shop_headAccessory_special_spring2017Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -759px -1540px; - width: 68px; - height: 68px; -} -.shop_headAccessory_special_spring2017Mage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -690px -1540px; - width: 68px; - height: 68px; -} -.shop_headAccessory_special_spring2017Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -621px -1540px; - width: 68px; - height: 68px; -} -.shop_headAccessory_special_spring2017Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -552px -1540px; - width: 68px; - height: 68px; -} -.shop_headAccessory_special_springHealer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -483px -1540px; - width: 68px; - height: 68px; -} -.shop_headAccessory_special_springMage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -414px -1540px; - width: 68px; - height: 68px; -} -.shop_headAccessory_special_springRogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -345px -1540px; - width: 68px; - height: 68px; -} -.shop_headAccessory_special_springWarrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -276px -1540px; - width: 68px; - height: 68px; -} -.shop_head_special_spring2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1634px -1104px; - width: 68px; - height: 68px; -} -.shop_head_special_spring2015Mage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1634px -1035px; - width: 68px; - height: 68px; -} -.shop_head_special_spring2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1634px -966px; - width: 68px; - height: 68px; -} -.shop_head_special_spring2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1634px -897px; - width: 68px; - height: 68px; -} -.shop_head_special_spring2016Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1634px -828px; - width: 68px; - height: 68px; -} -.shop_head_special_spring2016Mage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1634px -759px; - width: 68px; - height: 68px; -} -.shop_head_special_spring2016Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1634px -690px; - width: 68px; - height: 68px; -} -.shop_head_special_spring2016Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1634px -621px; - width: 68px; - height: 68px; -} -.shop_head_special_spring2017Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1634px -552px; - width: 68px; - height: 68px; -} -.shop_head_special_spring2017Mage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1634px -483px; - width: 68px; - height: 68px; -} -.shop_head_special_spring2017Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1634px -414px; - width: 68px; - height: 68px; -} -.shop_head_special_spring2017Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1634px -345px; - width: 68px; - height: 68px; -} -.shop_head_special_spring2018Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1634px -276px; - width: 68px; - height: 68px; -} -.shop_head_special_spring2018Mage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1634px -207px; - width: 68px; - height: 68px; -} -.shop_head_special_spring2018Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1634px -138px; - width: 68px; - height: 68px; -} -.shop_head_special_spring2018Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1634px -69px; - width: 68px; - height: 68px; -} -.shop_head_special_springHealer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1634px 0px; - width: 68px; - height: 68px; -} -.shop_head_special_springMage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1518px -1540px; - width: 68px; - height: 68px; -} -.shop_head_special_springRogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1449px -1540px; - width: 68px; - height: 68px; -} -.shop_head_special_springWarrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1380px -1540px; - width: 68px; - height: 68px; -} -.shop_shield_special_spring2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -207px -1540px; - width: 68px; - height: 68px; -} -.shop_shield_special_spring2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -138px -1540px; - width: 68px; - height: 68px; -} -.shop_shield_special_spring2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -69px -1540px; - width: 68px; - height: 68px; -} -.shop_shield_special_spring2016Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: 0px -1540px; - width: 68px; - height: 68px; -} -.shop_shield_special_spring2016Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1565px -1449px; - width: 68px; - height: 68px; -} -.shop_shield_special_spring2016Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -69px -1402px; - width: 68px; - height: 68px; -} -.shop_shield_special_spring2017Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: 0px -1402px; - width: 68px; - height: 68px; -} -.shop_shield_special_spring2017Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1380px -1333px; - width: 68px; - height: 68px; -} -.shop_shield_special_spring2017Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1311px -1333px; - width: 68px; - height: 68px; -} -.shop_shield_special_spring2018Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1242px -1333px; - width: 68px; - height: 68px; -} -.shop_shield_special_spring2018Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1173px -1333px; - width: 68px; - height: 68px; -} -.shop_shield_special_spring2018Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1104px -1333px; - width: 68px; - height: 68px; -} -.shop_shield_special_springHealer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1035px -1333px; - width: 68px; - height: 68px; -} -.shop_shield_special_springRogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -966px -1333px; - width: 68px; - height: 68px; -} -.shop_shield_special_springWarrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -897px -1333px; - width: 68px; - height: 68px; -} -.shop_weapon_special_spring2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -828px -1333px; - width: 68px; - height: 68px; -} -.shop_weapon_special_spring2015Mage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -759px -1333px; - width: 68px; - height: 68px; -} -.shop_weapon_special_spring2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -690px -1333px; - width: 68px; - height: 68px; -} -.shop_weapon_special_spring2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -621px -1333px; - width: 68px; - height: 68px; -} -.shop_weapon_special_spring2016Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -552px -1333px; - width: 68px; - height: 68px; -} -.shop_weapon_special_spring2016Mage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -483px -1333px; - width: 68px; - height: 68px; -} -.shop_weapon_special_spring2016Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -414px -1333px; - width: 68px; - height: 68px; -} -.shop_weapon_special_spring2016Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -345px -1333px; - width: 68px; - height: 68px; -} -.shop_weapon_special_spring2017Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -276px -1333px; - width: 68px; - height: 68px; -} -.shop_weapon_special_spring2017Mage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -207px -1333px; - width: 68px; - height: 68px; -} -.shop_weapon_special_spring2017Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -138px -1333px; - width: 68px; - height: 68px; -} -.shop_weapon_special_spring2017Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -69px -1333px; - width: 68px; - height: 68px; -} -.shop_weapon_special_spring2018Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: 0px -1333px; - width: 68px; - height: 68px; -} -.shop_weapon_special_spring2018Mage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -888px -863px; - width: 68px; - height: 68px; -} -.shop_weapon_special_spring2018Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -819px -863px; - width: 68px; - height: 68px; -} -.shop_weapon_special_spring2018Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -750px -863px; - width: 68px; - height: 68px; -} -.shop_weapon_special_springHealer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -681px -863px; - width: 68px; - height: 68px; -} -.shop_weapon_special_springMage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1405px -1252px; - width: 68px; - height: 68px; -} -.shop_weapon_special_springRogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1380px -1471px; - width: 68px; - height: 68px; -} -.shop_weapon_special_springWarrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1405px -1183px; - width: 68px; - height: 68px; -} -.slim_armor_special_spring2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -546px -1060px; - width: 90px; - height: 90px; -} -.slim_armor_special_spring2015Mage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -637px -1060px; - width: 90px; - height: 90px; -} -.slim_armor_special_spring2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -728px -1060px; - width: 90px; - height: 90px; -} -.slim_armor_special_spring2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -819px -1060px; - width: 90px; - height: 90px; -} -.slim_armor_special_spring2016Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -910px -1060px; - width: 90px; - height: 90px; -} -.slim_armor_special_spring2016Mage { +.headAccessory_special_spring2015Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); background-position: -1001px -1060px; width: 90px; height: 90px; } -.slim_armor_special_spring2016Rogue { +.headAccessory_special_spring2015Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1092px -1060px; + background-position: -1199px -273px; width: 90px; height: 90px; } -.slim_armor_special_spring2016Warrior { +.headAccessory_special_spring2015Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1223px 0px; + background-position: -1199px -364px; width: 90px; height: 90px; } -.slim_armor_special_spring2017Healer { +.headAccessory_special_spring2015Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1223px -91px; + background-position: -1199px -455px; width: 90px; height: 90px; } -.slim_armor_special_spring2017Mage { +.headAccessory_special_spring2016Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1223px -182px; + background-position: -1199px -546px; width: 90px; height: 90px; } -.slim_armor_special_spring2017Rogue { +.headAccessory_special_spring2016Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1223px -273px; + background-position: -1199px -637px; width: 90px; height: 90px; } -.slim_armor_special_spring2017Warrior { +.headAccessory_special_spring2016Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -566px -863px; - width: 114px; - height: 87px; -} -.slim_armor_special_spring2018Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -575px -772px; - width: 114px; + background-position: -961px -954px; + width: 102px; height: 90px; } -.slim_armor_special_spring2018Mage { +.headAccessory_special_spring2016Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -690px -772px; - width: 114px; - height: 90px; -} -.slim_armor_special_spring2018Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -460px -772px; - width: 114px; - height: 90px; -} -.slim_armor_special_spring2018Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -115px -772px; - width: 114px; - height: 90px; -} -.slim_armor_special_springHealer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1223px -819px; + background-position: -1199px -819px; width: 90px; height: 90px; } -.slim_armor_special_springMage { +.headAccessory_special_spring2017Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1223px -910px; + background-position: -1199px -910px; width: 90px; height: 90px; } -.slim_armor_special_springRogue { +.headAccessory_special_spring2017Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1223px -1001px; + background-position: -1199px -1001px; width: 90px; height: 90px; } -.slim_armor_special_springWarrior { +.headAccessory_special_spring2017Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); background-position: 0px -1151px; width: 90px; height: 90px; } -.weapon_special_spring2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -91px -1151px; - width: 90px; - height: 90px; -} -.weapon_special_spring2015Mage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -182px -1151px; - width: 90px; - height: 90px; -} -.weapon_special_spring2015Rogue { +.headAccessory_special_spring2017Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); background-position: -273px -1151px; width: 90px; height: 90px; } -.weapon_special_spring2015Warrior { +.headAccessory_special_springHealer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); background-position: -364px -1151px; width: 90px; height: 90px; } -.weapon_special_spring2016Healer { +.headAccessory_special_springMage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); background-position: -455px -1151px; width: 90px; height: 90px; } -.weapon_special_spring2016Mage { +.headAccessory_special_springRogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); background-position: -546px -1151px; width: 90px; height: 90px; } -.weapon_special_spring2016Rogue { +.headAccessory_special_springWarrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1001px -954px; + background-position: -637px -1151px; + width: 90px; + height: 90px; +} +.head_special_spring2015Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -805px -772px; + width: 90px; + height: 90px; +} +.head_special_spring2015Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: 0px -1060px; + width: 90px; + height: 90px; +} +.head_special_spring2015Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1199px -728px; + width: 90px; + height: 90px; +} +.head_special_spring2015Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -728px -1242px; + width: 90px; + height: 90px; +} +.head_special_spring2016Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1381px -91px; + width: 90px; + height: 90px; +} +.head_special_spring2016Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1381px -182px; + width: 90px; + height: 90px; +} +.head_special_spring2016Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -755px -954px; width: 102px; height: 90px; } -.weapon_special_spring2016Warrior { +.head_special_spring2016Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1381px -910px; + width: 90px; + height: 90px; +} +.head_special_spring2017Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1381px -1001px; + width: 90px; + height: 90px; +} +.head_special_spring2017Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1108px -682px; + width: 90px; + height: 90px; +} +.head_special_spring2017Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1108px -773px; + width: 90px; + height: 90px; +} +.head_special_spring2017Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1108px -864px; + width: 90px; + height: 90px; +} +.head_special_spring2018Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -460px -772px; + width: 114px; + height: 90px; +} +.head_special_spring2018Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -345px -772px; + width: 114px; + height: 90px; +} +.head_special_spring2018Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -575px -772px; + width: 114px; + height: 90px; +} +.head_special_spring2018Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -902px -91px; + width: 114px; + height: 90px; +} +.head_special_springHealer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -91px -1060px; + width: 90px; + height: 90px; +} +.head_special_springMage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -182px -1060px; + width: 90px; + height: 90px; +} +.head_special_springRogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -273px -1060px; + width: 90px; + height: 90px; +} +.head_special_springWarrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -910px -1060px; + width: 90px; + height: 90px; +} +.shield_special_spring2015Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); background-position: -728px -1151px; width: 90px; height: 90px; } -.weapon_special_spring2017Healer { +.shield_special_spring2015Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1290px -546px; + width: 90px; + height: 90px; +} +.shield_special_spring2015Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1290px -819px; + width: 90px; + height: 90px; +} +.shield_special_spring2016Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1290px -910px; + width: 90px; + height: 90px; +} +.shield_special_spring2016Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -858px -954px; + width: 102px; + height: 90px; +} +.shield_special_spring2016Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1274px -1242px; + width: 90px; + height: 90px; +} +.shield_special_spring2017Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1381px 0px; + width: 90px; + height: 90px; +} +.shield_special_spring2017Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -902px -182px; + width: 114px; + height: 90px; +} +.shield_special_spring2017Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -675px -863px; + width: 114px; + height: 87px; +} +.shield_special_spring2018Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -690px -772px; + width: 114px; + height: 90px; +} +.shield_special_spring2018Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -115px -772px; + width: 114px; + height: 90px; +} +.shield_special_spring2018Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: 0px -772px; + width: 114px; + height: 90px; +} +.shield_special_springHealer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1381px -1092px; + width: 90px; + height: 90px; +} +.shield_special_springRogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1108px -409px; + width: 90px; + height: 90px; +} +.shield_special_springWarrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1108px -500px; + width: 90px; + height: 90px; +} +.shop_armor_special_spring2015Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1679px -1311px; + width: 68px; + height: 68px; +} +.shop_armor_special_spring2015Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1679px -1242px; + width: 68px; + height: 68px; +} +.shop_armor_special_spring2015Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1679px -1173px; + width: 68px; + height: 68px; +} +.shop_armor_special_spring2015Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1679px -1104px; + width: 68px; + height: 68px; +} +.shop_armor_special_spring2016Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1679px -1035px; + width: 68px; + height: 68px; +} +.shop_armor_special_spring2016Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1679px -966px; + width: 68px; + height: 68px; +} +.shop_armor_special_spring2016Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1679px -897px; + width: 68px; + height: 68px; +} +.shop_armor_special_spring2016Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1679px -828px; + width: 68px; + height: 68px; +} +.shop_armor_special_spring2017Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1679px -759px; + width: 68px; + height: 68px; +} +.shop_armor_special_spring2017Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1679px -690px; + width: 68px; + height: 68px; +} +.shop_armor_special_spring2017Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1679px -621px; + width: 68px; + height: 68px; +} +.shop_armor_special_spring2017Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1679px -552px; + width: 68px; + height: 68px; +} +.shop_armor_special_spring2018Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1679px -483px; + width: 68px; + height: 68px; +} +.shop_armor_special_spring2018Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1679px -414px; + width: 68px; + height: 68px; +} +.shop_armor_special_spring2018Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1679px -345px; + width: 68px; + height: 68px; +} +.shop_armor_special_spring2018Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1679px -276px; + width: 68px; + height: 68px; +} +.shop_armor_special_springHealer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1679px -207px; + width: 68px; + height: 68px; +} +.shop_armor_special_springMage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1679px -138px; + width: 68px; + height: 68px; +} +.shop_armor_special_springRogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1679px -69px; + width: 68px; + height: 68px; +} +.shop_armor_special_springWarrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1679px 0px; + width: 68px; + height: 68px; +} +.shop_headAccessory_special_spring2015Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -552px -1424px; + width: 68px; + height: 68px; +} +.shop_headAccessory_special_spring2015Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -483px -1424px; + width: 68px; + height: 68px; +} +.shop_headAccessory_special_spring2015Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -414px -1424px; + width: 68px; + height: 68px; +} +.shop_headAccessory_special_spring2015Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -345px -1424px; + width: 68px; + height: 68px; +} +.shop_headAccessory_special_spring2016Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -276px -1424px; + width: 68px; + height: 68px; +} +.shop_headAccessory_special_spring2016Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -207px -1424px; + width: 68px; + height: 68px; +} +.shop_headAccessory_special_spring2016Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -138px -1424px; + width: 68px; + height: 68px; +} +.shop_headAccessory_special_spring2016Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -69px -1424px; + width: 68px; + height: 68px; +} +.shop_headAccessory_special_spring2017Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: 0px -1424px; + width: 68px; + height: 68px; +} +.shop_headAccessory_special_spring2017Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1472px -1311px; + width: 68px; + height: 68px; +} +.shop_headAccessory_special_spring2017Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1472px -1242px; + width: 68px; + height: 68px; +} +.shop_headAccessory_special_spring2017Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1472px -1173px; + width: 68px; + height: 68px; +} +.shop_headAccessory_special_springHealer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1472px -1104px; + width: 68px; + height: 68px; +} +.shop_headAccessory_special_springMage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1472px -1035px; + width: 68px; + height: 68px; +} +.shop_headAccessory_special_springRogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1472px -966px; + width: 68px; + height: 68px; +} +.shop_headAccessory_special_springWarrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1472px -897px; + width: 68px; + height: 68px; +} +.shop_head_special_spring2015Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1587px -1562px; + width: 68px; + height: 68px; +} +.shop_head_special_spring2015Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1518px -1562px; + width: 68px; + height: 68px; +} +.shop_head_special_spring2015Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1449px -1562px; + width: 68px; + height: 68px; +} +.shop_head_special_spring2015Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1380px -1562px; + width: 68px; + height: 68px; +} +.shop_head_special_spring2016Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1311px -1562px; + width: 68px; + height: 68px; +} +.shop_head_special_spring2016Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1242px -1562px; + width: 68px; + height: 68px; +} +.shop_head_special_spring2016Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1173px -1562px; + width: 68px; + height: 68px; +} +.shop_head_special_spring2016Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1104px -1562px; + width: 68px; + height: 68px; +} +.shop_head_special_spring2017Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1035px -1562px; + width: 68px; + height: 68px; +} +.shop_head_special_spring2017Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -966px -1562px; + width: 68px; + height: 68px; +} +.shop_head_special_spring2017Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -897px -1562px; + width: 68px; + height: 68px; +} +.shop_head_special_spring2017Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -828px -1562px; + width: 68px; + height: 68px; +} +.shop_head_special_spring2018Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -759px -1562px; + width: 68px; + height: 68px; +} +.shop_head_special_spring2018Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -690px -1562px; + width: 68px; + height: 68px; +} +.shop_head_special_spring2018Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -621px -1562px; + width: 68px; + height: 68px; +} +.shop_head_special_spring2018Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -552px -1562px; + width: 68px; + height: 68px; +} +.shop_head_special_springHealer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -828px -1424px; + width: 68px; + height: 68px; +} +.shop_head_special_springMage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -759px -1424px; + width: 68px; + height: 68px; +} +.shop_head_special_springRogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -690px -1424px; + width: 68px; + height: 68px; +} +.shop_head_special_springWarrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -621px -1424px; + width: 68px; + height: 68px; +} +.shop_shield_special_spring2015Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1472px -828px; + width: 68px; + height: 68px; +} +.shop_shield_special_spring2015Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1472px -759px; + width: 68px; + height: 68px; +} +.shop_shield_special_spring2015Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1472px -690px; + width: 68px; + height: 68px; +} +.shop_shield_special_spring2016Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1472px -621px; + width: 68px; + height: 68px; +} +.shop_shield_special_spring2016Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1472px -552px; + width: 68px; + height: 68px; +} +.shop_shield_special_spring2016Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1472px -483px; + width: 68px; + height: 68px; +} +.shop_shield_special_spring2017Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1472px -414px; + width: 68px; + height: 68px; +} +.shop_shield_special_spring2017Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1472px -345px; + width: 68px; + height: 68px; +} +.shop_shield_special_spring2017Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1472px -276px; + width: 68px; + height: 68px; +} +.shop_shield_special_spring2018Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1472px -207px; + width: 68px; + height: 68px; +} +.shop_shield_special_spring2018Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1472px -138px; + width: 68px; + height: 68px; +} +.shop_shield_special_spring2018Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1472px -69px; + width: 68px; + height: 68px; +} +.shop_shield_special_springHealer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1472px 0px; + width: 68px; + height: 68px; +} +.shop_shield_special_springRogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1355px -1333px; + width: 68px; + height: 68px; +} +.shop_shield_special_springWarrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1286px -1333px; + width: 68px; + height: 68px; +} +.shop_weapon_special_spring2015Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1217px -1333px; + width: 68px; + height: 68px; +} +.shop_weapon_special_spring2015Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1148px -1333px; + width: 68px; + height: 68px; +} +.shop_weapon_special_spring2015Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1079px -1333px; + width: 68px; + height: 68px; +} +.shop_weapon_special_spring2015Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1010px -1333px; + width: 68px; + height: 68px; +} +.shop_weapon_special_spring2016Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -941px -1333px; + width: 68px; + height: 68px; +} +.shop_weapon_special_spring2016Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -872px -1333px; + width: 68px; + height: 68px; +} +.shop_weapon_special_spring2016Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -803px -1333px; + width: 68px; + height: 68px; +} +.shop_weapon_special_spring2016Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -734px -1333px; + width: 68px; + height: 68px; +} +.shop_weapon_special_spring2017Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -665px -1333px; + width: 68px; + height: 68px; +} +.shop_weapon_special_spring2017Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -596px -1333px; + width: 68px; + height: 68px; +} +.shop_weapon_special_spring2017Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -527px -1333px; + width: 68px; + height: 68px; +} +.shop_weapon_special_spring2017Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -458px -1333px; + width: 68px; + height: 68px; +} +.shop_weapon_special_spring2018Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -389px -1333px; + width: 68px; + height: 68px; +} +.shop_weapon_special_spring2018Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -320px -1333px; + width: 68px; + height: 68px; +} +.shop_weapon_special_spring2018Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -251px -1333px; + width: 68px; + height: 68px; +} +.shop_weapon_special_spring2018Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -182px -1333px; + width: 68px; + height: 68px; +} +.shop_weapon_special_springHealer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -928px -863px; + width: 68px; + height: 68px; +} +.shop_weapon_special_springMage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -859px -863px; + width: 68px; + height: 68px; +} +.shop_weapon_special_springRogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -138px -1493px; + width: 68px; + height: 68px; +} +.shop_weapon_special_springWarrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -790px -863px; + width: 68px; + height: 68px; +} +.slim_armor_special_spring2015Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); background-position: -819px -1151px; width: 90px; height: 90px; } -.weapon_special_spring2017Mage { +.slim_armor_special_spring2015Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); background-position: -910px -1151px; width: 90px; height: 90px; } -.weapon_special_spring2017Rogue { +.slim_armor_special_spring2015Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); background-position: -1001px -1151px; width: 90px; height: 90px; } -.weapon_special_spring2017Warrior { +.slim_armor_special_spring2015Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); background-position: -1092px -1151px; width: 90px; height: 90px; } -.weapon_special_spring2018Healer { +.slim_armor_special_spring2016Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -787px -637px; + background-position: -1183px -1151px; + width: 90px; + height: 90px; +} +.slim_armor_special_spring2016Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1290px 0px; + width: 90px; + height: 90px; +} +.slim_armor_special_spring2016Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1290px -91px; + width: 90px; + height: 90px; +} +.slim_armor_special_spring2016Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1290px -182px; + width: 90px; + height: 90px; +} +.slim_armor_special_spring2017Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1290px -273px; + width: 90px; + height: 90px; +} +.slim_armor_special_spring2017Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1290px -364px; + width: 90px; + height: 90px; +} +.slim_armor_special_spring2017Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1290px -455px; + width: 90px; + height: 90px; +} +.slim_armor_special_spring2017Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -560px -863px; + width: 114px; + height: 87px; +} +.slim_armor_special_spring2018Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -230px -772px; width: 114px; height: 90px; } -.weapon_special_spring2018Mage { +.slim_armor_special_spring2018Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -787px -364px; + width: 114px; + height: 90px; +} +.slim_armor_special_spring2018Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); background-position: -787px -273px; width: 114px; height: 90px; } -.weapon_special_spring2018Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -787px -182px; - width: 114px; - height: 90px; -} -.weapon_special_spring2018Warrior { +.slim_armor_special_spring2018Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); background-position: -787px 0px; width: 114px; height: 90px; } -.weapon_special_springHealer { +.slim_armor_special_springHealer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1314px -273px; + background-position: -1290px -1001px; width: 90px; height: 90px; } -.weapon_special_springMage { +.slim_armor_special_springMage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1314px -364px; + background-position: -1290px -1092px; width: 90px; height: 90px; } -.weapon_special_springRogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1314px -455px; - width: 90px; - height: 90px; -} -.weapon_special_springWarrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1314px -546px; - width: 90px; - height: 90px; -} -.body_special_summer2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1314px -637px; - width: 90px; - height: 90px; -} -.body_special_summer2015Mage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1314px -728px; - width: 90px; - height: 90px; -} -.body_special_summer2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -206px -575px; - width: 102px; - height: 105px; -} -.body_special_summer2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1014px -833px; - width: 90px; - height: 105px; -} -.body_special_summerHealer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -684px -106px; - width: 90px; - height: 105px; -} -.body_special_summerMage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -684px -212px; - width: 90px; - height: 105px; -} -.broad_armor_special_summer2015Healer { +.slim_armor_special_springRogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); background-position: 0px -1242px; width: 90px; height: 90px; } -.broad_armor_special_summer2015Mage { +.slim_armor_special_springWarrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); background-position: -91px -1242px; width: 90px; height: 90px; } +.weapon_special_spring2015Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -182px -1242px; + width: 90px; + height: 90px; +} +.weapon_special_spring2015Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -273px -1242px; + width: 90px; + height: 90px; +} +.weapon_special_spring2015Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -364px -1242px; + width: 90px; + height: 90px; +} +.weapon_special_spring2015Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -455px -1242px; + width: 90px; + height: 90px; +} +.weapon_special_spring2016Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -546px -1242px; + width: 90px; + height: 90px; +} +.weapon_special_spring2016Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -637px -1242px; + width: 90px; + height: 90px; +} +.weapon_special_spring2016Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -652px -954px; + width: 102px; + height: 90px; +} +.weapon_special_spring2016Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -819px -1242px; + width: 90px; + height: 90px; +} +.weapon_special_spring2017Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -910px -1242px; + width: 90px; + height: 90px; +} +.weapon_special_spring2017Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1001px -1242px; + width: 90px; + height: 90px; +} +.weapon_special_spring2017Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1092px -1242px; + width: 90px; + height: 90px; +} +.weapon_special_spring2017Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1183px -1242px; + width: 90px; + height: 90px; +} +.weapon_special_spring2018Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -345px -681px; + width: 114px; + height: 90px; +} +.weapon_special_spring2018Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -230px -681px; + width: 114px; + height: 90px; +} +.weapon_special_spring2018Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: 0px -681px; + width: 114px; + height: 90px; +} +.weapon_special_spring2018Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -575px -681px; + width: 114px; + height: 90px; +} +.weapon_special_springHealer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1381px -273px; + width: 90px; + height: 90px; +} +.weapon_special_springMage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1381px -364px; + width: 90px; + height: 90px; +} +.weapon_special_springRogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -91px -1333px; + width: 90px; + height: 90px; +} +.weapon_special_springWarrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1381px -546px; + width: 90px; + height: 90px; +} +.body_special_summer2015Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1381px -637px; + width: 90px; + height: 90px; +} +.body_special_summer2015Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1381px -728px; + width: 90px; + height: 90px; +} +.body_special_summer2015Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -309px -575px; + width: 102px; + height: 105px; +} +.body_special_summer2015Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1108px 0px; + width: 90px; + height: 105px; +} +.body_special_summerHealer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1017px -212px; + width: 90px; + height: 105px; +} +.body_special_summerMage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1108px -212px; + width: 90px; + height: 105px; +} +.broad_armor_special_summer2015Healer { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: -1381px -1183px; + width: 90px; + height: 90px; +} +.broad_armor_special_summer2015Mage { + background-image: url('~assets/images/sprites/spritesmith-main-8.png'); + background-position: 0px -1333px; + width: 90px; + height: 90px; +} .broad_armor_special_summer2015Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -103px -575px; + background-position: -515px -575px; width: 102px; height: 105px; } .broad_armor_special_summer2015Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -684px -424px; + background-position: -1017px -742px; width: 90px; height: 105px; } .broad_armor_special_summer2016Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -684px -530px; + background-position: -1017px -636px; width: 90px; height: 105px; } .broad_armor_special_summer2016Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: 0px -954px; + background-position: -1017px -530px; width: 90px; height: 105px; } .broad_armor_special_summer2016Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -91px -954px; + background-position: -1017px -424px; width: 90px; height: 105px; } .broad_armor_special_summer2016Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -182px -954px; + background-position: -1017px -318px; width: 90px; height: 105px; } @@ -1038,73 +1206,73 @@ } .broad_armor_special_summer2017Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -819px -1242px; + background-position: -91px -1151px; width: 90px; height: 90px; } .broad_armor_special_summer2017Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -575px -327px; + background-position: -212px -469px; width: 105px; height: 105px; } .broad_armor_special_summer2017Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -230px -772px; + background-position: -902px -273px; width: 114px; height: 90px; } .broad_armor_special_summer2018Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: 0px -121px; + background-position: 0px -242px; width: 114px; height: 120px; } .broad_armor_special_summer2018Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -230px 0px; + background-position: -345px -121px; width: 114px; height: 120px; } .broad_armor_special_summer2018Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -345px -681px; + background-position: -902px 0px; width: 114px; height: 90px; } .broad_armor_special_summer2018Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -115px 0px; + background-position: -230px 0px; width: 114px; height: 120px; } .broad_armor_special_summerHealer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -910px -954px; + background-position: -684px -106px; width: 90px; height: 105px; } .broad_armor_special_summerMage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1014px -197px; + background-position: -1108px -106px; width: 90px; height: 105px; } .broad_armor_special_summerRogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -902px 0px; + background-position: -112px -863px; width: 111px; height: 90px; } .broad_armor_special_summerWarrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -902px -91px; + background-position: -902px -455px; width: 111px; height: 90px; } .eyewear_special_summerRogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -902px -182px; + background-position: -902px -546px; width: 111px; height: 90px; } @@ -1116,37 +1284,37 @@ } .head_special_summer2015Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1120px -455px; + background-position: -1199px 0px; width: 90px; height: 90px; } .head_special_summer2015Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1405px -728px; + background-position: -1092px -1060px; width: 90px; height: 90px; } .head_special_summer2015Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: 0px -575px; + background-position: -206px -575px; width: 102px; height: 105px; } .head_special_summer2015Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1014px -91px; + background-position: -182px -954px; width: 90px; height: 105px; } .head_special_summer2016Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1405px -1001px; + background-position: -819px -1060px; width: 90px; height: 90px; } .head_special_summer2016Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -455px -1060px; + background-position: -728px -1060px; width: 90px; height: 90px; } @@ -1158,7 +1326,7 @@ } .head_special_summer2016Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -273px -1060px; + background-position: -546px -1060px; width: 90px; height: 90px; } @@ -1170,103 +1338,103 @@ } .head_special_summer2017Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -91px -1060px; + background-position: -364px -1060px; width: 90px; height: 90px; } .head_special_summer2017Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: 0px -469px; + background-position: -106px -469px; width: 105px; height: 105px; } .head_special_summer2017Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: 0px -772px; + background-position: -787px -455px; width: 114px; height: 90px; } .head_special_summer2018Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -115px -121px; + background-position: -230px -242px; width: 114px; height: 120px; } .head_special_summer2018Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -230px -121px; + background-position: -345px -242px; width: 114px; height: 120px; } .head_special_summer2018Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -787px -455px; + background-position: -787px -182px; width: 114px; height: 90px; } .head_special_summer2018Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -345px 0px; + background-position: -460px -121px; width: 114px; height: 120px; } .head_special_summerHealer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1014px -409px; + background-position: -684px -318px; width: 90px; height: 105px; } .head_special_summerMage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1014px -303px; + background-position: -684px -212px; width: 90px; height: 105px; } .head_special_summerRogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -902px -273px; + background-position: -224px -863px; width: 111px; height: 90px; } .head_special_summerWarrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -902px -364px; + background-position: -336px -863px; width: 111px; height: 90px; } .shield_special_summer2015Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1405px -546px; + background-position: -1108px -591px; width: 90px; height: 90px; } .shield_special_summer2015Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -412px -575px; + background-position: -684px 0px; width: 102px; height: 105px; } .shield_special_summer2015Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -728px -954px; + background-position: -364px -954px; width: 90px; height: 105px; } .shield_special_summer2016Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1405px -273px; + background-position: -1108px -318px; width: 90px; height: 90px; } .shield_special_summer2016Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -575px 0px; + background-position: -575px -218px; width: 108px; height: 108px; } .shield_special_summer2016Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -309px -575px; + background-position: -424px -469px; width: 102px; height: 105px; } @@ -1278,25 +1446,25 @@ } .shield_special_summer2017Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -106px -469px; + background-position: -318px -469px; width: 105px; height: 105px; } .shield_special_summer2017Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -230px -681px; + background-position: -460px -363px; width: 114px; height: 90px; } .shield_special_summer2018Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -345px -121px; + background-position: -115px 0px; width: 114px; height: 120px; } .shield_special_summer2018Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: 0px -681px; + background-position: -115px -681px; width: 114px; height: 90px; } @@ -1308,565 +1476,565 @@ } .shield_special_summerHealer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1014px -515px; + background-position: -684px -424px; width: 90px; height: 105px; } .shield_special_summerRogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -112px -863px; + background-position: -902px -637px; width: 111px; height: 90px; } .shield_special_summerWarrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -224px -863px; + background-position: -448px -863px; width: 111px; height: 90px; } .shop_armor_special_summer2015Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -138px -1402px; + background-position: -897px -1424px; width: 68px; height: 68px; } .shop_armor_special_summer2015Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -207px -1402px; + background-position: -966px -1424px; width: 68px; height: 68px; } .shop_armor_special_summer2015Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -276px -1402px; + background-position: -1035px -1424px; width: 68px; height: 68px; } .shop_armor_special_summer2015Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -345px -1402px; + background-position: -1104px -1424px; width: 68px; height: 68px; } .shop_armor_special_summer2016Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -414px -1402px; + background-position: -1173px -1424px; width: 68px; height: 68px; } .shop_armor_special_summer2016Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -483px -1402px; + background-position: -1242px -1424px; width: 68px; height: 68px; } .shop_armor_special_summer2016Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -552px -1402px; + background-position: -1311px -1424px; width: 68px; height: 68px; } .shop_armor_special_summer2016Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -621px -1402px; + background-position: -1380px -1424px; width: 68px; height: 68px; } .shop_armor_special_summer2017Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -690px -1402px; + background-position: -1449px -1424px; width: 68px; height: 68px; } .shop_armor_special_summer2017Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -759px -1402px; + background-position: -1541px 0px; width: 68px; height: 68px; } .shop_armor_special_summer2017Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -828px -1402px; + background-position: -1541px -69px; width: 68px; height: 68px; } .shop_armor_special_summer2017Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -897px -1402px; + background-position: -1541px -138px; width: 68px; height: 68px; } .shop_armor_special_summer2018Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -966px -1402px; + background-position: -1541px -207px; width: 68px; height: 68px; } .shop_armor_special_summer2018Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1035px -1402px; + background-position: -1541px -276px; width: 68px; height: 68px; } .shop_armor_special_summer2018Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1104px -1402px; + background-position: -1541px -345px; width: 68px; height: 68px; } .shop_armor_special_summer2018Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1173px -1402px; + background-position: -1541px -414px; width: 68px; height: 68px; } .shop_armor_special_summerHealer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1242px -1402px; + background-position: -1541px -483px; width: 68px; height: 68px; } .shop_armor_special_summerMage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1311px -1402px; + background-position: -1541px -552px; width: 68px; height: 68px; } .shop_armor_special_summerRogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1380px -1402px; + background-position: -1541px -621px; width: 68px; height: 68px; } .shop_armor_special_summerWarrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1496px 0px; + background-position: -1541px -690px; width: 68px; height: 68px; } .shop_body_special_summer2015Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1496px -69px; + background-position: -1541px -759px; width: 68px; height: 68px; } .shop_body_special_summer2015Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1496px -138px; + background-position: -1541px -828px; width: 68px; height: 68px; } .shop_body_special_summer2015Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1496px -207px; + background-position: -1541px -897px; width: 68px; height: 68px; } .shop_body_special_summer2015Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1496px -276px; + background-position: -1541px -966px; width: 68px; height: 68px; } .shop_body_special_summerHealer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1496px -345px; + background-position: -1541px -1035px; width: 68px; height: 68px; } .shop_body_special_summerMage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1496px -414px; + background-position: -1541px -1104px; width: 68px; height: 68px; } .shop_eyewear_special_summerRogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1496px -483px; + background-position: -1541px -1173px; width: 68px; height: 68px; } .shop_eyewear_special_summerWarrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1496px -552px; + background-position: -1541px -1242px; width: 68px; height: 68px; } .shop_head_special_summer2015Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1496px -621px; + background-position: -1541px -1311px; width: 68px; height: 68px; } .shop_head_special_summer2015Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1496px -690px; + background-position: -1541px -1380px; width: 68px; height: 68px; } .shop_head_special_summer2015Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1496px -759px; + background-position: 0px -1493px; width: 68px; height: 68px; } .shop_head_special_summer2015Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1496px -828px; + background-position: -69px -1493px; width: 68px; height: 68px; } .shop_head_special_summer2016Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1496px -897px; + background-position: -1679px -1380px; width: 68px; height: 68px; } .shop_head_special_summer2016Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1496px -966px; + background-position: -207px -1493px; width: 68px; height: 68px; } .shop_head_special_summer2016Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1496px -1035px; + background-position: -276px -1493px; width: 68px; height: 68px; } .shop_head_special_summer2016Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1496px -1104px; + background-position: -345px -1493px; width: 68px; height: 68px; } .shop_head_special_summer2017Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1496px -1173px; + background-position: -414px -1493px; width: 68px; height: 68px; } .shop_head_special_summer2017Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1496px -1242px; + background-position: -483px -1493px; width: 68px; height: 68px; } .shop_head_special_summer2017Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1496px -1311px; + background-position: -552px -1493px; width: 68px; height: 68px; } .shop_head_special_summer2017Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1496px -1380px; + background-position: -621px -1493px; width: 68px; height: 68px; } .shop_head_special_summer2018Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: 0px -1471px; + background-position: -690px -1493px; width: 68px; height: 68px; } .shop_head_special_summer2018Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -69px -1471px; + background-position: -759px -1493px; width: 68px; height: 68px; } .shop_head_special_summer2018Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -138px -1471px; + background-position: -828px -1493px; width: 68px; height: 68px; } .shop_head_special_summer2018Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -207px -1471px; + background-position: -897px -1493px; width: 68px; height: 68px; } .shop_head_special_summerHealer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -276px -1471px; + background-position: -966px -1493px; width: 68px; height: 68px; } .shop_head_special_summerMage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -345px -1471px; + background-position: -1035px -1493px; width: 68px; height: 68px; } .shop_head_special_summerRogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -414px -1471px; + background-position: -1104px -1493px; width: 68px; height: 68px; } .shop_head_special_summerWarrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -483px -1471px; + background-position: -1173px -1493px; width: 68px; height: 68px; } .shop_shield_special_summer2015Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -552px -1471px; + background-position: -1242px -1493px; width: 68px; height: 68px; } .shop_shield_special_summer2015Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -621px -1471px; + background-position: -1311px -1493px; width: 68px; height: 68px; } .shop_shield_special_summer2015Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -690px -1471px; + background-position: -1380px -1493px; width: 68px; height: 68px; } .shop_shield_special_summer2016Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -759px -1471px; + background-position: -1449px -1493px; width: 68px; height: 68px; } .shop_shield_special_summer2016Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -828px -1471px; + background-position: -1518px -1493px; width: 68px; height: 68px; } .shop_shield_special_summer2016Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -897px -1471px; + background-position: -1610px 0px; width: 68px; height: 68px; } .shop_shield_special_summer2017Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -966px -1471px; + background-position: -1610px -69px; width: 68px; height: 68px; } .shop_shield_special_summer2017Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1035px -1471px; + background-position: -1610px -138px; width: 68px; height: 68px; } .shop_shield_special_summer2017Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1104px -1471px; + background-position: -1610px -207px; width: 68px; height: 68px; } .shop_shield_special_summer2018Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1173px -1471px; + background-position: -1610px -276px; width: 68px; height: 68px; } .shop_shield_special_summer2018Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1242px -1471px; + background-position: -1610px -345px; width: 68px; height: 68px; } .shop_shield_special_summer2018Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1311px -1471px; + background-position: -1610px -414px; width: 68px; height: 68px; } .shop_shield_special_summerHealer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1380px -1609px; + background-position: -1610px -483px; width: 68px; height: 68px; } .shop_shield_special_summerRogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1449px -1471px; + background-position: -1610px -552px; width: 68px; height: 68px; } .shop_shield_special_summerWarrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1565px 0px; + background-position: -1610px -621px; width: 68px; height: 68px; } .shop_weapon_special_summer2015Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1565px -69px; + background-position: -1610px -690px; width: 68px; height: 68px; } .shop_weapon_special_summer2015Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1565px -138px; + background-position: -1610px -759px; width: 68px; height: 68px; } .shop_weapon_special_summer2015Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1565px -207px; + background-position: -1610px -828px; width: 68px; height: 68px; } .shop_weapon_special_summer2015Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1565px -276px; + background-position: -1610px -897px; width: 68px; height: 68px; } .shop_weapon_special_summer2016Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1565px -345px; + background-position: -1610px -966px; width: 68px; height: 68px; } .shop_weapon_special_summer2016Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1565px -414px; + background-position: -1610px -1035px; width: 68px; height: 68px; } .shop_weapon_special_summer2016Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1565px -483px; + background-position: -1610px -1104px; width: 68px; height: 68px; } .shop_weapon_special_summer2016Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1565px -552px; + background-position: -1610px -1173px; width: 68px; height: 68px; } .shop_weapon_special_summer2017Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1565px -621px; + background-position: -1610px -1242px; width: 68px; height: 68px; } .shop_weapon_special_summer2017Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1565px -690px; + background-position: -1610px -1311px; width: 68px; height: 68px; } .shop_weapon_special_summer2017Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1565px -759px; + background-position: -1610px -1380px; width: 68px; height: 68px; } .shop_weapon_special_summer2017Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1565px -828px; + background-position: -1610px -1449px; width: 68px; height: 68px; } .shop_weapon_special_summer2018Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1565px -897px; + background-position: 0px -1562px; width: 68px; height: 68px; } .shop_weapon_special_summer2018Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1565px -966px; + background-position: -69px -1562px; width: 68px; height: 68px; } .shop_weapon_special_summer2018Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1565px -1035px; + background-position: -138px -1562px; width: 68px; height: 68px; } .shop_weapon_special_summer2018Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1565px -1104px; + background-position: -207px -1562px; width: 68px; height: 68px; } .shop_weapon_special_summerHealer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1565px -1173px; + background-position: -276px -1562px; width: 68px; height: 68px; } .shop_weapon_special_summerMage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1565px -1242px; + background-position: -345px -1562px; width: 68px; height: 68px; } .shop_weapon_special_summerRogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1565px -1311px; + background-position: -414px -1562px; width: 68px; height: 68px; } .shop_weapon_special_summerWarrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1565px -1380px; + background-position: -483px -1562px; width: 68px; height: 68px; } .slim_armor_special_summer2015Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -455px -1242px; + background-position: -1290px -728px; width: 90px; height: 90px; } .slim_armor_special_summer2015Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -364px -1242px; + background-position: -1290px -637px; width: 90px; height: 90px; } .slim_armor_special_summer2015Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -527px -469px; + background-position: -103px -575px; width: 102px; height: 105px; } .slim_armor_special_summer2015Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -637px -954px; + background-position: -273px -954px; width: 90px; height: 105px; } .slim_armor_special_summer2016Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -546px -954px; + background-position: -91px -954px; width: 90px; height: 105px; } .slim_armor_special_summer2016Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -455px -954px; + background-position: 0px -954px; width: 90px; height: 105px; } .slim_armor_special_summer2016Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -364px -954px; + background-position: -1017px -848px; width: 90px; height: 105px; } .slim_armor_special_summer2016Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -424px -469px; + background-position: 0px -575px; width: 102px; height: 105px; } @@ -1878,25 +2046,25 @@ } .slim_armor_special_summer2017Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1314px -91px; + background-position: -182px -1151px; width: 90px; height: 90px; } .slim_armor_special_summer2017Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -318px -469px; + background-position: -575px -327px; width: 105px; height: 105px; } .slim_armor_special_summer2017Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -575px -681px; + background-position: -460px -681px; width: 114px; height: 90px; } .slim_armor_special_summer2018Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: 0px -242px; + background-position: 0px -121px; width: 114px; height: 120px; } @@ -1908,85 +2076,85 @@ } .slim_armor_special_summer2018Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -345px -772px; + background-position: -787px -91px; width: 114px; height: 90px; } .slim_armor_special_summer2018Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -230px -242px; + background-position: -460px 0px; width: 114px; height: 120px; } .slim_armor_special_summerHealer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -684px -318px; + background-position: -1017px -106px; width: 90px; height: 105px; } .slim_armor_special_summerMage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1014px -727px; + background-position: -1017px 0px; width: 90px; height: 105px; } .slim_armor_special_summerRogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -902px -546px; + background-position: -902px -364px; width: 111px; height: 90px; } .slim_armor_special_summerWarrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -902px -637px; + background-position: 0px -863px; width: 111px; height: 90px; } .weapon_special_summer2015Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: 0px -1060px; + background-position: -1199px -182px; width: 90px; height: 90px; } .weapon_special_summer2015Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -805px -772px; + background-position: -1199px -91px; width: 90px; height: 90px; } .weapon_special_summer2015Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -515px -575px; + background-position: -412px -575px; width: 102px; height: 105px; } .weapon_special_summer2015Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -819px -954px; + background-position: -455px -954px; width: 90px; height: 105px; } .weapon_special_summer2016Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1120px -819px; + background-position: -637px -1060px; width: 90px; height: 90px; } .weapon_special_summer2016Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1120px -728px; + background-position: -455px -1060px; width: 90px; height: 90px; } .weapon_special_summer2016Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -575px -218px; + background-position: -575px 0px; width: 108px; height: 108px; } .weapon_special_summer2016Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -684px 0px; + background-position: -527px -469px; width: 102px; height: 105px; } @@ -1998,235 +2166,49 @@ } .weapon_special_summer2017Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1014px 0px; + background-position: -546px -954px; width: 105px; height: 90px; } .weapon_special_summer2017Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -212px -469px; + background-position: 0px -469px; width: 105px; height: 105px; } .weapon_special_summer2017Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -115px -681px; + background-position: -787px -546px; width: 114px; height: 90px; } .weapon_special_summer2018Healer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -345px -242px; + background-position: -345px 0px; width: 114px; height: 120px; } .weapon_special_summer2018Mage { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -460px 0px; + background-position: -230px -121px; width: 114px; height: 120px; } .weapon_special_summer2018Rogue { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -460px -681px; + background-position: -787px -637px; width: 114px; height: 90px; } .weapon_special_summer2018Warrior { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -460px -121px; + background-position: -115px -121px; width: 114px; height: 120px; } .weapon_special_summerHealer { background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -273px -954px; + background-position: -684px -530px; width: 90px; height: 105px; } -.weapon_special_summerMage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1014px -621px; - width: 90px; - height: 105px; -} -.weapon_special_summerRogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -902px -455px; - width: 111px; - height: 90px; -} -.weapon_special_summerWarrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: 0px -863px; - width: 111px; - height: 90px; -} -.back_special_takeThis { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -451px -863px; - width: 114px; - height: 87px; -} -.body_special_takeThis { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -637px -1242px; - width: 90px; - height: 90px; -} -.broad_armor_special_takeThis { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -546px -1242px; - width: 90px; - height: 90px; -} -.head_special_takeThis { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -273px -1242px; - width: 90px; - height: 90px; -} -.shield_special_takeThis { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1120px -273px; - width: 93px; - height: 90px; -} -.shop_armor_special_takeThis { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1634px -1449px; - width: 68px; - height: 68px; -} -.shop_back_special_takeThis { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1634px -1518px; - width: 68px; - height: 68px; -} -.shop_body_special_takeThis { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: 0px -1609px; - width: 68px; - height: 68px; -} -.shop_head_special_takeThis { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -69px -1609px; - width: 68px; - height: 68px; -} -.shop_shield_special_takeThis { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -138px -1609px; - width: 68px; - height: 68px; -} -.shop_weapon_special_takeThis { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -207px -1609px; - width: 68px; - height: 68px; -} -.slim_armor_special_takeThis { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1314px -1092px; - width: 90px; - height: 90px; -} -.weapon_special_takeThis { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1314px -1001px; - width: 90px; - height: 90px; -} -.broad_armor_special_candycane { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1314px -910px; - width: 90px; - height: 90px; -} -.broad_armor_special_ski { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1314px -819px; - width: 90px; - height: 90px; -} -.broad_armor_special_snowflake { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1314px -182px; - width: 90px; - height: 90px; -} -.broad_armor_special_winter2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1314px 0px; - width: 90px; - height: 90px; -} -.broad_armor_special_winter2015Mage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1183px -1151px; - width: 90px; - height: 90px; -} -.broad_armor_special_winter2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1120px -182px; - width: 96px; - height: 90px; -} -.broad_armor_special_winter2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1223px -728px; - width: 90px; - height: 90px; -} -.broad_armor_special_winter2016Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1120px -364px; - width: 93px; - height: 90px; -} -.broad_armor_special_winter2016Mage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1223px -546px; - width: 90px; - height: 90px; -} -.broad_armor_special_winter2016Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1223px -455px; - width: 90px; - height: 90px; -} -.broad_armor_special_winter2016Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1223px -364px; - width: 90px; - height: 90px; -} -.broad_armor_special_winter2017Healer { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -364px -1060px; - width: 90px; - height: 90px; -} -.broad_armor_special_winter2017Mage { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -182px -1060px; - width: 90px; - height: 90px; -} -.broad_armor_special_winter2017Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -690px -681px; - width: 90px; - height: 90px; -} -.broad_armor_special_winter2017Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-8.png'); - background-position: -1405px -1092px; - width: 90px; - height: 90px; -} diff --git a/website/client/assets/css/sprites/spritesmith-main-9.css b/website/client/assets/css/sprites/spritesmith-main-9.css index 9c2f48ca14..4089f700e1 100644 --- a/website/client/assets/css/sprites/spritesmith-main-9.css +++ b/website/client/assets/css/sprites/spritesmith-main-9.css @@ -1,1752 +1,1494 @@ -.broad_armor_special_winter2018Healer { +.weapon_special_summerMage { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: 0px 0px; - width: 114px; + background-position: -690px 0px; + width: 90px; + height: 105px; +} +.weapon_special_summerRogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -575px -182px; + width: 111px; height: 90px; } -.broad_armor_special_winter2018Mage { +.weapon_special_summerWarrior { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -230px -364px; - width: 114px; + background-position: -575px -273px; + width: 111px; height: 90px; } -.broad_armor_special_winter2018Rogue { +.back_special_takeThis { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -460px -364px; + background-position: -575px -364px; width: 114px; - height: 90px; + height: 87px; } -.broad_armor_special_winter2018Warrior { +.body_special_takeThis { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: 0px -91px; - width: 114px; - height: 90px; -} -.broad_armor_special_yeti { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -787px -364px; + background-position: -690px -197px; width: 90px; height: 90px; } -.head_special_candycane { +.broad_armor_special_takeThis { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -878px -546px; + width: 90px; + height: 90px; +} +.head_special_takeThis { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: 0px -816px; + width: 90px; + height: 90px; +} +.shield_special_takeThis { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: 0px -725px; + width: 93px; + height: 90px; +} +.shop_armor_special_takeThis { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1631px -414px; + width: 68px; + height: 68px; +} +.shop_back_special_takeThis { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1631px -345px; + width: 68px; + height: 68px; +} +.shop_body_special_takeThis { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1631px -276px; + width: 68px; + height: 68px; +} +.shop_head_special_takeThis { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1631px -207px; + width: 68px; + height: 68px; +} +.shop_shield_special_takeThis { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1631px -138px; + width: 68px; + height: 68px; +} +.shop_weapon_special_takeThis { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1631px -69px; + width: 68px; + height: 68px; +} +.slim_armor_special_takeThis { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -690px -288px; + width: 90px; + height: 90px; +} +.weapon_special_takeThis { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -690px -379px; + width: 90px; + height: 90px; +} +.broad_armor_special_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -690px -470px; + width: 90px; + height: 90px; +} +.broad_armor_special_ski { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -373px -725px; + width: 90px; + height: 90px; +} +.broad_armor_special_snowflake { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -646px -725px; + width: 90px; + height: 90px; +} +.broad_armor_special_winter2015Healer { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); background-position: -878px 0px; width: 90px; height: 90px; } -.head_special_nye { +.broad_armor_special_winter2015Mage { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -878px -364px; + width: 90px; + height: 90px; +} +.broad_armor_special_winter2015Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -781px -182px; + width: 96px; + height: 90px; +} +.broad_armor_special_winter2015Warrior { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); background-position: -878px -637px; width: 90px; height: 90px; } -.head_special_nye2014 { +.broad_armor_special_winter2016Healer { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: 0px -819px; - width: 90px; - height: 90px; -} -.head_special_nye2015 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -182px -819px; - width: 90px; - height: 90px; -} -.head_special_nye2016 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -637px -819px; - width: 90px; - height: 90px; -} -.head_special_nye2017 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -273px -910px; - width: 90px; - height: 90px; -} -.head_special_ski { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -364px -1001px; - width: 90px; - height: 90px; -} -.head_special_snowflake { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1151px -364px; - width: 90px; - height: 90px; -} -.head_special_winter2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: 0px -1092px; - width: 90px; - height: 90px; -} -.head_special_winter2015Mage { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -182px -1092px; - width: 90px; - height: 90px; -} -.head_special_winter2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -690px -91px; - width: 96px; - height: 90px; -} -.head_special_winter2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -787px -273px; - width: 90px; - height: 90px; -} -.head_special_winter2016Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -690px -273px; + background-position: -188px -725px; width: 93px; height: 90px; } -.head_special_winter2016Mage { +.broad_armor_special_winter2016Mage { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -91px -728px; + background-position: -182px -816px; width: 90px; height: 90px; } -.head_special_winter2016Rogue { +.broad_armor_special_winter2016Rogue { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -182px -728px; + background-position: -637px -816px; width: 90px; height: 90px; } -.head_special_winter2016Warrior { +.broad_armor_special_winter2016Warrior { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -364px -728px; + background-position: -728px -816px; width: 90px; height: 90px; } -.head_special_winter2017Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -455px -728px; - width: 90px; - height: 90px; -} -.head_special_winter2017Mage { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -546px -728px; - width: 90px; - height: 90px; -} -.head_special_winter2017Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -637px -728px; - width: 90px; - height: 90px; -} -.head_special_winter2017Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -728px -728px; - width: 90px; - height: 90px; -} -.head_special_winter2018Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -230px -91px; - width: 114px; - height: 90px; -} -.head_special_winter2018Mage { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: 0px -182px; - width: 114px; - height: 90px; -} -.head_special_winter2018Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -115px -182px; - width: 114px; - height: 90px; -} -.head_special_winter2018Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -230px -182px; - width: 114px; - height: 90px; -} -.head_special_yeti { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -273px -819px; - width: 90px; - height: 90px; -} -.shield_special_ski { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -575px -358px; - width: 104px; - height: 90px; -} -.shield_special_snowflake { +.broad_armor_special_winter2017Healer { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); background-position: -969px 0px; width: 90px; height: 90px; } -.shield_special_winter2015Healer { +.broad_armor_special_winter2017Mage { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); background-position: -969px -91px; width: 90px; height: 90px; } -.shield_special_winter2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -690px 0px; - width: 96px; - height: 90px; -} -.shield_special_winter2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1060px -728px; - width: 90px; - height: 90px; -} -.shield_special_winter2016Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -690px -182px; - width: 93px; - height: 90px; -} -.shield_special_winter2016Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -546px -1001px; - width: 90px; - height: 90px; -} -.shield_special_winter2016Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1151px -182px; - width: 90px; - height: 90px; -} -.shield_special_winter2017Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1151px -273px; - width: 90px; - height: 90px; -} -.shield_special_winter2017Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -207px -546px; - width: 96px; - height: 90px; -} -.shield_special_winter2017Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1151px -455px; - width: 90px; - height: 90px; -} -.shield_special_winter2018Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -115px -273px; - width: 114px; - height: 90px; -} -.shield_special_winter2018Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -230px -273px; - width: 114px; - height: 90px; -} -.shield_special_winter2018Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -345px -273px; - width: 114px; - height: 90px; -} -.shield_special_yeti { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1001px -1092px; - width: 90px; - height: 90px; -} -.shop_armor_special_candycane { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -207px -1343px; - width: 68px; - height: 68px; -} -.shop_armor_special_ski { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1678px -276px; - width: 68px; - height: 68px; -} -.shop_armor_special_snowflake { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1678px -207px; - width: 68px; - height: 68px; -} -.shop_armor_special_winter2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1678px -138px; - width: 68px; - height: 68px; -} -.shop_armor_special_winter2015Mage { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1678px -69px; - width: 68px; - height: 68px; -} -.shop_armor_special_winter2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1678px 0px; - width: 68px; - height: 68px; -} -.shop_armor_special_winter2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1587px -1550px; - width: 68px; - height: 68px; -} -.shop_armor_special_winter2016Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1518px -1550px; - width: 68px; - height: 68px; -} -.shop_armor_special_winter2016Mage { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1449px -1550px; - width: 68px; - height: 68px; -} -.shop_armor_special_winter2016Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1380px -1550px; - width: 68px; - height: 68px; -} -.shop_armor_special_winter2016Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1311px -1550px; - width: 68px; - height: 68px; -} -.shop_armor_special_winter2017Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1540px -828px; - width: 68px; - height: 68px; -} -.shop_armor_special_winter2017Mage { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1540px -759px; - width: 68px; - height: 68px; -} -.shop_armor_special_winter2017Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1540px -690px; - width: 68px; - height: 68px; -} -.shop_armor_special_winter2017Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1540px -621px; - width: 68px; - height: 68px; -} -.shop_armor_special_winter2018Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1540px -552px; - width: 68px; - height: 68px; -} -.shop_armor_special_winter2018Mage { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1540px -483px; - width: 68px; - height: 68px; -} -.shop_armor_special_winter2018Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1540px -414px; - width: 68px; - height: 68px; -} -.shop_armor_special_winter2018Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1540px -345px; - width: 68px; - height: 68px; -} -.shop_armor_special_yeti { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1540px -276px; - width: 68px; - height: 68px; -} -.shop_head_special_candycane { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1540px -207px; - width: 68px; - height: 68px; -} -.shop_head_special_nye { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1540px -138px; - width: 68px; - height: 68px; -} -.shop_head_special_nye2014 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1540px -69px; - width: 68px; - height: 68px; -} -.shop_head_special_nye2015 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1540px 0px; - width: 68px; - height: 68px; -} -.shop_head_special_nye2016 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1449px -1412px; - width: 68px; - height: 68px; -} -.shop_head_special_nye2017 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1380px -1412px; - width: 68px; - height: 68px; -} -.shop_head_special_ski { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1311px -1412px; - width: 68px; - height: 68px; -} -.shop_head_special_snowflake { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1242px -1412px; - width: 68px; - height: 68px; -} -.shop_head_special_winter2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1173px -1412px; - width: 68px; - height: 68px; -} -.shop_head_special_winter2015Mage { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1104px -1412px; - width: 68px; - height: 68px; -} -.shop_head_special_winter2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1035px -1412px; - width: 68px; - height: 68px; -} -.shop_head_special_winter2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -966px -1412px; - width: 68px; - height: 68px; -} -.shop_head_special_winter2016Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -897px -1412px; - width: 68px; - height: 68px; -} -.shop_head_special_winter2016Mage { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -828px -1412px; - width: 68px; - height: 68px; -} -.shop_head_special_winter2016Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -759px -1412px; - width: 68px; - height: 68px; -} -.shop_head_special_winter2016Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -690px -1412px; - width: 68px; - height: 68px; -} -.shop_head_special_winter2017Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1678px -345px; - width: 68px; - height: 68px; -} -.shop_head_special_winter2017Mage { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1471px -897px; - width: 68px; - height: 68px; -} -.shop_head_special_winter2017Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1471px -828px; - width: 68px; - height: 68px; -} -.shop_head_special_winter2017Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1471px -759px; - width: 68px; - height: 68px; -} -.shop_head_special_winter2018Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1471px -690px; - width: 68px; - height: 68px; -} -.shop_head_special_winter2018Mage { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1471px -621px; - width: 68px; - height: 68px; -} -.shop_head_special_winter2018Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1471px -552px; - width: 68px; - height: 68px; -} -.shop_head_special_winter2018Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1471px -483px; - width: 68px; - height: 68px; -} -.shop_head_special_yeti { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1471px -414px; - width: 68px; - height: 68px; -} -.shop_shield_special_ski { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1471px -345px; - width: 68px; - height: 68px; -} -.shop_shield_special_snowflake { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1471px -276px; - width: 68px; - height: 68px; -} -.shop_shield_special_winter2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1471px -207px; - width: 68px; - height: 68px; -} -.shop_shield_special_winter2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1471px -138px; - width: 68px; - height: 68px; -} -.shop_shield_special_winter2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1471px -69px; - width: 68px; - height: 68px; -} -.shop_shield_special_winter2016Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1471px 0px; - width: 68px; - height: 68px; -} -.shop_shield_special_winter2016Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1380px -1343px; - width: 68px; - height: 68px; -} -.shop_shield_special_winter2016Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1402px -69px; - width: 68px; - height: 68px; -} -.shop_shield_special_winter2017Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1402px 0px; - width: 68px; - height: 68px; -} -.shop_shield_special_winter2017Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1311px -1274px; - width: 68px; - height: 68px; -} -.shop_shield_special_winter2017Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1242px -1274px; - width: 68px; - height: 68px; -} -.shop_shield_special_winter2018Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1173px -1274px; - width: 68px; - height: 68px; -} -.shop_shield_special_winter2018Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1104px -1274px; - width: 68px; - height: 68px; -} -.shop_shield_special_winter2018Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1035px -1274px; - width: 68px; - height: 68px; -} -.shop_shield_special_yeti { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -966px -1274px; - width: 68px; - height: 68px; -} -.shop_weapon_special_candycane { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -897px -1274px; - width: 68px; - height: 68px; -} -.shop_weapon_special_ski { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -828px -1274px; - width: 68px; - height: 68px; -} -.shop_weapon_special_snowflake { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -759px -1274px; - width: 68px; - height: 68px; -} -.shop_weapon_special_winter2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -690px -1274px; - width: 68px; - height: 68px; -} -.shop_weapon_special_winter2015Mage { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -621px -1274px; - width: 68px; - height: 68px; -} -.shop_weapon_special_winter2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -552px -1274px; - width: 68px; - height: 68px; -} -.shop_weapon_special_winter2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -483px -1274px; - width: 68px; - height: 68px; -} -.shop_weapon_special_winter2016Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -414px -1274px; - width: 68px; - height: 68px; -} -.shop_weapon_special_winter2016Mage { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -345px -1274px; - width: 68px; - height: 68px; -} -.shop_weapon_special_winter2016Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -276px -1274px; - width: 68px; - height: 68px; -} -.shop_weapon_special_winter2016Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -207px -1274px; - width: 68px; - height: 68px; -} -.shop_weapon_special_winter2017Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -138px -1274px; - width: 68px; - height: 68px; -} -.shop_weapon_special_winter2017Mage { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -69px -1274px; - width: 68px; - height: 68px; -} -.shop_weapon_special_winter2017Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: 0px -1274px; - width: 68px; - height: 68px; -} -.shop_weapon_special_winter2017Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1333px -1173px; - width: 68px; - height: 68px; -} -.shop_weapon_special_winter2018Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1333px -1104px; - width: 68px; - height: 68px; -} -.shop_weapon_special_winter2018Mage { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1333px -1035px; - width: 68px; - height: 68px; -} -.shop_weapon_special_winter2018Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1333px -966px; - width: 68px; - height: 68px; -} -.shop_weapon_special_winter2018Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1333px -897px; - width: 68px; - height: 68px; -} -.shop_weapon_special_yeti { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1333px -828px; - width: 68px; - height: 68px; -} -.slim_armor_special_candycane { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1060px -910px; - width: 90px; - height: 90px; -} -.slim_armor_special_ski { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: 0px -1001px; - width: 90px; - height: 90px; -} -.slim_armor_special_snowflake { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -91px -1001px; - width: 90px; - height: 90px; -} -.slim_armor_special_winter2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -182px -1001px; - width: 90px; - height: 90px; -} -.slim_armor_special_winter2015Mage { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -273px -1001px; - width: 90px; - height: 90px; -} -.slim_armor_special_winter2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -498px -546px; - width: 96px; - height: 90px; -} -.slim_armor_special_winter2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -455px -1001px; - width: 90px; - height: 90px; -} -.slim_armor_special_winter2016Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -690px -364px; - width: 93px; - height: 90px; -} -.slim_armor_special_winter2016Mage { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -637px -1001px; - width: 90px; - height: 90px; -} -.slim_armor_special_winter2016Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -728px -1001px; - width: 90px; - height: 90px; -} -.slim_armor_special_winter2016Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -819px -1001px; - width: 90px; - height: 90px; -} -.slim_armor_special_winter2017Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -910px -1001px; - width: 90px; - height: 90px; -} -.slim_armor_special_winter2017Mage { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1001px -1001px; - width: 90px; - height: 90px; -} -.slim_armor_special_winter2017Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1151px 0px; - width: 90px; - height: 90px; -} -.slim_armor_special_winter2017Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1151px -91px; - width: 90px; - height: 90px; -} -.slim_armor_special_winter2018Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -115px -364px; - width: 114px; - height: 90px; -} -.slim_armor_special_winter2018Mage { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: 0px -364px; - width: 114px; - height: 90px; -} -.slim_armor_special_winter2018Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: 0px -273px; - width: 114px; - height: 90px; -} -.slim_armor_special_winter2018Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -345px -182px; - width: 114px; - height: 90px; -} -.slim_armor_special_yeti { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1151px -546px; - width: 90px; - height: 90px; -} -.weapon_special_candycane { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1151px -637px; - width: 90px; - height: 90px; -} -.weapon_special_ski { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1151px -728px; - width: 90px; - height: 90px; -} -.weapon_special_snowflake { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1151px -819px; - width: 90px; - height: 90px; -} -.weapon_special_winter2015Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1151px -910px; - width: 90px; - height: 90px; -} -.weapon_special_winter2015Mage { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1151px -1001px; - width: 90px; - height: 90px; -} -.weapon_special_winter2015Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -401px -546px; - width: 96px; - height: 90px; -} -.weapon_special_winter2015Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -91px -1092px; - width: 90px; - height: 90px; -} -.weapon_special_winter2016Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -690px -455px; - width: 93px; - height: 90px; -} -.weapon_special_winter2016Mage { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -273px -1092px; - width: 90px; - height: 90px; -} -.weapon_special_winter2016Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -364px -1092px; - width: 90px; - height: 90px; -} -.weapon_special_winter2016Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -455px -1092px; - width: 90px; - height: 90px; -} -.weapon_special_winter2017Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -546px -1092px; - width: 90px; - height: 90px; -} -.weapon_special_winter2017Mage { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -637px -1092px; - width: 90px; - height: 90px; -} -.weapon_special_winter2017Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -728px -1092px; - width: 90px; - height: 90px; -} -.weapon_special_winter2017Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -819px -1092px; - width: 90px; - height: 90px; -} -.weapon_special_winter2018Healer { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -345px -91px; - width: 114px; - height: 90px; -} -.weapon_special_winter2018Mage { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -345px 0px; - width: 114px; - height: 90px; -} -.weapon_special_winter2018Rogue { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -230px 0px; - width: 114px; - height: 90px; -} -.weapon_special_winter2018Warrior { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -115px -91px; - width: 114px; - height: 90px; -} -.weapon_special_yeti { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1242px -91px; - width: 90px; - height: 90px; -} -.back_special_wondercon_black { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1242px -182px; - width: 90px; - height: 90px; -} -.back_special_wondercon_red { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1242px -273px; - width: 90px; - height: 90px; -} -.body_special_wondercon_black { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1242px -364px; - width: 90px; - height: 90px; -} -.body_special_wondercon_gold { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1242px -455px; - width: 90px; - height: 90px; -} -.body_special_wondercon_red { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1242px -546px; - width: 90px; - height: 90px; -} -.eyewear_special_wondercon_black { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1242px -637px; - width: 90px; - height: 90px; -} -.eyewear_special_wondercon_red { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1242px -728px; - width: 90px; - height: 90px; -} -.shop_back_special_wondercon_black { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1333px -759px; - width: 68px; - height: 68px; -} -.shop_back_special_wondercon_red { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1333px -690px; - width: 68px; - height: 68px; -} -.shop_body_special_wondercon_black { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1333px -621px; - width: 68px; - height: 68px; -} -.shop_body_special_wondercon_gold { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1333px -552px; - width: 68px; - height: 68px; -} -.shop_body_special_wondercon_red { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1333px -483px; - width: 68px; - height: 68px; -} -.shop_eyewear_special_wondercon_black { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1333px -414px; - width: 68px; - height: 68px; -} -.shop_eyewear_special_wondercon_red { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1333px -345px; - width: 68px; - height: 68px; -} -.eyewear_special_aetherMask { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -115px 0px; - width: 114px; - height: 90px; -} -.eyewear_special_blackTopFrame { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -364px -1183px; - width: 90px; - height: 90px; -} -.customize-option.eyewear_special_blackTopFrame { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -389px -1198px; - width: 60px; - height: 60px; -} -.eyewear_special_blueTopFrame { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -455px -1183px; - width: 90px; - height: 90px; -} -.customize-option.eyewear_special_blueTopFrame { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -480px -1198px; - width: 60px; - height: 60px; -} -.eyewear_special_greenTopFrame { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -546px -1183px; - width: 90px; - height: 90px; -} -.customize-option.eyewear_special_greenTopFrame { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -571px -1198px; - width: 60px; - height: 60px; -} -.eyewear_special_pinkTopFrame { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -637px -1183px; - width: 90px; - height: 90px; -} -.customize-option.eyewear_special_pinkTopFrame { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -662px -1198px; - width: 60px; - height: 60px; -} -.eyewear_special_redTopFrame { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -728px -1183px; - width: 90px; - height: 90px; -} -.customize-option.eyewear_special_redTopFrame { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -753px -1198px; - width: 60px; - height: 60px; -} -.eyewear_special_whiteTopFrame { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -819px -1183px; - width: 90px; - height: 90px; -} -.customize-option.eyewear_special_whiteTopFrame { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -844px -1198px; - width: 60px; - height: 60px; -} -.eyewear_special_yellowTopFrame { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -910px -1183px; - width: 90px; - height: 90px; -} -.customize-option.eyewear_special_yellowTopFrame { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -935px -1198px; - width: 60px; - height: 60px; -} -.shop_eyewear_special_aetherMask { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1333px -276px; - width: 68px; - height: 68px; -} -.shop_eyewear_special_blackTopFrame { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1183px -1183px; - width: 68px; - height: 68px; -} -.shop_eyewear_special_blueTopFrame { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -621px -1412px; - width: 68px; - height: 68px; -} -.shop_eyewear_special_greenTopFrame { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1252px -1183px; - width: 68px; - height: 68px; -} -.shop_eyewear_special_pinkTopFrame { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1333px 0px; - width: 68px; - height: 68px; -} -.shop_eyewear_special_redTopFrame { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1333px -69px; - width: 68px; - height: 68px; -} -.shop_eyewear_special_whiteTopFrame { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1333px -138px; - width: 68px; - height: 68px; -} -.shop_eyewear_special_yellowTopFrame { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1333px -207px; - width: 68px; - height: 68px; -} -.head_0 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1001px -1183px; - width: 90px; - height: 90px; -} -.customize-option.head_0 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1026px -1198px; - width: 60px; - height: 60px; -} -.head_healer_1 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -182px -1183px; - width: 90px; - height: 90px; -} -.head_healer_2 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -91px -1183px; - width: 90px; - height: 90px; -} -.head_healer_3 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: 0px -1183px; - width: 90px; - height: 90px; -} -.head_healer_4 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1242px -1092px; - width: 90px; - height: 90px; -} -.head_healer_5 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1242px -1001px; - width: 90px; - height: 90px; -} -.head_rogue_1 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1242px -910px; - width: 90px; - height: 90px; -} -.head_rogue_2 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1242px -819px; - width: 90px; - height: 90px; -} -.head_rogue_3 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1060px -819px; - width: 90px; - height: 90px; -} -.head_rogue_4 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1092px -1183px; - width: 90px; - height: 90px; -} -.head_rogue_5 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1060px -637px; - width: 90px; - height: 90px; -} -.head_special_2 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1060px -546px; - width: 90px; - height: 90px; -} -.head_special_bardHat { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1060px -455px; - width: 90px; - height: 90px; -} -.head_special_clandestineCowl { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1060px -364px; - width: 90px; - height: 90px; -} -.head_special_dandyHat { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1060px -273px; - width: 90px; - height: 90px; -} -.head_special_fireCoralCirclet { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1060px -182px; - width: 90px; - height: 90px; -} -.head_special_kabuto { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1060px -91px; - width: 90px; - height: 90px; -} -.head_special_lunarWarriorHelm { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1060px 0px; - width: 90px; - height: 90px; -} -.head_special_mammothRiderHelm { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -910px -910px; - width: 90px; - height: 90px; -} -.head_special_namingDay2017 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -819px -910px; - width: 90px; - height: 90px; -} -.head_special_pageHelm { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -728px -910px; - width: 90px; - height: 90px; -} -.head_special_pyromancersTurban { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -637px -910px; - width: 90px; - height: 90px; -} -.head_special_roguishRainbowMessengerHood { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -546px -910px; - width: 90px; - height: 90px; -} -.head_special_snowSovereignCrown { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -455px -910px; - width: 90px; - height: 90px; -} -.head_special_spikedHelm { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -364px -910px; - width: 90px; - height: 90px; -} -.head_special_turkeyHelmBase { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -345px -364px; - width: 114px; - height: 90px; -} -.head_warrior_1 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -182px -910px; - width: 90px; - height: 90px; -} -.head_warrior_2 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -91px -910px; - width: 90px; - height: 90px; -} -.head_warrior_3 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: 0px -910px; - width: 90px; - height: 90px; -} -.head_warrior_4 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -969px -819px; - width: 90px; - height: 90px; -} -.head_warrior_5 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -969px -728px; - width: 90px; - height: 90px; -} -.head_wizard_1 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -969px -637px; - width: 90px; - height: 90px; -} -.head_wizard_2 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -969px -546px; - width: 90px; - height: 90px; -} -.head_wizard_3 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -969px -455px; - width: 90px; - height: 90px; -} -.head_wizard_4 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -969px -364px; - width: 90px; - height: 90px; -} -.head_wizard_5 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -969px -273px; - width: 90px; - height: 90px; -} -.shop_head_healer_1 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1402px -138px; - width: 68px; - height: 68px; -} -.shop_head_healer_2 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1402px -207px; - width: 68px; - height: 68px; -} -.shop_head_healer_3 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1402px -276px; - width: 68px; - height: 68px; -} -.shop_head_healer_4 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1402px -345px; - width: 68px; - height: 68px; -} -.shop_head_healer_5 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1402px -414px; - width: 68px; - height: 68px; -} -.shop_head_rogue_1 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1402px -483px; - width: 68px; - height: 68px; -} -.shop_head_rogue_2 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1402px -552px; - width: 68px; - height: 68px; -} -.shop_head_rogue_3 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1402px -621px; - width: 68px; - height: 68px; -} -.shop_head_rogue_4 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1402px -690px; - width: 68px; - height: 68px; -} -.shop_head_rogue_5 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1402px -759px; - width: 68px; - height: 68px; -} -.shop_head_special_0 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1402px -828px; - width: 68px; - height: 68px; -} -.shop_head_special_1 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1402px -897px; - width: 68px; - height: 68px; -} -.shop_head_special_2 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1402px -966px; - width: 68px; - height: 68px; -} -.shop_head_special_bardHat { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1402px -1035px; - width: 68px; - height: 68px; -} -.shop_head_special_clandestineCowl { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1402px -1104px; - width: 68px; - height: 68px; -} -.shop_head_special_dandyHat { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1402px -1173px; - width: 68px; - height: 68px; -} -.shop_head_special_fireCoralCirclet { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1402px -1242px; - width: 68px; - height: 68px; -} -.shop_head_special_kabuto { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: 0px -1343px; - width: 68px; - height: 68px; -} -.shop_head_special_lunarWarriorHelm { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -69px -1343px; - width: 68px; - height: 68px; -} -.shop_head_special_mammothRiderHelm { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -138px -1343px; - width: 68px; - height: 68px; -} -.shop_head_special_namingDay2017 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1678px -414px; - width: 40px; - height: 40px; -} -.shop_head_special_pageHelm { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -276px -1343px; - width: 68px; - height: 68px; -} -.shop_head_special_pyromancersTurban { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -345px -1343px; - width: 68px; - height: 68px; -} -.shop_head_special_roguishRainbowMessengerHood { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -414px -1343px; - width: 68px; - height: 68px; -} -.shop_head_special_snowSovereignCrown { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -483px -1343px; - width: 68px; - height: 68px; -} -.shop_head_special_spikedHelm { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -552px -1343px; - width: 68px; - height: 68px; -} -.shop_head_special_turkeyHelmBase { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -621px -1343px; - width: 68px; - height: 68px; -} -.shop_head_warrior_1 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -690px -1343px; - width: 68px; - height: 68px; -} -.shop_head_warrior_2 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -759px -1343px; - width: 68px; - height: 68px; -} -.shop_head_warrior_3 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -828px -1343px; - width: 68px; - height: 68px; -} -.shop_head_warrior_4 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -897px -1343px; - width: 68px; - height: 68px; -} -.shop_head_warrior_5 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -966px -1343px; - width: 68px; - height: 68px; -} -.shop_head_wizard_1 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1035px -1343px; - width: 68px; - height: 68px; -} -.shop_head_wizard_2 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1104px -1343px; - width: 68px; - height: 68px; -} -.shop_head_wizard_3 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1173px -1343px; - width: 68px; - height: 68px; -} -.shop_head_wizard_4 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1242px -1343px; - width: 68px; - height: 68px; -} -.shop_head_wizard_5 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1311px -1343px; - width: 68px; - height: 68px; -} -.headAccessory_special_bearEars { +.broad_armor_special_winter2017Rogue { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); background-position: -969px -182px; width: 90px; height: 90px; } -.customize-option.headAccessory_special_bearEars { +.broad_armor_special_winter2017Warrior { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -994px -197px; - width: 60px; - height: 60px; + background-position: -969px -273px; + width: 90px; + height: 90px; } -.headAccessory_special_blackHeadband { +.broad_armor_special_winter2018Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: 0px -182px; + width: 114px; + height: 90px; +} +.broad_armor_special_winter2018Mage { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -115px -182px; + width: 114px; + height: 90px; +} +.broad_armor_special_winter2018Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -230px -182px; + width: 114px; + height: 90px; +} +.broad_armor_special_winter2018Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -345px 0px; + width: 114px; + height: 90px; +} +.broad_armor_special_yeti { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -637px -907px; + width: 90px; + height: 90px; +} +.head_special_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -728px -907px; + width: 90px; + height: 90px; +} +.head_special_nye { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1060px -91px; + width: 90px; + height: 90px; +} +.head_special_nye2014 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1060px -364px; + width: 90px; + height: 90px; +} +.head_special_nye2015 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1060px -455px; + width: 90px; + height: 90px; +} +.head_special_nye2016 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -637px -998px; + width: 90px; + height: 90px; +} +.head_special_nye2017 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1242px -364px; + width: 90px; + height: 90px; +} +.head_special_ski { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1242px -1001px; + width: 90px; + height: 90px; +} +.head_special_snowflake { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -91px -1180px; + width: 90px; + height: 90px; +} +.head_special_winter2015Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -819px -1180px; + width: 90px; + height: 90px; +} +.head_special_winter2015Mage { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -910px -1180px; + width: 90px; + height: 90px; +} +.head_special_winter2015Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -781px -91px; + width: 96px; + height: 90px; +} +.head_special_winter2015Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1092px -1180px; + width: 90px; + height: 90px; +} +.head_special_winter2016Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -781px -546px; + width: 93px; + height: 90px; +} +.head_special_winter2016Mage { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1333px -637px; + width: 90px; + height: 90px; +} +.head_special_winter2016Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -182px -1271px; + width: 90px; + height: 90px; +} +.head_special_winter2016Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -273px -1271px; + width: 90px; + height: 90px; +} +.head_special_winter2017Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -364px -1271px; + width: 90px; + height: 90px; +} +.head_special_winter2017Mage { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -455px -1271px; + width: 90px; + height: 90px; +} +.head_special_winter2017Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -910px -1271px; + width: 90px; + height: 90px; +} +.head_special_winter2017Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -690px -106px; + width: 90px; + height: 90px; +} +.head_special_winter2018Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: 0px -273px; + width: 114px; + height: 90px; +} +.head_special_winter2018Mage { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -115px -273px; + width: 114px; + height: 90px; +} +.head_special_winter2018Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -230px -273px; + width: 114px; + height: 90px; +} +.head_special_winter2018Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: 0px 0px; + width: 114px; + height: 90px; +} +.head_special_yeti { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -282px -725px; + width: 90px; + height: 90px; +} +.shield_special_ski { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: 0px -634px; + width: 104px; + height: 90px; +} +.shield_special_snowflake { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -464px -725px; + width: 90px; + height: 90px; +} +.shield_special_winter2015Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -555px -725px; + width: 90px; + height: 90px; +} +.shield_special_winter2015Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -781px 0px; + width: 96px; + height: 90px; +} +.shield_special_winter2015Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -737px -725px; + width: 90px; + height: 90px; +} +.shield_special_winter2016Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -781px -455px; + width: 93px; + height: 90px; +} +.shield_special_winter2016Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -878px -91px; + width: 90px; + height: 90px; +} +.shield_special_winter2016Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -878px -182px; + width: 90px; + height: 90px; +} +.shield_special_winter2017Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -878px -273px; + width: 90px; + height: 90px; +} +.shield_special_winter2017Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -610px -634px; + width: 96px; + height: 90px; +} +.shield_special_winter2017Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -878px -455px; + width: 90px; + height: 90px; +} +.shield_special_winter2018Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -460px 0px; + width: 114px; + height: 90px; +} +.shield_special_winter2018Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -460px -91px; + width: 114px; + height: 90px; +} +.shield_special_winter2018Warrior { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); background-position: -460px -182px; width: 114px; height: 90px; } +.shield_special_yeti { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -91px -816px; + width: 90px; + height: 90px; +} +.shop_armor_special_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1631px 0px; + width: 68px; + height: 68px; +} +.shop_armor_special_ski { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1518px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_snowflake { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1449px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_winter2015Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1380px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_winter2015Mage { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1311px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_winter2015Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1242px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_winter2015Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1173px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_winter2016Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1104px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_winter2016Mage { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1035px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_winter2016Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -966px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_winter2016Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -897px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_winter2017Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -828px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_winter2017Mage { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -759px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_winter2017Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -690px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_winter2017Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -621px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_winter2018Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -552px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_winter2018Mage { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -483px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_winter2018Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -414px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_winter2018Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -345px -1500px; + width: 68px; + height: 68px; +} +.shop_armor_special_yeti { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -276px -1500px; + width: 68px; + height: 68px; +} +.shop_head_special_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1562px -621px; + width: 68px; + height: 68px; +} +.shop_head_special_nye { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1562px -552px; + width: 68px; + height: 68px; +} +.shop_head_special_nye2014 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1562px -483px; + width: 68px; + height: 68px; +} +.shop_head_special_nye2015 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1562px -414px; + width: 68px; + height: 68px; +} +.shop_head_special_nye2016 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1562px -345px; + width: 68px; + height: 68px; +} +.shop_head_special_nye2017 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1562px -276px; + width: 68px; + height: 68px; +} +.shop_head_special_ski { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1562px -207px; + width: 68px; + height: 68px; +} +.shop_head_special_snowflake { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1562px -138px; + width: 68px; + height: 68px; +} +.shop_head_special_winter2015Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1562px -69px; + width: 68px; + height: 68px; +} +.shop_head_special_winter2015Mage { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1562px 0px; + width: 68px; + height: 68px; +} +.shop_head_special_winter2015Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1449px -1431px; + width: 68px; + height: 68px; +} +.shop_head_special_winter2015Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1380px -1431px; + width: 68px; + height: 68px; +} +.shop_head_special_winter2016Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1311px -1431px; + width: 68px; + height: 68px; +} +.shop_head_special_winter2016Mage { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1333px -1183px; + width: 68px; + height: 68px; +} +.shop_head_special_winter2016Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1173px -1431px; + width: 68px; + height: 68px; +} +.shop_head_special_winter2016Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1380px -1362px; + width: 68px; + height: 68px; +} +.shop_head_special_winter2017Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1311px -1362px; + width: 68px; + height: 68px; +} +.shop_head_special_winter2017Mage { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1242px -1362px; + width: 68px; + height: 68px; +} +.shop_head_special_winter2017Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1173px -1362px; + width: 68px; + height: 68px; +} +.shop_head_special_winter2017Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1104px -1362px; + width: 68px; + height: 68px; +} +.shop_head_special_winter2018Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1035px -1362px; + width: 68px; + height: 68px; +} +.shop_head_special_winter2018Mage { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -966px -1362px; + width: 68px; + height: 68px; +} +.shop_head_special_winter2018Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -897px -1362px; + width: 68px; + height: 68px; +} +.shop_head_special_winter2018Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -828px -1362px; + width: 68px; + height: 68px; +} +.shop_head_special_yeti { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -759px -1362px; + width: 68px; + height: 68px; +} +.shop_shield_special_ski { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -690px -1362px; + width: 68px; + height: 68px; +} +.shop_shield_special_snowflake { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -621px -1362px; + width: 68px; + height: 68px; +} +.shop_shield_special_winter2015Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -552px -1362px; + width: 68px; + height: 68px; +} +.shop_shield_special_winter2015Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -483px -1362px; + width: 68px; + height: 68px; +} +.shop_shield_special_winter2015Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -414px -1362px; + width: 68px; + height: 68px; +} +.shop_shield_special_winter2016Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -345px -1362px; + width: 68px; + height: 68px; +} +.shop_shield_special_winter2016Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -276px -1362px; + width: 68px; + height: 68px; +} +.shop_shield_special_winter2016Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -207px -1362px; + width: 68px; + height: 68px; +} +.shop_shield_special_winter2017Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -138px -1362px; + width: 68px; + height: 68px; +} +.shop_shield_special_winter2017Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -69px -1362px; + width: 68px; + height: 68px; +} +.shop_shield_special_winter2017Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: 0px -1362px; + width: 68px; + height: 68px; +} +.shop_shield_special_winter2018Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1424px -1242px; + width: 68px; + height: 68px; +} +.shop_shield_special_winter2018Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1424px -1173px; + width: 68px; + height: 68px; +} +.shop_shield_special_winter2018Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1424px -1104px; + width: 68px; + height: 68px; +} +.shop_shield_special_yeti { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1424px -1035px; + width: 68px; + height: 68px; +} +.shop_weapon_special_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1424px -966px; + width: 68px; + height: 68px; +} +.shop_weapon_special_ski { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1424px -897px; + width: 68px; + height: 68px; +} +.shop_weapon_special_snowflake { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1424px -828px; + width: 68px; + height: 68px; +} +.shop_weapon_special_winter2015Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1424px -759px; + width: 68px; + height: 68px; +} +.shop_weapon_special_winter2015Mage { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1424px -690px; + width: 68px; + height: 68px; +} +.shop_weapon_special_winter2015Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1424px -621px; + width: 68px; + height: 68px; +} +.shop_weapon_special_winter2015Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1424px -552px; + width: 68px; + height: 68px; +} +.shop_weapon_special_winter2016Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1424px -483px; + width: 68px; + height: 68px; +} +.shop_weapon_special_winter2016Mage { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1424px -414px; + width: 68px; + height: 68px; +} +.shop_weapon_special_winter2016Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1424px -345px; + width: 68px; + height: 68px; +} +.shop_weapon_special_winter2016Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1424px -276px; + width: 68px; + height: 68px; +} +.shop_weapon_special_winter2017Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -598px -546px; + width: 68px; + height: 68px; +} +.shop_weapon_special_winter2017Mage { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -529px -546px; + width: 68px; + height: 68px; +} +.shop_weapon_special_winter2017Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -460px -546px; + width: 68px; + height: 68px; +} +.shop_weapon_special_winter2017Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -391px -546px; + width: 68px; + height: 68px; +} +.shop_weapon_special_winter2018Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -322px -546px; + width: 68px; + height: 68px; +} +.shop_weapon_special_winter2018Mage { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -253px -546px; + width: 68px; + height: 68px; +} +.shop_weapon_special_winter2018Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -184px -546px; + width: 68px; + height: 68px; +} +.shop_weapon_special_winter2018Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -115px -546px; + width: 68px; + height: 68px; +} +.shop_weapon_special_yeti { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1242px -1092px; + width: 68px; + height: 68px; +} +.slim_armor_special_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1242px -546px; + width: 90px; + height: 90px; +} +.slim_armor_special_ski { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1242px -637px; + width: 90px; + height: 90px; +} +.slim_armor_special_snowflake { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1242px -728px; + width: 90px; + height: 90px; +} +.slim_armor_special_winter2015Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1242px -819px; + width: 90px; + height: 90px; +} +.slim_armor_special_winter2015Mage { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1242px -910px; + width: 90px; + height: 90px; +} +.slim_armor_special_winter2015Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -416px -634px; + width: 96px; + height: 90px; +} +.slim_armor_special_winter2015Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: 0px -1180px; + width: 90px; + height: 90px; +} +.slim_armor_special_winter2016Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -94px -725px; + width: 93px; + height: 90px; +} +.slim_armor_special_winter2016Mage { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -182px -1180px; + width: 90px; + height: 90px; +} +.slim_armor_special_winter2016Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -273px -1180px; + width: 90px; + height: 90px; +} +.slim_armor_special_winter2016Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -364px -1180px; + width: 90px; + height: 90px; +} +.slim_armor_special_winter2017Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -455px -1180px; + width: 90px; + height: 90px; +} +.slim_armor_special_winter2017Mage { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -546px -1180px; + width: 90px; + height: 90px; +} +.slim_armor_special_winter2017Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -637px -1180px; + width: 90px; + height: 90px; +} +.slim_armor_special_winter2017Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -728px -1180px; + width: 90px; + height: 90px; +} +.slim_armor_special_winter2018Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: 0px -364px; + width: 114px; + height: 90px; +} +.slim_armor_special_winter2018Mage { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -345px -182px; + width: 114px; + height: 90px; +} +.slim_armor_special_winter2018Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -345px -91px; + width: 114px; + height: 90px; +} +.slim_armor_special_winter2018Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -230px -91px; + width: 114px; + height: 90px; +} +.slim_armor_special_yeti { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1183px -1180px; + width: 90px; + height: 90px; +} +.weapon_special_candycane { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1333px 0px; + width: 90px; + height: 90px; +} +.weapon_special_ski { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1333px -91px; + width: 90px; + height: 90px; +} +.weapon_special_snowflake { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1333px -182px; + width: 90px; + height: 90px; +} +.weapon_special_winter2015Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1333px -273px; + width: 90px; + height: 90px; +} +.weapon_special_winter2015Mage { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1333px -364px; + width: 90px; + height: 90px; +} +.weapon_special_winter2015Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -781px -273px; + width: 96px; + height: 90px; +} +.weapon_special_winter2015Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1333px -546px; + width: 90px; + height: 90px; +} +.weapon_special_winter2016Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -781px -364px; + width: 93px; + height: 90px; +} +.weapon_special_winter2016Mage { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1333px -728px; + width: 90px; + height: 90px; +} +.weapon_special_winter2016Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1333px -819px; + width: 90px; + height: 90px; +} +.weapon_special_winter2016Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1333px -910px; + width: 90px; + height: 90px; +} +.weapon_special_winter2017Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1333px -1001px; + width: 90px; + height: 90px; +} +.weapon_special_winter2017Mage { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1333px -1092px; + width: 90px; + height: 90px; +} +.weapon_special_winter2017Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: 0px -1271px; + width: 90px; + height: 90px; +} +.weapon_special_winter2017Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -91px -1271px; + width: 90px; + height: 90px; +} +.weapon_special_winter2018Healer { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -230px 0px; + width: 114px; + height: 90px; +} +.weapon_special_winter2018Mage { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -115px -91px; + width: 114px; + height: 90px; +} +.weapon_special_winter2018Rogue { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: 0px -91px; + width: 114px; + height: 90px; +} +.weapon_special_winter2018Warrior { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -345px -273px; + width: 114px; + height: 90px; +} +.weapon_special_yeti { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -546px -1271px; + width: 90px; + height: 90px; +} +.back_special_wondercon_black { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -637px -1271px; + width: 90px; + height: 90px; +} +.back_special_wondercon_red { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -728px -1271px; + width: 90px; + height: 90px; +} +.body_special_wondercon_black { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -819px -1271px; + width: 90px; + height: 90px; +} +.body_special_wondercon_gold { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -969px -364px; + width: 90px; + height: 90px; +} +.body_special_wondercon_red { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1001px -1271px; + width: 90px; + height: 90px; +} +.eyewear_special_wondercon_black { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1092px -1271px; + width: 90px; + height: 90px; +} +.eyewear_special_wondercon_red { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1242px -455px; + width: 90px; + height: 90px; +} +.shop_back_special_wondercon_black { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1242px -1431px; + width: 68px; + height: 68px; +} +.shop_back_special_wondercon_red { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1151px -1001px; + width: 68px; + height: 68px; +} +.shop_body_special_wondercon_black { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1060px -910px; + width: 68px; + height: 68px; +} +.shop_body_special_wondercon_gold { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -969px -819px; + width: 68px; + height: 68px; +} +.shop_body_special_wondercon_red { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -878px -728px; + width: 68px; + height: 68px; +} +.shop_eyewear_special_wondercon_black { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -781px -637px; + width: 68px; + height: 68px; +} +.shop_eyewear_special_wondercon_red { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -690px -561px; + width: 68px; + height: 68px; +} +.eyewear_special_aetherMask { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -115px -364px; + width: 114px; + height: 90px; +} +.eyewear_special_blackTopFrame { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1242px -273px; + width: 90px; + height: 90px; +} +.customize-option.eyewear_special_blackTopFrame { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1267px -288px; + width: 60px; + height: 60px; +} +.eyewear_special_blueTopFrame { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1242px -182px; + width: 90px; + height: 90px; +} +.customize-option.eyewear_special_blueTopFrame { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1267px -197px; + width: 60px; + height: 60px; +} +.eyewear_special_greenTopFrame { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1242px -91px; + width: 90px; + height: 90px; +} +.customize-option.eyewear_special_greenTopFrame { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1267px -106px; + width: 60px; + height: 60px; +} +.eyewear_special_pinkTopFrame { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1242px 0px; + width: 90px; + height: 90px; +} +.customize-option.eyewear_special_pinkTopFrame { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1267px -15px; + width: 60px; + height: 60px; +} +.eyewear_special_redTopFrame { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1092px -1089px; + width: 90px; + height: 90px; +} +.customize-option.eyewear_special_redTopFrame { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1117px -1104px; + width: 60px; + height: 60px; +} +.eyewear_special_whiteTopFrame { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1001px -1089px; + width: 90px; + height: 90px; +} +.customize-option.eyewear_special_whiteTopFrame { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1026px -1104px; + width: 60px; + height: 60px; +} +.eyewear_special_yellowTopFrame { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -910px -1089px; + width: 90px; + height: 90px; +} +.customize-option.eyewear_special_yellowTopFrame { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -935px -1104px; + width: 60px; + height: 60px; +} +.shop_eyewear_special_aetherMask { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -707px -634px; + width: 68px; + height: 68px; +} +.shop_eyewear_special_blackTopFrame { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1183px -1271px; + width: 68px; + height: 68px; +} +.shop_eyewear_special_blueTopFrame { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1252px -1271px; + width: 68px; + height: 68px; +} +.shop_eyewear_special_greenTopFrame { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1321px -1271px; + width: 68px; + height: 68px; +} +.shop_eyewear_special_pinkTopFrame { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1424px 0px; + width: 68px; + height: 68px; +} +.shop_eyewear_special_redTopFrame { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1424px -69px; + width: 68px; + height: 68px; +} +.shop_eyewear_special_whiteTopFrame { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1424px -138px; + width: 68px; + height: 68px; +} +.shop_eyewear_special_yellowTopFrame { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1424px -207px; + width: 68px; + height: 68px; +} +.headAccessory_special_bearEars { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1060px -546px; + width: 90px; + height: 90px; +} +.customize-option.headAccessory_special_bearEars { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1085px -561px; + width: 60px; + height: 60px; +} +.headAccessory_special_blackHeadband { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -345px -364px; + width: 114px; + height: 90px; +} .headAccessory_special_blueHeadband { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: 0px -455px; + background-position: -460px -273px; width: 114px; height: 90px; } .headAccessory_special_cactusEars { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -819px -819px; + background-position: -1060px -273px; width: 90px; height: 90px; } .customize-option.headAccessory_special_cactusEars { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -844px -834px; + background-position: -1085px -288px; width: 60px; height: 60px; } .headAccessory_special_foxEars { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -728px -819px; + background-position: -1060px -182px; width: 90px; height: 90px; } .customize-option.headAccessory_special_foxEars { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -753px -834px; + background-position: -1085px -197px; width: 60px; height: 60px; } .headAccessory_special_greenHeadband { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -575px 0px; + background-position: -460px -364px; width: 114px; height: 90px; } .headAccessory_special_lionEars { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -546px -819px; + background-position: -1060px 0px; width: 90px; height: 90px; } .customize-option.headAccessory_special_lionEars { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -571px -834px; + background-position: -1085px -15px; width: 60px; height: 60px; } .headAccessory_special_pandaEars { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -455px -819px; + background-position: -910px -907px; width: 90px; height: 90px; } .customize-option.headAccessory_special_pandaEars { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -480px -834px; + background-position: -935px -922px; width: 60px; height: 60px; } .headAccessory_special_pigEars { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -364px -819px; + background-position: -819px -907px; width: 90px; height: 90px; } .customize-option.headAccessory_special_pigEars { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -389px -834px; + background-position: -844px -922px; width: 60px; height: 60px; } .headAccessory_special_pinkHeadband { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -460px -455px; + background-position: -115px -455px; width: 114px; height: 90px; } @@ -1758,211 +1500,655 @@ } .headAccessory_special_tigerEars { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -91px -819px; + background-position: -546px -907px; width: 90px; height: 90px; } .customize-option.headAccessory_special_tigerEars { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -116px -834px; + background-position: -571px -922px; width: 60px; height: 60px; } .headAccessory_special_whiteHeadband { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -230px -455px; + background-position: -460px -455px; width: 114px; height: 90px; } .headAccessory_special_wolfEars { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -878px -728px; + background-position: -364px -907px; width: 90px; height: 90px; } .customize-option.headAccessory_special_wolfEars { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -903px -743px; + background-position: -389px -922px; width: 60px; height: 60px; } .headAccessory_special_yellowHeadband { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -115px -455px; + background-position: -575px 0px; width: 114px; height: 90px; } .shop_headAccessory_special_bearEars { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1471px -966px; + background-position: -1562px -690px; width: 68px; height: 68px; } .shop_headAccessory_special_blackHeadband { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1471px -1035px; + background-position: -1562px -759px; width: 68px; height: 68px; } .shop_headAccessory_special_blueHeadband { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1471px -1104px; + background-position: -1562px -828px; width: 68px; height: 68px; } .shop_headAccessory_special_cactusEars { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1471px -1173px; + background-position: -1562px -897px; width: 68px; height: 68px; } .shop_headAccessory_special_foxEars { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1471px -1242px; + background-position: -1562px -966px; width: 68px; height: 68px; } .shop_headAccessory_special_greenHeadband { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1471px -1311px; + background-position: -1562px -1035px; width: 68px; height: 68px; } .shop_headAccessory_special_lionEars { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: 0px -1412px; + background-position: -1562px -1104px; width: 68px; height: 68px; } .shop_headAccessory_special_pandaEars { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -69px -1412px; + background-position: -1562px -1173px; width: 68px; height: 68px; } .shop_headAccessory_special_pigEars { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -138px -1412px; + background-position: -1562px -1242px; width: 68px; height: 68px; } .shop_headAccessory_special_pinkHeadband { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -207px -1412px; + background-position: -1562px -1311px; width: 68px; height: 68px; } .shop_headAccessory_special_redHeadband { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -276px -1412px; + background-position: -1562px -1380px; width: 68px; height: 68px; } .shop_headAccessory_special_tigerEars { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -345px -1412px; + background-position: 0px -1500px; width: 68px; height: 68px; } .shop_headAccessory_special_whiteHeadband { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -414px -1412px; + background-position: -69px -1500px; width: 68px; height: 68px; } .shop_headAccessory_special_wolfEars { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -483px -1412px; + background-position: -138px -1500px; width: 68px; height: 68px; } .shop_headAccessory_special_yellowHeadband { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -552px -1412px; + background-position: -207px -1500px; + width: 68px; + height: 68px; +} +.head_0 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -819px -1089px; + width: 90px; + height: 90px; +} +.customize-option.head_0 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -844px -1104px; + width: 60px; + height: 60px; +} +.head_healer_1 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -728px -1089px; + width: 90px; + height: 90px; +} +.head_healer_2 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -637px -1089px; + width: 90px; + height: 90px; +} +.head_healer_3 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -546px -1089px; + width: 90px; + height: 90px; +} +.head_healer_4 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -455px -1089px; + width: 90px; + height: 90px; +} +.head_healer_5 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -364px -1089px; + width: 90px; + height: 90px; +} +.head_rogue_1 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -273px -1089px; + width: 90px; + height: 90px; +} +.head_rogue_2 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -182px -1089px; + width: 90px; + height: 90px; +} +.head_rogue_3 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -91px -1089px; + width: 90px; + height: 90px; +} +.head_rogue_4 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: 0px -1089px; + width: 90px; + height: 90px; +} +.head_rogue_5 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1151px -910px; + width: 90px; + height: 90px; +} +.head_special_2 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1151px -819px; + width: 90px; + height: 90px; +} +.head_special_bardHat { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1151px -728px; + width: 90px; + height: 90px; +} +.head_special_clandestineCowl { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1151px -637px; + width: 90px; + height: 90px; +} +.head_special_dandyHat { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1151px -546px; + width: 90px; + height: 90px; +} +.head_special_fireCoralCirclet { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1151px -455px; + width: 90px; + height: 90px; +} +.head_special_kabuto { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1151px -364px; + width: 90px; + height: 90px; +} +.head_special_lunarWarriorHelm { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1151px -273px; + width: 90px; + height: 90px; +} +.head_special_mammothRiderHelm { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1151px -182px; + width: 90px; + height: 90px; +} +.head_special_namingDay2017 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1151px -91px; + width: 90px; + height: 90px; +} +.head_special_pageHelm { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1151px 0px; + width: 90px; + height: 90px; +} +.head_special_pyromancersTurban { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1001px -998px; + width: 90px; + height: 90px; +} +.head_special_roguishRainbowMessengerHood { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -910px -998px; + width: 90px; + height: 90px; +} +.head_special_snowSovereignCrown { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -819px -998px; + width: 90px; + height: 90px; +} +.head_special_spikedHelm { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -728px -998px; + width: 90px; + height: 90px; +} +.head_special_turkeyHelmBase { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -230px -364px; + width: 114px; + height: 90px; +} +.head_warrior_1 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -546px -998px; + width: 90px; + height: 90px; +} +.head_warrior_2 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -455px -998px; + width: 90px; + height: 90px; +} +.head_warrior_3 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -364px -998px; + width: 90px; + height: 90px; +} +.head_warrior_4 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -273px -998px; + width: 90px; + height: 90px; +} +.head_warrior_5 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -182px -998px; + width: 90px; + height: 90px; +} +.head_wizard_1 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -91px -998px; + width: 90px; + height: 90px; +} +.head_wizard_2 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: 0px -998px; + width: 90px; + height: 90px; +} +.head_wizard_3 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1060px -819px; + width: 90px; + height: 90px; +} +.head_wizard_4 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1060px -728px; + width: 90px; + height: 90px; +} +.head_wizard_5 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1060px -637px; + width: 90px; + height: 90px; +} +.shop_head_healer_1 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1493px 0px; + width: 68px; + height: 68px; +} +.shop_head_healer_2 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1493px -69px; + width: 68px; + height: 68px; +} +.shop_head_healer_3 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1493px -138px; + width: 68px; + height: 68px; +} +.shop_head_healer_4 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1493px -207px; + width: 68px; + height: 68px; +} +.shop_head_healer_5 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1493px -276px; + width: 68px; + height: 68px; +} +.shop_head_rogue_1 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1493px -345px; + width: 68px; + height: 68px; +} +.shop_head_rogue_2 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1493px -414px; + width: 68px; + height: 68px; +} +.shop_head_rogue_3 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1493px -483px; + width: 68px; + height: 68px; +} +.shop_head_rogue_4 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1493px -552px; + width: 68px; + height: 68px; +} +.shop_head_rogue_5 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1493px -621px; + width: 68px; + height: 68px; +} +.shop_head_special_0 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1493px -690px; + width: 68px; + height: 68px; +} +.shop_head_special_1 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1493px -759px; + width: 68px; + height: 68px; +} +.shop_head_special_2 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1493px -828px; + width: 68px; + height: 68px; +} +.shop_head_special_bardHat { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1493px -897px; + width: 68px; + height: 68px; +} +.shop_head_special_clandestineCowl { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1493px -966px; + width: 68px; + height: 68px; +} +.shop_head_special_dandyHat { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1493px -1035px; + width: 68px; + height: 68px; +} +.shop_head_special_fireCoralCirclet { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1493px -1104px; + width: 68px; + height: 68px; +} +.shop_head_special_kabuto { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1493px -1173px; + width: 68px; + height: 68px; +} +.shop_head_special_lunarWarriorHelm { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1493px -1242px; + width: 68px; + height: 68px; +} +.shop_head_special_mammothRiderHelm { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1493px -1311px; + width: 68px; + height: 68px; +} +.shop_head_special_namingDay2017 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1700px -276px; + width: 40px; + height: 40px; +} +.shop_head_special_pageHelm { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -69px -1431px; + width: 68px; + height: 68px; +} +.shop_head_special_pyromancersTurban { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -138px -1431px; + width: 68px; + height: 68px; +} +.shop_head_special_roguishRainbowMessengerHood { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -207px -1431px; + width: 68px; + height: 68px; +} +.shop_head_special_snowSovereignCrown { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -276px -1431px; + width: 68px; + height: 68px; +} +.shop_head_special_spikedHelm { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -345px -1431px; + width: 68px; + height: 68px; +} +.shop_head_special_turkeyHelmBase { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -414px -1431px; + width: 68px; + height: 68px; +} +.shop_head_warrior_1 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -483px -1431px; + width: 68px; + height: 68px; +} +.shop_head_warrior_2 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -552px -1431px; + width: 68px; + height: 68px; +} +.shop_head_warrior_3 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -621px -1431px; + width: 68px; + height: 68px; +} +.shop_head_warrior_4 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -690px -1431px; + width: 68px; + height: 68px; +} +.shop_head_warrior_5 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -759px -1431px; + width: 68px; + height: 68px; +} +.shop_head_wizard_1 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -828px -1431px; + width: 68px; + height: 68px; +} +.shop_head_wizard_2 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -897px -1431px; + width: 68px; + height: 68px; +} +.shop_head_wizard_3 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -966px -1431px; + width: 68px; + height: 68px; +} +.shop_head_wizard_4 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1035px -1431px; + width: 68px; + height: 68px; +} +.shop_head_wizard_5 { + background-image: url('~assets/images/sprites/spritesmith-main-9.png'); + background-position: -1104px -1431px; width: 68px; height: 68px; } .shield_healer_1 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -878px -546px; + background-position: -182px -907px; width: 90px; height: 90px; } .shield_healer_2 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -878px -455px; + background-position: -91px -907px; width: 90px; height: 90px; } .shield_healer_3 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -878px -364px; + background-position: 0px -907px; width: 90px; height: 90px; } .shield_healer_4 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -878px -273px; + background-position: -969px -728px; width: 90px; height: 90px; } .shield_healer_5 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -878px -182px; + background-position: -969px -637px; width: 90px; height: 90px; } .shield_rogue_0 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -878px -91px; + background-position: -969px -546px; width: 90px; height: 90px; } .shield_rogue_1 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -575px -449px; + background-position: -105px -634px; width: 103px; height: 90px; } .shield_rogue_2 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: 0px -546px; + background-position: -209px -634px; width: 103px; height: 90px; } .shield_rogue_3 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -460px -273px; + background-position: -230px -455px; width: 114px; height: 90px; } .shield_rogue_4 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -304px -546px; + background-position: -513px -634px; width: 96px; height: 90px; } .shield_rogue_5 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -460px -91px; + background-position: 0px -455px; width: 114px; height: 90px; } .shield_rogue_6 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -460px 0px; + background-position: -115px 0px; width: 114px; height: 90px; } .shield_special_1 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -273px -728px; + background-position: -819px -816px; width: 90px; height: 90px; } .shield_special_diamondStave { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -104px -546px; + background-position: -313px -634px; width: 102px; height: 90px; } @@ -1974,571 +2160,331 @@ } .shield_special_lootBag { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: 0px -728px; + background-position: -546px -816px; width: 90px; height: 90px; } .shield_special_mammothRiderHorn { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -787px -637px; + background-position: -455px -816px; width: 90px; height: 90px; } .shield_special_moonpearlShield { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -787px -546px; + background-position: -364px -816px; width: 90px; height: 90px; } .shield_special_roguishRainbowMessage { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -787px -455px; + background-position: -273px -816px; width: 90px; height: 90px; } .shield_special_wakizashi { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -575px -270px; + background-position: 0px -546px; width: 114px; height: 87px; } .shield_special_wintryMirror { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -575px -182px; + background-position: -575px -452px; width: 114px; height: 87px; } .shield_warrior_1 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -787px -182px; + background-position: -1333px -455px; width: 90px; height: 90px; } .shield_warrior_2 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -787px -91px; + background-position: -1001px -1180px; width: 90px; height: 90px; } .shield_warrior_3 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -787px 0px; + background-position: -455px -907px; width: 90px; height: 90px; } .shield_warrior_4 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -637px -637px; + background-position: -273px -907px; width: 90px; height: 90px; } .shield_warrior_5 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -546px -637px; + background-position: -969px -455px; width: 90px; height: 90px; } .shop_shield_healer_1 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1540px -897px; + background-position: -1631px -483px; width: 68px; height: 68px; } .shop_shield_healer_2 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1540px -966px; + background-position: -1631px -552px; width: 68px; height: 68px; } .shop_shield_healer_3 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1540px -1035px; + background-position: -1631px -621px; width: 68px; height: 68px; } .shop_shield_healer_4 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1540px -1104px; + background-position: -1631px -690px; width: 68px; height: 68px; } .shop_shield_healer_5 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1540px -1173px; + background-position: -1631px -759px; width: 68px; height: 68px; } .shop_shield_rogue_0 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1540px -1242px; + background-position: -1631px -828px; width: 68px; height: 68px; } .shop_shield_rogue_1 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1540px -1311px; + background-position: -1631px -897px; width: 68px; height: 68px; } .shop_shield_rogue_2 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1540px -1380px; + background-position: -1631px -966px; width: 68px; height: 68px; } .shop_shield_rogue_3 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: 0px -1481px; + background-position: -1631px -1035px; width: 68px; height: 68px; } .shop_shield_rogue_4 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -69px -1481px; + background-position: -1631px -1104px; width: 68px; height: 68px; } .shop_shield_rogue_5 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -138px -1481px; + background-position: -1631px -1173px; width: 68px; height: 68px; } .shop_shield_rogue_6 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -207px -1481px; + background-position: -1631px -1242px; width: 68px; height: 68px; } .shop_shield_special_0 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -276px -1481px; + background-position: -1631px -1311px; width: 68px; height: 68px; } .shop_shield_special_1 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -345px -1481px; + background-position: -1631px -1380px; width: 68px; height: 68px; } .shop_shield_special_diamondStave { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -414px -1481px; + background-position: -1631px -1449px; width: 68px; height: 68px; } .shop_shield_special_goldenknight { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -483px -1481px; + background-position: 0px -1569px; width: 68px; height: 68px; } .shop_shield_special_lootBag { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -552px -1481px; + background-position: -69px -1569px; width: 68px; height: 68px; } .shop_shield_special_mammothRiderHorn { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -621px -1481px; + background-position: -138px -1569px; width: 68px; height: 68px; } .shop_shield_special_moonpearlShield { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -690px -1481px; + background-position: -207px -1569px; width: 68px; height: 68px; } .shop_shield_special_roguishRainbowMessage { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -759px -1481px; + background-position: -276px -1569px; width: 68px; height: 68px; } .shop_shield_special_wakizashi { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -828px -1481px; + background-position: -345px -1569px; width: 68px; height: 68px; } .shop_shield_special_wintryMirror { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -897px -1481px; + background-position: -414px -1569px; width: 68px; height: 68px; } .shop_shield_warrior_1 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -966px -1481px; + background-position: -483px -1569px; width: 68px; height: 68px; } .shop_shield_warrior_2 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1035px -1481px; + background-position: -552px -1569px; width: 68px; height: 68px; } .shop_shield_warrior_3 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1104px -1481px; + background-position: -621px -1569px; width: 68px; height: 68px; } .shop_shield_warrior_4 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1173px -1481px; + background-position: -690px -1569px; width: 68px; height: 68px; } .shop_shield_warrior_5 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1242px -1481px; + background-position: -759px -1569px; width: 68px; height: 68px; } .shop_weapon_healer_0 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1311px -1481px; + background-position: -828px -1569px; width: 68px; height: 68px; } .shop_weapon_healer_1 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1380px -1481px; + background-position: -897px -1569px; width: 68px; height: 68px; } .shop_weapon_healer_2 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1449px -1481px; + background-position: -966px -1569px; width: 68px; height: 68px; } .shop_weapon_healer_3 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1518px -1481px; + background-position: -1035px -1569px; width: 68px; height: 68px; } .shop_weapon_healer_4 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1609px 0px; + background-position: -1104px -1569px; width: 68px; height: 68px; } .shop_weapon_healer_5 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1609px -69px; + background-position: -1173px -1569px; width: 68px; height: 68px; } .shop_weapon_healer_6 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1609px -138px; + background-position: -1242px -1569px; width: 68px; height: 68px; } .shop_weapon_rogue_0 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1609px -207px; + background-position: -1311px -1569px; width: 68px; height: 68px; } .shop_weapon_rogue_1 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1609px -276px; + background-position: -1380px -1569px; width: 68px; height: 68px; } .shop_weapon_rogue_2 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1609px -345px; + background-position: -1449px -1569px; width: 68px; height: 68px; } .shop_weapon_rogue_3 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1609px -414px; + background-position: -1518px -1569px; width: 68px; height: 68px; } .shop_weapon_rogue_4 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1609px -483px; + background-position: -1587px -1569px; width: 68px; height: 68px; } .shop_weapon_rogue_5 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1609px -552px; + background-position: -1700px 0px; width: 68px; height: 68px; } .shop_weapon_rogue_6 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1609px -621px; + background-position: -1700px -69px; width: 68px; height: 68px; } .shop_weapon_special_0 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1609px -690px; + background-position: -1700px -138px; width: 68px; height: 68px; } .shop_weapon_special_1 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1609px -759px; + background-position: 0px -1431px; width: 68px; height: 68px; } .shop_weapon_special_2 { background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1609px -828px; + background-position: -1700px -207px; width: 68px; height: 68px; } -.shop_weapon_special_3 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1609px -897px; - width: 68px; - height: 68px; -} -.shop_weapon_special_aetherCrystals { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1609px -966px; - width: 68px; - height: 68px; -} -.shop_weapon_special_bardInstrument { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1609px -1035px; - width: 68px; - height: 68px; -} -.shop_weapon_special_critical { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1609px -1104px; - width: 68px; - height: 68px; -} -.shop_weapon_special_fencingFoil { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1609px -1173px; - width: 68px; - height: 68px; -} -.shop_weapon_special_lunarScythe { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1609px -1242px; - width: 68px; - height: 68px; -} -.shop_weapon_special_mammothRiderSpear { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1609px -1311px; - width: 68px; - height: 68px; -} -.shop_weapon_special_nomadsScimitar { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1609px -1380px; - width: 68px; - height: 68px; -} -.shop_weapon_special_pageBanner { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1609px -1449px; - width: 68px; - height: 68px; -} -.shop_weapon_special_roguishRainbowMessage { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: 0px -1550px; - width: 68px; - height: 68px; -} -.shop_weapon_special_skeletonKey { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -69px -1550px; - width: 68px; - height: 68px; -} -.shop_weapon_special_tachi { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -138px -1550px; - width: 68px; - height: 68px; -} -.shop_weapon_special_taskwoodsLantern { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -207px -1550px; - width: 68px; - height: 68px; -} -.shop_weapon_special_tridentOfCrashingTides { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -276px -1550px; - width: 68px; - height: 68px; -} -.shop_weapon_warrior_0 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -345px -1550px; - width: 68px; - height: 68px; -} -.shop_weapon_warrior_1 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -414px -1550px; - width: 68px; - height: 68px; -} -.shop_weapon_warrior_2 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -483px -1550px; - width: 68px; - height: 68px; -} -.shop_weapon_warrior_3 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -552px -1550px; - width: 68px; - height: 68px; -} -.shop_weapon_warrior_4 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -621px -1550px; - width: 68px; - height: 68px; -} -.shop_weapon_warrior_5 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -690px -1550px; - width: 68px; - height: 68px; -} -.shop_weapon_warrior_6 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -759px -1550px; - width: 68px; - height: 68px; -} -.shop_weapon_wizard_0 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -828px -1550px; - width: 68px; - height: 68px; -} -.shop_weapon_wizard_1 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -897px -1550px; - width: 68px; - height: 68px; -} -.shop_weapon_wizard_2 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -966px -1550px; - width: 68px; - height: 68px; -} -.shop_weapon_wizard_3 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1035px -1550px; - width: 68px; - height: 68px; -} -.shop_weapon_wizard_4 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1104px -1550px; - width: 68px; - height: 68px; -} -.shop_weapon_wizard_5 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1173px -1550px; - width: 68px; - height: 68px; -} -.shop_weapon_wizard_6 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1242px -1550px; - width: 68px; - height: 68px; -} -.weapon_healer_0 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -455px -637px; - width: 90px; - height: 90px; -} -.weapon_healer_1 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -364px -637px; - width: 90px; - height: 90px; -} -.weapon_healer_2 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -273px -637px; - width: 90px; - height: 90px; -} -.weapon_healer_3 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -182px -637px; - width: 90px; - height: 90px; -} -.weapon_healer_4 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -91px -637px; - width: 90px; - height: 90px; -} -.weapon_healer_5 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: 0px -637px; - width: 90px; - height: 90px; -} -.weapon_healer_6 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -595px -546px; - width: 90px; - height: 90px; -} -.weapon_rogue_0 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -690px -546px; - width: 90px; - height: 90px; -} -.weapon_rogue_1 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -273px -1183px; - width: 90px; - height: 90px; -} -.weapon_rogue_2 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1242px 0px; - width: 90px; - height: 90px; -} -.weapon_rogue_3 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -1092px -1092px; - width: 90px; - height: 90px; -} -.weapon_rogue_4 { - background-image: url('~assets/images/sprites/spritesmith-main-9.png'); - background-position: -910px -1092px; - width: 90px; - height: 90px; -} diff --git a/website/client/assets/images/sprites/spritesmith-largeSprites-0.png b/website/client/assets/images/sprites/spritesmith-largeSprites-0.png index 99449669aa..f092254f18 100644 Binary files a/website/client/assets/images/sprites/spritesmith-largeSprites-0.png and b/website/client/assets/images/sprites/spritesmith-largeSprites-0.png differ diff --git a/website/client/assets/images/sprites/spritesmith-main-0.png b/website/client/assets/images/sprites/spritesmith-main-0.png index 713255bdc4..52f78c3da7 100644 Binary files a/website/client/assets/images/sprites/spritesmith-main-0.png and b/website/client/assets/images/sprites/spritesmith-main-0.png differ diff --git a/website/client/assets/images/sprites/spritesmith-main-1.png b/website/client/assets/images/sprites/spritesmith-main-1.png index fe91cdfd0e..bdef46c72b 100644 Binary files a/website/client/assets/images/sprites/spritesmith-main-1.png and b/website/client/assets/images/sprites/spritesmith-main-1.png differ diff --git a/website/client/assets/images/sprites/spritesmith-main-10.png b/website/client/assets/images/sprites/spritesmith-main-10.png index ca1ca0165a..c6f2220b66 100644 Binary files a/website/client/assets/images/sprites/spritesmith-main-10.png and b/website/client/assets/images/sprites/spritesmith-main-10.png differ diff --git a/website/client/assets/images/sprites/spritesmith-main-11.png b/website/client/assets/images/sprites/spritesmith-main-11.png index f178d67eb4..16bf3e711b 100644 Binary files a/website/client/assets/images/sprites/spritesmith-main-11.png and b/website/client/assets/images/sprites/spritesmith-main-11.png differ diff --git a/website/client/assets/images/sprites/spritesmith-main-12.png b/website/client/assets/images/sprites/spritesmith-main-12.png index 1d9a4e8c85..7317aeb48b 100644 Binary files a/website/client/assets/images/sprites/spritesmith-main-12.png and b/website/client/assets/images/sprites/spritesmith-main-12.png differ diff --git a/website/client/assets/images/sprites/spritesmith-main-13.png b/website/client/assets/images/sprites/spritesmith-main-13.png index 9bd372cdf4..beb21be276 100644 Binary files a/website/client/assets/images/sprites/spritesmith-main-13.png and b/website/client/assets/images/sprites/spritesmith-main-13.png differ diff --git a/website/client/assets/images/sprites/spritesmith-main-14.png b/website/client/assets/images/sprites/spritesmith-main-14.png index 1aa232d156..398ed9bcb7 100644 Binary files a/website/client/assets/images/sprites/spritesmith-main-14.png and b/website/client/assets/images/sprites/spritesmith-main-14.png differ diff --git a/website/client/assets/images/sprites/spritesmith-main-15.png b/website/client/assets/images/sprites/spritesmith-main-15.png index 11956868f6..179b44aa0c 100644 Binary files a/website/client/assets/images/sprites/spritesmith-main-15.png and b/website/client/assets/images/sprites/spritesmith-main-15.png differ diff --git a/website/client/assets/images/sprites/spritesmith-main-16.png b/website/client/assets/images/sprites/spritesmith-main-16.png index 062d4a9db9..efa92f4db4 100644 Binary files a/website/client/assets/images/sprites/spritesmith-main-16.png and b/website/client/assets/images/sprites/spritesmith-main-16.png differ diff --git a/website/client/assets/images/sprites/spritesmith-main-17.png b/website/client/assets/images/sprites/spritesmith-main-17.png index bd887dd91e..0b4f765120 100644 Binary files a/website/client/assets/images/sprites/spritesmith-main-17.png and b/website/client/assets/images/sprites/spritesmith-main-17.png differ diff --git a/website/client/assets/images/sprites/spritesmith-main-18.png b/website/client/assets/images/sprites/spritesmith-main-18.png index 1f690a3d47..08b2983cb3 100644 Binary files a/website/client/assets/images/sprites/spritesmith-main-18.png and b/website/client/assets/images/sprites/spritesmith-main-18.png differ diff --git a/website/client/assets/images/sprites/spritesmith-main-19.png b/website/client/assets/images/sprites/spritesmith-main-19.png index 02c90fb772..508e7ada2c 100644 Binary files a/website/client/assets/images/sprites/spritesmith-main-19.png and b/website/client/assets/images/sprites/spritesmith-main-19.png differ diff --git a/website/client/assets/images/sprites/spritesmith-main-2.png b/website/client/assets/images/sprites/spritesmith-main-2.png index 187939e5d7..63fe1b54a2 100644 Binary files a/website/client/assets/images/sprites/spritesmith-main-2.png and b/website/client/assets/images/sprites/spritesmith-main-2.png differ diff --git a/website/client/assets/images/sprites/spritesmith-main-20.png b/website/client/assets/images/sprites/spritesmith-main-20.png index 0963076640..716c5b933a 100644 Binary files a/website/client/assets/images/sprites/spritesmith-main-20.png and b/website/client/assets/images/sprites/spritesmith-main-20.png differ diff --git a/website/client/assets/images/sprites/spritesmith-main-21.png b/website/client/assets/images/sprites/spritesmith-main-21.png index 5a5a7245c3..923cf4ef95 100644 Binary files a/website/client/assets/images/sprites/spritesmith-main-21.png and b/website/client/assets/images/sprites/spritesmith-main-21.png differ diff --git a/website/client/assets/images/sprites/spritesmith-main-22.png b/website/client/assets/images/sprites/spritesmith-main-22.png index 4e31d645df..a65bddb617 100644 Binary files a/website/client/assets/images/sprites/spritesmith-main-22.png and b/website/client/assets/images/sprites/spritesmith-main-22.png differ diff --git a/website/client/assets/images/sprites/spritesmith-main-3.png b/website/client/assets/images/sprites/spritesmith-main-3.png index 276096a646..f4348f5678 100644 Binary files a/website/client/assets/images/sprites/spritesmith-main-3.png and b/website/client/assets/images/sprites/spritesmith-main-3.png differ diff --git a/website/client/assets/images/sprites/spritesmith-main-4.png b/website/client/assets/images/sprites/spritesmith-main-4.png index 0c233ecdbe..80525954af 100644 Binary files a/website/client/assets/images/sprites/spritesmith-main-4.png and b/website/client/assets/images/sprites/spritesmith-main-4.png differ diff --git a/website/client/assets/images/sprites/spritesmith-main-5.png b/website/client/assets/images/sprites/spritesmith-main-5.png index 268bd5bed5..e7862b2878 100644 Binary files a/website/client/assets/images/sprites/spritesmith-main-5.png and b/website/client/assets/images/sprites/spritesmith-main-5.png differ diff --git a/website/client/assets/images/sprites/spritesmith-main-6.png b/website/client/assets/images/sprites/spritesmith-main-6.png index e85ed7cb23..5a0bb370ae 100644 Binary files a/website/client/assets/images/sprites/spritesmith-main-6.png and b/website/client/assets/images/sprites/spritesmith-main-6.png differ diff --git a/website/client/assets/images/sprites/spritesmith-main-7.png b/website/client/assets/images/sprites/spritesmith-main-7.png index 7fcf7d2ec1..c5a64c51ea 100644 Binary files a/website/client/assets/images/sprites/spritesmith-main-7.png and b/website/client/assets/images/sprites/spritesmith-main-7.png differ diff --git a/website/client/assets/images/sprites/spritesmith-main-8.png b/website/client/assets/images/sprites/spritesmith-main-8.png index ad88f1175f..456008f424 100644 Binary files a/website/client/assets/images/sprites/spritesmith-main-8.png and b/website/client/assets/images/sprites/spritesmith-main-8.png differ diff --git a/website/client/assets/images/sprites/spritesmith-main-9.png b/website/client/assets/images/sprites/spritesmith-main-9.png index 903a152bd1..23e1adb068 100644 Binary files a/website/client/assets/images/sprites/spritesmith-main-9.png and b/website/client/assets/images/sprites/spritesmith-main-9.png differ diff --git a/website/client/components/achievements/death.vue b/website/client/components/achievements/death.vue index 0788e8e836..5d3595e723 100644 --- a/website/client/components/achievements/death.vue +++ b/website/client/components/achievements/death.vue @@ -66,7 +66,7 @@ export default { this.$root.$emit('bv::hide::modal', 'death'); }, async revive () { - await axios.post('/api/v3/user/revive'); + await axios.post('/api/v4/user/revive'); revive(this.user); this.close(); }, diff --git a/website/client/components/achievements/lowHealth.vue b/website/client/components/achievements/lowHealth.vue index 7e9798ecd9..ccc2938689 100644 --- a/website/client/components/achievements/lowHealth.vue +++ b/website/client/components/achievements/lowHealth.vue @@ -58,7 +58,6 @@ - + diff --git a/website/client/libs/userlocalManager.js b/website/client/libs/userlocalManager.js index b226c2772e..0e70869a3f 100644 --- a/website/client/libs/userlocalManager.js +++ b/website/client/libs/userlocalManager.js @@ -3,11 +3,16 @@ const CONSTANTS = { keyConstants: { SPELL_DRAWER_STATE: 'spell-drawer-state', EQUIPMENT_DRAWER_STATE: 'equipment-drawer-state', + CURRENT_EQUIPMENT_DRAWER_TAB: 'current-equipment-drawer-tab', }, - valueConstants: { + drawerStateValues: { DRAWER_CLOSED: 'drawer-closed', DRAWER_OPEN: 'drawer-open', }, + equipmentDrawerTabValues: { + COSTUME_TAB: 'costume-tab', + EQUIPMENT_TAB: 'equipment-tab', + }, }; function setLocalSetting (key, value) { diff --git a/website/client/mixins/payments.js b/website/client/mixins/payments.js index 897efbbab2..8d5662c026 100644 --- a/website/client/mixins/payments.js +++ b/website/client/mixins/payments.js @@ -73,7 +73,7 @@ export default { let url = '/stripe/checkout?a=a'; // just so I can concat &x=x below if (data.groupToCreate) { - url = '/api/v3/groups/create-plan?a=a'; + url = '/api/v4/groups/create-plan?a=a'; res.groupToCreate = data.groupToCreate; res.paymentType = 'Stripe'; } diff --git a/website/client/router.js b/website/client/router.js index 05c41e65c0..bd74858d2c 100644 --- a/website/client/router.js +++ b/website/client/router.js @@ -297,7 +297,7 @@ router.beforeEach(function routerGuard (to, from, next) { name: redirectTo, query: redirectTo === 'login' ? { redirectTo: to.path, - } : null, + } : to.query, }); } diff --git a/website/client/store/actions/auth.js b/website/client/store/actions/auth.js index 5bbc2c9f57..d5f8ebb618 100644 --- a/website/client/store/actions/auth.js +++ b/website/client/store/actions/auth.js @@ -4,7 +4,7 @@ const LOCALSTORAGE_AUTH_KEY = 'habit-mobile-settings'; const LOCALSTORAGE_SOCIAL_AUTH_KEY = 'hello'; // Used by hello.js for social auth export async function register (store, params) { - let url = '/api/v3/user/auth/local/register'; + let url = '/api/v4/user/auth/local/register'; if (params.groupInvite) url += `?groupInvite=${params.groupInvite}`; @@ -27,7 +27,7 @@ export async function register (store, params) { } export async function login (store, params) { - let url = '/api/v3/user/auth/local/login'; + let url = '/api/v4/user/auth/local/login'; let result = await axios.post(url, { username: params.username, // email: params.email, @@ -47,7 +47,7 @@ export async function login (store, params) { } export async function socialAuth (store, params) { - let url = '/api/v3/user/auth/social'; + let url = '/api/v4/user/auth/social'; let result = await axios.post(url, { network: params.auth.network, authResponse: params.auth.authResponse, diff --git a/website/client/store/actions/challenges.js b/website/client/store/actions/challenges.js index 3fdc8b43a4..beed7289da 100644 --- a/website/client/store/actions/challenges.js +++ b/website/client/store/actions/challenges.js @@ -3,27 +3,27 @@ import omit from 'lodash/omit'; import encodeParams from 'client/libs/encodeParams'; export async function createChallenge (store, payload) { - let response = await axios.post('/api/v3/challenges', payload.challenge); + let response = await axios.post('/api/v4/challenges', payload.challenge); let newChallenge = response.data.data; return newChallenge; } export async function cloneChallenge (store, payload) { - const response = await axios.post(`/api/v3/challenges/${payload.cloningChallengeId}/clone`, payload.challenge); + const response = await axios.post(`/api/v4/challenges/${payload.cloningChallengeId}/clone`, payload.challenge); const newChallenge = response.data.data.clonedChallenge; return newChallenge; } export async function joinChallenge (store, payload) { - let response = await axios.post(`/api/v3/challenges/${payload.challengeId}/join`); + let response = await axios.post(`/api/v4/challenges/${payload.challengeId}/join`); return response.data.data; } export async function leaveChallenge (store, payload) { - let url = `/api/v3/challenges/${payload.challengeId}/leave`; + let url = `/api/v4/challenges/${payload.challengeId}/leave`; let response = await axios.post(url, { keep: payload.keep, }); @@ -32,7 +32,7 @@ export async function leaveChallenge (store, payload) { } export async function getUserChallenges (store, payload) { - let url = '/api/v3/challenges/user'; + let url = '/api/v4/challenges/user'; let { member, page, @@ -55,19 +55,19 @@ export async function getUserChallenges (store, payload) { } export async function getGroupChallenges (store, payload) { - let response = await axios.get(`/api/v3/challenges/groups/${payload.groupId}`); + let response = await axios.get(`/api/v4/challenges/groups/${payload.groupId}`); return response.data.data; } export async function getChallenge (store, payload) { - let response = await axios.get(`/api/v3/challenges/${payload.challengeId}`); + let response = await axios.get(`/api/v4/challenges/${payload.challengeId}`); return response.data.data; } export async function exportChallengeCsv (store, payload) { - let response = await axios.get(`/api/v3/challenges/${payload.challengeId}/export/csv`); + let response = await axios.get(`/api/v4/challenges/${payload.challengeId}/export/csv`); return response.data.data; } @@ -78,19 +78,19 @@ export async function updateChallenge (store, payload) { if (challengeDataToSend.leader && challengeDataToSend.leader._id) challengeDataToSend.leader = challengeDataToSend.leader._id; - let response = await axios.put(`/api/v3/challenges/${payload.challenge._id}`, challengeDataToSend); + let response = await axios.put(`/api/v4/challenges/${payload.challenge._id}`, challengeDataToSend); return response.data.data; } export async function deleteChallenge (store, payload) { - let response = await axios.delete(`/api/v3/challenges/${payload.challengeId}`); + let response = await axios.delete(`/api/v4/challenges/${payload.challengeId}`); return response.data.data; } export async function selectChallengeWinner (store, payload) { - let response = await axios.post(`/api/v3/challenges/${payload.challengeId}/selectWinner/${payload.winnerId}`); + let response = await axios.post(`/api/v4/challenges/${payload.challengeId}/selectWinner/${payload.winnerId}`); return response.data.data; } diff --git a/website/client/store/actions/chat.js b/website/client/store/actions/chat.js index 5bb5840937..def822e6a5 100644 --- a/website/client/store/actions/chat.js +++ b/website/client/store/actions/chat.js @@ -2,7 +2,7 @@ import axios from 'axios'; import * as Analytics from 'client/libs/analytics'; export async function getChat (store, payload) { - let response = await axios.get(`/api/v3/groups/${payload.groupId}/chat`); + let response = await axios.get(`/api/v4/groups/${payload.groupId}/chat`); return response.data.data; } @@ -10,7 +10,7 @@ export async function getChat (store, payload) { export async function postChat (store, payload) { const group = payload.group; - let url = `/api/v3/groups/${group._id}/chat`; + let url = `/api/v4/groups/${group._id}/chat`; if (payload.previousMsg) { url += `?previousMsg=${payload.previousMsg}`; @@ -52,7 +52,7 @@ export async function postChat (store, payload) { } export async function deleteChat (store, payload) { - let url = `/api/v3/groups/${payload.groupId}/chat/${payload.chatId}`; + let url = `/api/v4/groups/${payload.groupId}/chat/${payload.chatId}`; if (payload.previousMsg) { url += `?previousMsg=${payload.previousMsg}`; @@ -63,13 +63,13 @@ export async function deleteChat (store, payload) { } export async function like (store, payload) { - let url = `/api/v3/groups/${payload.groupId}/chat/${payload.chatId}/like`; + let url = `/api/v4/groups/${payload.groupId}/chat/${payload.chatId}/like`; let response = await axios.post(url); return response.data.data; } export async function flag (store, payload) { - const url = `/api/v3/groups/${payload.groupId}/chat/${payload.chatId}/flag`; + const url = `/api/v4/groups/${payload.groupId}/chat/${payload.chatId}/flag`; const response = await axios.post(url, { comment: payload.comment, }); @@ -77,14 +77,14 @@ export async function flag (store, payload) { } export async function clearFlagCount (store, payload) { - let url = `/api/v3/groups/${payload.groupId}/chat/${payload.chatId}/clearflags`; + let url = `/api/v4/groups/${payload.groupId}/chat/${payload.chatId}/clearflags`; let response = await axios.post(url); return response.data.data; } export async function markChatSeen (store, payload) { if (store.state.user.newMessages) delete store.state.user.newMessages[payload.groupId]; - let url = `/api/v3/groups/${payload.groupId}/chat/seen`; + let url = `/api/v4/groups/${payload.groupId}/chat/seen`; let response = await axios.post(url); return response.data.data; } diff --git a/website/client/store/actions/common.js b/website/client/store/actions/common.js index 4d8220d82c..903bdfd4c9 100644 --- a/website/client/store/actions/common.js +++ b/website/client/store/actions/common.js @@ -7,7 +7,7 @@ export function equip (store, params) { const user = store.state.user.data; equipOp(user, {params}); axios - .post(`/api/v3/user/equip/${params.type}/${params.key}`); + .post(`/api/v4/user/equip/${params.type}/${params.key}`); // TODO // .then((res) => console.log('equip', res)) // .catch((err) => console.error('equip', err)); @@ -17,7 +17,7 @@ export function hatch (store, params) { const user = store.state.user.data; hatchOp(user, {params}); axios - .post(`/api/v3/user/hatch/${params.egg}/${params.hatchingPotion}`); + .post(`/api/v4/user/hatch/${params.egg}/${params.hatchingPotion}`); // TODO // .then((res) => console.log('equip', res)) // .catch((err) => console.error('equip', err)); @@ -27,6 +27,6 @@ export async function feed (store, params) { const user = store.state.user.data; feedOp(user, {params}); const response = await axios - .post(`/api/v3/user/feed/${params.pet}/${params.food}`); + .post(`/api/v4/user/feed/${params.pet}/${params.food}`); return response.data; } diff --git a/website/client/store/actions/guilds.js b/website/client/store/actions/guilds.js index 564030e553..3f2599850d 100644 --- a/website/client/store/actions/guilds.js +++ b/website/client/store/actions/guilds.js @@ -17,7 +17,7 @@ export async function getPublicGuilds (store, payload) { if (payload.member) params.member = payload.member; if (payload.search) params.search = payload.search; - let response = await axios.get('/api/v3/groups', { + let response = await axios.get('/api/v4/groups', { params, }); @@ -29,7 +29,7 @@ export async function getMyGuilds (store) { type: 'guilds', }; - let response = await axios.get('/api/v3/groups', { params }); + let response = await axios.get('/api/v4/groups', { params }); let guilds = response.data.data; store.state.myGuilds = guilds; @@ -38,7 +38,7 @@ export async function getMyGuilds (store) { } export async function getGroup (store, payload) { - let response = await axios.get(`/api/v3/groups/${payload.groupId}`); + let response = await axios.get(`/api/v4/groups/${payload.groupId}`); // @TODO: should we store the active group for modifying? // let guilds = response.data.data; // store.state.myGuilds = guilds; @@ -57,7 +57,7 @@ export async function join (store, payload) { let response; try { - response = await axios.post(`/api/v3/groups/${groupId}/join`); + response = await axios.post(`/api/v4/groups/${groupId}/join`); } catch (err) { alert(err.response.data.message); return; @@ -87,7 +87,7 @@ export async function leave (store, payload) { keep: payload.keep, keepChallenges: payload.keepChallenges, }; - let response = await axios.post(`/api/v3/groups/${payload.groupId}/leave`, data); + let response = await axios.post(`/api/v4/groups/${payload.groupId}/leave`, data); // @TODO: update for party let index = store.state.user.data.guilds.indexOf(payload.groupId); @@ -107,7 +107,7 @@ export async function leave (store, payload) { } export async function create (store, payload) { - let response = await axios.post('/api/v3/groups/', payload.group); + let response = await axios.post('/api/v4/groups/', payload.group); let newGroup = response.data.data; if (newGroup.leader._id === store.state.user.data._id || newGroup.privacy === 'private') { @@ -124,7 +124,7 @@ export async function update (store, payload) { let groupDetailsToSend = omit(payload.group, ['chat', 'challenges', 'members', 'invites']); if (groupDetailsToSend.leader && groupDetailsToSend.leader._id) groupDetailsToSend.leader = groupDetailsToSend.leader._id; - let response = await axios.put(`/api/v3/groups/${payload.group.id}`, groupDetailsToSend); + let response = await axios.put(`/api/v4/groups/${payload.group.id}`, groupDetailsToSend); let updatedGroup = response.data.data; @@ -137,7 +137,7 @@ export async function rejectInvite (store, payload) { const user = store.state.user.data; const invitations = user.invitations; - let response = await axios.post(`/api/v3/groups/${groupId}/reject-invite`); + let response = await axios.post(`/api/v4/groups/${groupId}/reject-invite`); if (type === 'guild') { const invitationI = invitations.guilds.findIndex(i => i.id === groupId); @@ -151,7 +151,7 @@ export async function rejectInvite (store, payload) { } export async function removeMember (store, payload) { - let response = await axios.post(`/api/v3/groups/${payload.groupId}/removeMember/${payload.memberId}`, { + let response = await axios.post(`/api/v4/groups/${payload.groupId}/removeMember/${payload.memberId}`, { message: payload.message, }); @@ -161,7 +161,7 @@ export async function removeMember (store, payload) { } export async function invite (store, payload) { - let response = await axios.post(`/api/v3/groups/${payload.groupId}/invite`, { + let response = await axios.post(`/api/v4/groups/${payload.groupId}/invite`, { uuids: payload.invitationDetails.uuids, emails: payload.invitationDetails.emails, }); @@ -172,7 +172,7 @@ export async function invite (store, payload) { } export async function inviteToQuest (store, payload) { - let response = await axios.post(`/api/v3/groups/${payload.groupId}/quests/invite/${payload.key}`); + let response = await axios.post(`/api/v4/groups/${payload.groupId}/quests/invite/${payload.key}`); // @TODO: Any updates? @@ -180,7 +180,7 @@ export async function inviteToQuest (store, payload) { } export async function addManager (store, payload) { - let response = await axios.post(`/api/v3/groups/${payload.groupId}/add-manager/`, { + let response = await axios.post(`/api/v4/groups/${payload.groupId}/add-manager/`, { managerId: payload.memberId, }); @@ -190,7 +190,7 @@ export async function addManager (store, payload) { } export async function removeManager (store, payload) { - let response = await axios.post(`/api/v3/groups/${payload.groupId}/remove-manager/`, { + let response = await axios.post(`/api/v4/groups/${payload.groupId}/remove-manager/`, { managerId: payload.memberId, }); @@ -200,6 +200,6 @@ export async function removeManager (store, payload) { } export async function getGroupPlans () { - let response = await axios.get('/api/v3/group-plans'); + let response = await axios.get('/api/v4/group-plans'); return response.data.data; } diff --git a/website/client/store/actions/hall.js b/website/client/store/actions/hall.js index 46fb188fad..c135b0cff8 100644 --- a/website/client/store/actions/hall.js +++ b/website/client/store/actions/hall.js @@ -1,19 +1,19 @@ import axios from 'axios'; export async function getHeroes () { - let url = '/api/v3/hall/heroes'; + let url = '/api/v4/hall/heroes'; let response = await axios.get(url); return response.data.data; } export async function getHero (store, payload) { - let url = `/api/v3/hall/heroes/${payload.uuid}`; + let url = `/api/v4/hall/heroes/${payload.uuid}`; let response = await axios.get(url); return response.data.data; } export async function updateHero (store, payload) { - let url = `/api/v3/hall/heroes/${payload.heroDetails._id}`; + let url = `/api/v4/hall/heroes/${payload.heroDetails._id}`; let response = await axios.put(url, payload.heroDetails); return response.data.data; } @@ -22,7 +22,7 @@ export async function getPatrons (store, payload) { let page = 0; if (payload.page) page = payload.page; - let url = `/api/v3/hall/patrons/?page=${page}`; + let url = `/api/v4/hall/patrons/?page=${page}`; let response = await axios.get(url); return response.data.data; } diff --git a/website/client/store/actions/members.js b/website/client/store/actions/members.js index de4d34d23c..0e6a523ae6 100644 --- a/website/client/store/actions/members.js +++ b/website/client/store/actions/members.js @@ -2,10 +2,10 @@ import axios from 'axios'; // import omit from 'lodash/omit'; // import findIndex from 'lodash/findIndex'; -let apiV3Prefix = '/api/v3'; +let apiv4Prefix = '/api/v4'; export async function getGroupMembers (store, payload) { - let url = `${apiV3Prefix}/groups/${payload.groupId}/members`; + let url = `${apiv4Prefix}/groups/${payload.groupId}/members`; const params = {}; @@ -26,13 +26,13 @@ export async function getGroupMembers (store, payload) { } export async function fetchMember (store, payload) { - let url = `${apiV3Prefix}/members/${payload.memberId}`; + let url = `${apiv4Prefix}/members/${payload.memberId}`; let response = await axios.get(url); return response; } export async function getGroupInvites (store, payload) { - let url = `${apiV3Prefix}/groups/${payload.groupId}/invites`; + let url = `${apiv4Prefix}/groups/${payload.groupId}/invites`; if (payload.includeAllPublicFields) { url += '?includeAllPublicFields=true'; } @@ -41,7 +41,7 @@ export async function getGroupInvites (store, payload) { } export async function getChallengeMembers (store, payload) { - let url = `${apiV3Prefix}/challenges/${payload.challengeId}/members`; + let url = `${apiv4Prefix}/challenges/${payload.challengeId}/members`; const params = {}; @@ -62,13 +62,13 @@ export async function getChallengeMembers (store, payload) { } export async function getChallengeMemberProgress (store, payload) { - let url = `${apiV3Prefix}/challenges/${payload.challengeId}/members/${payload.memberId}`; + let url = `${apiv4Prefix}/challenges/${payload.challengeId}/members/${payload.memberId}`; let response = await axios.get(url); return response; } export async function sendPrivateMessage (store, payload) { - let url = `${apiV3Prefix}/members/send-private-message`; + let url = `${apiv4Prefix}/members/send-private-message`; let data = { message: payload.message, toUserId: payload.toUserId, @@ -78,7 +78,7 @@ export async function sendPrivateMessage (store, payload) { } export async function transferGems (store, payload) { - let url = `${apiV3Prefix}/members/transfer-gems`; + let url = `${apiv4Prefix}/members/transfer-gems`; let data = { message: payload.message, toUserId: payload.toUserId, @@ -90,7 +90,7 @@ export async function transferGems (store, payload) { } export async function removeMember (store, payload) { - let url = `${apiV3Prefix}/groups/${payload.groupId}/removeMember/${payload.memberId}`; + let url = `${apiv4Prefix}/groups/${payload.groupId}/removeMember/${payload.memberId}`; let data = { message: payload.message, }; diff --git a/website/client/store/actions/notifications.js b/website/client/store/actions/notifications.js index ec0dcc7f57..f2e9f34679 100644 --- a/website/client/store/actions/notifications.js +++ b/website/client/store/actions/notifications.js @@ -1,13 +1,13 @@ import axios from 'axios'; export async function readNotification (store, payload) { - let url = `/api/v3/notifications/${payload.notificationId}/read`; + let url = `/api/v4/notifications/${payload.notificationId}/read`; let response = await axios.post(url); return response.data.data; } export async function readNotifications (store, payload) { - let url = '/api/v3/notifications/read'; + let url = '/api/v4/notifications/read'; let response = await axios.post(url, { notificationIds: payload.notificationIds, }); @@ -15,13 +15,13 @@ export async function readNotifications (store, payload) { } export async function seeNotification (store, payload) { - let url = `/api/v3/notifications/${payload.notificationId}/see`; + let url = `/api/v4/notifications/${payload.notificationId}/see`; let response = await axios.post(url); return response.data.data; } export async function seeNotifications (store, payload) { - let url = '/api/v3/notifications/see'; + let url = '/api/v4/notifications/see'; let response = await axios.post(url, { notificationIds: payload.notificationIds, }); diff --git a/website/client/store/actions/party.js b/website/client/store/actions/party.js index 8a5dae62d1..d77dc276a6 100644 --- a/website/client/store/actions/party.js +++ b/website/client/store/actions/party.js @@ -4,7 +4,7 @@ export function getMembers (store, forceLoad = false) { return loadAsyncResource({ store, path: 'partyMembers', - url: '/api/v3/groups/party/members?includeAllPublicFields=true', + url: '/api/v4/groups/party/members?includeAllPublicFields=true', deserialize (response) { return response.data.data; }, @@ -16,7 +16,7 @@ export function getParty (store, forceLoad = false) { return loadAsyncResource({ store, path: 'party', - url: '/api/v3/groups/party', + url: '/api/v4/groups/party', deserialize (response) { return response.data.data; }, diff --git a/website/client/store/actions/quests.js b/website/client/store/actions/quests.js index ff13c36ab7..ddd88cc308 100644 --- a/website/client/store/actions/quests.js +++ b/website/client/store/actions/quests.js @@ -20,7 +20,7 @@ export async function sendAction (store, payload) { Analytics.updateUser(partyData); - let response = await axios.post(`/api/v3/groups/${payload.groupId}/${payload.action}`); + let response = await axios.post(`/api/v4/groups/${payload.groupId}/${payload.action}`); // @TODO: Update user? // User.sync(); diff --git a/website/client/store/actions/shops.js b/website/client/store/actions/shops.js index 1900533e1a..acb2f46888 100644 --- a/website/client/store/actions/shops.js +++ b/website/client/store/actions/shops.js @@ -25,7 +25,7 @@ function buyItem (store, params) { return { result: opResult, - httpCall: axios.post(`/api/v3/user/buy/${params.key}`), + httpCall: axios.post(`/api/v4/user/buy/${params.key}`), }; } @@ -40,7 +40,7 @@ export function buyQuestItem (store, params) { return { result: opResult, - httpCall: axios.post(`/api/v3/user/buy/${params.key}`, {type: 'quest', quantity}), + httpCall: axios.post(`/api/v4/user/buy/${params.key}`, {type: 'quest', quantity}), }; } @@ -49,7 +49,7 @@ async function buyArmoire (store, params) { let armoire = content.armoire; // We need the server result because Armoire has random item in the result - let result = await axios.post('/api/v3/user/buy/armoire', { + let result = await axios.post('/api/v4/user/buy/armoire', { type: 'armoire', quantity, }); @@ -94,7 +94,7 @@ export function purchase (store, params) { return { result: opResult, - httpCall: axios.post(`/api/v3/user/purchase/${params.type}/${params.key}`, {quantity}), + httpCall: axios.post(`/api/v4/user/purchase/${params.type}/${params.key}`, {quantity}), }; } @@ -104,7 +104,7 @@ export function purchaseMysterySet (store, params) { return { result: opResult, - httpCall: axios.post(`/api/v3/user/buy/${params.key}`, {type: 'mystery'}), + httpCall: axios.post(`/api/v4/user/buy/${params.key}`, {type: 'mystery'}), }; } @@ -114,7 +114,7 @@ export function purchaseHourglassItem (store, params) { return { result: opResult, - httpCall: axios.post(`/api/v3/user/purchase-hourglass/${params.type}/${params.key}`), + httpCall: axios.post(`/api/v4/user/purchase-hourglass/${params.type}/${params.key}`), }; } @@ -124,7 +124,7 @@ export function unlock (store, params) { return { result: opResult, - httpCall: axios.post(`/api/v3/user/unlock?path=${params.query.path}`), + httpCall: axios.post(`/api/v4/user/unlock?path=${params.query.path}`), }; } @@ -138,7 +138,7 @@ export async function genericPurchase (store, params) { case 'fortify': { let rerollResult = rerollOp(store.state.user.data, store.state.tasks.data); - await axios.post('/api/v3/user/reroll'); + await axios.post('/api/v4/user/reroll'); await Promise.all([ store.dispatch('user:fetch', {forceLoad: true}), store.dispatch('tasks:fetchUserTasks', {forceLoad: true}), @@ -173,20 +173,20 @@ export async function genericPurchase (store, params) { export function sellItems (store, params) { const user = store.state.user.data; sellOp(user, {params, query: {amount: params.amount}}); - axios.post(`/api/v3/user/sell/${params.type}/${params.key}?amount=${params.amount}`); + axios.post(`/api/v4/user/sell/${params.type}/${params.key}?amount=${params.amount}`); } export function releasePets (store, params) { releasePetsOp(params.user); - axios.post('/api/v3/user/release-pets'); + axios.post('/api/v4/user/release-pets'); } export function releaseMounts (store, params) { releaseMountsOp(params.user); - axios.post('/api/v3/user/release-mounts'); + axios.post('/api/v4/user/release-mounts'); } export function releaseBoth (store, params) { releaseBothOp(params.user); - axios.post('/api/v3/user/release-both'); + axios.post('/api/v4/user/release-both'); } diff --git a/website/client/store/actions/tags.js b/website/client/store/actions/tags.js index fe0ab55a6e..535e0a8b22 100644 --- a/website/client/store/actions/tags.js +++ b/website/client/store/actions/tags.js @@ -1,13 +1,13 @@ import axios from 'axios'; export async function getTags () { - let url = 'api/v3/tags'; + let url = 'api/v4/tags'; let response = await axios.get(url); return response.data.data; } export async function createTag (store, payload) { - let url = 'api/v3/tags'; + let url = 'api/v4/tags'; let response = await axios.post(url, { tagDetails: payload.tagDetails, }); @@ -15,13 +15,13 @@ export async function createTag (store, payload) { } export async function getTag (store, payload) { - let url = `api/v3/tags/${payload.tagId}`; + let url = `api/v4/tags/${payload.tagId}`; let response = await axios.get(url); return response.data.data; } export async function updateTag (store, payload) { - let url = `api/v3/tags/${payload.tagId}`; + let url = `api/v4/tags/${payload.tagId}`; let response = await axios.put(url, { tagDetails: payload.tagDetails, }); @@ -29,7 +29,7 @@ export async function updateTag (store, payload) { } export async function sortTag (store, payload) { - let url = 'api/v3/reorder-tags'; + let url = 'api/v4/reorder-tags'; let response = await axios.post(url, { tagDetails: payload.tagDetails, to: payload.to, @@ -38,7 +38,7 @@ export async function sortTag (store, payload) { } export async function deleteTag (store, payload) { - let url = `api/v3/tags/${payload.tagId}`; + let url = `api/v4/tags/${payload.tagId}`; let response = await axios.delete(url); return response.data.data; } diff --git a/website/client/store/actions/tasks.js b/website/client/store/actions/tasks.js index 01bd40749c..baa3788460 100644 --- a/website/client/store/actions/tasks.js +++ b/website/client/store/actions/tasks.js @@ -7,7 +7,7 @@ export function fetchUserTasks (store, options = {}) { return loadAsyncResource({ store, path: 'tasks', - url: '/api/v3/tasks/user', + url: '/api/v4/tasks/user', deserialize (response) { // Wait for the user to be loaded before deserializing // because user.tasksOrder is necessary @@ -28,7 +28,7 @@ export async function fetchCompletedTodos (store, forceLoad = false) { if (loadStatus === 'NOT_LOADED' || forceLoad) { store.state.completedTodosStatus = 'LOADING'; - const response = await axios.get('/api/v3/tasks/user?type=completedTodos'); + const response = await axios.get('/api/v4/tasks/user?type=completedTodos'); const completedTodos = response.data.data; const tasks = store.state.tasks.data; // Remove existing completed todos @@ -51,7 +51,7 @@ export async function fetchCompletedTodos (store, forceLoad = false) { } export async function clearCompletedTodos (store) { - await axios.post('/api/v3/tasks/clearCompletedTodos'); + await axios.post('/api/v4/tasks/clearCompletedTodos'); store.state.tasks.data.todos = store.state.tasks.data.todos.filter(task => { return !task.completed; }); @@ -116,7 +116,7 @@ export async function create (store, createdTask) { store.state.user.data.tasksOrder[type].unshift(t._id); }); - const response = await axios.post('/api/v3/tasks/user', payload); + const response = await axios.post('/api/v4/tasks/user', payload); const data = Array.isArray(response.data.data) ? response.data.data : [response.data.data]; data.forEach(taskRes => { @@ -135,17 +135,17 @@ export async function save (store, editedTask) { if (originalTask) Object.assign(originalTask, editedTask); const taskDataToSend = omit(editedTask, ['history']); - const response = await axios.put(`/api/v3/tasks/${taskId}`, taskDataToSend); + const response = await axios.put(`/api/v4/tasks/${taskId}`, taskDataToSend); if (originalTask) Object.assign(originalTask, response.data.data); } export async function scoreChecklistItem (store, {taskId, itemId}) { - await axios.post(`/api/v3/tasks/${taskId}/checklist/${itemId}/score`); + await axios.post(`/api/v4/tasks/${taskId}/checklist/${itemId}/score`); } export async function collapseChecklist (store, task) { task.collapseChecklist = !task.collapseChecklist; - await axios.put(`/api/v3/tasks/${task._id}`, { + await axios.put(`/api/v4/tasks/${task._id}`, { collapseChecklist: task.collapseChecklist, }); } @@ -158,51 +158,51 @@ export async function destroy (store, task) { list.splice(taskIndex, 1); } - await axios.delete(`/api/v3/tasks/${task._id}`); + await axios.delete(`/api/v4/tasks/${task._id}`); } export async function getChallengeTasks (store, payload) { - let response = await axios.get(`/api/v3/tasks/challenge/${payload.challengeId}`); + let response = await axios.get(`/api/v4/tasks/challenge/${payload.challengeId}`); return response.data.data; } export async function createChallengeTasks (store, payload) { - let response = await axios.post(`/api/v3/tasks/challenge/${payload.challengeId}`, payload.tasks); + let response = await axios.post(`/api/v4/tasks/challenge/${payload.challengeId}`, payload.tasks); return response.data.data; } export async function getGroupTasks (store, payload) { - let response = await axios.get(`/api/v3/tasks/group/${payload.groupId}`); + let response = await axios.get(`/api/v4/tasks/group/${payload.groupId}`); return response.data.data; } export async function createGroupTasks (store, payload) { - let response = await axios.post(`/api/v3/tasks/group/${payload.groupId}`, payload.tasks); + let response = await axios.post(`/api/v4/tasks/group/${payload.groupId}`, payload.tasks); return response.data.data; } export async function assignTask (store, payload) { - let response = await axios.post(`/api/v3/tasks/${payload.taskId}/assign/${payload.userId}`); + let response = await axios.post(`/api/v4/tasks/${payload.taskId}/assign/${payload.userId}`); return response.data.data; } export async function unassignTask (store, payload) { - let response = await axios.post(`/api/v3/tasks/${payload.taskId}/unassign/${payload.userId}`); + let response = await axios.post(`/api/v4/tasks/${payload.taskId}/unassign/${payload.userId}`); return response.data.data; } export async function needsWork (store, payload) { - let response = await axios.post(`/api/v3/tasks/${payload.taskId}/needs-work/${payload.userId}`); + let response = await axios.post(`/api/v4/tasks/${payload.taskId}/needs-work/${payload.userId}`); return response.data.data; } export async function getGroupApprovals (store, payload) { - let response = await axios.get(`/api/v3/approvals/group/${payload.groupId}`); + let response = await axios.get(`/api/v4/approvals/group/${payload.groupId}`); return response.data.data; } export async function approve (store, payload) { - let response = await axios.post(`/api/v3/tasks/${payload.taskId}/approve/${payload.userId}`); + let response = await axios.post(`/api/v4/tasks/${payload.taskId}/approve/${payload.userId}`); return response.data.data; } @@ -217,22 +217,22 @@ export async function unlinkOneTask (store, payload) { list.splice(taskIndex, 1); } - let response = await axios.post(`/api/v3/tasks/unlink-one/${payload.task._id}?keep=${payload.keep}`); + let response = await axios.post(`/api/v4/tasks/unlink-one/${payload.task._id}?keep=${payload.keep}`); return response.data.data; } export async function unlinkAllTasks (store, payload) { if (!payload.keep) payload.keep = 'keep-all'; - let response = await axios.post(`/api/v3/tasks/unlink-all/${payload.challengeId}?keep=${payload.keep}`); + let response = await axios.post(`/api/v4/tasks/unlink-all/${payload.challengeId}?keep=${payload.keep}`); return response.data.data; } export async function move (store, payload) { - let response = await axios.post(`/api/v3/tasks/${payload.taskId}/move/to/${payload.position}`); + let response = await axios.post(`/api/v4/tasks/${payload.taskId}/move/to/${payload.position}`); return response.data.data; } export async function moveGroupTask (store, payload) { - let response = await axios.post(`/api/v3/group-tasks/${payload.taskId}/move/to/${payload.position}`); + let response = await axios.post(`/api/v4/group-tasks/${payload.taskId}/move/to/${payload.position}`); return response.data.data; } diff --git a/website/client/store/actions/user.js b/website/client/store/actions/user.js index f8b74cadcd..d87fd8862f 100644 --- a/website/client/store/actions/user.js +++ b/website/client/store/actions/user.js @@ -10,7 +10,7 @@ export function fetch (store, options = {}) { // eslint-disable-line no-shadow return loadAsyncResource({ store, path: 'user', - url: '/api/v3/user', + url: '/api/v4/user', deserialize (response) { return response.data.data; }, @@ -50,7 +50,7 @@ export async function set (store, changes) { } } - axios.put('/api/v3/user', changes); + axios.put('/api/v4/user', changes); // TODO // .then((res) => console.log('set', res)) // .catch((err) => console.error('set', err)); @@ -61,22 +61,22 @@ export async function sleep (store) { user.preferences.sleep = !user.preferences.sleep; - let response = await axios.post('/api/v3/user/sleep'); + let response = await axios.post('/api/v4/user/sleep'); return response.data.data; } export async function addWebhook (store, payload) { - let response = await axios.post('/api/v3/user/webhook', payload.webhookInfo); + let response = await axios.post('/api/v4/user/webhook', payload.webhookInfo); return response.data.data; } export async function updateWebhook (store, payload) { - let response = await axios.put(`/api/v3/user/webhook/${payload.webhook.id}`, payload.webhook); + let response = await axios.put(`/api/v4/user/webhook/${payload.webhook.id}`, payload.webhook); return response.data.data; } export async function deleteWebhook (store, payload) { - let response = await axios.delete(`/api/v3/user/webhook/${payload.webhook.id}`); + let response = await axios.delete(`/api/v4/user/webhook/${payload.webhook.id}`); return response.data.data; } @@ -86,7 +86,7 @@ export async function changeClass (store, params) { changeClassOp(user, params); user.flags.classSelected = true; - let response = await axios.post(`/api/v3/user/change-class?class=${params.query.class}`); + let response = await axios.post(`/api/v4/user/change-class?class=${params.query.class}`); return response.data.data; } @@ -94,7 +94,7 @@ export async function disableClasses (store) { const user = store.state.user.data; disableClassesOp(user); - let response = await axios.post('/api/v3/user/disable-classes'); + let response = await axios.post('/api/v4/user/disable-classes'); return response.data.data; } @@ -103,7 +103,7 @@ export function togglePinnedItem (store, params) { let addedItem = togglePinnedItemOp(user, params); - axios.get(`/api/v3/user/toggle-pinned-item/${params.type}/${params.path}`); + axios.get(`/api/v4/user/toggle-pinned-item/${params.type}/${params.path}`); // TODO // .then((res) => console.log('equip', res)) // .catch((err) => console.error('equip', err)); @@ -112,12 +112,12 @@ export function togglePinnedItem (store, params) { } export async function movePinnedItem (store, params) { - let response = await axios.post(`/api/v3/user/move-pinned-item/${params.path}/move/to/${params.position}`); + let response = await axios.post(`/api/v4/user/move-pinned-item/${params.path}/move/to/${params.position}`); return response.data.data; } export function castSpell (store, params) { - let spellUrl = `/api/v3/user/class/cast/${params.key}`; + let spellUrl = `/api/v4/user/class/cast/${params.key}`; const data = {}; @@ -128,16 +128,16 @@ export function castSpell (store, params) { } export function openMysteryItem () { - return axios.post('/api/v3/user/open-mystery-item'); + return axios.post('/api/v4/user/open-mystery-item'); } export function newStuffLater (store) { store.state.user.data.flags.newStuff = false; - return axios.post('/api/v3/news/tell-me-later'); + return axios.post('/api/v4/news/tell-me-later'); } export async function rebirth () { - let result = await axios.post('/api/v3/user/rebirth'); + let result = await axios.post('/api/v4/user/rebirth'); window.location.reload(true); @@ -145,7 +145,7 @@ export async function rebirth () { } export async function togglePrivateMessagesOpt (store) { - let response = await axios.put('/api/v3/user', + let response = await axios.put('/api/v4/user', { 'inbox.optOut': !store.state.user.data.inbox.optOut, } diff --git a/website/client/store/actions/world-state.js b/website/client/store/actions/world-state.js index 924335992f..9149898dba 100644 --- a/website/client/store/actions/world-state.js +++ b/website/client/store/actions/world-state.js @@ -1,7 +1,7 @@ import axios from 'axios'; export async function getWorldState () { - const url = '/api/v3/world-state'; + const url = '/api/v4/world-state'; const response = await axios.get(url); return response.data.data; } diff --git a/website/common/locales/bg/backgrounds.json b/website/common/locales/bg/backgrounds.json index bbd02ad7c3..a0520ca61d 100644 --- a/website/common/locales/bg/backgrounds.json +++ b/website/common/locales/bg/backgrounds.json @@ -359,5 +359,12 @@ "backgroundRowboatText": "Гребна лодка", "backgroundRowboatNotes": "Изпейте песен в гребната лодка", "backgroundPirateFlagText": "Пиратско знаме", - "backgroundPirateFlagNotes": "Развейте страховито пиратско знаме." + "backgroundPirateFlagNotes": "Развейте страховито пиратско знаме.", + "backgrounds072018": "КОМПЛЕКТ 50: юли 2018 г.", + "backgroundDarkDeepText": "Дълбочинен мрак", + "backgroundDarkDeepNotes": "Плувайте надълбоко в мрака, сред биолуминесцентни животни.", + "backgroundDilatoryCityText": "Град Мудноград", + "backgroundDilatoryCityNotes": "Разгледайте подводния град Мудноград.", + "backgroundTidePoolText": "Приливно езеро", + "backgroundTidePoolNotes": "Наблюдавайте океанския живот около приливно езеро." } \ No newline at end of file diff --git a/website/common/locales/bg/content.json b/website/common/locales/bg/content.json index 960961deaf..82687cab2c 100644 --- a/website/common/locales/bg/content.json +++ b/website/common/locales/bg/content.json @@ -195,6 +195,7 @@ "hatchingPotionFairy": "Фейски цвят", "hatchingPotionStarryNight": "Звездна нощ", "hatchingPotionRainbow": "Дъга", + "hatchingPotionGlass": "Стъкло", "hatchingPotionNotes": "Излейте това върху яйце и от него ще се излюпи любимец с(ъс) <%= potText(locale) %>.", "premiumPotionAddlNotes": "Не може да се използва върху яйца за любимци от мисии.", "foodMeat": "Месо", diff --git a/website/common/locales/bg/gear.json b/website/common/locales/bg/gear.json index 49ce1b0a00..a57c446bf7 100644 --- a/website/common/locales/bg/gear.json +++ b/website/common/locales/bg/gear.json @@ -258,14 +258,14 @@ "weaponSpecialSpring2018MageNotes": "Това вълшебно цвете никога няма да увехне. Увеличава интелигентността с <%= int %> и усета с <%= per %>. Ограничена серия: Пролетна екипировка 2018 г.", "weaponSpecialSpring2018HealerText": "Гранатен прът", "weaponSpecialSpring2018HealerNotes": "Камъните в този жезъл ще концентрира силите Ви, когато изпълнявате лечебни заклинания! Увеличава интелигентността с <%= int %>. Ограничена серия: Пролетна екипировка 2018 г.", - "weaponSpecialSummer2018RogueText": "Fishing Rod", - "weaponSpecialSummer2018RogueNotes": "This lightweight, practically unbreakable rod and reel can be dual-wielded to maximize your DPS (Dragonfish Per Summer). Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.", - "weaponSpecialSummer2018WarriorText": "Betta Fish Spear", - "weaponSpecialSummer2018WarriorNotes": "Mighty enough for battle, elegant enough for ceremony, this exquisitely crafted spear shows you will protect your home surf no matter what! Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.", - "weaponSpecialSummer2018MageText": "Lionfish Fin Rays", - "weaponSpecialSummer2018MageNotes": "Underwater, magic based on fire, ice, or electricity can prove hazardous to the Mage wielding it. Conjuring poisonous spines, however, works brilliantly! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2018 Summer Gear.", - "weaponSpecialSummer2018HealerText": "Merfolk Monarch Trident", - "weaponSpecialSummer2018HealerNotes": "With a benevolent gesture, you command healing water to flow through your dominions in waves. Increases Intelligence by <%= int %>. Limited Edition 2018 Summer Gear.", + "weaponSpecialSummer2018RogueText": "Въдица", + "weaponSpecialSummer2018RogueNotes": "Можете да държите по две от тези леки и практически неразрушими въдици, за да удвоите улова си. Увеличава силата с <%= str %>. Ограничена серия: Лятна екипировка 2018 г.", + "weaponSpecialSummer2018WarriorText": "Копие на сиамска бойна риба", + "weaponSpecialSummer2018WarriorNotes": "Достатъчно здраво за битки и достатъчно изтънчено за церемонии – това специално изработено копие показва, че ще защитите дома си на всяка цена! Увеличава силата с <%= str %>. Ограничена серия: Лятна екипировка 2018 г.", + "weaponSpecialSummer2018MageText": "Лъчи-перки на лъвска риба", + "weaponSpecialSummer2018MageNotes": "Под водата заклинанията, основаващи се на огън, лед или електричество, може да бъдат опасни за Магьосника. Измагьосването на отровни шипове, обаче, работи безпроблемно! Увеличава интелигентността с <%= int %> и усета с <%= per %>. Ограничена серия: Лятна екипировка 2018 г.", + "weaponSpecialSummer2018HealerText": "Царски русалски тризъбец", + "weaponSpecialSummer2018HealerNotes": "С лек благосклонен жест насочвате лечебна вода на вълни през владенията си. Увеличава интелигентността с <%= int %>. Ограничена серия: Лятна екипировка 2018 г.", "weaponMystery201411Text": "Вилица на изобилието", "weaponMystery201411Notes": "Наръгайте враговете си или си боцнете от любимата храна — тази универсална вилица може всичко! не променя показателите. Предмет за абонати: ноември 2014 г.", "weaponMystery201502Text": "Блестящият крилат скиптър на любовта и истината", @@ -346,6 +346,8 @@ "weaponArmoireCobblersHammerNotes": "Това е специален чук за обработка на кожа. Но може да се използва и срещу червените ежедневни задачи. Увеличава якостта и силата с по <%= attrs %>. Омагьосан гардероб: Обущарски комплект (предмет 2 от 3).", "weaponArmoireGlassblowersBlowpipeText": "Тръба за духане на стъклодухач", "weaponArmoireGlassblowersBlowpipeNotes": "Използвайте тази тръба, за да изваете разтопеното стъкло и да го превърнете в красиви вази, орнаменти и други интересни неща. Увеличава силата с <%= str %>. Омагьосан гардероб: комплект „Стъклодухач“ (предмет 1 от 4).", + "weaponArmoirePoisonedGobletText": "Отровен бокал", + "weaponArmoirePoisonedGobletNotes": "Използвайте това, за да изградите имунитет срещу различни невъобразимо опасни отрови. Увеличава интелигентността с <%= int %>. Омагьосан гардероб: комплект „Пиратска принцеса“ (предмет 3 от 4).", "armor": "броня", "armorCapitalized": "Броня", "armorBase0Text": "Обикновени дрехи", @@ -580,14 +582,14 @@ "armorSpecialSpring2018MageNotes": "Заклинанията Ви ще се подобрят, ако носите тези меки копринени цветчета. Увеличава интелигентността с <%= int %>. Ограничена серия: Пролетна екипировка 2018 г.", "armorSpecialSpring2018HealerText": "Гранатена броня", "armorSpecialSpring2018HealerNotes": "Нека тази светла броня даде на сърцето Ви силата да лекувате. Увеличава якостта с <%= con %>. Ограничена серия: Пролетна екипировка 2018 г.", - "armorSpecialSummer2018RogueText": "Pocket Fishing Vest", - "armorSpecialSummer2018RogueNotes": "Bobbers? Boxes of hooks? Spare line? Lockpicks? Smoke bombs? Whatever you need on hand for your summer fishing getaway, there's a pocket for it! Increases Perception by <%= per %>. Limited Edition 2018 Summer Gear.", - "armorSpecialSummer2018WarriorText": "Betta Tail Armor", - "armorSpecialSummer2018WarriorNotes": "Dazzle onlookers with whorls of magnificent color as you spin and dart through the water. How could any opponent dare strike at this beauty? Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.", - "armorSpecialSummer2018MageText": "Lionfish Scale Hauberk", - "armorSpecialSummer2018MageNotes": "Venom magic has a reputation for subtlety. Not so this colorful armor, whose message is clear to beast and task alike: watch out! Increases Intelligence by <%= int %>. Limited Edition 2018 Summer Gear.", - "armorSpecialSummer2018HealerText": "Merfolk Monarch Robes", - "armorSpecialSummer2018HealerNotes": "These cerulean vestments reveal that you have land-walking feet... well. Not even a monarch can be expected to be perfect. Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.", + "armorSpecialSummer2018RogueText": "Джобен рибарски елек", + "armorSpecialSummer2018RogueNotes": "Плувки? Кутии с кукички? Резервна корда? Инструменти за разбиване на ключалки? Димни бомби? Каквото и да Ви потрябва за тазгодишния риболовен сезон, има джоб за него! Увеличава усета с <%= per %>. Ограничена серия: Лятна екипировка 2018 г.", + "armorSpecialSummer2018WarriorText": "Опашка на сиамска бойна риба", + "armorSpecialSummer2018WarriorNotes": "Заслепете зяпачите с разноцветни спирали, докато се въртите и стрелкате през водата. Как може някой враг изобщо да се осмели да нарани такава красота? Увеличава якостта с <%= con %>. Ограничена серия: Лятна екипировка 2018 г.", + "armorSpecialSummer2018MageText": "Люспена броня на лъвска риба", + "armorSpecialSummer2018MageNotes": "Заклинанията за отравяне обикновено се правят незабележимо. Не и с тази цветна броня, с която всичко се казва ясно: внимавайте! Увеличава интелигентността с <%= int %>. Ограничена серия: Лятна екипировка 2018 г.", + "armorSpecialSummer2018HealerText": "Царски русалски одежди", + "armorSpecialSummer2018HealerNotes": "Тези небесно сини одежди показват, че имате… крака за ходене по земята. Дори и царете не са перфектни. Увеличава якостта с <%= con %>. Ограничена серия: Лятна екипировка 2017 г.", "armorMystery201402Text": "Одежди на вестоносец", "armorMystery201402Notes": "Блестящи и здрави, тези одежди имат много джобове за носене на писма. Не променя показателите. Предмет за абонати: февруари 2014 г.", "armorMystery201403Text": "Броня на горски бродник", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "Топлината и светлината произведени от тази вълшебна броня ще стоплят сърцето Ви, но няма да изгорят кожата Ви! Не променя показателите. Предмет за абонати: декември 2017 г.", "armorMystery201802Text": "Броня на любовна буболечка", "armorMystery201802Notes": "Тази лъскава броня отразява силата на сърцето Ви и я разпръсква към хабитиканците наоколо, които имат нужда от окуражаване! Не променя показателите. Предмет за абонати: февруари 2018 г.", + "armorMystery201806Text": "Опашка на морски дявол", + "armorMystery201806Notes": "По тази игрива опашка има светещи петна, които ще осветят пътя Ви в дълбините. Не променя показателите. Предмет за абонати: юни 2018 г.", "armorMystery301404Text": "Изтънчен костюм", "armorMystery301404Notes": "Спретнат и елегантен! Не променя показателите. Предмет за абонати: февруари 3015 г.", "armorMystery301703Text": "Изтънчена паунова рокля", @@ -742,6 +746,8 @@ "armorArmoireGlassblowersCoverallsNotes": "Този гащеризон ще Ви защити, когато създавате шедьоври от разтопено стъкло. Увеличава якостта с <%= con %>. Омагьосан гардероб: комплект „Стъклодухач“ (предмет 2 от 4).", "armorArmoireBluePartyDressText": "Синя бална рокля", "armorArmoireBluePartyDressNotes": "Вие имате концентрация, сила и ум, и сте в крак с модата! Увеличава усета, силата и якостта с по <%= attrs %>. Омагьосан гардероб: комплект „Синя панделка“ (предмет 2 от 2).", + "armorArmoirePiraticalPrincessGownText": "Рокля на пиратска принцеса", + "armorArmoirePiraticalPrincessGownNotes": "В тази луксозна дреха има много джобове за криене на оръжия и плячка! Увеличава усета с <%= per %>. Омагьосан гардероб: комплект „Пиратска принцеса“ (предмет 2 от 4).", "headgear": "шлем", "headgearCapitalized": "Защита за главата", "headBase0Text": "Няма защита за главата", @@ -976,14 +982,14 @@ "headSpecialSpring2018MageNotes": "Цветчетата на този шлем ще Ви дадат специални пролетни вълшебни сили. Увеличава усета с <%= per %>. Ограничена серия: Пролетна екипировка 2018 г.", "headSpecialSpring2018HealerText": "Гранатена диадема", "headSpecialSpring2018HealerNotes": "Полираните скъпоценни камъни по тази диадема ще увеличат мисловните Ви сили. Увеличава интелигентността с <%= int %>. Ограничена серия: Пролетна екипировка 2018 г.", - "headSpecialSummer2018RogueText": "Fishing Sun Hat", - "headSpecialSummer2018RogueNotes": "Provides comfort and protection from the harsh glare of the summer sun over the water. Especially important if you're more accustomed to staying stealthy in the shadows! Increases Perception by <%= per %>. Limited Edition 2018 Summer Gear.", - "headSpecialSummer2018WarriorText": "Betta Fish Barbute", - "headSpecialSummer2018WarriorNotes": "Show everyone you're the alpha betta with this flamboyant helm! Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.", - "headSpecialSummer2018MageText": "Lionfish Crest", - "headSpecialSummer2018MageNotes": "Glare dolorously upon anyone who dares say you look like a “tastyfish”. Increases Perception by <%= per %>. Limited Edition 2018 Summer Gear.", - "headSpecialSummer2018HealerText": "Merfolk Monarch Crown", - "headSpecialSummer2018HealerNotes": "Adorned with aquamarine, this finned diadem marks leadership of folk, fish, and those who are a bit of both! Increases Intelligence by <%= int %>. Limited Edition 2018 Summer Gear.", + "headSpecialSummer2018RogueText": "Рибарска шапка за слънце", + "headSpecialSummer2018RogueNotes": "Осигурява комфорт и защита от жаркото лятно слънце над водата. Това е особено важно, ако сте свикнали да се промъквате в сенките! Увеличава силата с <%= per %>. Ограничена серия: Лятна екипировка 2018 г.", + "headSpecialSummer2018WarriorText": "Шлем на сиамска бойна риба", + "headSpecialSummer2018WarriorNotes": "Покажете на всички, че не бива да се закачат с Вас – с този пищен шлем! Увеличава силата с <%= str %>. Ограничена серия: Лятна екипировка 2018 г.", + "headSpecialSummer2018MageText": "Гребен на лъвска риба", + "headSpecialSummer2018MageNotes": "Пригответе убийствения си поглед, за всеки, който се осмели да каже, че изглеждате „сладко“. Увеличава усета с <%= per %>. Ограничена серия: Лятна екипировка 2018 г.", + "headSpecialSummer2018HealerText": "Царска русалска корона", + "headSpecialSummer2018HealerNotes": "Украсена със зеленикаво-сини оттенъци, тази диадема с перки показва господарството Ви над хората, рибите и онези, които са по малко от двете! Увеличава интелигентността с <%= int %>. Ограничена серия: Лятна екипировка 2018 г.", "headSpecialGaymerxText": "Боен шлем с цветовете на дъгата", "headSpecialGaymerxNotes": "В чест на конференцията GaymerX, този специален шлем е оцветен с шарка на дъга! GaymerX е игрално изложение в чест на ЛГБТ културата и игрите и е отворено за всички.", "headMystery201402Text": "Крилат шлем", @@ -1054,6 +1060,8 @@ "headMystery201803Notes": "Въпреки че изглежда като обикновено украшение, можете да накарате крилата на тази диадема да махат и да… получите още по-хубава украса! Не променя показателите. Предмет за абонати: март 2018 г.", "headMystery201805Text": "Феноменален паунов шлем", "headMystery201805Notes": "С този шлем ще се превърнете в най-гордата и най-красивата (а сигурно и най-шумната) птица наоколо. Не променя показателите. Предмет за абонати: май 2018 г.", + "headMystery201806Text": "Шлем на морски дявол", + "headMystery201806Notes": "Хипнотизиращата светлина, закачена отгоре на този шлем, ще привика всички морски същества на Ваша страна. Не променя показателите. Предмет за абонати: февруари 2018 г.", "headMystery301404Text": "Украсен цилиндър", "headMystery301404Notes": "Украсен цилиндър за най-изтънчените и високопоставени членове на обществото. Не променя показателите. Предмет за абонати: януари 3015 г.", "headMystery301405Text": "Обикновен цилиндър", @@ -1154,6 +1162,8 @@ "headArmoireBigWigNotes": "Някои напудрени перуки придават авторитет, но тази е само за смях! Увеличава силата с <%= str %>. Омагьосан гардероб: независим предмет.", "headArmoireGlassblowersHatText": "Шапка на стъклодухач", "headArmoireGlassblowersHatNotes": "Тази шапка просто си отива с останалото защитно облекло на стъклодухач! Увеличава усета с <%= per %>. Омагьосан гардероб: комплект „Стъклодухач“ (предмет 3 от 4).", + "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress", + "headArmoirePiraticalPrincessHeaddressNotes": "Пиратите са известни с причудливите неща, които носят на главите си! Увеличава усета и интелигентността с по <%= attrs %>. Омагьосан гардероб: комплект „Пиратска принцеса“ (предмет 1 от 4).", "offhand": "страничен предмет", "offhandCapitalized": "Страничен предмет", "shieldBase0Text": "Няма страничен предмет", @@ -1304,10 +1314,10 @@ "shieldSpecialSpring2018WarriorNotes": "Този здрав щит свети с величието на най-чистата светлина. Увеличава якостта с <%= con %>. Ограничена серия: Пролетна екипировка 2018 г.", "shieldSpecialSpring2018HealerText": "Гранатен щит", "shieldSpecialSpring2018HealerNotes": "Въпреки вида си, този гранатен щит е доста здрав! Увеличава якостта с <%= con %>. Ограничена серия: Пролетна екипировка 2018 г.", - "shieldSpecialSummer2018WarriorText": "Betta Skull Shield", - "shieldSpecialSummer2018WarriorNotes": "Fashioned from stone, this fearsome skull-styled shield strikes fear into fish foes while rallying your Skeleton pets and mounts. Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.", - "shieldSpecialSummer2018HealerText": "Merfolk Monarch Emblem", - "shieldSpecialSummer2018HealerNotes": "This shield can produce a dome of air for the benefit of land-dwelling visitors to your watery realm. Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.", + "shieldSpecialSummer2018WarriorText": "Щит от череп на сиамска бойна риба", + "shieldSpecialSummer2018WarriorNotes": "Изработен от камък, този страховит щит във формата на череп ще всее ужас в рибните неприятели, като същевременно ще сплоти скелетните Ви любимци и превози. Увеличава якостта с <%= con %>. Ограничена серия: Лятна екипировка 2018 г.", + "shieldSpecialSummer2018HealerText": "Царски русалски герб", + "shieldSpecialSummer2018HealerNotes": "Този щит може да създаде мехур от въздух за земните гости на подводното Ви царство. Увеличава якостта с <%= con %>. Ограничена серия: Лятна екипировка 2018 г.", "shieldMystery201601Text": "Решителен убиец", "shieldMystery201601Notes": "Това острие може да отблъсне всички разсейващи Ви неща. Не променя показателите. Предмет за абонати: януари 2016 г.", "shieldMystery201701Text": "Спиращ времето щит", @@ -1368,6 +1378,8 @@ "shieldArmoireFancyShoeNotes": "Много специална обувка, по която работите. Подходяща за царски величия! Увеличава интелигентността и усета с по <%= attrs %>. Омагьосан гардероб: Обущарски комплект (предмет 3 от 3).", "shieldArmoireFancyBlownGlassVaseText": "Изящна ваза от стъкло", "shieldArmoireFancyBlownGlassVaseNotes": "Каква страхотна ваза сътворихте! Какво има вътре? Увеличава интелигентността с <%= int %>. Омагьосан гардероб: комплект „Стъклодухач“ (предмет 4 от 4).", + "shieldArmoirePiraticalSkullShieldText": "Пиратски щит от череп", + "shieldArmoirePiraticalSkullShieldNotes": "Този омагьосан щит шепне къде са местата, където враговете Ви са заровили тайните си съкровища. Слушайте внимателно! Увеличава усета и интелигентността с по <%= attrs %>. Омагьосан гардероб: комплект „Пиратска принцеса“ (предмет 4 от 4).", "back": "Аксесоар за гръб", "backCapitalized": "Аксесоар за гръб", "backBase0Text": "Няма аксесоар за гръб", diff --git a/website/common/locales/bg/groups.json b/website/common/locales/bg/groups.json index 3239a186e1..1f1ef698d8 100644 --- a/website/common/locales/bg/groups.json +++ b/website/common/locales/bg/groups.json @@ -134,10 +134,9 @@ "PMPlaceholderDescription": "Изберете разговор отляво", "PMPlaceholderTitleRevoked": "Привилегиите Ви в чата Ви бяха отнети", "PMPlaceholderDescriptionRevoked": "Не можете да изпращате лични съобщения, тъй като привилегиите Ви в чата Ви бяха отнети. Ако имате въпроси или притеснения относно това, моля, пишете на admin@habitica.com, за да ги обсъдите с екипа.", - "PMEnable": "Разрешаване на личните съобщения", - "PMDisable": "Забраняване на личните съобщения", - "PMEnabledOptPopoverText": "Ако личните съобщения са забранени, Вие ще можете да изпращате съобщения, но никой няма да може да изпраща на Вас.", - "PMDisabledOptPopoverText": "Включете това, за да можете да получавате съобщения.", + "PMReceive": "Получаване на лични съобщения", + "PMEnabledOptPopoverText": "Личните съобщения са включени. Потребителите могат да се свържат с Вас чрез профила Ви.", + "PMDisabledOptPopoverText": "Личните съобщения са изключени. Включете ги, ако искате потребителите да могат да се свързват с Вас чрез профила Ви.", "PMDisabledCaptionTitle": "Личните съобщения са забранени", "PMDisabledCaptionText": "Вие можете да изпращате съобщения, но никой няма да може да изпраща на Вас.", "block": "Блокиране", diff --git a/website/common/locales/bg/limited.json b/website/common/locales/bg/limited.json index f77ae466d4..0a8e389786 100644 --- a/website/common/locales/bg/limited.json +++ b/website/common/locales/bg/limited.json @@ -121,16 +121,16 @@ "spring2018TulipMageSet": "Магьосник на лалето (магьосник)", "spring2018GarnetHealerSet": "Гранатен лечител (лечител)", "spring2018DucklingRogueSet": "Патешки мошеник (мошеник)", - "summer2018BettaFishWarriorSet": "Betta Fish Warrior (Warrior)", - "summer2018LionfishMageSet": "Lionfish Mage (Mage)", - "summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)", - "summer2018FisherRogueSet": "Fisher-Rogue (Rogue)", + "summer2018BettaFishWarriorSet": "Сиамски рибен воин (воин)", + "summer2018LionfishMageSet": "Лъвски рибен магьосник (магьосник)", + "summer2018MerfolkMonarchSet": "Цар на русалките (лечител)", + "summer2018FisherRogueSet": "Рибар-мошеник (мошеник)", "eventAvailability": "Налично за купуване до <%= date(locale) %>.", "dateEndMarch": "30 април", "dateEndApril": "19 април", "dateEndMay": "31 май", "dateEndJune": "14 юни", - "dateEndJuly": "29 юли", + "dateEndJuly": "31 юли", "dateEndAugust": "31 август", "dateEndOctober": "31 октомври", "dateEndNovember": "30 ноември", diff --git a/website/common/locales/bg/quests.json b/website/common/locales/bg/quests.json index 63c01451a1..b36ef61ab1 100644 --- a/website/common/locales/bg/quests.json +++ b/website/common/locales/bg/quests.json @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "Гилдиите не могат да бъдат канени в мисии.", "questNotOwned": "Не притежавате този свитък с мисия.", "questNotGoldPurchasable": "Мисията „<%= key %>“ не може да бъде купена със злато.", + "questNotGemPurchasable": "Мисията „<%= key %>“ не може да бъде купена с диаманти.", "questLevelTooHigh": "Трябва да бъдете ниво <%= level %>, за да започнете тази мисия.", "questAlreadyUnderway": "Групата Ви е вече изпълнява мисия. Опитайте отново, когато текущата мисия приключи.", "questAlreadyAccepted": "Вече сте приели поканата за мисията.", diff --git a/website/common/locales/bg/questscontent.json b/website/common/locales/bg/questscontent.json index ff65bedc64..df54270f9c 100644 --- a/website/common/locales/bg/questscontent.json +++ b/website/common/locales/bg/questscontent.json @@ -603,6 +603,6 @@ "questSquirrelUnlockText": "Отключва възможността за купуване на яйца на катерица от пазара.", "cuddleBuddiesText": "Пакет мисии „Пухкави приятелчета“", "cuddleBuddiesNotes": "Съдържа: „Зайчето-убиец“, „Нечестивият пор“ и „Бандата на морските свинчета“. Наличен до 31 май.", - "aquaticAmigosText": "Aquatic Amigos Quest Bundle", - "aquaticAmigosNotes": "Contains 'The Magical Axolotl', 'The Kraken of Inkomplete', and 'The Call of Octothulu'. Available until June 30." + "aquaticAmigosText": "Пакет мисии „Водни дружки“", + "aquaticAmigosNotes": "Съдържа: „Вълшебният саламандър“, „Кракенът на незавършеността“ и „Зовът на Октотулу“. Наличен до 30 юни." } \ No newline at end of file diff --git a/website/common/locales/bg/subscriber.json b/website/common/locales/bg/subscriber.json index 5f4059a445..71fc370271 100644 --- a/website/common/locales/bg/subscriber.json +++ b/website/common/locales/bg/subscriber.json @@ -144,6 +144,7 @@ "mysterySet201803": "Комплект на смелото водно конче", "mysterySet201804": "Комплект на изтупаната катерица", "mysterySet201805": "Феноменален паунов комплект", + "mysterySet201806": "Комплект на морския дявол", "mysterySet301404": "Стандартен изтънчен комплект", "mysterySet301405": "Комплект изтънчени принадлежности", "mysterySet301703": "Изтънчен паунов комплект", diff --git a/website/common/locales/bg/tasks.json b/website/common/locales/bg/tasks.json index 2624db0541..d4217b2069 100644 --- a/website/common/locales/bg/tasks.json +++ b/website/common/locales/bg/tasks.json @@ -194,8 +194,6 @@ "weeks": "Седмици", "year": "Година", "years": "Години", - "confirmScoreNotes": "Потвърждаване на точките за задачата с бележки", - "taskScoreNotesTooLong": "Бележките за точките на задачата трябва да съдържат не повече от 256 знака", "groupTasksByChallenge": "Групиране на задачите по заглавие на предизвикателство", "taskNotes": "Бележки към задачата", "monthlyRepeatHelpContent": "Тази задача ще бъде подновявана на всеки Х месеца.", diff --git a/website/common/locales/cs/backgrounds.json b/website/common/locales/cs/backgrounds.json index 2f33b88545..ca07fcb385 100644 --- a/website/common/locales/cs/backgrounds.json +++ b/website/common/locales/cs/backgrounds.json @@ -359,5 +359,12 @@ "backgroundRowboatText": "Rowboat", "backgroundRowboatNotes": "Sing rounds in a Rowboat.", "backgroundPirateFlagText": "Pirate Flag", - "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag." + "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag.", + "backgrounds072018": "SET 50: Released July 2018", + "backgroundDarkDeepText": "Dark Deep", + "backgroundDarkDeepNotes": "Swim in the Dark Deep among bioluminescent critters.", + "backgroundDilatoryCityText": "City of Dilatory", + "backgroundDilatoryCityNotes": "Meander through the undersea City of Dilatory.", + "backgroundTidePoolText": "Tide Pool", + "backgroundTidePoolNotes": "Observe the ocean life near a Tide Pool." } \ No newline at end of file diff --git a/website/common/locales/cs/content.json b/website/common/locales/cs/content.json index 6e0cc0972b..d37175cfdf 100644 --- a/website/common/locales/cs/content.json +++ b/website/common/locales/cs/content.json @@ -195,6 +195,7 @@ "hatchingPotionFairy": "pohádkový", "hatchingPotionStarryNight": "Hvězdná Noc", "hatchingPotionRainbow": "Rainbow", + "hatchingPotionGlass": "Glass", "hatchingPotionNotes": "Nalij ho na vejce a vylíhne se ti <%= potText(locale) %> mazlíček.", "premiumPotionAddlNotes": "Nelze použít na vejce mazlíčků z výprav.", "foodMeat": "Maso", diff --git a/website/common/locales/cs/gear.json b/website/common/locales/cs/gear.json index c8a8358fbe..4e8c7cc3d9 100644 --- a/website/common/locales/cs/gear.json +++ b/website/common/locales/cs/gear.json @@ -346,6 +346,8 @@ "weaponArmoireCobblersHammerNotes": "This hammer is specially made for leatherwork. It can do a real number on a red Daily in a pinch, though. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 2 of 3).", "weaponArmoireGlassblowersBlowpipeText": "Glassblower's Blowpipe", "weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Increases Strength by <%= str %>. Enchanted Armoire: Glassblower Set (Item 1 of 4).", + "weaponArmoirePoisonedGobletText": "Poisoned Goblet", + "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).", "armor": "zbroj", "armorCapitalized": "Zbroj", "armorBase0Text": "Obyčejné oblečení", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "The heat and light generated by this magic armor will warm your heart but never burn your skin! Confers no benefit. December 2017 Subscriber Item.", "armorMystery201802Text": "Love Bug Armor", "armorMystery201802Notes": "This shiny armor reflects your strength of heart and infuses it into any Habiticans nearby who may need encouragement! Confers no benefit. February 2018 Subscriber Item.", + "armorMystery201806Text": "Alluring Anglerfish Tail", + "armorMystery201806Notes": "This sinuous tail features glowing spots to light your way through the deep. Confers no benefit. June 2018 Subscriber Item.", "armorMystery301404Text": "Steampunk oblek", "armorMystery301404Notes": "Elegantní a fešácký, joj! Nepřináší žádný benefit. Předmět pro předplatitele únor 3015.", "armorMystery301703Text": "Steampunk Peacock Gown", @@ -742,6 +746,8 @@ "armorArmoireGlassblowersCoverallsNotes": "These coveralls will protect you while you're making masterpieces with hot molten glass. Increases Constitution by <%= con %>. Enchanted Armoire: Glassblower Set (Item 2 of 4).", "armorArmoireBluePartyDressText": "Blue Party Dress", "armorArmoireBluePartyDressNotes": "You're perceptive, tough, smart, and so fashionable! Increases Perception, Strength, and Constitution by <%= attrs %> each. Enchanted Armoire: Blue Hairbow Set (Item 2 of 2).", + "armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown", + "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Increases Perception by <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).", "headgear": "helm", "headgearCapitalized": "Headgear", "headBase0Text": "No Headgear", @@ -1054,6 +1060,8 @@ "headMystery201803Notes": "Although its appearance is quite decorative, you can engage the wings on this circlet for extra lift! Confers no benefit. March 2018 Subscriber Item.", "headMystery201805Text": "Phenomenal Peacock Helm", "headMystery201805Notes": "This helm will make you the proudest and prettiest (possibly also the loudest) bird in town. Confers no benefit. May 2018 Subscriber Item.", + "headMystery201806Text": "Alluring Anglerfish Helm", + "headMystery201806Notes": "The mesmerizing light atop this helm will call all the creatures of the sea to your side. We urge you to use your glowy powers of attraction for good! Confers no benefit. June 2018 Subscriber Item.", "headMystery301404Text": "Fešný cylindr", "headMystery301404Notes": "Fešný cylindr pro ty největší džentlmeny. Předmět pro předplatitele leden 2015. Nepřináší žádný benefit.", "headMystery301405Text": "Obyčejný cylindr", @@ -1154,6 +1162,8 @@ "headArmoireBigWigNotes": "Some powdered wigs are for looking more authoritative, but this one is just for laughs! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.", "headArmoireGlassblowersHatText": "Glassblower's Hat", "headArmoireGlassblowersHatNotes": "This hat mainly just looks good with your other protective glassblowing gear! Increases Perception by <%= per %>. Enchanted Armoire: Glassblower Set (Item 3 of 4).", + "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress", + "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).", "offhand": "off-hand item", "offhandCapitalized": "Off-Hand Item", "shieldBase0Text": "No Off-Hand Equipment", @@ -1368,6 +1378,8 @@ "shieldArmoireFancyShoeNotes": "A very special shoe you're working on. It's fit for royalty! Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 3 of 3).", "shieldArmoireFancyBlownGlassVaseText": "Fancy Blown Glass Vase", "shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Increases Intelligence by <%= int %>. Enchanted Armoire: Glassblower Set (Item 4 of 4).", + "shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield", + "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).", "back": "Příslušenství na záda", "backCapitalized": "Back Accessory", "backBase0Text": "Bez příslušenství na zádech", diff --git a/website/common/locales/cs/groups.json b/website/common/locales/cs/groups.json index 14cecb2616..38ae048fe8 100644 --- a/website/common/locales/cs/groups.json +++ b/website/common/locales/cs/groups.json @@ -134,12 +134,11 @@ "PMPlaceholderDescription": "Select a conversation on the left", "PMPlaceholderTitleRevoked": "Your chat privileges have been revoked", "PMPlaceholderDescriptionRevoked": "You are not able to send private messages because your chat privileges have been revoked. If you have questions or concerns about this, please email admin@habitica.com to discuss it with the staff.", - "PMEnable": "Enable Private Messages", - "PMDisable": "Disable Private Messages", - "PMEnabledOptPopoverText": "When Private Messages are disabled, you still can send messages, but no one can send them to you.", - "PMDisabledOptPopoverText": "Enable this option to be able to receive messages.", + "PMReceive": "Receive Private Messages", + "PMEnabledOptPopoverText": "Private Messages are enabled. Users can contact you via your profile.", + "PMDisabledOptPopoverText": "Private Messages are disabled. Enable this option to allow users to contact you via your profile.", "PMDisabledCaptionTitle": "Private Messages are disabled", - "PMDisabledCaptionText": "You still can send messages, but no one can send them to you.", + "PMDisabledCaptionText": "You can still send messages, but no one can send them to you.", "block": "Blokovat", "unblock": "Odblokovat", "pm-reply": "Poslat odpověď", diff --git a/website/common/locales/cs/limited.json b/website/common/locales/cs/limited.json index b3de621b23..28c549203e 100644 --- a/website/common/locales/cs/limited.json +++ b/website/common/locales/cs/limited.json @@ -130,7 +130,7 @@ "dateEndApril": "Duben 19", "dateEndMay": "May 31", "dateEndJune": "Červen 14", - "dateEndJuly": "Červenec 29", + "dateEndJuly": "July 31", "dateEndAugust": "Srpen 31", "dateEndOctober": "Říjen 31", "dateEndNovember": "Listopad 30", diff --git a/website/common/locales/cs/quests.json b/website/common/locales/cs/quests.json index 82980e8873..eb61ac651d 100644 --- a/website/common/locales/cs/quests.json +++ b/website/common/locales/cs/quests.json @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "Cechy nelze pozvat na výpravy.", "questNotOwned": "Nevlastníte tento svitek výpravy.", "questNotGoldPurchasable": "Výpravu „<%= key %>\" nelze koupit na zlato.", + "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", "questLevelTooHigh": "Pro začátek výpravy musíte mít úroveň <%= level %>.", "questAlreadyUnderway": "Vaše družina se již účastní výpravy. Až dokončíte současnou výpravu zkuste to znova.", "questAlreadyAccepted": "Již jsi přijal pozvánku na výpravu.", diff --git a/website/common/locales/cs/subscriber.json b/website/common/locales/cs/subscriber.json index cf339b3424..b1fdd38593 100644 --- a/website/common/locales/cs/subscriber.json +++ b/website/common/locales/cs/subscriber.json @@ -144,6 +144,7 @@ "mysterySet201803": "Daring Dragonfly Set", "mysterySet201804": "Spiffy Squirrel Set", "mysterySet201805": "Phenomenal Peacock Set", + "mysterySet201806": "Alluring Anglerfish Set", "mysterySet301404": "Standardní steampunkový set", "mysterySet301405": "Set steampunkových doplňků", "mysterySet301703": "Peacock Steampunk Set", diff --git a/website/common/locales/cs/tasks.json b/website/common/locales/cs/tasks.json index d471e8d592..fda0a6c6cf 100644 --- a/website/common/locales/cs/tasks.json +++ b/website/common/locales/cs/tasks.json @@ -194,8 +194,6 @@ "weeks": "Týdny", "year": "Rok", "years": "Roky", - "confirmScoreNotes": "Potvrď úkolové bodování pomocí poznámek", - "taskScoreNotesTooLong": "Bodovací poznámky úkolu musí mít méně než 256 znaků", "groupTasksByChallenge": "Seskupit úkoly podle názvu výzvy", "taskNotes": "Úkolové poznámky", "monthlyRepeatHelpContent": "Tento úkol bude muset výt splněn každých X měsíců", diff --git a/website/common/locales/da/backgrounds.json b/website/common/locales/da/backgrounds.json index 2457441c46..dc9056e705 100644 --- a/website/common/locales/da/backgrounds.json +++ b/website/common/locales/da/backgrounds.json @@ -359,5 +359,12 @@ "backgroundRowboatText": "Rowboat", "backgroundRowboatNotes": "Sing rounds in a Rowboat.", "backgroundPirateFlagText": "Pirate Flag", - "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag." + "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag.", + "backgrounds072018": "SET 50: Released July 2018", + "backgroundDarkDeepText": "Dark Deep", + "backgroundDarkDeepNotes": "Swim in the Dark Deep among bioluminescent critters.", + "backgroundDilatoryCityText": "City of Dilatory", + "backgroundDilatoryCityNotes": "Meander through the undersea City of Dilatory.", + "backgroundTidePoolText": "Tide Pool", + "backgroundTidePoolNotes": "Observe the ocean life near a Tide Pool." } \ No newline at end of file diff --git a/website/common/locales/da/content.json b/website/common/locales/da/content.json index 1321b6a88b..9915771faa 100644 --- a/website/common/locales/da/content.json +++ b/website/common/locales/da/content.json @@ -195,6 +195,7 @@ "hatchingPotionFairy": "Fe", "hatchingPotionStarryNight": "Starry Night", "hatchingPotionRainbow": "Rainbow", + "hatchingPotionGlass": "Glass", "hatchingPotionNotes": "Hæld på et æg, og det vil udklække til et <%= potText(locale) %> kæledyr.", "premiumPotionAddlNotes": "Kan ikke bruges på quest-æg.", "foodMeat": "Kød", diff --git a/website/common/locales/da/gear.json b/website/common/locales/da/gear.json index 35f0da92dd..9bc0136166 100644 --- a/website/common/locales/da/gear.json +++ b/website/common/locales/da/gear.json @@ -346,6 +346,8 @@ "weaponArmoireCobblersHammerNotes": "This hammer is specially made for leatherwork. It can do a real number on a red Daily in a pinch, though. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 2 of 3).", "weaponArmoireGlassblowersBlowpipeText": "Glassblower's Blowpipe", "weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Increases Strength by <%= str %>. Enchanted Armoire: Glassblower Set (Item 1 of 4).", + "weaponArmoirePoisonedGobletText": "Poisoned Goblet", + "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).", "armor": "rustning", "armorCapitalized": "Armor", "armorBase0Text": "Almindeligt tøj", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "The heat and light generated by this magic armor will warm your heart but never burn your skin! Confers no benefit. December 2017 Subscriber Item.", "armorMystery201802Text": "Love Bug Armor", "armorMystery201802Notes": "This shiny armor reflects your strength of heart and infuses it into any Habiticans nearby who may need encouragement! Confers no benefit. February 2018 Subscriber Item.", + "armorMystery201806Text": "Alluring Anglerfish Tail", + "armorMystery201806Notes": "This sinuous tail features glowing spots to light your way through the deep. Confers no benefit. June 2018 Subscriber Item.", "armorMystery301404Text": "Steampunk-dragt", "armorMystery301404Notes": "Nydelig og elegant, selvfølgelig! Giver ingen bonusser. Februar 3015 Abonnentting.", "armorMystery301703Text": "Steampunk Peacock Gown", @@ -742,6 +746,8 @@ "armorArmoireGlassblowersCoverallsNotes": "These coveralls will protect you while you're making masterpieces with hot molten glass. Increases Constitution by <%= con %>. Enchanted Armoire: Glassblower Set (Item 2 of 4).", "armorArmoireBluePartyDressText": "Blue Party Dress", "armorArmoireBluePartyDressNotes": "You're perceptive, tough, smart, and so fashionable! Increases Perception, Strength, and Constitution by <%= attrs %> each. Enchanted Armoire: Blue Hairbow Set (Item 2 of 2).", + "armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown", + "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Increases Perception by <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).", "headgear": "helm", "headgearCapitalized": "Headgear", "headBase0Text": "No Headgear", @@ -1054,6 +1060,8 @@ "headMystery201803Notes": "Although its appearance is quite decorative, you can engage the wings on this circlet for extra lift! Confers no benefit. March 2018 Subscriber Item.", "headMystery201805Text": "Phenomenal Peacock Helm", "headMystery201805Notes": "This helm will make you the proudest and prettiest (possibly also the loudest) bird in town. Confers no benefit. May 2018 Subscriber Item.", + "headMystery201806Text": "Alluring Anglerfish Helm", + "headMystery201806Notes": "The mesmerizing light atop this helm will call all the creatures of the sea to your side. We urge you to use your glowy powers of attraction for good! Confers no benefit. June 2018 Subscriber Item.", "headMystery301404Text": "Smart Tophat", "headMystery301404Notes": "En smart tophat for de fineste folk! Giver ingen bonusser. Januar 3015 Abonnentting.", "headMystery301405Text": "Simpel Tophat", @@ -1154,6 +1162,8 @@ "headArmoireBigWigNotes": "Some powdered wigs are for looking more authoritative, but this one is just for laughs! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.", "headArmoireGlassblowersHatText": "Glassblower's Hat", "headArmoireGlassblowersHatNotes": "This hat mainly just looks good with your other protective glassblowing gear! Increases Perception by <%= per %>. Enchanted Armoire: Glassblower Set (Item 3 of 4).", + "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress", + "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).", "offhand": "off-hand item", "offhandCapitalized": "Off-Hand Item", "shieldBase0Text": "No Off-Hand Equipment", @@ -1368,6 +1378,8 @@ "shieldArmoireFancyShoeNotes": "A very special shoe you're working on. It's fit for royalty! Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 3 of 3).", "shieldArmoireFancyBlownGlassVaseText": "Fancy Blown Glass Vase", "shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Increases Intelligence by <%= int %>. Enchanted Armoire: Glassblower Set (Item 4 of 4).", + "shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield", + "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).", "back": "Ryg-udstyr", "backCapitalized": "Back Accessory", "backBase0Text": "Intet Ryg-udstyr", diff --git a/website/common/locales/da/groups.json b/website/common/locales/da/groups.json index 2ad7ccd038..7879e0cc2f 100644 --- a/website/common/locales/da/groups.json +++ b/website/common/locales/da/groups.json @@ -134,12 +134,11 @@ "PMPlaceholderDescription": "Select a conversation on the left", "PMPlaceholderTitleRevoked": "Your chat privileges have been revoked", "PMPlaceholderDescriptionRevoked": "You are not able to send private messages because your chat privileges have been revoked. If you have questions or concerns about this, please email admin@habitica.com to discuss it with the staff.", - "PMEnable": "Enable Private Messages", - "PMDisable": "Disable Private Messages", - "PMEnabledOptPopoverText": "When Private Messages are disabled, you still can send messages, but no one can send them to you.", - "PMDisabledOptPopoverText": "Enable this option to be able to receive messages.", + "PMReceive": "Receive Private Messages", + "PMEnabledOptPopoverText": "Private Messages are enabled. Users can contact you via your profile.", + "PMDisabledOptPopoverText": "Private Messages are disabled. Enable this option to allow users to contact you via your profile.", "PMDisabledCaptionTitle": "Private Messages are disabled", - "PMDisabledCaptionText": "You still can send messages, but no one can send them to you.", + "PMDisabledCaptionText": "You can still send messages, but no one can send them to you.", "block": "Blokér", "unblock": "Fjern blokering", "pm-reply": "Send svar", diff --git a/website/common/locales/da/limited.json b/website/common/locales/da/limited.json index ac6bfc7384..69007f77be 100644 --- a/website/common/locales/da/limited.json +++ b/website/common/locales/da/limited.json @@ -130,7 +130,7 @@ "dateEndApril": "19. april", "dateEndMay": "May 31", "dateEndJune": "Juni 14", - "dateEndJuly": "July 29", + "dateEndJuly": "July 31", "dateEndAugust": "August 31", "dateEndOctober": "October 31", "dateEndNovember": "November 30", diff --git a/website/common/locales/da/quests.json b/website/common/locales/da/quests.json index 85f11868c6..ae9a5c7ef2 100644 --- a/website/common/locales/da/quests.json +++ b/website/common/locales/da/quests.json @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "Klaner kan ikke blive inviteret på quests.", "questNotOwned": "Du ejer ikke den quest-skriftrulle", "questNotGoldPurchasable": "Quest \"<%= key %>\" er ikke en quest, der kan købes for Guld.", + "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", "questLevelTooHigh": "Du skal være niveau <%= level %> for at starte denne quest.", "questAlreadyUnderway": "Din gruppe er allerede på en quest. Prøv igen når den nuværende quest er afsluttet.", "questAlreadyAccepted": "Du har allerede accepteret questinvitationen", diff --git a/website/common/locales/da/subscriber.json b/website/common/locales/da/subscriber.json index 2a12d611c0..5beb929783 100644 --- a/website/common/locales/da/subscriber.json +++ b/website/common/locales/da/subscriber.json @@ -144,6 +144,7 @@ "mysterySet201803": "Daring Dragonfly Set", "mysterySet201804": "Spiffy Squirrel Set", "mysterySet201805": "Phenomenal Peacock Set", + "mysterySet201806": "Alluring Anglerfish Set", "mysterySet301404": "Steampunk Standardsæt", "mysterySet301405": "Steampunk Tilbehørssæt", "mysterySet301703": "Påfugle-Steampunk-sæt", diff --git a/website/common/locales/da/tasks.json b/website/common/locales/da/tasks.json index e140670956..bad2909de8 100644 --- a/website/common/locales/da/tasks.json +++ b/website/common/locales/da/tasks.json @@ -194,8 +194,6 @@ "weeks": "Uger", "year": "År", "years": "År", - "confirmScoreNotes": "Godkend opgavens pointgivning med noter", - "taskScoreNotesTooLong": "Pointgivningsnoter skal være under 256 tegn", "groupTasksByChallenge": "Gruppér opgaver efter udfordrings-titel.", "taskNotes": "Opgavenoter", "monthlyRepeatHelpContent": "Denne opgave vil være forfalden hver X måneder", diff --git a/website/common/locales/de/backgrounds.json b/website/common/locales/de/backgrounds.json index 826d45fe39..a797cb586b 100644 --- a/website/common/locales/de/backgrounds.json +++ b/website/common/locales/de/backgrounds.json @@ -359,5 +359,12 @@ "backgroundRowboatText": "Ruderboot", "backgroundRowboatNotes": "Singe im Takt der Ruder in einem Ruderboot.", "backgroundPirateFlagText": "Piratenflagge", - "backgroundPirateFlagNotes": "Hisse eine furchterregende Piratenflagge." + "backgroundPirateFlagNotes": "Hisse eine furchterregende Piratenflagge.", + "backgrounds072018": "SET 50: Released July 2018", + "backgroundDarkDeepText": "Dark Deep", + "backgroundDarkDeepNotes": "Swim in the Dark Deep among bioluminescent critters.", + "backgroundDilatoryCityText": "City of Dilatory", + "backgroundDilatoryCityNotes": "Meander through the undersea City of Dilatory.", + "backgroundTidePoolText": "Tide Pool", + "backgroundTidePoolNotes": "Observe the ocean life near a Tide Pool." } \ No newline at end of file diff --git a/website/common/locales/de/communityguidelines.json b/website/common/locales/de/communityguidelines.json index 29dfbe29c7..430dd7641a 100644 --- a/website/common/locales/de/communityguidelines.json +++ b/website/common/locales/de/communityguidelines.json @@ -12,7 +12,7 @@ "commGuidePara016": "Wenn Du Dich durch die öffentlichen Orte in Habitica bewegst, gibt es ein paar allgemeine Regeln, damit jeder sicher und glücklich ist. Diese sollten für einen Abenteurer wie Dich einfach sein!", "commGuideList02A": "Respektiert einander. Sei höflich, freundlich und hilfsbereit. Vergiss nicht: Habiticaner kommen aus den verschiedensten Hintergründen und haben sehr andere Erfahrungen gemacht. Das macht Habitica so eigenartig! Es ist wichtig, das man beim Aufbauen einer Community seine Unterschiede und Ähnlichkeiten respektieren aber natürlich auch feiern kann. Dies sind einfache Möglichkeiten einander zu respektieren:", "commGuideList02B": "Befolge alle allgemeinen Geschäftsbedingungen.", - "commGuideList02C": "Do not post images or text that are violent, threatening, or sexually explicit/suggestive, or that promote discrimination, bigotry, racism, sexism, hatred, harassment or harm against any individual or group. Not even as a joke. This includes slurs as well as statements. Not everyone has the same sense of humor, and so something that you consider a joke may be hurtful to another. Attack your Dailies, not each other.", + "commGuideList02C": "Poste bitte keine Bilder oder Texte, die Gewalt darstellen, andere einschüchtern, oder eindeutig/indirekt sexuell sind, die Diskriminierung, Fanatismus, Rassismus, Sexismus, Hass, Belästigungen oder Hetze gegen jedwede Individuen oder Gruppen beinhalten. Auch nicht als Scherz. Das bezieht sowohl Sprüche als auch Stellungnahmen mit ein. Nicht jeder hat den gleichen Humor, etwas, was Du als Witz wahrnimmst, kann für jemand anderen verletzend sein. Greift eure täglichen Aufgaben an, nicht einander.", "commGuideList02D": "Keep discussions appropriate for all ages. We have many young Habiticans who use the site! Let's not tarnish any innocents or hinder any Habiticans in their goals.", "commGuideList02E": "Avoid profanity. This includes milder, religious-based oaths that may be acceptable elsewhere. We have people from all religious and cultural backgrounds, and we want to make sure that all of them feel comfortable in public spaces. If a moderator or staff member tells you that a term is disallowed on Habitica, even if it is a term that you did not realize was problematic, that decision is final. Additionally, slurs will be dealt with very severely, as they are also a violation of the Terms of Service.", "commGuideList02F": "Avoid extended discussions of divisive topics in the Tavern and where it would be off-topic. If you feel that someone has said something rude or hurtful, do not engage them. If someone mentions something that is allowed by the guidelines but which is hurtful to you, it’s okay to politely let someone know that. If it is against the guidelines or the Terms of Service, you should flag it and let a mod respond. When in doubt, flag the post.", @@ -20,7 +20,7 @@ "commGuideList02H": "Take time to reflect instead of responding in anger if someone tells you that something you said or did made them uncomfortable. There is great strength in being able to sincerely apologize to someone. If you feel that the way they responded to you was inappropriate, contact a mod rather than calling them out on it publicly.", "commGuideList02I": "Divisive/contentious conversations should be reported to mods by flagging the messages involved or using the Moderator Contact Form. If you feel that a conversation is getting heated, overly emotional, or hurtful, cease to engage. Instead, report the posts to let us know about it. Moderators will respond as quickly as possible. It's our job to keep you safe. If you feel that more context is required, you can report the problem using the Moderator Contact Form.", "commGuideList02J": "Do not spam. Spamming may include, but is not limited to: posting the same comment or query in multiple places, posting links without explanation or context, posting nonsensical messages, posting multiple promotional messages about a Guild, Party or Challenge, or posting many messages in a row. Asking for gems or a subscription in any of the chat spaces or via Private Message is also considered spamming. If people clicking on a link will result in any benefit to you, you need to disclose that in the text of your message or that will also be considered spam.

It is up to the mods to decide if something constitutes spam or might lead to spam, even if you don’t feel that you have been spamming. For example, advertising a Guild is acceptable once or twice, but multiple posts in one day would probably constitute spam, no matter how useful the Guild is!", - "commGuideList02K": "Avoid posting large header text in the public chat spaces, particularly the Tavern. Much like ALL CAPS, it reads as if you were yelling, and interferes with the comfortable atmosphere.", + "commGuideList02K": "Bitte vermeide große Überschriften in öffentlichen Chats, vor allem im Gasthaus. Ähnlich wie bei GROSSBUCHSTABEN liest sich der Text, als ob Du schreien würdest, und beeinträchtigt die gemütliche Atmosphäre.", "commGuideList02L": "We highly discourage the exchange of personal information -- particularly information that can be used to identify you -- in public chat spaces. Identifying information can include but is not limited to: your address, your email address, and your API token/password. This is for your safety! Staff or moderators may remove such posts at their discretion. If you are asked for personal information in a private Guild, Party, or PM, we highly recommend that you politely refuse and alert the staff and moderators by either 1) flagging the message if it is in a Party or private Guild, or 2) filling out the Moderator Contact Form and including screenshots.", "commGuidePara019": "In private spaces, users have more freedom to discuss whatever topics they would like, but they still may not violate the Terms and Conditions, including posting slurs or any discriminatory, violent, or threatening content. Note that, because Challenge names appear in the winner's public profile, ALL Challenge names must obey the public space guidelines, even if they appear in a private space.", "commGuidePara020": "Für private Nachrichten (PNs) gibt es einige zusätzliche Richtlinien. Falls Dich jemand geblockt hat, kontaktiere ihn nicht über andere Wege, um ihn oder sie zu bitten Dich nicht mehr zu blocken. Außerdem solltest Du keine PNs schicken, wenn Du Hilfe mit der Seite, also \"Support\" brauchst (allgemein zugängliche Antworten auf diese Fragen im Gasthaus oder Forum kommen der Gemeinschaft zugute). Schließlich schicke bitte keine PNs, in denen Du um Edelsteine oder ein Abonnement bettelst, da dies als Spam gewertet werden kann.", @@ -29,7 +29,7 @@ "commGuideHeadingTavern": "Das Gasthaus", "commGuidePara022": "The Tavern is the main spot for Habiticans to mingle. Daniel the Innkeeper keeps the place spic-and-span, and Lemoness will happily conjure up some lemonade while you sit and chat. Just keep in mind…", "commGuidePara023": "Conversation tends to revolve around casual chatting and productivity or life improvement tips. Because the Tavern chat can only hold 200 messages, it isn't a good place for prolonged conversations on topics, especially sensitive ones (ex. politics, religion, depression, whether or not goblin-hunting should be banned, etc.). These conversations should be taken to an applicable Guild. A Mod may direct you to a suitable Guild, but it is ultimately your responsibility to find and post in the appropriate place.", - "commGuidePara024": "Don't discuss anything addictive in the Tavern. Many people use Habitica to try to quit their bad Habits. Hearing people talk about addictive/illegal substances may make this much harder for them! Respect your fellow Tavern-goers and take this into consideration. This includes, but is not exclusive to: smoking, alcohol, pornography, gambling, and drug use/abuse.", + "commGuidePara024": "Sprecht nicht über etwas suchterregendes im Gasthaus. Viele Menschen verwenden Habitica, um Ihre schlechten Gewohnheiten loszuwerden. Wenn sie andere Leute über suchterregende/illegale Substanzen reden hören, würde das dies deutlich erschweren! Respektiert eure Gasthauskameraden und berücksichtigt diesen Umstand. Dies gilt auch, aber nicht abschließend, für: Rauchen, Alkohol, Pornografie, Glückspiel und Drogen.", "commGuidePara027": "When a moderator directs you to take a conversation elsewhere, if there is no relevant Guild, they may suggest you use the Back Corner. The Back Corner Guild is a free public space to discuss potentially sensitive subjects that should only be used when directed there by a moderator. It is carefully monitored by the moderation team. It is not a place for general discussions or conversations, and you will be directed there by a mod only when it is appropriate.", "commGuideHeadingPublicGuilds": "Öffentliche Gilden", "commGuidePara029": "Public Guilds are much like the Tavern, except that instead of being centered around general conversation, they have a focused theme. Public Guild chat should focus on this theme. For example, members of the Wordsmiths Guild might be cross if the conversation is suddenly focusing on gardening instead of writing, and a Dragon-Fanciers Guild might not have any interest in deciphering ancient runes. Some Guilds are more lax about this than others, but in general, try to stay on topic!", @@ -66,7 +66,7 @@ "commGuidePara057": "In folgender Liste sind Beispiele für leichte Regelverletzungen. Die Liste ist nicht vollständig.", "commGuideList07A": "Erstmalige Verletzung von Richtlinien für öffentliche Orte", "commGuideList07B": "Any statements or actions that trigger a \"Please Don't\". When a Mod has to say \"Please don't do this\" to a user, it can count as a very minor infraction for that user. An example might be \"Please don't keep arguing in favor of this feature idea after we've told you several times that it isn't feasible.\" In many cases, the Please Don't will be the minor consequence as well, but if Mods have to say \"Please Don't\" to the same user enough times, the triggering Minor Infractions will start to count as Moderate Infractions.", - "commGuidePara057A": "Some posts may be hidden because they contain sensitive information or might give people the wrong idea. Typically this does not count as an infraction, particularly not the first time it happens!", + "commGuidePara057A": "Manche Beiträge werden eventuell versteckt, da sie persönliche Informationen enthalten oder einen falschen Eindruck erwecken. Normalerweise wird dies nicht als Verstoß gewertet, vor allem nicht beim ersten Mal.", "commGuideHeadingConsequences": "Konsequenzen", "commGuidePara058": "In Habitica hat - wie im echten Leben - jede Handlung eine Konsequenz: man wird fit weil man rennt, bekommt Löcher in den Zähnen weil man zu viel Zucker isst oder besteht eine Prüfung, weil man gelernt hat.", "commGuidePara059": "Alle Regelverletzungen haben direkte Konsequenzen. Einige Beispielkonsequenzen sind unten beschrieben.", @@ -80,7 +80,7 @@ "commGuideList09A": "Kontosperren (siehe oben)", "commGuideList09C": "Der Aufstieg in höhere Mitwirkendenstufen kann dauerhaft verwehrt (\"eingefroren\") werden", "commGuideHeadingModerateConsequences": "Beispiele für mittlere Konsequenzen", - "commGuideList10A": "Restricted public and/or private chat privileges", + "commGuideList10A": "Beschränkte öffentliche und/oder private Chat Berechtigungen", "commGuideList10A1": "Führen deine Handlungen zur Aufhebung deiner Chatrechte, wird dich ein Moderator oder Mitarbeiter per PM und/oder in dem Forum, in dem du stummgeschaltet wurdest, über die Dauer und Gründe für das Stummschalten informieren. Nach Abauf dieser Zeit erhälst du deine Chatrechte zurück, vorausgesetzt du stimmst zu, dein Verhalten zu ändern und dich fortan an die Community-Richtlinien zu halten.", "commGuideList10C": "Restricted Guild/Challenge creation privileges", "commGuideList10D": "Der Aufstieg in höhere Mitwirkendenstufen kann temporär verwehrt (\"eingefroren\") werden", @@ -118,7 +118,7 @@ "commGuidePara068": "Nun voran, mutiger Abenteurer und besiege einige tägliche Aufgaben!", "commGuideHeadingLinks": "Nützliche Links", "commGuideLink01": "Habitica Help: Ask a Question: a Guild for users to ask questions!", - "commGuideLink02": "The Wiki: the biggest collection of information about Habitica.", + "commGuideLink02": "Das Wiki: Die größte Informationssammlung über Habitica.", "commGuideLink03": "GitHub: für Fehlermeldungen oder für das Mithelfen beim Programmieren.", "commGuideLink04": "The Main Trello: for site feature requests.", "commGuideLink05": "The Mobile Trello: for mobile feature requests.", diff --git a/website/common/locales/de/content.json b/website/common/locales/de/content.json index 270e6838ad..935c5d85c7 100644 --- a/website/common/locales/de/content.json +++ b/website/common/locales/de/content.json @@ -195,6 +195,7 @@ "hatchingPotionFairy": "Feenhaftes", "hatchingPotionStarryNight": "Sternenklare Nacht", "hatchingPotionRainbow": "Regenbogen", + "hatchingPotionGlass": "Glas", "hatchingPotionNotes": "Gieße dies über ein Ei und es wird ein <%= potText(locale) %> Haustier daraus schlüpfen.", "premiumPotionAddlNotes": "Nicht auf Eier von Quest-Haustieren anwendbar.", "foodMeat": "Fleisch", diff --git a/website/common/locales/de/gear.json b/website/common/locales/de/gear.json index df08947b64..0dd59d6a35 100644 --- a/website/common/locales/de/gear.json +++ b/website/common/locales/de/gear.json @@ -249,7 +249,7 @@ "weaponSpecialWinter2018MageText": "Feiertagskonfetti", "weaponSpecialWinter2018MageNotes": "Magie - und Glitzer - liegt in der Luft! Erhöht Intelligenz um <%= int %> und Wahrnehmung um<%= per %>. Limitierte Ausgabe 2017-2018 Winterausrüstung.", "weaponSpecialWinter2018HealerText": "Mistelzauberstab", - "weaponSpecialWinter2018HealerNotes": "This mistletoe ball is sure to enchant and delight passersby! Increases Intelligence by <%= int %>. Limited Edition 2017-2018 Winter Gear.", + "weaponSpecialWinter2018HealerNotes": "Dieser Mistelball wird mit Sicherheit alle Passanten verzaubern und betören. Erhöht Intelligenz um <%= int %>. Limitierte Auflage 2017-2018 Winterausrüstung.", "weaponSpecialSpring2018RogueText": "Putziger Rohrkolben", "weaponSpecialSpring2018RogueNotes": "Was wie ein flauschiger Pfeifenreiniger aussieht, kann eine recht effektive Waffe in den richtigen Flügeln sein. Erhöht Stärke um <%= str %>. Limitierte Ausgabe 2018 Frühlingsausrüstung.", "weaponSpecialSpring2018WarriorText": "Axt des anbrechenden Tags", @@ -258,10 +258,10 @@ "weaponSpecialSpring2018MageNotes": "Diese magische Blume wird nie verwelken! Erhöht Intelligenz um <%= int %> und Wahrnehmung um <%= per %>. Limitierte Ausgabe 2018 Frühlingsausrüstung.", "weaponSpecialSpring2018HealerText": "Granatzauberstab", "weaponSpecialSpring2018HealerNotes": "Diese Steine in diesem Stab werden Deine Kräfte bündeln, wenn Du Heilzauber anwendest! Erhöht Intelligenz um <%= int %>. Limitierte Ausgabe 2018 Frühlingsausrüstung.", - "weaponSpecialSummer2018RogueText": "Fishing Rod", + "weaponSpecialSummer2018RogueText": "Angel", "weaponSpecialSummer2018RogueNotes": "This lightweight, practically unbreakable rod and reel can be dual-wielded to maximize your DPS (Dragonfish Per Summer). Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.", "weaponSpecialSummer2018WarriorText": "Betta Fish Spear", - "weaponSpecialSummer2018WarriorNotes": "Mighty enough for battle, elegant enough for ceremony, this exquisitely crafted spear shows you will protect your home surf no matter what! Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.", + "weaponSpecialSummer2018WarriorNotes": "Mächtig genug für den Kampf, elegant genug für Zeremonien, dieser exquisit gefertigte Speer beweist, dass du dein Zuhause kompromisslos beschützen wirst! Erhöht Stärke um <%= str %>. Limitierte Auflage 2018 Sommerausrüstung.", "weaponSpecialSummer2018MageText": "Lionfish Fin Rays", "weaponSpecialSummer2018MageNotes": "Underwater, magic based on fire, ice, or electricity can prove hazardous to the Mage wielding it. Conjuring poisonous spines, however, works brilliantly! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2018 Summer Gear.", "weaponSpecialSummer2018HealerText": "Merfolk Monarch Trident", @@ -346,6 +346,8 @@ "weaponArmoireCobblersHammerNotes": "This hammer is specially made for leatherwork. It can do a real number on a red Daily in a pinch, though. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 2 of 3).", "weaponArmoireGlassblowersBlowpipeText": "Glassblower's Blowpipe", "weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Increases Strength by <%= str %>. Enchanted Armoire: Glassblower Set (Item 1 of 4).", + "weaponArmoirePoisonedGobletText": "Poisoned Goblet", + "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).", "armor": "Rüstung", "armorCapitalized": "Rüstung", "armorBase0Text": "Schlichte Kleidung", @@ -393,7 +395,7 @@ "armorSpecial0Text": "Schattenrüstung", "armorSpecial0Notes": "Diese Rüstung schreit, wenn sie getroffen wird, weil sie den Schmerz des Trägers statt ihm fühlt. Erhöht Ausdauer um <%= con %>.", "armorSpecial1Text": "Kristallrüstung", - "armorSpecial1Notes": "Its tireless power inures the wearer to mundane discomfort. Increases all Stats by <%= attrs %>.", + "armorSpecial1Notes": "Die unermüdliche Macht härtet den Träger gegen alltägliches Unbehagen ab. Erhöht alle Attribute um jeweils <%= attrs %>.", "armorSpecial2Text": "Jean Chalards edle Tunika", "armorSpecial2Notes": "Macht Dich besonders flauschig! Erhöht Ausdauer und Intelligenz um jeweils <%= attrs %>.", "armorSpecialTakeThisText": "Take This-Rüstung", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "Die Hitze und das Licht, das diese magische Rüstung erzeugt, wird Dein Herz wärmen, aber niemals Deine Haut verbrennen! Gewährt keinen Attributbonus. Abonnentengegenstand, Dezember 2017.", "armorMystery201802Text": "Liebeskäfer-Rüstung", "armorMystery201802Notes": "Diese glänzende Rüstung reflektiert die Stärke Deines Herzens und leitet sie an alle Habiticaner in der Nähe weiter, die etwas Ermutigung brauchen! Gewährt keinen Attributbonus. Abonnentengegenstand, Februar 2018.", + "armorMystery201806Text": "Alluring Anglerfish Tail", + "armorMystery201806Notes": "This sinuous tail features glowing spots to light your way through the deep. Confers no benefit. June 2018 Subscriber Item.", "armorMystery301404Text": "Steampunkanzug", "armorMystery301404Notes": "Adrett und schneidig, hoho! Gewährt keinen Attributbonus. Abonnentengegenstand, Februar 3015.", "armorMystery301703Text": "Steampunk-Pfauen-Robe", @@ -742,6 +746,8 @@ "armorArmoireGlassblowersCoverallsNotes": "These coveralls will protect you while you're making masterpieces with hot molten glass. Increases Constitution by <%= con %>. Enchanted Armoire: Glassblower Set (Item 2 of 4).", "armorArmoireBluePartyDressText": "Blue Party Dress", "armorArmoireBluePartyDressNotes": "You're perceptive, tough, smart, and so fashionable! Increases Perception, Strength, and Constitution by <%= attrs %> each. Enchanted Armoire: Blue Hairbow Set (Item 2 of 2).", + "armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown", + "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Increases Perception by <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).", "headgear": "Helm", "headgearCapitalized": "Kopfschutz", "headBase0Text": "Keine Kopfbedeckung", @@ -1054,6 +1060,8 @@ "headMystery201803Notes": "Trotz ihres dekorativen Aussehens können Dir die Flügel auf diesen Diadem extra Auftrieb geben! Gewährt keinen Attributbonus. Abonnentengegenstand, März 2018. ", "headMystery201805Text": "Phenomenal Peacock Helm", "headMystery201805Notes": "This helm will make you the proudest and prettiest (possibly also the loudest) bird in town. Confers no benefit. May 2018 Subscriber Item.", + "headMystery201806Text": "Alluring Anglerfish Helm", + "headMystery201806Notes": "The mesmerizing light atop this helm will call all the creatures of the sea to your side. We urge you to use your glowy powers of attraction for good! Confers no benefit. June 2018 Subscriber Item.", "headMystery301404Text": "Schicker Zylinder", "headMystery301404Notes": "Ein schicker Zylinder für die feinsten Ehrenleute! Gewährt keinen Attributbonus. Abonnentengegenstand, Januar 3015.", "headMystery301405Text": "Einfacher Zylinder", @@ -1154,6 +1162,8 @@ "headArmoireBigWigNotes": "Some powdered wigs are for looking more authoritative, but this one is just for laughs! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.", "headArmoireGlassblowersHatText": "Glassblower's Hat", "headArmoireGlassblowersHatNotes": "This hat mainly just looks good with your other protective glassblowing gear! Increases Perception by <%= per %>. Enchanted Armoire: Glassblower Set (Item 3 of 4).", + "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress", + "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).", "offhand": "Schildhand-Gegenstand", "offhandCapitalized": "Schildhand-Gegenstand", "shieldBase0Text": "Keine Schildhand-Ausrüstung.", @@ -1368,6 +1378,8 @@ "shieldArmoireFancyShoeNotes": "A very special shoe you're working on. It's fit for royalty! Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 3 of 3).", "shieldArmoireFancyBlownGlassVaseText": "Fancy Blown Glass Vase", "shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Increases Intelligence by <%= int %>. Enchanted Armoire: Glassblower Set (Item 4 of 4).", + "shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield", + "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).", "back": "Rückenschmuck", "backCapitalized": "Rückenaccessoire", "backBase0Text": "Kein Rückenschmuck", diff --git a/website/common/locales/de/groups.json b/website/common/locales/de/groups.json index b897d26941..271c8c3e76 100644 --- a/website/common/locales/de/groups.json +++ b/website/common/locales/de/groups.json @@ -134,12 +134,11 @@ "PMPlaceholderDescription": "Select a conversation on the left", "PMPlaceholderTitleRevoked": "Dir wurden Deine Chat Privilegien entzogen.", "PMPlaceholderDescriptionRevoked": "You are not able to send private messages because your chat privileges have been revoked. If you have questions or concerns about this, please email admin@habitica.com to discuss it with the staff.", - "PMEnable": "Private Nachrichten aktivieren", - "PMDisable": "Private Nachrichten deaktivieren", - "PMEnabledOptPopoverText": "Wenn Private Nachrichten deaktiviert sind, kannst Du noch immer Nachrichten senden, jedoch kann dir niemand welche senden.", - "PMDisabledOptPopoverText": "Aktiviere diese Option um Nachrichten empfangen zu können.", + "PMReceive": "Receive Private Messages", + "PMEnabledOptPopoverText": "Private Messages are enabled. Users can contact you via your profile.", + "PMDisabledOptPopoverText": "Private Messages are disabled. Enable this option to allow users to contact you via your profile.", "PMDisabledCaptionTitle": "Private Nachrichten sind deaktiviert", - "PMDisabledCaptionText": "You still can send messages, but no one can send them to you.", + "PMDisabledCaptionText": "You can still send messages, but no one can send them to you.", "block": "Sperren", "unblock": "Entsperren", "pm-reply": "Eine Antwort schicken", diff --git a/website/common/locales/de/limited.json b/website/common/locales/de/limited.json index d79cb2ecbd..0806b8f331 100644 --- a/website/common/locales/de/limited.json +++ b/website/common/locales/de/limited.json @@ -130,7 +130,7 @@ "dateEndApril": "19. April", "dateEndMay": "31. Mai", "dateEndJune": "14. Juni", - "dateEndJuly": "29. Juli", + "dateEndJuly": "July 31", "dateEndAugust": "31. August", "dateEndOctober": "31. Oktober", "dateEndNovember": "30. November", diff --git a/website/common/locales/de/quests.json b/website/common/locales/de/quests.json index f9ead6f7f6..3aaf163b0c 100644 --- a/website/common/locales/de/quests.json +++ b/website/common/locales/de/quests.json @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "Gilden können nicht zu Quests eingeladen werden.", "questNotOwned": "Du besitzt diese Quest-Schriftrolle nicht.", "questNotGoldPurchasable": "Quest \"<%= key %>\" ist nicht mit Gold käuflich.", + "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", "questLevelTooHigh": "Du musst Level <%= level %> haben, um diese Quest zu starten.", "questAlreadyUnderway": "Deine Gruppe nimmt bereits an einer Quest teil. Versuche es erneut, wenn die Quest abgeschlossen ist.", "questAlreadyAccepted": "Du hast die Questeinladung bereits angenommen.", diff --git a/website/common/locales/de/subscriber.json b/website/common/locales/de/subscriber.json index 451508bed9..7f12430727 100644 --- a/website/common/locales/de/subscriber.json +++ b/website/common/locales/de/subscriber.json @@ -7,7 +7,7 @@ "buyGemsGoldText": "Alexander der Händler verkauft Dir Edelsteine zum Preis von 20 Goldstücken pro Edelstein. Seine Lieferungen sind anfänglich auf 25 Edelsteine pro Monat beschränkt, aber dieses Limit erhöht sich um 5 Edelsteine für alle 3 aufeinanderfolgenden Monate, in denen du ein Abo hast, bis zu einem Maximum von 50 Edelsteinen pro Monat!", "mustSubscribeToPurchaseGems": "Du musst ein Abonnement abschließen, um Edelsteine mit Gold zu kaufen", "reachedGoldToGemCap": "Du hast das Limit für die Umwandlung von Gold in Edelsteine (<%= convCap %>) für diesen Monat erreicht. Die Limits existieren zur Vermeidung von Missbrauch / Farmen. Sie werden innerhalb der ersten drei Tage jedes Monats zurückgesetzt.", - "reachedGoldToGemCapQuantity": "Your requested amount <%= quantity %> exceeds the Gold=>Gem conversion cap <%= convCap %> for this month. We have this to prevent abuse / farming. The cap resets within the first three days of each month.", + "reachedGoldToGemCapQuantity": "Deine angeforderte Menge von <%= quantity %> übersteigt das Gold=>Edelstein Umwandlungslimit in Höhe von <%= convCap %> für diesen Monat. Dieses haben wir, damit Missbrauch und Farming verhindert werden kann. Das Limit wird innerhalb der ersten drei Tage eines Monats zurückgesetzt.", "retainHistory": "Behalte zusätzliche Verlaufeinträge", "retainHistoryText": "Macht abgeschlossene To-Dos und den Aufgabenverlauf länger verfügbar.", "doubleDrops": "Doppelte Beutelimite pro Tag", @@ -144,6 +144,7 @@ "mysterySet201803": "Wagemutige-Libelle-Set", "mysterySet201804": "Schickes Eichörnchen Set", "mysterySet201805": "Set des Phänomenalen Pfaus", + "mysterySet201806": "Verführerisches Anglerfisch Set", "mysterySet301404": "Steampunk-Standard-Set", "mysterySet301405": "Steampunk-Zubehör-Set", "mysterySet301703": "Pfauen-Steampunk-Set", diff --git a/website/common/locales/de/tasks.json b/website/common/locales/de/tasks.json index caa561e8ff..f93088c75a 100644 --- a/website/common/locales/de/tasks.json +++ b/website/common/locales/de/tasks.json @@ -194,8 +194,6 @@ "weeks": "Wochen", "year": "Jahr", "years": "Jahre", - "confirmScoreNotes": "Bestätige das Erfüllen der Aufgabe mit einer Notiz", - "taskScoreNotesTooLong": "Notizen zum Erfüllen einer Aufgabe müssen kürzer als 256 Zeichen sein", "groupTasksByChallenge": "Gruppiere die Aufgaben nach Wettbewerbs-Titel", "taskNotes": "Aufgabennotizen", "monthlyRepeatHelpContent": "Diese Aufgabe wird alle X Monate fällig werden", diff --git a/website/common/locales/en/backgrounds.json b/website/common/locales/en/backgrounds.json index 2839a8fb29..0f912f444e 100644 --- a/website/common/locales/en/backgrounds.json +++ b/website/common/locales/en/backgrounds.json @@ -409,5 +409,13 @@ "backgroundRowboatText": "Rowboat", "backgroundRowboatNotes": "Sing rounds in a Rowboat.", "backgroundPirateFlagText": "Pirate Flag", - "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag." + "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag.", + + "backgrounds072018": "SET 50: Released July 2018", + "backgroundDarkDeepText": "Dark Deep", + "backgroundDarkDeepNotes": "Swim in the Dark Deep among bioluminescent critters.", + "backgroundDilatoryCityText": "City of Dilatory", + "backgroundDilatoryCityNotes": "Meander through the undersea City of Dilatory.", + "backgroundTidePoolText": "Tide Pool", + "backgroundTidePoolNotes": "Observe the ocean life near a Tide Pool." } diff --git a/website/common/locales/en/content.json b/website/common/locales/en/content.json index aff99ebd4d..7ec47d5be7 100644 --- a/website/common/locales/en/content.json +++ b/website/common/locales/en/content.json @@ -261,6 +261,7 @@ "hatchingPotionFairy": "Fairy", "hatchingPotionStarryNight": "Starry Night", "hatchingPotionRainbow": "Rainbow", + "hatchingPotionGlass": "Glass", "hatchingPotionNotes": "Pour this on an egg, and it will hatch as a <%= potText(locale) %> pet.", "premiumPotionAddlNotes": "Not usable on quest pet eggs.", diff --git a/website/common/locales/en/gear.json b/website/common/locales/en/gear.json index 4761113e33..c5c040eaf5 100644 --- a/website/common/locales/en/gear.json +++ b/website/common/locales/en/gear.json @@ -375,6 +375,8 @@ "weaponArmoireCobblersHammerNotes": "This hammer is specially made for leatherwork. It can do a real number on a red Daily in a pinch, though. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 2 of 3).", "weaponArmoireGlassblowersBlowpipeText": "Glassblower's Blowpipe", "weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Increases Strength by <%= str %>. Enchanted Armoire: Glassblower Set (Item 1 of 4).", + "weaponArmoirePoisonedGobletText": "Poisoned Goblet", + "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).", "armor": "armor", "armorCapitalized": "Armor", @@ -709,6 +711,8 @@ "armorMystery201712Notes": "The heat and light generated by this magic armor will warm your heart but never burn your skin! Confers no benefit. December 2017 Subscriber Item.", "armorMystery201802Text": "Love Bug Armor", "armorMystery201802Notes": "This shiny armor reflects your strength of heart and infuses it into any Habiticans nearby who may need encouragement! Confers no benefit. February 2018 Subscriber Item.", + "armorMystery201806Text": "Alluring Anglerfish Tail", + "armorMystery201806Notes": "This sinuous tail features glowing spots to light your way through the deep. Confers no benefit. June 2018 Subscriber Item.", "armorMystery301404Text": "Steampunk Suit", "armorMystery301404Notes": "Dapper and dashing, wot! Confers no benefit. February 3015 Subscriber Item.", "armorMystery301703Text": "Steampunk Peacock Gown", @@ -800,6 +804,8 @@ "armorArmoireGlassblowersCoverallsNotes": "These coveralls will protect you while you're making masterpieces with hot molten glass. Increases Constitution by <%= con %>. Enchanted Armoire: Glassblower Set (Item 2 of 4).", "armorArmoireBluePartyDressText": "Blue Party Dress", "armorArmoireBluePartyDressNotes": "You're perceptive, tough, smart, and so fashionable! Increases Perception, Strength, and Constitution by <%= attrs %> each. Enchanted Armoire: Blue Hairbow Set (Item 2 of 2).", + "armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown", + "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Increases Perception by <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).", "headgear": "helm", "headgearCapitalized": "Headgear", @@ -1140,6 +1146,8 @@ "headMystery201803Notes": "Although its appearance is quite decorative, you can engage the wings on this circlet for extra lift! Confers no benefit. March 2018 Subscriber Item.", "headMystery201805Text": "Phenomenal Peacock Helm", "headMystery201805Notes": "This helm will make you the proudest and prettiest (possibly also the loudest) bird in town. Confers no benefit. May 2018 Subscriber Item.", + "headMystery201806Text": "Alluring Anglerfish Helm", + "headMystery201806Notes": "The mesmerizing light atop this helm will call all the creatures of the sea to your side. We urge you to use your glowy powers of attraction for good! Confers no benefit. June 2018 Subscriber Item.", "headMystery301404Text": "Fancy Top Hat", "headMystery301404Notes": "A fancy top hat for the finest of gentlefolk! January 3015 Subscriber Item. Confers no benefit.", "headMystery301405Text": "Basic Top Hat", @@ -1241,6 +1249,8 @@ "headArmoireBigWigNotes": "Some powdered wigs are for looking more authoritative, but this one is just for laughs! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.", "headArmoireGlassblowersHatText": "Glassblower's Hat", "headArmoireGlassblowersHatNotes": "This hat mainly just looks good with your other protective glassblowing gear! Increases Perception by <%= per %>. Enchanted Armoire: Glassblower Set (Item 3 of 4).", + "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress", + "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).", "offhand": "off-hand item", "offhandCapitalized": "Off-Hand Item", @@ -1481,6 +1491,8 @@ "shieldArmoireFancyShoeNotes": "A very special shoe you're working on. It's fit for royalty! Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 3 of 3).", "shieldArmoireFancyBlownGlassVaseText": "Fancy Blown Glass Vase", "shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Increases Intelligence by <%= int %>. Enchanted Armoire: Glassblower Set (Item 4 of 4).", + "shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield", + "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).", "back": "Back Accessory", "backCapitalized": "Back Accessory", diff --git a/website/common/locales/en/groups.json b/website/common/locales/en/groups.json index 04166e1797..59d1ced5a2 100644 --- a/website/common/locales/en/groups.json +++ b/website/common/locales/en/groups.json @@ -136,12 +136,11 @@ "PMPlaceholderDescription": "Select a conversation on the left", "PMPlaceholderTitleRevoked": "Your chat privileges have been revoked", "PMPlaceholderDescriptionRevoked": "You are not able to send private messages because your chat privileges have been revoked. If you have questions or concerns about this, please email admin@habitica.com to discuss it with the staff.", - "PMEnable": "Enable Private Messages", - "PMDisable": "Disable Private Messages", - "PMEnabledOptPopoverText": "When Private Messages are disabled, you still can send messages, but no one can send them to you.", - "PMDisabledOptPopoverText": "Enable this option to be able to receive messages.", + "PMReceive": "Receive Private Messages", + "PMEnabledOptPopoverText": "Private Messages are enabled. Users can contact you via your profile.", + "PMDisabledOptPopoverText": "Private Messages are disabled. Enable this option to allow users to contact you via your profile.", "PMDisabledCaptionTitle": "Private Messages are disabled", - "PMDisabledCaptionText": "You still can send messages, but no one can send them to you.", + "PMDisabledCaptionText": "You can still send messages, but no one can send them to you.", "block": "Block", "unblock": "Un-block", "pm-reply": "Send a reply", @@ -259,7 +258,7 @@ "confirmApproval": "Are you sure you want to approve this task?", "confirmNeedsWork": "Are you sure you want to mark this task as needing work?", "userRequestsApproval": "<%= userName %> requests approval", - "userCountRequestsApproval": "<%= userCount %> request approval", + "userCountRequestsApproval": "<%= userCount %> members request approval", "youAreRequestingApproval": "You are requesting approval", "chatPrivilegesRevoked": "You cannot do that because your chat privileges have been revoked.", "cannotCreatePublicGuildWhenMuted": "You cannot create a public guild because your chat privileges have been revoked.", @@ -386,6 +385,7 @@ "bronzeTier": "Bronze Tier", "privacySettings": "Privacy Settings", "onlyLeaderCreatesChallenges": "Only the Leader can create Challenges", + "onlyLeaderCreatesChallengesDetail": "With this option selected, ordinary group members cannot create Challenges for the group.", "privateGuild": "Private Guild", "charactersRemaining": "<%= characters %> characters remaining", "guildSummary": "Summary", diff --git a/website/common/locales/en/limited.json b/website/common/locales/en/limited.json index 57e2fdacca..e0d40d82e0 100644 --- a/website/common/locales/en/limited.json +++ b/website/common/locales/en/limited.json @@ -130,7 +130,7 @@ "dateEndApril": "April 19", "dateEndMay": "May 31", "dateEndJune": "June 14", - "dateEndJuly": "July 29", + "dateEndJuly": "July 31", "dateEndAugust": "August 31", "dateEndOctober": "October 31", "dateEndNovember": "November 30", diff --git a/website/common/locales/en/quests.json b/website/common/locales/en/quests.json index 162dbb7841..7c0bb42387 100644 --- a/website/common/locales/en/quests.json +++ b/website/common/locales/en/quests.json @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "Guilds cannot be invited on quests.", "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", + "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", diff --git a/website/common/locales/en/subscriber.json b/website/common/locales/en/subscriber.json index 5e4af1cf24..f2c5ba1c1b 100644 --- a/website/common/locales/en/subscriber.json +++ b/website/common/locales/en/subscriber.json @@ -145,6 +145,7 @@ "mysterySet201803": "Daring Dragonfly Set", "mysterySet201804": "Spiffy Squirrel Set", "mysterySet201805": "Phenomenal Peacock Set", + "mysterySet201806": "Alluring Anglerfish Set", "mysterySet301404": "Steampunk Standard Set", "mysterySet301405": "Steampunk Accessories Set", "mysterySet301703": "Peacock Steampunk Set", diff --git a/website/common/locales/en/tasks.json b/website/common/locales/en/tasks.json index 50ba001de6..ea20df33b1 100644 --- a/website/common/locales/en/tasks.json +++ b/website/common/locales/en/tasks.json @@ -194,8 +194,6 @@ "weeks": "Weeks", "year": "Year", "years": "Years", - "confirmScoreNotes": "Confirm task scoring with notes", - "taskScoreNotesTooLong": "Task score notes must be less than 256 characters", "groupTasksByChallenge": "Group tasks by challenge title", "taskNotes": "Task Notes", "monthlyRepeatHelpContent": "This task will be due every X months", diff --git a/website/common/locales/en@pirate/backgrounds.json b/website/common/locales/en@pirate/backgrounds.json index e18e8040f9..dace4be628 100644 --- a/website/common/locales/en@pirate/backgrounds.json +++ b/website/common/locales/en@pirate/backgrounds.json @@ -359,5 +359,12 @@ "backgroundRowboatText": "Rowboat", "backgroundRowboatNotes": "Sing rounds in a Rowboat.", "backgroundPirateFlagText": "Pirate Flag", - "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag." + "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag.", + "backgrounds072018": "SET 50: Released July 2018", + "backgroundDarkDeepText": "Dark Deep", + "backgroundDarkDeepNotes": "Swim in the Dark Deep among bioluminescent critters.", + "backgroundDilatoryCityText": "City of Dilatory", + "backgroundDilatoryCityNotes": "Meander through the undersea City of Dilatory.", + "backgroundTidePoolText": "Tide Pool", + "backgroundTidePoolNotes": "Observe the ocean life near a Tide Pool." } \ No newline at end of file diff --git a/website/common/locales/en@pirate/content.json b/website/common/locales/en@pirate/content.json index e0fac4af7a..ad9e82bb8f 100644 --- a/website/common/locales/en@pirate/content.json +++ b/website/common/locales/en@pirate/content.json @@ -195,6 +195,7 @@ "hatchingPotionFairy": "Fairy", "hatchingPotionStarryNight": "Starry Night", "hatchingPotionRainbow": "Rainbow", + "hatchingPotionGlass": "Glass", "hatchingPotionNotes": "Pour this on an egg, an' it'll hatch as a <%= potText(locale) %> pet.", "premiumPotionAddlNotes": "Ye canna use this on quest pet eggs.", "foodMeat": "Meat", diff --git a/website/common/locales/en@pirate/gear.json b/website/common/locales/en@pirate/gear.json index bfce974a7b..43e810bb7c 100644 --- a/website/common/locales/en@pirate/gear.json +++ b/website/common/locales/en@pirate/gear.json @@ -346,6 +346,8 @@ "weaponArmoireCobblersHammerNotes": "This hammer is specially made for leatherwork. It can do a real number on a red Daily in a pinch, though. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 2 of 3).", "weaponArmoireGlassblowersBlowpipeText": "Glassblower's Blowpipe", "weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Increases Strength by <%= str %>. Enchanted Armoire: Glassblower Set (Item 1 of 4).", + "weaponArmoirePoisonedGobletText": "Poisoned Goblet", + "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).", "armor": "armor", "armorCapitalized": "Armor", "armorBase0Text": "Plain Slops", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "The heat and light generated by this magic armor will warm your heart but never burn your skin! Confers no benefit. December 2017 Subscriber Item.", "armorMystery201802Text": "Love Bug Armor", "armorMystery201802Notes": "This shiny armor reflects your strength of heart and infuses it into any Habiticans nearby who may need encouragement! Confers no benefit. February 2018 Subscriber Item.", + "armorMystery201806Text": "Alluring Anglerfish Tail", + "armorMystery201806Notes": "This sinuous tail features glowing spots to light your way through the deep. Confers no benefit. June 2018 Subscriber Item.", "armorMystery301404Text": "Steampunk Suit", "armorMystery301404Notes": "Dapper an' dashing, wot! Don't benefit ye. February 3015 Subscriber Item.", "armorMystery301703Text": "Steampunk Peacock Gown", @@ -742,6 +746,8 @@ "armorArmoireGlassblowersCoverallsNotes": "These coveralls will protect you while you're making masterpieces with hot molten glass. Increases Constitution by <%= con %>. Enchanted Armoire: Glassblower Set (Item 2 of 4).", "armorArmoireBluePartyDressText": "Blue Party Dress", "armorArmoireBluePartyDressNotes": "You're perceptive, tough, smart, and so fashionable! Increases Perception, Strength, and Constitution by <%= attrs %> each. Enchanted Armoire: Blue Hairbow Set (Item 2 of 2).", + "armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown", + "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Increases Perception by <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).", "headgear": "helm", "headgearCapitalized": "Headgear", "headBase0Text": "No Headgear", @@ -1054,6 +1060,8 @@ "headMystery201803Notes": "Although its appearance is quite decorative, you can engage the wings on this circlet for extra lift! Confers no benefit. March 2018 Subscriber Item.", "headMystery201805Text": "Phenomenal Peacock Helm", "headMystery201805Notes": "This helm will make you the proudest and prettiest (possibly also the loudest) bird in town. Confers no benefit. May 2018 Subscriber Item.", + "headMystery201806Text": "Alluring Anglerfish Helm", + "headMystery201806Notes": "The mesmerizing light atop this helm will call all the creatures of the sea to your side. We urge you to use your glowy powers of attraction for good! Confers no benefit. June 2018 Subscriber Item.", "headMystery301404Text": "Fancy Top Hat", "headMystery301404Notes": "A fancy top hat fer th' finest o' gentlefolk! January 3015 Subscriber Item. Don't benefit ye.", "headMystery301405Text": "Basic Top Hat", @@ -1154,6 +1162,8 @@ "headArmoireBigWigNotes": "Some powdered wigs are for looking more authoritative, but this one is just for laughs! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.", "headArmoireGlassblowersHatText": "Glassblower's Hat", "headArmoireGlassblowersHatNotes": "This hat mainly just looks good with your other protective glassblowing gear! Increases Perception by <%= per %>. Enchanted Armoire: Glassblower Set (Item 3 of 4).", + "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress", + "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).", "offhand": "off-hand item", "offhandCapitalized": "Off-Hand Item", "shieldBase0Text": "No Off-Hand Equipment", @@ -1368,6 +1378,8 @@ "shieldArmoireFancyShoeNotes": "A very special shoe you're working on. It's fit for royalty! Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 3 of 3).", "shieldArmoireFancyBlownGlassVaseText": "Fancy Blown Glass Vase", "shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Increases Intelligence by <%= int %>. Enchanted Armoire: Glassblower Set (Item 4 of 4).", + "shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield", + "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).", "back": "Back Accessory", "backCapitalized": "Back Accessory", "backBase0Text": "No Back Accessory", diff --git a/website/common/locales/en@pirate/groups.json b/website/common/locales/en@pirate/groups.json index 50816c3d8d..c8ff12dbe2 100644 --- a/website/common/locales/en@pirate/groups.json +++ b/website/common/locales/en@pirate/groups.json @@ -134,12 +134,11 @@ "PMPlaceholderDescription": "Select a conversation on the left", "PMPlaceholderTitleRevoked": "Your chat privileges have been revoked", "PMPlaceholderDescriptionRevoked": "You are not able to send private messages because your chat privileges have been revoked. If you have questions or concerns about this, please email admin@habitica.com to discuss it with the staff.", - "PMEnable": "Enable Private Messages", - "PMDisable": "Disable Private Messages", - "PMEnabledOptPopoverText": "When Private Messages are disabled, you still can send messages, but no one can send them to you.", - "PMDisabledOptPopoverText": "Enable this option to be able to receive messages.", + "PMReceive": "Receive Private Messages", + "PMEnabledOptPopoverText": "Private Messages are enabled. Users can contact you via your profile.", + "PMDisabledOptPopoverText": "Private Messages are disabled. Enable this option to allow users to contact you via your profile.", "PMDisabledCaptionTitle": "Private Messages are disabled", - "PMDisabledCaptionText": "You still can send messages, but no one can send them to you.", + "PMDisabledCaptionText": "You can still send messages, but no one can send them to you.", "block": "Block", "unblock": "Un-block", "pm-reply": "Send a reply", diff --git a/website/common/locales/en@pirate/limited.json b/website/common/locales/en@pirate/limited.json index dcc8ffa339..5f9245e530 100644 --- a/website/common/locales/en@pirate/limited.json +++ b/website/common/locales/en@pirate/limited.json @@ -130,7 +130,7 @@ "dateEndApril": "April 19", "dateEndMay": "May 31", "dateEndJune": "June 14", - "dateEndJuly": "July 29", + "dateEndJuly": "July 31", "dateEndAugust": "August 31", "dateEndOctober": "October 31", "dateEndNovember": "November 30", diff --git a/website/common/locales/en@pirate/quests.json b/website/common/locales/en@pirate/quests.json index 867a79e8f6..e3b8a9a7cd 100644 --- a/website/common/locales/en@pirate/quests.json +++ b/website/common/locales/en@pirate/quests.json @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "Ships cannot sail to adventures without a crew.", "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", + "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", diff --git a/website/common/locales/en@pirate/subscriber.json b/website/common/locales/en@pirate/subscriber.json index 7e1ae65800..c540beaa27 100644 --- a/website/common/locales/en@pirate/subscriber.json +++ b/website/common/locales/en@pirate/subscriber.json @@ -144,6 +144,7 @@ "mysterySet201803": "Daring Dragonfly Set", "mysterySet201804": "Spiffy Squirrel Set", "mysterySet201805": "Phenomenal Peacock Set", + "mysterySet201806": "Alluring Anglerfish Set", "mysterySet301404": "Steampunk Standard Set", "mysterySet301405": "Steampunk Accessories Set", "mysterySet301703": "Peacock Steampunk Set", diff --git a/website/common/locales/en@pirate/tasks.json b/website/common/locales/en@pirate/tasks.json index 3f523f9f52..1c8c35aef7 100644 --- a/website/common/locales/en@pirate/tasks.json +++ b/website/common/locales/en@pirate/tasks.json @@ -194,8 +194,6 @@ "weeks": "Weeks", "year": "Year", "years": "Years", - "confirmScoreNotes": "Confirm task scoring with notes", - "taskScoreNotesTooLong": "Task score notes must be less than 256 characters", "groupTasksByChallenge": "Group tasks by challenge title", "taskNotes": "Task Notes", "monthlyRepeatHelpContent": "This task will be due every X months", diff --git a/website/common/locales/en_GB/backgrounds.json b/website/common/locales/en_GB/backgrounds.json index 29b2d4e4a7..22bc638452 100644 --- a/website/common/locales/en_GB/backgrounds.json +++ b/website/common/locales/en_GB/backgrounds.json @@ -359,5 +359,12 @@ "backgroundRowboatText": "Rowboat", "backgroundRowboatNotes": "Sing rounds in a Rowboat.", "backgroundPirateFlagText": "Pirate Flag", - "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag." + "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag.", + "backgrounds072018": "SET 50: Released July 2018", + "backgroundDarkDeepText": "Dark Deep", + "backgroundDarkDeepNotes": "Swim in the Dark Deep among bioluminescent critters.", + "backgroundDilatoryCityText": "City of Dilatory", + "backgroundDilatoryCityNotes": "Meander through the undersea City of Dilatory.", + "backgroundTidePoolText": "Tide Pool", + "backgroundTidePoolNotes": "Observe the ocean life near a Tide Pool." } \ No newline at end of file diff --git a/website/common/locales/en_GB/content.json b/website/common/locales/en_GB/content.json index 1a3d760f85..ed1ae2d3ca 100644 --- a/website/common/locales/en_GB/content.json +++ b/website/common/locales/en_GB/content.json @@ -195,6 +195,7 @@ "hatchingPotionFairy": "Fairy", "hatchingPotionStarryNight": "Starry Night", "hatchingPotionRainbow": "Rainbow", + "hatchingPotionGlass": "Glass", "hatchingPotionNotes": "Pour this on an egg, and it will hatch as a <%= potText(locale) %> pet.", "premiumPotionAddlNotes": "Not usable on quest pet eggs.", "foodMeat": "Meat", diff --git a/website/common/locales/en_GB/gear.json b/website/common/locales/en_GB/gear.json index 38f3106dd7..8563c84ab6 100644 --- a/website/common/locales/en_GB/gear.json +++ b/website/common/locales/en_GB/gear.json @@ -346,6 +346,8 @@ "weaponArmoireCobblersHammerNotes": "This hammer is specially made for leatherwork. It can do a real number on a red Daily in a pinch, though. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 2 of 3).", "weaponArmoireGlassblowersBlowpipeText": "Glassblower's Blowpipe", "weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Increases Strength by <%= str %>. Enchanted Armoire: Glassblower Set (Item 1 of 4).", + "weaponArmoirePoisonedGobletText": "Poisoned Goblet", + "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).", "armor": "armour", "armorCapitalized": "Armour", "armorBase0Text": "Plain Clothing", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "The heat and light generated by this magic armor will warm your heart but never burn your skin! Confers no benefit. December 2017 Subscriber Item.", "armorMystery201802Text": "Love Bug Armor", "armorMystery201802Notes": "This shiny armor reflects your strength of heart and infuses it into any Habiticans nearby who may need encouragement! Confers no benefit. February 2018 Subscriber Item.", + "armorMystery201806Text": "Alluring Anglerfish Tail", + "armorMystery201806Notes": "This sinuous tail features glowing spots to light your way through the deep. Confers no benefit. June 2018 Subscriber Item.", "armorMystery301404Text": "Steampunk Suit", "armorMystery301404Notes": "Dapper and dashing, wot! Confers no benefit. February 3015 Subscriber Item.", "armorMystery301703Text": "Steampunk Peacock Gown", @@ -742,6 +746,8 @@ "armorArmoireGlassblowersCoverallsNotes": "These coveralls will protect you while you're making masterpieces with hot molten glass. Increases Constitution by <%= con %>. Enchanted Armoire: Glassblower Set (Item 2 of 4).", "armorArmoireBluePartyDressText": "Blue Party Dress", "armorArmoireBluePartyDressNotes": "You're perceptive, tough, smart, and so fashionable! Increases Perception, Strength, and Constitution by <%= attrs %> each. Enchanted Armoire: Blue Hairbow Set (Item 2 of 2).", + "armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown", + "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Increases Perception by <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).", "headgear": "helm", "headgearCapitalized": "Headgear", "headBase0Text": "No Headgear", @@ -1054,6 +1060,8 @@ "headMystery201803Notes": "Although its appearance is quite decorative, you can engage the wings on this circlet for extra lift! Confers no benefit. March 2018 Subscriber Item.", "headMystery201805Text": "Phenomenal Peacock Helm", "headMystery201805Notes": "This helm will make you the proudest and prettiest (possibly also the loudest) bird in town. Confers no benefit. May 2018 Subscriber Item.", + "headMystery201806Text": "Alluring Anglerfish Helm", + "headMystery201806Notes": "The mesmerizing light atop this helm will call all the creatures of the sea to your side. We urge you to use your glowy powers of attraction for good! Confers no benefit. June 2018 Subscriber Item.", "headMystery301404Text": "Fancy Top Hat", "headMystery301404Notes": "A fancy top hat for the finest of gentlefolk! January 3015 Subscriber Item. Confers no benefit.", "headMystery301405Text": "Basic Top Hat", @@ -1154,6 +1162,8 @@ "headArmoireBigWigNotes": "Some powdered wigs are for looking more authoritative, but this one is just for laughs! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.", "headArmoireGlassblowersHatText": "Glassblower's Hat", "headArmoireGlassblowersHatNotes": "This hat mainly just looks good with your other protective glassblowing gear! Increases Perception by <%= per %>. Enchanted Armoire: Glassblower Set (Item 3 of 4).", + "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress", + "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).", "offhand": "off-hand item", "offhandCapitalized": "Off-Hand Item", "shieldBase0Text": "No Off-Hand Equipment", @@ -1368,6 +1378,8 @@ "shieldArmoireFancyShoeNotes": "A very special shoe you're working on. It's fit for royalty! Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 3 of 3).", "shieldArmoireFancyBlownGlassVaseText": "Fancy Blown Glass Vase", "shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Increases Intelligence by <%= int %>. Enchanted Armoire: Glassblower Set (Item 4 of 4).", + "shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield", + "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).", "back": "Back Accessory", "backCapitalized": "Back Accessory", "backBase0Text": "No Back Accessory", diff --git a/website/common/locales/en_GB/groups.json b/website/common/locales/en_GB/groups.json index ba63c5e9a0..801d635580 100644 --- a/website/common/locales/en_GB/groups.json +++ b/website/common/locales/en_GB/groups.json @@ -134,12 +134,11 @@ "PMPlaceholderDescription": "Select a conversation on the left", "PMPlaceholderTitleRevoked": "Your chat privileges have been revoked", "PMPlaceholderDescriptionRevoked": "You are not able to send private messages because your chat privileges have been revoked. If you have questions or concerns about this, please email admin@habitica.com to discuss it with the staff.", - "PMEnable": "Enable Private Messages", - "PMDisable": "Disable Private Messages", - "PMEnabledOptPopoverText": "When Private Messages are disabled, you still can send messages, but no one can send them to you.", - "PMDisabledOptPopoverText": "Enable this option to be able to receive messages.", + "PMReceive": "Receive Private Messages", + "PMEnabledOptPopoverText": "Private Messages are enabled. Users can contact you via your profile.", + "PMDisabledOptPopoverText": "Private Messages are disabled. Enable this option to allow users to contact you via your profile.", "PMDisabledCaptionTitle": "Private Messages are disabled", - "PMDisabledCaptionText": "You still can send messages, but no one can send them to you.", + "PMDisabledCaptionText": "You can still send messages, but no one can send them to you.", "block": "Block", "unblock": "Un-block", "pm-reply": "Send a reply", diff --git a/website/common/locales/en_GB/limited.json b/website/common/locales/en_GB/limited.json index 4f22949cbd..43467af7f9 100644 --- a/website/common/locales/en_GB/limited.json +++ b/website/common/locales/en_GB/limited.json @@ -130,7 +130,7 @@ "dateEndApril": "April 19", "dateEndMay": "May 31", "dateEndJune": "June 14", - "dateEndJuly": "July 29", + "dateEndJuly": "July 31", "dateEndAugust": "August 31", "dateEndOctober": "October 31", "dateEndNovember": "November 30", diff --git a/website/common/locales/en_GB/quests.json b/website/common/locales/en_GB/quests.json index 248df592ab..c069fdd2dc 100644 --- a/website/common/locales/en_GB/quests.json +++ b/website/common/locales/en_GB/quests.json @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "Guilds cannot be invited on quests.", "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", + "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", diff --git a/website/common/locales/en_GB/subscriber.json b/website/common/locales/en_GB/subscriber.json index 3b1a912337..077f3bdd94 100644 --- a/website/common/locales/en_GB/subscriber.json +++ b/website/common/locales/en_GB/subscriber.json @@ -144,6 +144,7 @@ "mysterySet201803": "Daring Dragonfly Set", "mysterySet201804": "Spiffy Squirrel Set", "mysterySet201805": "Phenomenal Peacock Set", + "mysterySet201806": "Alluring Anglerfish Set", "mysterySet301404": "Steampunk Standard Set", "mysterySet301405": "Steampunk Accessories Set", "mysterySet301703": "Peacock Steampunk Set", diff --git a/website/common/locales/en_GB/tasks.json b/website/common/locales/en_GB/tasks.json index d744554380..0abeeac493 100644 --- a/website/common/locales/en_GB/tasks.json +++ b/website/common/locales/en_GB/tasks.json @@ -194,8 +194,6 @@ "weeks": "Weeks", "year": "Year", "years": "Years", - "confirmScoreNotes": "Confirm task scoring with notes", - "taskScoreNotesTooLong": "Task score notes must be less than 256 characters", "groupTasksByChallenge": "Group tasks by challenge title", "taskNotes": "Task Notes", "monthlyRepeatHelpContent": "This task will be due every X months", diff --git a/website/common/locales/es/backgrounds.json b/website/common/locales/es/backgrounds.json index 087f3255a6..a4c3727367 100644 --- a/website/common/locales/es/backgrounds.json +++ b/website/common/locales/es/backgrounds.json @@ -359,5 +359,12 @@ "backgroundRowboatText": "Bote de remos", "backgroundRowboatNotes": "Canta en un bote de remos.", "backgroundPirateFlagText": "Bandera pirata", - "backgroundPirateFlagNotes": "Cuelga una temible bandera pirata." + "backgroundPirateFlagNotes": "Cuelga una temible bandera pirata.", + "backgrounds072018": "50. ª serie: julio del 2018", + "backgroundDarkDeepText": "Oscuras profundidades", + "backgroundDarkDeepNotes": "Nada en las oscuras profundidades entre bichos bioluminiscentes.", + "backgroundDilatoryCityText": "Ciudad de Dilatoria", + "backgroundDilatoryCityNotes": "Deambula a través de la ciudad submarina de Dilatoria.", + "backgroundTidePoolText": "Poza de marea", + "backgroundTidePoolNotes": "Observa la vida del océano cerca de una poza de marea." } \ No newline at end of file diff --git a/website/common/locales/es/content.json b/website/common/locales/es/content.json index 448c5d133c..407bbcb051 100644 --- a/website/common/locales/es/content.json +++ b/website/common/locales/es/content.json @@ -195,6 +195,7 @@ "hatchingPotionFairy": "Hada", "hatchingPotionStarryNight": "Noche Estrellada", "hatchingPotionRainbow": "Arco-iris", + "hatchingPotionGlass": "El Vidrio", "hatchingPotionNotes": "Vierte esto en un huevo y eclosionará como una mascota <%= potText(locale) %>.", "premiumPotionAddlNotes": "No puede usarse en huevos de mascota de misión.", "foodMeat": "Carne", diff --git a/website/common/locales/es/gear.json b/website/common/locales/es/gear.json index bec04d8b49..9a6c38e4b4 100644 --- a/website/common/locales/es/gear.json +++ b/website/common/locales/es/gear.json @@ -258,14 +258,14 @@ "weaponSpecialSpring2018MageNotes": "¡Esta flor mágica no se marchita nunca! Aumenta la Inteligencia en <%= int %> y la Percepción en <%= per %>. Equipamiento de Primavera Edición Limitada del 2018.", "weaponSpecialSpring2018HealerText": "Vara Granate", "weaponSpecialSpring2018HealerNotes": "¡Las piedras de esta vara harán concentrar tu poder cuando lances conjuros curativos! Aumenta la Inteligencia en <%= int %>. Equipamiento de Primavera Edición Limitada del 2018.", - "weaponSpecialSummer2018RogueText": "Fishing Rod", - "weaponSpecialSummer2018RogueNotes": "This lightweight, practically unbreakable rod and reel can be dual-wielded to maximize your DPS (Dragonfish Per Summer). Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.", - "weaponSpecialSummer2018WarriorText": "Betta Fish Spear", - "weaponSpecialSummer2018WarriorNotes": "Mighty enough for battle, elegant enough for ceremony, this exquisitely crafted spear shows you will protect your home surf no matter what! Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.", - "weaponSpecialSummer2018MageText": "Lionfish Fin Rays", - "weaponSpecialSummer2018MageNotes": "Underwater, magic based on fire, ice, or electricity can prove hazardous to the Mage wielding it. Conjuring poisonous spines, however, works brilliantly! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2018 Summer Gear.", - "weaponSpecialSummer2018HealerText": "Merfolk Monarch Trident", - "weaponSpecialSummer2018HealerNotes": "With a benevolent gesture, you command healing water to flow through your dominions in waves. Increases Intelligence by <%= int %>. Limited Edition 2018 Summer Gear.", + "weaponSpecialSummer2018RogueText": "Caña de pescar", + "weaponSpecialSummer2018RogueNotes": "Estos livianos y prácticamente irrompibles caña y carrete pueden ser de doble empuñadura para maximizar tus PPV (Pez-demonio Por Verano). Aumenta la Fuerza en <%= str %>. Equipo de Verano Edición Limitada del 2018.", + "weaponSpecialSummer2018WarriorText": "Lanza de Pez Beta", + "weaponSpecialSummer2018WarriorNotes": "¡Lo suficientemente poderosa para una batalla, lo suficientemente elegante para una ceremonia, esta lanza que se ve tan exquisitamente diseñada te protegerá cuando navegues a casa pase lo que pase! Aumenta la Fuerza en <%= str %>. Equipo de Verano Edición Limitada del 2018.", + "weaponSpecialSummer2018MageText": "Rayas de Pez León", + "weaponSpecialSummer2018MageNotes": "Bajo el agua, la magia basada en fuego, hielo o electricidad puede resultar peligrosa para el mago que la maneja. ¡Sin embargo, conjurar espinas venenosas funciona de maravilla! Aumenta la Inteligencia en <%= int %> y la Percepción en <%= per %>. Equipo de Verano Edición Limitada del 2018.", + "weaponSpecialSummer2018HealerText": "Tridente de Monarca Sirena", + "weaponSpecialSummer2018HealerNotes": "Con gesto benevolente, ordenas que el agua curativa fluya a través de tus dominios en forma de ondas. Aumenta la Inteligencia en <%= int %>. Equipo de Verano Edición Limitada del 2018.", "weaponMystery201411Text": "Horca de Banquete", "weaponMystery201411Notes": "Clávasela a tus enemigos o ataca tus comidas favoritas - ¡esta horca versátil vale para todo! No confiere ningún beneficio. Artículo de suscriptor de noviembre 2014.", "weaponMystery201502Text": "Báculo Reluciente Alado del Amor y También de la Verdad", @@ -346,6 +346,8 @@ "weaponArmoireCobblersHammerNotes": "Este martillo está hecho en especial para cuero. Sin embargo, en un apuro puede hacer daño a una Tarea diaria roja. Aumenta la Constitución y la Fuerza en <%= attrs %> cada uno. Armario encantado: Conjunto de Zapatero (Artículo 2 de 3).", "weaponArmoireGlassblowersBlowpipeText": "Soplador de soplador de vidrio", "weaponArmoireGlassblowersBlowpipeNotes": "Utiliza este tubo para moldear el vidrio fundido en bellos jarrones, ornamentos y otras cosas sofisticadas. Aumenta la Fuerza en <%= str %>. Armario encantado: Conjunto de Soplador de vidrio (Artículo 1 de 4).", + "weaponArmoirePoisonedGobletText": "Cáliz envenenado", + "weaponArmoirePoisonedGobletNotes": "Usa esto para desarrollar tu resistencia al polvo de iocane y otros venenos inconcebiblemente peligrosos. Aumenta la Inteligencia en <%= int %>. Armario encantado: Conjunto de Princesa pirata (Artículo 3 de 4).", "armor": "armadura", "armorCapitalized": "Armadura", "armorBase0Text": "Ropa normal", @@ -580,14 +582,14 @@ "armorSpecialSpring2018MageNotes": "Tus hechizos tan solo pueden mejorar mientras vistes estos pétalos suaves y sedosos. Aumenta la Inteligencia en <%= int %>. Equipamiento de Primavera Edición Limitada del 2018.", "armorSpecialSpring2018HealerText": "Armadura Granate", "armorSpecialSpring2018HealerNotes": "Deja que esta brillante armadura infunda poder sanador en tu corazón. Aumenta la Constitución en <%= con %>. Equipamiento de Primavera Edición Limitada del 2018.", - "armorSpecialSummer2018RogueText": "Pocket Fishing Vest", - "armorSpecialSummer2018RogueNotes": "Bobbers? Boxes of hooks? Spare line? Lockpicks? Smoke bombs? Whatever you need on hand for your summer fishing getaway, there's a pocket for it! Increases Perception by <%= per %>. Limited Edition 2018 Summer Gear.", - "armorSpecialSummer2018WarriorText": "Betta Tail Armor", - "armorSpecialSummer2018WarriorNotes": "Dazzle onlookers with whorls of magnificent color as you spin and dart through the water. How could any opponent dare strike at this beauty? Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.", - "armorSpecialSummer2018MageText": "Lionfish Scale Hauberk", - "armorSpecialSummer2018MageNotes": "Venom magic has a reputation for subtlety. Not so this colorful armor, whose message is clear to beast and task alike: watch out! Increases Intelligence by <%= int %>. Limited Edition 2018 Summer Gear.", - "armorSpecialSummer2018HealerText": "Merfolk Monarch Robes", - "armorSpecialSummer2018HealerNotes": "These cerulean vestments reveal that you have land-walking feet... well. Not even a monarch can be expected to be perfect. Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.", + "armorSpecialSummer2018RogueText": "Chaleco de Pesca", + "armorSpecialSummer2018RogueNotes": "¿Corchos de pesca? ¿Cajas de anzuelos? ¿Sedal de repuesto? ¿Ganzúas? ¿Bombas de humo? Lo que sea que necesites a mano para tu escapada de pesca de verano, ¡hay un bolsillo para ello! Aumenta la Percepción en <%= per %>. Equipo de Verano Edición Limitada del 2018.", + "armorSpecialSummer2018WarriorText": "Armadura de Cola Beta", + "armorSpecialSummer2018WarriorNotes": "Deslumbra a los espectadores con verticilos de magnífico color mientras giras y das vueltas por el agua. ¿Cómo podría un oponente atreverse a atacar tal belleza? Aumenta la Constitución en <%= con %>. Equipo de Verano Edición Limitada del 2018.", + "armorSpecialSummer2018MageText": "Cota de Malla de Escamas de Pez León", + "armorSpecialSummer2018MageNotes": "La magia venenosa tiene reputación de ser sutil. No la tiene sin embargo esta colorida armadura, cuyo mensaje queda claro para bestia y tarea: ¡cuidado! Aumenta la Inteligencia en <%= int %>. Equipo de Verano Edición Limitada del 2018.", + "armorSpecialSummer2018HealerText": "Ropaje de Monarca Sirena", + "armorSpecialSummer2018HealerNotes": "Estas vestiduras cerúleas revelan que tienes pies que caminan por la tierra... bueno. Ni siquiera se puede esperar que un monarca sea perfecto. Aumenta la Constitución en <%= con %>. Equipo de Verano Edición Limitada del 2018.", "armorMystery201402Text": "Túnica de Mensajero", "armorMystery201402Notes": "Reluciente y fuerte, esta túnica tiene muchos bolsillos para llevar cartas. No proporciona ningún beneficio. Artículo de suscriptor de febrero 2014.", "armorMystery201403Text": "Armadura del Caminante del Bosque", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "¡El calor y la luz generados por esta armadura mágica calentará tu corazón pero nunca quemará tu piel! Sin beneficios. Artículo del Subscriptor de diciembre del 2017.", "armorMystery201802Text": "Armadura del Insecto del Amor", "armorMystery201802Notes": "¡Esta brillante armadura reflecta la fuerza de tu corazón y la infunde en cualquier Habiticano cercano que pueda necesitar apoyo! Sin beneficios. Artículo del Subscriptor de febrero del 2018.", + "armorMystery201806Text": "Cola de rape seductor", + "armorMystery201806Notes": "Esta cola sinuosa presenta puntos brillantes que iluminan tu camino a través de las profundidades. Sin beneficios. Artículo del suscriptor de junio del 2018.", "armorMystery301404Text": "Traje Steampunk", "armorMystery301404Notes": "¡Sofisticado y elegante! No otorga ningún beneficio. Artículo de suscriptor de febrero 3015.", "armorMystery301703Text": "Traje de Pavo Real Steampunk", @@ -742,6 +746,8 @@ "armorArmoireGlassblowersCoverallsNotes": "Este mono te protegerá mientras fabricas obras maestras con vidrio fundido caliente. Aumenta la Constitución en <%= con %>. Armario encantado: Conjunto de Soplador de vidrio (Artículo 2 de 4).", "armorArmoireBluePartyDressText": "Vestido de fiesta azul", "armorArmoireBluePartyDressNotes": "¡Eres perspicaz, duro, listo y tan moderno! Aumenta Percepción, Fuerza y Constitución en <%= attrs %>cada uno. Armario encantado: Conjunto de Lazo azul (Artículo 2 de 2).", + "armorArmoirePiraticalPrincessGownText": "Vestido de princesa pirata", + "armorArmoirePiraticalPrincessGownNotes": "¡Esta lujosa prenda tiene muchos bolsillos para ocultar armas y botín! Aumenta la Percepción en <%= per %>. Armario encantado: Conjunto de Princesa pirata (Artículo 2 de 4).", "headgear": "casco", "headgearCapitalized": "Equipo de cabeza", "headBase0Text": "Sin Equipo de cabeza", @@ -976,14 +982,14 @@ "headSpecialSpring2018MageNotes": "Los elegantes pétalos de este casco te otorgarán una magia primaveral especial. Aumenta la Percepción en <%= per %>. Equipamiento de Primavera Edición Limitada del 2018.", "headSpecialSpring2018HealerText": "Diadema Granate", "headSpecialSpring2018HealerNotes": "Las gemas pulidas de este anillo mejorarán tu energía mental. Aumenta la Inteligencia en <%= int %>. Equipamiento de Primavera Edición Limitada del 2018.", - "headSpecialSummer2018RogueText": "Fishing Sun Hat", - "headSpecialSummer2018RogueNotes": "Provides comfort and protection from the harsh glare of the summer sun over the water. Especially important if you're more accustomed to staying stealthy in the shadows! Increases Perception by <%= per %>. Limited Edition 2018 Summer Gear.", - "headSpecialSummer2018WarriorText": "Betta Fish Barbute", - "headSpecialSummer2018WarriorNotes": "Show everyone you're the alpha betta with this flamboyant helm! Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.", - "headSpecialSummer2018MageText": "Lionfish Crest", - "headSpecialSummer2018MageNotes": "Glare dolorously upon anyone who dares say you look like a “tastyfish”. Increases Perception by <%= per %>. Limited Edition 2018 Summer Gear.", - "headSpecialSummer2018HealerText": "Merfolk Monarch Crown", - "headSpecialSummer2018HealerNotes": "Adorned with aquamarine, this finned diadem marks leadership of folk, fish, and those who are a bit of both! Increases Intelligence by <%= int %>. Limited Edition 2018 Summer Gear.", + "headSpecialSummer2018RogueText": "Sombrero para el sol de pescador", + "headSpecialSummer2018RogueNotes": "Proporciona comodidad y protección contra el fuerte resplandor del sol de verano sobre el agua. ¡Especialmente importante si estás más acostumbrado a mantenerte sigiloso en las sombras! Aumenta la Percepción en <%= per %>. Equipo de Verano Edición Limitada del 2018.", + "headSpecialSummer2018WarriorText": "Barbuta de pez beta", + "headSpecialSummer2018WarriorNotes": "¡Demuestra a todos que eres el beta alfa con este extravagante casco! Aumenta la Fuerza en <%= str %>. Equipo de Verano Edición Limitada del 2018.", + "headSpecialSummer2018MageText": "Cresta de pez león", + "headSpecialSummer2018MageNotes": "Deslumbra dolorosamente a cualquiera que se atreva a decir que te ves como un \"pez sabroso\". Aumenta la Percepción en <%= per %>. Equipo de Verano Edición Limitada del 2018.", + "headSpecialSummer2018HealerText": "Corona de monarca sirena", + "headSpecialSummer2018HealerNotes": "Adornado con aguamarina, esta aletuda diadema marca el liderazgo de la gente, los peces y aquellos que son un poco de ambos. Aumenta la Inteligencia en <%= int %>. Equipo de Verano Edición Limitada del 2018.", "headSpecialGaymerxText": "Casco de Guerrero de Arco Iris", "headSpecialGaymerxNotes": "Con motivo de la celebración por la Conferencia GaymerX, ¡este casco especial está decorado con un radiante y colorido estampado arco iris! GaymerX es una convención de juegos que celebra a la gente LGBTQ y a los videojuegos, y está abierta a todo el público.", "headMystery201402Text": "Casco alado", @@ -1054,6 +1060,8 @@ "headMystery201803Notes": "Aunque su apariencia es bastante decorativa, ¡puedes enganchar las alas en esta diadema para alzarte más alto! Sin beneficios. Artículo del Subscriptor de marzo del 2018.", "headMystery201805Text": "Casco de pavo real fenómeno", "headMystery201805Notes": "Este casco te hará el ave más orgullosa y más bonita (posiblemente también la más ruidosa) de la ciudad. Sin beneficios. Artículo del suscriptor de mayo del 2018.", + "headMystery201806Text": "Casco de rape seductor", + "headMystery201806Notes": "La luz hipnótica colocada sobre este casco llamará a todas las criaturas del mar a tu lado. ¡Te instamos definitivamente a usar tus poderes de atracción luminosos! Sin beneficios. Artículo del suscriptor de junio 2018.", "headMystery301404Text": "Sombrero de copa sofisticado", "headMystery301404Notes": "¡Un sofisticado sombrero de copa solo para los más refinados caballeros! No otorga ningún beneficio. Artículo de Suscriptor de Enero del 3015", "headMystery301405Text": "Sombrero de copa básico", @@ -1154,6 +1162,8 @@ "headArmoireBigWigNotes": "Algunas pelucas empolvadas sirven para parecer más autoritativo, ¡pero esta es solo para reírse! Aumenta la Fuerza en <%= str %>. Armario encantado: Artículo Independiente.", "headArmoireGlassblowersHatText": "Sombrero de soplador de vidrio", "headArmoireGlassblowersHatNotes": "¡Este sombrero luce especialmente bien junto al resto del equipamiento protector para los sopladores de vidrio! Aumenta la Percepción en <%= per %>. Armario Encantado: Conjunto de Soplador de vidrio (Artículo 3 de 4).", + "headArmoirePiraticalPrincessHeaddressText": "Tocado de princesa pirata", + "headArmoirePiraticalPrincessHeaddressNotes": "¡Los bucaneros elegantes son conocidos por sus elegantes sombreros! Aumenta la Percepción y la Inteligencia en <%= attrs %> cada uno. Armario encantado: Conjunto de Princesa pirata (Artículo 1 de 4).", "offhand": "objeto para la mano izquierda", "offhandCapitalized": "Objeto para la Mano Izquierda", "shieldBase0Text": "Sin Equipamiento en la Mano Izquierda", @@ -1304,10 +1314,10 @@ "shieldSpecialSpring2018WarriorNotes": "Este robusto escudo brilla con la gloria de la primera luz. Aumenta la Constitución en <%= con %>. Equipamiento de Primavera Edición Limitada del 2018.", "shieldSpecialSpring2018HealerText": "Escudo Granate", "shieldSpecialSpring2018HealerNotes": "A pesar de su apariencia caprichosa, ¡este escudo granate es bastante duradero! Aumenta la Constitución en <%= con %>. Equipamiento de Primavera Edición Limitada del 2018.", - "shieldSpecialSummer2018WarriorText": "Betta Skull Shield", - "shieldSpecialSummer2018WarriorNotes": "Fashioned from stone, this fearsome skull-styled shield strikes fear into fish foes while rallying your Skeleton pets and mounts. Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.", - "shieldSpecialSummer2018HealerText": "Merfolk Monarch Emblem", - "shieldSpecialSummer2018HealerNotes": "This shield can produce a dome of air for the benefit of land-dwelling visitors to your watery realm. Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.", + "shieldSpecialSummer2018WarriorText": "Escudo de cráneo beta", + "shieldSpecialSummer2018WarriorNotes": "Hecho de piedra, este temible escudo con forma de calavera inflige terror a los peces enemigos mientras reúnes a tus mascotas esqueleto y monturas. Aumenta la Constitución en <%= con %>. Equipo de Verano Edición Limitada del 2018.", + "shieldSpecialSummer2018HealerText": "Emblema de monarca sirena", + "shieldSpecialSummer2018HealerNotes": "Este escudo puede producir una cúpula de aire para el beneficio de los visitantes terrestres al visitar tu reino acuático. Aumenta la Constitución en <%= con %>. Equipo de Verano Edición Limitada del 2018.", "shieldMystery201601Text": "Destructora de Resoluciones", "shieldMystery201601Notes": "Esta espada se puede usar para desviar a todas las distracciones. No otorga ningún beneficio. Artículo de Suscriptor de Enero 2016.", "shieldMystery201701Text": "Escudo para congelar el tiempo", @@ -1368,6 +1378,8 @@ "shieldArmoireFancyShoeNotes": "Un zapato muy especial en el que estás trabajando. ¡Es apto para la realeza! Aumenta la Inteligencia y la Percepción en <%= attrs %> cada uno. Armario encantado: Conjunto de Zapatero (Artículo 3 de 3).", "shieldArmoireFancyBlownGlassVaseText": "Jarrón de cristal soplado sofisticado", "shieldArmoireFancyBlownGlassVaseNotes": "¡Qué jarrón tan sofisticado has hecho! ¿Qué vas a poner dentro? Aumenta la Inteligencia en <%= int %>. Armario Encantado: Conjunto de Soplador de vidrio (Artículo 4 de 4).", + "shieldArmoirePiraticalSkullShieldText": "Escudo de calavera pirata", + "shieldArmoirePiraticalSkullShieldNotes": "Este escudo encantado susurrará las ubicaciones secretas de los tesoros de tus enemigos, ¡escucha atentamente! Aumenta la Percepción y la Inteligencia en <%= attrs %> cada uno. Armario encantado: Conjunto de Princesa pirata (Artículo 4 de 4).", "back": "Accesorio en la Espalda", "backCapitalized": "Accesorio en la Espalda", "backBase0Text": "Sin Accesorio en la Espalda", diff --git a/website/common/locales/es/groups.json b/website/common/locales/es/groups.json index bd48b9e607..13b614d7a9 100644 --- a/website/common/locales/es/groups.json +++ b/website/common/locales/es/groups.json @@ -134,12 +134,11 @@ "PMPlaceholderDescription": "Elige una conversación de la izquierda", "PMPlaceholderTitleRevoked": "Tus privilegios para chatear han sido revocados.", "PMPlaceholderDescriptionRevoked": "No puedes enviar mensajes privados porque tus privilegios para chatear han sido revocados. Si tienes preguntas o inquietudes acerca de esto, envía un correo electrónico a admin@habitica.com para tratarlo con el personal.", - "PMEnable": "Activar mensajes privados", - "PMDisable": "Desactivar mensajes privados", - "PMEnabledOptPopoverText": "Cuando los mensajes privados están desactivados, podrás seguir enviando mensajes, pero no podrás recibirlos.", - "PMDisabledOptPopoverText": "Activa esta opción para poder recibir mensajes.", + "PMReceive": "Recibir mensajes privados", + "PMEnabledOptPopoverText": "Los mensajes privados están activados. Otros usuarios pueden ponerse en contacto contigo a través de tu perfil.", + "PMDisabledOptPopoverText": "Los mensajes privados están desactivados. Activa esta opción para permitir que otros usuarios se pongan en contacto contigo a través de tu perfil.", "PMDisabledCaptionTitle": "Los mensajes privados están desactivados.", - "PMDisabledCaptionText": "Aún puedes enviar mensajes, pero no puedes recibirlos.", + "PMDisabledCaptionText": "Aún puedes enviar mensajes, pero nadie puede enviártelos.", "block": "Bloquear", "unblock": "Desbloquear", "pm-reply": "Enviar una respuesta", diff --git a/website/common/locales/es/limited.json b/website/common/locales/es/limited.json index b84ef5a6bb..68ea781384 100644 --- a/website/common/locales/es/limited.json +++ b/website/common/locales/es/limited.json @@ -121,16 +121,16 @@ "spring2018TulipMageSet": "Mago Tulipán (Mago)", "spring2018GarnetHealerSet": "Sanador Granate (Sanador)", "spring2018DucklingRogueSet": "Pícaro Patito (Pícaro)", - "summer2018BettaFishWarriorSet": "Betta Fish Warrior (Warrior)", - "summer2018LionfishMageSet": "Lionfish Mage (Mage)", - "summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)", - "summer2018FisherRogueSet": "Fisher-Rogue (Rogue)", + "summer2018BettaFishWarriorSet": "Guerrero Pez Beta (Guerrero)", + "summer2018LionfishMageSet": "Mago Pez León (Mago)", + "summer2018MerfolkMonarchSet": "Monarca Sirena (Sanador)", + "summer2018FisherRogueSet": "Pescador Pícaro (Pícaro)", "eventAvailability": "Disponible para su compra hasta el <%= date(locale) %>.", "dateEndMarch": "30 de abril", "dateEndApril": "19 de abril", "dateEndMay": "31 de mayo", "dateEndJune": "14 de junio", - "dateEndJuly": "Julio 29", + "dateEndJuly": "31 de Julio", "dateEndAugust": "Agosto 31", "dateEndOctober": "31 de octubre", "dateEndNovember": "30 de noviembre", diff --git a/website/common/locales/es/quests.json b/website/common/locales/es/quests.json index f5ea7c9bf1..97b85ce9fd 100644 --- a/website/common/locales/es/quests.json +++ b/website/common/locales/es/quests.json @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "Los gremios no pueden ser invitados a las misiones.", "questNotOwned": "No posees ese pergamino de misión.", "questNotGoldPurchasable": "La misión \"<%= key %>\" no es una misión por oro.", + "questNotGemPurchasable": "La misión \"<%= key %>\" no es una misión que se pueda comprar por gemas.", "questLevelTooHigh": "Debes ser nivel <%= level %> para empezar esta misión", "questAlreadyUnderway": "Tu grupo ya está en una misión. Inténtalo de nuevo cuando la misión haya terminado.", "questAlreadyAccepted": "Ya has aceptado la invitación de misión", diff --git a/website/common/locales/es/subscriber.json b/website/common/locales/es/subscriber.json index 6751ca6c84..969ec63f92 100644 --- a/website/common/locales/es/subscriber.json +++ b/website/common/locales/es/subscriber.json @@ -144,6 +144,7 @@ "mysterySet201803": "Conjunto de Libélula Osada", "mysterySet201804": "Conjunto de ardilla elegante", "mysterySet201805": "Conjunto de pavo real fenómeno", + "mysterySet201806": "Conjunto de rape seductor", "mysterySet301404": "El Conjunto Steampunk", "mysterySet301405": "Accesorios Steampunk", "mysterySet301703": "Conjunto de Pavo real Steampunk", diff --git a/website/common/locales/es/tasks.json b/website/common/locales/es/tasks.json index 62bbd9edc5..31706325b1 100644 --- a/website/common/locales/es/tasks.json +++ b/website/common/locales/es/tasks.json @@ -194,8 +194,6 @@ "weeks": "Semanas", "year": "Año", "years": "Años", - "confirmScoreNotes": "Confirmar la descripción de la tarea con anotaciones", - "taskScoreNotesTooLong": "Las notas de descripción de tareas deben tener menos de 256 caracteres", "groupTasksByChallenge": "Agrupar tareas por título del desafío", "taskNotes": "Notas de la Tarea", "monthlyRepeatHelpContent": "Esta tarea vencerá cada X meses", diff --git a/website/common/locales/es_419/backgrounds.json b/website/common/locales/es_419/backgrounds.json index 28938a2cec..f0214c7a76 100644 --- a/website/common/locales/es_419/backgrounds.json +++ b/website/common/locales/es_419/backgrounds.json @@ -359,5 +359,12 @@ "backgroundRowboatText": "Rowboat", "backgroundRowboatNotes": "Sing rounds in a Rowboat.", "backgroundPirateFlagText": "Pirate Flag", - "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag." + "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag.", + "backgrounds072018": "SET 50: Released July 2018", + "backgroundDarkDeepText": "Dark Deep", + "backgroundDarkDeepNotes": "Swim in the Dark Deep among bioluminescent critters.", + "backgroundDilatoryCityText": "City of Dilatory", + "backgroundDilatoryCityNotes": "Meander through the undersea City of Dilatory.", + "backgroundTidePoolText": "Tide Pool", + "backgroundTidePoolNotes": "Observe the ocean life near a Tide Pool." } \ No newline at end of file diff --git a/website/common/locales/es_419/challenge.json b/website/common/locales/es_419/challenge.json index 8789f191d4..6d0cc20ad6 100644 --- a/website/common/locales/es_419/challenge.json +++ b/website/common/locales/es_419/challenge.json @@ -14,7 +14,7 @@ "challenges": "Desafíos", "challengesLink": "Desafíos", "challengePrize": "Challenge Prize", - "endDate": "Ends", + "endDate": "Termina", "noChallenges": "Ningún desafío todavía, visita", "toCreate": "para crear uno.", "selectWinner": "Seleccionar un ganador y cerrar el desafío:", @@ -25,7 +25,7 @@ "filter": "Filtrar", "groups": "Grupos", "noNone": "Ninguno", - "category": "Category", + "category": "Categoría", "membership": "Membresía", "ownership": "Ownership", "participating": "Participando", diff --git a/website/common/locales/es_419/content.json b/website/common/locales/es_419/content.json index dc3beec896..a2266f291a 100644 --- a/website/common/locales/es_419/content.json +++ b/website/common/locales/es_419/content.json @@ -195,6 +195,7 @@ "hatchingPotionFairy": "Hadas", "hatchingPotionStarryNight": "Noche Estrellada", "hatchingPotionRainbow": "Arcoíris", + "hatchingPotionGlass": "Glass", "hatchingPotionNotes": "Vierte esto sobre un huevo, y nacerá una mascota <%= potText(locale) %>.", "premiumPotionAddlNotes": "No se puede usar con huevos de mascotas de misión.", "foodMeat": "Carne", diff --git a/website/common/locales/es_419/gear.json b/website/common/locales/es_419/gear.json index ba9c6bfb94..93d924f022 100644 --- a/website/common/locales/es_419/gear.json +++ b/website/common/locales/es_419/gear.json @@ -346,6 +346,8 @@ "weaponArmoireCobblersHammerNotes": "This hammer is specially made for leatherwork. It can do a real number on a red Daily in a pinch, though. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 2 of 3).", "weaponArmoireGlassblowersBlowpipeText": "Glassblower's Blowpipe", "weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Increases Strength by <%= str %>. Enchanted Armoire: Glassblower Set (Item 1 of 4).", + "weaponArmoirePoisonedGobletText": "Poisoned Goblet", + "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).", "armor": "armadura", "armorCapitalized": "Armadura", "armorBase0Text": "Ropa Simple", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "The heat and light generated by this magic armor will warm your heart but never burn your skin! Confers no benefit. December 2017 Subscriber Item.", "armorMystery201802Text": "Love Bug Armor", "armorMystery201802Notes": "This shiny armor reflects your strength of heart and infuses it into any Habiticans nearby who may need encouragement! Confers no benefit. February 2018 Subscriber Item.", + "armorMystery201806Text": "Alluring Anglerfish Tail", + "armorMystery201806Notes": "This sinuous tail features glowing spots to light your way through the deep. Confers no benefit. June 2018 Subscriber Item.", "armorMystery301404Text": "Traje Steampunk", "armorMystery301404Notes": "¡Sofisticado y elegante! No otorga ningún beneficio. Artículo de Suscriptor de Febrero 3015.", "armorMystery301703Text": "Steampunk Peacock Gown", @@ -742,6 +746,8 @@ "armorArmoireGlassblowersCoverallsNotes": "These coveralls will protect you while you're making masterpieces with hot molten glass. Increases Constitution by <%= con %>. Enchanted Armoire: Glassblower Set (Item 2 of 4).", "armorArmoireBluePartyDressText": "Blue Party Dress", "armorArmoireBluePartyDressNotes": "You're perceptive, tough, smart, and so fashionable! Increases Perception, Strength, and Constitution by <%= attrs %> each. Enchanted Armoire: Blue Hairbow Set (Item 2 of 2).", + "armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown", + "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Increases Perception by <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).", "headgear": "Casco", "headgearCapitalized": "Gorros", "headBase0Text": "No Headgear", @@ -1054,6 +1060,8 @@ "headMystery201803Notes": "Although its appearance is quite decorative, you can engage the wings on this circlet for extra lift! Confers no benefit. March 2018 Subscriber Item.", "headMystery201805Text": "Phenomenal Peacock Helm", "headMystery201805Notes": "This helm will make you the proudest and prettiest (possibly also the loudest) bird in town. Confers no benefit. May 2018 Subscriber Item.", + "headMystery201806Text": "Alluring Anglerfish Helm", + "headMystery201806Notes": "The mesmerizing light atop this helm will call all the creatures of the sea to your side. We urge you to use your glowy powers of attraction for good! Confers no benefit. June 2018 Subscriber Item.", "headMystery301404Text": "Galera Elegante", "headMystery301404Notes": "¡Una galera elegante para los señores más sofisticados! Artículo de Suscriptor de Enero 3015. No otorga ningún beneficio.", "headMystery301405Text": "Galera Básica", @@ -1154,6 +1162,8 @@ "headArmoireBigWigNotes": "Some powdered wigs are for looking more authoritative, but this one is just for laughs! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.", "headArmoireGlassblowersHatText": "Glassblower's Hat", "headArmoireGlassblowersHatNotes": "This hat mainly just looks good with your other protective glassblowing gear! Increases Perception by <%= per %>. Enchanted Armoire: Glassblower Set (Item 3 of 4).", + "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress", + "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).", "offhand": "artículo de mano secundaria", "offhandCapitalized": "Artículo de Mano Secundaria", "shieldBase0Text": "Equipamiento sin Mano Secundaria", @@ -1368,6 +1378,8 @@ "shieldArmoireFancyShoeNotes": "A very special shoe you're working on. It's fit for royalty! Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 3 of 3).", "shieldArmoireFancyBlownGlassVaseText": "Fancy Blown Glass Vase", "shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Increases Intelligence by <%= int %>. Enchanted Armoire: Glassblower Set (Item 4 of 4).", + "shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield", + "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).", "back": "Accesorio para espalda", "backCapitalized": "Accesorio de la Espalda", "backBase0Text": "Sin accesorio para espalda", diff --git a/website/common/locales/es_419/groups.json b/website/common/locales/es_419/groups.json index a42eec0cc2..a22beacfda 100644 --- a/website/common/locales/es_419/groups.json +++ b/website/common/locales/es_419/groups.json @@ -134,12 +134,11 @@ "PMPlaceholderDescription": "Select a conversation on the left", "PMPlaceholderTitleRevoked": "Your chat privileges have been revoked", "PMPlaceholderDescriptionRevoked": "You are not able to send private messages because your chat privileges have been revoked. If you have questions or concerns about this, please email admin@habitica.com to discuss it with the staff.", - "PMEnable": "Enable Private Messages", - "PMDisable": "Disable Private Messages", - "PMEnabledOptPopoverText": "When Private Messages are disabled, you still can send messages, but no one can send them to you.", - "PMDisabledOptPopoverText": "Enable this option to be able to receive messages.", + "PMReceive": "Receive Private Messages", + "PMEnabledOptPopoverText": "Private Messages are enabled. Users can contact you via your profile.", + "PMDisabledOptPopoverText": "Private Messages are disabled. Enable this option to allow users to contact you via your profile.", "PMDisabledCaptionTitle": "Private Messages are disabled", - "PMDisabledCaptionText": "You still can send messages, but no one can send them to you.", + "PMDisabledCaptionText": "You can still send messages, but no one can send them to you.", "block": "Bloquear", "unblock": "Desbloquear", "pm-reply": "Enviar una respuesta", diff --git a/website/common/locales/es_419/limited.json b/website/common/locales/es_419/limited.json index 573768292d..3a52e1c575 100644 --- a/website/common/locales/es_419/limited.json +++ b/website/common/locales/es_419/limited.json @@ -130,7 +130,7 @@ "dateEndApril": "19 de Abril", "dateEndMay": "May 31", "dateEndJune": "14 de junio", - "dateEndJuly": "29 de julio", + "dateEndJuly": "July 31", "dateEndAugust": "31 de Agosto", "dateEndOctober": "31 de octubre", "dateEndNovember": "30 de Noviembre", diff --git a/website/common/locales/es_419/loadingscreentips.json b/website/common/locales/es_419/loadingscreentips.json index 1e4f0d5103..eadf160a7f 100644 --- a/website/common/locales/es_419/loadingscreentips.json +++ b/website/common/locales/es_419/loadingscreentips.json @@ -18,14 +18,14 @@ "tip16": "Haga clic en el enlace a la herramienta de visualización de datos en el pie de página para obtener información valiosa sobre su progreso", "tip17": "Use las aplicaciones móviles para configurar recordatorios para sus tareas.", "tip18": "Habitos que son solo positivo o negativo gradualmente \"desapareciendo\" y regresa a amarillo.", - "tip19": "Boost your Intelligence Stat to gain more experience when you complete a task.", + "tip19": "Aumenta tu estadística de inteligencia para ganar más experiencia cuando completas una tarea.", "tip20": "Aumenta tu estadistica de percepcion para obtener mas gotas y oro.", "tip21": "Aumenta tu estadistica de fuerza para hacer mas daño a tu enemigo u obtener golpe critico.", "tip22": "Aumenta tu estadistica de constitución para disminuir el daño recibido por las diarias incompletas.", "tip23": "Alcanza el nivel 100 y desbloquea el Orbe de Renacimiento gratis, y comienza una nueva aventura!", "tip24": "¿Tienes una pregunta? ¡Hazla en el Gremio de Ayuda de Habitica!", "tip25": "Las cuatro galas estacionales empiezan cerca de los solsticios y equinoxios.", - "tip26": "You can look for a Party or find Party members in the Party Wanted Guild!", + "tip26": "¡Puedes buscar un Grupo nuevo o encontrar miembros para tu Grupo en el Gremio de Party Wanted!", "tip27": "¿Hiciste una Tarea Diaria ayer pero olvidaste marcarla como hecha? ¡No te preocupes! Con Registrar la Actividad de Ayer, tendrás una oportunidad de marcar lo que hiciste antes de comenzar tu nuevo día.", "tip28": "Set a Custom Day Start under User Icon > Settings to control when your day restarts.", "tip29": "Complete all your Dailies to get a Perfect Day Buff that increases your Stats!", diff --git a/website/common/locales/es_419/pets.json b/website/common/locales/es_419/pets.json index b2820cb000..fe3f5c4de6 100644 --- a/website/common/locales/es_419/pets.json +++ b/website/common/locales/es_419/pets.json @@ -48,7 +48,7 @@ "foodText": "comida", "food": "Comida y Monturas", "noFoodAvailable": "No tienes comida.", - "noSaddlesAvailable": "You don't have any Saddles.", + "noSaddlesAvailable": "No tienes monturas.", "noFood": "No tienes ni comida ni monturas.", "dropsExplanation": "Consigue estos objetos más rápido con Gemas si no quieres esperar a que aparezcan cuando completes una tarea. Lee más acerca del sistema de botines.", "dropsExplanationEggs": "Usa gemas para conseguir huevos más rápido, si no quieres esperar que los huevos estándar te salgan en el botín ni repetir Misiones para ganar huevos de misión. Lee más sobre el sistema de botín.", @@ -139,7 +139,7 @@ "clickOnEggToHatch": "Click on an Egg to use your <%= potionName %> hatching potion and hatch a new pet!", "hatchDialogText": "Pour your <%= potionName %> hatching potion on your <%= eggName %> egg, and it will hatch into a <%= petName %>.", "clickOnPotionToHatch": "Click on a hatching potion to use it on your <%= eggName %> and hatch a new pet!", - "notEnoughPets": "You have not collected enough pets", + "notEnoughPets": "No has collectado suficientes mascotas ", "notEnoughMounts": "You have not collected enough mounts", "notEnoughPetsMounts": "You have not collected enough pets and mounts" } \ No newline at end of file diff --git a/website/common/locales/es_419/quests.json b/website/common/locales/es_419/quests.json index 11fe1c8bee..4eb7fa45fc 100644 --- a/website/common/locales/es_419/quests.json +++ b/website/common/locales/es_419/quests.json @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "Los gremios no pueden ser invitados a misiones.", "questNotOwned": "No posees ese pergamino de misión.", "questNotGoldPurchasable": "La misión \"<%= key %>\" es una misión no comprable con Oro.", + "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", "questLevelTooHigh": "Debes ser de nivel <%= level %> para empezar esta misión.", "questAlreadyUnderway": "Tu equipo ya esta en una misión. Intenta denuevo cuando la misión actual haya terminado.", "questAlreadyAccepted": "Ya aceptaste la invitación a la misión.", diff --git a/website/common/locales/es_419/spells.json b/website/common/locales/es_419/spells.json index 1ae0039570..408e89e3c7 100644 --- a/website/common/locales/es_419/spells.json +++ b/website/common/locales/es_419/spells.json @@ -9,7 +9,7 @@ "spellWizardFrostNotes": "¡Con un conjuro, El hielo congela todas tus rachas haciendo que no se reinicien a cero mañana!", "spellWizardFrostAlreadyCast": "Ya lanzaste este hechizo hoy dia. Tus rachas estan congeladas y no hay necesidad de lanzar este hechizo denuevo.", "spellWarriorSmashText": "Golpe Brutal", - "spellWarriorSmashNotes": "You make a task more blue/less red and deal extra damage to Bosses! (Based on: STR)", + "spellWarriorSmashNotes": "¡Haces que una tarea se vuelve más azul/menos rojo y haces daño extra a Jefes! (Basada en: FUE)", "spellWarriorDefensiveStanceText": "Postura Defensiva", "spellWarriorDefensiveStanceNotes": "¡Te agachas y ganas un buff para Constitution! (Basado en: Desconectado CON)", "spellWarriorValorousPresenceText": "Presencia Valerosa", @@ -21,19 +21,19 @@ "spellRogueBackStabText": "Puñalada", "spellRogueBackStabNotes": "Traicionas a una torpe tarea y ganas oro y PX! (Basado en: FUE)", "spellRogueToolsOfTradeText": "Herramientas del Oficio", - "spellRogueToolsOfTradeNotes": "Your tricky talents buff your whole Party's Perception! (Based on: Unbuffed PER)", + "spellRogueToolsOfTradeNotes": "¡Tus talentos de pícaro mejoran al Percepción de tu Grupo entero! (Basado en PER no reforzado)", "spellRogueStealthText": "Sigilo", "spellRogueStealthNotes": "With each cast, a few of your undone Dailies won't cause damage tonight. Their streaks and colors won't change. (Based on: PER)", "spellRogueStealthDaliesAvoided": "<%= originalText %> Numero de diarias evitadas: <%= number %>.", "spellRogueStealthMaxedOut": "Ya haz evitado todas tus tareas diaria; no hay necesidad de conjurar esto denuevo.", "spellHealerHealText": "Luz Curativa", - "spellHealerHealNotes": "Shining light restores your health! (Based on: CON and INT)", + "spellHealerHealNotes": "¡Luz brillante recupera tu salud! (Basado en: CON e INT)", "spellHealerBrightnessText": "Claridad Abrasadora", "spellHealerBrightnessNotes": "Una explosión de luz vuelve a tus tareas mas azules/menos rojas! (Basado en: INT)", "spellHealerProtectAuraText": "Aura Protectora", - "spellHealerProtectAuraNotes": "You shield your Party by buffing their Constitution! (Based on: Unbuffed CON)", + "spellHealerProtectAuraNotes": "¡Proteges tu Grupo al mejorar sus Constituciones! (Basado en: CON no reforzado)", "spellHealerHealAllText": "Bendición", - "spellHealerHealAllNotes": "Your soothing spell restores your whole Party's health! (Based on: CON and INT)", + "spellHealerHealAllNotes": "¡Tu hechizo recomfortante recupera el salud de tu Grupo entero! (Basado en: CON e INT)", "spellSpecialSnowballAuraText": "Bola de Nieve", "spellSpecialSnowballAuraNotes": "¡Transforma a tu amigo en un hombre de nieve!", "spellSpecialSaltText": "Sal", diff --git a/website/common/locales/es_419/subscriber.json b/website/common/locales/es_419/subscriber.json index 2885f651b3..63a613c679 100644 --- a/website/common/locales/es_419/subscriber.json +++ b/website/common/locales/es_419/subscriber.json @@ -143,7 +143,8 @@ "mysterySet201802": "Love Bug Set", "mysterySet201803": "Daring Dragonfly Set", "mysterySet201804": "Spiffy Squirrel Set", - "mysterySet201805": "Phenomenal Peacock Set", + "mysterySet201805": "Conjunto del Pavo Real", + "mysterySet201806": "Alluring Anglerfish Set", "mysterySet301404": "Conjunto Steampunk Estándar ", "mysterySet301405": "Conjunto de Accesorios Steampunk", "mysterySet301703": "Conjunto Pavo Real Steampunk", @@ -205,5 +206,5 @@ "purchaseAll": "Cómpralo todo", "gemsPurchaseNote": "Subscribers can buy gems for gold in the Market! For easy access, you can also pin the gem to your Rewards column.", "gemsRemaining": "Gemas restantes", - "notEnoughGemsToBuy": "You are unable to buy that amount of gems" + "notEnoughGemsToBuy": "No puedes comprar ese número de gemas." } \ No newline at end of file diff --git a/website/common/locales/es_419/tasks.json b/website/common/locales/es_419/tasks.json index b6054ef536..ab2cfe465d 100644 --- a/website/common/locales/es_419/tasks.json +++ b/website/common/locales/es_419/tasks.json @@ -194,8 +194,6 @@ "weeks": "Semanas", "year": "Año", "years": "Años", - "confirmScoreNotes": "Confirma la puntuación de la tarea con notas", - "taskScoreNotesTooLong": "La puntuación de la tarea debe tener menos de 256 caracteres", "groupTasksByChallenge": "Tareas grupales por título de desafío", "taskNotes": "Notas de Tareas", "monthlyRepeatHelpContent": "Esta tarea vencerá cada X meses", diff --git a/website/common/locales/fr/backgrounds.json b/website/common/locales/fr/backgrounds.json index 5f3cd9d854..58cb313919 100644 --- a/website/common/locales/fr/backgrounds.json +++ b/website/common/locales/fr/backgrounds.json @@ -355,9 +355,16 @@ "backgroundChampionsColosseumNotes": "Prélassez-vous devant la gloire du Colisée des champions.", "backgrounds062018": "Ensemble 49 : sorti en juin 2018", "backgroundDocksText": "Docks", - "backgroundDocksNotes": "Fish from atop the Docks.", + "backgroundDocksNotes": "Pêchez sur les Docks.", "backgroundRowboatText": "Rowboat", "backgroundRowboatNotes": "Sing rounds in a Rowboat.", - "backgroundPirateFlagText": "Pirate Flag", - "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag." + "backgroundPirateFlagText": "Pavillon noir", + "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag.", + "backgrounds072018": "Ensemble 50 : sorti en juillet 2018", + "backgroundDarkDeepText": "Dark Deep", + "backgroundDarkDeepNotes": "Swim in the Dark Deep among bioluminescent critters.", + "backgroundDilatoryCityText": "City of Dilatory", + "backgroundDilatoryCityNotes": "Meander through the undersea City of Dilatory.", + "backgroundTidePoolText": "Tide Pool", + "backgroundTidePoolNotes": "Observe the ocean life near a Tide Pool." } \ No newline at end of file diff --git a/website/common/locales/fr/character.json b/website/common/locales/fr/character.json index 70ce9ee815..385c79078e 100644 --- a/website/common/locales/fr/character.json +++ b/website/common/locales/fr/character.json @@ -45,7 +45,7 @@ "beard": "Barbe", "mustache": "Moustache", "flower": "Fleur", - "accent": "Accent", + "accent": "Ornement", "headband": "Bandeau", "wheelchair": "Fauteuil roulant", "extra": "Extra", diff --git a/website/common/locales/fr/content.json b/website/common/locales/fr/content.json index 31076d6c5d..9284f071e4 100644 --- a/website/common/locales/fr/content.json +++ b/website/common/locales/fr/content.json @@ -195,6 +195,7 @@ "hatchingPotionFairy": "féerique", "hatchingPotionStarryNight": "Nuit étoilée", "hatchingPotionRainbow": "Arc-en-ciel", + "hatchingPotionGlass": "Glass", "hatchingPotionNotes": "Versez-la sur un œuf et il en sortira un familier <%= potText(locale) %>.", "premiumPotionAddlNotes": "N'est pas utilisable sur les œufs de quête.", "foodMeat": "Côtelette", diff --git a/website/common/locales/fr/gear.json b/website/common/locales/fr/gear.json index 2ef1b4ab44..abdbaf28f4 100644 --- a/website/common/locales/fr/gear.json +++ b/website/common/locales/fr/gear.json @@ -258,12 +258,12 @@ "weaponSpecialSpring2018MageNotes": "Cette fleur magique ne se flétrit jamais ! Augmente l'Intelligence de <%= int %> et la Perception de <%= per %>. Équipement en édition limitée du printemps 2018.", "weaponSpecialSpring2018HealerText": "Bâton de grenat", "weaponSpecialSpring2018HealerNotes": "Les pierres de ce bâton concentreront votre puissance lorsque vous lancerez des sorts de guérison ! Augmente l'intelligence de <%= int %>. Équipement en édition limitée du printemps 2018.", - "weaponSpecialSummer2018RogueText": "Fishing Rod", - "weaponSpecialSummer2018RogueNotes": "This lightweight, practically unbreakable rod and reel can be dual-wielded to maximize your DPS (Dragonfish Per Summer). Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.", - "weaponSpecialSummer2018WarriorText": "Betta Fish Spear", - "weaponSpecialSummer2018WarriorNotes": "Mighty enough for battle, elegant enough for ceremony, this exquisitely crafted spear shows you will protect your home surf no matter what! Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.", + "weaponSpecialSummer2018RogueText": "Canne à pêche", + "weaponSpecialSummer2018RogueNotes": "Cette canne à pêche, légère et pratiquement incassable, peut-être utilisée avec une autre canne à pêche pour optimiser votre DPS (poisson-Dragon Par Saison). Augmente la Force de <%= str %>. Équipement en édition limitée de l’été 2018.", + "weaponSpecialSummer2018WarriorText": "Harpon à Betta Splendens", + "weaponSpecialSummer2018WarriorNotes": "Suffisamment puissant pour le combat, suffisamment élégante pour les cérémonies, cette lance fabriquée avec minutie montre que vous allez protéger votre surf, peu importe le reste ! Augmente la Force de <%= str %>. Équipement en édition limitée de l’été 2018.", "weaponSpecialSummer2018MageText": "Lionfish Fin Rays", - "weaponSpecialSummer2018MageNotes": "Underwater, magic based on fire, ice, or electricity can prove hazardous to the Mage wielding it. Conjuring poisonous spines, however, works brilliantly! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2018 Summer Gear.", + "weaponSpecialSummer2018MageNotes": "Sous l’eau, la magie du feu, de la glace ou de l’électricité peut être dangereuse pour le mage qui la détient. Soigner le poison des vives, par contre, est très utile ! Augmente l'Intelligence de <%= int %> et la Perception de <%= per %>. Équipement en édition limitée de l’été 2018.", "weaponSpecialSummer2018HealerText": "Merfolk Monarch Trident", "weaponSpecialSummer2018HealerNotes": "With a benevolent gesture, you command healing water to flow through your dominions in waves. Increases Intelligence by <%= int %>. Limited Edition 2018 Summer Gear.", "weaponMystery201411Text": "Fourche festive", @@ -346,6 +346,8 @@ "weaponArmoireCobblersHammerNotes": "Ce marteau a été spécialement fabriqué pour traiter le cuir. Néanmoins, il peut accomplir un travail impressionnant sur une quotidienne rouge en un rien de temps. Augmente la constitution et la force de <%= attrs %> chacune. Armoire enchantée : ensemble du cordonnier (objet 2 sur 3).", "weaponArmoireGlassblowersBlowpipeText": "Canne de verrier", "weaponArmoireGlassblowersBlowpipeNotes": "Utilisez ce tube pour souffler du verre et former des magnifiques vases, ornements ou d’autres trucs fantaisistes. Augmente la Force de <%= str %>. Armoire enchantée : ensemble du souffleur de verre (objet 1 sur 4).", + "weaponArmoirePoisonedGobletText": "Poisoned Goblet", + "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).", "armor": "armure", "armorCapitalized": "Armure", "armorBase0Text": "Habit simple", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "La chaleur et la lumière générées par cette armure magique réchaufferont votre cœur mais ne brûleront jamais votre peau ! N'apporte aucun bonus. Équipement d'abonné·e de décembre 2017.", "armorMystery201802Text": "Armure d'insecte de l'amour", "armorMystery201802Notes": "Cette armure brillante reflète votre force d'âme, et l'insuffle aux Habiticiennes et Habiticiens autour de vous qui pourraient avoir besoin d'encouragement ! N'apporte aucun bonus. Équipement d'abonné·e de février 2018.", + "armorMystery201806Text": "Alluring Anglerfish Tail", + "armorMystery201806Notes": "This sinuous tail features glowing spots to light your way through the deep. Confers no benefit. June 2018 Subscriber Item.", "armorMystery301404Text": "Tenue steampunk", "armorMystery301404Notes": "Pimpant et fringuant ! N'apporte aucun bonus. Équipement d'abonné·e de février 3015.", "armorMystery301703Text": "Toge du paon steampunk", @@ -742,6 +746,8 @@ "armorArmoireGlassblowersCoverallsNotes": "Cette combinaison vous protègera quand vous fabriquerez des chef-d’œuvres avec du verre en fusion. Augmente la Constitution de <%= con %>. Armoire enchantée : ensemble du souffleur de verre (objet 2 sur 4).", "armorArmoireBluePartyDressText": "Robe de soirée bleue", "armorArmoireBluePartyDressNotes": "Vous voilà perspicace, résistant, élégant... et tellement à la mode ! Augmente la Perception, la Force et la Constitution de <%= attrs %> chacune. Armoire enchantée : ensemble du serre-tête bleu (objet 2 sur 2).", + "armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown", + "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Increases Perception by <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).", "headgear": "heaume", "headgearCapitalized": "Couvre-chef", "headBase0Text": "Pas de couvre-chef", @@ -1054,6 +1060,8 @@ "headMystery201803Notes": "Malgré son apparence décorative, vous pouvez utiliser les ailes de ce diadème pour une meilleure portance ! Ne confère aucun bonus. Équipement d'abonné·e de mars 2018.", "headMystery201805Text": "Heaume de paon phénoménal", "headMystery201805Notes": "Ce heaume fera de vous l’oiseau le plus fier et le plus joli (peut-être aussi le plus bruyant) de toute la ville. N’apporte aucun bonus. Équipement d’abonné•e de mai 2018.", + "headMystery201806Text": "Alluring Anglerfish Helm", + "headMystery201806Notes": "The mesmerizing light atop this helm will call all the creatures of the sea to your side. We urge you to use your glowy powers of attraction for good! Confers no benefit. June 2018 Subscriber Item.", "headMystery301404Text": "Haut-de-forme fantaisiste", "headMystery301404Notes": "Un couvre-chef fantaisiste pour les gens de bonne famille les plus élégants ! N'apporte aucun bonus. Équipement d'abonné·e de janvier 3015.", "headMystery301405Text": "Haut-de-forme classique", @@ -1154,6 +1162,8 @@ "headArmoireBigWigNotes": "Certaines perruques poudrées donnent l'air plus autoritaire, mais celle-ci n'est que pour rire ! Augmente la Force de <%= str %>. Armoire enchantée : objet indépendant.", "headArmoireGlassblowersHatText": "Chapeau de souffleur de verre", "headArmoireGlassblowersHatNotes": "Ce chapeau va bien avec vos autres équipements de protection ! Augmente la Perception de <%= per %>. Armoire enchantée : ensemble du souffleur de verre (objet 3 sur 4).", + "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress", + "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).", "offhand": "objet de main secondaire", "offhandCapitalized": "Objet de main secondaire", "shieldBase0Text": "Pas d'équipement de main secondaire", @@ -1368,6 +1378,8 @@ "shieldArmoireFancyShoeNotes": "Une chaussure très spéciale sur laquelle vous travaillez. Elle est bonne pour la royauté ! Augmente l'intelligence et la perception de <%= attrs %> chacune. Armoire enchantée : ensemble du cordonnier (objet 3 sur 3).", "shieldArmoireFancyBlownGlassVaseText": "Luxueux vase en verre soufflé", "shieldArmoireFancyBlownGlassVaseNotes": "Quel joli vase vous avez fait ! Qu’est-ce que vous allez mettre dedans ? Augmente l’Intelligence de <%= int %>. Armoire enchantée : ensemble du souffleur de verre (objet 4 sur 4).", + "shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield", + "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).", "back": "Accessoire dorsal", "backCapitalized": "Accessoire dorsal", "backBase0Text": "Pas d’accessoire dorsal", diff --git a/website/common/locales/fr/groups.json b/website/common/locales/fr/groups.json index 1ad201ecbd..2944fa8c56 100644 --- a/website/common/locales/fr/groups.json +++ b/website/common/locales/fr/groups.json @@ -134,12 +134,11 @@ "PMPlaceholderDescription": "Sélectionnez une conversation à gauche", "PMPlaceholderTitleRevoked": "Vos privilèges de discussion ont été révoqués.", "PMPlaceholderDescriptionRevoked": "Vous ne pouvez pas envoyer de messages privés car vos privilèges de discussion ont été révoqués. Si vous avez des questions ou des inquiétudes concernant cette mesure, veuillez envoyer un courriel à admin@habitica.com pour en discuter avec les employés Habitica.", - "PMEnable": "Activer les messages privés", - "PMDisable": "Désactiver les messages privés", - "PMEnabledOptPopoverText": "Quand les messages privés sont désactivés, vous pouvez toujours envoyer des messages, mais personne ne peut vous en envoyer.", - "PMDisabledOptPopoverText": "Activez cette option pour pouvoir recevoir des messages", + "PMReceive": "Receive Private Messages", + "PMEnabledOptPopoverText": "Private Messages are enabled. Users can contact you via your profile.", + "PMDisabledOptPopoverText": "Private Messages are disabled. Enable this option to allow users to contact you via your profile.", "PMDisabledCaptionTitle": "Les messages privés sont désactivés", - "PMDisabledCaptionText": "Vous pouvez toujours envoyer des messages, mais personne ne peut vous en envoyer.", + "PMDisabledCaptionText": "You can still send messages, but no one can send them to you.", "block": "Bloquer", "unblock": "Ne plus bloquer", "pm-reply": "Répondre", diff --git a/website/common/locales/fr/limited.json b/website/common/locales/fr/limited.json index 944178339a..120d2d2e2f 100644 --- a/website/common/locales/fr/limited.json +++ b/website/common/locales/fr/limited.json @@ -130,7 +130,7 @@ "dateEndApril": "19 avril", "dateEndMay": "31 mai", "dateEndJune": "14 juin", - "dateEndJuly": "29 juillet", + "dateEndJuly": "July 31", "dateEndAugust": "31 août", "dateEndOctober": "31 octobre", "dateEndNovember": "30 novembre", diff --git a/website/common/locales/fr/npc.json b/website/common/locales/fr/npc.json index 43ff834753..5592ca9f75 100644 --- a/website/common/locales/fr/npc.json +++ b/website/common/locales/fr/npc.json @@ -48,7 +48,7 @@ "featuredItems": "Objets du moment !", "hideLocked": "Cacher ce qui est verrouillé", "hidePinned": "Cacher ce qui est épinglé", - "hideMissing": "Hide Missing", + "hideMissing": "Masquer les manquants", "amountExperience": "<%= amount %> Expérience", "amountGold": "<%= amount %> Or", "namedHatchingPotion": "Potion d'éclosion <%= type %>", diff --git a/website/common/locales/fr/quests.json b/website/common/locales/fr/quests.json index e69c7f71a2..4dff965197 100644 --- a/website/common/locales/fr/quests.json +++ b/website/common/locales/fr/quests.json @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "Les guildes ne peuvent pas être invitées à joindre une quête.", "questNotOwned": "Vous ne possédez pas ce parchemin de quête.", "questNotGoldPurchasable": "La quête \"<%= key %>\" n'est pas achetable avec de l'or.", + "questNotGemPurchasable": "La quête \"<%= key %>\" n'est pas achetable avec des Gemmes.", "questLevelTooHigh": "Vous devez être au moins au niveau <%= level %> pour commencer cette quête.", "questAlreadyUnderway": "Votre équipe est déjà en quête. Essayez à nouveau lorsque la quête actuelle sera terminée.", "questAlreadyAccepted": "Vous avez déjà accepté l'invitation à la quête.", diff --git a/website/common/locales/fr/subscriber.json b/website/common/locales/fr/subscriber.json index 723d20fb48..d3bd904940 100644 --- a/website/common/locales/fr/subscriber.json +++ b/website/common/locales/fr/subscriber.json @@ -144,6 +144,7 @@ "mysterySet201803": "Ensemble de la libellule audacieuse", "mysterySet201804": "Ensemble de l’élégant écureuil", "mysterySet201805": "Ensemble du paon phénoménal", + "mysterySet201806": "Ensemble de la lotte envoûtante", "mysterySet301404": "Ensemble steampunk de base", "mysterySet301405": "Ensemble d'accessoires steampunks", "mysterySet301703": "Ensemble du paon steampunk", diff --git a/website/common/locales/fr/tasks.json b/website/common/locales/fr/tasks.json index e61cf26084..3683cdc23a 100644 --- a/website/common/locales/fr/tasks.json +++ b/website/common/locales/fr/tasks.json @@ -194,8 +194,6 @@ "weeks": "Semaines", "year": "Année", "years": "Années", - "confirmScoreNotes": "Confirmer le score des tâches avec les notes", - "taskScoreNotesTooLong": "Les notes de score des tâches doivent comprendre moins de 256 caractères", "groupTasksByChallenge": "Regrouper les tâches par titre de défis", "taskNotes": "Notes de tâche", "monthlyRepeatHelpContent": "Cette tâche arrivera à échéance tous les X mois", diff --git a/website/common/locales/he/backgrounds.json b/website/common/locales/he/backgrounds.json index 494a1c130d..eab60924f0 100644 --- a/website/common/locales/he/backgrounds.json +++ b/website/common/locales/he/backgrounds.json @@ -359,5 +359,12 @@ "backgroundRowboatText": "Rowboat", "backgroundRowboatNotes": "Sing rounds in a Rowboat.", "backgroundPirateFlagText": "Pirate Flag", - "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag." + "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag.", + "backgrounds072018": "SET 50: Released July 2018", + "backgroundDarkDeepText": "Dark Deep", + "backgroundDarkDeepNotes": "Swim in the Dark Deep among bioluminescent critters.", + "backgroundDilatoryCityText": "City of Dilatory", + "backgroundDilatoryCityNotes": "Meander through the undersea City of Dilatory.", + "backgroundTidePoolText": "Tide Pool", + "backgroundTidePoolNotes": "Observe the ocean life near a Tide Pool." } \ No newline at end of file diff --git a/website/common/locales/he/content.json b/website/common/locales/he/content.json index f3cb7f4bad..0d7f1ad656 100644 --- a/website/common/locales/he/content.json +++ b/website/common/locales/he/content.json @@ -195,6 +195,7 @@ "hatchingPotionFairy": "Fairy", "hatchingPotionStarryNight": "Starry Night", "hatchingPotionRainbow": "Rainbow", + "hatchingPotionGlass": "Glass", "hatchingPotionNotes": "מזוג שיקוי זה על ביצה, והיא תבקע כ: <%= potText(locale) %>.", "premiumPotionAddlNotes": "לא ניתן לשימוש על ביצי הרפתקאות.", "foodMeat": "בשר", diff --git a/website/common/locales/he/gear.json b/website/common/locales/he/gear.json index bd77fda4c0..28f9fdcd83 100644 --- a/website/common/locales/he/gear.json +++ b/website/common/locales/he/gear.json @@ -346,6 +346,8 @@ "weaponArmoireCobblersHammerNotes": "This hammer is specially made for leatherwork. It can do a real number on a red Daily in a pinch, though. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 2 of 3).", "weaponArmoireGlassblowersBlowpipeText": "Glassblower's Blowpipe", "weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Increases Strength by <%= str %>. Enchanted Armoire: Glassblower Set (Item 1 of 4).", + "weaponArmoirePoisonedGobletText": "Poisoned Goblet", + "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).", "armor": "שריון", "armorCapitalized": "שריון", "armorBase0Text": "בגדים פשוטים", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "The heat and light generated by this magic armor will warm your heart but never burn your skin! Confers no benefit. December 2017 Subscriber Item.", "armorMystery201802Text": "Love Bug Armor", "armorMystery201802Notes": "This shiny armor reflects your strength of heart and infuses it into any Habiticans nearby who may need encouragement! Confers no benefit. February 2018 Subscriber Item.", + "armorMystery201806Text": "Alluring Anglerfish Tail", + "armorMystery201806Notes": "This sinuous tail features glowing spots to light your way through the deep. Confers no benefit. June 2018 Subscriber Item.", "armorMystery301404Text": "חליפת סטימפאנק", "armorMystery301404Notes": "נאה ונמרץ, אה! לא מקנה ייתרון. פברואר 3015, חפץ מנויים.", "armorMystery301703Text": "Steampunk Peacock Gown", @@ -742,6 +746,8 @@ "armorArmoireGlassblowersCoverallsNotes": "These coveralls will protect you while you're making masterpieces with hot molten glass. Increases Constitution by <%= con %>. Enchanted Armoire: Glassblower Set (Item 2 of 4).", "armorArmoireBluePartyDressText": "Blue Party Dress", "armorArmoireBluePartyDressNotes": "You're perceptive, tough, smart, and so fashionable! Increases Perception, Strength, and Constitution by <%= attrs %> each. Enchanted Armoire: Blue Hairbow Set (Item 2 of 2).", + "armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown", + "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Increases Perception by <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).", "headgear": "helm", "headgearCapitalized": "ציוד ראש", "headBase0Text": "No Headgear", @@ -1054,6 +1060,8 @@ "headMystery201803Notes": "Although its appearance is quite decorative, you can engage the wings on this circlet for extra lift! Confers no benefit. March 2018 Subscriber Item.", "headMystery201805Text": "Phenomenal Peacock Helm", "headMystery201805Notes": "This helm will make you the proudest and prettiest (possibly also the loudest) bird in town. Confers no benefit. May 2018 Subscriber Item.", + "headMystery201806Text": "Alluring Anglerfish Helm", + "headMystery201806Notes": "The mesmerizing light atop this helm will call all the creatures of the sea to your side. We urge you to use your glowy powers of attraction for good! Confers no benefit. June 2018 Subscriber Item.", "headMystery301404Text": "כובע ראש מפואר", "headMystery301404Notes": "כובע ראש מפואר למכובד שבג׳נטלמנים! ינואר 3015, חפץ מנויים. לא מקנה ייתרון.", "headMystery301405Text": "כובע ראש בסיסי", @@ -1154,6 +1162,8 @@ "headArmoireBigWigNotes": "Some powdered wigs are for looking more authoritative, but this one is just for laughs! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.", "headArmoireGlassblowersHatText": "Glassblower's Hat", "headArmoireGlassblowersHatNotes": "This hat mainly just looks good with your other protective glassblowing gear! Increases Perception by <%= per %>. Enchanted Armoire: Glassblower Set (Item 3 of 4).", + "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress", + "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).", "offhand": "off-hand item", "offhandCapitalized": "Off-Hand Item", "shieldBase0Text": "No Off-Hand Equipment", @@ -1368,6 +1378,8 @@ "shieldArmoireFancyShoeNotes": "A very special shoe you're working on. It's fit for royalty! Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 3 of 3).", "shieldArmoireFancyBlownGlassVaseText": "Fancy Blown Glass Vase", "shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Increases Intelligence by <%= int %>. Enchanted Armoire: Glassblower Set (Item 4 of 4).", + "shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield", + "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).", "back": "אביזר גב", "backCapitalized": "Back Accessory", "backBase0Text": "אביזר ללא גב", diff --git a/website/common/locales/he/groups.json b/website/common/locales/he/groups.json index cf00ac6f9a..1e3c72f621 100644 --- a/website/common/locales/he/groups.json +++ b/website/common/locales/he/groups.json @@ -134,12 +134,11 @@ "PMPlaceholderDescription": "Select a conversation on the left", "PMPlaceholderTitleRevoked": "Your chat privileges have been revoked", "PMPlaceholderDescriptionRevoked": "You are not able to send private messages because your chat privileges have been revoked. If you have questions or concerns about this, please email admin@habitica.com to discuss it with the staff.", - "PMEnable": "Enable Private Messages", - "PMDisable": "Disable Private Messages", - "PMEnabledOptPopoverText": "When Private Messages are disabled, you still can send messages, but no one can send them to you.", - "PMDisabledOptPopoverText": "Enable this option to be able to receive messages.", + "PMReceive": "Receive Private Messages", + "PMEnabledOptPopoverText": "Private Messages are enabled. Users can contact you via your profile.", + "PMDisabledOptPopoverText": "Private Messages are disabled. Enable this option to allow users to contact you via your profile.", "PMDisabledCaptionTitle": "Private Messages are disabled", - "PMDisabledCaptionText": "You still can send messages, but no one can send them to you.", + "PMDisabledCaptionText": "You can still send messages, but no one can send them to you.", "block": "חסימה", "unblock": "ביטול חסימה", "pm-reply": "שליחת תגובה", diff --git a/website/common/locales/he/limited.json b/website/common/locales/he/limited.json index 76b8c645d7..449b38546a 100644 --- a/website/common/locales/he/limited.json +++ b/website/common/locales/he/limited.json @@ -130,7 +130,7 @@ "dateEndApril": "April 19", "dateEndMay": "May 31", "dateEndJune": "June 14", - "dateEndJuly": "July 29", + "dateEndJuly": "July 31", "dateEndAugust": "August 31", "dateEndOctober": "October 31", "dateEndNovember": "November 30", diff --git a/website/common/locales/he/quests.json b/website/common/locales/he/quests.json index 20eaff6149..50a657c2d9 100644 --- a/website/common/locales/he/quests.json +++ b/website/common/locales/he/quests.json @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "לא ניתן להזמין גילדות להרפתקה.", "questNotOwned": "אין ברשותכם את המגילה הזו.", "questNotGoldPurchasable": "ההרפתקה ״<%= key %>״ אינה ניתנת לרכישה באמצעות זהב.", + "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", "questLevelTooHigh": "עליכם להיות בדרגה <%= level %> כדי להתחיל את ההרפתקה הזו.", "questAlreadyUnderway": "החבורה שלכם נמצאת כבר במהלכה של הרפתקה. נסו שוב כשזו תסתיים.", "questAlreadyAccepted": "כבר הסכמתם להזמנה להרפתקה.", diff --git a/website/common/locales/he/subscriber.json b/website/common/locales/he/subscriber.json index b34acb60f1..219c2d22c4 100644 --- a/website/common/locales/he/subscriber.json +++ b/website/common/locales/he/subscriber.json @@ -144,6 +144,7 @@ "mysterySet201803": "Daring Dragonfly Set", "mysterySet201804": "Spiffy Squirrel Set", "mysterySet201805": "Phenomenal Peacock Set", + "mysterySet201806": "Alluring Anglerfish Set", "mysterySet301404": "סט סטימפאנק רגיל", "mysterySet301405": "סט סטימפאנק אקססוריז", "mysterySet301703": "Peacock Steampunk Set", diff --git a/website/common/locales/he/tasks.json b/website/common/locales/he/tasks.json index 2478cf6416..f7a4e92fcd 100644 --- a/website/common/locales/he/tasks.json +++ b/website/common/locales/he/tasks.json @@ -194,8 +194,6 @@ "weeks": "שבועות", "year": "שנה", "years": "שנים", - "confirmScoreNotes": "Confirm task scoring with notes", - "taskScoreNotesTooLong": "Task score notes must be less than 256 characters", "groupTasksByChallenge": "סידור משימות עפ״י כותרת האתגר", "taskNotes": "הערות למשימה", "monthlyRepeatHelpContent": "המשימה תהיה פעילה מידי X חודשים.", diff --git a/website/common/locales/hu/backgrounds.json b/website/common/locales/hu/backgrounds.json index e0e23f35da..9c79c2c139 100644 --- a/website/common/locales/hu/backgrounds.json +++ b/website/common/locales/hu/backgrounds.json @@ -359,5 +359,12 @@ "backgroundRowboatText": "Csónak", "backgroundRowboatNotes": "Dalolássz egy csónakban!", "backgroundPirateFlagText": "Kalóz zászló", - "backgroundPirateFlagNotes": "Lengesd a kalózok egyik rémséges zászlaját!" + "backgroundPirateFlagNotes": "Lengesd a kalózok egyik rémséges zászlaját!", + "backgrounds072018": "KÉSZLET 50: Kiadva 2018 júliusában", + "backgroundDarkDeepText": "Dark Deep", + "backgroundDarkDeepNotes": "Swim in the Dark Deep among bioluminescent critters.", + "backgroundDilatoryCityText": "City of Dilatory", + "backgroundDilatoryCityNotes": "Meander through the undersea City of Dilatory.", + "backgroundTidePoolText": "Tide Pool", + "backgroundTidePoolNotes": "Observe the ocean life near a Tide Pool." } \ No newline at end of file diff --git a/website/common/locales/hu/character.json b/website/common/locales/hu/character.json index efbc781718..0ed51040d5 100644 --- a/website/common/locales/hu/character.json +++ b/website/common/locales/hu/character.json @@ -102,7 +102,7 @@ "allocateInt": "Intelligenciára kiosztott pontok:", "allocateIntPop": "Pont hozzáadása az intelligenciádhoz", "noMoreAllocate": "Most, hogy elérted a 100-as szintet, nem kapsz több tulajdonság pontot. A szintedet tovább növelheted, vagy egy újabb kalandba kezdhetsz 1. szinttől az Újjászületés gömbjével, ami mostantól ingyenesen elérhető a piacon.", - "stats": "Statisztika", + "stats": "Karakterlap", "achievs": "Kitüntetések", "strength": "Erő", "strText": "Az erő növeli az esélyét a véletlenszerű kritikus csapásoknak valamint az arany, tapasztalati pont és a jutalmak szerzésének lehetőségét. Emellett segít a főellenségek elleni sebzésben is.", @@ -132,10 +132,10 @@ "lvl10ChangeClass": "Hogy kasztot választhass, legalább 10. szintűnek kell lenned.", "changeClassConfirmCost": "Biztos megváltoztatod a kasztod 3 drágakőért?", "invalidClass": "Érvénytelen kaszt. Kérlek válassz 'harcos', 'tolvaj', 'mágus' vagy 'gyógyító'.", - "levelPopover": "Minden szinttel kapsz egy tulajdonság pontot, amit kioszthatsz. Ezt megteheted manuálisan, vagy hagyhatod, hogy a játék eldöntse helyetted, az egyik automatikus kiosztás opciót használva.", + "levelPopover": "Minden szinttel kapsz egy tulajdonság pontot, amit kioszthatsz. Ezt megteheted manuálisan, vagy hagyhatod, hogy a játék eldöntse helyetted, az egyik automatikus elosztás opciót használva.", "unallocated": "Kiosztatlan tulajdonság pontok", "haveUnallocated": "<%= points %> kiosztatlan tulajdonság pontod maradt", - "autoAllocation": "Automatikus kiosztás", + "autoAllocation": "Automatikus elosztás", "autoAllocationPop": "Oszd szét a tulajdonság pontokat ízlésed szerint, amikor szintet lépsz.", "evenAllocation": "Tulajdonság pontok elosztása egyenlően", "evenAllocationPop": "Minden tulajdonsághoz ugyanannyi pontot oszt..", @@ -202,7 +202,7 @@ "int": "INT", "showQuickAllocation": "Tulajdonság pont elosztás mutatása", "hideQuickAllocation": "Tulajdonság pont elosztás elrejtése", - "quickAllocationLevelPopover": "Minden szintlépés ad egy pontot, amit elkölthetsz egy általad választott tulajdonságra. Ezt teheted manuálisan, vagy a játékra is bízhatod a döntést valamelyik automatikus kiosztás opciót választva a Felhasználó ikon -> Statisztika menüpontban.", + "quickAllocationLevelPopover": "Minden szintlépés ad egy pontot, amit elkölthetsz egy általad választott tulajdonságra. Ezt teheted manuálisan, vagy a játékra is bízhatod a döntést valamelyik automatikus elosztás opciót választva a Felhasználó ikon -> Statisztika menüpontban.", "notEnoughAttrPoints": "Nincs elég tulajdonság pontod.", "style": "Stílus", "facialhair": "Arc", diff --git a/website/common/locales/hu/content.json b/website/common/locales/hu/content.json index 8c7fbcae65..dde50db9eb 100644 --- a/website/common/locales/hu/content.json +++ b/website/common/locales/hu/content.json @@ -195,6 +195,7 @@ "hatchingPotionFairy": "Tündér", "hatchingPotionStarryNight": "Csillagos éjszaka", "hatchingPotionRainbow": "Szivárvány", + "hatchingPotionGlass": "Üveg", "hatchingPotionNotes": "Öntsd ezt egy tojásra, és egy <%= potText(locale) %> háziállat fog belőle kikelni.", "premiumPotionAddlNotes": "Nem használható küldetésben szerzett tojásokhoz.", "foodMeat": "Hús", diff --git a/website/common/locales/hu/front.json b/website/common/locales/hu/front.json index 3cdd90a2a5..a8172962d5 100644 --- a/website/common/locales/hu/front.json +++ b/website/common/locales/hu/front.json @@ -85,7 +85,7 @@ "landingend": "Még nem győztünk meg?", "landingend2": "Lásd részletsebb listánkat az [oldal funkcióiról](/static/overview). Privátabb megközelítést keresel? Nézd meg az [adminisztratív csomagjainkat](/static/plans), ami tökéletes családok, tanárok, támogató csoportok, és vállalatok számára.", "landingp1": "A probléma a legtöbbb produktivitást segítő alkalmazással, hogy nem ösztönöznek, hogy folyamatosan használd őket. A Habitica úgy oldja ezt meg, hogy szokásaid felépítését szórakozássá teszi! Sikereid megjutalmazásával és ballépéseid büntetésével a Habitica külső motivációt biztosít mindennapi feladataid elvégzéséhez.", - "landingp2": "Amikor megerősítesz egy pozitív szokást, vagy befejezel egy napi feladatot, esetleg elkészülsz egy régi tennivalóval, a Habitica rögtön megjutalmaz tapasztalati pontokkal és arannyal. Tapasztalati pontok szerzésével szintet lépsz, amely növeli a tulajdonságaidat és új funkciókat tesz elérhetővé, pl. kasztok és háziállatok. \nAz aranyat játékbeli tárgyakra költheted, amik megváltoztatják a játékélményed, vagy testre szabott jutalmakat vásárolhatsz, amik motiválnak. Ha a legkisebb siker is jutalommal kecsegtet, akkor kisebb eséllyel fogod a feladataidat halogatni.", + "landingp2": "Amikor megerősítesz egy pozitív szokást, vagy befejezel egy napi feladatot, esetleg elkészülsz egy régi tennivalóval, a Habitica rögtön megjutalmaz tapasztalati pontokkal és arannyal. Tapasztalati pontok szerzésével szintet lépsz, amely növeli a tulajdonságaidat és új funkciókat tesz elérhetővé, pl. kasztok és háziállatok. Az aranyat játékbeli tárgyakra költheted, amik megváltoztatják a játékélményed, vagy testre szabott jutalmakat vásárolhatsz, amik motiválnak. Ha a legkisebb siker is jutalommal kecsegtet, akkor kisebb eséllyel fogod a feladataidat halogatni.", "landingp2header": "Azonnali jutalom", "landingp3": "Amikor engedsz egy rossz szokásnak, vagy nem végzed el a napi feladataidat, életerőt veszítesz. Ha az életerőd elfogy, elveszíted a megszerzett dolgaid egy részét. Az azonnali következmények miatt, a Habitica segít leszokni a rossz szokásokról és a halogatásról, mielőtt problémákat okoznának a való életben.", "landingp3header": "Következmények", @@ -123,7 +123,7 @@ "marketing4Lead3-1": "Szeretnéd játékká tenni az életed?", "marketing4Lead3-2": "Szeretnél egy csoportot vezetni oktatás, wellness, vagy egyéb témában?", "marketing4Lead3-3": "Szeretnél többet tudni?", - "marketing4Lead3Title": "Játékosíts mindent", + "marketing4Lead3Title": "Tegyél mindent játékká", "mobileAndroid": "Android", "mobileIOS": "iOS", "motivate": "Motiváld magad és a csapatod!", @@ -189,7 +189,7 @@ "schoolSample5": "1 fejezetet elolvasni", "sixteenBitFilQuote": "A megbízásaimmal és feladataimmal rekordidő alatt végzek, hála a [Habiticának]! Mindig vágyom rá, hogy elérhessem a következő szintet!", "skysailorQuote": "A csapatom és a küldetéseink segít abban hogy foglalkozzak a játékkal, ami motivál a feladataim elvégzésében és pozitív irányba tereli az életem", - "socialTitle": "Habitica - Játékosítsd az életed", + "socialTitle": "Habitica - Tedd játékká az életed", "supermouse35Quote": "Többet edzek és már hónapok óta nem felejtettem el bevenni a gyógyszereimet! Köszi, Habit. :D", "sync": "Szinkronizálás", "tasks": "Feladatok", @@ -330,5 +330,5 @@ "getStarted": "Kezdj hozzá", "mobileApps": "Mobil alkalmazások", "learnMore": "Tudj meg többet", - "useMobileApps": "A Habitica nem optimális a mobil böngészőben való használathoz. Javasoljuk hogy töltsd le a mobil alkalmazásainkat." + "useMobileApps": "A Habitica nem optimális a mobil böngészőben való használathoz. Javasoljuk hogy töltsd le a mobil alkalmazásunkat." } \ No newline at end of file diff --git a/website/common/locales/hu/gear.json b/website/common/locales/hu/gear.json index 27946b6051..882a3334e9 100644 --- a/website/common/locales/hu/gear.json +++ b/website/common/locales/hu/gear.json @@ -258,14 +258,14 @@ "weaponSpecialSpring2018MageNotes": "Ez a mágikus virág soha nem hervad el! Növeli az intelligenciádat <%= int %> ponttal és az észlelésedet <%= per %> ponttal. Limitált kiadású 2018-as tavaszi felszerelés.", "weaponSpecialSpring2018HealerText": "Gránát varázspálca", "weaponSpecialSpring2018HealerNotes": "Ezen a varázspálcán található kövek gyógyítás közben fókuszálják a varázserődet! Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2018-as tavaszi felszerelés.", - "weaponSpecialSummer2018RogueText": "Fishing Rod", - "weaponSpecialSummer2018RogueNotes": "This lightweight, practically unbreakable rod and reel can be dual-wielded to maximize your DPS (Dragonfish Per Summer). Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.", - "weaponSpecialSummer2018WarriorText": "Betta Fish Spear", - "weaponSpecialSummer2018WarriorNotes": "Mighty enough for battle, elegant enough for ceremony, this exquisitely crafted spear shows you will protect your home surf no matter what! Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.", - "weaponSpecialSummer2018MageText": "Lionfish Fin Rays", - "weaponSpecialSummer2018MageNotes": "Underwater, magic based on fire, ice, or electricity can prove hazardous to the Mage wielding it. Conjuring poisonous spines, however, works brilliantly! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2018 Summer Gear.", - "weaponSpecialSummer2018HealerText": "Merfolk Monarch Trident", - "weaponSpecialSummer2018HealerNotes": "With a benevolent gesture, you command healing water to flow through your dominions in waves. Increases Intelligence by <%= int %>. Limited Edition 2018 Summer Gear.", + "weaponSpecialSummer2018RogueText": "Horgászbot ", + "weaponSpecialSummer2018RogueNotes": "Ez a könnyű, de gyakorlatilag törhetetlen bot és orsó duplán is használható hogy maximalizálja a DPS-t (doktorhal per szezon). Növeli az erődet <%= str %> ponttal. Limitált kiadású 2018-as nyári felszerelés.", + "weaponSpecialSummer2018WarriorText": "Sziámi harcoshal lándzsa", + "weaponSpecialSummer2018WarriorNotes": "Ez a tökéletesen megművelt lándzsa harchoz elég hatalmas, ünnepélyhez elég elegáns és bármi is történjen, képes megvédeni az otthonodat! Növeli az erődet <%= str %> ponttal. Limitált kiadású 2018-as nyári felszerelés.", + "weaponSpecialSummer2018MageText": "Tűzhal uszonytüskék", + "weaponSpecialSummer2018MageNotes": "Víz alatt a tűz, jég, vagy elektromosság alapú varázslatok veszélyesek a mágusra aki használja őket. Ezek a megidézett mérgező tüskék viszont rendkívül hatásosak! Növeli az intelligenciádat <%= int %> ponttal és az észlelésedet <%= per %> ponttal. Limitált kiadású 2018-as nyári felszerelés.", + "weaponSpecialSummer2018HealerText": "Sellő uralkodó szigony", + "weaponSpecialSummer2018HealerNotes": "Egy jóságos mozdulattal megparancsolod a gyógyító víznek hogy az uralmad alatt lévő területeken kersztülfolyjon. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2018-as nyári felszerelés.", "weaponMystery201411Text": "A lakmározás vasvillája", "weaponMystery201411Notes": "Szúrd le az ellenségeidet vagy túrj bele kedvenc eledeleidbe - ezzel a sokoldalú vasvillával mindent megtehetsz! Nem változtat a tulajdonságaidon. 2014 novemberi előfizetői tárgy.", "weaponMystery201502Text": "A szeretet csillogó szárnyas botja és az igazságé is", @@ -346,6 +346,8 @@ "weaponArmoireCobblersHammerNotes": "Ezt a kalapácsot kifejezetteb bőr megmunkálásához készítették. De a vörös napi feladatokat is el tudja páholni. Növeli a szívósságodat és az erődet <%= attrs %> ponttal. Elvarázsolt láda: Cipész szett (2. tárgy a 3-ból).", "weaponArmoireGlassblowersBlowpipeText": "Üvegfúvó fúvócsöve", "weaponArmoireGlassblowersBlowpipeNotes": "Használd ezt a csövet hogy olvadt üvegből gyönyörű vázákat, díszeket és más mutatós tárgyakat készíts. Növeli az erődet <%= str %> ponttal. Elvarázsolt láda: Üvegfúvó szett (1. tárgy a 4-ből).", + "weaponArmoirePoisonedGobletText": "Poisoned Goblet", + "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).", "armor": "páncél", "armorCapitalized": "Páncél", "armorBase0Text": "Egyszerű ruházat", @@ -580,14 +582,14 @@ "armorSpecialSpring2018MageNotes": "A varázserőd csak növekedhet, amíg ezeket a puha és báronyos szirmokat viseled. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2018-as tavaszi felszerelés.", "armorSpecialSpring2018HealerText": "Gránát páncél", "armorSpecialSpring2018HealerNotes": "Engedd hogy az a fényes páncél gyógyító erővel töltse el a szívedet. Növeli az szívósságodat <%= con %> ponttal. Limitált kiadású 2018-as tavaszi felszerelés.", - "armorSpecialSummer2018RogueText": "Pocket Fishing Vest", - "armorSpecialSummer2018RogueNotes": "Bobbers? Boxes of hooks? Spare line? Lockpicks? Smoke bombs? Whatever you need on hand for your summer fishing getaway, there's a pocket for it! Increases Perception by <%= per %>. Limited Edition 2018 Summer Gear.", - "armorSpecialSummer2018WarriorText": "Betta Tail Armor", - "armorSpecialSummer2018WarriorNotes": "Dazzle onlookers with whorls of magnificent color as you spin and dart through the water. How could any opponent dare strike at this beauty? Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.", - "armorSpecialSummer2018MageText": "Lionfish Scale Hauberk", - "armorSpecialSummer2018MageNotes": "Venom magic has a reputation for subtlety. Not so this colorful armor, whose message is clear to beast and task alike: watch out! Increases Intelligence by <%= int %>. Limited Edition 2018 Summer Gear.", - "armorSpecialSummer2018HealerText": "Merfolk Monarch Robes", - "armorSpecialSummer2018HealerNotes": "These cerulean vestments reveal that you have land-walking feet... well. Not even a monarch can be expected to be perfect. Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.", + "armorSpecialSummer2018RogueText": "Zsebes halász mellény", + "armorSpecialSummer2018RogueNotes": "Úszók? Több doboz horog? Tartalék zsinór? Tolvajkulcs? Fütbomba? Bátmire is van szükséged a nyári halászat közben, találsz neki egy zsebet! Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2018-as nyári felszerelés.", + "armorSpecialSummer2018WarriorText": "Sziámi harcoshal páncél", + "armorSpecialSummer2018WarriorNotes": "Varázsold el a bámészkodókat pompás színek kavalkádjával miközben keresztülsuhansz a vízen. Hogy merne bármilyen ellenfél ilyen gyönyörűséget megtámadni? Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2018-as nyári felszerelés.", + "armorSpecialSummer2018MageText": "Pikkelyes tűzhal páncéling", + "armorSpecialSummer2018MageNotes": "A méregvarázslat a találékonyságáról híres. Nem annyira mint ez a színes páncél, aminek üzenete egyértelmű szörnyek és feladatok számára egyaránt: ide nézz! Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2018-as nyári felszerelés.", + "armorSpecialSummer2018HealerText": "Sellő uralkodó köpeny", + "armorSpecialSummer2018HealerNotes": "Ez az égszínkék öltözék felfedi hogy lábaid vannak... Még egy uralkodó sem lehet tökéletes. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2018-as nyári felszerelés.", "armorMystery201402Text": "Hírvivő köpeny", "armorMystery201402Notes": "Csillámlóak és erősek, ezeknek a köpenyeknek sok zsebük van levelek hordásához. Nem változtat a tulajdonságaidon. 2014 februári előfizetői tárgy.", "armorMystery201403Text": "Erdőjáró páncél", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "A meleg és a fény amit ez a mágikus páncél sugároz ki magából felmelegíti a szívedet, de sosem égeti meg a bőrödet! Nem változtat a tulajdonságaidon. 2017 decemberi előfizetői tárgy.", "armorMystery201802Text": "Szerelembogár páncél", "armorMystery201802Notes": "Ez a csillogó páncél visszaveri kitartásod fényét és felbátorítja a Habitica azon lakóit, akiknek szükségük van rá! Nem változtat a tulajdonságaidon. 2018 februári előfizetői tárgy.", + "armorMystery201806Text": "Csábító horgászhal farok", + "armorMystery201806Notes": "Ezen a kanyargós farkon világító pettyek vannak amik megvilágítják az utadat a mélyben. Nem változtat a tulajdonságaidon. 2018 júniusi előfizetői tárgy.", "armorMystery301404Text": "Steampunk öltözet", "armorMystery301404Notes": "Jól vasalt és lenyűgöző, ugye! Nem változtat a tulajdonságaidon. 3015 februári előfizetői tárgy.", "armorMystery301703Text": "Steampunk páva köntös", @@ -742,6 +746,8 @@ "armorArmoireGlassblowersCoverallsNotes": "Ez a kezeslábas védelmet biztosít miközben forró olvadt üveggel remekműveket készítesz. Növeli a szívósságodat <%= con %> ponttal. Elvarázsolt láda: Üvegfúvó szett (2. tárgy a 4-ből).", "armorArmoireBluePartyDressText": "Kék estélyi ruha", "armorArmoireBluePartyDressNotes": "Figyelmes vagy, kitartó, okos és nagyon divatos! Növeli az észlelésedet, erődet és a szívósságodat <%= attrs %> ponttal. Elvarázsolt láda: Kék hajmasni szett (2. tárgy a 2-ből)", + "armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown", + "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Increases Perception by <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).", "headgear": "sisak", "headgearCapitalized": "Fejfedő", "headBase0Text": "Nincs fejfedő", @@ -976,14 +982,14 @@ "headSpecialSpring2018MageNotes": "Ennek a sisaknak a díszes szirmai különleges tavaszi varázserővel ruháznak fel. Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2018-as tavaszi felszerelés.", "headSpecialSpring2018HealerText": "Gránát diadém", "headSpecialSpring2018HealerNotes": "Ennek a diadémnak a csiszolt drágakövei felerősítik a mentális energiádat. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2018-as tavaszi felszerelés.", - "headSpecialSummer2018RogueText": "Fishing Sun Hat", - "headSpecialSummer2018RogueNotes": "Provides comfort and protection from the harsh glare of the summer sun over the water. Especially important if you're more accustomed to staying stealthy in the shadows! Increases Perception by <%= per %>. Limited Edition 2018 Summer Gear.", - "headSpecialSummer2018WarriorText": "Betta Fish Barbute", - "headSpecialSummer2018WarriorNotes": "Show everyone you're the alpha betta with this flamboyant helm! Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.", - "headSpecialSummer2018MageText": "Lionfish Crest", - "headSpecialSummer2018MageNotes": "Glare dolorously upon anyone who dares say you look like a “tastyfish”. Increases Perception by <%= per %>. Limited Edition 2018 Summer Gear.", - "headSpecialSummer2018HealerText": "Merfolk Monarch Crown", - "headSpecialSummer2018HealerNotes": "Adorned with aquamarine, this finned diadem marks leadership of folk, fish, and those who are a bit of both! Increases Intelligence by <%= int %>. Limited Edition 2018 Summer Gear.", + "headSpecialSummer2018RogueText": "Halászkalap", + "headSpecialSummer2018RogueNotes": "Kényelmet, valamint védelmet biztosít a tűző nap sugaraival szemben. Különösen fontos ha hozzá vagy szokva a rejtőzködéshez! Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2018-as nyári felszerelés.", + "headSpecialSummer2018WarriorText": "Sziámi harcoshal barbuta", + "headSpecialSummer2018WarriorNotes": "Mutasd meg mindenkinek hogy te vagy az alfa sziámi harcoshal ezzel a kihívó sisakkal! Növeli az erődet <%= str %> ponttal. Limitált kiadású 2018-as nyári felszerelés.", + "headSpecialSummer2018MageText": "Tűzhal címer", + "headSpecialSummer2018MageNotes": "Bámulj búsan bárkire aki azt mondja úgy nézel ki mint egy \"ínyenchal\". Növeli az észlelésdet <%= per %> ponttal. Limitált kiadású 2018-as nyári felszerelés.", + "headSpecialSummer2018HealerText": "Sellő uralkodó korona", + "headSpecialSummer2018HealerNotes": "Ez az akvamarinnal díszített uszonyos fejdísz megmutatja ki a vezére embereknek és halaknak, valamint azoknak akik mindkét csoportba tartoznak. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2018-as nyári felszerelés.", "headSpecialGaymerxText": "Szívárványos harci sisak", "headSpecialGaymerxNotes": "A GaymerX Konferencia ünnepléseként ez a különleges sisak a szívárvány minden színében pompázik! A GaymerX egy játék konferencia, ami az LGBTQ közösséget ünnepli a játékvilágban, valamint elérhető mindenki számára.", "headMystery201402Text": "Szárnyas sisak", @@ -1054,6 +1060,8 @@ "headMystery201803Notes": "Habár kinézetében elég díszes, ezen a diadémon lévő szárnyakat használhatod arra, hogy felemelkedj a levegőbe! Nem változtat a tulajdonságaidon. 2018 márciusi előfizetői tárgy.", "headMystery201805Text": "Rendkívüli páva sisak", "headMystery201805Notes": "Ez a sisak a legbüszkébb és legszebb (és valószínűleg leghangosabb) csókává változtat a környéken. Nem változtat a tulajdonságaidon. 2018 májusi előfizetői tárgy.", + "headMystery201806Text": "Csábító horgászhal sisak", + "headMystery201806Notes": "Ennek a sisaknak a tetején található megigéző fény a tenger összes lényét magadhoz hívja. Arra biztatunk hogy ezt a vonzó erőt jóra használd! Nem változtat a tulajdonságaidon. 2018 júniusi előfizetői tárgy.", "headMystery301404Text": "Elegáns cilinder", "headMystery301404Notes": "Egy elegáns cilinder a legelőkelőbb úriembereknek! Nem változtat a tulajdonságaidon. 3015 januári előfizetői tárgy. ", "headMystery301405Text": "Egyszerű cilinder", @@ -1154,6 +1162,8 @@ "headArmoireBigWigNotes": "Vannak olyan parókák, amik tekintélyt kölcsönöznek, viszont ez a paróka csak arra jó hogy másokat megnevettess! Növeli az erődet <%= str %> ponttal. Elvarázsolt láda: önálló tárgy.", "headArmoireGlassblowersHatText": "Üvegfúvó kalapja", "headArmoireGlassblowersHatNotes": "Ez a kalap csak jól néz ki a többi üvegfúváshoz használt védelmi felszereléseddel! Növeli az észlelésedet <%= per %> ponttal. Elvarázsolt láda: Üvegfúvó szett (3. tárgy a 4-ből).", + "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress", + "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).", "offhand": "balkezes fegyver", "offhandCapitalized": "Balkezes fegyver", "shieldBase0Text": "Nincs balkezes felszerelés", @@ -1304,10 +1314,10 @@ "shieldSpecialSpring2018WarriorNotes": "Ez a robusztus pajzs a felkelő nap első sugaraival ragyog. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2018-as tavaszi felszerelés.", "shieldSpecialSpring2018HealerText": "Gránát pajzs", "shieldSpecialSpring2018HealerNotes": "Díszes kinézetének ellenére, ez a gránát pajzs igazán strapabíró! Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2018-as tavaszi felszerelés.", - "shieldSpecialSummer2018WarriorText": "Betta Skull Shield", - "shieldSpecialSummer2018WarriorNotes": "Fashioned from stone, this fearsome skull-styled shield strikes fear into fish foes while rallying your Skeleton pets and mounts. Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.", - "shieldSpecialSummer2018HealerText": "Merfolk Monarch Emblem", - "shieldSpecialSummer2018HealerNotes": "This shield can produce a dome of air for the benefit of land-dwelling visitors to your watery realm. Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.", + "shieldSpecialSummer2018WarriorText": "Sziámi harcoshal koponya pajzs", + "shieldSpecialSummer2018WarriorNotes": "Ez a kőből faragott félelmetes koponyára emlékeztető pajzs rettegést kelt ellenfeleidben, miközben harcba hívod háziállataidat és hátasaidat. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2018-as nyári felszerelés.", + "shieldSpecialSummer2018HealerText": "Sellő uralkodó embléma", + "shieldSpecialSummer2018HealerNotes": "Ez a pajzs képes levegővel töltött búrát létrehozni azoknak a látogatóknak akik a szárazföldről érkeznek víz alatti birodalmadba. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2018-as nyári felszerelés.", "shieldMystery201601Text": "Eskü pusztító", "shieldMystery201601Notes": "Ez a penge arra használható hogy minden figyelemeleterlést elhárítson. Nem változtat a tulajdonságaidon. 2016 januári előfizetői tárgy.", "shieldMystery201701Text": "Idő megállító pajzs", @@ -1368,6 +1378,8 @@ "shieldArmoireFancyShoeNotes": "Ez a cipő amit most készítesz igazán különleges. Királyhoz méltó! Növeli az intelligenciádat és az észlelésedet <%= attrs %> ponttal. Elvarázsolt láda: Cipész szett (3. tárgy a 3-ból).", "shieldArmoireFancyBlownGlassVaseText": "Díszes fújt üvegváza", "shieldArmoireFancyBlownGlassVaseNotes": "Micsoda díszes vázát készítettél! Mit fogsz bele tenni? Növeli az intelligenciádat <%= int %> ponttal. Elvarázsolt láda: Üvegfúvó szett (4. tárgy a 4-ből).", + "shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield", + "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).", "back": "Háti kiegészítő", "backCapitalized": "Háti kiegészítő", "backBase0Text": "Nincs háti kiegészítő", diff --git a/website/common/locales/hu/generic.json b/website/common/locales/hu/generic.json index 48d74a70b2..89501730c6 100644 --- a/website/common/locales/hu/generic.json +++ b/website/common/locales/hu/generic.json @@ -10,7 +10,7 @@ "titleTasks": "Feladatok", "titleAvatar": "Avatár", "titleBackgrounds": "Hátterek", - "titleStats": "Statisztika", + "titleStats": "Karakterlap", "titleAchievs": "Kitüntetések", "titleProfile": "Profil", "titleInbox": "Bejövő üzenetek", @@ -64,7 +64,7 @@ "subscriberItemText": "Minden hónapban az előfizetők kapnak egy rejtélyes tárgyat. Ezt általában minden hónap vége előtt egy héttel hozzuk nyilvánosságra. A Wiki 'Rejtélyes tárgyak' oldalán találhatsz több információt.", "all": "Összes", "none": "Semelyik", - "more": "<%= count %> more", + "more": "<%= count %> darabbal több", "and": "és", "loginSuccess": "Sikeres bejelentkezés!", "youSure": "Biztos vagy benne?", @@ -170,7 +170,7 @@ "achievementDysheartener": "A megtörtek megmentője", "achievementDysheartenerText": "Segített legyőzni az Elcsüggesztőt a 2018-a valentini eseményen!", "checkOutProgress": "Fejlődésem megtekintése a Habiticán!", - "cards": "Üdvözlőlapok", + "cards": "Üdvözlőkártyák", "sentCardToUser": "Üdvözlőlapot küldtél <%= profileName %> felhasználónak", "cardReceivedFrom": "<%= cardType %> <%= userName %> felhasználótól", "cardReceived": "<%= card %> érkezett", @@ -216,7 +216,7 @@ "getwell2": "Gondolok rád!", "getwell3": "Sajnálom, hogy nem érzed jól magad!", "getwellCardAchievementTitle": "Figyelmes kebelbarát", - "getwellCardAchievementText": "Jókívánságok mindenkinek jól esnek. <%= count %> jobbulást kívánó kártyát küldtél vagy kaptál.", + "getwellCardAchievementText": "Jókívánságok mindenkinek jól esnek. <%= count %> jobbulást kívánó kártyát küldtél vagy kaptál.", "goodluckCard": "Jószerencse kártya", "goodluckCardExplanation": "Mindketten megkaptátok a Szerencsés levél kitüntetést!", "goodluckCardNotes": "Küldj egy jószerencse kártyát egy csapattagodnak.", diff --git a/website/common/locales/hu/groups.json b/website/common/locales/hu/groups.json index 14dbf88cc3..f9eea985d3 100644 --- a/website/common/locales/hu/groups.json +++ b/website/common/locales/hu/groups.json @@ -31,7 +31,7 @@ "tavernAlert1": "Egy hiba bejelentéséhez, látogasd meg", "tavernAlert2": "a Report a Bug céhet.", "moderatorIntro1": "A kocsma és a céh moderátorai:", - "communityGuidelines": "a közösségi irányelveinket", + "communityGuidelines": "Közösségi irányelvek", "communityGuidelinesRead1": "Kérlek olvasd el", "communityGuidelinesRead2": "chatelés előtt.", "bannedWordUsed": "Upsz! Úgy látszik ez az üzenet káromkodást, vallásos kijelentést, függőséget okozó dologra vagy felnőtt tartalomra való utalást tartalmaz (<%= swearWordsUsed %>). A Habitica-n különböző hátérrel rendelkező felhasználók vannak, ezért a chat-t mindig rendben tartjuk. Nyugodtan szerkeszd meg az üzenetedet mielőtt elküldenéd!", @@ -134,10 +134,9 @@ "PMPlaceholderDescription": "Válasszi ki egy beszélgetést a bal oldalon", "PMPlaceholderTitleRevoked": "Üzenetküldési kiváltágaid visszavonásra kerültek", "PMPlaceholderDescriptionRevoked": "Nem tudsz privát üzenetet küldeni mert az üzenetküldési kiváltságaid visszavonásra kerültek. Ha ezzel kapcsolatban kérdésed vagy problémád van, írj a admin@habitica.com e-mail címre.", - "PMEnable": "Privát üzenetek engedélyezése", - "PMDisable": "Privát üzenetek letiltása", - "PMEnabledOptPopoverText": "Ha a privát üzeneteid le vannak tiltva, üzenetet tudsz küldeni, de mások nem tudnak neked küldeni.", - "PMDisabledOptPopoverText": "Engedélyezd ezt az opciót üzenetek fogadásához.", + "PMReceive": "Privát üzenetek fogadása", + "PMEnabledOptPopoverText": "A privát üzenetek engedélyezve vannak. Felhasználók a profilodon keresztül fel tudják veled venni a kapcsolatot.", + "PMDisabledOptPopoverText": "A privát üzenetek le vannak tiltva. Engedélyezd ezt az opciót, hogy felhasználók a profilodon keresztül fel tudják veled venni a kapcsolatot.", "PMDisabledCaptionTitle": "Privát üzenetek le vannak tiltva", "PMDisabledCaptionText": "Üzenetet tudsz küldeni, de mások nem tudnak neked küldeni.", "block": "Letiltás", @@ -212,8 +211,8 @@ "partyChatEmpty": "A csapatod üzenőfala üres! Írj egy üzenetet és kezdj csevegni.", "guildChatEmpty": "Ennek a céhnek az üzenőfala üres! Írj egy üzenetet és kezdj csevegni.", "requestAcceptGuidelines": "Ha szeretnél a fogadóban, csapatban vagy céhben bejegyzést írni, először kérlek olvasd el a <%= linkStart %> Közösségi irányelveket<%= linkEnd %> és utána kattints a lenti gombra amivel elfogadod a szabályokat.", - "partyUpName": "Party Up", - "partyOnName": "Party On", + "partyUpName": "Kalandra fel", + "partyOnName": "Kalandozz tovább", "partyUpText": "Caatlakoztál egy csapathoz aminek már van egy tagja! Jó szórakozást a szörnyekkel való harchoz valamint egymás támogatásához.", "partyOnText": "Csatlakoztál egy csapathoz aminek már van legalább négy tagja! Élvezd a fokozott felelősséget, miközben együtt harcoltok az ellenségeitekkel szemben!", "groupNotFound": "Csapat nem elérhető vagy nincs hozzáféhetőséged.", @@ -268,7 +267,7 @@ "exportInboxPopoverBody": "HTML lehetővé teszi az üzenetek könnyebb olvasását a böngészőben. Géppel olvasható formátumhoz, használd az Adatok > Adatok exportálása fület.", "to": "Címzett:", "from": "Feladó:", - "desktopNotificationsText": "We need your permission to enable desktop notifications for new messages in party chat! Follow your browser's instructions to turn them on.

You'll receive these notifications only while you have Habitica open. If you decide you don't like them, they can be disabled in your browser's settings.

This box will close automatically when a decision is made.", + "desktopNotificationsText": "Az asztali értesítésekhez szükségünk van a jóváhagyásodra! Kövesd a böngésződ utasításait ezek bekapcsolásához.

Csakk akkor kapsz értesítést ha a Habitica meg van nyitva. Ha úgy döntesz hogy nem tetszenek, a böngésződ beállításainál kikapcsolhatod őket.

Döntése után ez az ablak automatikusan bezáródik. ", "confirmAddTag": "Szeretnéd hozzárendelni ezt a feladatot a \"<%= tag %>\" címkéhez?", "confirmRemoveTag": "Szeretnéd eltávolítani \"<%= tag %>\" címkét?", "groupHomeTitle": "Főoldal", @@ -351,7 +350,7 @@ "joinedGuild": "Csatlakoztál egy céhhez", "joinedGuildText": "Bemerészkedtél a Habitica közösségi oldalára egy céhhez való csatlakozással!", "badAmountOfGemsToPurchase": "Az értéknek legalább 1-nek kell lennie", - "groupPolicyCannotGetGems": "The policy of one group you're part of prevents its members from obtaining gems.", + "groupPolicyCannotGetGems": "Egy olyan csoporthoz tartozol, aminek az egyik szabálya megakadályozza hogy tagjai drágaköveket szerezzenek.", "viewParty": "Csapat megtekintése", "newGuildPlaceholder": "Céh nevének megadása", "guildMembers": "Céh tagok", @@ -432,41 +431,41 @@ "managerRemoved": "Menedzser eltávolítása sikeres", "leaderChanged": "Vezető megváltoztatva", "groupNoNotifications": "Ez a céh nemrendelkezik értesítésekkel a létszám nagysága miatt. Ne felejtsd el gyakran megnézni hogy az üzeneteidre érkezett-e válasz!", - "whatIsWorldBoss": "What is a World Boss?", - "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.", - "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.", - "worldBossBullet1": "Complete tasks to damage the World Boss", - "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!", - "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both", - "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks", - "worldBoss": "World Boss", - "groupPlanTitle": "Need more for your crew?", - "groupPlanDesc": "Managing a small team or organizing household chores? Our group plans grant you exclusive access to a private task board and chat area dedicated to you and your group members!", - "billedMonthly": "*billed as a monthly subscription", - "teamBasedTasksList": "Team-Based Task List", - "teamBasedTasksListDesc": "Set up an easily-viewed shared task list for the group. Assign tasks to your fellow group members, or let them claim their own tasks to make it clear what everyone is working on!", - "groupManagementControls": "Group Management Controls", - "groupManagementControlsDesc": "Use task approvals to verify that a task that was really completed, add Group Managers to share responsibilities, and enjoy a private group chat for all team members.", - "inGameBenefits": "In-Game Benefits", - "inGameBenefitsDesc": "Group members get an exclusive Jackalope Mount, as well as full subscription benefits, including special monthly equipment sets and the ability to buy gems with gold.", - "inspireYourParty": "Inspire your party, gamify life together.", - "letsMakeAccount": "First, let’s make you an account", - "nameYourGroup": "Next, Name Your Group", - "exampleGroupName": "Example: Avengers Academy", - "exampleGroupDesc": "For those selected to join the training academy for The Avengers Superhero Initiative", - "thisGroupInviteOnly": "This group is invitation only.", - "gettingStarted": "Getting Started", - "congratsOnGroupPlan": "Congratulations on creating your new Group! Here are a few answers to some of the more commonly asked questions.", - "whatsIncludedGroup": "What's included in the subscription", - "whatsIncludedGroupDesc": "All members of the Group receive full subscription benefits, including the monthly subscriber items, the ability to buy Gems with Gold, and the Royal Purple Jackalope mount, which is exclusive to users with a Group Plan membership.", - "howDoesBillingWork": "How does billing work?", - "howDoesBillingWorkDesc": "Group Leaders are billed based on group member count on a monthly basis. This charge includes the $9 (USD) price for the Group Leader subscription, plus $3 USD for each additional group member. For example: A group of four users will cost $18 USD/month, as the group consists of 1 Group Leader + 3 group members.", - "howToAssignTask": "How do you assign a Task?", - "howToAssignTaskDesc": "Assign any Task to one or more Group members (including the Group Leader or Managers themselves) by entering their usernames in the \"Assign To\" field within the Create Task modal. You can also decide to assign a Task after creating it, by editing the Task and adding the user in the \"Assign To\" field!", - "howToRequireApproval": "How do you mark a Task as requiring approval?", - "howToRequireApprovalDesc": "Toggle the \"Requires Approval\" setting to mark a specific task as requiring Group Leader or Manager confirmation. The user who checked off the task won't get their rewards for completing it until it has been approved.", - "howToRequireApprovalDesc2": "Group Leaders and Managers can approve completed Tasks directly from the Task Board or from the Notifications panel.", - "whatIsGroupManager": "What is a Group Manager?", - "whatIsGroupManagerDesc": "A Group Manager is a user role that do not have access to the group's billing details, but can create, assign, and approve shared Tasks for the Group's members. Promote Group Managers from the Group’s member list.", - "goToTaskBoard": "Go to Task Board" + "whatIsWorldBoss": "Mi az a világellenség?", + "worldBossDesc": "A világellenség egy különleges esemény ami összehozza a Habitica lakóit hogy feladataink elvégzésével közösen legyőzzünk egy hatalmas szörnyet! A szörny legyőzése után a Habitica összes lakója jutalmat kap, még azok is akik a fogadóban pihentek vagy nem használták a Habitica-t a küldetés alatt.", + "worldBossLink": "Tudj meg többet korábbi világellenségekről a Habitica wiki oldalán.", + "worldBossBullet1": "Teljesítsd feladataid a világellenség megsebzéséhez", + "worldBossBullet2": "A világellenség nem okoz sebzést az el nem végzett feladatok után, de a őrjöngés mérője növekedni fog. Ha a sáv betelik a főellenség megtámadja a Habitica egyik kereskedőjét!", + "worldBossBullet3": "Rendes küldetésekben is részt vehetsz, a sebzés mindkét ellenségre vonatkozni fog.", + "worldBossBullet4": "Rendszeresen látogasd meg a fogadót hogy megtudd a világellenség jelenlegi állapotát valamint őrjöngés mérőjét.", + "worldBoss": "Világellenség", + "groupPlanTitle": "Több tagra van szükséged?", + "groupPlanDesc": "Egy kisebb csapatot vagy háztartást vezetsz? Csoportos terveink exkluzív hozzáférést biztosítanak privát feladatlistákhoz és üzenőfalhoz, amelyek csak neked valamint csoportod tagjainak elérhetőek!", + "billedMonthly": "*havi előfizetésként van számlázva", + "teamBasedTasksList": "Csoporthoz tartozó feladatlista", + "teamBasedTasksListDesc": "Állíts fel egy könnyen böngészhető feladatlistát csoportod számára. Csoportod tagjait rendeld hozzá feladatokhoz, vagy hagyd hogy ezeket ők válasszák ki ezzel nyilvánvalóvá téve hogy melyik tag melyik feladaton dolgozik.", + "groupManagementControls": "Csoport menedzsment irányítás", + "groupManagementControlsDesc": "Használd a jóváhagyás funkciót hogy igazold hogy ezt a feladatot tényleg elvégezték, adj a csoporthoz csoportmenedzsereket felelősség megosztásához, és élvezd a privát üzenőfalat a csoport többi tagjával való csevegéshez.", + "inGameBenefits": "Játékbeli előnyök", + "inGameBenefitsDesc": "A csoport tagjai kapnak egy exkluzív szarvasnyúl hátast, valamint az előfizetés összes előnyét, beleértve különleges havi tárgyak valamint a képességet hogy aranyért drágakövet vásárolhatnak.", + "inspireYourParty": "Inspiráld a csapatodat, tegyétek az életeteket közösen játékká.", + "letsMakeAccount": "Először, hozz létre egy fiókot", + "nameYourGroup": "Következő, nevezd el a csoportot", + "exampleGroupName": "Példa: Bosszúállók akadémia", + "exampleGroupDesc": "Azoknak akiket kiválasztottak hogy a Bosszúállók csapatához tartozzanak.", + "thisGroupInviteOnly": "A csoporthoz meghívás szükséges.", + "gettingStarted": "Kezdés", + "congratsOnGroupPlan": "Gratulálunk új csoportod létrehozásához! Íme néhány válasz a leggyakroribb kérdésekre. ", + "whatsIncludedGroup": "Mit tartalmaz az előfizetés", + "whatsIncludedGroupDesc": "A csoport összes tagja megkapja az előfizetés összes előnyét, beleértve a különleges havi tárgyakat és a képességet hogy aranyért drágakövet vásárolhatnak, valamint a fenséges lila szarvasnyúl hátast, ami egy exkluzív hátas azoknak a felhasználóknak akik egy csoportos tervnek a tagjai.", + "howDoesBillingWork": "Hogyan történi a számlázás?", + "howDoesBillingWorkDesc": "A csoportvezető a tagok száma alapján kap havi számlát. Ebbe bele tartozik $9 (USD) a vezető után, valamint $3 USD minden tag után. Például: egy négy tagból álló csapat $18 USD/hónapba kerül, mivel a csoportnak egy vezetője, valamint 3 tagja van.", + "howToAssignTask": "Hogyan tudsz feladatokat valakihez hozzárendelni?", + "howToAssignTaskDesc": "Rendelj feladatokat egy vagy több taghoz ( beleértve a vezetőt és a menedzsereket) azzal hogy a nevüket a \"Hozzárendel\" mezőbe beírod az új feladat létrehozása ablakban. A feladat létrehozását követően is adhatsz hozzá tagokat, ha a feladat szerkesztése ablakban hozzáadod a tag nevét a \"Hozzárendel\" mezőhöz.", + "howToRequireApproval": "Hogyan állítod be hogy egy feladat elfogadásra vár?", + "howToRequireApprovalDesc": "Kapcsold be a \"Jóváhagyás szükséges\" beállítást hogy egy bizonyos feladatot bejelölj a csoportvezető vagy menedzser általi jóváhagyáshoz. Az a felhasználó aki a feladatot befejezettnek jelölte be, nem fogja megkapni a jutalmát amíg az nincs jóváhagyva.", + "howToRequireApprovalDesc2": "A csoportvezető és menedzserek jóvá tudják hagyni a befejezett feladatokat közvetlenül a feladatlistáról vagy az értesítés ablakban.", + "whatIsGroupManager": "Mi az a csoportmenedzser?", + "whatIsGroupManagerDesc": "A csoportmenedzser egy olyan személy, akinek nincs felhatalmazása a számlák megtekintéséhez, de feladat létrehozásához, hozzárendeléséhez és jóváhagyásához igen, valamint a csoport tagjai között megosztott feladatokat is elfogadhatja. Léptess elő csoportmenedzserré felhasználót a csoport tagjai közül.", + "goToTaskBoard": "Menj a feladatlistához" } \ No newline at end of file diff --git a/website/common/locales/hu/limited.json b/website/common/locales/hu/limited.json index dc935db2a3..b75960951f 100644 --- a/website/common/locales/hu/limited.json +++ b/website/common/locales/hu/limited.json @@ -10,9 +10,9 @@ "agriculturalFriendsText": "Csapattársaid <%= count %> alkalommal varázsoltak virággá.", "aquaticFriends": "Vízi barátok", "aquaticFriendsText": "Csapattársaid <%= count %> alkalommal locsoltak le.", - "valentineCard": "Valentin-napi képeslap", + "valentineCard": "Valentin-napi üdvözlőkártya", "valentineCardExplanation": "Amiért mindketten elviseltétek ezt a mézes-mázas verset, mindketten megkapjátok a \"Cuki barátok\" kitüntetést!", - "valentineCardNotes": "Küldj egy Valentin-napi képeslapot az egyik csapattagodnak.", + "valentineCardNotes": "Küldj egy Valentin-napi üdvözlőkártyát az egyik csapattagodnak.", "valentine0": "\"A rózsák veresek\n\na Napijaim kékesek\n\nörülök, hogy veled együtt\n\negy csapatban lehetek.\"", "valentine1": "\"A rózsák veresek\n\na violák szépek\n\nvessünk együtt\n\nA rossz szokásoknak véget.\"", "valentine2": "\"A rózsák veresek\n\nEz a vers pedig régi\n\nremélem azért tetszett, mert \n\n10 Aranyat kellet érte fizetni.\"", @@ -54,7 +54,7 @@ "nyeCardNotes": "Küldj egy újévi üdvözlőkártyát az egyik csapattagodnak.", "seasonalItems": "Szezonális tárgyak", "nyeCardAchievementTitle": "Régi ismerős", - "nyeCardAchievementText": "Boldog új évet! Küldött vagy kapott <%= count %> újévi kártyák. ", + "nyeCardAchievementText": "Boldog új évet! Küldött vagy kapott <%= count %> újévi üdvözlőkártyát. ", "nye0": "Boldog új évet! Kívánom hogy pusztíts el sok rossz szokást.", "nye1": "Boldog új évet! Kívánom hogy arass sok jutalmat.", "nye2": "Boldog új évet! Kívánom hogy legyen sok tökéletes napod.", @@ -121,16 +121,16 @@ "spring2018TulipMageSet": "Tulipán mágus (mágus)", "spring2018GarnetHealerSet": "Gránát gyógyító (gyógyító)", "spring2018DucklingRogueSet": "Kiskacsa tolvaj (tolvaj)", - "summer2018BettaFishWarriorSet": "Betta Fish Warrior (Warrior)", - "summer2018LionfishMageSet": "Lionfish Mage (Mage)", - "summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)", - "summer2018FisherRogueSet": "Fisher-Rogue (Rogue)", + "summer2018BettaFishWarriorSet": "Sziámis harcoshal harcos (harcos)", + "summer2018LionfishMageSet": "Tűzhal mágus (mágus)", + "summer2018MerfolkMonarchSet": "Sellő uralkodó (gyógyító)", + "summer2018FisherRogueSet": "Halász tolvaj (tolvaj)", "eventAvailability": "Megvásárolható <%= date(locale) %>-ig.", "dateEndMarch": "április 30", "dateEndApril": "április 19", "dateEndMay": "május 31", "dateEndJune": "június 14", - "dateEndJuly": "július 29", + "dateEndJuly": "július 31", "dateEndAugust": "augusztus 31", "dateEndOctober": "október 31", "dateEndNovember": "november 30", diff --git a/website/common/locales/hu/loadingscreentips.json b/website/common/locales/hu/loadingscreentips.json index 52bde1f943..b7b549a556 100644 --- a/website/common/locales/hu/loadingscreentips.json +++ b/website/common/locales/hu/loadingscreentips.json @@ -1,38 +1,38 @@ { "tipTitle": "<%= tipNumber %>. számú tipp", "tip1": "Utazás közben is ellenőrizheted feladataidat a Habitica mobil alkalmazással.", - "tip2": "Kattints a felszerelésre, h", + "tip2": "Kattints egy felszerelésre, hogy megnézd hogy néz ki az avatárodon, vagy kattints a csillagra a bal felső sarokban hogy rögtön ráadd az avatárodra.", "tip3": "Hangulatjelekkel könnyedén megkülönböztetheted a feladataidat.", "tip4": "Használd a # jelet a feladat neve előtt, hogy megnöveld a betű méretét!", - "tip5": "It’s best to use skills that cause buffs in the morning so they last longer.", - "tip6": "Hover over a task and click the dots to access advanced task controls, such as the ability to push tasks to the top/bottom of your list.", - "tip7": "Some backgrounds connect perfectly if Party members use the same background. Ex: Mountain Lake, Pagodas, and Rolling Hills.", - "tip8": "Send a Message to someone by clicking their name in chat and then clicking the envelope icon at the top of their profile!", - "tip9": "Use the filters + search bar in the Inventories, Shops, Guilds, and Challenges to quickly find what you want.", + "tip5": "Az erősíteseket érdemes reggel használni, hogy egész nap hassanak.", + "tip6": "Az egeret vidd egy feladat fölé és a megjelenő 3 pontra kattintva hozzá tudsz férni a haladó beállításokhoz, mint a képesség hogy egy feladatot a listádon legalulra vagy legfelülre helyezz át.", + "tip7": "Néhány háttérkép tökéletesen illeszkedik egymáshoz, ha a csapattagok ugyanazt használják. Pl.: a \"Hegyi tó\", a \"Pagodák\" és a \"Lankás dombok\".", + "tip8": "Küldj üzenetet bárkinek az üzenőfalon megjelenő névre, azon belül pedig a profil tetején található boríték ikonra kattintva.", + "tip9": "Használd a szűrőt valamint a kereső sávot a tárgylistában, a boltokban, a céhekben és a kihívásokban, hogy gyorsan megtaláld amit keresel.", "tip10": "Drágaköveket nyerhetsz ha részt veszel kihívásokban. Minden nap találhatsz új kihívásokat!", - "tip11": "Having more than four Party members increases accountability!", - "tip12": "Add checklists to your To-Dos to multiply your rewards!", - "tip13": "Click “Tags” on your task page to make an unwieldy task list very manageable!", + "tip11": "Ha csapatodnak több mint négy tagja van, az segít hogy felelősségteljesebbek legyetek!", + "tip12": "Adj feladatlistát a tennivalóidhoz hogy megduplázd a jutalmakat!", + "tip13": "Kattints a \"Címkék\" gombra a feladatlistádon, hogy még a legnehezebben kezelhető feladataidat it áttekinthetővé tedd!", "tip14": "Fejléceket vagy bíztató idézeket adhatsz a szokásokhoz ha nem jelölöd be a (+/-) jeleket.", - "tip15": "Complete all the Masterclasser Quest-lines to learn about Habitica’s secret lore.", - "tip16": "Click the link to the Data Display Tool in the footer for valuable insights on your progress.", - "tip17": "Use the mobile apps to set reminders for your tasks.", + "tip15": "Teljesítsd a kasztemester küldetéssorozatot hogy többet megtudj a Habitica titkos történetéről. ", + "tip16": "Kattints az adat kimutató eszköz linkjére a láblécben hogy fontos információkat tudj meg a fejlődéseddel kapcsolatban.", + "tip17": "Használd a mobil alkalmazásokat hogy emlékeztetőket állíts be a feladataidhoz.", "tip18": "Szokások, amik csak pozitív vagy negatív jellel vannak ellátva, rendszerint \"elhalványulnak\" és visszatérnek sárga állapotba.", - "tip19": "Boost your Intelligence Stat to gain more experience when you complete a task.", - "tip20": "Növeld az észlelés értékét, hogy több tárgyat és aranyat szerezz.", - "tip21": "Növeld az erő értékét, hogy több sebzést okozz a főellenségnek vagy kritikus találatot érj el.", - "tip22": "Növeld a szívósság értékét, hogy kevesebb sebzést szenvedj a félbemaradt napi feladataidtól.", - "tip23": "Reach level 100 to unlock the Orb of Rebirth for free and start a new adventure!", - "tip24": "Have a question? Ask in the Habitica Help Guild!", + "tip19": "Növeld az intelligenciádat, hogy feladatok teljesítésekor több tapasztalati pontot kapj.", + "tip20": "Növeld az észlelésedet, hogy több tárgyat és aranyat szerezz.", + "tip21": "Növeld az erődet, hogy több sebzést vagy kritikus találatot okozz a főellenségnek.", + "tip22": "Növeld a szívósságodat, hogy kevesebb sebzést szenvedj a befejezetlen napi feladataidtól.", + "tip23": "Érd el a 100. szintet hogy feloldd az újjászületés gömbjét és új kalandot tudj kezdeni!", + "tip24": "Kérdésed van? Látogass el a \"Habitica Help\" nevű céhbe!", "tip25": "A négy évszakos nagy gálák mindig a napfordulókhoz és napéjegyenlőségekhez közel kezdődnek.", - "tip26": "You can look for a Party or find Party members in the Party Wanted Guild!", - "tip27": "Elvégeztél tegnap egy napi feladatot, de elfelejtetted kipipálni? Semmi gond! Mielőtt új napot kezdenél, a 'Tegnapi feladatok feljegyzésének' segítségével be tudod jelölni azokat a feladatokat amiket előző nap elfelejtettél.", - "tip28": "Set a Custom Day Start under User Icon > Settings to control when your day restarts.", - "tip29": "Complete all your Dailies to get a Perfect Day Buff that increases your Stats!", + "tip26": "Kereshetsz egy csapatot vagy csapattagokat a \"Party Wanted\" nevű céhben!", + "tip27": "Teljesítettél tegnap egy napi feladatot, de elfelejtetted kipipálni? Semmi gond! Mielőtt új napot kezdenél, a 'Tegnapi feladatok feljegyzésének' segítségével be tudod jelölni azokat a feladatokat amiket előző nap elfelejtettél.", + "tip28": "Egyéni napkezdést állíthatsz be a Felhasználói ikon > Beállítások menüben, aminek segítségével beállíthatod hogy mikor kezdődjön újra a napod.", + "tip29": "Teljesítsd az összes napi feladatodat, hogy megkapd a tökéletes nap erősítést, ami növeli az értékeidet!", "tip30": "Céhekbe is meghívhatsz felhasználókat, nem csak csapatokba.", - "tip31": "Előre elkészített listákért látogass el a Feladatok könyvtárába, példafeladatokért pedig a \"Challenges Guild\" nevű céhbe. ", - "tip32": "Lots of Habitica’s code, art, and writing is made by volunteer contributors! Head to the Aspiring Legends Guild to help.", - "tip33": "Check out The Bulletin Board Guild for news about Guilds, Challenges, and other player-created events - and announce your own there!", - "tip34": "Occasionally re-evaluate your tasks to make sure they’re up-to-date!", - "tip35": "Users who are part of a Group Plan gain the ability to assign tasks to other users in that Group for extra task management and accountability." + "tip31": "Előre elkészített listákért és példafeladatokért látogass el a \"Library of Tasks and Challenges\" nevű céhbe. ", + "tip32": "Sok Habitica forráskód, kép és felirat önkéntesek hozzájárulása! Ha segíteni szeretnél, látogass el az \"Aspiring Legends\" nevű céhbe.", + "tip33": "Látogass el a \"The Bulletin Board\" nevű céhbe, céhhel és kihívásokkal kapcsolatos hírekért, valamint más játékosok által létrehozott eseményekért - vagy tedd közzé a sajátodat!", + "tip34": "Időnként ellenőrizd le a feladataidat, hogy megbizonyosodj róla hogy naprakészek!", + "tip35": "Olyan felhasználók akik egy csoportos tervnek a részei megkapják a képességet hogy feladatokat rendeljenek hozzá a csoportban lévő többi felhasználóhoz." } diff --git a/website/common/locales/hu/overview.json b/website/common/locales/hu/overview.json index 10b9bfcd1b..bd957e1c22 100644 --- a/website/common/locales/hu/overview.json +++ b/website/common/locales/hu/overview.json @@ -8,7 +8,7 @@ "webStep2Text": "Most pedig elkezdetsz megbirkózni a listán szereplő céljaiddal! Amikor feladatokat teljesítesz és kipipálod őket a Habiticában, [Tapasztalathoz](http://habitica.wikia.com/wiki/Experience_Points) fogsz jutni, ami segít a szintlépésben, illetve [Aranyhoz](http://habitica.wikia.com/wiki/Gold_Points), amivel a jutalmakat vásárolhatsz. Amikor engedsz a rossz szokásoknak, vagy kihagysz egy napi feladatot, [Életerőt](http://habitica.wikia.com/wiki/Health_Points) veszítesz . A Habitica tapasztalat és életerő sávjai így válnak érdekes mutatóivá céljaidhoz vezető eredményeidnek. Ahogy karaktered halad a játékban, úgy fogod észrevenni életedben is a javulást.", "step3": "3. lépés: Formáld ízlésed szerint és fedezd fel a Habitica-t", - "webStep3Text": "Ha már megismerkedtél az alapokkal, még többet kihozhatsz a Habiticából ezekkel a remek funkciókkal:\n* Rendezd a feladataidat [címkékkel](http://habitica.wikia.com/wiki/Tags) (szerkeszd a feladatot címkék hozzáadásához).\n* Tedd egyedivé [avatárod](http://habitica.wikia.com/wiki/Avatar) a felhasználó ikonra való kattintással a jobb felső sarokban.\n* Vásárolj [felszerelést](http://habitica.wikia.com/wiki/Equipment) a jutalmaknál vagy a [boltban](/shops/market), és vedd fel a [tárgylista > felszerelés](/inventory/equipment) menüben.\n* Lépj kapcsolatba másokkal a [fogadóban](http://habitica.wikia.com/wiki/Tavern).\n* A 3. szinttől kezdve kikelthetsz [háziállatokat](http://habitica.wikia.com/wiki/Pets) [tojások](http://habitica.wikia.com/wiki/Eggs) és [keltetőfőzetek](http://habitica.wikia.com/wiki/Hatching_Potions) segítségével. [Etesd](http://habitica.wikia.com/wiki/Food) őket, hogy [hátasokká](http://habitica.wikia.com/wiki/Mounts) fejlődjenek.\n* A 10. szinten kiválaszthatod a [kasztod](http://habitica.wikia.com/wiki/Class_System), hogy aztán kasztfüggő [varázslatokat](http://habitica.wikia.com/wiki/Skills) alkalmazhass (a 11. szinttől a 14. szintig nyílnak meg).\n* Alkoss csapatot barátaiddal a (a [csapat](/party) menüre kattintva), hogy felelős maradhass feladataidért és küldetés-tekercseket kaphass.\n* Győzz le szörnyeket és gyűjts tárgyakat a [küldetéseken].(http://habitica.wikia.com/wiki/Quests) (A 15. szinten kapsz egy küldetést).", + "webStep3Text": "Ha már megismerkedtél az alapokkal, még többet kihozhatsz a Habiticából ezekkel a remek funkciókkal:\n* Rendezd a feladataidat [címkékkel](http://habitica.wikia.com/wiki/Tags) (szerkeszd a feladatot címkék hozzáadásához).\n* Tedd egyedivé [avatárod](http://habitica.wikia.com/wiki/Avatar) a felhasználó ikonra való kattintással a jobb felső sarokban.\n* Vásárolj [felszerelést](http://habitica.wikia.com/wiki/Equipment) a jutalmaknál vagy a [boltban](/shops/market), és vedd fel a [tárgylista > felszerelés](/inventory/equipment) menüben.\n* Lépj kapcsolatba másokkal a [fogadóban](http://habitica.wikia.com/wiki/Tavern).\n* A 3. szinttől kezdve kikelthetsz [háziállatokat](http://habitica.wikia.com/wiki/Pets) [tojások](http://habitica.wikia.com/wiki/Eggs) és [keltetőfőzetek](http://habitica.wikia.com/wiki/Hatching_Potions) segítségével. [Etesd](http://habitica.wikia.com/wiki/Food) őket, hogy [hátasokká](http://habitica.wikia.com/wiki/Mounts) fejlődjenek.\n* A 10. szinten kiválaszthatod a [kasztod](http://habitica.wikia.com/wiki/Class_System), hogy aztán kasztfüggő [varázslatokat](http://habitica.wikia.com/wiki/Skills) alkalmazhass (a 11. szinttől a 14. szintig nyílnak meg).\n* Alkoss csapatot barátaiddal a (a [csapat](/party) menüre kattintva), hogy felelős maradhass feladataidért és küldetés tekercseket kaphass.\n* Győzz le szörnyeket és gyűjts tárgyakat a [küldetéseken].(http://habitica.wikia.com/wiki/Quests) (A 15. szinten kapsz egy küldetést).", "overviewQuestions": "Kérdésed van? Nézd meg [GYIK oldalunkat](/static/faq/)! Ha a kérdésedet itt nem találod, további segítségért fordulj a [Habitica Help Guild](/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a) nevű céhhez.\n\nSok szerencsét a feladataidhoz!" } diff --git a/website/common/locales/hu/quests.json b/website/common/locales/hu/quests.json index 0a38b7aa2c..79579de012 100644 --- a/website/common/locales/hu/quests.json +++ b/website/common/locales/hu/quests.json @@ -1,129 +1,130 @@ { "quests": "Küldetések", "quest": "küldetés", - "whereAreMyQuests": "Küldetések megtalálhatóak a saját oldalukon! Kattints a Tárgylista -> Küldetésekre, hogy megtaláld őket.", + "whereAreMyQuests": "Küldetések megtalálhatóak a saját oldalukon! Kattints a Tárgylista -> Küldetések menüre, hogy megtaláld őket.", "yourQuests": "Küldetéseid", "questsForSale": "Eladó küldetések", - "petQuests": "Háziállat és Hátas Küldetések", - "unlockableQuests": "Feloldható Küldetések", + "petQuests": "Háziállat és hátas küldetések", + "unlockableQuests": "Feloldható küldetések", "goldQuests": "Kasztmester küldetéssorozat", - "questDetails": "Küldetés Részletei", - "questDetailsTitle": "Quest Details", - "questDescription": "Quests allow players to focus on long-term, in-game goals with the members of their party.", + "questDetails": "Küldetés részletei", + "questDetailsTitle": "Küldetés részletei", + "questDescription": "A küldetések segítenek a játékosoknak hosszú távú, játékbeli céljaik elérésében csapatjuk többi tagjának segítségével.", "invitations": "Meghívások", "completed": "Befejezve!", - "rewardsAllParticipants": "Jutalom az Küldetés összes résztvevőjének", - "rewardsQuestOwner": "Extra Jutalom a Küldetés tulajdonosának", - "questOwnerReceived": "A Küldetés tulajdonosa még kapott", - "youWillReceive": "Amit kaptál", - "questOwnerWillReceive": "A küldetés tulajdonosa még kapni fog", + "rewardsAllParticipants": "Jutalom az küldetés összes résztvevőjének", + "rewardsQuestOwner": "További jutalom a küldetés tulajdonosának", + "questOwnerReceived": "A küldetés tulajdonosa továbbá kapott", + "youWillReceive": "Kapni fogsz", + "questOwnerWillReceive": "A küldetés tulajdonosa továbbá kapni fog", "youReceived": "Amit kaptál", - "dropQuestCongrats": "Gratulálunk ennek a küldetés-tekercsnek az elnyeréséhez! Meghívhatod a csapatodat a küldetés elkezdéséhez most, vagy visszajöhetsz később a Leltár > Küldetések menüpontban.", - "questSend": "Clicking \"Invite\" will send an invitation to your party members. When all members have accepted or denied, the quest begins. See status under Social > Party.", - "questSendBroken": "A \"Meghívás\" gombra kattintva hívhatod meg a csapatod tagjait... Amikor minden tag elfogadta vagy elutasította a meghívást, elkezdődik a küldetés. Az aktuális állapotot a Közösség > Csapat alatt ellenőrizheted.", - "inviteParty": "Csapat Meghívása Küldetéshez", + "dropQuestCongrats": "Gratulálunk ennek a küldetés tekercsnek az elnyeréséhez! Meghívhatod a csapatodat a küldetés elkezdéséhez most, vagy visszajöhetsz később a Tárgylista > Küldetések menüpontban.", + "questSend": "A \"Meghívás\" gombra kattintva hívhatod meg a csapatod tagjait. Amikor minden tag elfogadta vagy elutasította a meghívást, elkezdődik a küldetés. Az aktuális állapotot a Közösség > Csapat menüben ellenőrizheted.", + "questSendBroken": "A \"Meghívás\" gombra kattintva hívhatod meg a csapatod tagjait... Amikor minden tag elfogadta vagy elutasította a meghívást, elkezdődik a küldetés. Az aktuális állapotot a Közösség > Csapat menüben ellenőrizheted.", + "inviteParty": "Csapat meghívása küldetéshez", "questInvitation": "Küldetés meghívás:", - "questInvitationTitle": "Küldetés Meghívás", + "questInvitationTitle": "Küldetés meghívás", "questInvitationInfo": "Meghívás <%= quest %> küldetéshez", - "invitedToQuest": "You were invited to the Quest <%= quest %>", + "invitedToQuest": "Meghívtak <%= quest %> küldetéshez", "askLater": "Kérdezd később", "questLater": "Küldetés később", "buyQuest": "Küldetés megvásárlása", "accepted": "Elfogadva", - "declined": "Declined", + "declined": "Elutasítva", "rejected": "Visszautasítva", "pending": "Várakozik", - "questStart": "Miután minden tag elfogadta, vagy elutasította, a küldetés elkezdődik. Csak azok vehetnek részt benne, akik az \"elfogad\" opciót választották, és a tárgyakat is csak ők kapják meg. Ha egy tag túl sokáig várakozik (inaktív?), akkor indíthatsz nélkülük az \"Indít\" gomb megnyomásával.", - "questStartBroken": "Once all members have either accepted or rejected, the quest begins... Only those that clicked \"accept\" will be able to participate in the quest and receive the drops... If members are pending too long (inactive?), the quest owner can start the quest without them by clicking \"Begin\"... The quest owner can also cancel the quest and regain the quest scroll by clicking \"Cancel\"...", - "questCollection": "+ <%= val %> küldetéshez szükséges tárgy megszerezve", + "questStart": "Miután minden tag elfogadta, vagy elutasította, a küldetés elkezdődik. Csak azok vehetnek részt ebben, akik az \"elfogad\" opciót választották, és a jutalmat is csak ők kapják meg. Ha egy tag túl sokáig várakozik (inaktív?), a küldetés tulajdonosa elindíthatja a küldetést az \"Indít\" gomb megnyomásával. A küldetés tulajdonosa meg is szakíthatja a küldetést a \"Mégse\" gombra kattintva, ezzel visszakapva a tekercset.", + "questStartBroken": "Miután minden tag elfogadta, vagy elutasította, a küldetés elkezdődik... Csak azok vehetnek részt ebben, akik az \"elfogad\" opciót választották, és a jutalmat is csak ők kapják meg... Ha egy tag túl sokáig várakozik (inaktív?), a küldetés tulajdonosa elindíthatja a küldetést nélkülük az \"Indít\" gomb megnyomásával... A küldetés tulajdonosa meg is szakíthatja a küldetést a \"Mégse\" gombra kattintva, ezzel visszakapva a tekercset...", + "questCollection": "+ <%= val %> küldetéshez szükséges tárgy(ak) megszerezve", "questDamage": "+ <%= val %> sebzés a főellenség ellen", "begin": "Indít", - "bossHP": "Boss HP", + "bossHP": "Főellenség ÉE", "bossStrength": "Főellenség ereje", - "rage": "Harag", - "collect": "Gyűjts be", - "collected": "Begyűjtve", + "rage": "Őrjöngés", + "collect": "Gyűjtsd össze", + "collected": "Összegyűjtve", "collectionItems": "<%= number %> <%= items %>", - "itemsToCollect": "Beszerzendő Tárgyak", - "bossDmg1": "Each completed Daily and To-Do and each positive Habit hurts the boss. Hurt it more with redder tasks or Brutal Smash and Burst of Flames. The boss will deal damage to every quest participant for every Daily you've missed (multiplied by the boss's Strength) in addition to your regular damage, so keep your party healthy by completing your Dailies! All damage to and from a boss is tallied on cron (your day roll-over).", - "bossDmg2": "Csak a résztvevők harcolnak a főellenséggel és ők osztják meg a küldetés zsákmányát is.", - "bossDmg1Broken": "Each completed Daily and To-Do and each positive Habit hurts the boss... Hurt it more with redder tasks or Brutal Smash and Burst of Flames... The boss will deal damage to every quest participant for every Daily you've missed (multiplied by the boss's Strength) in addition to your regular damage, so keep your party healthy by completing your Dailies... All damage to and from a boss is tallied on cron (your day roll-over)...", - "bossDmg2Broken": "Csak a résztvevők harcolnak a főellenséggel és ők osztják meg a küldetés zsákmányát is...", - "tavernBossInfo": "Complete Dailies and To-Dos and score positive Habits to damage the World Boss! Incomplete Dailies fill the Rage Bar. When the Rage bar is full, the World Boss will attack an NPC. A World Boss will never damage individual players or accounts in any way. Only active accounts not resting in the Inn will have their tasks tallied.", - "tavernBossInfoBroken": "Complete Dailies and To-Dos and score positive Habits to damage the World Boss... Incomplete Dailies fill the Exhaust Strike Bar... When the Exhaust Strike bar is full, the World Boss will attack an NPC... A World Boss will never damage individual players or accounts in any way... Only active accounts not resting in the Inn will have their tasks tallied...", - "bossColl1": "To collect items, do your positive tasks. Quest items drop just like normal items; you can monitor your quest item drops by hovering over the quest progress icon.", - "bossColl2": "Csak résztvevők kapják meg a tárgyat és részesülnek a kihívás zsákmányából.", - "bossColl1Broken": "To collect items, do your positive tasks... Quest items drop just like normal items; you can monitor your quest item drops by hovering over the quest progress icon...", - "bossColl2Broken": "Only participants can collect items and share in the quest loot...", + "itemsToCollect": "Beszerzendő tárgyak", + "bossDmg1": "Minden elvégzett napi feladat, tennivaló és pozitív szokás sebzést okoz a főellenségnek. A piros feladatok, brutális zúzás és lángcsóva nagyobb sebzést okoznak neki. A főellenség a küldetés minden résztvevőjét sebezni fogja minden elmulasztott napi feladatért (megszorozva a főellenség erejével), a normál sebzés mellé, ezért végezd el a napi feladataidat hogy a csapatod egészséges maradjon! Minden sebzés a nap végén történik (új nap kezdetén).", + "bossDmg2": "Csak a küldetés résztvevői küzdenek meg a főellenséggel és csak ők részesülnek a küldetés zsákmányában.", + "bossDmg1Broken": "Minden elvégzett napi feladat, tennivaló és pozitív szokás sebzést okoz a főellenségnek... A piros feladatok, brutális zúzás és lángcsóva nagyobb sebzést okoznak neki... A főellenség a küldetés minden résztvevőjét sebezni fogja minden elmulasztott napi feladatért (megszorozva a főellenség erejével), a normál sebzés mellé, ezért végezd el a napi feladataidat hogy a csapatod egészséges maradjon... Minden sebzés a nap végén történik (új nap kezdetén)...", + "bossDmg2Broken": "Csak a küldetés résztvevői küzdenek meg a főellenséggel és csak ők részesülnek a küldetés zsákmányában...", + "tavernBossInfo": "Teljesítsd napi feladataidat, tennivalóidat és pozitív szokásaidat ezzel sebzést okozva a világellenségnek. El nem végzett feladatok feltöltik az őrjöngés sávját. Ha ez betelik, a világellenség megtámad egy NJK-t. A világellenség soha semmilyen formában nem támad meg játékosokat. Csak olyan aktív felhasználók feladatai számítanak bele a sebzésbe, akik nem a fogadóban pihennek. ", + "tavernBossInfoBroken": "Teljesítsd napi feladataidat, tennivalóidat és pozitív szokásaidat ezzel sebzést okozva a világellenségnek... El nem végzett feladatok feltöltik az őrjöngés sávját... Ha ez betelik, a világellenség megtámad egy NJK-t... A világellenség soha semmilyen formában nem támad meg játékosokat... Csak olyan aktív felhasználók feladatai számítanak bele a sebzésbe, akik nem a fogadóban pihennek...", + "bossColl1": "Tárgyak gyűjtéséhez végezd el a pozitív feladataidat. Küldetés tárgyak ugyanúgy esnek, mint normál tárgyak; ezeket figyelemmel tudod kísérni ha az egeredet a küldetés állapota ikon fölé viszed.", + "bossColl2": "Csak a küldetés résztvevői tudnak tágyakat gyűjteni és részesülnek a kihívás zsákmányából.", + "bossColl1Broken": "Tárgyak gyűjtéséhez végezd el a pozitív feladataidat... Küldetés tárgyak ugyanúgy esnek, mint normál tárgyak; ezeket figyelemmel tudod kísérni ha az egeredet a küldetés állapota ikon fölé viszed...", + "bossColl2Broken": "Csak a küldetés résztvevői tudnak tágyakat gyűjteni és részesülnek a kihívás zsákmányából.", "abort": "Megszakít", - "leaveQuest": "Küldetés Elhagyása", - "sureLeave": "Biztos, hogy kilépsz az aktuális küldetésből? Ezzel az eddig elért küldetés eredmények is elvesznek.", - "questOwner": "Küldetés tulajdonos", - "questTaskDamage": "+ <%= damage %> pending damage to boss", + "leaveQuest": "Küldetés elhagyása", + "sureLeave": "Biztos, hogy kilépsz az aktuális küldetésből? Ezzel az eddig elért küldetés eredményeid is elvesznek.", + "questOwner": "Küldetés tulajdonosa", + "questTaskDamage": "+ <%= damage %> függőben lévő sebzés a főellenségnek", "questTaskCollection": "<%= items %> tárgyat gyűjtöttél ma", - "questOwnerNotInPendingQuest": "A küldetés tulajdonosa kilépett a küldetésből és már nem tudja elindítani. Ajánlott, hogy lépj vissza te is. A küldetés tulajdonosánál marad a küldetés tekercse.", - "questOwnerNotInRunningQuest": "A küldetés tulajdonosa kilépett a küldetésből. Megszakíthatod a küldetést, ha kell. Egyébként hagyhatod, hogy menjen tovább és a maradék résztvevők megkapják a küldetés jutalmát amikor a küldetés véget ér.", - "questOwnerNotInPendingQuestParty": "A küldetés tulajdonosa elhagyta a csapatot és már nem tudja elkezdeni a küldetést. Azt ajánljuk, hogy szakítsd meg most. A küldetés tulajdonosa megtartja a küldetés tekercset.", - "questOwnerNotInRunningQuestParty": "A küldetés tulajdonosa elhagyta a csapatot. Abbahagyhatod a küldetést ha akarod, de akár folytathatod is és az összes megmaradt résztvevő megkapja a küldetés jutalmát, amint az befejeződött.", + "questOwnerNotInPendingQuest": "A küldetés tulajdonosa kilépett a küldetésből és már nem tudja elindítani. Ajánlott, hogy te is lépj vissza. A küldetés tulajdonosánál marad a küldetés tekercs.", + "questOwnerNotInRunningQuest": "A küldetés tulajdonosa kilépett a küldetésből. Ha akarod meg tudod szakítani, de hagyhatod is hogy tovább folytatódjon. A küldetés végén a megmaradt résztvevők megkapják a küldetéshez járó jutalmat.", + "questOwnerNotInPendingQuestParty": "A küldetés tulajdonosa elhagyta a csapatot és már nem tudja elkezdeni a küldetést. Ajánlott, hogy te is lépj vissza. A küldetés tulajdonosa visszakapja a küldetés tekercset.", + "questOwnerNotInRunningQuestParty": "A küldetés tulajdonosa elhagyta a csapatot. Ha akarod meg tudod szakítani, de hagyhatod is hogy tovább folytatódjon. A küldetés végén a megmaradt résztvevők megkapják a küldetéshez járó jutalmat.", "questParticipants": "Résztvevők", "scrolls": "Küldetés tekercsek", "noScrolls": "Nincsenek küldetés tekercseid.", - "scrollsText1": "Küldetést csak csapatban csinálhatsz. Ha egyedül szeretnéd csinálni, akkor", + "scrollsText1": "Küldetéshez csapatra van szükség. Ha egyedül szeretnéd csinálni, akkor", "scrollsText2": "hozz létre egy üres csapatot", - "scrollsPre": "Még nem tártad fel ezt a küldetést!", - "alreadyEarnedQuestLevel": "Ezt a küldetést már elnyerted a(z) <%= level %>. szint elérésével.", - "alreadyEarnedQuestReward": "Már elnyerted ezt a küldetést, mivel megcsináltad a következő küldetést: <%= priorQuest %>.", + "scrollsPre": "Még nem oldottad fel ezt a küldetést!", + "alreadyEarnedQuestLevel": "Már kiérdemelted ezt a küldetést, mivel elérted a következő szintet: <%= level %>.", + "alreadyEarnedQuestReward": "Már kiérdemelted ezt a küldetést, mivel befejezted a következő küldetést: <%= priorQuest %>.", "completedQuests": "Ezeken a küldetéseken vett részt:", - "mustComplete": "Először teljesítened kell a küldetést <%= quest %>.", + "mustComplete": "Először teljesítened kell a következő küldetést: <%= quest %>.", "mustLevel": "<%= level %> szintűnek kell lenned, hogy elkezdhesd ezt a küldetést.", "mustLvlQuest": "<%= level %> szintűnek kell lenned, hogy megvehesd ezt a küldetést.", "mustInviteFriend": "Ahhoz, hogy elnyerd ezt a küldetést, hívj meg egy barátot a csapatodba. Meghívsz most valakit?", - "unlockByQuesting": "To unlock this quest, complete <%= title %>.", - "questConfirm": "Are you sure? Only <%= questmembers %> of your <%= totalmembers %> party members have joined this quest! Quests start automatically when all players have joined or rejected the invitation.", - "sureCancel": "Biztosan meg akarod szakítani ezt a küldetést? Minden meghívási beleegyezés el fog veszni. A küldetés tulajdonosa megtartja a küldetés tekercset.", - "sureAbort": "Biztosan el akarod hagyni ezt a küldetést? Ez meg fogja szakítani mindenkinek a csapatodban, és minden haladás el fog veszni. A küldetés tekercs vissza fog kerülni a küldetés tulajdonosához.", + "unlockByQuesting": "Ahhoz, hogy felold ezt a küldetést, teljesítened kell: <%= title %>.", + "questConfirm": "Biztos vagy benne? Csak <%= questmembers %> a <%= totalmembers %> tagból csatlakozott ehhez a küldetéshez! Küldetések automatikusan elindulnak ha mindenki elfogadta vagy elutasította a meghívást.", + "sureCancel": "Biztosan meg akarod szakítani ezt a küldetést? Minden meghívási beleegyezés el fog veszni. A küldetés tulajdonosánál marad a küldetés tekercs.", + "sureAbort": "Biztosan meg akarod szakítani ezt a küldetést? Ez mindenkinek meg fogja szakítani a csapatodban, és eddig elért küldetés eredmények is elvesznek. A küldetés tulajdonosa visszakapja a küldetés tekercset.", "doubleSureAbort": "Tuti biztos vagy benne? Győződj meg róla, hogy nem fognak a többiek utálni!", - "questWarning": "Ha új játékosok csatlakoznak a csapathoz a küldetés indulása előtt, akkor ők is kapnak meghívót. Egyébként, ha a küldetés indulása után csatlakozik valaki, az nem tud részt venni benne.", - "questWarningBroken": "If new players join the party before the quest starts, they will also receive an invitation... However once the quest has started, no new party members can join the quest...", + "questWarning": "Ha új játékosok csatlakoznak a csapathoz a küldetés indulása előtt, akkor ők is kapnak meghívót. Azonban, ha a küldetés indulása után csatlakozik valaki, az nem tud részt venni benne.", + "questWarningBroken": "Ha új játékosok csatlakoznak a csapathoz a küldetés indulása előtt, akkor ők is kapnak meghívót... Azonban, ha a küldetés indulása után csatlakozik valaki, az nem tud részt venni benne...", "bossRageTitle": "Örjöngés", - "bossRageDescription": "Ha ez a sáv megtelik, akkor a Főellenség egy speciális támadást szabadít ránk.", + "bossRageDescription": "Ha ez a sáv megtelik, akkor a főellenség egy speciális támadást hajt végre!", "startAQuest": "KEZDD EL A KÜLDETÉST", - "startQuest": "Kezdd el a küldetést", + "startQuest": "Küldetés elkezdése", "whichQuestStart": "Melyik küldetést szeretnéd elkezdeni?", "getMoreQuests": "Szerezz több küldetést", - "unlockedAQuest": "Feltártál egy küldetést!", - "leveledUpReceivedQuest": "Szintet léptél a <%= level %> Szint és kaptál egy Küldetés tekercset.", - "questInvitationDoesNotExist": "Nem lett még Küldetés meghívó kiküldve.", - "questInviteNotFound": "Nincs Küldetés meghívód.", - "guildQuestsNotSupported": "Céhet nem lehet meghívni küldetésre.", - "questNotOwned": "Nem rendelkezel ezzel a Küldetés tekerccsel.", - "questNotGoldPurchasable": "A \"<%= key %>\" Küldetést nem lehet megvenni aranyért.", - "questLevelTooHigh": "A <%= level %> Szinten kell lenned, hogy elkezdhesd ezt a Küldetést.", - "questAlreadyUnderway": "A csapatod már Küldetésen van. Próbálkozz újra, a az aktuális Küldetés befejeződött.", - "questAlreadyAccepted": "Már elfogadtad ezt a Küldetés meghívót.", - "noActiveQuestToLeave": "Nincs aktuális Küldetés, melyből kiléphetnél.", - "questLeaderCannotLeaveQuest": "A Küldetés vezetője nem léphet ki a Küldetésből.", - "notPartOfQuest": "Nem veszel részt ezen a Küldetésen.", - "youAreNotOnQuest": "You're not on a quest", - "noActiveQuestToAbort": "Nincs aktuális Küldetés, amit meg lehetne szakítani.", - "onlyLeaderAbortQuest": "Csak a csapat vagy a Küldetés vezetője szakíthatja meg a Küldetést.", - "questAlreadyRejected": "Már elutasítottad ezt a Küldetés-meghívót.", - "cantCancelActiveQuest": "You can not cancel an active quest, use the abort functionality.", - "onlyLeaderCancelQuest": "Only the group or quest leader can cancel the quest.", - "questNotPending": "Nincs Küldetés, amit el lehetne indítani.", - "questOrGroupLeaderOnlyStartQuest": "Only the quest leader or group leader can force start the quest", + "unlockedAQuest": "Feloldottál egy küldetést!", + "leveledUpReceivedQuest": "Szintet léptél a <%= level %> szintre és kaptál egy küldetés tekercset.", + "questInvitationDoesNotExist": "Még nem lett küldetés meghívó kiküldve.", + "questInviteNotFound": "Nincs meghívód küldetéshez.", + "guildQuestsNotSupported": "Céhet nem lehet meghívni küldetéshez.", + "questNotOwned": "Nem rendelkezel ezzel a küldetés tekerccsel.", + "questNotGoldPurchasable": "A \"<%= key %>\" küldetést nem lehet aranyért megvenni.", + "questNotGemPurchasable": "A \"<%= key %>\" küldetés nem vásárolható meg drágakövekkel.", + "questLevelTooHigh": "<%= level %> szinten kell lenned, hogy elkezdhesd ezt a küldetést.", + "questAlreadyUnderway": "A csapatod már küldetésen van. Próbálkozz újra, amikor az aktuális küldetés befejeződött.", + "questAlreadyAccepted": "Már elfogadtad ezt a küldetés meghívót.", + "noActiveQuestToLeave": "Nincs aktuális küldetés, amelyből kiléphetnél.", + "questLeaderCannotLeaveQuest": "A küldetés vezetője nem léphet ki a küldetésből.", + "notPartOfQuest": "Nem veszel részt ezen a küldetésen.", + "youAreNotOnQuest": "Nem veszel részt egy küldetésen sem.", + "noActiveQuestToAbort": "Nincs aktuális küldetés, amit meg lehetne szakítani.", + "onlyLeaderAbortQuest": "Csak a csapat vagy a küldetés vezetője szakíthat meg egy küldetést.", + "questAlreadyRejected": "Már elutasítottad ezt a küldetés meghívót.", + "cantCancelActiveQuest": "Nem tudsz visszavonni egy aktív küldetést, helyette használd a megszakítás funkciót.", + "onlyLeaderCancelQuest": "Csak a csapat vagy a küldetés vezetője vonhatja vissza a küldetést.", + "questNotPending": "Nincs küldetés, amit el lehetne indítani.", + "questOrGroupLeaderOnlyStartQuest": "Csak a csapat vagy a küldetés vezetője indíthatja el kényszerítve a küldetést.", "createAccountReward": "Fiók létrehozása", - "loginIncentiveQuest": "To unlock this quest, check in to Habitica on <%= count %> different days!", - "loginIncentiveQuestObtained": "Kiérdemelted ezt a Küldetést, mivel <%= count %> napon keresztül bejelentkeztél a Habiticába!", + "loginIncentiveQuest": "Hogy fel tudd oldani ezt a küldetést, <%= count %> napon keresztül jelentkezz be a Habitica-ba.", + "loginIncentiveQuestObtained": "Kiérdemelted ezt a küldetést, mivel <%= count %> napon keresztül bejelentkeztél a Habitica-ba!", "loginReward": "<%= count %> bejelentkezés", - "createAccountQuest": "You received this quest when you joined Habitica! If a friend joins, they'll get one too.", - "questBundles": "Leárazott Küldetéscsomag", - "buyQuestBundle": "Vásárolj Küldetéscsomagot!", - "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!", - "pendingDamage": "<%= damage %> pending damage", - "pendingDamageLabel": "pending damage", - "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health", - "rageAttack": "Rage Attack:", - "bossRage": "<%= currentRage %> / <%= maxRage %> Rage", - "rageStrikes": "Rage Strikes" + "createAccountQuest": "Ezt a küldetést a Habitica-hoz való csatlakozás után kaptad! Ha a barátaid is csatlakoznak, ők is megkapják.", + "questBundles": "Leárazott küldetéscsomag", + "buyQuestBundle": "Vásárolj küldetéscsomagot", + "noQuestToStart": "Nincs küldetés amit el tudnál kezdeni? Nézd meg a küldetés boltot a piacon új megjelenésekért!", + "pendingDamage": "<%= damage %> függőben lévő sebzés", + "pendingDamageLabel": "függőben lévő sebzés", + "bossHealth": "<%= currentHealth %> / <%= maxHealth %> életerő", + "rageAttack": "Őrjöngő támadás:", + "bossRage": "<%= currentRage %> / <%= maxRage %> Őrjöngés", + "rageStrikes": "Őrjöngéssel támad" } \ No newline at end of file diff --git a/website/common/locales/hu/settings.json b/website/common/locales/hu/settings.json index dad5508183..94cf7f2261 100644 --- a/website/common/locales/hu/settings.json +++ b/website/common/locales/hu/settings.json @@ -3,7 +3,7 @@ "language": "Nyelv", "americanEnglishGovern": "Ha a fordításokban ellentmondás alakul ki, akkor az amerikai angol verzió a mérvadó.", "helpWithTranslation": "Szeretnél a Habitica fordításában segíteni? Nézd meg ezt a Trello kártyát.", - "showHeaderPop": "Avatar, életerő/tapasztalat sávok és csapat mutatása.", + "showHeaderPop": "Avatár, életerő/tapasztalat sávok és csapat mutatása.", "stickyHeader": "Rögzített fejléc", "stickyHeaderPop": "A képernyő tetejére rögzíti a fejlécet. Ha nincs kijelölve, akkor továbbgördül a képernyőn.", "newTaskEdit": "Új feladatok megnyitása szerkesztő módban", @@ -32,7 +32,7 @@ "resetAccPop": "Kezdj új kalandot, amivel elveszted az összes szinted, aranyad, felszerelésed, előzményeid és feladataid.", "deleteAccount": "Fiók törlése", "deleteAccPop": "Habitica fiókod törlése és megszüntetése.", - "feedback": "If you'd like to give us feedback, please enter it below - we'd love to know what you liked or didn't like about Habitica! Don't speak English well? No problem! Use the language you prefer.", + "feedback": "Ha szeretnél nekünk visszajelzést küldeni, írd be az alábbi mezőbe - szeretnénk tudni hogy mi tetszett és mi nem tetszett neked a Habitica-ban! Nem beszélsz jól angolul? Semmi probléma! Használd azt a nyelved amelyiket szeretnéd.", "qrCode": "QR kód", "dataExport": "Adatok exportálása", "saveData": "Néhány opció az adataid elmentéséhez.", @@ -49,10 +49,10 @@ "changeCustomDayStart": "Megváltoztatod az egyéni napkezdést?", "sureChangeCustomDayStart": "Biztosan meg akarod változtatni, mikor kezdődjön a nap?", "customDayStartHasChanged": "Egyéni napkezdés időpontja megváltozott.", - "nextCron": "A napi feladataid legközelebb akkor indulnak újra, amikor a Habitica-t <%= time %> után használod. Bizonyosodj meg róla, hogy ez előtt az idő előtt befejezed a napi feladataid.", + "nextCron": "A napi feladataid legközelebb akkor indulnak újra, amikor a Habitica-t <%= time %> után használod. Bizonyosodj meg róla, hogy ez előtt befejezed a napi feladataid.", "customDayStartInfo1": "A Habitica-n a napi feladataid újraindítása a saját időzónádon belül éjfélre van alapértelmezve. Ezt az időt itt tudod testreszabni.", "misc": "Egyéb", - "showHeader": "Mutasd a fejlécet", + "showHeader": "Fejléc mutatása", "changePass": "Jelszó megváltoztatása", "changeUsername": "Bejelentkezési név megváltoztatása", "changeEmail": "E-mail cím megváltoztatása", @@ -62,90 +62,90 @@ "confirmPass": "Új jelszó megerősítése", "newUsername": "Új bejelentkezési név", "dangerZone": "Veszélyzóna", - "resetText1": "VIGYÁZAT! Ez alapállapotba állítja a fiókod bizonyos részeit. Ezt alapvetően nem ajánljuk, de bizonyos embereknek hasznos lehet az elején, miután még csak egy rövid ideig játszott.", + "resetText1": "VIGYÁZAT! Ez alapállapotba állítja a fiókod bizonyos részeit. Ezt alapvetően nem ajánljuk, de bizonyos embereknek hasznos lehet az elején, miután még csak egy rövid ideig használták az oldalt.", "resetText2": "El fogod veszíteni az összes szintedet, aranyadat és tapasztalati pontodat. Minden feladatod (kivéve a kihívásokhoz tartozóak) véglegesen törlődik az előzményekkel együtt. Minden tárgyadat elveszíted, de ezeket később visszavásárolhatod a korlátozott példányszámú tárgyak és a rejtélyes tárgyak esetében is, amiket most birtokolsz (megfelelő kasztba kell tartoznod, hogy a kaszt-specifikus tárgyakat megvehesd). A jelenlegi kasztod, háziállataid és hátasaid megmaradnak. Esetleg jobban jársz az újjászületés gömbjével, mely biztonságosabb opció és megőrzi a feladataidat is.", - "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 \"<%= magicWord %>\" into the text box below.", + "deleteLocalAccountText": "Biztos vagy benne? Ezzel örökre törlődik a felhasználói fiókod és ezt visszaállítani nem lehet! A Habitica használatához újra regisztrálnod kell. Összegyűjtött vagy elköltött drágakövek nem lesznek visszatérítve. Ha teljesen biztos vagy benne, akkor írd be a jelszavadat az alábbi mezőbe.", + "deleteSocialAccountText": "Biztos vagy benne? Ezzel örökre törlődik a felhasználói fiókod és ezt visszaállítani nem lehet! A Habitica használatához újra regisztrálnod kell. Összegyűjtött vagy elköltött drágakövek nem lesznek visszatérítve. Ha teljesen biztos vagy benne, akkor írd be \"<%= magicWord %>\" az alábbi mezőbe.", "API": "API", "APIv3": "API v3", "APIText": "Másold ki ezt, külső alkalmazások használatához. Egyébiránt úgy gondolj az API kulcsodra, mint egy jelszóra és ne oszd meg senkivel nyilvánosan. Előfordulhat, hogy a felhasználói azonosítódat kérik, de az API kulcsodat soha ne írd be sehova, ahol mások esetleg láthatják, még a Githubra se.", "APIToken": "API kulcs (ez egy jelszó - lásd a figyelmeztetést lejjebb)", "showAPIToken": "API kulcs mutatása", "hideAPIToken": "API kulcs elrejtése", - "APITokenWarning": "If you need a new API Token (e.g., if you accidentally shared it), email <%= hrefTechAssistanceEmail %> with your User ID and current Token. Once it is reset you will need to re-authorize everything by logging out of the website and mobile app and by providing the new Token to any other Habitica tools that you use.", + "APITokenWarning": "Ha szükséged van új API kulcsra (pl: véletlenül megosztottad), küldj egy e-mailt a <%= hrefTechAssistanceEmail %> címre a felhasználói azonosítóddal és a jelenlegi kulcsoddal együtt. Ha a kulcs megváltozik, akkor mindent újra engedélyezned kell azzal hogy az oldalból valamint az alkalmazásból is kilépsz, valamint az új kulcsot megadod minden olyan Habitca eszköznek amiket használsz.", "thirdPartyApps": "Harmadik féltől származó alkalmazások", - "dataToolDesc": "A webpage that shows you certain information from your Habitica account, such as statistics about your tasks, equipment, and skills.", + "dataToolDesc": "Egy weboldal ami megmutat bizonyos információkat a Habitica-n lévő felhasználói fiókoddal kapcsolatban, mint statisztikák a feladataidról, felszerelések és varázslatok.", "beeminder": "Beeminder", - "beeminderDesc": "Let Beeminder automatically monitor your Habitica To-Dos. You can commit to maintaining a target number of To-Dos completed per day or per week, or you can commit to gradually reducing your remaining number of uncompleted To-Dos. (By \"commit\" Beeminder means under threat of paying actual money! But you may also just like Beeminder's fancy graphs.)", + "beeminderDesc": "Hagyd hogy a Beeminder automatikusan ellenőrizze a a Habitica-n lévő tennivalóidat. Elkötelezheted magad egy bizonyos számú tennivaló mellett minden nap vagy minden héten, vagy pedig folyamatosan csökkentheted a be nem fejezett tennivalóid számát. (\"Elkötelezés\" mellett azt értjük hogy lehet hogy pénzzel kell fizetned érte! Vagy csak élvezheted a Beeminder remek grafikonjait.)", "chromeChatExtension": "Chrome chat kiegészítő", - "chromeChatExtensionDesc": "The Chrome Chat Extension for Habitica adds an intuitive chat box to all of habitica.com. It allows users to chat in the Tavern, their party, and any guilds they are in.", - "otherExtensions": "Egyéb Kiegészítők", - "otherDesc": "Find other apps, extensions, and tools on the Habitica wiki.", + "chromeChatExtensionDesc": "A Chrome-hoz tartozó chat kiegészítő egy beépített chat ablak ami magába foglalja az egész habitica.com-t. Ezáltal a felhasználó üzeneteket tud küldeni a fogadóba, a csapatába vagy az olyan céhekbe amihez már csatlakozott.", + "otherExtensions": "Egyéb kiegészítők", + "otherDesc": "Böngéssz több alakalmazás, kiegészítő valamint eszközök között a Habitica wiki oldalán.", "resetDo": "Csináld, indítsd újra a fiókomat!", - "resetComplete": "Visszaállítás kész.", + "resetComplete": "Visszaállítás kész!", "fixValues": "Értékek helyreállítása", - "fixValuesText1": "Ha egy hibával találkoztál, vagy te magad hibáztál, ami igazságtalanul megváltoztatta a karaktered értékeit (sebzés, amit nem kellett volna elszenvedned, arany, amiért nem dolgoztál meg, stb.), akkor a számokat kijavíthatod itt. Igen, ezzel csalhatsz is: használd ezt a funkciót bölcsen, különben szabotálod a saját fejlődésed.", - "fixValuesText2": "Note that you cannot restore Streaks on individual tasks here. To do that, edit the Daily and go to Advanced Settings, where you will find a Restore Streak field.", + "fixValuesText1": "Ha egy hibával találkoztál, vagy elkövettél egy hibát mi igazságtalanul megváltoztatta a karaktered értékeit (sebzés, amit nem kellett volna elszenvedned, arany, amiért nem dolgoztál meg, stb.), akkor itt kijavíthatod ezeket az értékeket. Igen, ezzel csalhatsz is: használd ezt a funkciót bölcsen, különben szabotálod a saját fejlődésed.", + "fixValuesText2": "Jegyezd me, hogy itt nem tudod visszaállítani a feladatok szériáit. Hogy ezt megtedd, lépj be az adott napi feladatba, menj a haladó beállításokra, ahol megtalálod a széria visszaállítása mezőt.", "disabledWinterEvent": "A téli csodaország 4. része alatt kikapcsolva (mivel a jutalmakat arannyal megvásárolhatod).", "fix21Streaks": "21 napos szériák", "discardChanges": "Változtatások elvetése", "deleteDo": "Csináld, töröld a fiókomat!", "enterNumber": "Kérlek üss be egy 0 és 24 közötti számot", "fillAll": "Kérlek töltsd ki a az össszes mezőt", - "invalidPasswordResetCode": "The supplied password reset code is invalid or has expired.", - "passwordChangeSuccess": "Your password was successfully changed to the one you just chose. You can now use it to access your account.", - "passwordSuccess": "A jelszó sikeresen módosítva", + "invalidPasswordResetCode": "A megadott jelszó visszaállítási kód nem érvényes vagy lejárt.", + "passwordChangeSuccess": "A jelszavadat sikeresen megváltoztattad. Most már használhatod hogy belépj a fiókodba.", + "passwordSuccess": "Jelszó sikeresen módosítva", "usernameSuccess": "Bejelentkezési név sikeresen módosítva", "emailSuccess": "Az e-mail cím sikeresen módosítva", - "detachSocial": "De-register <%= network %>", - "detachedSocial": "Successfully removed <%= network %> authentication from your account", + "detachSocial": "<%= network %> eltávolítása", + "detachedSocial": "Sikeresen eltávolítottad <%= network %> hitelesítést a fiókodból", "addedLocalAuth": "Helyi hitelesítés sikeresen hozzáadva", "data": "Adatok", "exportData": "Adatok exportálása", "usernameOrEmail": "Bejelentkezési név vagy e-mail cím", "email": "E-mail", - "registerWithSocial": "Register with <%= network %>", - "registeredWithSocial": "Registered with <%= network %>", - "loginNameDescription": "This is what you use to log in to Habitica. To change it, use the form below. If instead you want to change the Display Name that appears on your avatar and in chat messages, go to the User Icon > Profile and click the Edit button.", + "registerWithSocial": "Regisztráció <%= network %> fiókkal", + "registeredWithSocial": "Regisztrált <%= network %> fiókkal", + "loginNameDescription": "Ezzel jelentkezel be a Habitica-ra. A megváltoztatáshoz használd az alábbi mezőket. Ha ehelyett csak a nyilvános nevedet szeretnéd megváltoztatni ami az avatárod mellett valamint az üzenőfalon található üzenetekben látható, kattints felhasználói ikonra, majd a profil menüre ezen belül pedig a szerkesztés gombra.", "emailNotifications": "E-mail értesítések", "wonChallenge": "Megnyertél egy kihívást!", "newPM": "Kaptál egy privát üzenetet", "newPMInfo": "<%= name %> új üzenetet küldött: <%= message %>", "sentGems": "Drágakövek elküldve!", "giftedGems": "Drágakövek ajándékozva", - "giftedGemsInfo": "<%= name %>megajándékozott <%= amount %>drágakővel", - "giftedGemsFull": "Üdv <%= username %>, <%= sender %>küldött neked <%= gemAmount %> drágakövet!", + "giftedGemsInfo": "<%= name %> megajándékozott <%= amount %> drágakővel", + "giftedGemsFull": "Üdv <%= username %>, <%= sender %> küldött neked <%= gemAmount %> drágakövet!", "giftedSubscription": "Előfizetés ajándékozva", - "giftedSubscriptionInfo": "<%= name %><%= months %>havi előfizetéssel ajándékozott meg", - "giftedSubscriptionFull": "Üdv <%= username %>, <%= sender %><%= monthCount %>havi előfizetést küldött neked!", - "giftedSubscriptionWinterPromo": "Hello <%= username %>, you received <%= monthCount %> months of subscription as part of our holiday gift-giving promotion!", + "giftedSubscriptionInfo": "<%= name %><%= months %> havi előfizetéssel ajándékozott meg", + "giftedSubscriptionFull": "Üdv <%= username %>, <%= sender %><%= monthCount %> havi előfizetést küldött neked!", + "giftedSubscriptionWinterPromo": "Hello <%= username %>, <%= monthCount %> havi előfizetést kaptál ajándékba az ünnepi ajándékozási kampány részeként!", "invitedParty": "Meghívva egy csapatba", "invitedGuild": "Meghívva egy céhbe", - "importantAnnouncements": "Reminders to check in to complete tasks and receive prizes", - "weeklyRecaps": "Summaries of your account activity in the past week (Note: this is currently disabled due to performance issues, but we hope to have this back up and sending e-mails again soon!)", - "onboarding": "Guidance with setting up your Habitica account", + "importantAnnouncements": "Emlékeztető hogy jelentkezz be és végezd el feladataidat jutalmakért", + "weeklyRecaps": "Összefoglaló az elmúlt heti aktivitásodról (Megjegyzés: ez a funkció jelenleg le van tiltva teljesítménybeli problémák miatt, de reméljük hogy hamarosan újra tudjuk indítani!)", + "onboarding": "Segítség fiókod felállításához", "questStarted": "A küldetésed elkezdődött", "invitedQuest": "Meghívva egy küldetésre", "kickedGroup": "Kirúgtak a csoportból", - "remindersToLogin": "Emlékeztetők a Habiticara történő bejelentkezésre", + "remindersToLogin": "Emlékeztetők a Habitica-ra történő bejelentkezésre", "subscribeUsing": "Feliratkozás a következőt használva:", "unsubscribedSuccessfully": "Sikeresen leiratkoztál!", - "unsubscribedTextUsers": "You have successfully unsubscribed from all Habitica emails. You can enable only the emails you want to receive from Settings > > Notifications (requires login).", - "unsubscribedTextOthers": "Ezentúl nem kapsz leveleket a Habiticatól.", - "unsubscribeAllEmails": "Pipáld ki hogyha le akarsz iratkozni az e-mailekről", + "unsubscribedTextUsers": "Sikeresen leiratkoztál minden Habitica-val kapcsolatos e-mailről. Engdélyezheted azokat az e-maileket, amiket továbbra is meg szeretnél kapni, a beállítások > értesítések menüben (bejelentkezés szükséges).", + "unsubscribedTextOthers": "Ezentúl nem kapsz leveleket a Habitica-tól.", + "unsubscribeAllEmails": "Pipáld ki hogy leiratkozz az e-mailekről", "unsubscribeAllEmailsText": "Ennek a mezőnek a kipipálásával elismerem, hogy megértettem azt, hogyha leiratkozom minden e-mailről, akkor a Habitica nem fog tudni értesíteni engem e-mail-en keresztül semmilyen fontos változásról az oldallal vagy a felhasználói fiókommal kapcsolatban.", - "unsubscribeAllPush": "Check to Unsubscribe from all Push Notifications", + "unsubscribeAllPush": "Pipáld ki hogy leiratkozz a push értesítésekről", "correctlyUnsubscribedEmailType": "Sikeresen leiratkoztál a(z) \"<%= emailType %>\" e-mailekről.", "subscriptionRateText": "Ismétlődő <%= price %> USD minden <%= months %> hónapban.", "recurringText": "ismétlődő", "benefits": "Előnyök", "coupon": "Kupon", "couponPlaceholder": "Írd be a kupon kódodat", - "couponText": "Időről időre vannak olyan események, ahol kupok kódokat osztunk ki, mellyel különleges felszerelések érhetőek el (például a Wondercon standunkon)", + "couponText": "Időről időre vannak olyan események, ahol kupok kódokat osztunk ki, mellyel különleges felszerelések érhetőek el. (például a Wondercon standunkon)", "apply": "Alkalmaz", "resubscribe": "Újra feliratkozás", "promoCode": "Promóciós kód", - "promoCodeApplied": "Promóciós kód elfogadva! Nézd meg a leltárad.", + "promoCodeApplied": "Promóciós kód elfogadva! Nézd meg a tárgylistádat.", "promoPlaceholder": "Írd be a promóciós kódodat", "displayInviteToPartyWhenPartyIs1": "Mutasd a \"Meghívás a csapatba\" gombot, amikor a csapatnak csak 1 tagja van.", "saveCustomDayStart": "Egyéni napkezdés mentése", @@ -156,21 +156,21 @@ "getCodes": "Kódok megszerzése", "webhooks": "Webkampók", "enabled": "Engedélyezve", - "webhookURL": "Webkampó URL", + "webhookURL": "Webhook URL", "invalidUrl": "érvénytelen url", - "invalidEnabled": "the \"enabled\" parameter should be a boolean.", - "invalidWebhookId": "the \"id\" parameter should be a valid UUID.", - "missingWebhookId": "The webhook's id is required.", - "invalidWebhookType": "\"<%= type %>\" is not a valid value for the parameter \"type\".", - "webhookBooleanOption": "\"<%= option %>\" must be a Boolean value.", - "webhookIdAlreadyTaken": "A webhook with the id <%= id %> already exists.", - "noWebhookWithId": "There is no webhook with the id <%= id %>.", - "regIdRequired": "RegId is required", - "invalidPushClient": "Invalid client. Only Official Habitica clients can receive push notifications.", - "pushDeviceAdded": "Push device added successfully", - "pushDeviceAlreadyAdded": "The user already has the push device", - "pushDeviceNotFound": "The user has no push device with this id.", - "pushDeviceRemoved": "Push device removed successfully.", + "invalidEnabled": "Az \"enabled\" paraméternek boolean-nak kell lennie.", + "invalidWebhookId": "az \"id\" paraméternek érvényes UUID-nak kell lennie.", + "missingWebhookId": "Webhook azonosító szükséges.", + "invalidWebhookType": "\"<%= type %>\" nem érvényes érték \"type\" paraméterhez.", + "webhookBooleanOption": "\"<%= option %>\" Boolean értéknek kell lennie.", + "webhookIdAlreadyTaken": "Webhook a <%= id %> azonosítóval már létezik.", + "noWebhookWithId": "Webhook <%= id %> azonosítóval nem létezik.", + "regIdRequired": "RegId szükséges", + "invalidPushClient": "Érvénytelen kliens. Csak hivtatalos Habitica kliensek fogadhatnak push értesítéseket.", + "pushDeviceAdded": "Push eszköz sikeresen hozzáadva", + "pushDeviceAlreadyAdded": "Ez a felhasználó már rendelkezik ezzel a push eszközzel.", + "pushDeviceNotFound": "Ez felhasználó nem rendelkezik ezzel az azonosítóval rendelkező push eszközzel.", + "pushDeviceRemoved": "Push eszköz sikeresen eltávolítva.", "buyGemsGoldCap": "Határ megemelve <%= amount %>-ra/re", "mysticHourglass": "<%= amount %> Misztikus homokóra", "mysticHourglassText": "A misztikus homokórák segítségével korábbi hónapok rejtélyes tárgykészleteit vásárolhatod meg.", @@ -185,7 +185,7 @@ "amazonPayments": "Amazon Payments", "timezone": "Időzóna", "timezoneUTC": "A Habitica a számítógépeden beállított időzónát használja, ami a következő: <%= utc %>", - "timezoneInfo": "If that time zone is wrong, first reload this page using your browser's reload or refresh button to ensure that Habitica has the most recent information. If it is still wrong, adjust the time zone on your PC and then reload this page again.

If you use Habitica on other PCs or mobile devices, the time zone must be the same on them all. If your Dailies have been resetting at the wrong time, repeat this check on all other PCs and on a browser on your mobile devices.", - "push": "Push", + "timezoneInfo": "Ha ez időzóna téves, frissítsd ezt az oldalt a böngésződ frissítés gombját használva, hogy megbizonyosodj róla hogy a Habitica a legfrissebb információt használja. Ha ezután még mindig téves, változtasd meg az időzónát a számítógépeden és frissítsd újra az oldalt.

Ha a Habitica-t más számítógépen vagy telefonon is használod, az időzónának mindenhol egyeznie kell. Ha a napi feladataid rossz időben indulnak újra ismételd meg ezt az összes számítógépen és a telefonod böngészőjében.", + "push": "Felugró", "about": "Névjegy" } \ No newline at end of file diff --git a/website/common/locales/hu/spells.json b/website/common/locales/hu/spells.json index 557bb117e4..f58e4278d2 100644 --- a/website/common/locales/hu/spells.json +++ b/website/common/locales/hu/spells.json @@ -29,7 +29,7 @@ "spellHealerHealText": "Gyógyító fény", "spellHealerHealNotes": "Ragyogó fény gyógyítja meg a sebeidet! (Alapja: SZÍV és ERŐ)", "spellHealerBrightnessText": "Perzselő ragyogás", - "spellHealerBrightnessNotes": "Egy fénycsóva a feladataidat sokkal kékebb vagy kevésbé pirossá varázsolja! (Alapja: INT)", + "spellHealerBrightnessNotes": "Egy fénycsóva a feladataidat sokkal kékebbé vagy kevésbé pirossá varázsolja! (Alapja: INT)", "spellHealerProtectAuraText": "Védelmező aura", "spellHealerProtectAuraNotes": "Megvéded a csapatodat szívósságuk megerősítésével! (Alapja: megerősítetlen SZÍV)", "spellHealerHealAllText": "Áldás", diff --git a/website/common/locales/hu/subscriber.json b/website/common/locales/hu/subscriber.json index 38f2f11d9e..7db5006090 100644 --- a/website/common/locales/hu/subscriber.json +++ b/website/common/locales/hu/subscriber.json @@ -4,25 +4,25 @@ "subDescription": "Vásárolj drágaköveket arany fejében, juss hozzá havonta rejtélyes tárgyakhoz, őrizd meg a feladataid előzményeit, duplázd meg a napi tárgyszerzési limited, támogasd a fejlesztőket. Kattints további információkért.", "sendGems": "Drágakövek küldése", "buyGemsGold": "Drágakő vásárlása aranyért", - "buyGemsGoldText": "Alexander-től, a kereskedőtől vehetsz drágaköveket, 20 aranyért egyet. A havi szállítmánya kezdetben 25 drágakő, de minden egymást követő 3 hónapban amikor előfizettél, ez a csomag 5 drágakővel növekszik, ami maximum 50 drágakőig növekedhet!", + "buyGemsGoldText": "Alexandertől, a kereskedőtől vehetsz drágaköveket, egyet 20 aranyért. A havi szállítmánya kezdetben 25 drágakő, de minden egymást követő 3 hónapban amikor előfizettél ez 5 drágakővel növekszik, ami maximum 50 drágakőig növekedhet!", "mustSubscribeToPurchaseGems": "Drágakövek vásárlása arannyal csak előfizetés után lehetséges", "reachedGoldToGemCap": "Elérted az arany=>drágakő átváltás határát <%= convCap %> erre a hónapra. Ez a visszaélések/farmolás megelőzésére van. Az átváltás újraindul a hónap első három napján.", - "reachedGoldToGemCapQuantity": "Your requested amount <%= quantity %> exceeds the Gold=>Gem conversion cap <%= convCap %> for this month. We have this to prevent abuse / farming. The cap resets within the first three days of each month.", + "reachedGoldToGemCapQuantity": "Az általad kért <%= quantity %> mennyiség megelőzi az arany=>drágakő átváltás határát <%= convCap %> erre a hónapra. Ez a visszaélések/farmolás megelőzésére van. Az átváltás újraindul a hónap első három napján.", "retainHistory": "További előzmények megőrzése", - "retainHistoryText": "Az elvégzett tennivalók és régebbi feladatok tovább elérhetőek maradnak.", + "retainHistoryText": ".Az elvégzett tennivalók és régebbi feladatok tovább elérhetőek maradnak", "doubleDrops": "Napi tárgyszerzési limit megduplázódik", "doubleDropsText": "Szerezd meg gyorsabban az összes állatot!", "mysteryItem": "Exkluzív havi tárgyak", "mysteryItemText": "Minden hónapban kapni fogsz egy egyedi kozmetikai tárgyat amivel az avatárodat tudod feldíszíteni! Valamint minden három hónap folyamatos előfizetés után, a titokzatos időutazók elérhetővé teszik számodra az összes régi (és futurisztikus!) kozmetikai tárgyat.", "supportDevs": "Fejlesztők támogatása", - "supportDevsText": "Az előfizetésed segít életben tartani a Habiticát és elősegíti új funkciók fejlesztésének finanszírozását. Köszönjük nagylelkűséged!", + "supportDevsText": "Az előfizetésed segít életben tartani a Habitica-t és elősegíti új funkciók fejlesztésének finanszírozását. Köszönjük nagylelkűséged!", "exclusiveJackalopePet": "Exkluzív háziállat", - "exclusiveJackalopePetText": "Szerezd meg a Fenséges lila szarvasnyulat, elérhető csak előfizetőknek!", + "exclusiveJackalopePetText": "Szerezd meg a fenséges lila szarvasnyulat, elérhető csak előfizetőknek!", "giftSubscription": "Előfizetést szeretnél ajándékozni valakinek?", - "giftSubscriptionText1": "Nyisd meg a profiljukat! Ezt úgy tudod megtenni ha rákattintasz a profilképre a fejlécen vagy a nevükre a chat-ben.", - "giftSubscriptionText2": "Click on the gift icon in the top right of their profile.", - "giftSubscriptionText3": "Kattints az előfizetés gombra és add meg a fizetéssel kapcsolatos adataidat.", - "giftSubscriptionText4": "Köszönjük, hogy támogatod a Habiticát!", + "giftSubscriptionText1": "Nyisd meg a profiljukat! Ezt úgy tudod megtenni ha rákattintasz a avatárukra a fejlécen vagy a nevükre a chat-ben.", + "giftSubscriptionText2": "Kattints a profiljuk jobb felső részén található ajándék ikonra.", + "giftSubscriptionText3": "Válaszd az \"Előfizetés\" opciót és add meg a fizetéssel kapcsolatos adataidat.", + "giftSubscriptionText4": "Köszönjük, hogy támogatod a Habitica-t!", "monthUSD": "USD / Hónap", "organization": "Szervezet", "groupPlans": "Csoportos tervek", @@ -38,7 +38,7 @@ "subscribe": "Előfizetés", "subscribed": "Előfizetve", "manageSub": "Az előfizetésed kezeléséért kattints ide", - "cancelSub": "Leíratkozás", + "cancelSub": "Leiratkozás", "cancelSubInfoGoogle": "Kérlek menj a \"fiók\" > \"Előfizetések\" szekcióba a Google Play Store appon az előfizetésed megszüntetéséhez, vagy ellenőrizd mikor ér véget az előfizetésed, ha már megszüntetted. Ez az oldal nem mutatja, hogy az előfizetésed vissza lett-e mondva. ", "cancelSubInfoApple": "Please follow Apple's official instructions to cancel your subscription or to see your subscription's termination date if you have already cancelled it. This screen is not able to show you whether your subscription has been cancelled.", "cancelSubInfoGroupPlan": "Because you have a free subscription from a Group Plan, you cannot cancel it. It will end when you are no longer in the Group. If you are the Group leader and want to cancel the entire Group Plan, you can do that from the group's \"Payment Details\" tab.", @@ -144,6 +144,7 @@ "mysterySet201803": "Daring Dragonfly Set", "mysterySet201804": "Spiffy Squirrel Set", "mysterySet201805": "Phenomenal Peacock Set", + "mysterySet201806": "Alluring Anglerfish Set", "mysterySet301404": "Alap steampunk szett", "mysterySet301405": "Steampunk kiegészítő szett", "mysterySet301703": "Steampunk páva szett", diff --git a/website/common/locales/hu/tasks.json b/website/common/locales/hu/tasks.json index 19db739dfe..408750d1cd 100644 --- a/website/common/locales/hu/tasks.json +++ b/website/common/locales/hu/tasks.json @@ -1,11 +1,11 @@ { "clearCompleted": "Törlés kész", - "clearCompletedDescription": "A befejezett teendők 30 nap után kerülnek törlése a nem előfizető felhasználóknál, és 90 nap után az előfizetők esetén.", - "clearCompletedConfirm": "Biztosan törlöd az elkészült feladataidat?", - "sureDeleteCompletedTodos": "Biztosan törlöd az elkészült feladataidat?", - "lotOfToDos": "A legutolsó 30 befejezett feladatod látható itt. A többi befejezett feladatot az Adat > Adat kimutató eszköz vagy az Adat > Adatok exportálása > Felhasználói adatok menü alatt találod meg.", - "deleteToDosExplanation": "Ha a lenti gombra kattintasz az összes eddigi elvégzett feladat valamint archivált feladat véglegesen törölve lesz, kivéve feladatok akítv kihívásokból és csoportos tervekből. Először exportáld őket, ha szeretnéd őket megőrizni.", - "addMultipleTip": "Tipp: Ha egyszerre több <%= taskType %>-t szeretnél hozzáadni, válaszd el őket egy sortöréssel (Shift + Enter) és utána nyomd meg az \"Enter\"-t!", + "clearCompletedDescription": "Befejezett tennivalók 30 nap után törlésre kerülnek a nem előfizető felhasználóknál, és 90 nap után az előfizetők esetén.", + "clearCompletedConfirm": "Biztosan törlöd az elkészült tennivalóidat?", + "sureDeleteCompletedTodos": "Biztosan törlöd az elkészült tennivalóidat?", + "lotOfToDos": "A legutolsó 30 befejezett tennivalód látható itt. A többi befejezett tennivalóidat az Adat > Adat kimutató eszköz vagy az Adat > Adatok exportálása > Felhasználói adatok menü alatt találod meg.", + "deleteToDosExplanation": "Ha a lenti gombra kattintasz az összes eddigi elvégzett valamint archivált tennivaló véglegesen törölve lesz, kivéve feladatok akítv kihívásokból és csoportos tervekből. Először exportáld őket, ha szeretnéd őket megőrizni.", + "addMultipleTip": "Tipp: Több <%= taskType %> hozzáadásához, válaszd el őket sortöréssel (Shift + Enter) és utána nyomd meg az \"Enter\"-t.", "addsingle": "Egy hozzáadása", "addATask": "<%= type %> hozzáadása", "editATask": "<%= type %> szerkesztése", @@ -31,13 +31,13 @@ "expandChecklist": "Feladatlista kibővítése", "collapseChecklist": "Feladatlista összecsukása", "text": "Cím", - "extraNotes": "További feljegyzések", + "extraNotes": "További jegyzetek", "notes": "Jegyzetek", - "direction/Actions": "Irány/Akció", - "advancedSettings": "Speciális beállítások", + "direction/Actions": "Irány/Cselekvés", + "advancedSettings": "Haladó beállítások", "taskAlias": "Feladat álneve", "taskAliasPopover": "Ez a feladat címke a 3. féltől származó eszközök integrálásához használható. Csak kötőjelek, aláhúzás és alfanumerikus karakterek használhatóak. A feladat címkének egyedinek kell lennie.", - "taskAliasPlaceholder": "feladat-címke", + "taskAliasPlaceholder": "feladat-címkéd-ide", "taskAliasPopoverWarning": "FIGYELMEZTETÉS: Ennek az értéknek a megváltoztatása elronthatja azoknak a 3. féltől származó eszközöknek a működését, amelyek ettől a feladat címkétől függnek.", "difficulty": "Nehézség", "difficultyHelp": "A nehézség megmutatja, hogy mennyire jelent kihívást a szokás, napi feladat, vagy tennivaló elvégzése. A magasabb nehézség nagyobb jutalmat eredményez, amikor elvégzed a feladatot, de nagyobb sebzést is okoz, ha kihagyod a napi feladatot, vagy egy negatív szokásra kattintasz.", @@ -45,9 +45,9 @@ "easy": "Könnyű", "medium": "Közepes", "hard": "Nehéz", - "attributes": "Karakterlap", + "attributes": "Tulajdonságpontok", "attributeAllocation": "Tulajdonságpont elosztás", - "attributeAllocationHelp": "Stat allocation is an option that provides methods for Habitica to automatically assign an earned Stat Point to a Stat immediately upon level-up.

You can set your Automatic Allocation method to Task Based in the Stats section of your profile.", + "attributeAllocationHelp": "A tulajdonságpont elosztás opció egy olyan rendszer ami biztosítja hogy a megszerzett tulajdonság pontok automtikusan kiosztásra kerüljenek szintlépés után a Habitica által.

Az automatikus elosztás opciót beállíthatod feladatok szerinti elosztásra a profilodon, a statisztika menüpont alatt.", "progress": "Haladás", "daily": "Napi feladat", "dailies": "Napi feladatok", @@ -58,7 +58,7 @@ "repeat": "Ismétlés", "repeats": "Ismétlések", "repeatEvery": "Ismétel minden", - "repeatOn": "Ismétlés be", + "repeatOn": "Ismétlés", "repeatHelpTitle": "Milyen gyakran ismétlődjön ez a feladat?", "dailyRepeatHelpContent": "Ez a feladat X naponként lesz esedékes. Az X értékét alább tudod beállítani.", "weeklyRepeatHelpContent": "Ez a feladat az alább kijelölt napokon esedékes. Kattints egy napra, hogy aktiváld/deaktiváld.", @@ -110,67 +110,67 @@ "streakSingular": "Szériázó", "streakSingularText": "21 napos szériát teljesített egy napi feladaton", "perfectName": "<%= count %> Tökéletes nap", - "perfectText": "Minden napi feladatodat teljesítetted <%= count %> napon keresztül. Ezzel a kitüntetéssel egy +szint/2 mértékű erősítést kapsz minden tulajdonságodra a következő napon. 100 fölötti szinteken nem jár még nagyobb mértékű erősítés.", + "perfectText": "Minden napi feladatodat teljesítetted <%= count %> napon keresztül. Ezzel a kitüntetéssel egy +szint/2 mértékű erősítést kapsz minden tulajdonságodra a következő napon. 100 fölötti szinten nem jár még nagyobb mértékű erősítés.", "perfectSingular": "Tökéletes nap", - "perfectSingularText": "Teljesítetted minden aktív napi feladatodat. Ezzel a kitüntetéssel +szint/2 mértékű erősítést kapsz minden tulajdonságodra a következő napon. 100 fölötti szinteken nem jár még nagyobb mértékű erősítés.", + "perfectSingularText": "Teljesítetted minden aktív napi feladatodat. Ezzel a kitüntetéssel +szint/2 mértékű erősítést kapsz minden tulajdonságodra a következő napon. 100 fölötti szinten nem jár még nagyobb mértékű erősítés.", "streakerAchievement": "Megkaptad a \"Szériázó\" kitüntetést! A 21 napos sorozat nagy mérföldkő az új szokások kialakításában. Ezt a kitüntetést tovább gyűjtheted 21 naponként ezen és más feladatokon is.", "fortifyName": "Erősítőfőzet", "fortifyPop": "Visszaállít minden feladatot semleges értékűre (sárga színűre), és feltölti az életerőt.", "fortify": "Megerősít", - "fortifyText": "A megerősítés visszaállítja a feladatokat, a kihívás feladatokat kivételével, semleges (sárga) állapotba, mintha csak most adtad volna hozzá őket, és az Életerődet is feltölti. Ez akkor lehet hasznos ha a piros feladataid már túl nehézzé, vagy a kék feladataid túl könnyűvé teszik a játékot. Ha a friss kezdés motiválóbbnak hangzik, szándd rá a drágaköveket és fújj egyet!", + "fortifyText": "A megerősítés visszaállítja a feladatokat, a kihíváshoz tartozó feladatok kivételével, semleges (sárga) állapotba, mintha csak most adtad volna hozzá őket, és az életerődet is feltölti. Ez akkor lehet hasznos ha a piros feladataid már túl nehézzé, vagy a kék feladataid túl könnyűvé teszik a játékot. Ha a friss kezdés motiválóbbnak hangzik, szánd rá a drágaköveket és fújd ki magad!", "confirmFortify": "Biztos vagy benne?", "fortifyComplete": "Megerősítés kész!", "deleteTask": "Feladat törlése", "sureDelete": "Biztosan törlöd ezt a feladatot?", "streakCoins": "Széria bónusz!", - "taskToTop": "Fentre", + "taskToTop": "Felülre", "taskToBottom": "Alulra", "emptyTask": "Előbb írd be a feladat címét.", - "dailiesRestingInInn": "Éppen a fogadóban pihensz! A napi feladataid NEM fognak éjszaka megsebezni, azonban frissülni továbbra is FOGNAK. Ha egy küldetésen veszel részt, nem fogod a főellenséget megtámadni/tárgyakat gyűjteni, amíg ki nem jelentkezes a fogadóból, de ettől függetlenül a főellenség megsebezhet, ha a csapattársaid kihagyják a saját napi feladataikat.", - "habitHelp1": "Jó szokások olyan dolgok, amiket gyakran csinálsz. Aranyat és tapasztalatot adnak minden alkalommal amikor a <%= plusIcon %>-ra kattintasz.", - "habitHelp2": "Rossz szokások olyan dolgok, amiket el akarsz kerülni. Csökkentik az életerődet minden alkalommal, amikor a <%= minusIcon %>-ra kattintasz.", - "habitHelp3": "Ihletért, nézd meg ezeket a példa szokásokat!", - "newbieGuild": "Van még kérdésed? Kérdezz a <%= linkStart %>Habitica Help guild<%= linkEnd %> céhben!", - "dailyHelp1": "A napi feladatok <%= emphasisStart %>minden nap<%= emphasisEnd %> ismétlődnek, amikor aktívak. Kattints a <%= pencilIcon %>-ra, hogy megváltoztasd, mely napokon esedékes a feladat.", - "dailyHelp2": "Ha nem teljesíted az aktív napi feladataid, akkor életerőt vesztesz, amikor új nap kezdődik.", + "dailiesRestingInInn": "Éppen a fogadóban pihensz! A napi feladataid NEM fognak éjszaka megsebezni, azonban frissülni továbbra is FOGNAK. Ha egy küldetésen veszel részt, nem fogod a főellenséget megtámadni/tárgyakat gyűjteni, amíg ki nem jelentkezel a fogadóból, de ettől függetlenül a főellenség megsebezhet, ha a csapattársaid kihagyják a saját napi feladataikat.", + "habitHelp1": "Jó szokások olyan dolgok, amiket gyakran csinálsz. Aranyat és tapasztalatot adnak minden alkalommal amikor a <%= plusIcon %> ikonra kattintasz.", + "habitHelp2": "Rossz szokások olyan dolgok, amiket el akarsz kerülni. Csökkentik az életerődet minden alkalommal, amikor a <%= minusIcon %> ikonra kattintasz.", + "habitHelp3": "Ha egy kis inspirációra vágysz a példa szokásokat!", + "newbieGuild": "Van még kérdésed? Kérdezz a <%= linkStart %>Habitica Help guild<%= linkEnd %> nevű céhben!", + "dailyHelp1": "A napi feladatok <%= emphasisStart %> minden nap<%= emphasisEnd %> ismétlődnek, olyan napokon amikor aktívak. Kattints a <%= pencilIcon %> ikonra hogy megváltoztasd, mely napokon esedékes a feladat.", + "dailyHelp2": "Ha nem teljesíted az aktív napi feladataid, új nap kezdetével életerőt veszítesz.", "dailyHelp3": "A napi feladatok<%= emphasisStart %>pirosabbá<%= emphasisEnd %> válnak, ha nem teljesíted őket, és <%= emphasisStart %>kékebbé<%= emphasisEnd %>, ha elvégzed őket. Minél pirosabb egy napi feladat, annál inkább megjutalmaz... vagy sebez.", - "dailyHelp4": "Ha meg szeretnéd változtatni, hogy mikor kezdődjön az új nap, menj a <%= linkStart %>Beállítások > Honlap<%= linkEnd %> > Egyéni napkezdés.", - "dailyHelp5": "Ha egy kis inspirációra vágyszt, nézd meg ezeket a minta napi feladatokat!", + "dailyHelp4": "Ha meg szeretnéd változtatni, hogy mikor kezdődjön egy új nap, menj a <%= linkStart %>Beállítások > Honlap<%= linkEnd %> > Egyéni napkezdés menübe.", + "dailyHelp5": "Ha egy kis inspirációra vágysz, nézd meg ezeket a minta napi feladatokat!", "toDoHelp1": "A tennivalók sárgán indulnak, és az idő előrehaladtával egyre pirosabbak (és értékesebbek) lesznek, így a hosszú, nehéz feladatok nagy jutalmakat ígérnek!", "toDoHelp2": "A tennivalók sosem sebeznek meg! Csak aranyat és tapasztalatot adnak.", "toDoHelp3": "Ha egy tennivalót listára bontasz, kevésbé lesz félelmetes, és nagyobb jutalmat fog adni!", "toDoHelp4": "Ha egy kis ispirációra vágysz, nézd meg ezeket a minta tennivalókat!", - "rewardHelp1": "Az avatarodnak vásárolt felszerelést a <%= linkStart %>Leltár > Felszerelés<%= linkEnd %> alatt találod.", - "rewardHelp2": "A felszerelés hatással van a tulajdonságaidra (<%= linkStart %>Avatar > Karakterlap<%= linkEnd %>).", + "rewardHelp1": "Az avatarodnak vásárolt felszerelést a <%= linkStart %>Tárgylista > Felszerelés<%= linkEnd %> menüben találod.", + "rewardHelp2": "A felszerelés hatással van a tulajdonságaidra (<%= linkStart %>Avatár > Karakterlap<%= linkEnd %>).", "rewardHelp3": "A különleges felszerelések itt jelennek meg a nagy eseményekkor.", "rewardHelp4": "Ne légy rest saját jutalmakat beállítani! Nézz meg néhány példát jutalmakra.", - "clickForHelp": "Kattints ide segítségért", - "taskAliasAlreadyUsed": "Ezt a feladatcímkét már használod egy másik feladathoz.", + "clickForHelp": "Segítségért kattints ide", + "taskAliasAlreadyUsed": "Ezt az álnevet már használod egy másik feladaton.", "taskNotFound": "A feladat nem található.", - "invalidTaskType": "A feladat típusa \"Szokás\", \"Napi\" \"Cél\" vagy \"Jutalom\" lehet.", - "invalidTasksType": "A feladat típusa \"Szokás\", \"Napi feladat\" \"Tennivaló\" vagy \"Jutalom\" lehet.", - "invalidTasksTypeExtra": "A feladat típusa \"Szokás\", \"Napi feladat\" \"Tennivaló\" vagy \"Jutalom\" vagy \"Befejezett tennivaló\" lehet.", - "cantDeleteChallengeTasks": "Egy kihívás feladatát nem törölheted.", - "checklistOnlyDailyTodo": "Feladatlisták csak napi feladatokhoz és a célokhoz adhatóak.", - "checklistItemNotFound": " Nem található feladatlista az adott azonosítóhoz.", + "invalidTaskType": "A feladat típusa \"habit\", \"daily\", \"todo\" vagy \"reward\" lehet.", + "invalidTasksType": "A feladat típusa \"habits\", \"dailys\", \"todos\" vagy \"rewards\" lehet.", + "invalidTasksTypeExtra": "A feladat típusa \"habits\", \"dailys\", \"todos\", \"rewards\" vagy \"completedTodos\" lehet.", + "cantDeleteChallengeTasks": "Egy kihíváshoz tartozó feladatot nem lehet törölni.", + "checklistOnlyDailyTodo": "Feladatlisták csak napi feladatokhoz és a tennivalókhoz adhatóak.", + "checklistItemNotFound": " Nem található feladatlista az adott azonosítóval.", "itemIdRequired": "\"itemId\" valódi UUID-nek kell lennie.", - "tagNotFound": "nem található címke az azonosítóhoz", + "tagNotFound": "Nem található címke az adott azonosítóval.", "tagIdRequired": "\"tagId\" valódi UUID-nek kell lennie, ami köthető a felhasználó egy címkéjéhez.", - "positionRequired": "\"position\" kötelező és számnak kell lennie.", - "cantMoveCompletedTodo": "Nem mozgathatsz egy befejezett feladatot.", - "directionUpDown": "az \"direction\" kötelező és vagy 'fel' vagy 'le' lehet", + "positionRequired": "\"position\" megadása szükséges és számnak kell lennie.", + "cantMoveCompletedTodo": "Befejezett feladatot nem mozgathatsz.", + "directionUpDown": "\"direction\" megadása szükséges és csak 'fel' vagy 'le' lehet.", "alreadyTagged": "A feladathoz már használod ezt a címkét.", - "strengthExample": "Kapcsolatos a gyakorlással és aktivitással", - "intelligenceExample": "Akadémiai vagy szellemi kihívás követésével kapcsolatos", + "strengthExample": "Testmozgással és aktivitással kapcsolatos", + "intelligenceExample": "Akadémiai vagy szellemi kihívással kapcsolatos", "perceptionExample": "Munkával vagy pénzügyi feladatokkal kapcsolatos", "constitutionExample": "Egészséggel, jóléttel és szociális kapcsolatokkal kapcsolatos", "counterPeriod": "Számlaló újraindul minden", "counterPeriodDay": "nap", "counterPeriodWeek": "héten", - "counterPeriodMonth": "Hónap", - "habitCounter": "Számlaló (Resets <%= frequency %>)", - "habitCounterUp": "Pozitív számlaló (Resets <%= frequency %>)", - "habitCounterDown": "Negatív számlaló (Resets <%= frequency %>)", + "counterPeriodMonth": "hónapban", + "habitCounter": "Számláló (újraindul <%= frequency %>)", + "habitCounterUp": "Pozitív számlaló (újraindul <%= frequency %>)", + "habitCounterDown": "Negatív számlaló (újraindul <%= frequency %>)", "taskRequiresApproval": "Ezt a feladatot jóvá kell hagyni mielőtt befejezed. Jóváhagyás már kérve.", "taskApprovalHasBeenRequested": "Jóváhagyás kérve", "taskApprovalWasNotRequested": "Csak egy jóváhagyásra váró feladat jelölhető meg több munkát igénylőként.", @@ -194,8 +194,6 @@ "weeks": "Hetek", "year": "Év", "years": "Évek", - "confirmScoreNotes": "Adj hozzá jegyzeteket, hogy meghatározhasd a feladat pontozását!", - "taskScoreNotesTooLong": "Egy feladat jegyzete legfeljebb 256 betűből állhat. ", "groupTasksByChallenge": "Csoportosítsd a feladatokat a kihívások címe szerint", "taskNotes": "Feljegyzések", "monthlyRepeatHelpContent": "Ez a feladat minden X hónapban esedékes", @@ -205,11 +203,11 @@ "nextDue": "Következő határidők", "checkOffYesterDailies": "Pipáld ki az összes napi feladatot, amit tegnap elvégeztél:", "yesterDailiesTitle": "Nem pipáltad ki ezeket a napi feadatokat tegnap! Szeretnéd valamelyiket most kipipálni?", - "yesterDailiesCallToAction": "Kezd el az új napomat!", + "yesterDailiesCallToAction": "Kezd el az új napomat!", "yesterDailiesOptionTitle": "Erősítsd meg hogy ez a napi feladat nem volt elvégezve támadás előtt", "yesterDailiesDescription": "Ha ez a beállítás engedélyezve van, a Habitica meg fogja kérdezni hogy a napi feladat tényleg nem volt-e elvégezve mielőtt kiszámolja a sebzést az avatárodra. Ez megvéd a nem szándékos sebzésektől.", "repeatDayError": "Bizonyosodj meg róla hogy legalább a hét egyik napja ki van választva.", "searchTasks": "Keress címekre és leírásokra...", - "sessionOutdated": "A munkameneted elavult. Kérlek frissítsd az oldalt, vagy szinkronizálj!", + "sessionOutdated": "A munkameneted elavult. Kérlek frissítsd az oldalt, vagy szinkronizálj.", "errorTemporaryItem": "Ez a tárgy ideiglenes, ezért nem rögzíthető." } \ No newline at end of file diff --git a/website/common/locales/id/backgrounds.json b/website/common/locales/id/backgrounds.json index ba13d1a597..2387253433 100644 --- a/website/common/locales/id/backgrounds.json +++ b/website/common/locales/id/backgrounds.json @@ -359,5 +359,12 @@ "backgroundRowboatText": "Rowboat", "backgroundRowboatNotes": "Sing rounds in a Rowboat.", "backgroundPirateFlagText": "Pirate Flag", - "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag." + "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag.", + "backgrounds072018": "SET 50: Released July 2018", + "backgroundDarkDeepText": "Dark Deep", + "backgroundDarkDeepNotes": "Swim in the Dark Deep among bioluminescent critters.", + "backgroundDilatoryCityText": "City of Dilatory", + "backgroundDilatoryCityNotes": "Meander through the undersea City of Dilatory.", + "backgroundTidePoolText": "Tide Pool", + "backgroundTidePoolNotes": "Observe the ocean life near a Tide Pool." } \ No newline at end of file diff --git a/website/common/locales/id/content.json b/website/common/locales/id/content.json index 32e9a27192..973d2054cc 100644 --- a/website/common/locales/id/content.json +++ b/website/common/locales/id/content.json @@ -195,6 +195,7 @@ "hatchingPotionFairy": "Peri", "hatchingPotionStarryNight": "Malam Berbintang", "hatchingPotionRainbow": "Rainbow", + "hatchingPotionGlass": "Glass", "hatchingPotionNotes": "Berikan ini kepada sebuah telur, dan ia akan menetas menjadi binatang peliharaan <%= potText(locale) %>.", "premiumPotionAddlNotes": "Tidak dapat digunakan kepada telur peliharaan yang didapat dari misi.", "foodMeat": "Daging", diff --git a/website/common/locales/id/gear.json b/website/common/locales/id/gear.json index 3a8fcb2411..4a6cb5d0be 100644 --- a/website/common/locales/id/gear.json +++ b/website/common/locales/id/gear.json @@ -346,6 +346,8 @@ "weaponArmoireCobblersHammerNotes": "This hammer is specially made for leatherwork. It can do a real number on a red Daily in a pinch, though. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 2 of 3).", "weaponArmoireGlassblowersBlowpipeText": "Glassblower's Blowpipe", "weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Increases Strength by <%= str %>. Enchanted Armoire: Glassblower Set (Item 1 of 4).", + "weaponArmoirePoisonedGobletText": "Poisoned Goblet", + "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).", "armor": "baju perang", "armorCapitalized": "Baju Perang", "armorBase0Text": "Pakaian Biasa", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "Panas dan cahaya yang dihasilkan baju zirah ajaib ini akan menghangatkan hatimu tapi tidak pernah membakar kulitmu! Tidak menambah status apapun. Item Pelanggan Desember 2017.", "armorMystery201802Text": "Baju Kumbang Cinta", "armorMystery201802Notes": "This shiny armor reflects your strength of heart and infuses it into any Habiticans nearby who may need encouragement! Confers no benefit. February 2018 Subscriber Item.", + "armorMystery201806Text": "Alluring Anglerfish Tail", + "armorMystery201806Notes": "This sinuous tail features glowing spots to light your way through the deep. Confers no benefit. June 2018 Subscriber Item.", "armorMystery301404Text": "Baju Steampunk", "armorMystery301404Notes": "Necis dan keren, iya lah! Tidak menambah status apapun. Item Pelanggan Februari 3015.", "armorMystery301703Text": "Gaun Merak Steampunk", @@ -742,6 +746,8 @@ "armorArmoireGlassblowersCoverallsNotes": "These coveralls will protect you while you're making masterpieces with hot molten glass. Increases Constitution by <%= con %>. Enchanted Armoire: Glassblower Set (Item 2 of 4).", "armorArmoireBluePartyDressText": "Blue Party Dress", "armorArmoireBluePartyDressNotes": "You're perceptive, tough, smart, and so fashionable! Increases Perception, Strength, and Constitution by <%= attrs %> each. Enchanted Armoire: Blue Hairbow Set (Item 2 of 2).", + "armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown", + "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Increases Perception by <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).", "headgear": "helm", "headgearCapitalized": "Akesoris kepala", "headBase0Text": "Tidak Ada Perlengkapan Kepala", @@ -1054,6 +1060,8 @@ "headMystery201803Notes": "Although its appearance is quite decorative, you can engage the wings on this circlet for extra lift! Confers no benefit. March 2018 Subscriber Item.", "headMystery201805Text": "Phenomenal Peacock Helm", "headMystery201805Notes": "This helm will make you the proudest and prettiest (possibly also the loudest) bird in town. Confers no benefit. May 2018 Subscriber Item.", + "headMystery201806Text": "Alluring Anglerfish Helm", + "headMystery201806Notes": "The mesmerizing light atop this helm will call all the creatures of the sea to your side. We urge you to use your glowy powers of attraction for good! Confers no benefit. June 2018 Subscriber Item.", "headMystery301404Text": "Topi Fancy", "headMystery301404Notes": "Topi paling cocok untuk gentleman! Item pelanggan Januari 3015. Tidak menambah status apapun.", "headMystery301405Text": "Topi Biasa", @@ -1154,6 +1162,8 @@ "headArmoireBigWigNotes": "Some powdered wigs are for looking more authoritative, but this one is just for laughs! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.", "headArmoireGlassblowersHatText": "Glassblower's Hat", "headArmoireGlassblowersHatNotes": "This hat mainly just looks good with your other protective glassblowing gear! Increases Perception by <%= per %>. Enchanted Armoire: Glassblower Set (Item 3 of 4).", + "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress", + "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).", "offhand": "off-hand item", "offhandCapitalized": "Off-Hand Item", "shieldBase0Text": "No Off-Hand Equipment", @@ -1368,6 +1378,8 @@ "shieldArmoireFancyShoeNotes": "A very special shoe you're working on. It's fit for royalty! Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 3 of 3).", "shieldArmoireFancyBlownGlassVaseText": "Fancy Blown Glass Vase", "shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Increases Intelligence by <%= int %>. Enchanted Armoire: Glassblower Set (Item 4 of 4).", + "shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield", + "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).", "back": "Aksesori Punggung", "backCapitalized": "Aksesori Punggung", "backBase0Text": "Tidak Mengenakan Aksesori Punggung", diff --git a/website/common/locales/id/groups.json b/website/common/locales/id/groups.json index f6b29cd1c7..83600c13e3 100644 --- a/website/common/locales/id/groups.json +++ b/website/common/locales/id/groups.json @@ -134,12 +134,11 @@ "PMPlaceholderDescription": "Select a conversation on the left", "PMPlaceholderTitleRevoked": "Your chat privileges have been revoked", "PMPlaceholderDescriptionRevoked": "You are not able to send private messages because your chat privileges have been revoked. If you have questions or concerns about this, please email admin@habitica.com to discuss it with the staff.", - "PMEnable": "Enable Private Messages", - "PMDisable": "Disable Private Messages", - "PMEnabledOptPopoverText": "When Private Messages are disabled, you still can send messages, but no one can send them to you.", - "PMDisabledOptPopoverText": "Enable this option to be able to receive messages.", + "PMReceive": "Receive Private Messages", + "PMEnabledOptPopoverText": "Private Messages are enabled. Users can contact you via your profile.", + "PMDisabledOptPopoverText": "Private Messages are disabled. Enable this option to allow users to contact you via your profile.", "PMDisabledCaptionTitle": "Private Messages are disabled", - "PMDisabledCaptionText": "You still can send messages, but no one can send them to you.", + "PMDisabledCaptionText": "You can still send messages, but no one can send them to you.", "block": "Blokir", "unblock": "Hapus Blokir", "pm-reply": "Kirimkan balasan", diff --git a/website/common/locales/id/limited.json b/website/common/locales/id/limited.json index 511d5f785c..79c58e135c 100644 --- a/website/common/locales/id/limited.json +++ b/website/common/locales/id/limited.json @@ -130,7 +130,7 @@ "dateEndApril": "19 April", "dateEndMay": "May 31", "dateEndJune": "14 Juni", - "dateEndJuly": "29 Juli", + "dateEndJuly": "July 31", "dateEndAugust": "31 Agustus", "dateEndOctober": "31 Oktober", "dateEndNovember": "30 November", diff --git a/website/common/locales/id/quests.json b/website/common/locales/id/quests.json index c2f7dacd85..d218c45f87 100644 --- a/website/common/locales/id/quests.json +++ b/website/common/locales/id/quests.json @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "Guild tidak dapat diundang dalam misi.", "questNotOwned": "Kamu tidak memiliki gulungan misi tersebut.", "questNotGoldPurchasable": "Misi \"<%= key %>\" tidak dapat dibeli dengan Emas.", + "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", "questLevelTooHigh": "Kamu harus berada di level <%= level %> untuk memulai misi ini.", "questAlreadyUnderway": "Party-mu telah berada dalam misi. Coba lagi ketika misi telah selesai.", "questAlreadyAccepted": "Kamu telah menerima undangan misi.", diff --git a/website/common/locales/id/subscriber.json b/website/common/locales/id/subscriber.json index e7d5591096..931e2d0e6f 100644 --- a/website/common/locales/id/subscriber.json +++ b/website/common/locales/id/subscriber.json @@ -144,6 +144,7 @@ "mysterySet201803": "Daring Dragonfly Set", "mysterySet201804": "Spiffy Squirrel Set", "mysterySet201805": "Phenomenal Peacock Set", + "mysterySet201806": "Alluring Anglerfish Set", "mysterySet301404": "Set Steampunk Standard", "mysterySet301405": "Set Aksesoris Steampunk", "mysterySet301703": "Set Merak Steampunk", diff --git a/website/common/locales/id/tasks.json b/website/common/locales/id/tasks.json index d6a80f02ab..aea967d22a 100644 --- a/website/common/locales/id/tasks.json +++ b/website/common/locales/id/tasks.json @@ -194,8 +194,6 @@ "weeks": "Minggu", "year": "Tahun", "years": "Tahun", - "confirmScoreNotes": "Pastikan nilai dari tugas dengan catatan", - "taskScoreNotesTooLong": "Catatan nilai tugas harus kurang dari 256 karakter", "groupTasksByChallenge": "Kelompokkan tugas berdasarkan judul tantangan", "taskNotes": "Catatan Tugas", "monthlyRepeatHelpContent": "Tugas ini harus diselesaikan setiap X bulan", diff --git a/website/common/locales/it/backgrounds.json b/website/common/locales/it/backgrounds.json index 6637c4e202..62e9f7683a 100644 --- a/website/common/locales/it/backgrounds.json +++ b/website/common/locales/it/backgrounds.json @@ -359,5 +359,12 @@ "backgroundRowboatText": "Rowboat", "backgroundRowboatNotes": "Sing rounds in a Rowboat.", "backgroundPirateFlagText": "Pirate Flag", - "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag." + "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag.", + "backgrounds072018": "SET 50: Released July 2018", + "backgroundDarkDeepText": "Dark Deep", + "backgroundDarkDeepNotes": "Swim in the Dark Deep among bioluminescent critters.", + "backgroundDilatoryCityText": "City of Dilatory", + "backgroundDilatoryCityNotes": "Meander through the undersea City of Dilatory.", + "backgroundTidePoolText": "Tide Pool", + "backgroundTidePoolNotes": "Observe the ocean life near a Tide Pool." } \ No newline at end of file diff --git a/website/common/locales/it/content.json b/website/common/locales/it/content.json index ade5aab07f..85f71357a7 100644 --- a/website/common/locales/it/content.json +++ b/website/common/locales/it/content.json @@ -195,6 +195,7 @@ "hatchingPotionFairy": "Fatato", "hatchingPotionStarryNight": "Notte stellata", "hatchingPotionRainbow": "Arcobaleno", + "hatchingPotionGlass": "Glass", "hatchingPotionNotes": "Versa questa pozione su un uovo, e nascerà un animale <%= potText(locale) %>.", "premiumPotionAddlNotes": "Non utilizzabile su uova di animali ottenute dalle missioni.", "foodMeat": "Carne", diff --git a/website/common/locales/it/gear.json b/website/common/locales/it/gear.json index b4db09ae0b..113f44a694 100644 --- a/website/common/locales/it/gear.json +++ b/website/common/locales/it/gear.json @@ -346,6 +346,8 @@ "weaponArmoireCobblersHammerNotes": "This hammer is specially made for leatherwork. It can do a real number on a red Daily in a pinch, though. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 2 of 3).", "weaponArmoireGlassblowersBlowpipeText": "Glassblower's Blowpipe", "weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Increases Strength by <%= str %>. Enchanted Armoire: Glassblower Set (Item 1 of 4).", + "weaponArmoirePoisonedGobletText": "Poisoned Goblet", + "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).", "armor": "armatura", "armorCapitalized": "Armatura", "armorBase0Text": "Vestiti semplici", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "The heat and light generated by this magic armor will warm your heart but never burn your skin! Confers no benefit. December 2017 Subscriber Item.", "armorMystery201802Text": "Love Bug Armor", "armorMystery201802Notes": "This shiny armor reflects your strength of heart and infuses it into any Habiticans nearby who may need encouragement! Confers no benefit. February 2018 Subscriber Item.", + "armorMystery201806Text": "Alluring Anglerfish Tail", + "armorMystery201806Notes": "This sinuous tail features glowing spots to light your way through the deep. Confers no benefit. June 2018 Subscriber Item.", "armorMystery301404Text": "Completo Steampunk", "armorMystery301404Notes": "Raffinato, a dir poco impeccabile! Non conferisce alcun bonus. Oggetto per abbonati, febbraio 3015.", "armorMystery301703Text": "Vestito da Pavone Steampunk", @@ -742,6 +746,8 @@ "armorArmoireGlassblowersCoverallsNotes": "These coveralls will protect you while you're making masterpieces with hot molten glass. Increases Constitution by <%= con %>. Enchanted Armoire: Glassblower Set (Item 2 of 4).", "armorArmoireBluePartyDressText": "Blue Party Dress", "armorArmoireBluePartyDressNotes": "You're perceptive, tough, smart, and so fashionable! Increases Perception, Strength, and Constitution by <%= attrs %> each. Enchanted Armoire: Blue Hairbow Set (Item 2 of 2).", + "armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown", + "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Increases Perception by <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).", "headgear": "elmo", "headgearCapitalized": "Copricapo", "headBase0Text": "Nessun elmo", @@ -1054,6 +1060,8 @@ "headMystery201803Notes": "Although its appearance is quite decorative, you can engage the wings on this circlet for extra lift! Confers no benefit. March 2018 Subscriber Item.", "headMystery201805Text": "Phenomenal Peacock Helm", "headMystery201805Notes": "This helm will make you the proudest and prettiest (possibly also the loudest) bird in town. Confers no benefit. May 2018 Subscriber Item.", + "headMystery201806Text": "Alluring Anglerfish Helm", + "headMystery201806Notes": "The mesmerizing light atop this helm will call all the creatures of the sea to your side. We urge you to use your glowy powers of attraction for good! Confers no benefit. June 2018 Subscriber Item.", "headMystery301404Text": "Cilindro Elegante", "headMystery301404Notes": "Un cilindro per i più fini gentiluomini! Oggetto per abbonati, gennaio 3015. Non conferisce alcun bonus.", "headMystery301405Text": "Cilindro Base", @@ -1154,6 +1162,8 @@ "headArmoireBigWigNotes": "Some powdered wigs are for looking more authoritative, but this one is just for laughs! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.", "headArmoireGlassblowersHatText": "Glassblower's Hat", "headArmoireGlassblowersHatNotes": "This hat mainly just looks good with your other protective glassblowing gear! Increases Perception by <%= per %>. Enchanted Armoire: Glassblower Set (Item 3 of 4).", + "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress", + "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).", "offhand": "oggetto mano secondaria", "offhandCapitalized": "Oggetto mano secondaria", "shieldBase0Text": "Nessun oggetto mano secondaria", @@ -1368,6 +1378,8 @@ "shieldArmoireFancyShoeNotes": "A very special shoe you're working on. It's fit for royalty! Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 3 of 3).", "shieldArmoireFancyBlownGlassVaseText": "Fancy Blown Glass Vase", "shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Increases Intelligence by <%= int %>. Enchanted Armoire: Glassblower Set (Item 4 of 4).", + "shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield", + "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).", "back": "Accessorio da schiena", "backCapitalized": "Accessorio schiena", "backBase0Text": "Nessun accessorio da schiena", diff --git a/website/common/locales/it/groups.json b/website/common/locales/it/groups.json index 945f07cd86..558798d480 100644 --- a/website/common/locales/it/groups.json +++ b/website/common/locales/it/groups.json @@ -134,12 +134,11 @@ "PMPlaceholderDescription": "Select a conversation on the left", "PMPlaceholderTitleRevoked": "Your chat privileges have been revoked", "PMPlaceholderDescriptionRevoked": "You are not able to send private messages because your chat privileges have been revoked. If you have questions or concerns about this, please email admin@habitica.com to discuss it with the staff.", - "PMEnable": "Enable Private Messages", - "PMDisable": "Disable Private Messages", - "PMEnabledOptPopoverText": "When Private Messages are disabled, you still can send messages, but no one can send them to you.", - "PMDisabledOptPopoverText": "Enable this option to be able to receive messages.", + "PMReceive": "Receive Private Messages", + "PMEnabledOptPopoverText": "Private Messages are enabled. Users can contact you via your profile.", + "PMDisabledOptPopoverText": "Private Messages are disabled. Enable this option to allow users to contact you via your profile.", "PMDisabledCaptionTitle": "Private Messages are disabled", - "PMDisabledCaptionText": "You still can send messages, but no one can send them to you.", + "PMDisabledCaptionText": "You can still send messages, but no one can send them to you.", "block": "Blocca", "unblock": "Sblocca", "pm-reply": "Rispondi", diff --git a/website/common/locales/it/limited.json b/website/common/locales/it/limited.json index 1da8a40124..5d1370a014 100644 --- a/website/common/locales/it/limited.json +++ b/website/common/locales/it/limited.json @@ -130,7 +130,7 @@ "dateEndApril": "19 aprile", "dateEndMay": "May 31", "dateEndJune": "14 giugno", - "dateEndJuly": "29 luglio", + "dateEndJuly": "July 31", "dateEndAugust": "31 agosto", "dateEndOctober": "31 ottobre", "dateEndNovember": "30 novembre", diff --git a/website/common/locales/it/quests.json b/website/common/locales/it/quests.json index aa2c48c79c..3e35925915 100644 --- a/website/common/locales/it/quests.json +++ b/website/common/locales/it/quests.json @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "Le Gilde non possono essere invitate a partecipare ad una missione.", "questNotOwned": "Non possiedi questa pergamena.", "questNotGoldPurchasable": "La Missione \"<%= key %>\" non può essere comprata con Oro.", + "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", "questLevelTooHigh": "Devi essere almeno al livello <%= level %> per iniziare questa missione.", "questAlreadyUnderway": "La tua squadra è già in missione. Riprova quando la missione corrente è terminata.", "questAlreadyAccepted": "Hai già accettato l'invito alla missione.", diff --git a/website/common/locales/it/subscriber.json b/website/common/locales/it/subscriber.json index cb64e07cbb..8c1539c5be 100644 --- a/website/common/locales/it/subscriber.json +++ b/website/common/locales/it/subscriber.json @@ -144,6 +144,7 @@ "mysterySet201803": "Daring Dragonfly Set", "mysterySet201804": "Spiffy Squirrel Set", "mysterySet201805": "Phenomenal Peacock Set", + "mysterySet201806": "Alluring Anglerfish Set", "mysterySet301404": "Set steampunk standard", "mysterySet301405": "Set accessori steampunk", "mysterySet301703": "Set Pavone Steampunk", diff --git a/website/common/locales/it/tasks.json b/website/common/locales/it/tasks.json index 2463aae678..e3e8391be2 100644 --- a/website/common/locales/it/tasks.json +++ b/website/common/locales/it/tasks.json @@ -194,8 +194,6 @@ "weeks": "Settimane", "year": "Anno", "years": "Anni", - "confirmScoreNotes": "Conferma valutazione attività con delle note", - "taskScoreNotesTooLong": "Le note della valutazione attività devono contenere meno di 256 caratteri", "groupTasksByChallenge": "Raggruppa le attività secondo il nome della sfida", "taskNotes": "Note dell'Attività", "monthlyRepeatHelpContent": "Questa attività andrà completata ogni X mesi.", diff --git a/website/common/locales/ja/backgrounds.json b/website/common/locales/ja/backgrounds.json index 7a9feec869..afe65a12f6 100644 --- a/website/common/locales/ja/backgrounds.json +++ b/website/common/locales/ja/backgrounds.json @@ -359,5 +359,12 @@ "backgroundRowboatText": "小舟", "backgroundRowboatNotes": "小舟の上で輪唱しましょう", "backgroundPirateFlagText": "海賊のフラッグ", - "backgroundPirateFlagNotes": "見る者に恐怖を与える海賊旗を掲げましょう" + "backgroundPirateFlagNotes": "見る者に恐怖を与える海賊旗を掲げましょう", + "backgrounds072018": "SET 50: Released July 2018", + "backgroundDarkDeepText": "Dark Deep", + "backgroundDarkDeepNotes": "Swim in the Dark Deep among bioluminescent critters.", + "backgroundDilatoryCityText": "City of Dilatory", + "backgroundDilatoryCityNotes": "Meander through the undersea City of Dilatory.", + "backgroundTidePoolText": "Tide Pool", + "backgroundTidePoolNotes": "Observe the ocean life near a Tide Pool." } \ No newline at end of file diff --git a/website/common/locales/ja/content.json b/website/common/locales/ja/content.json index 903e02683b..ac335688df 100644 --- a/website/common/locales/ja/content.json +++ b/website/common/locales/ja/content.json @@ -195,6 +195,7 @@ "hatchingPotionFairy": "フェアリーの", "hatchingPotionStarryNight": "星降る夜の", "hatchingPotionRainbow": "にじ色の", + "hatchingPotionGlass": "Glass", "hatchingPotionNotes": "これをたまごにかけると、<%= potText(locale) %> ペットが生まれます。", "premiumPotionAddlNotes": "クエスト ペットのたまごには使えません。", "foodMeat": "肉", diff --git a/website/common/locales/ja/gear.json b/website/common/locales/ja/gear.json index a520f0449c..f7d32af5a2 100644 --- a/website/common/locales/ja/gear.json +++ b/website/common/locales/ja/gear.json @@ -346,6 +346,8 @@ "weaponArmoireCobblersHammerNotes": "このハンマーは革細工のための特別製ですが、赤くなった日課を実際に打ち負かすこともできます。体質と力が<%= attrs %>上がります。ラッキー宝箱:靴修理職人セット(3個中2つ目のアイテム)", "weaponArmoireGlassblowersBlowpipeText": "Glassblower's Blowpipe", "weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Increases Strength by <%= str %>. Enchanted Armoire: Glassblower Set (Item 1 of 4).", + "weaponArmoirePoisonedGobletText": "Poisoned Goblet", + "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).", "armor": "よろい", "armorCapitalized": "よろい", "armorBase0Text": "無地の服", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "この魔法のよろいが生み出す光と熱はあなたの心を温めてくれますが、やけどすることはありません! 効果なし。2017年12月寄付会員アイテム。", "armorMystery201802Text": "ラブ・バッグのよろい", "armorMystery201802Notes": "この輝くよろいはあなたの心の強さを反映しており、励ましが必要な近くのHabiticanたちにもその力を分け与えます! 効果なし。2018年2月寄付会員アイテム。", + "armorMystery201806Text": "Alluring Anglerfish Tail", + "armorMystery201806Notes": "This sinuous tail features glowing spots to light your way through the deep. Confers no benefit. June 2018 Subscriber Item.", "armorMystery301404Text": "スチームパンクスーツ", "armorMystery301404Notes": "なんて小粋で最先端! 効果なし。3015年2月寄付会員アイテム。", "armorMystery301703Text": "スチームパンクなクジャクのガウン", @@ -742,6 +746,8 @@ "armorArmoireGlassblowersCoverallsNotes": "These coveralls will protect you while you're making masterpieces with hot molten glass. Increases Constitution by <%= con %>. Enchanted Armoire: Glassblower Set (Item 2 of 4).", "armorArmoireBluePartyDressText": "Blue Party Dress", "armorArmoireBluePartyDressNotes": "You're perceptive, tough, smart, and so fashionable! Increases Perception, Strength, and Constitution by <%= attrs %> each. Enchanted Armoire: Blue Hairbow Set (Item 2 of 2).", + "armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown", + "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Increases Perception by <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).", "headgear": "帽子・兜", "headgearCapitalized": "帽子・ヘルメット", "headBase0Text": "頭装備なし", @@ -1054,6 +1060,8 @@ "headMystery201803Notes": "とっても装飾的な見た目ですが、頭飾りの羽根はより高く上昇するために連携させられます! 効果なし。2018年3月寄付会員アイテム。", "headMystery201805Text": "グッとくるクジャクのかぶと", "headMystery201805Notes": "このかぶとはあなたを街でもっとも誇り高く最高に美しい(そして恐らく、一番声が大きい)鳥にしてくれます。効果なし。2018年5月寄付会員アイテム。", + "headMystery201806Text": "Alluring Anglerfish Helm", + "headMystery201806Notes": "The mesmerizing light atop this helm will call all the creatures of the sea to your side. We urge you to use your glowy powers of attraction for good! Confers no benefit. June 2018 Subscriber Item.", "headMystery301404Text": "かわいいシルクハット", "headMystery301404Notes": "良家中の良家の方々のためのかわいいシルクハット! 3015年1月寄付会員アイテム。効果なし。", "headMystery301405Text": "ベーシックなシルクハット", @@ -1154,6 +1162,8 @@ "headArmoireBigWigNotes": "ある種の髪粉をはたいたかつらはより威厳を与えてくれますが、これはウケるだけです!力が<%= str %>上がります。ラッキー宝箱:個別のアイテム。", "headArmoireGlassblowersHatText": "Glassblower's Hat", "headArmoireGlassblowersHatNotes": "This hat mainly just looks good with your other protective glassblowing gear! Increases Perception by <%= per %>. Enchanted Armoire: Glassblower Set (Item 3 of 4).", + "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress", + "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).", "offhand": "利き手と反対の手のアイテム", "offhandCapitalized": "利き手と反対の手のアイテム", "shieldBase0Text": "利き手と反対の手の装備はありません", @@ -1368,6 +1378,8 @@ "shieldArmoireFancyShoeNotes": "あなたが修理に取り組んでいるとても特別な靴。王侯貴族にふさわしい品です! 知能と知覚が<%= attrs %>上がります。ラッキー宝箱:靴修理職人セット(3つ中3つ目のアイテム)", "shieldArmoireFancyBlownGlassVaseText": "Fancy Blown Glass Vase", "shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Increases Intelligence by <%= int %>. Enchanted Armoire: Glassblower Set (Item 4 of 4).", + "shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield", + "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).", "back": "背中のアクセサリー", "backCapitalized": "背のアクセサリー", "backBase0Text": "背のアクセサリーなし", diff --git a/website/common/locales/ja/groups.json b/website/common/locales/ja/groups.json index 3ee686c366..2826e68dcd 100644 --- a/website/common/locales/ja/groups.json +++ b/website/common/locales/ja/groups.json @@ -134,12 +134,11 @@ "PMPlaceholderDescription": "Select a conversation on the left", "PMPlaceholderTitleRevoked": "Your chat privileges have been revoked", "PMPlaceholderDescriptionRevoked": "You are not able to send private messages because your chat privileges have been revoked. If you have questions or concerns about this, please email admin@habitica.com to discuss it with the staff.", - "PMEnable": "Enable Private Messages", - "PMDisable": "Disable Private Messages", - "PMEnabledOptPopoverText": "When Private Messages are disabled, you still can send messages, but no one can send them to you.", - "PMDisabledOptPopoverText": "Enable this option to be able to receive messages.", + "PMReceive": "Receive Private Messages", + "PMEnabledOptPopoverText": "Private Messages are enabled. Users can contact you via your profile.", + "PMDisabledOptPopoverText": "Private Messages are disabled. Enable this option to allow users to contact you via your profile.", "PMDisabledCaptionTitle": "Private Messages are disabled", - "PMDisabledCaptionText": "You still can send messages, but no one can send them to you.", + "PMDisabledCaptionText": "You can still send messages, but no one can send them to you.", "block": "ブロックする", "unblock": "ブロックを解除する", "pm-reply": "返信する", diff --git a/website/common/locales/ja/limited.json b/website/common/locales/ja/limited.json index f0fa3af5e0..90e799663c 100644 --- a/website/common/locales/ja/limited.json +++ b/website/common/locales/ja/limited.json @@ -130,7 +130,7 @@ "dateEndApril": "4月19日", "dateEndMay": "May 31", "dateEndJune": "6月14日", - "dateEndJuly": "7月29日", + "dateEndJuly": "July 31", "dateEndAugust": "8月31日", "dateEndOctober": "10月31日", "dateEndNovember": "11月30日", diff --git a/website/common/locales/ja/quests.json b/website/common/locales/ja/quests.json index b8b050756f..f8f90f33e7 100644 --- a/website/common/locales/ja/quests.json +++ b/website/common/locales/ja/quests.json @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "ギルドはクエストに招待できません。", "questNotOwned": "クエストの巻物を持っていません。", "questNotGoldPurchasable": "\"<%= key %>\" のクエストは、ゴールドで買えるクエストではありません。", + "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", "questLevelTooHigh": "このクエストに挑戦するにはレベル <%= level %> が必要です。", "questAlreadyUnderway": "あなたのパーティーはいま別のクエスト中です。現在のクエストが終わった後に再度実行してください。", "questAlreadyAccepted": "あなたはこのクエストの招待をすでに承認しています。", diff --git a/website/common/locales/ja/subscriber.json b/website/common/locales/ja/subscriber.json index 8cdd57a463..efe3f333c1 100644 --- a/website/common/locales/ja/subscriber.json +++ b/website/common/locales/ja/subscriber.json @@ -144,6 +144,7 @@ "mysterySet201803": "型破りなトンボセット", "mysterySet201804": "小粋なリス セット", "mysterySet201805": "グッとくるクジャクセット", + "mysterySet201806": "Alluring Anglerfish Set", "mysterySet301404": "スチームパンク標準 セット", "mysterySet301405": "スチームパンク アクセサリー セット", "mysterySet301703": "クジャクのスチームパンク セット", diff --git a/website/common/locales/ja/tasks.json b/website/common/locales/ja/tasks.json index c785c1d754..02e26d8c72 100644 --- a/website/common/locales/ja/tasks.json +++ b/website/common/locales/ja/tasks.json @@ -194,8 +194,6 @@ "weeks": "週", "year": "年", "years": "年", - "confirmScoreNotes": "タスクのスコアをメモで確認する", - "taskScoreNotesTooLong": "タスクのスコアのメモは256文字未満でなければなりません。", "groupTasksByChallenge": "タスクをチャレンジのタイトルごとに並べる", "taskNotes": "タスクのメモ", "monthlyRepeatHelpContent": "このタスクはXか月ごとに期限が訪れます。", diff --git a/website/common/locales/nl/backgrounds.json b/website/common/locales/nl/backgrounds.json index b3874d2465..7c16f911f7 100644 --- a/website/common/locales/nl/backgrounds.json +++ b/website/common/locales/nl/backgrounds.json @@ -346,18 +346,25 @@ "backgroundFlyingOverWildflowerFieldNotes": "Vlieg boven een Wilde Bloemenveld.", "backgroundFlyingOverAncientForestText": "Oeroud Bos", "backgroundFlyingOverAncientForestNotes": "Vlieg over de overkapping van een Oeroud Bos.", - "backgrounds052018": "SET 48: Released May 2018", - "backgroundTerracedRiceFieldText": "Terraced Rice Field", - "backgroundTerracedRiceFieldNotes": "Enjoy a Terraced Rice Field in the growing season.", - "backgroundFantasticalShoeStoreText": "Fantastical Shoe Store", - "backgroundFantasticalShoeStoreNotes": "Look for fun new footwear in the Fantastical Shoe Store.", - "backgroundChampionsColosseumText": "Champions' Colosseum", - "backgroundChampionsColosseumNotes": "Bask in the glory of the Champions' Colosseum.", - "backgrounds062018": "SET 49: Released June 2018", - "backgroundDocksText": "Docks", - "backgroundDocksNotes": "Fish from atop the Docks.", + "backgrounds052018": "SET 48: uitgebracht in mei 2018", + "backgroundTerracedRiceFieldText": "Terrasvormig Rijstveld", + "backgroundTerracedRiceFieldNotes": "Genieg van een Terrasvormig Rijstveld in het groeiseizoen.", + "backgroundFantasticalShoeStoreText": "Fantastische Schoenenwinkel", + "backgroundFantasticalShoeStoreNotes": "Zoek voor grappig nieuw schoeisel in de Fantastische Schoenenwinkel.", + "backgroundChampionsColosseumText": "Kampioens Colloseum", + "backgroundChampionsColosseumNotes": "Baad in de gloed van het Kampioens Colloseum.", + "backgrounds062018": "SET 49: uitgebracht in juni 2018", + "backgroundDocksText": "Scheepswerven", + "backgroundDocksNotes": "Vis van bovenaf de scheepswerven.", "backgroundRowboatText": "Roeiboot", - "backgroundRowboatNotes": "Sing rounds in a Rowboat.", + "backgroundRowboatNotes": "Zing rondes in een Roeiboot.", "backgroundPirateFlagText": "Piratenvlag", - "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag." + "backgroundPirateFlagNotes": "Hijs een geduchte Piratenvlag op.", + "backgrounds072018": "SET 50: uitgebracht in juli 2018", + "backgroundDarkDeepText": "Donkere Diepte", + "backgroundDarkDeepNotes": "Zwem in de Donkere Diepte rondom bioluminescente beestjes.", + "backgroundDilatoryCityText": "Stad van Dralen", + "backgroundDilatoryCityNotes": "Wandel door de onderzee Stad van Dralen.", + "backgroundTidePoolText": "Getij Bad", + "backgroundTidePoolNotes": "Observeer het leven van de oceaan bij een Getij Bad." } \ No newline at end of file diff --git a/website/common/locales/nl/challenge.json b/website/common/locales/nl/challenge.json index 4b25163895..64b72866ca 100644 --- a/website/common/locales/nl/challenge.json +++ b/website/common/locales/nl/challenge.json @@ -13,8 +13,8 @@ "challengeWinner": "Heeft de volgende uitdagingen gewonnen", "challenges": "Uitdagingen", "challengesLink": "Uitdagingen", - "challengePrize": "Challenge Prize", - "endDate": "Ends", + "challengePrize": "Uitdagingsprijs", + "endDate": "Eindigt", "noChallenges": "Nog geen uitdagingen, ga naar", "toCreate": "om er een aan te maken.", "selectWinner": "Kies een winnaar en sluit de uitdaging af:", @@ -25,9 +25,9 @@ "filter": "Filter", "groups": "Groepen", "noNone": "Geen", - "category": "Category", + "category": "Categorie", "membership": "Lidmaatschap", - "ownership": "Ownership", + "ownership": "Eigendom", "participating": "Deelnemend", "notParticipating": "Niet deelnemend", "either": "Beide", diff --git a/website/common/locales/nl/content.json b/website/common/locales/nl/content.json index 8df106a372..524d7c7b71 100644 --- a/website/common/locales/nl/content.json +++ b/website/common/locales/nl/content.json @@ -195,6 +195,7 @@ "hatchingPotionFairy": "Fee", "hatchingPotionStarryNight": "Sterrennacht", "hatchingPotionRainbow": "Regenboog", + "hatchingPotionGlass": "Glass", "hatchingPotionNotes": "Giet dit over een ei, en er zal een <%= potText(locale) %> dierlijke metgezel uitkomen.", "premiumPotionAddlNotes": "Niet te gebruiken op eieren van queeste-huisdieren.", "foodMeat": "Vlees", @@ -285,8 +286,8 @@ "foodCandyDesertThe": "the Sand Candy", "foodCandyDesertA": "Sand Candy", "foodCandyRed": "Kaneelsnoep", - "foodCandyRedThe": "the Cinnamon Candy", - "foodCandyRedA": "Cinnamon Candy", + "foodCandyRedThe": "een kaneelsnoepje", + "foodCandyRedA": "Kaneelsnoep", "foodSaddleText": "Zadel", "foodSaddleNotes": "Laat één van je dieren direct opgroeien tot een rijdier.", "foodSaddleSellWarningNote": "Hé! Dit is een erg handig voorwerp! Weet je hoe je een zadel kunt gebruiken bij je huisdieren?", diff --git a/website/common/locales/nl/faq.json b/website/common/locales/nl/faq.json index a48348582f..653d1b074b 100644 --- a/website/common/locales/nl/faq.json +++ b/website/common/locales/nl/faq.json @@ -7,7 +7,7 @@ "faqQuestion1": "Hoe stel ik mijn taken in?", "iosFaqAnswer1": "Goede gewoonten (degenen met een +) zijn taken die je meerdere keren per dag kunt doen, zoals groenten eten. Slechte gewoonten (degenen met een -) zijn taken die je zou moeten nalaten, zoals op je nagels bijten. Gewoonten met een + en een - hebben een goede en een slechte keuze, bijvoorbeeld de trap nemen tegenover de lift nemen. Goede gewoonten belonen je met ervaring en goud. Slechte gewoonten doen je levenspunten verliezen.\n\nDagelijkse taken zijn taken die je iedere dag moet doen, zoals je tanden poetsen of je e-mail bekijken. Je kunt de dagen aanpassen waarop je een bepaalde dagelijkse taak moet doen door erop te drukken en hem te bewerken. Als je een dagelijkse taak overslaat op een dag dat hij gedaan moet worden, zal je avatar gedurende de nacht schade oplopen. Wees voorzichtig en voeg niet teveel dagelijkse taken tegelijk toe!\n\nTo-do's zijn de dingen die je nog een keer moet doen. Een to-do afvinken levert geld en ervaringspunten op. Je kunt nooit levenspunten kwijtraken door een to-do. Je kunt een geplande voltooiingsdatum toevoegen aan een to-do door er op te tikken om hem aan te passen.", "androidFaqAnswer1": "Goede gewoontes (gewoontes met een +) zijn taken die je meerdere keren op een dag kan doen, zoals groenten eten. Slechte gewoontes (gewoontes met een -) zijn taken die je moet vermijden, zoals nagels bijten. Gewoontes met een + en een - hebben een goede keuze en een slechte keuze, zoals de trappen nemen tegenover de lift nemen. Goede gewoontes belonen je met ervaring en goud. Slechte gewoontes verlagen je gezondheid.\n\n\nDagelijkse taken zijn taken die je iedere dag moet doen, zoals je tanden poetsen of je email nakijken. Je kan de dagen waarop een dagelijkse taak gedaan moet worden instellen door erop te klikken om het te bewerken. Als je een dagelijkse taak mist die op die dag afgewerkt moest zijn, dan verliest je personage gezondheid de volgende dag. Wees voorzichtig en voeg niet te veel dagelijkse taken tegelijk toe!\n\n\nTo-do's zijn je To-do-lijst. Een to-do voltooien levert je goud en ervaring op. Je verliest nooit gezondheid van To-do's. Je kan de dag waarop een to-do afgewerkt moet zijn kiezen door erop te klikken en het te bewerken.", - "webFaqAnswer1": "* Good Habits (the ones with a :heavy_plus_sign:) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a :heavy_minus_sign:) are tasks that you should avoid, like biting nails. Habits with a :heavy_plus_sign: and a :heavy_minus_sign: have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award Experience and Gold. Bad Habits subtract Health.\n* Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by clicking the pencil item to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n* To-Dos are your To-Do list. Completing a To-Do earns you Gold and Experience. You never lose Health from To-Dos. You can add a due date to a To-Do by clicking the pencil icon to edit.", + "webFaqAnswer1": "* Goede gewoontes (gewoontes met een :heavy_plus_sign:) zijn taken die je meerdere keren op een dag kan doen, zoals groenten eten. Slechte gewoontes (gewoontes met een :heavy_minus_sign:) zijn taken die je moet vermijden, zoals nagels bijten. Gewoontes met een :heavy_plus_sign: en een :heavy_minus_sign: hebben een goede keuze en een slechte keuze, zoals de trappen nemen tegenover de lift nemen. Goede gewoontes belonen je met ervaring en goud. Slechte gewoontes verlagen je gezondheid.\n* Dagelijkse taken zijn taken die je iedere dag moet doen, zoals je tanden poetsen of je email nakijken. Je kan de dagen waarop een dagelijkse taak gedaan moet worden instellen door op het potlood-icoon te klikken en het te bewerken. Als je een dagelijkse taak mist die op die dag afgewerkt moest zijn, dan verliest je personage gezondheid de volgende dag. Wees voorzichtig en voeg niet te veel dagelijkse taken tegelijk toe.\n* To-do's zijn je To-do-lijst. Een to-do voltooien levert je goud en ervaring op. Je verliest nooit gezondheid van To-do's. Je kan de dag waarop een to-do afgewerkt moet zijn kiezen door op het potlood-icoon te klikken en het te bewerken.", "faqQuestion2": "Welke soort taken kunnen er zijn?", "iosFaqAnswer2": "De wiki heeft vier lijsten van voorbeeldtaken om als inspiratie te gebruiken:\n

\n* [Voorbeeld gewoontes](http://nl.habitica.wikia.com/wiki/Voorbeeldgewoontes)\n* [Voorbeeld dagelijkse taken](http://nl.habitica.wikia.com/wiki/Voorbeelden_van_dagelijkse_taken)\n* [Voorbeeld to-do's](http://nl.habitica.wikia.com/wiki/Voorbeeld_To-do%27s)\n* [Voorbeeld persoonlijke beloningen](http://nl.habitica.wikia.com/wiki/Voorbeelden_van_aangepaste_beloningen)", "androidFaqAnswer2": "De wiki bevat vier lijsten van voorbeelden van taken om te gebruiken voor inspiratie:\n

\n * [Voorbeelden van gewoontes](http://nl.habitica.wikia.com/wiki/Voorbeeldgewoontes)\n * [Voorbeelden van dagelijkse taken](http://nl.habitica.wikia.com/wiki/Voorbeelden_van_dagelijkse_taken)\n * [Voorbeelden van to-do's](http://nl.habitica.wikia.com/wiki/Voorbeeld_To-do%27s)\n * [Voorbeelden van aangepaste beloningen](http://nl.habitica.wikia.com/wiki/Voorbeelden_van_aangepaste_beloningen)", @@ -17,42 +17,42 @@ "androidFaqAnswer3": "Je taken veranderen van kleur op basis van hoe goed je ze momenteel uitvoert! Elke nieuwe taak begint als neutraal geel. Wanneer je dagelijkse taken of positieve gewoonten vaker uitvoert, worden ze blauwer. Een dagelijkse taak missen of toegeven aan een slechte gewoonte maakt de taak roder. Hoe roder de taak, hoe meer beloningen je ervan krijgt, maar als het een dagelijkse taak of een slechte gewoonte is, zal het je ook meer schade toebrengen! Dit helpt om je te motiveren de taken waarmee je moeite hebt te volbrengen.", "webFaqAnswer3": "Je taken veranderen van kleur afhankelijk van hoe goed je ze op dat moment voltooit! Iedere taak begint als neutraal geel. Voltooi dagelijkse taken of positieve gewoonten en ze veranderen naar blauw. Mis een dagelijkse taak of geef toe aan een slechte gewoonte en de taak verandert naar rood. Hoe roder de taak, hoe meer je beloond zult worden, maar als het een dagelijkse taak of slechte gewoonte is, des te meer schade doet hij je! Dit helpt je te motiveren om problematische taken te voltooien.", "faqQuestion4": "Waarom heeft mijn avatar levenspunten verloren en hoe krijg ik ze terug?", - "iosFaqAnswer4": "There are several things that can cause you to take damage. First, if you left Dailies incomplete overnight and didn't check them off in the screen that popped up the next morning, those unfinished Dailies will damage you. Second, if you tap a bad Habit, it will damage you. Finally, if you are in a Boss Battle with your Party and one of your Party mates did not complete all their Dailies, the Boss will attack you.\n\n The main way to heal is to gain a level, which restores all your health. You can also buy a Health Potion with gold from the Rewards column. Plus, at level 10 or above, you can choose to become a Healer, and then you will learn healing skills. If you are in a Party with a Healer, they can heal you as well.", - "androidFaqAnswer4": "There are several things that can cause you to take damage. First, if you left Dailies incomplete overnight and didn't check them off in the screen that popped up the next morning, those unfinished Dailies will damage you. Second, if you tap a bad Habit, it will damage you. Finally, if you are in a Boss Battle with your Party and one of your Party mates did not complete all their Dailies, the Boss will attack you.\n\n The main way to heal is to gain a level, which restores all your health. You can also buy a Health Potion with gold from the Rewards tab on the Tasks page. Plus, at level 10 or above, you can choose to become a Healer, and then you will learn healing skills. If you are in a Party with a Healer, they can heal you as well.", - "webFaqAnswer4": "There are several things that can cause you to take damage. First, if you left Dailies incomplete overnight and didn't check them off in the screen that popped up the next morning, those unfinished Dailies will damage you. Second, if you click a bad Habit, it will damage you. Finally, if you are in a Boss Battle with your party and one of your party mates did not complete all their Dailies, the Boss will attack you. The main way to heal is to gain a level, which restores all your Health. You can also buy a Health Potion with Gold from the Rewards column. Plus, at level 10 or above, you can choose to become a Healer, and then you will learn healing skills. Other Healers can heal you as well if you are in a Party with them. Learn more by clicking \"Party\" in the navigation bar.", + "iosFaqAnswer4": "Er zijn verschillende dingen die je kunnen schaden. Ten eerste: als je dagelijkse taken 's nachts incompleet zijn en je ze de volgende morgen niet aftikt op de pop-up, doen ze schade. Ten tweede: als je een slechte gewoonte aanklikt, zal het je schade doen. Tenslotte: als je in een gevecht met een eindbaas bent met je Gezelschap en een van je Gezelschapsgenoten heeft niet al zijn/haar taken gedaan, dan zal de baas je aanvallen.\n\nDe belangrijkste manier om te genezen is om een niveau omhoog te gaan, dat herstelt al je levenspunten. Je kunt ook met goud een gezondheidsdrankje kopen in de beloningskolom. Daarbij, op niveau 10 en daarboven, kun je ervoor kiezen om een Heler te worden en dan kun je genezingsvaardigheden leren. Als je in een Gezelschap zit met een Heler, kan deze je ook genezen.", + "androidFaqAnswer4": "Er zijn verschillende dingen die je kunnen schaden. Ten eerste: als je dagelijkse taken 's nachts incompleet zijn en je ze de volgende morgen niet aftikt op de pop-up, doen ze schade. Ten tweede: als je een slechte gewoonte aanklikt, zal het je schade doen. Tenslotte: als je in een gevecht met een eindbaas bent met je Gezelschap en een van je Gezelschapsgenoten heeft niet al zijn/haar taken gedaan, dan zal de baas je aanvallen.\n\nDe belangrijkste manier om te genezen is om een niveau omhoog te gaan, dat herstelt al je Levenspunten. Je kunt ook met Goud een gezondheidsdrankje kopen in de beloningstabblad. Daarbij, op niveau 10 en daarboven, kun je ervoor kiezen om een Helerte worden en dan kun je genezingsvaardigheden leren. Als je in een Gezelschap zit met een Heler, kan deze je ook genezen.", + "webFaqAnswer4": "Er zijn verschillende dingen die je kunnen schaden. Ten eerste: als je dagelijkse taken 's nachts incompleet zijn en je ze de volgende morgen niet aftikt op de pop-up, doen ze schade. Ten tweede: als je een slechte gewoonte aanklikt, zal het je schade doen. Tenslotte: als je in een gevecht met een eindbaas bent met je Gezelschap en een van je Gezelschapsgenoten heeft niet al zijn/haar taken gedaan, dan zal de baas je aanvallen.\n\nDe belangrijkste manier om te genezen is om een niveau omhoog te gaan, dat herstelt al je Levenspunten. Je kunt ook met Goud een gezondheidsdrankje kopen in de beloningskolom. Daarbij, op niveau 10 en daarboven, kun je ervoor kiezen om een Heler te worden en dan kun je genezingsvaardigheden leren. Als je in een Gezelschap zit met een Heler, kan deze je ook genezen.", "faqQuestion5": "Hoe speel ik Habitica samen met mijn vrienden?", "iosFaqAnswer5": "De beste manier is om ze uit te nodigen voor een gezelschap met jou! Groepen kunnen queestes doen, monsters bevechten en vaardigheden uitspreken om elkaar te ondersteunen. Ga naar Menu > Groep en klik op \"Maak Nieuwe Groep\" als je er nog geen hebt. Druk dan op de ledenlijst en druk op Uitnodigen in de rechterbovenhoek om je vrienden uit te nodigen door hun Gebruikers-ID in te voeren (een serie nummers en letters die ze kunnen vinden onder Instellingen > Account in de app en Instellingen > API op de website). Op de website kun je ook vrienden uitnodigen via e-mail, hetgeen we in een latere update aan de app zullen toevoegen.\n\nOp de website kunnen jij en je vrienden je ook aansluiten bij Gildes, dat zijn publieke chatrooms. Gildes worden aan de app toegevoegd in een toekomstige update.", - "androidFaqAnswer5": "The best way is to invite them to a Party with you! Parties can go on quests, battle monsters, and cast skills to support each other. Go to the [website](https://habitica.com/) to create one if you don't already have a Party. You can also join guilds together (Social > Guilds). Guilds are chat rooms focusing on a shared interest or the pursuit of a common goal, and can be public or private. You can join as many guilds as you'd like, but only one party.\n\n For more detailed info, check out the wiki pages on [Parties](http://habitica.wikia.com/wiki/Party) and [Guilds](http://habitica.wikia.com/wiki/Guilds).", - "webFaqAnswer5": "The best way is to invite them to a Party with you by clicking \"Party\" in the navigation bar! Parties can go on quests, battle monsters, and cast skills to support each other. You can also join Guilds together (click on \"Guilds\" in the navigation bar). Guilds are chat rooms focusing on a shared interest or the pursuit of a common goal, and can be public or private. You can join as many Guilds as you'd like, but only one Party. For more detailed info, check out the wiki pages on [Parties](http://habitica.wikia.com/wiki/Party) and [Guilds](http://habitica.wikia.com/wiki/Guilds).", + "androidFaqAnswer5": "De beste manier is om ze uit te nodigen voor een Gezelschap met jou! Gezelschappen kunnen queestes doen, monsters bestrijden en vaardigheden uitspreken om elkaar te ondersteunen. Je kunt je ook samen aansluiten bij gildes (Sociaal > Gilden). Ga naar de [website](https://habitica.com/) om er eentje te creëren als je nog niet in een Gezelschap zit. Gilden zijn chatrooms die zicht richten op een gedeelde interesse of het nastreven van een zelfde doel en kunnen publiek of privé zijn. Je kunt je aansluiten bij zoveel Gilden als je wilt, maar slechts bij één Gezelschap.\n\nVoor meer gedetailleerde informatie, kun je kijken op de wiki-pagina's over [Gezelschappen](http://nl.habitica.wikia.com/wiki/Groep) en [Gilden](http://nl.habitica.wikia.com/wiki/Gilden).", + "webFaqAnswer5": "De beste manier is om ze uit te nodigen voor een groep met jou, via Sociaal > Gezelschap! Gezelschappen kunnen queestes doen, monsters bestrijden en vaardigheden uitspreken om elkaar te ondersteunen. Je kunt je ook samen aansluiten bij gildes (Sociaal > Gilden). Gilden zijn chatrooms die zicht richten op een gedeelde interesse of het nastreven van een zelfde doel en kunnen publiek of privé zijn. Je kunt je aansluiten bij zoveel gilden als je wilt, maar slechts bij één groep. Voor meer gedetailleerde informatie, kun je kijken op de wiki-pagina's over [Gezelschappen](http://nl.habitica.wikia.com/wiki/Groep) en [Gilden](http://nl.habitica.wikia.com/wiki/Gilden).", "faqQuestion6": "Hoe kan ik een huisdier of een rijdier krijgen?", "iosFaqAnswer6": "Op niveau 3 speel je het vondstensysteem vrij. Iedere keer dat je een taak voltooit, heb je een willekeurige kans om een ei, een uitbroeddrank of eten te ontvangen. Ze zullen opgeslagen worden in Menu > Boedel.\n\nOm een huisdier te laten uitkomen, heb je een ei en een uitbroeddrank nodig. Druk op het ei om de soort te bepalen en selecteer 'Laat ei uitkomen'. Kies daarna een uitbroeddrank om de kleur te bepalen! Ga naar Menu > Huisdieren om je avatar uit te rusten met je nieuwe huisdier door erop te drukken.\n\nJe kunt je huisdieren ook laten opgroeien tot rijdieren door ze te voederen onder Menu > Huisdieren. Druk op het huisdier en selecteer dan 'Huisdier Voeren'. Je zult een huisdier vele malen moeten voederen voordat het verandert in een rijdier, maar als je zijn favoriete voedsel kan bepalen, zal 'ie sneller groeien. Probeer het met vallen en opstaan of [zie het hier verklapt](http://nl.habitica.wikia.com/wiki/Voedsel#Voedsel_voorkeuren). Als je eenmaal een rijdier hebt, kun je het toevoegen aan je avatar onder Menu > Rijdieren.\n\nJe kunt ook eieren van queeste-huisdieren krijgen door bepaalde queesten te voltooien. (Lees hieronder meer over queesten.) ", "androidFaqAnswer6": "Op niveau 3 speel je het dropsysteem vrij. Iedere keer dat je een taak voltooit, heb je een willekeurige kans om een ei, een uitbroeddrank of eten te ontvangen. Ze zullen opgeslagen worden in Menu > Boedel.\n\nOm een huisdier te laten uitkomen, heb je een ei en een uitbroeddrank nodig. Druk op het ei om de soort te bepalen en selecteer 'Laat ei uitkomen met toverdrank'. Kies daarna een uitbroeddrank om de kleur te bepalen! Om je huisdier uit te rusten ga je naar Menu > Stal > Huisdieren, klik je op je het gewenste huisdier en selecteer je \"Gebruik\" (Je avatar wordt niet geüpdatet met de verandering).\n\nJe kunt je huisdieren ook laten opgroeien tot rijdieren door ze te voeren onder Menu > Stal > [> Huisdieren]. Druk op een huisdier en selecteer dan \"Voeren\"! Je zult een huisdier vele malen moeten voeren voordat het verandert in een rijdier, maar als je zijn favoriete voedsel kan bepalen, zal hij sneller groeien. Probeer het met vallen en opstaan of [zie het hier verklapt](http://nl.habitica.wikia.com/wiki/Voedsel#Voedsel_voorkeuren). Om je rijdier uit te rusten ga je naar Menu > Stal > Rijdieren, selecteer je een soort, klik je op je het gewenste rijdier en selecteer je \"Gebruik\" (Je avatar wordt niet geüpdatet met de verandering).\n\nJe kunt ook eieren van queeste-huisdieren krijgen door bepaalde queestes te voltooien. (Lees hieronder meer over queestes.) ", - "webFaqAnswer6": "At level 3, you will unlock the Drop System. Every time you complete a task, you'll have a random chance at receiving an egg, a hatching potion, or a piece of food. They will be stored under Inventory > Items. To hatch a Pet, you'll need an egg and a hatching potion. Once you have both an egg and a potion, go to Inventory > Stable to hatch your pet by clicking on its image. Once you've hatched a pet, you can equip it by clicking on it. You can also grow your Pets into Mounts by feeding them under Inventory > Stable. Drag a piece of food from the action bar at the bottom of the screen and drop it on a pet to feed it! You'll have to feed a Pet many times before it becomes a Mount, but if you can figure out its favorite food, it will grow more quickly. Use trial and error, or [see the spoilers here](http://habitica.wikia.com/wiki/Food#Food_Preferences). Once you have a Mount, click on it to equip it to your avatar. You can also get eggs for Quest Pets by completing certain Quests. (See below to learn more about Quests.)", + "webFaqAnswer6": "Vanaf niveau 3 speel je het Vondstensysteem vrij. Telkens wanneer je een taak voltooit heb je een willekeurige kans om een ei, een uitbroeddrank of eten te ontvangen. Ze zullen bewaard worden in Boedel > Artikelen. Om een huisdier uit te broeden heb je een ei en een uitbroeddrank nodig. Zodra je zowel een ei als een uitbroeddrankje hebt, ga naar Boedel > Stal om je huisdier uit te broeden door te klikken op de afbeelding. Zodra je een huisdier hebt uitgebroed, kan je deze gebruiken door erop te klikken. Je kan huisdieren ook in rijdieren groeien door ze te voeden via Boedel > Stal. Sleep een stuk Voedsel van de actierij aan de onderkant van het scherm en gebruik deze op een huisdier om het te voeden! Je zal een huisdier meerdere keren moeten voeden voordat het in een rijdier veranderd, maar als je het favoriete voedsel uitvogelt, groeit het sneller. Probeer meerdere malen, of [zie het hier verklapt](http://habitica.wikia.com/wiki/Food#Food_Preferences). Zodra je een rijdier hebt, klik erop om het te gebruiken voor je avatar. Je kan ook eieren krijgen voor queeste huisdieren door bepaalde queesten te voltooien. (Lees hieronder meer over queesten.) ", "faqQuestion7": "Hoe word ik een Krijger, Magiër, Dief of Heler?", "iosFaqAnswer7": "Je kan pas kiezen om een krijger, magiër, dief of heler te worden als je niveau 10 bereikt hebt. (Alle spelers beginnen standaard als krijger.) Elke klasse heeft andere uitrusting, verschillende vaardigheden die ze kunnen uitspreken na niveau 11 en meer verschillende voordelen. Krijgers kunnen veel schade aanrichten bij eindbazen, schade weerstaan van taken en hun gezelschap sterker maken. Magiërs kunnen ook makkelijk schade aanrichten bij eindbazen, evenals sneller niveaus behalen en extra mana geven aan de gezelschap. Dieven verdienen het meeste geld en vinden sneller voorwerpen en kunnen hun gezelschap hetzelfde laten doen. Tenslotte kunnen helers zichzelf, en mensen uit hun gezelschap, helen.\n\nAls je nog niet direct een klasse wilt kiezen -- als je bijvoorbeeld nog al je uitrusting wilt kopen voor je huidige klasse -- kun je op \"later beslissen\" klikken en later kiezen bij menu > kies klasse.", "androidFaqAnswer7": "Je kan pas kiezen om een krijger, magiër, dief of heler te worden als je niveau 10 bereikt hebt. (Alle spelers beginnen standaard als krijger.) Elke klasse heeft andere uitrusting, verschillende vaardigheden die ze kunnen uitspreken na niveau 11 en meer verschillende voordelen. Krijgers kunnen veel schade aanrichten bij eindbazen, schade weerstaan van taken en hun gezelschap sterker maken. Magiërs kunnen ook makkelijk schade aanrichten bij eindbazen, evenals sneller niveaus behalen en extra mana geven aan het gezelschap. Dieven verdienen het meeste geld en vinden sneller voorwerpen en kunnen hun gezelschap hetzelfde laten doen. Tenslotte kunnen helers zichzelf, en mensen uit hun gezelschap, helen.\n\nAls je nog niet direct een klasse wilt kiezen -- als je bijvoorbeeld nog al je uitrusting wilt kopen voor je huidige klasse -- kun je op \"afmelden\" klikken en later kiezen bij menu > kies klasse.", - "webFaqAnswer7": "At level 10, you can choose to become a Warrior, Mage, Rogue, or Healer. (All players start as Warriors by default.) Each Class has different equipment options, different Skills that they can cast after level 11, and different advantages. Warriors can easily damage Bosses, withstand more damage from their tasks, and help make their party tougher. Mages can also easily damage Bosses, as well as level up quickly and restore Mana for their party. Rogues earn the most Gold and find the most item drops, and they can help their party do the same. Finally, Healers can heal themselves and their party members. If you don't want to choose a Class immediately -- for example, if you are still working to buy all the gear of your current class -- you can click \"Opt Out\" and re-enable it later under Settings.", - "faqQuestion8": "What is the blue Stat bar that appears in the Header after level 10?", + "webFaqAnswer7": "Je kan pas kiezen om een krijger, magiër, dief of heler te worden als je niveau 10 bereikt hebt. (Alle spelers beginnen standaard als krijger.) Elke klasse heeft andere uitrusting, verschillende vaardigheden die ze kunnen uitspreken na niveau 11 en meer verschillende voordelen. Krijgers kunnen veel schade aanrichten bij eindbazen, schade weerstaan van taken en hun groep sterker maken. Magiërs kunnen ook makkelijk schade aanrichten bij eindbazen, evenals sneller niveaus behalen en extra mana geven aan de groep. Dieven verdienen het meeste geld en vinden sneller voorwerpen en kunnen hun groep hetzelfde laten doen. Tenslotte kunnen helers zichzelf, en mensen uit hun groep, helen. Als je nog niet direct een klasse wilt kiezen -- als je bijvoorbeeld nog al je uitrusting wilt kopen voor je huidige klasse -- kun je op \"later beslissen\" klikken en later kiezen bij Instellingen.", + "faqQuestion8": "Wat is de blauwe statusbalk die in de bovenbalk verschijnt na niveau 10?", "iosFaqAnswer8": "The blauwe balk die verscheen toen je niveau 10 bereikte en een klasse koos, is je mana-balk. Als je een hoger niveau bereikt, speel je speciale vaardigheden vrij die mana kosten om te gebruiken. Elke klasse heeft andere vaardigheden, die vanaf niveau 11 verschijnen onder Menu > Gebruik vaardigheden. Anders dan bij je gezondheidsbalk, reset je mana-balk niet als je een nieuw niveau bereikt. In plaats daarvan krijg je meer mana wanneer je goede gewoonten, dagelijkse taken en to-do's doet en verlies je het wanneer je hebt toegegeven aan slechte gewoonten. Je krijgt 's nachts ook wat mana terug -- hoe meer dagelijkse taken je voltooide, hoe meer je verdient.", "androidFaqAnswer8": "De blauwe balk die tevoorschijn komt wanneer je niveau 10 behaalt en een klasse hebt gekozen, is je Manabalk. Elke keer dat je een niveau stijgt, speel je speciale vaardigheden vrij die mana kosten om te gebruiken. Elke klasse heeft andere vaardigheden, die na niveau 11 onder Menu > Vaardigheden verschijnen. Je manabalk reset niet wanneer je een niveau stijgt, zoals je gezondheidsbalk. In plaats daarvan krijg je mana als je goede gewoontes, dagelijkse taken en to-do's voltooit en verlies je mana wanneer je terugvalt in slechte gewoontes. Je krijgt ook elke dag wat mana terug -- des te meer dagelijkse taken je voltooit, des te meer je zult krijgen.", - "webFaqAnswer8": "The blue bar that appeared when you hit level 10 and chose a Class is your Mana bar. As you continue to level up, you will unlock special Skills that cost Mana to use. Each Class has different Skills, which appear after level 11 in the action bar at the bottom of the screen. Unlike your Health bar, your Mana bar does not reset when you gain a level. Instead, Mana is gained when you complete good Habits, Dailies, and To-Dos, and lost when you indulge bad Habits. You'll also regain some Mana overnight -- the more Dailies you completed, the more you will gain.", + "webFaqAnswer8": "The blauwe balk die verscheen toen je niveau 10 bereikte en een klasse koos, is je mana-balk. Als je een hoger niveau bereikt, speel je speciale vaardigheden vrij die mana kosten om te gebruiken. Elke klasse heeft andere vaardigheden, die vanaf niveau 11 verschijnen in de actiebalk onderin het scherm. Anders dan bij je gezondheidsbalk, reset je mana-balk niet als je een nieuw niveau bereikt. In plaats daarvan krijg je meer mana wanneer je goede gewoonten, dagelijkse taken en to-do's doet en verlies je het wanneer je hebt toegegeven aan slechte gewoonten. Je krijgt 's nachts ook wat mana terug -- hoe meer dagelijkse taken je voltooide, hoe meer je verdient.", "faqQuestion9": "Hoe vecht ik tegen monsters en ga ik op queesten?", - "iosFaqAnswer9": "First, you need to join or start a Party (see above). Although you can battle monsters alone, we recommend playing in a group, because this will make Quests much easier. Plus, having a friend to cheer you on as you accomplish your tasks is very motivating!\n\n Next, you need a Quest Scroll, which are stored under Menu > Items. There are three ways to get a scroll:\n\n - At level 15, you get a Quest-line, aka three linked quests. More Quest-lines unlock at levels 30, 40, and 60 respectively. \n - When you invite people to your Party, you'll be rewarded with the Basi-List Scroll!\n - You can buy Quests from the Quests Shop for Gold and Gems.\n\n To battle the Boss or collect items for a Collection Quest, simply complete your tasks normally, and they will be tallied into damage overnight. (Reloading by pulling down on the screen may be required to see the Boss's health bar go down.) If you are fighting a Boss and you missed any Dailies, the Boss will damage your Party at the same time that you damage the Boss. \n\n After level 11 Mages and Warriors will gain Skills that allow them to deal additional damage to the Boss, so these are excellent classes to choose at level 10 if you want to be a heavy hitter.", - "androidFaqAnswer9": "First, you need to join or start a Party (see above). Although you can battle monsters alone, we recommend playing in a group, because this will make Quests much easier. Plus, having a friend to cheer you on as you accomplish your tasks is very motivating!\n\n Next, you need a Quest Scroll, which are stored under Menu > Items. There are three ways to get a scroll:\n\n - At level 15, you get a Quest-line, aka three linked quests. More Quest-lines unlock at levels 30, 40, and 60 respectively. \n - When you invite people to your Party, you'll be rewarded with the Basi-List Scroll!\n - You can buy Quests from the Quests Shop for Gold and Gems.\n\n To battle the Boss or collect items for a Collection Quest, simply complete your tasks normally, and they will be tallied into damage overnight. (Reloading by pulling down on the screen may be required to see the Boss's health bar go down.) If you are fighting a Boss and you missed any Dailies, the Boss will damage your Party at the same time that you damage the Boss. \n\n After level 11 Mages and Warriors will gain Skills that allow them to deal additional damage to the Boss, so these are excellent classes to choose at level 10 if you want to be a heavy hitter.", - "webFaqAnswer9": "First, you need to join or start a Party by clicking \"Party\" in the navigation bar. Although you can battle monsters alone, we recommend playing in a group, because this will make quests much easier. Plus, having a friend to cheer you on as you accomplish your tasks is very motivating! Next, you need a Quest Scroll, which are stored under Inventory > Quests. There are four ways to get a scroll:\n * When you invite people to your Party, you'll be rewarded with the Basi-List Scroll!\n * At level 15, you get a Quest-line, i.e., three linked quests. More Quest-lines unlock at levels 30, 40, and 60 respectively.\n * You can buy Quests from the Quests Shop (Shops > Quests) for Gold and Gems.\n * When you check in to Habitica a certain number of times, you'll be rewarded with Quest Scrolls. You earn a Scroll during your 1st, 7th, 22nd, and 40th check-ins.\n To battle the Boss or collect items for a Collection Quest, simply complete your tasks normally, and they will be tallied into damage overnight. (Reloading may be required to see the Boss's Health bar go down.) If you are fighting a Boss and you missed any Dailies, the Boss will damage your Party at the same time that you damage the Boss. After level 11 Mages and Warriors will gain Skills that allow them to deal additional damage to the Boss, so these are excellent classes to choose at level 10 if you want to be a heavy hitter.", + "iosFaqAnswer9": "Eerst moet je je aansluiten bij een groep of er een beginnen (zie hierboven). Hoewel je monsters alleen kunt bestrijden, raden we spelen in een groep aan, omdat het de queesten veel makkelijker maakt. Plus, een vriend hebben om je aan te moedigen als je je taken voltooid is erg motiverend!\n\nVervolgens heb je een queeste-perkamentrol nodig, die zijn opgeslagen onder Menu > Voorwerpen. Er zijn drie manieren om een perkamentrol te krijgen:\n\n- Op niveau 15 krijg je een queeste-reeks, oftewel drie gelieerde queesten. Meer queeste-reeksen speel je vrij op niveau 30, 40 en 60.\n- Als je vrienden uitnodigt voor je groep, ontvang je de Basi-Lijst perkamentrol!\n- Je kunt queesten kopen van de queestenwinkel voor Goud en Edelstenen.\n\nOm de baas te bestrijden of voorwerpen te verzamelen voor een Verzamel-queeste, moet je gewoon je taken voltooien, 's nachts zal de schade die ze doen berekend worden. (Herladen door het scherm naar beneden te trekken kan nodig zijn om de levensbalk van de baas omlaag te zien gaan.) Als je een baas aan het bevechten bent en je hebt dagelijkse taken gemist, dan schaadt de baas je groep op hetzelfde moment als jullie de baas schaden.\n\nNa niveau 11 krijgen magiërs en krijgers vaardigheden die ervoor zorgen dat ze extra schade kunnen doen aan de baas, dus dit zijn goede klassen om te kiezen op niveau 10 als je rake klappen uit wilt delen.", + "androidFaqAnswer9": "Eerst moet je je aansluiten bij een groep of er een beginnen (zie hierboven). Hoewel je monsters alleen kunt bestrijden, raden we spelen in een groep aan, omdat het de queesten veel makkelijker maakt. Plus, een vriend hebben om je aan te moedigen als je je taken voltooid is erg motiverend!\n\nVervolgens heb je een queeste-perkamentrol nodig, die zijn opgeslagen onder Menu > Voorwerpen. Er zijn drie manieren om een perkamentrol te krijgen:\n\n- Op niveau 15 krijg je een queeste-reeks, oftewel drie gelieerde queesten. Meer queeste-reeksen speel je vrij op niveau 30, 40 en 60.\n- Als je vrienden uitnodigt voor je groep, ontvang je de Basi-Lijst perkamentrol!\n- Je kunt queesten kopen van de queestenwinkel voor Goud en Edelstenen.\n\nOm de baas te bestrijden of voorwerpen te verzamelen voor een Verzamel-queeste, moet je gewoon je taken voltooien, 's nachts zal de schade die ze doen berekend worden. (Herladen door het scherm naar beneden te trekken kan nodig zijn om de levensbalk van de baas omlaag te zien gaan.) Als je een baas aan het bevechten bent en je hebt dagelijkse taken gemist, dan schaadt de baas je groep op hetzelfde moment als jullie de baas schaden.\n\nNa niveau 11 krijgen magiërs en krijgers vaardigheden die ervoor zorgen dat ze extra schade kunnen doen aan de baas, dus dit zijn goede klassen om te kiezen op niveau 10 als je rake klappen uit wilt delen.", + "webFaqAnswer9": "Eerst moet je je aansluiten bij een groep of er een beginnen door te klikken op \"Gezelschap\" in the navigatiebalk. Hoewel je monsters alleen kunt bestrijden, raden we spelen in een groep aan, omdat het queesten veel makkelijker maakt. Plus, een vriend hebben om je aan te moedigen als je je taken voltooid is erg motiverend! Vervolgens heb je een queeste-perkamentrol nodig, die zijn opgeslagen onder Menu > Voorwerpen. Er zijn drie manieren om een perkamentrol te krijgen:\n* Als je vrienden uitnodigt voor je groep, ontvang je de Basi-Lijst perkamentrol!\n* Op niveau 15 krijg je een queeste-reeks, oftewel drie gelieerde queesten. Meer queeste-reeksen speel je vrij op niveau 30, 40 en 60.\n* Je kunt queesten kopen van de queestenwinkel (Boedel > Queesten) voor Goud en Edelstenen.\n* Wanneer je een aantal dagen inlogt op Habitica zul je beloont worden met perkamentrollen. Je verdient een perkamentrol tijdens je 1ste, 7de, 22e en 40e dag.\nOm de Baas te bestrijden of voorwerpen te verzamelen voor een Verzamel-queeste, moet je gewoon je taken voltooien, 's nachts zal de schade die ze doen berekend worden. (Verversen van de pagina kan nodig zijn om de levensbalk van de baas omlaag te zien gaan.) Als je een baas aan het bevechten bent en je hebt dagelijkse taken gemist, dan schaadt de baas je groep op hetzelfde moment als jullie de baas schaden. Na niveau 11 krijgen magiërs en krijgers vaardigheden die ervoor zorgen dat ze extra schade kunnen doen aan de baas, dus dit zijn goede klassen om te kiezen op niveau 10 als je rake klappen uit wilt delen.", "faqQuestion10": "Wat zijn edelstenen en hoe krijg ik ze?", - "iosFaqAnswer10": "Gems are purchased with real money by tapping on the Gem icon in the header. When people buy Gems, they are helping us to keep the site running. We're very grateful for their support!\n\n In addition to buying Gems directly, there are three other ways players can gain Gems:\n\n * Win a Challenge that has been set up by another player. Go to Social > Challenges to join some.\n * Subscribe and unlock the ability to buy a certain number of Gems per month.\n * Contribute your skills to the Habitica project. See this wiki page for more details: [Contributing to Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica).\n\n Keep in mind that items purchased with Gems do not offer any statistical advantages, so players can still make use of the app without them!", - "androidFaqAnswer10": "Gems are purchased with real money by tapping on the Gem icon in the header. When people buy Gems, they are helping us to keep the site running. We're very grateful for their support!\n\n In addition to buying Gems directly, there are three other ways players can gain Gems:\n\n * Win a Challenge that has been set up by another player. Go to Social > Challenges to join some.\n * Subscribe and unlock the ability to buy a certain number of Gems per month.\n * Contribute your skills to the Habitica project. See this wiki page for more details: [Contributing to Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica).\n\n Keep in mind that items purchased with Gems do not offer any statistical advantages, so players can still make use of the app without them!", - "webFaqAnswer10": "Gems are purchased with real money, although [subscribers](https://habitica.com/user/settings/subscription) can purchase them with Gold. When people subscribe or buy Gems, they are helping us to keep the site running. We're very grateful for their support! In addition to buying Gems directly or becoming a subscriber, there are two other ways players can gain Gems:\n* Win a Challenge that has been set up by another player. Go to Challenges > Discover Challenges to join some.\n * Contribute your skills to the Habitica project. See this wiki page for more details: [Contributing to Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica). Keep in mind that items purchased with Gems do not offer any statistical advantages, so players can still make use of the site without them!", + "iosFaqAnswer10": "Edelstenen kunnen gekocht worden met echt geld, door op het Edelstenen-icoon te klikken in de menubalk. Wanneer mensen Edelstenen kopen, helpen ze ons om de site draaiende te houden. We zijn erg dankbaar voor hun steun!\n\nBuiten ze direct te kopen, zijn er drie andere manieren waarop spelers Edelstenen kunnen krijgen:\n\n* Win een uitdaging die door een andere speler is opgezet. Ga naar Sociaal > Uitdagingen om aan een aantal deel te nemen. \n* Abonneer en ontgrendel de mogelijkheid om een aantal Edelstenen per maand met Goud te kopen.\n* Draag met je vaardigheden bij aan het Habitica-project. Bekijk deze wiki voor meer details: [Bijdragen aan Habitica](http://nl.habitica.wikia.com/wiki/Bijdragen_aan_Habitica).\n\nHoudt in gedachten dat voorwerpen die gekocht zijn met Edelstenen geen statistische voordelen bieden, zodat spelers ook zonder ze van de app gebruik kunnen maken!", + "androidFaqAnswer10": "Edelstenen kunnen gekocht worden met echt geld, door op het Edelstenen-icoon te klikken in de menubalk. Wanneer mensen Edelstenen kopen, helpen ze ons om de site draaiende te houden. We zijn erg dankbaar voor hun steun!\n\nBuiten ze direct te kopen, zijn er drie andere manieren waarop spelers Edelstenen kunnen krijgen:\n\n* Win een uitdaging die door een andere speler is opgezet. Ga naar Sociaal > Uitdagingen om aan een aantal deel te nemen. \n* Abonneer en ontgrendel de mogelijkheid om een aantal Edelstenen per maand met Goud te kopen.\n* Draag met je vaardigheden bij aan het Habitica-project. Bekijk deze wiki voor meer details: [Bijdragen aan Habitica](http://nl.habitica.wikia.com/wiki/Bijdragen_aan_Habitica).\n\nHoudt in gedachten dat voorwerpen die gekocht zijn met Edelstenen geen statistische voordelen bieden, zodat spelers ook zonder ze van de app gebruik kunnen maken!", + "webFaqAnswer10": "Edelstenen kunnen gekocht worden met echt geld, hoewel [abonnees]((https://habitica.com/user/settings/subscription) ze kunnen kopen met Goud. Wanneer mensen zich abonneren of Edelstenen kopen, helpen ze ons de site draaiende te houden. We zijn erg dankbaar voor hun steun! Buiten ze direct te kopen of een abonnee te worden, zijn er twee andere manieren waarop spelers Edelstenen kunnen krijgen:\n* Win een uitdaging die door een andere speler is opgezet. Ga naar Sociaal > Ontdek Uitdagingen om aan een aantal deel te nemen.\n* Draag met je vaardigheden bij aan het Habitica-project. Bekijk deze wiki voor meer details: [Bijdragen aan Habitica](http://nl.habitica.wikia.com/wiki/Bijdragen_aan_Habitica). Houdt in gedachten dat voorwerpen die gekocht zijn met Edelstenen geen statistische voordelen bieden, zodat spelers ook zonder ze van de app gebruik kunnen maken!", "faqQuestion11": "Hoe rapporteer ik een bug of vraag ik een feature aan?", - "iosFaqAnswer11": "You can report a bug, request a feature, or send feedback under Menu > About > Report a Bug and Menu > About > Send Feedback! We'll do everything we can to assist you.", + "iosFaqAnswer11": "Je kunt een bug rapporteren, een functionaliteit aan vragen of feedback versturen onder Menu > Over > Fout melden en Menu > Over > Stuur feedback! We zullen alles doen wat we kunnen om je te helpen.", "androidFaqAnswer11": "Je kunt een bug rapporteren, een functionaliteit aanvragen of feedback versturen onder Menu > Fout melden en Menu > Stuur feedback! We zullen alles doen wat we kunnen om je te helpen.", - "webFaqAnswer11": "To report a bug, go to [Help > Report a Bug](https://habitica.com/groups/guild/a29da26b-37de-4a71-b0c6-48e72a900dac) and read the points above the chat box. If you're unable to log in to Habitica, send your login details (not your password!) to [<%= techAssistanceEmail %>](<%= wikiTechAssistanceEmail %>). Don't worry, we'll get you fixed up soon! Feature requests are collected on Trello. Go to [Help > Request a Feature](https://trello.com/c/odmhIqyW/440-read-first-table-of-contents) and follow the instructions. Ta-da!", + "webFaqAnswer11": "Om een fout te melden, ga naar [Help > Fout melden] (https://habitica.com/groups/guild/a29da26b-37de-4a71-b0c6-48e72a900dac) en lees de puntjes boven de chat. Als je je niet kan aanmelden op Habitica, stuur dan je login gegevens (niet je wachtwoord!) naar [<%= techAssistanceEmail %>](<%= wikiTechAssistanceEmail %>). Maak je geen zorgen, we zullen het snel oplossen! Verzoeken voor functies worden verzameld op Trello. Ga naar [Help > Functie aanvragen](https://trello.com/c/odmhIqyW/440-read-first-table-of-contents) en volg de instructies. Ta-da!", "faqQuestion12": "Hoe strijd ik tegen een Wereldbaas?", "iosFaqAnswer12": "Wereldbazen zijn uitzonderlijke monsters die verschijnen in de Herberg. Alle actieve gebruikers vechten automatisch tegen de Wereldbaas, hun taken en eigenschappen beschadigen deze baas zoals normaal. \n\nJe kunt tegelijkertijd een normale queeste doorlopen. Je taken en eigenschappen tellen dan zowel tegen de Wereldbaas als tegen de baas of verzamelqueeste van je gezelschap.\n\nEen wereldbaas zal jou of je account nooit beschadigen. In plaats daarvan heeft deze een furiebalk die zich vult wanneer gebruikers hun dagelijkse taken niet doen. Als de furiebalk gevuld is, valt de Baas een van de NPC’s op de site aan. Hierdoor verandert de afbeelding de betreffende NPC.\n\nJe kunt meer lezen over [wereldbazen uit het verleden](http://nl.habitica.wikia.com/wiki/Wereldbazen)", "androidFaqAnswer12": "Wereldbazen zijn uitzonderlijke monsters die verschijnen in de Herberg. Alle actieve gebruikers vechten automatisch tegen de Wereldbaas, hun taken en eigenschappen beschadigen deze baas zoals normaal. \n\nJe kunt tegelijkertijd een normale queeste doorlopen. Je taken en eigenschappen tellen dan zowel tegen de Wereldbaas als tegen de baas of verzamelqueeste van je gezelschap.\n\nEen wereldbaas zal jou of je account nooit beschadigen. In plaats daarvan heeft deze een furiebalk die zich vult wanneer gebruikers hun dagelijkse taken niet doen. Als de furiebalk gevuld is, valt de Baas een van de NPC’s op de site aan. Hierdoor verandert de afbeelding de betreffende NPC.\n\nJe kunt meer lezen over [wereldbazen uit het verleden](http://nl.habitica.wikia.com/wiki/Wereldbazen) op de wiki.", "webFaqAnswer12": "Wereldbazen zijn uitzonderlijke monsters die verschijnen in de Herberg. Alle actieve gebruikers vechten automatisch tegen de Wereldbaas, hun taken en eigenschappen beschadigen deze baas zoals normaal. \n\nJe kunt tegelijkertijd een normale queeste doorlopen. Je taken en eigenschappen tellen dan zowel tegen de Wereldbaas als tegen de baas of verzamelqueeste van je gezelschap.\n\nEen wereldbaas zal jou of je account nooit beschadigen. In plaats daarvan heeft deze een furiebalk die zich vult wanneer gebruikers hun dagelijkse taken niet doen. Als de furiebalk gevuld is, valt de Baas een van de NPC’s op de site aan. Hierdoor verandert de afbeelding de betreffende NPC.\n\nJe kunt meer lezen over [wereldbazen uit het verleden](http://nl.habitica.wikia.com/wiki/Wereldbazen) op de wiki.", "iosFaqStillNeedHelp": "Als je een vraag hebt die niet in deze lijst of op [Wiki FAQ](http://nl.habitica.wikia.com/wiki/Veel_Gestelde_Vragen) staat, kom het dan vragen in de Herberg bij Menu > Herberg! Wij helpen je graag verder.", "androidFaqStillNeedHelp": "Als je een vraag hebt die niet op deze lijst of op de [Wiki FAQ](http://nl.habitica.wikia.com/wiki/Veel_Gestelde_Vragen) staat, kom het dan vragen in de Herberg bij Menu > Herberg! Wij helpen je graag verder.", - "webFaqStillNeedHelp": "If you have a question that isn't on this list or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), come ask in the [Habitica Help guild](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! We're happy to help." + "webFaqStillNeedHelp": "Als je een vraag hebt die niet op deze lijst of op de [Wiki FAQ](http://nl.habitica.wikia.com/wiki/Veel_Gestelde_Vragen) staat, vraag het dan in de [Habitica Help gilde](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! We willen je graag helpen." } \ No newline at end of file diff --git a/website/common/locales/nl/front.json b/website/common/locales/nl/front.json index 4110cdafb2..63aee69970 100644 --- a/website/common/locales/nl/front.json +++ b/website/common/locales/nl/front.json @@ -30,7 +30,7 @@ "companyAbout": "Hoe het werkt", "companyBlog": "Blog", "devBlog": "Ontwikkelaarsblog", - "companyContribute": "Contribute", + "companyContribute": "Bijdragen", "companyDonate": "Doneer", "companyPrivacy": "Privacy", "companyTerms": "Voorwaarden", @@ -41,7 +41,7 @@ "elmiQuote": "Elke ochtend heb ik zin om ' s ochtends op te staan zodat ik wat goud kan verdienen!", "forgotPassword": "Wachtwoord vergeten?", "emailNewPass": "Wachtwoord herstel link e-mailen", - "forgotPasswordSteps": "Enter the email address you used to register your Habitica account.", + "forgotPasswordSteps": "Voer je e-mailadres die je hebt gebruikt voor het registreren van je Habitica-account.", "sendLink": "Verstuur lin", "evagantzQuote": "Mijn allereerste tandartsafspraak waar de mondhygiënist daadwerkelijk enthousiast was over mijn flosgewoontes. Bedankt [Habitica]!", "examplesHeading": "Spelers gebruiken Habitica voor...", @@ -103,7 +103,7 @@ "marketing1Lead2Title": "Krijg coole uitrusting", "marketing1Lead2": "Verbeter je gewoonten om je avatar te verbeteren. Pronk met de geweldige uitrusting die je hebt verdiend!", "marketing1Lead3Title": "Maak kans om prijzen te vinden", - "marketing1Lead3": "For some, it's the gamble that motivates them: a system called \"stochastic rewards.\" Habitica accommodates all reinforcement and punishment styles: positive, negative, predictable, and random.", + "marketing1Lead3": "Voor sommigen is het motiverend om willekeurige beloningen te krijgen: een systeem dat \"stochastische beloning\" heet. Habitica gebruikt alle typen motiveringstactieken: positief, negatief, voorspelbaar en willekeurig.", "marketing2Header": "Doe wedstrijden met vrienden, sluit je aan bij interessegroepen", "marketing2Lead1Title": "Sociale productiviteit", "marketing2Lead1": "Hoewel je Habitica in je eentje kunt spelen, wordt het pas echt leuk als je gaat samenwerken, concurreren en elkaar bij de les houdt. Het meest effectieve deel van ieder zelfverbeteringsprogramma is sociale verantwoordelijkheid en welke omgeving is nou beter voor verantwoording af te leggen en competitie dan een computerspel?", diff --git a/website/common/locales/nl/gear.json b/website/common/locales/nl/gear.json index d4377b2c67..2484b695ac 100644 --- a/website/common/locales/nl/gear.json +++ b/website/common/locales/nl/gear.json @@ -346,6 +346,8 @@ "weaponArmoireCobblersHammerNotes": "This hammer is specially made for leatherwork. It can do a real number on a red Daily in a pinch, though. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 2 of 3).", "weaponArmoireGlassblowersBlowpipeText": "Glassblower's Blowpipe", "weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Increases Strength by <%= str %>. Enchanted Armoire: Glassblower Set (Item 1 of 4).", + "weaponArmoirePoisonedGobletText": "Poisoned Goblet", + "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).", "armor": "wapenrusting", "armorCapitalized": "Pantser", "armorBase0Text": "Eenvoudige kleding", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "The heat and light generated by this magic armor will warm your heart but never burn your skin! Confers no benefit. December 2017 Subscriber Item.", "armorMystery201802Text": "Liefdes insect harnas", "armorMystery201802Notes": "This shiny armor reflects your strength of heart and infuses it into any Habiticans nearby who may need encouragement! Confers no benefit. February 2018 Subscriber Item.", + "armorMystery201806Text": "Alluring Anglerfish Tail", + "armorMystery201806Notes": "This sinuous tail features glowing spots to light your way through the deep. Confers no benefit. June 2018 Subscriber Item.", "armorMystery301404Text": "Steampunkpak", "armorMystery301404Notes": "Net en zwierig, niet? Verleent geen voordelen. Abonnee-uitrusting februari 3015.", "armorMystery301703Text": "Steampunk pauw jurk", @@ -742,6 +746,8 @@ "armorArmoireGlassblowersCoverallsNotes": "These coveralls will protect you while you're making masterpieces with hot molten glass. Increases Constitution by <%= con %>. Enchanted Armoire: Glassblower Set (Item 2 of 4).", "armorArmoireBluePartyDressText": "Blue Party Dress", "armorArmoireBluePartyDressNotes": "You're perceptive, tough, smart, and so fashionable! Increases Perception, Strength, and Constitution by <%= attrs %> each. Enchanted Armoire: Blue Hairbow Set (Item 2 of 2).", + "armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown", + "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Increases Perception by <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).", "headgear": "helm", "headgearCapitalized": "Hoofdbescherming", "headBase0Text": "Geen hoofduitrusting ", @@ -1054,6 +1060,8 @@ "headMystery201803Notes": "Although its appearance is quite decorative, you can engage the wings on this circlet for extra lift! Confers no benefit. March 2018 Subscriber Item.", "headMystery201805Text": "Phenomenal Peacock Helm", "headMystery201805Notes": "This helm will make you the proudest and prettiest (possibly also the loudest) bird in town. Confers no benefit. May 2018 Subscriber Item.", + "headMystery201806Text": "Alluring Anglerfish Helm", + "headMystery201806Notes": "The mesmerizing light atop this helm will call all the creatures of the sea to your side. We urge you to use your glowy powers of attraction for good! Confers no benefit. June 2018 Subscriber Item.", "headMystery301404Text": "Chique hoge hoed", "headMystery301404Notes": "Een chique hoge hoed voor lieden van deftigen huize! Abonnee-uitrusting januari 3015. Verleent geen voordelen.", "headMystery301405Text": "Standaard hoge hoed", @@ -1154,6 +1162,8 @@ "headArmoireBigWigNotes": "Some powdered wigs are for looking more authoritative, but this one is just for laughs! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.", "headArmoireGlassblowersHatText": "Glassblower's Hat", "headArmoireGlassblowersHatNotes": "This hat mainly just looks good with your other protective glassblowing gear! Increases Perception by <%= per %>. Enchanted Armoire: Glassblower Set (Item 3 of 4).", + "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress", + "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).", "offhand": "off-hand item", "offhandCapitalized": "Off-Hand Item", "shieldBase0Text": "No Off-Hand Equipment", @@ -1368,6 +1378,8 @@ "shieldArmoireFancyShoeNotes": "A very special shoe you're working on. It's fit for royalty! Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 3 of 3).", "shieldArmoireFancyBlownGlassVaseText": "Fancy Blown Glass Vase", "shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Increases Intelligence by <%= int %>. Enchanted Armoire: Glassblower Set (Item 4 of 4).", + "shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield", + "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).", "back": "Lichaamsaccessoire", "backCapitalized": "Rug Accessoire ", "backBase0Text": "Geen rugaccessoire", diff --git a/website/common/locales/nl/groups.json b/website/common/locales/nl/groups.json index 6da8420f7a..e0332da6ad 100644 --- a/website/common/locales/nl/groups.json +++ b/website/common/locales/nl/groups.json @@ -134,12 +134,11 @@ "PMPlaceholderDescription": "Select a conversation on the left", "PMPlaceholderTitleRevoked": "Your chat privileges have been revoked", "PMPlaceholderDescriptionRevoked": "You are not able to send private messages because your chat privileges have been revoked. If you have questions or concerns about this, please email admin@habitica.com to discuss it with the staff.", - "PMEnable": "Enable Private Messages", - "PMDisable": "Disable Private Messages", - "PMEnabledOptPopoverText": "When Private Messages are disabled, you still can send messages, but no one can send them to you.", - "PMDisabledOptPopoverText": "Enable this option to be able to receive messages.", + "PMReceive": "Receive Private Messages", + "PMEnabledOptPopoverText": "Private Messages are enabled. Users can contact you via your profile.", + "PMDisabledOptPopoverText": "Private Messages are disabled. Enable this option to allow users to contact you via your profile.", "PMDisabledCaptionTitle": "Private Messages are disabled", - "PMDisabledCaptionText": "You still can send messages, but no one can send them to you.", + "PMDisabledCaptionText": "You can still send messages, but no one can send them to you.", "block": "Blokkeren", "unblock": "Deblokkeren", "pm-reply": "Beantwoorden", diff --git a/website/common/locales/nl/limited.json b/website/common/locales/nl/limited.json index e04b4265f1..290b1f3f08 100644 --- a/website/common/locales/nl/limited.json +++ b/website/common/locales/nl/limited.json @@ -32,7 +32,7 @@ "seasonalShopSummerText": "Fijn Zomer Spetterfestijn gewenst! Wil je wat zeldzame voorwerpen kopen? Ze zijn slechts tot 31 juli verkrijgbaar!", "seasonalShopFallText": "Fijn Najaarsvolksfeest gewenst! Wil je wat zeldzame voorwerpen kopen? Ze zijn slechts tot 31 oktober verkrijgbaar!", "seasonalShopWinterText": "Fijne winter wonderland gewenst!! Wil je wat speciale items kopen? Ze zijn alleen beschikbaar tot 32 januari!", - "seasonalShopSpringText": "Happy Spring Fling!! Would you like to buy some rare items? They’ll only be available until April 30th!", + "seasonalShopSpringText": "Fijn Lentefeest gewenst!! Wil je wat zeldzame artikelen kopen? Ze zijn alleen verkrijgbaar tot 30 april!", "seasonalShopFallTextBroken": "Oh... Welkom in de Seizoenswinkel... We hebben op het moment najaars spullen in voorraad, ofzo... Alles is te koop tijdens het Najaars Volksfeest-evenement ieder jaar, maar we zijn maar open tot 31 oktober... Zorg maar dat je inslaat anders zou je moeten wachten... wachten... en nog eens wachten... *zucht*", "seasonalShopBrokenText": "Mijn paviljoen!!!!!!! Mijn versieringen!!!! Oooo, de Harteloze heeft alles verwoest :( Alsjeblieft help me het beest te verslaan in de Herberg zodat ik alles kan herbouwen.", "seasonalShopRebirth": "Als je eerder uitrusting hiervan in het verleden hebt gekocht, maar momenteel niet bezit, kun je deze opnieuw kopen in de Beloningen-kolom. Je zult enkel de voorwerpen voor je huidige klasse (Krijger is standaard) kunnen kopen, maar vrees niet, de andere klasse-specifieke voorwerpen zullen beschikbaar worden als je naar die klasse wisselt.", @@ -112,7 +112,7 @@ "fall2017HabitoweenSet": "Habitoween Krijger (Krijger)", "fall2017MasqueradeSet": "Gemaskerde Magiër (Magiër)", "fall2017HauntedHouseSet": "Spookhuisheler (Heler)", - "fall2017TrickOrTreatSet": "Trick or Treat Rogue (Rogue)", + "fall2017TrickOrTreatSet": "Snoep of je Leven Dief (Dief)", "winter2018ConfettiSet": "Confetti magiër", "winter2018GiftWrappedSet": "Pakjeskrijger", "winter2018MistletoeSet": "Maretak Heler", @@ -121,23 +121,23 @@ "spring2018TulipMageSet": "Tulpenmagiër (Magiër)", "spring2018GarnetHealerSet": "Granaten genezer", "spring2018DucklingRogueSet": "Eendjesdief (Dief)", - "summer2018BettaFishWarriorSet": "Betta Fish Warrior (Warrior)", - "summer2018LionfishMageSet": "Lionfish Mage (Mage)", - "summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)", - "summer2018FisherRogueSet": "Fisher-Rogue (Rogue)", + "summer2018BettaFishWarriorSet": "Siamese Kempvis Krijger (Krijger)", + "summer2018LionfishMageSet": "Koraalduivel Magiër (Magiër)", + "summer2018MerfolkMonarchSet": "Meermens Majesteit (Heler)", + "summer2018FisherRogueSet": "Vissersdief (Dief)", "eventAvailability": "Verkrijgbaar voor aankoop tot <%=date(locale) %>.", "dateEndMarch": "30 april", "dateEndApril": "19 april", - "dateEndMay": "May 31", + "dateEndMay": "31 mei", "dateEndJune": "14 juni", - "dateEndJuly": "29 juli", + "dateEndJuly": "31 juli", "dateEndAugust": "31 augustus", "dateEndOctober": "31 oktober", "dateEndNovember": "30 november", "dateEndJanuary": "31 januari", "dateEndFebruary": "28 februari", "winterPromoGiftHeader": "GEEF EEN ABONNEMENT EN KRIJG ER ZELF OOK EEN!", - "winterPromoGiftDetails1": "Until January 12th only, when you gift somebody a subscription, you get the same subscription for yourself for free!", - "winterPromoGiftDetails2": "Please note that if you or your gift recipient already have a recurring subscription, the gifted subscription will only start after that subscription is cancelled or has expired. Thanks so much for your support! <3", + "winterPromoGiftDetails1": "Alleen tot 12 januari, wanneer je iemand een abonnement schenkt, krijg je hetzelfde abonnenemt gratis voor jezelf!", + "winterPromoGiftDetails2": "Denk eraan dat als jij of je geschenk ontvanger al een terugkerend abonnenemt bevat, het geschonken abonnement pas start nadat dat abonnement is afgezegd of afgelopen is. Hartelijk dank voor je steun! <3", "discountBundle": "bundel" } \ No newline at end of file diff --git a/website/common/locales/nl/loadingscreentips.json b/website/common/locales/nl/loadingscreentips.json index f868a5ecf8..226c576c04 100644 --- a/website/common/locales/nl/loadingscreentips.json +++ b/website/common/locales/nl/loadingscreentips.json @@ -25,7 +25,7 @@ "tip23": "Bereik level 100 om de Bol der Hergeboorte gratis vrij te spelen en start een nieuw avontuur!", "tip24": "Heb je een vraag? Raadpleeg het Habitica Help Gilde!", "tip25": "De vier seizoengebonden Grote Gala's beginnen dicht bij de zonnewendes en de nachteveningen.", - "tip26": "You can look for a Party or find Party members in the Party Wanted Guild!", + "tip26": "Je kan naar een Gezelschap zoeken of Gezelschapsgenoten vinden in de 'Party Wanted' Gilde!", "tip27": "Gisteren een dagelijkse taak gedaan, maar vergeten het te controleren? Maak je geen zorgen! Met Registreer Activiteit van Gisteren, heb je de kans om te registreren wat je deed voordat je je nieuwe dag begint.", "tip28": "Stel een Handmatig Dagritme in via Gebruikersicon > Instellingen om te controleren wanneer jouw dag opnieuw begint.", "tip29": "Voltooi al je Dagelijkse Taken om een Perfecte Dag Versterken te krijgen die jouw Statistieken bevordert!", diff --git a/website/common/locales/nl/npc.json b/website/common/locales/nl/npc.json index 998f720a22..86acf46558 100644 --- a/website/common/locales/nl/npc.json +++ b/website/common/locales/nl/npc.json @@ -19,7 +19,7 @@ "sleepDescription": "Need a break? Check into Daniel's Inn to pause some of Habitica's more difficult game mechanics:", "sleepBullet1": "Gemiste dagelijkse taken zullen je niet beschadigen", "sleepBullet2": "Tasks won't lose streaks or decay in color", - "sleepBullet3": "Bosses won't do damage for your missed Dailies", + "sleepBullet3": "Bazen zullen geen schade aanbrengen voor je gemiste dagelijke taken.", "sleepBullet4": "Your boss damage or collection Quest items will stay pending until check-out", "pauseDailies": "Pauzeer schade", "unpauseDailies": "Schade hervatten", @@ -48,7 +48,7 @@ "featuredItems": "Uitgelichte items!", "hideLocked": "Verberg vergrendelde", "hidePinned": "Vastgepinde verbergen", - "hideMissing": "Hide Missing", + "hideMissing": "Verberg missende", "amountExperience": "<%= amount %> ervaring", "amountGold": "<%= amount %> goud", "namedHatchingPotion": "<%= type %> uitbroeddrank", @@ -67,8 +67,8 @@ "wishlist": "Wensenlijst", "wrongItemType": "Het voorwerptype \"<%= type %>\" is niet geldig.", "wrongItemPath": "Het voorwerppad \"<%= path %>\" is niet geldig.", - "unpinnedItem": "You unpinned <%= item %>! It will no longer display in your Rewards column.", - "cannotUnpinArmoirPotion": "The Health Potion and Enchanted Armoire cannot be unpinned.", + "unpinnedItem": "Je hebt <%= item %> losgemaakt! Het zal niet langer in je beloningskolom verschijnen.", + "cannotUnpinArmoirPotion": "Het gezondheidsdrankje en het Betoverd kabinet kunnen niet losgemaakt worden.", "purchasedItem": "Je hebt <%= itemName %> gekocht", "ian": "Ian", "ianText": "Welkom in de Queestenwinkel! Hier kun je queesten inzetten om samen met je vrienden monsters te verslaan. Neem een kijkje aan de rechterkant om te bekijken welke prachtige queesten te koop zijn!", @@ -78,21 +78,21 @@ "cannotBuyItem": "Je kan dit voorwerp niet kopen.", "mustPurchaseToSet": "Moet <%= val %> kopen om het op <%= key %> te zetten.", "typeRequired": "Type is vereist", - "positiveAmountRequired": "Positive amount is required", + "positiveAmountRequired": "Positieve hoeveelheid is vereist", "notAccteptedType": "Het type moet een [ei, uitbroeddrankje, premiumUitbroeddrankje, eten, queesten, uitrusting] zijn.", "contentKeyNotFound": "Sleutel niet gevonden voor Content <%= type %>", - "plusGem": "+<%= count %> Gem", + "plusGem": "+<%= count %> Edelsteen", "typeNotSellable": "Type is niet te verkopen. Het moet een van de volgende zijn <%= acceptedTypes %>.", "userItemsKeyNotFound": "Sleutel is niet gevonden voor user.items <%= type %>", - "userItemsNotEnough": "You do not have enough <%= type %>", + "userItemsNotEnough": "Je hebt niet genoeg <%= type %>", "pathRequired": "Padstring is noodzakelijk.", "unlocked": "Voorwerpen zijn ontgrendeld", "alreadyUnlocked": "Volledige set is al ontgrendeld.", "alreadyUnlockedPart": "Volledige set is al gedeeltelijk ontgrendeld.", - "invalidQuantity": "Quantity to purchase must be a number.", + "invalidQuantity": "Hoeveelheid om te kopen moet een nummer zijn.", "USD": "(USD)", - "newStuff": "New Stuff by Bailey", - "newBaileyUpdate": "New Bailey Update!", + "newStuff": "Nieuwe informatie van Bailey", + "newBaileyUpdate": "Nieuwe update van Bailey", "tellMeLater": "Een andere keer lezen", "dismissAlert": "Boodschap verbergen", "donateText1": "Voegt 20 edelstenen toe aan je account. Edelstenen kunnen worden gebruikt om speciale digitale objecten te kopen, zoals shirts en kapsels.", diff --git a/website/common/locales/nl/pets.json b/website/common/locales/nl/pets.json index 3d05b59871..99d3457489 100644 --- a/website/common/locales/nl/pets.json +++ b/website/common/locales/nl/pets.json @@ -27,10 +27,10 @@ "royalPurpleGryphon": "Koninklijk paarse griffioen", "phoenix": "Feniks", "magicalBee": "Magische Bij", - "hopefulHippogriffPet": "Hopeful Hippogriff", - "hopefulHippogriffMount": "Hopeful Hippogriff", + "hopefulHippogriffPet": "Hoopvolle Hippogrief", + "hopefulHippogriffMount": "Hoopvolle Hippogrief", "royalPurpleJackalope": "Koninklijk paarse jackalope", - "invisibleAether": "Invisible Aether", + "invisibleAether": "Onzichtbare Ether", "rarePetPop1": "Klik op de gouden pootafdruk om meer te weten te komen over hoe je dit zeldzame dier kunt ontvangen door bij te dragen aan Habitica!", "rarePetPop2": "Hoe krijg ik dit huisdier?", "potion": "<%= potionType %> Uitbroeddrank", @@ -77,7 +77,7 @@ "hatchAPot": "Wil je een nieuwe<%= potion %><%= egg %>uitbroeden? ", "hatchedPet": "Je hebt een <%= potion %> <%= egg %> uitgebroed!", "hatchedPetGeneric": "Je hebt een nieuw huisdier uitgebroed!", - "hatchedPetHowToUse": "Visit the [Stable](/inventory/stable) to feed and equip your newest pet!", + "hatchedPetHowToUse": "Bezoek de [Stal](/inventory/stable) om je nieuwste huisdier te voeden en gebruiken!", "displayNow": "Toon nu", "displayLater": "Toon later", "petNotOwned": "Je bezit dit huisdier niet.", @@ -91,18 +91,18 @@ "rideLater": "Berijd later", "petName": "<%= potion(locale) %> <%= egg(locale) %>", "mountName": "<%= potion(locale) %> <%= mount(locale) %>", - "keyToPets": "Key to the Pet Kennels", + "keyToPets": "Sleutel van de Huisdierhokken", "keyToPetsDesc": "Laat al je standaard huisdieren vrij zodat je ze weer kan verzamelen. (Huisdieren van queesten en zeldzame huisdieren worden niet beïnvloed.)", - "keyToMounts": "Key to the Mount Kennels", - "keyToMountsDesc": "Release all standard Mounts so you can collect them again. (Quest Mounts and rare Mounts are not affected.)", - "keyToBoth": "Master Keys to the Kennels", - "keyToBothDesc": "Release all standard Pets and Mounts so you can collect them again. (Quest Pets/Mounts and rare Pets/Mounts are not affected.)", + "keyToMounts": "Sleutel van de Rijdierhokken", + "keyToMountsDesc": "Laat al je standaard rijdieren vrij zodat je ze weer kan verzamelen. (Rijdieren van queesten en zeldzame rijdieren worden niet beïnvloed.)", + "keyToBoth": "Hoofdsleutel van de Hokken", + "keyToBothDesc": "Laat al je standaard huis- en rijdieren vrij zodat je ze weer kan verzamelen. (Huis- en rijdieren van queesten en zeldzame huis- en rijdieren worden niet beïnvloed.)", "releasePetsConfirm": "Weet je zeker dat je al je standard huisdieren wilt vrijlaten? ", "releasePetsSuccess": "Je standaard huisdieren zijn vrij gelaten!", - "releaseMountsConfirm": "Are you sure you want to release your standard Mounts?", - "releaseMountsSuccess": "Your standard Mounts have been released!", - "releaseBothConfirm": "Are you sure you want to release your standard Pets and Mounts?", - "releaseBothSuccess": "Your standard Pets and Mounts have been released!", + "releaseMountsConfirm": "Weet je zeker dat je al je standard rijdieren wilt vrijlaten? ", + "releaseMountsSuccess": "Je standaard rijdieren zijn vrijgelaten!", + "releaseBothConfirm": "Weet je zeker dat je al je standard huis- en rijdieren wilt vrijlaten? ", + "releaseBothSuccess": "Je standaard huis- en rijdieren zijn vrijgelaten!", "petKeyName": "Sleutel van de Hokken", "petKeyPop": "Laat je huisdieren vrij zodat ze hun eigen avontuur kunnen beginnen en gun jezelf nogmaals de sensatie dierenmeester te worden!", "petKeyBegin": "Sleutel van de hokken: maak <%= title %> nog een keer mee!", @@ -122,9 +122,9 @@ "foodWikiText": "Wat eet mijn huisdier graag?", "foodWikiUrl": "http://habitica.wikia.com/wiki/Food_Preferences", "welcomeStable": "Welkom in de stal!", - "welcomeStableText": "I'm Matt, the Beast Master. Starting at level 3, you can hatch Pets from Eggs by using Potions you find! When you hatch a Pet from your Inventory, it will appear here! Click a Pet's image to add it to your avatar. Feed them here with the Food you find after level 3, and they'll grow into hardy Mounts.", + "welcomeStableText": "Ik ben Matt, de Dierenmeester. Na niveau 3 kun je huisdieren laten uitkomen door middel van eieren en toverdranken die je vind! Wanneer je een dier laat uitkomen vanaf je Boedel, zal deze hier verschijnen! Klik op de afbeelding van een huisdier om het aan je avatar toe te voegen. Geef je huisdieren te eten met het voedsel dat je vindt na niveau 3, zodat ze uitgroeien tot krachtige rijdieren!", "petLikeToEat": "Wat eet mijn huisdier graag?", - "petLikeToEatText": "Pets will grow no matter what you feed them, but they'll grow faster if you feed them the one food that they like best. Experiment to find out the pattern, or see the answers here:
http://habitica.wikia.com/wiki/Food_Preferences", + "petLikeToEatText": "Het maakt niet uit wat je huisdieren voert om ze te laten groeien, maar ze zullen sneller groeien als je ze hun favoriete Voedsel voert. Experimenteer om uit te vinden wat het patroon is, of zie het antwoord hier:
http://habitica.wikia.com/wiki/Food_Preferences", "filterByStandard": "Standaard", "filterByMagicPotion": "Magisch drankje", "filterByQuest": "Queeste", @@ -137,9 +137,9 @@ "clickOnPetToFeed": "Klik op een huisdier om <%= foodName %>te voeren en het te zien groeien!", "dragThisPotion": "Sleep deze <%= potionName %> naar een ei en broed een nieuw huisdier uit!", "clickOnEggToHatch": "Klik op een ei om je <%= potionName %>uitbroeddrank te gebruiken en een nieuw huisdier uit te broeden!", - "hatchDialogText": "Pour your <%= potionName %> hatching potion on your <%= eggName %> egg, and it will hatch into a <%= petName %>.", + "hatchDialogText": "Giet je <%= potionName %> uitbroeddrank over je <%= eggName %>-ei en het zal uitkomen als een <%= petName %>.", "clickOnPotionToHatch": "Klik op een uitbroeddrank om het te gebruiken op je<%= eggName %>en broed een nieuw huisdier uit!", - "notEnoughPets": "You have not collected enough pets", - "notEnoughMounts": "You have not collected enough mounts", - "notEnoughPetsMounts": "You have not collected enough pets and mounts" + "notEnoughPets": "Je hebt niet genoeg huisdieren verzameld.", + "notEnoughMounts": "Je hebt niet genoeg rijdieren verzameld.", + "notEnoughPetsMounts": "Je hebt niet genoeg huis- en rijdieren verzameld." } \ No newline at end of file diff --git a/website/common/locales/nl/quests.json b/website/common/locales/nl/quests.json index de747f3319..735cabb68f 100644 --- a/website/common/locales/nl/quests.json +++ b/website/common/locales/nl/quests.json @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "Gilden kunnen niet uitgenodigd worden op queestes.", "questNotOwned": "Je bezit deze queesterol niet.", "questNotGoldPurchasable": "Deze queeste \\\"<%= key %>\\\" is niet met goud verkrijgbaar.", + "questNotGemPurchasable": "Queeste \"<%= key %>\" is geen Edelsteen-koopbare queeste.", "questLevelTooHigh": "Je moet niveau <%= level %> zijn om deze queeste te beginnen.", "questAlreadyUnderway": "Jouw gezelschap is al op een queeste. Probeer het opnieuw wanneer deze queeste is beëindigd.", "questAlreadyAccepted": "Je hebt de queesteuitnodiging al geaccepteerd.", diff --git a/website/common/locales/nl/settings.json b/website/common/locales/nl/settings.json index 4bd5c9f666..69bae78aa6 100644 --- a/website/common/locales/nl/settings.json +++ b/website/common/locales/nl/settings.json @@ -11,8 +11,8 @@ "dailyDueDefaultView": "Standaard de 'Onvoltooid' tab laten zien in Dagelijkse Taken", "dailyDueDefaultViewPop": "Deze optie toont voor Dagelijkse Taken standaard de 'Onvoltooid' tab in plaats van 'Alle'", "reverseChatOrder": "Laat chatberichten zien in omgekeerde volgorde", - "startAdvCollapsed": "Advanced Settings in tasks start collapsed", - "startAdvCollapsedPop": "With this option set, Advanced Settings will be hidden when you first open a task for editing.", + "startAdvCollapsed": "Geavanceerde Instellingen in taken zijn aanvakelijk ingeklapt", + "startAdvCollapsedPop": "Deze optie verbergt de geavanceerde instellingen wanneer je voor het eerst een taak opent om hem te bewerken.", "dontShowAgain": "Laat dit niet meer zien", "suppressLevelUpModal": "Geen pop-up tonen wanneer ik een hoger niveau bereik", "suppressHatchPetModal": "Geen pop-up tonen wanneer ik een huisdier uitbroed", @@ -32,7 +32,7 @@ "resetAccPop": "Opnieuw starten, en alle niveaus, goud, uitrusting, geschiedenis en taken verliezen.", "deleteAccount": "Account verwijderen", "deleteAccPop": "Opzeggen en verwijderen van je Habitica-account.", - "feedback": "If you'd like to give us feedback, please enter it below - we'd love to know what you liked or didn't like about Habitica! Don't speak English well? No problem! Use the language you prefer.", + "feedback": "Als je ons feedback wilt geven, voer die dan beneden in - we willen graag weten wat je minder leuk vindt aan Habitica! Spreek je Engels niet goed? Geen probleem! Gebruik de taal die je wilt gebruiken.", "qrCode": "QR-code", "dataExport": "Gegevens exporteren", "saveData": "Hier zijn enkele mogelijkheden om je gegevens op te slaan.", @@ -85,7 +85,7 @@ "resetComplete": "Reset voltooid!", "fixValues": "Waarden bijstellen", "fixValuesText1": "Als je personage door een bug of een fout van jezelf oneerlijk veranderd is (schade opgelopen die je niet had moeten krijgen, goud gekregen dat je niet echt verdiend hebt, enz.), dan kun je je waardes hier handmatig aanpassen. Ja, dit maakt valsspelen mogelijk: gebruik deze functie verstandig, want anders saboteer je je gewoontes!", - "fixValuesText2": "Note that you cannot restore Streaks on individual tasks here. To do that, edit the Daily and go to Advanced Settings, where you will find a Restore Streak field.", + "fixValuesText2": "Let wel dat je hier geen series op individuele taken kunt herstellen. Om dat te doen, moet je de Dagelijkse Taak openen om te bewerken. Onder Geavanceerde instellingen vind je Serie herstellen.", "disabledWinterEvent": "Niet te gebruiken tijdens deel 4 van het Winterwonderland-evenement (omdat de beloningen met goud te koop zijn).", "fix21Streaks": "Series van 21 dagen", "discardChanges": "Wijzigingen negeren", diff --git a/website/common/locales/nl/subscriber.json b/website/common/locales/nl/subscriber.json index 8a2a52fb94..7af8195bf8 100644 --- a/website/common/locales/nl/subscriber.json +++ b/website/common/locales/nl/subscriber.json @@ -7,7 +7,7 @@ "buyGemsGoldText": "\nAlexander the Merchant zal je juwelen verkopen tegen een prijs van 20 goud per juweel. Zijn maandelijkse verzendingen worden aanvankelijk afgemaakt op 25 Gems per maand, maar voor elke 3 opeenvolgende maanden die u bent ingeschreven, stijgt deze pet met 5 Gems, tot maximaal 50 Gems per maand!", "mustSubscribeToPurchaseGems": "Je moet een abonnement hebben om edelstenen te kunnen kopen met GP", "reachedGoldToGemCap": "Je hebt de maximale hoeveelheid Goud voor Edelstenen inwisselen <%= convCap %> al gehaald voor deze maand. Wij doen dit om misbruik te voorkomen. Het limiet zal gereset worden in de eerste drie dagen van elke maand. ", - "reachedGoldToGemCapQuantity": "Your requested amount <%= quantity %> exceeds the Gold=>Gem conversion cap <%= convCap %> for this month. We have this to prevent abuse / farming. The cap resets within the first three days of each month.", + "reachedGoldToGemCapQuantity": "Je verzoek voor <%= quantity %> gaat over het limiet van Goud voor Edelstenen inwisselen <%= convCap %> voor deze maand. Wij doen dit om misbruik te voorkomen. Het limiet zal gereset worden in de eerste drie dagen van elke maand. ", "retainHistory": "Volledige extra geschiedenis behouden", "retainHistoryText": "Maakt je afgeronde to-do's en taakgeschiedenis langer beschikbaar.", "doubleDrops": "Dagelijkse vondstmaximum verdubbeld", @@ -40,8 +40,8 @@ "manageSub": "Klik om je abonnement te beheren", "cancelSub": "Abonnement stopzetten", "cancelSubInfoGoogle": "Ga naar \"Mijn apps & games\" > \"Abonnementen\" in de Google Play Store app om je abonnement te annuleren of om de einddatum van je abonnement te zien als je die al geannuleerd hebt. Dit scherm laat niet zien of je abonnement geannuleerd is.", - "cancelSubInfoApple": "Please follow Apple's official instructions to cancel your subscription or to see your subscription's termination date if you have already cancelled it. This screen is not able to show you whether your subscription has been cancelled.", - "cancelSubInfoGroupPlan": "Because you have a free subscription from a Group Plan, you cannot cancel it. It will end when you are no longer in the Group. If you are the Group leader and want to cancel the entire Group Plan, you can do that from the group's \"Payment Details\" tab.", + "cancelSubInfoApple": "Ga naar de officiële instructies van Apple om je abonnement te annuleren of om de einddatum van je abonnement te zien als je die al geannuleerd hebt. Dit scherm laat niet zien of je abonnement geannuleerd is.", + "cancelSubInfoGroupPlan": "Omdat je een gratis abonnement hebt van een Groepsplan, kan je deze niet afzeggen. Deze zal aflopen wanneer je niet langen tot een Groep behoort. Als je de Groepsleider bent en het gehele Groepsplan wil afzeggen, kan je dat doen via de groep's 'Betalingsdetails' tabblad.", "canceledSubscription": "Beëindigd abonnement", "cancelingSubscription": "Het abonnement stopzetten", "adminSub": "Beheerdersabonnementen", @@ -85,8 +85,8 @@ "timeTravelersTitleNoSub": "<%= linkStartTyler %>Tyler<%= linkEnd %> en <%= linkStartVicky %>Vicky<%= linkEnd %>", "timeTravelersTitle": "Mysterieuze tijdreizigers", "timeTravelersPopoverNoSub": "Je hebt een mystieke zandloper nodig om de mysterieuze Tijdreizigers te ontbieden! <%= linkStart %>Abonnees<%= linkEnd %> verdienen een mystieke zandloper voor elke drie maanden van achtereenvolgend lidmaatschap. Kom terug wanneer je een mystieke zandloper hebt en de Tijdreizigers zullen een zeldzaam huisdier, rijdier of set abonnee-artikelen voor je ophalen uit het verleden... of misschien zelfs de toekomst.", - "timeTravelersPopoverNoSubMobile": "Looks like you’ll need a Mystic Hourglass to open the time portal and summon the Mysterious Time Travelers.", - "timeTravelersPopover": "Your Mystic Hourglass has opened our time portal! Choose what you’d like us to fetch from the past or future.", + "timeTravelersPopoverNoSubMobile": "Het ziet ernaar uit dat je een Mystieke zandloper nodig hebt om het tijdsportaal te openen en de Mysterieuze Tijdsreizigers op te roepen.", + "timeTravelersPopover": "Je Mystieke zandloper heeft ons tijdsportaal geopend! Kies wat je ons wil laten halen van het verleden of de toekomst.", "timeTravelersAlreadyOwned": "Gefeliciteerd! Je bezit alles al dat de Tijdreizigers op dit moment aanbieden. Dankjewel voor het steunen van de site!", "mysticHourglassPopover": "Met een mystieke zandloper kun je sommige voorwerpen met een beperkte oplage kopen, zoals maandelijkse verrassingsvoorwerpsets en beloningen van Wereldbazen uit het verleden!", "mysterySetNotFound": "Verrassingsset niet gevonden of set is al in bezit.", @@ -136,14 +136,15 @@ "mysterySet201707": "Geleimantiërset", "mysterySet201708": "Lavastrijderset", "mysterySet201709": "Tovenaarsleerlingset", - "mysterySet201710": "Imperious Imp Set", - "mysterySet201711": "Carpet Rider Set", - "mysterySet201712": "Candlemancer Set", + "mysterySet201710": "Kordate Kabouter Set", + "mysterySet201711": "Tapijtvlieger Set", + "mysterySet201712": "Kaarsenmaker Set", "mysterySet201801": "Vorstflitsset", - "mysterySet201802": "Love Bug Set", - "mysterySet201803": "Daring Dragonfly Set", - "mysterySet201804": "Spiffy Squirrel Set", - "mysterySet201805": "Phenomenal Peacock Set", + "mysterySet201802": "Liefdes Insect Set", + "mysterySet201803": "Provocerend Libelle Set", + "mysterySet201804": "Chique Eekhoorn Set", + "mysterySet201805": "Fenomenale Pauw Set", + "mysterySet201806": "Aantrekkelijke Zeeduivel Set", "mysterySet301404": "Standaard Steampunkset", "mysterySet301405": "Opgesmukte Steampunkset", "mysterySet301703": "Pauw steampunkset", @@ -185,25 +186,25 @@ "everyYear": "Elk jaar", "choosePaymentMethod": "Kies je betaalmethode", "subscribeSupportsDevs": "Door te abonneren steun je de ontwikkelaars en help je Habitica online te houden", - "buyGemsSupportsDevs": "Purchasing Gems supports the developers and helps keep Habitica running", - "support": "SUPPORT", - "gemBenefitLeadin": "Gems allow you to buy fun extras for your account, including:", - "gemBenefit1": "Unique and fashionable costumes for your avatar.", - "gemBenefit2": "Backgrounds to immerse your avatar in the world of Habitica!", - "gemBenefit3": "Exciting Quest chains that drop pet eggs.", - "gemBenefit4": "Reset your avatar's Stat Points and change its Class.", - "subscriptionBenefitLeadin": "Support Habitica by becoming a subscriber and you'll receive these useful benefits!", - "subscriptionBenefit1": "Alexander the Merchant will sell you Gems, for 20 Gold each!", - "subscriptionBenefit2": "Completed To-Dos and task history are available for longer.", - "subscriptionBenefit3": "Discover more items in Habitica with a doubled daily drop cap.", - "subscriptionBenefit4": "Unique cosmetic items for your avatar each month.", - "subscriptionBenefit5": "Receive the exclusive Royal Purple Jackalope pet!", - "subscriptionBenefit6": "Earn Mystic Hourglasses for use in the Time Travelers' Shop!", - "haveCouponCode": "Do you have a coupon code?", - "subscriptionAlreadySubscribedLeadIn": "Thanks for subscribing!", - "subscriptionAlreadySubscribed1": "To see your subscription details and cancel, renew, or change your subscription, please go to User icon > Settings > Subscription.", - "purchaseAll": "Purchase All", - "gemsPurchaseNote": "Subscribers can buy gems for gold in the Market! For easy access, you can also pin the gem to your Rewards column.", - "gemsRemaining": "gems remaining", - "notEnoughGemsToBuy": "You are unable to buy that amount of gems" + "buyGemsSupportsDevs": "Edelstenen kopen steunt de ontwikkelaars en helpt Habitica online te houden.", + "support": "ONDERSTEUNING", + "gemBenefitLeadin": "Edelstenen staan je toe om leuke extra's te kopen voor je account, waaronder:", + "gemBenefit1": "Unieke en modieuze kostuums voor je avatar.", + "gemBenefit2": "Achtergronden om je avatar in de wereld van Habitica te onderdompelen!", + "gemBenefit3": "Spannende Queeste kettingen die huisdiereneieren droppen.", + "gemBenefit4": "Reset je avatar's Statistiek Punten en verander de klasse.", + "subscriptionBenefitLeadin": "Steun Habitica door abonnee te worden en je zult deze nuttige voordelen krijgen!", + "subscriptionBenefit1": "Alexander de Koopman zal je Edelstenen verkopen, 20 Goud per stuk!", + "subscriptionBenefit2": "Afgewerkte To-Do's en taak geschiedenis is voor langere tijd beschikbaar.", + "subscriptionBenefit3": "Ontdek meer artikelen in Habitica met een verdubbelde dagelijke drop drempel.", + "subscriptionBenefit4": "Unieke cosmetische artikelen voor je avatar elke maand.", + "subscriptionBenefit5": "Ontvang een exclusieve Koninklijk Paars Jackalope huisdier!", + "subscriptionBenefit6": "Verdien Mystieke zandlopers voor gebruik in de Tijdreizigerswinkel!", + "haveCouponCode": "Heb je een coupon code?", + "subscriptionAlreadySubscribedLeadIn": "Bedankt voor het abonneren!", + "subscriptionAlreadySubscribed1": "Om je abonnement details te zien en het afzeggen, vernieuwen of veranderen van je abonnenment, ga dan naar Gebruikers icoon > Instellingen > Abonnement.", + "purchaseAll": "Koop alles", + "gemsPurchaseNote": "Abonnees kunnen Edelstenen voor Goud kopen in de Markt! Voor gemakkelijke toegang, kan je de Edelsteen ook aan je Beloningskolom vastmaken.", + "gemsRemaining": "resterende Edelstenen", + "notEnoughGemsToBuy": "Je bent niet in staat om die hoeveelheid Edelstenen te kopen" } \ No newline at end of file diff --git a/website/common/locales/nl/tasks.json b/website/common/locales/nl/tasks.json index 565b3a424c..8c1d824a5b 100644 --- a/website/common/locales/nl/tasks.json +++ b/website/common/locales/nl/tasks.json @@ -5,7 +5,7 @@ "sureDeleteCompletedTodos": "Weet je zeker dat je je voltooide taken wilt verwijderen?", "lotOfToDos": "Je meest recente 30 voltooide To-do's worden hier getoond. Je kan oudere voltooide To-do's zien via Gegevens > Gegevens weergeven of Gegevens > Gegevens exporteren > Gebruikersgegevens.", "deleteToDosExplanation": "Met de onderstaande knop worden al je voltooide To-do's en gearchiveerde To-do's voorgoed verwijderd, behalve de To-do's van actieve uitdagingen en groepsplannen. Exporteer ze eerst als je ze wil bewaren.", - "addMultipleTip": "Tip: To add multiple <%= taskType %>, separate each one using a line break (Shift + Enter) and then press \"Enter.\"", + "addMultipleTip": "Tip: Om meerdere <%= taskType %> toe te voegen, scheid elke met behulp van een 'line break' (Shift + Enter) en druk daarna op 'Enter'.", "addsingle": "Voeg een enkele toe", "addATask": "Voeg een <%= type %> toe", "editATask": "Bewerk een <%= type %>", @@ -194,8 +194,6 @@ "weeks": "Weken", "year": "Jaar", "years": "Jaren", - "confirmScoreNotes": "Bevestig taakscores met notities", - "taskScoreNotesTooLong": "Taak score notities moeten minder dan 256 karakters zijn.", "groupTasksByChallenge": "Groepeer taken op uitdagingstitel", "taskNotes": "Taken notities", "monthlyRepeatHelpContent": "Deze taak zul je iedere X maanden moeten doen", diff --git a/website/common/locales/pl/backgrounds.json b/website/common/locales/pl/backgrounds.json index 4cd257fd3f..cb787d98ba 100644 --- a/website/common/locales/pl/backgrounds.json +++ b/website/common/locales/pl/backgrounds.json @@ -359,5 +359,12 @@ "backgroundRowboatText": "Pychówka", "backgroundRowboatNotes": "Śpiew niesie się dookoła w Pychówce.", "backgroundPirateFlagText": "Piracka Flaga", - "backgroundPirateFlagNotes": "Wesprzyj Piracką Flagę." + "backgroundPirateFlagNotes": "Wesprzyj Piracką Flagę.", + "backgrounds072018": "SET 50: Released July 2018", + "backgroundDarkDeepText": "Dark Deep", + "backgroundDarkDeepNotes": "Swim in the Dark Deep among bioluminescent critters.", + "backgroundDilatoryCityText": "City of Dilatory", + "backgroundDilatoryCityNotes": "Meander through the undersea City of Dilatory.", + "backgroundTidePoolText": "Tide Pool", + "backgroundTidePoolNotes": "Observe the ocean life near a Tide Pool." } \ No newline at end of file diff --git a/website/common/locales/pl/content.json b/website/common/locales/pl/content.json index 04ddfa8d70..c939e8f1fb 100644 --- a/website/common/locales/pl/content.json +++ b/website/common/locales/pl/content.json @@ -195,6 +195,7 @@ "hatchingPotionFairy": "Bajeczny", "hatchingPotionStarryNight": "Gwiezdna Noc", "hatchingPotionRainbow": "Tęcza", + "hatchingPotionGlass": "Szkło", "hatchingPotionNotes": "Wylej go na jajko, a wykluje się z niego <%=potText(locale)%>.", "premiumPotionAddlNotes": "Nie nadaje się do użytku na jajach otrzymanych za misje.", "foodMeat": "Mięso", diff --git a/website/common/locales/pl/gear.json b/website/common/locales/pl/gear.json index 8949aa65c0..725f1c5011 100644 --- a/website/common/locales/pl/gear.json +++ b/website/common/locales/pl/gear.json @@ -119,7 +119,7 @@ "weaponSpecialSkiText": "Kij szusującego asasyna", "weaponSpecialSkiNotes": "Broń zdolna do niszczenia hord wrogów! Pozwala też użytkownikowi na wykonywanie ładnych skrętów równoległych. Zwiększa Siłę o <%= str %>. Edycja Limitowana Zima 2013-2014.", "weaponSpecialCandycaneText": "Cukierkowa laska", - "weaponSpecialCandycaneNotes": "A powerful mage's staff. Powerfully DELICIOUS, we mean! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2013-2014 Winter Gear.", + "weaponSpecialCandycaneNotes": "Prze-potężna laska maga. Prze-smaczna, znaczy się! Broń dwuręczna. Zwiększa Inteligencję o <%= int %> i Percepcję o <%= per %>. Edycja Limitowana Zimowego Wyposażenia 2013-2014", "weaponSpecialSnowflakeText": "Różdżka śnieżynki", "weaponSpecialSnowflakeNotes": "Ta różdżka iskrzy nieskończoną mocą uzdrawiania. Zwiększa Inteligencję o <%= int %>. Edycja Limitowana Zima 2013-2014", "weaponSpecialSpringRogueText": "Hakowate pazury", @@ -247,18 +247,18 @@ "weaponSpecialWinter2018WarriorText": "Młot Świątecznej Kokardy", "weaponSpecialWinter2018WarriorNotes": "Skrzący wygląd tej promiennej broni olśni Twoich przeciwników kiedy będziesz nią wymachiwać. Zwiększa Siłę o <%= str %>. Edycja Limitowana Zima 2017-2018.", "weaponSpecialWinter2018MageText": "Świąteczne Konfetti", - "weaponSpecialWinter2018MageNotes": "Magic--and glitter--is in the air! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2017-2018 Winter Gear.", + "weaponSpecialWinter2018MageNotes": "Magia - oraz brokat - wiszą w powietrzu! Zwiększa Inteligencję o <%= int %> i Percepcję o <%= per %>. Edycja Limitowana Zimowego Wyposażenia 2017-2018.", "weaponSpecialWinter2018HealerText": "Jemiołowa różdżka", - "weaponSpecialWinter2018HealerNotes": "This mistletoe ball is sure to enchant and delight passersby! Increases Intelligence by <%= int %>. Limited Edition 2017-2018 Winter Gear.", - "weaponSpecialSpring2018RogueText": "Buoyant Bullrush", + "weaponSpecialWinter2018HealerNotes": "Ta kulka jemioły z pewnością oczaruje każdego przechodnia! Zwiększa Inteligencję o <%= int %>. Edycja Limitowana Zimowego Wyposażenia 2017-2018.", + "weaponSpecialSpring2018RogueText": "Porywczy Byczy Pośpiech", "weaponSpecialSpring2018RogueNotes": "What might appear to be cute cattails are actually quite effective weapons in the right wings. Increases Strength by <%= str %>. Limited Edition 2018 Spring Gear.", - "weaponSpecialSpring2018WarriorText": "Axe of Daybreak", - "weaponSpecialSpring2018WarriorNotes": "Made of bright gold, this axe is mighty enough to attack the reddest task! Increases Strength by <%= str %>. Limited Edition 2018 Spring Gear.", - "weaponSpecialSpring2018MageText": "Tulip Stave", + "weaponSpecialSpring2018WarriorText": "Topór Brzasku", + "weaponSpecialSpring2018WarriorNotes": "Zrobiony z najjaśniejszego złota, ten jest wystarczająco wspaniały by zaatakować najbardziej czerwone zadanie! Zwiększa Siłę o <%= str %>. Edycja Limitowana Wiosennego Wyposażenia 2018.", + "weaponSpecialSpring2018MageText": "Tulipanowa Rózga", "weaponSpecialSpring2018MageNotes": "This magic flower never wilts! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2018 Spring Gear.", - "weaponSpecialSpring2018HealerText": "Garnet Rod", + "weaponSpecialSpring2018HealerText": "Granatowa Różdżka", "weaponSpecialSpring2018HealerNotes": "The stones in this staff will focus your power when you cast healing spells! Increases Intelligence by <%= int %>. Limited Edition 2018 Spring Gear.", - "weaponSpecialSummer2018RogueText": "Fishing Rod", + "weaponSpecialSummer2018RogueText": "Wędka", "weaponSpecialSummer2018RogueNotes": "This lightweight, practically unbreakable rod and reel can be dual-wielded to maximize your DPS (Dragonfish Per Summer). Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.", "weaponSpecialSummer2018WarriorText": "Betta Fish Spear", "weaponSpecialSummer2018WarriorNotes": "Mighty enough for battle, elegant enough for ceremony, this exquisitely crafted spear shows you will protect your home surf no matter what! Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.", @@ -346,6 +346,8 @@ "weaponArmoireCobblersHammerNotes": "This hammer is specially made for leatherwork. It can do a real number on a red Daily in a pinch, though. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 2 of 3).", "weaponArmoireGlassblowersBlowpipeText": "Glassblower's Blowpipe", "weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Increases Strength by <%= str %>. Enchanted Armoire: Glassblower Set (Item 1 of 4).", + "weaponArmoirePoisonedGobletText": "Poisoned Goblet", + "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).", "armor": "zbroja", "armorCapitalized": "Zbroja", "armorBase0Text": "Zwykłe ubranie", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "The heat and light generated by this magic armor will warm your heart but never burn your skin! Confers no benefit. December 2017 Subscriber Item.", "armorMystery201802Text": "Zbroja Robaczka Miłości", "armorMystery201802Notes": "This shiny armor reflects your strength of heart and infuses it into any Habiticans nearby who may need encouragement! Confers no benefit. February 2018 Subscriber Item.", + "armorMystery201806Text": "Alluring Anglerfish Tail", + "armorMystery201806Notes": "This sinuous tail features glowing spots to light your way through the deep. Confers no benefit. June 2018 Subscriber Item.", "armorMystery301404Text": "Steampunkowy garnitur", "armorMystery301404Notes": "Elegancki i stylowy! Brak dodatkowych korzyści. Przedmiot Abonencki, luty 2015.", "armorMystery301703Text": "Steampunkowa pawia suknia", @@ -742,6 +746,8 @@ "armorArmoireGlassblowersCoverallsNotes": "These coveralls will protect you while you're making masterpieces with hot molten glass. Increases Constitution by <%= con %>. Enchanted Armoire: Glassblower Set (Item 2 of 4).", "armorArmoireBluePartyDressText": "Blue Party Dress", "armorArmoireBluePartyDressNotes": "You're perceptive, tough, smart, and so fashionable! Increases Perception, Strength, and Constitution by <%= attrs %> each. Enchanted Armoire: Blue Hairbow Set (Item 2 of 2).", + "armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown", + "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Increases Perception by <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).", "headgear": "hełm", "headgearCapitalized": "Nakrycie głowy", "headBase0Text": "Brak nakrycia głowy", @@ -1054,6 +1060,8 @@ "headMystery201803Notes": "Although its appearance is quite decorative, you can engage the wings on this circlet for extra lift! Confers no benefit. March 2018 Subscriber Item.", "headMystery201805Text": "Phenomenal Peacock Helm", "headMystery201805Notes": "This helm will make you the proudest and prettiest (possibly also the loudest) bird in town. Confers no benefit. May 2018 Subscriber Item.", + "headMystery201806Text": "Alluring Anglerfish Helm", + "headMystery201806Notes": "The mesmerizing light atop this helm will call all the creatures of the sea to your side. We urge you to use your glowy powers of attraction for good! Confers no benefit. June 2018 Subscriber Item.", "headMystery301404Text": "Szykowny cylinder", "headMystery301404Notes": "Fantazyjny cylinder dla najwyżej urodzonych. Przedmiot Abonencki, styczeń 2015. Brak dodatkowych korzyści.", "headMystery301405Text": "Klasyczny cylinder", @@ -1154,6 +1162,8 @@ "headArmoireBigWigNotes": "Some powdered wigs are for looking more authoritative, but this one is just for laughs! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.", "headArmoireGlassblowersHatText": "Glassblower's Hat", "headArmoireGlassblowersHatNotes": "This hat mainly just looks good with your other protective glassblowing gear! Increases Perception by <%= per %>. Enchanted Armoire: Glassblower Set (Item 3 of 4).", + "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress", + "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).", "offhand": "przedmiot w drugiej ręce", "offhandCapitalized": "Przedmiot w drugiej ręce", "shieldBase0Text": "Brak wyposażenia w drugiej ręce", @@ -1368,6 +1378,8 @@ "shieldArmoireFancyShoeNotes": "A very special shoe you're working on. It's fit for royalty! Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 3 of 3).", "shieldArmoireFancyBlownGlassVaseText": "Fancy Blown Glass Vase", "shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Increases Intelligence by <%= int %>. Enchanted Armoire: Glassblower Set (Item 4 of 4).", + "shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield", + "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).", "back": "Dodatki na plecy", "backCapitalized": "Dodatki na plecy", "backBase0Text": "Nic na plecach", diff --git a/website/common/locales/pl/groups.json b/website/common/locales/pl/groups.json index 9239e58e94..3124296421 100644 --- a/website/common/locales/pl/groups.json +++ b/website/common/locales/pl/groups.json @@ -134,10 +134,9 @@ "PMPlaceholderDescription": "Wybierz rozmowę po lewej", "PMPlaceholderTitleRevoked": "Twoje uprawnienia do czatu zostały wycofane", "PMPlaceholderDescriptionRevoked": "Nie możesz wysyłać prywatnych wiadomości ponieważ Twoje uprawnienia do rozmów zostały wycofane. Jeśli masz z tego powodu pytania albo wątpliwości to proszę wyślij e-maila na adres admin@habitica.com by przedyskutować to z zespołem.", - "PMEnable": "Włącz Prywatne Wiadomości", - "PMDisable": "Wyłącz Prywatne Wiadomości", - "PMEnabledOptPopoverText": "Kiedy Prywatne Wiadomości są wyłączone to wciąż możesz je wysyłać, ale nikt nie może ich wysłać do ciebie.", - "PMDisabledOptPopoverText": "Włącz tą opcje jeśli chcesz dostawać wiadomości.", + "PMReceive": "Otrzymuj Prywatne Wiadomości", + "PMEnabledOptPopoverText": "Prywatne Wiadomości są zezwolone. Użytkownicy mogą się z Tobą kontaktować za pomocą Twojego profilu.", + "PMDisabledOptPopoverText": "Prywatne Wiadomości są wyłaczone. Włącz tą opcję by użytkownicy mogli się z Tobą kontaktować za pomocą Twojego profilu.", "PMDisabledCaptionTitle": "Prywatne Wiadomości są wyłączone", "PMDisabledCaptionText": "Wciąż możesz wysyłać wiadomości, ale nikt nie może ich wysyłać do ciebie.", "block": "Blokuj", diff --git a/website/common/locales/pl/limited.json b/website/common/locales/pl/limited.json index 383435a408..246f6edcf8 100644 --- a/website/common/locales/pl/limited.json +++ b/website/common/locales/pl/limited.json @@ -130,7 +130,7 @@ "dateEndApril": "19 kwietnia", "dateEndMay": "31 Maja", "dateEndJune": "14 czerwca", - "dateEndJuly": "29 lipca", + "dateEndJuly": "July 31", "dateEndAugust": "Sierpień 31", "dateEndOctober": "31 października", "dateEndNovember": "30 listopada", diff --git a/website/common/locales/pl/quests.json b/website/common/locales/pl/quests.json index 26591ecdb9..9c73c70bf7 100644 --- a/website/common/locales/pl/quests.json +++ b/website/common/locales/pl/quests.json @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "Gildie nie mogą być zapraszane na misje.", "questNotOwned": "Nie posiadasz tego zwoju misji.", "questNotGoldPurchasable": "Misja \"<%= key %>\" nie może być kupiona za złoto.", + "questNotGemPurchasable": "Misja \"<%= key %>\" nie może być kupiona za Klejnoty.", "questLevelTooHigh": "Musisz mieć co najmniej poziom <%= level %>, by rozpocząć tą misję!", "questAlreadyUnderway": "Twoja drużyna już jest na misji. Spróbuj ponownie gdy obecna misja się zakończy.", "questAlreadyAccepted": "Już zaakceptowałeś zaproszenie na misję.", diff --git a/website/common/locales/pl/subscriber.json b/website/common/locales/pl/subscriber.json index 6adeb38480..abda8620bb 100644 --- a/website/common/locales/pl/subscriber.json +++ b/website/common/locales/pl/subscriber.json @@ -144,6 +144,7 @@ "mysterySet201803": "Zestaw Śmiałej Ważki", "mysterySet201804": "Zestaw Przedniej Wiewiórki", "mysterySet201805": "Zestaw Fenomenalnego Pawia", + "mysterySet201806": "Zestaw Ponętnego Skalara", "mysterySet301404": "Standardowy zestaw steampunkowy", "mysterySet301405": "Zestaw steampunkowych akcesoriów", "mysterySet301703": "Zestaw steampunkowego pawia", diff --git a/website/common/locales/pl/tasks.json b/website/common/locales/pl/tasks.json index 7706090f72..71034a459a 100644 --- a/website/common/locales/pl/tasks.json +++ b/website/common/locales/pl/tasks.json @@ -194,8 +194,6 @@ "weeks": "Tygodnie", "year": "Rok", "years": "Lata", - "confirmScoreNotes": "Potwierdź wynik zadania za pomocą notatki", - "taskScoreNotesTooLong": "Notatki do zadań muszą zawierać mniej niż 256 znaków", "groupTasksByChallenge": "Grupuj zadania po tytule wyzwania", "taskNotes": "Notatki do zadania", "monthlyRepeatHelpContent": "To zadanie należy wypełniać co X miesięcy", diff --git a/website/common/locales/pt/backgrounds.json b/website/common/locales/pt/backgrounds.json index db4b99c25f..28833d13d1 100644 --- a/website/common/locales/pt/backgrounds.json +++ b/website/common/locales/pt/backgrounds.json @@ -359,5 +359,12 @@ "backgroundRowboatText": "Barco a Remos", "backgroundRowboatNotes": "Canta cantigas num Barco a Remos.", "backgroundPirateFlagText": "Bandeira Pirata", - "backgroundPirateFlagNotes": "Hasteia uma temível Bandeira Pirata." + "backgroundPirateFlagNotes": "Hasteia uma temível Bandeira Pirata.", + "backgrounds072018": "SET 50: Released July 2018", + "backgroundDarkDeepText": "Dark Deep", + "backgroundDarkDeepNotes": "Swim in the Dark Deep among bioluminescent critters.", + "backgroundDilatoryCityText": "City of Dilatory", + "backgroundDilatoryCityNotes": "Meander through the undersea City of Dilatory.", + "backgroundTidePoolText": "Tide Pool", + "backgroundTidePoolNotes": "Observe the ocean life near a Tide Pool." } \ No newline at end of file diff --git a/website/common/locales/pt/communityguidelines.json b/website/common/locales/pt/communityguidelines.json index 4803666c30..57d0ac0a5f 100644 --- a/website/common/locales/pt/communityguidelines.json +++ b/website/common/locales/pt/communityguidelines.json @@ -65,17 +65,17 @@ "commGuidePara056": "Infrações Leves, apesar de desencorajadas, tem também consequências pequenas. Se elas continuarem a ocorrer, podem levar à consequências mais severas com o passar do tempo.", "commGuidePara057": "Estes são alguns exemplos de Infrações Leves. Esta não é uma lista completa.", "commGuideList07A": "Primeira violação das Diretrizes de Espaço Publico", - "commGuideList07B": "Any statements or actions that trigger a \"Please Don't\". When a Mod has to say \"Please don't do this\" to a user, it can count as a very minor infraction for that user. An example might be \"Please don't keep arguing in favor of this feature idea after we've told you several times that it isn't feasible.\" In many cases, the Please Don't will be the minor consequence as well, but if Mods have to say \"Please Don't\" to the same user enough times, the triggering Minor Infractions will start to count as Moderate Infractions.", - "commGuidePara057A": "Some posts may be hidden because they contain sensitive information or might give people the wrong idea. Typically this does not count as an infraction, particularly not the first time it happens!", + "commGuideList07B": "Quaisquer afirmações que desencadeiem um \"Por Favor, Não\". Quando um Mod tem de dizer \"Por favor, não faças isto\" a um utilizador, isso conta para esse utilizador como uma infracção muito leve. A título de exemplo: \"Por favor, não continues a debater a favor desta ideia para uma funcionalidade depois de te termos dito várias vezes que não é possível\". Muitas vezes, o Por Favor, Não é a sua própria consequência leve, mas se um Mod tiver de dizer \"Por Favor, Não\" ao mesmo utilizador por várias vezes, as Infracções Muito Leves em causa começarão a contar como Infracções Moderadas.", + "commGuidePara057A": "Algumas publicações podem estar escondidas por conterem informação sensível ou porque podem passar uma ideia errada. Geralmente isto não conta como infracção, especialmente se for a primeira vez que acontece!", "commGuideHeadingConsequences": "Consequências", "commGuidePara058": "Em Habitica -- como na vida real -- cada ação tem uma consequência, seja ficar em forma porque você tem corrido, seja ficar com cáries porque você tem comido muito açúcar, ou seja passar de ano porque você tem estudado.", "commGuidePara059": "Similarmente, todas infrações tem consequências diretas.Alguns exemplos de consequências estão listados abaixo.", - "commGuidePara060": "If your infraction has a moderate or severe consequence, there will be a post from a staff member or moderator in the forum in which the infraction occurred explaining:", + "commGuidePara060": "Se a tua infracção tiver uma consequência moderada ou grave, haverá uma publicação de um membro do staff ou de um moderador no fórum em que essa infracção tenha sucedido, para explicar:", "commGuideList08A": "Qual foi sua infração", "commGuideList08B": "Qual é a consequência", "commGuideList08C": "O que fazer para corrigir a situação e restaurar seu status, se possível.", - "commGuidePara060A": "If the situation calls for it, you may receive a PM or email as well as a post in the forum in which the infraction occurred. In some cases you may not be reprimanded in public at all.", - "commGuidePara060B": "If your account is banned (a severe consequence), you will not be able to log into Habitica and will receive an error message upon attempting to log in. If you wish to apologize or make a plea for reinstatement, please email the staff at admin@habitica.com with your UUID (which will be given in the error message). It is your responsibility to reach out if you desire reconsideration or reinstatement.", + "commGuidePara060A": "Se a situação o exigir, poderás receber uma Mensagem Privada ou um e-mail, assim como uma publicação no fórum em que a infracção tenha ocorrido. Nalguns casos, podes não ser repreendido em público de todo.", + "commGuidePara060B": "Se a tua conta for banida (uma consequência grave), não vais conseguir entrar no Habitica e vais receber uma mensagem de erro ao tentar entrar. Se quiseres desculpar-te ou apelar à tua reintegração, por favor envia um e-mail ao staff através do admin@habitica.com com o teu UUID (que será fornecido na mensagem de erro). É tuaresponsabilidade comunicar se desejares ser reconsiderado ou reintegrado.", "commGuideHeadingSevereConsequences": "Exemplos de Consequências Severas", "commGuideList09A": "Banir de conta (ver acima)", "commGuideList09C": "Permanentemente desabilitar (\"congelar\") progressão dos Níveis de Contribuidor", @@ -93,11 +93,11 @@ "commGuideList11D": "Deleções (Mods/Equipe podem deletar conteúdo problemático)", "commGuideList11E": "Edições (Mods/Equipe podem editar conteúdo problemático)", "commGuideHeadingRestoration": "Restauração", - "commGuidePara061": "Habitica is a land devoted to self-improvement, and we believe in second chances. If you commit an infraction and receive a consequence, view it as a chance to evaluate your actions and strive to be a better member of the community.", - "commGuidePara062": "The announcement, message, and/or email that you receive explaining the consequences of your actions is a good source of information. Cooperate with any restrictions which have been imposed, and endeavor to meet the requirements to have any penalties lifted.", - "commGuidePara063": "If you do not understand your consequences, or the nature of your infraction, ask the Staff/Moderators for help so you can avoid committing infractions in the future. If you feel a particular decision was unfair, you can contact the staff to discuss it at admin@habitica.com.", + "commGuidePara061": "Habitica é uma terra dedicada à melhoria pessoal e acreditamos em segundas hipóteses. Se cometeste uma infracção e sofreste uma consequência, vê isto como uma oportunidade de reflectires sobre as tuas acções e de te esforçares para ser um melhor membro da comunidade.", + "commGuidePara062": "A notificação, mensagem e/ou e-mail que recebeste a explicar as consequências das tuas acções é uma boa fonte de informação. Colabora com quaisquer restrições que te forem impostas e esforça-te por alcançar os requisitos necessários ao levantamento de quaisquer penalidades.", + "commGuidePara063": "Se não compreendes as consequências ou a natureza da tua infracção, pede ajuda ao Staff ou aos Moderadores para conseguires evitar cometer infracções futuramente. Se sentires que uma decisão em particular foi injusta, podes contactar o staff para falar sobre isso através de admin@habitica.com.", "commGuideHeadingMeet": "Conheça a Equipe e os Moderadores! ", - "commGuidePara006": "Habitica has some tireless knights-errant who join forces with the staff members to keep the community calm, contented, and free of trolls. Each has a specific domain, but will sometimes be called to serve in other social spheres.", + "commGuidePara006": "O Habitica tem alguns cavaleiros andantes que unem as suas forças às dos membros do staff para manter a comunidade calma, satisfeita e livre de trolls. Cada um tem o seu domínio específico mas pode, por vezes, ser chamado a intervir numa espera social diferente.", "commGuidePara007": "A Equipe tem etiquetas roxas marcadas com coroas. O título deles é \"Heroico\".", "commGuidePara008": "Moderadores tem etiquetas azul escuro marcadas com estrelas. O título deles é \"Guardião\". A única exceção é Bailey, que, sendo uma NPC, tem uma etiqueta preta e verde marcada com uma estrela.", "commGuidePara009": "Os atuais Membros da Equipe são (da esquerda para a direita):", @@ -110,19 +110,19 @@ "commGuidePara011b": "no GitHub/Wikia", "commGuidePara011c": "na Wikia", "commGuidePara011d": "no GitHub", - "commGuidePara012": "If you have an issue or concern about a particular Mod, please send an email to our Staff (admin@habitica.com).", - "commGuidePara013": "In a community as big as Habitica, users come and go, and sometimes a staff member or moderator needs to lay down their noble mantle and relax. The following are Staff and Moderators Emeritus. They no longer act with the power of a Staff member or Moderator, but we would still like to honor their work!", - "commGuidePara014": "Staff and Moderators Emeritus:", + "commGuidePara012": "Se tens algum problema ou inquietação relativamente a um Moderador específico, por favor envia um e-mail ao nosso Staff (admin@habitica.com).", + "commGuidePara013": "Numa comunidade tão grande como o Habitica, os utilizadores vão e vêm e, por vezes, um membro do staff ou um moderador precisa de pousar o seu nobre manto e descansar. estes são Membros do Staff e Moderadores Eméritos. Já não actuam com o poder de um Membro do Staff ou de um Moderador mas gostaríamos de continuar a honrar o seu trabalho.", + "commGuidePara014": "Membros do Staff e Moderadores Eméritos:", "commGuideHeadingFinal": "A Seção Final", - "commGuidePara067": "So there you have it, brave Habitican -- the Community Guidelines! Wipe that sweat off of your brow and give yourself some XP for reading it all. If you have any questions or concerns about these Community Guidelines, please reach out to us via the Moderator Contact Form and we will be happy to help clarify things.", + "commGuidePara067": "Portanto aí as tens, bravo Habiticano -- as Diretrizes da Comunidade! Limpa o suor da tua fronte e oferece-te alguma EXP por teres lido tudo. Se tiveres alguma questão ou inquietação acerca destas Diretrizes da Comunidade, por favor contacta-nos através do Formulário de Contacto com Moderadores e teremos todo o gosto em ajudar-te a clarificar tudo.", "commGuidePara068": "Agora vá em frente, bravo aventureiro, e acabe com algumas tarefas diárias!", "commGuideHeadingLinks": "Links Úteis", - "commGuideLink01": "Habitica Help: Ask a Question: a Guild for users to ask questions!", - "commGuideLink02": "The Wiki: the biggest collection of information about Habitica.", - "commGuideLink03": "GitHub: for bug reports or helping with code!", - "commGuideLink04": "The Main Trello: for site feature requests.", - "commGuideLink05": "The Mobile Trello: for mobile feature requests.", - "commGuideLink06": "The Art Trello: for submitting pixel art.", - "commGuideLink07": "The Quest Trello: for submitting quest writing.", + "commGuideLink01": "Ajuda no Habitica: Coloca uma Questão: uma Guilda para os utilizadores fazerem perguntas!", + "commGuideLink02": "A Wiki: a maior colecção de informação sobre o Habitica.", + "commGuideLink03": "GitHub: para reportar bugs ou ajudar com o código!", + "commGuideLink04": "Trello Principal: para pedir funcionalidades para o site.", + "commGuideLink05": "Trello Móvel: para pedidos de funcionalidades para telemóvel.", + "commGuideLink06": "Trello da Arte: para submeter arte pixel.", + "commGuideLink07": "Trello MIssão: para submeter textos para missões.", "commGuidePara069": "Os seguintes talentosos artistas contribuíram com essas ilustrações:" } \ No newline at end of file diff --git a/website/common/locales/pt/content.json b/website/common/locales/pt/content.json index 392c0e5c44..3111a0d2be 100644 --- a/website/common/locales/pt/content.json +++ b/website/common/locales/pt/content.json @@ -195,6 +195,7 @@ "hatchingPotionFairy": "Fada", "hatchingPotionStarryNight": "Noite Estrelada", "hatchingPotionRainbow": "Arco-Íris", + "hatchingPotionGlass": " de Vidro", "hatchingPotionNotes": "Utilize isto num ovo, e ele chocará como um mascote <%= potText(locale) %>.", "premiumPotionAddlNotes": "Não utilizável nos ovos de mascote de missão.", "foodMeat": "Carne", diff --git a/website/common/locales/pt/front.json b/website/common/locales/pt/front.json index 6636fc8f98..ed321a6721 100644 --- a/website/common/locales/pt/front.json +++ b/website/common/locales/pt/front.json @@ -112,7 +112,7 @@ "marketing2Lead3Title": "Desafiem-se Uns aos Outros", "marketing2Lead3": "Os desafios permitem-te competir com amigos e desconhecidos. Quem tiver o melhor desempenho ao fim de um desafio ganha prémios especiais.", "marketing3Header": "Aplicações e Extensões", - "marketing3Lead1": "The **iPhone & Android** apps let you take care of business on the go. We realize that logging into the website to click buttons can be a drag.", + "marketing3Lead1": "As aplicações para **iPhone & Android** permitem-te tratar dos assuntos em movimento. Temos noção de que entrar no site para clicar em botões pode ser aborrecido.", "marketing3Lead2Title": "Integrações", "marketing3Lead2": "Other **3rd Party Tools** tie Habitica into various aspects of your life. Our API provides easy integration for things like the [Chrome Extension](https://chrome.google.com/webstore/detail/habitica/pidkmpibnnnhneohdgjclfdjpijggmjj?hl=en-US), for which you lose points when browsing unproductive websites, and gain points when on productive ones. [See more here](http://habitica.wikia.com/wiki/Extensions,_Add-Ons,_and_Customizations).", "marketing4Header": "Utilização Organizacional", @@ -139,7 +139,7 @@ "playButtonFull": "Entrar no Habitica", "presskit": "Pacote de Imprensa", "presskitDownload": "Baixar todas as imagens:", - "presskitText": "Thanks for your interest in Habitica! The following images can be used for articles or videos about Habitica. For more information, please contact us at <%= pressEnquiryEmail %>.", + "presskitText": "Obrigada pelo teu interesse no Habitica! As imagens seguintes podem ser usadas em artigos ou vídeos ou o Habitica. Para mais informações, por favor contacta-nos aqui: <%= pressEnquiryEmail %>.", "pkQuestion1": "O que inspirou o Habitica? Como é que começou?", "pkAnswer1": "If you’ve ever invested time in leveling up a character in a game, it’s hard not to wonder how great your life would be if you put all of that effort into improving your real-life self instead of your avatar. We starting building Habitica to address that question.
Habitica officially launched with a Kickstarter in 2013, and the idea really took off. Since then, it’s grown into a huge project, supported by our awesome open-source volunteers and our generous users.", "pkQuestion2": "Porque é que o Habitica funciona?", diff --git a/website/common/locales/pt/gear.json b/website/common/locales/pt/gear.json index 7c39192754..70c15c7e64 100644 --- a/website/common/locales/pt/gear.json +++ b/website/common/locales/pt/gear.json @@ -258,14 +258,14 @@ "weaponSpecialSpring2018MageNotes": "Esta flor mágica nunca murcha! Aumenta Inteligência em <%= int %> e Perceção em <%= per %>. Equipamento de Edição Limitada da Primavera de 2018.", "weaponSpecialSpring2018HealerText": "Bastão de Granada", "weaponSpecialSpring2018HealerNotes": "As pedras neste bastão irão focar o seu poder quando lançar feitiços curandeiros! Aumenta Inteligência em <%= int %>. Equipamento de Edição Limitada da Primavera de 2018.", - "weaponSpecialSummer2018RogueText": "Fishing Rod", - "weaponSpecialSummer2018RogueNotes": "This lightweight, practically unbreakable rod and reel can be dual-wielded to maximize your DPS (Dragonfish Per Summer). Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.", - "weaponSpecialSummer2018WarriorText": "Betta Fish Spear", - "weaponSpecialSummer2018WarriorNotes": "Mighty enough for battle, elegant enough for ceremony, this exquisitely crafted spear shows you will protect your home surf no matter what! Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.", - "weaponSpecialSummer2018MageText": "Lionfish Fin Rays", - "weaponSpecialSummer2018MageNotes": "Underwater, magic based on fire, ice, or electricity can prove hazardous to the Mage wielding it. Conjuring poisonous spines, however, works brilliantly! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2018 Summer Gear.", - "weaponSpecialSummer2018HealerText": "Merfolk Monarch Trident", - "weaponSpecialSummer2018HealerNotes": "With a benevolent gesture, you command healing water to flow through your dominions in waves. Increases Intelligence by <%= int %>. Limited Edition 2018 Summer Gear.", + "weaponSpecialSummer2018RogueText": "Cana de Pesca", + "weaponSpecialSummer2018RogueNotes": "Esta cana de pesca leve e praticamente indestrutível pode ser usada em duas mãos para maximizar o seu LPV (Libelinhas Por Verão). Aumenta Força em <%= str %>. Equipamento de Edição Limitada do Verão de 2018.", + "weaponSpecialSummer2018WarriorText": "Lança de Peixe Betta", + "weaponSpecialSummer2018WarriorNotes": "Suficientemente poderosa para usar em batalha e elegante o suficiente para uma cerimónia, esta lança forjada de forma requintada mostra que irá proteger a sua rebentação independentemente do que aconteça! Aumenta Força em <%= str %>. Equipamento de Edição Limitada do Verão de 2018. ", + "weaponSpecialSummer2018MageText": "Barbatanas de Peixe-Leão", + "weaponSpecialSummer2018MageNotes": "Debaixo de água, magia baseada em fogo, gelo ou eletricidade podem ser perigosas para o Mago que a use. Invocar espinhos venenosos, no entanto, funciona fenomenalmente! Aumenta Inteligência em <%= int %> e Percepção por <%= per %>. Equipamento de Edição Limitada do Verão de 2018.", + "weaponSpecialSummer2018HealerText": "Tridente de Monarca de Tritões", + "weaponSpecialSummer2018HealerNotes": "Com um gesto benevolente, poderá comandar que água curativas fluam pelos seus domínios em ondas. Aumenta Inteligência em <%= int %>. Equipamento de Edição Limitada do Verão de 2018.", "weaponMystery201411Text": "Forcado de Banquete", "weaponMystery201411Notes": "Apunhale seus inimigos ou cave pelas suas comidas favoritas - esse garfo versátil faz de tudo! Não confere benefícios. Item de Assinante de Novembro 2014.", "weaponMystery201502Text": "Cajado Brilhante Alado do Amor e Também Verdade.", @@ -339,13 +339,15 @@ "weaponArmoireCoachDriversWhipText": "Chicote de Cocheiro", "weaponArmoireCoachDriversWhipNotes": "Os seus corceis sabem o que estão a fazer, por isso este chicote é só para espetáculo (e pelo som bacano do estalar!). Aumenta Inteligência em <%= int %> e Força em <%= str %>. Armário Encantado: Conjunto do Condutor de Carruagem (Item 3 de 3).", "weaponArmoireScepterOfDiamondsText": "Ceptro de Ouros", - "weaponArmoireScepterOfDiamondsNotes": "This scepter shines with a warm red glow as it grants you increased willpower. Increases Strength by <%= str %>. Enchanted Armoire: King of Diamonds Set (Item 3 of 4).", + "weaponArmoireScepterOfDiamondsNotes": "Este ceptro emite um brilho vermelho quente enquanto lhe concede força de vontade. Aumenta Força em <%= str %>. Armário Encantado: Conjunto do Rei de Diamantes (Item 3 de 4).", "weaponArmoireFlutteryArmyText": "Exército Tremulante", - "weaponArmoireFlutteryArmyNotes": "This group of scrappy lepidopterans is ready to flap fiercely and cool down your reddest tasks! Increases Constitution, Intelligence, and Strength by <%= attrs %> each. Enchanted Armoire: Fluttery Frock Set (Item 3 of 4).", + "weaponArmoireFlutteryArmyNotes": "Este grupo de lepidópteros determinados está pronto a bater as suas asas ferozmente para arrefecer as suas tarefas mais vermelhas! Aumenta Constituição, Inteligência e Força em <%= attrs %> cada. Armário Encantado: Conjunto de Fraque Vibrante (Item 3 de 4).", "weaponArmoireCobblersHammerText": "Martelo do Sapateiro", "weaponArmoireCobblersHammerNotes": "Este martelo é especialmente feito para trabalhar com cabedal. Pode realmente fazer um número numa Tarefa Diária vermelha quando não há outra alternativa. Aumenta Constituição e Força em <%= attrs %> cada. Armário Encantado: Conjunto do Sapateiro (Item 2 de 3).", "weaponArmoireGlassblowersBlowpipeText": "Tubo de Soprador de Vidro", - "weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Increases Strength by <%= str %>. Enchanted Armoire: Glassblower Set (Item 1 of 4).", + "weaponArmoireGlassblowersBlowpipeNotes": "Use este tubo para soprar vidro derretido e criar belo vasos, ornamento e outros artigos refinados. Aumenta Força em <%= str %>. Armário Encantado: Conjunto de Vidraceiro (Item 1 de 4).", + "weaponArmoirePoisonedGobletText": "Cálice Envenenado", + "weaponArmoirePoisonedGobletNotes": "Use este objeto para criar resistência a pó de iocane e outros venenos perigosos e inconcebíveis. Aumenta Inteligência em <%= int %>. Armário Encantado: Conjunto de Princesa Pirata (Item 3 de 4).", "armor": "armadura", "armorCapitalized": "Armadura", "armorBase0Text": "Roupas Modestas", @@ -577,9 +579,9 @@ "armorSpecialSpring2018WarriorText": "Armadura da Alvorada", "armorSpecialSpring2018WarriorNotes": "Esta armadura de peito é forjada com o fogo do amanhecer. Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada da Primavera de 2018.", "armorSpecialSpring2018MageText": "Manto de Túlipa", - "armorSpecialSpring2018MageNotes": "Your spell casting can only improve while clad in these soft, silky petals. Increases Intelligence by <%= int %>. Limited Edition 2018 Spring Gear.", + "armorSpecialSpring2018MageNotes": "A sua abilidade de lançar feitiços só pode melhorar enquanto estiver envolto nestas petalas macias e sedosas. Aumenta Inteligência em <%= int %>. Equipamento de Edição Limitada da Primaveira de 2018.", "armorSpecialSpring2018HealerText": "Armadura de Granada", - "armorSpecialSpring2018HealerNotes": "Let this bright armor infuse your heart with power for healing. Increases Constitution by <%= con %>. Limited Edition 2018 Spring Gear.", + "armorSpecialSpring2018HealerNotes": "Deixe que esta armadura brilhante encha o seu coração de poder para curar. Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada da Primavera de 2018.", "armorSpecialSummer2018RogueText": "Pocket Fishing Vest", "armorSpecialSummer2018RogueNotes": "Bobbers? Boxes of hooks? Spare line? Lockpicks? Smoke bombs? Whatever you need on hand for your summer fishing getaway, there's a pocket for it! Increases Perception by <%= per %>. Limited Edition 2018 Summer Gear.", "armorSpecialSummer2018WarriorText": "Betta Tail Armor", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "O calor e luz gerados por esta armadura mágica irá aquecer o seu coração mas nunca queimará a sua pele! Não confere benefícios. Item de Subscritor de Dezembro de 2017.", "armorMystery201802Text": "Armadura da Efémera", "armorMystery201802Notes": "Esta armadura brilhante reflecte a força do seu coração e concede-a a qualquer Habiticano nas redondezas que precise de encorajamento! Não confere benefícios. Item de Assinante de Fevereiro de 2018.", + "armorMystery201806Text": "Alluring Anglerfish Tail", + "armorMystery201806Notes": "This sinuous tail features glowing spots to light your way through the deep. Confers no benefit. June 2018 Subscriber Item.", "armorMystery301404Text": "Fantasia Steampunk", "armorMystery301404Notes": "Elegante e distinto. Não concede benefícios. Item de Assinante de Fevereiro 3015.", "armorMystery301703Text": "Vestido do Pavão Steampunk", @@ -742,6 +746,8 @@ "armorArmoireGlassblowersCoverallsNotes": "These coveralls will protect you while you're making masterpieces with hot molten glass. Increases Constitution by <%= con %>. Enchanted Armoire: Glassblower Set (Item 2 of 4).", "armorArmoireBluePartyDressText": "Blue Party Dress", "armorArmoireBluePartyDressNotes": "You're perceptive, tough, smart, and so fashionable! Increases Perception, Strength, and Constitution by <%= attrs %> each. Enchanted Armoire: Blue Hairbow Set (Item 2 of 2).", + "armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown", + "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Increases Perception by <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).", "headgear": "elmo", "headgearCapitalized": "Capacete", "headBase0Text": "Nenhum equipamento de cabeça", @@ -1054,6 +1060,8 @@ "headMystery201803Notes": "Although its appearance is quite decorative, you can engage the wings on this circlet for extra lift! Confers no benefit. March 2018 Subscriber Item.", "headMystery201805Text": "Phenomenal Peacock Helm", "headMystery201805Notes": "This helm will make you the proudest and prettiest (possibly also the loudest) bird in town. Confers no benefit. May 2018 Subscriber Item.", + "headMystery201806Text": "Alluring Anglerfish Helm", + "headMystery201806Notes": "The mesmerizing light atop this helm will call all the creatures of the sea to your side. We urge you to use your glowy powers of attraction for good! Confers no benefit. June 2018 Subscriber Item.", "headMystery301404Text": "Cartola Chique", "headMystery301404Notes": "Uma cartola chique para as damas e cavalheiros mais finos! Item de Assinante de Janeiro 3015. Não concede benefícios.", "headMystery301405Text": "Cartola Básica", @@ -1154,6 +1162,8 @@ "headArmoireBigWigNotes": "Some powdered wigs are for looking more authoritative, but this one is just for laughs! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.", "headArmoireGlassblowersHatText": "Glassblower's Hat", "headArmoireGlassblowersHatNotes": "This hat mainly just looks good with your other protective glassblowing gear! Increases Perception by <%= per %>. Enchanted Armoire: Glassblower Set (Item 3 of 4).", + "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress", + "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).", "offhand": "item de mão oposta", "offhandCapitalized": "Item de mão oposta", "shieldBase0Text": "Nenhum Equipamento de Mão Oposta", @@ -1368,6 +1378,8 @@ "shieldArmoireFancyShoeNotes": "A very special shoe you're working on. It's fit for royalty! Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 3 of 3).", "shieldArmoireFancyBlownGlassVaseText": "Fancy Blown Glass Vase", "shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Increases Intelligence by <%= int %>. Enchanted Armoire: Glassblower Set (Item 4 of 4).", + "shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield", + "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).", "back": "Acessório de Costas", "backCapitalized": "Acessório de Costas", "backBase0Text": "Sem Acessório de Fundo", @@ -1400,22 +1412,22 @@ "backMystery201801Notes": "They may look as delicate as snowflakes, but these enchanted wings can carry you anywhere you wish! Confers no benefit. January 2018 Subscriber Item.", "backMystery201803Text": "Daring Dragonfly Wings", "backMystery201803Notes": "These bright and shiny wings will carry you through soft spring breezes and across lily ponds with ease. Confers no benefit. March 2018 Subscriber Item.", - "backMystery201804Text": "Squirrel Tail", - "backMystery201804Notes": "Sure, it helps you balance while you jump on branches, but the most important thing is MAXIMUM FLUFF. Confers no benefit. April 2018 Subscriber Item.", - "backMystery201805Text": "Phenomenal Peacock Tail", - "backMystery201805Notes": "This gorgeous feathery tail is perfect for a strut down a lovely garden path! Confers no benefit. May 2018 Subscriber Item.", + "backMystery201804Text": "Cauda de Esquilo", + "backMystery201804Notes": "Sim, é verdade que o ajuda a manter balanço quando salta entre ramos, mas a coisa mais importante é a PELAGEM MÁXIMA. Não confere benefícios. Item de Assinante de Abril de 2018.", + "backMystery201805Text": "Cauda de Pavão Fenomenal", + "backMystery201805Notes": "Esta bonita cauda de penas é perfeita para se pavonear por um caminho de jardim agradável! Não confere benefícios. Item de Assinante de Maios de 2018.", "backSpecialWonderconRedText": "Capa Poderosa", "backSpecialWonderconRedNotes": "Sibila com força e beleza. Não concede benefícios. Equipamento Edição Especial de Convenção.", "backSpecialWonderconBlackText": "Capa Furtiva", "backSpecialWonderconBlackNotes": "Rodeado de sombras e sussurros. Não concede benefícios. Equipamento Edição Especial de Convenção.", "backSpecialTakeThisText": "Asas Take This", - "backSpecialTakeThisNotes": "These wings were earned by participating in a sponsored Challenge made by Take This. Congratulations! Increases all Stats by <%= attrs %>.", + "backSpecialTakeThisNotes": "Ganhou estas asas por participar num Desafio patrocionado pela Take This. Parabéns! Aumenta todas as Características em <%= attrs %>.", "backSpecialSnowdriftVeilText": "Véu de Dina de Neve", "backSpecialSnowdriftVeilNotes": "Este véu translúcido faz parece que está rodeado por um remoinho elegante de neve! Não confere benefícios.", "backSpecialAetherCloakText": "Capa de Éter", "backSpecialAetherCloakNotes": "Esta capa pertenceu no passado à Masterclasser perdida em pessoa. Aumenta Percepção em <%= per %>.", - "backSpecialTurkeyTailBaseText": "Turkey Tail", - "backSpecialTurkeyTailBaseNotes": "Wear your noble Turkey Tail with pride while you celebrate! Confers no benefit.", + "backSpecialTurkeyTailBaseText": "Cauda de Perú", + "backSpecialTurkeyTailBaseNotes": "Use a sua Cauda de Perú com orgulho enquanto celebra! Não confere benefícios.", "body": "Acessório de Corpo", "bodyCapitalized": "Acessório de Corpo", "bodyBase0Text": "Sem Acessório de Corpo", @@ -1427,7 +1439,7 @@ "bodySpecialWonderconBlackText": "Colar Ébano", "bodySpecialWonderconBlackNotes": "Um bonito colar de ébano! Não concede benefícios. Equipamento Edição Especial de Convenção.", "bodySpecialTakeThisText": "Ombreiras Take This", - "bodySpecialTakeThisNotes": "These pauldrons were earned by participating in a sponsored Challenge made by Take This. Congratulations! Increases all Stats by <%= attrs %>.", + "bodySpecialTakeThisNotes": "Ganhou estas ombreiras por participar num Desafio patrocionado pela Take This. Parabéns! Aumenta todas as Características em <%= attrs %>.", "bodySpecialAetherAmuletText": "Amuleto de Éter", "bodySpecialAetherAmuletNotes": "Este amuleto tem uma história misteriosa. Aumenta Constituição e Força em <%= attrs %> cada.", "bodySpecialSummerMageText": "Capeleta Brilhante", @@ -1446,10 +1458,10 @@ "bodyMystery201705Notes": "Estas asas dobradas não parecem apenas ter pinta: elas dar-lhe-ão a velocidade e agilidade de um grifo! Não confere benefícios. Item de Assinante de Maio de 2017.", "bodyMystery201706Text": "Capa Rasgada de Corsário", "bodyMystery201706Notes": "Esta capa possui bolsos secretos para esconder todo o Ouro que roubar às suas Tarefas. Não confere benefícios. Item de Assinante de Julho de 2017.", - "bodyMystery201711Text": "Carpet Rider Scarf", - "bodyMystery201711Notes": "This soft knitted scarf looks quite majestic blowing in the wind. Confers no benefit. November 2017 Subscriber Item.", - "bodyArmoireCozyScarfText": "Cozy Scarf", - "bodyArmoireCozyScarfNotes": "This fine scarf will keep you warm as you go about your wintry business. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Lamplighter's Set (Item 4 of 4).", + "bodyMystery201711Text": "Cachecol de Cavaleiro de Tapete", + "bodyMystery201711Notes": "Este cachecol tricotado suave parece bastante majestoso quando soprado pelo vento. Não confere benefícios. Item de Assinante de Novembro de 2017.", + "bodyArmoireCozyScarfText": "Cachecol Comfortável", + "bodyArmoireCozyScarfNotes": "Este cachecol fino irá mantê-lo quente enquanto procede com os seus negócios invernais. Aumenta Constituição em Percepção em <%= attrs %> cada. Armário Encantado: Conjunto do Acendedor de Lâmpadas (Item 4 de 4).", "headAccessory": "acessório para cabeça", "headAccessoryCapitalized": "Acessório de Cabeça", "accessories": "Acessórios", @@ -1504,20 +1516,20 @@ "headAccessoryTigerEarsNotes": "Estas orelhas te deixam parecendo com um feroz tigre! Não concede benefícios.", "headAccessoryWolfEarsText": "Orelhas de Lobo", "headAccessoryWolfEarsNotes": "Estas orelhas te deixam parecendo com um leal lobo! Não concede benefícios.", - "headAccessoryBlackHeadbandText": "Black Headband", - "headAccessoryBlackHeadbandNotes": "A simple black headband. Confers no benefit.", - "headAccessoryBlueHeadbandText": "Blue Headband", - "headAccessoryBlueHeadbandNotes": "A simple blue headband. Confers no benefit.", - "headAccessoryGreenHeadbandText": "Green Headband", - "headAccessoryGreenHeadbandNotes": "A simple green headband. Confers no benefit.", - "headAccessoryPinkHeadbandText": "Pink Headband", - "headAccessoryPinkHeadbandNotes": "A simple pink headband. Confers no benefit.", - "headAccessoryRedHeadbandText": "Red Headband", - "headAccessoryRedHeadbandNotes": "A simple red headband. Confers no benefit.", - "headAccessoryWhiteHeadbandText": "White Headband", - "headAccessoryWhiteHeadbandNotes": "A simple white headband. Confers no benefit.", - "headAccessoryYellowHeadbandText": "Yellow Headband", - "headAccessoryYellowHeadbandNotes": "A simple yellow headband. Confers no benefit.", + "headAccessoryBlackHeadbandText": "Fita de cabeça Preta", + "headAccessoryBlackHeadbandNotes": "Uma simples fita de cabeça preta. Não concede benefícios.", + "headAccessoryBlueHeadbandText": "Fita de cabeça Azul", + "headAccessoryBlueHeadbandNotes": "Uma simples fita de cabeça azul. Não concede benefícios.", + "headAccessoryGreenHeadbandText": "Fita de cabeça Verde", + "headAccessoryGreenHeadbandNotes": "Uma simples fita de cabeça verde. Não concede benefícios.", + "headAccessoryPinkHeadbandText": "Fita de cabeça Cor-de-Rosa", + "headAccessoryPinkHeadbandNotes": "Uma simples fita de cabeça cor-de-rosa. Não concede benefícios.", + "headAccessoryRedHeadbandText": "Fita de cabeça Vermelha", + "headAccessoryRedHeadbandNotes": "Uma simples fita de cabeça vermelha. Não concede benefícios.", + "headAccessoryWhiteHeadbandText": "Fita de cabeça Branca", + "headAccessoryWhiteHeadbandNotes": "Uma simples fita de cabeça branca. Não concede benefícios.", + "headAccessoryYellowHeadbandText": "Fita de cabeça Amarela", + "headAccessoryYellowHeadbandNotes": "Uma simples fita de cabeça amarela. Não concede benefícios.", "headAccessoryMystery201403Text": "Chifres do Andador da Floresta", "headAccessoryMystery201403Notes": "Esses chifres brilham com musgo e líquen. Não concede benefícios. Item de Assinante de Março 2014.", "headAccessoryMystery201404Text": "Antenas de Borboleta de Crepúsculo", diff --git a/website/common/locales/pt/groups.json b/website/common/locales/pt/groups.json index 7ea3f5f972..11e92d6e12 100644 --- a/website/common/locales/pt/groups.json +++ b/website/common/locales/pt/groups.json @@ -134,12 +134,11 @@ "PMPlaceholderDescription": "Select a conversation on the left", "PMPlaceholderTitleRevoked": "Your chat privileges have been revoked", "PMPlaceholderDescriptionRevoked": "You are not able to send private messages because your chat privileges have been revoked. If you have questions or concerns about this, please email admin@habitica.com to discuss it with the staff.", - "PMEnable": "Enable Private Messages", - "PMDisable": "Disable Private Messages", - "PMEnabledOptPopoverText": "When Private Messages are disabled, you still can send messages, but no one can send them to you.", - "PMDisabledOptPopoverText": "Enable this option to be able to receive messages.", + "PMReceive": "Receive Private Messages", + "PMEnabledOptPopoverText": "Private Messages are enabled. Users can contact you via your profile.", + "PMDisabledOptPopoverText": "Private Messages are disabled. Enable this option to allow users to contact you via your profile.", "PMDisabledCaptionTitle": "Private Messages are disabled", - "PMDisabledCaptionText": "You still can send messages, but no one can send them to you.", + "PMDisabledCaptionText": "You can still send messages, but no one can send them to you.", "block": "Bloquear", "unblock": "Desbloquear", "pm-reply": "Enviar uma resposta", diff --git a/website/common/locales/pt/limited.json b/website/common/locales/pt/limited.json index e0b59e569c..b8f16c14e1 100644 --- a/website/common/locales/pt/limited.json +++ b/website/common/locales/pt/limited.json @@ -130,7 +130,7 @@ "dateEndApril": "19 de abril", "dateEndMay": "May 31", "dateEndJune": "June 14", - "dateEndJuly": "July 29", + "dateEndJuly": "July 31", "dateEndAugust": "August 31", "dateEndOctober": "October 31", "dateEndNovember": "November 30", diff --git a/website/common/locales/pt/npc.json b/website/common/locales/pt/npc.json index 3cda998b42..125322e30e 100644 --- a/website/common/locales/pt/npc.json +++ b/website/common/locales/pt/npc.json @@ -41,11 +41,11 @@ "displayPotionForGold": "Você quer vender uma Poção <%= itemType %>?", "sellForGold": "Venda por <%= gold %> Ouro", "howManyToSell": "How many would you like to sell?", - "yourBalance": "Your balance", - "sell": "Sell", - "buyNow": "Buy Now", - "sortByNumber": "Number", - "featuredItems": "Featured Items!", + "yourBalance": "O seu saldo", + "sell": "Vender", + "buyNow": "Comprar agora", + "sortByNumber": "Número", + "featuredItems": "Items Promovidos!", "hideLocked": "Hide locked", "hidePinned": "Hide pinned", "hideMissing": "Hide Missing", diff --git a/website/common/locales/pt/quests.json b/website/common/locales/pt/quests.json index a545700411..facb835065 100644 --- a/website/common/locales/pt/quests.json +++ b/website/common/locales/pt/quests.json @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "Guildas não podem ser convidadas para missão.", "questNotOwned": "Você não possui esse pergaminho de missão.", "questNotGoldPurchasable": "Missão \"<%= key %>\" não é comprável com ouro.", + "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", "questLevelTooHigh": "Você precisa ter nível <%= level %> para iniciar essa missão.", "questAlreadyUnderway": "A sua equipa já está numa missão. Tente novamente quando a missão atual tiver terminado.", "questAlreadyAccepted": "Você já aceitou o convite para a missão.", diff --git a/website/common/locales/pt/questscontent.json b/website/common/locales/pt/questscontent.json index cf18fc18ea..26ba220e20 100644 --- a/website/common/locales/pt/questscontent.json +++ b/website/common/locales/pt/questscontent.json @@ -532,7 +532,7 @@ "questLostMasterclasser3Text": "The Mystery of the Masterclassers, Part 3: City in the Sands", "questLostMasterclasser3Notes": "As night unfurls over the scorching sands of the Timewastes, your guides @AnnDeLune, @Kiwibot, and @Katy133 lead you forward. Some bleached pillars poke from the shadowed dunes, and as you approach them, a strange skittering sound echoes across the seemingly-abandoned expanse.

“Invisible creatures!” says the April Fool, clearly covetous. “Oho! Just imagine the possibilities. This must be the work of a truly stealthy Rogue.”

“A Rogue who could be watching us,” says Lady Glaciate, dismounting and raising her spear. “If there’s a head-on attack, try not to irritate our opponent. I don’t want a repeat of the volcano incident.”

He beams at her. “But it was one of your most resplendent rescues.”

To your surprise, Lady Glaciate turns very pink at the compliment. She hastily stomps away to examine the ruins.

“Looks like the wreck of an ancient city,” says @AnnDeLune. “I wonder what…”

Before she can finish her sentence, a portal roars open in the sky. Wasn’t that magic supposed to be nearly impossible here? The hoofbeats of the invisible animals thunder as they flee in panic, and you steady yourself against the onslaught of shrieking skulls that flood the skies.", "questLostMasterclasser3Completion": "The April Fool surprises the final skull with a spray of sand, and it blunders backwards into Lady Glaciate, who smashes it expertly. As you catch your breath and look up, you see a single flash of someone’s silhouette moving on the other side of the closing portal. Thinking quickly, you snatch up the amulet from the chest of previously-possessed items, and sure enough, it’s drawn towards the unseen person. Ignoring the shouts of alarm from Lady Glaciate and the April Fool, you leap through the portal just as it snaps shut, plummeting into an inky swath of nothingness.", - "questLostMasterclasser3Boss": "Void Skull Swarm", + "questLostMasterclasser3Boss": "Enxame de Caveiras do Vazio", "questLostMasterclasser3RageTitle": "Swarm Respawn", "questLostMasterclasser3RageDescription": "Swarm Respawn: This bar fills when you don't complete your Dailies. When it is full, the Void Skull Swarm will heal 30% of its remaining health!", "questLostMasterclasser3RageEffect": "`Void Skull Swarm uses SWARM RESPAWN!`\n\nEmboldened by their victories, more skulls scream down from the heavens, bolstering the swarm!", @@ -556,7 +556,7 @@ "questYarnNotes": "It’s such a pleasant day that you decide to take a walk through the Taskan Countryside. As you pass by its famous yarn shop, a piercing scream startles the birds into flight and scatters the butterflies into hiding. You run towards the source and see @Arcosine running up the path towards you. Behind him, a horrifying creature consisting of yarn, pins, and knitting needles is clicking and clacking ever closer.

The shopkeepers race after him, and @stefalupagus grabs your arm, out of breath. \"Looks like all of his unfinished projects\" gasp gasp \"have transformed the yarn from our Yarn Shop\" gasp gasp \"into a tangled mass of Yarnghetti!\"

\"Sometimes, life gets in the way and a project is abandoned, becoming ever more tangled and confused,\" says @khdarkwolf. \"The confusion can even spread to other projects, until there are so many half-finished works running around that no one gets anything done!\"

It’s time to make a choice: complete your stalled projects… or decide to unravel them for good. Either way, you'll have to increase your productivity quickly before the Dread Yarnghetti spreads confusion and discord to the rest of Habitica!", "questYarnCompletion": "With a feeble swipe of a pin-riddled appendage and a weak roar, the Dread Yarnghetti finally unravels into a pile of yarn balls.

\"Take care of this yarn,\" shopkeeper @JinjooHat says, handing them to you. \"If you feed them and care for them properly, they'll grow into new and exciting projects that just might make your heart take flight…\"", "questYarnBoss": "The Dread Yarnghetti", - "questYarnDropYarnEgg": "Yarn (Egg)", + "questYarnDropYarnEgg": "Novelo (ovo)", "questYarnUnlockText": "Unlocks purchasable Yarn eggs in the Market", "winterQuestsText": "Conjunto de missões de Inverno", "winterQuestsNotes": "Contêm 'Noel Caçador', 'Encontre a Cria' e 'A Abominável Ave das Neves'. Disponível até 31 de Dezembro.", @@ -569,7 +569,7 @@ "questBadgerText": "Stop Badgering Me!", "questBadgerNotes": "Ah, winter in the Taskwoods. The softly falling snow, the branches sparkling with frost, the Flourishing Fairies… still not snoozing?

“Why are they still awake?” cries @LilithofAlfheim. “If they don't hibernate soon, they'll never have the energy for planting season.”

As you and @Willow the Witty hurry to investigate, a furry head pops up from the ground. Before you can yell, “It’s the Badgering Bother!” it’s back in its burrow—but not before snatching up the Fairies' “Hibernate” To-Dos and dropping a giant list of pesky tasks in their place!

“No wonder the fairies aren't resting, if they're constantly being badgered like that!” @plumilla says. Can you chase off this beast and save the Taskwood’s harvest this year?", "questBadgerCompletion": "You finally drive away the the Badgering Bother and hurry into its burrow. At the end of a tunnel, you find its hoard of the faeries’ “Hibernate” To-Dos. The den is otherwise abandoned, except for three eggs that look ready to hatch.", - "questBadgerBoss": "The Badgering Bother", + "questBadgerBoss": "A Chatice Aborrecedora", "questBadgerDropBadgerEgg": "Texugo (Ovo)", "questBadgerUnlockText": "Desbloqueia ovos de Texugo para compra no Mercado", "questDysheartenerText": "O Descoraçador", @@ -595,7 +595,7 @@ "dysheartenerArtCredit": "Arte por @AnnDeLune", "hugabugText": "Conjunto de Missões de Abraçar um Bicho", "hugabugNotes": "Contains 'The CRITICAL BUG,' 'The Snail of Drudgery Sludge,' and 'Bye, Bye, Butterfry.' Available until March 31.", - "questSquirrelText": "The Sneaky Squirrel", + "questSquirrelText": "O Esquilo Matreiro", "questSquirrelNotes": "You wake up and find you’ve overslept! Why didn’t your alarm go off? … How did an acorn get stuck in the ringer?

When you try to make breakfast, the toaster is stuffed with acorns. When you go to retrieve your mount, @Shtut is there, trying unsuccessfully to unlock their stable. They look into the keyhole. “Is that an acorn in there?”

@randomdaisy cries out, “Oh no! I knew my pet squirrels had gotten out, but I didn’t know they’d made such trouble! Can you help me round them up before they make any more of a mess?”

Following the trail of mischievously placed oak nuts, you track and catch the wayward sciurines, with @Cantras helping secure each one safely at home. But just when you think your task is almost complete, an acorn bounces off your helm! You look up to see a mighty beast of a squirrel, crouched in defense of a prodigious pile of seeds.

“Oh dear,” says @randomdaisy, softly. “She’s always been something of a resource guarder. We’ll have to proceed very carefully!” You circle up with your party, ready for trouble!", "questSquirrelCompletion": "With a gentle approach, offers of trade, and a few soothing spells, you’re able to coax the squirrel away from its hoard and back to the stables, which @Shtut has just finished de-acorning. They’ve set aside a few of the acorns on a worktable. “These ones are squirrel eggs! Maybe you can raise some that don’t play with their food quite so much.”", "questSquirrelBoss": "Esquilo Matreiro", diff --git a/website/common/locales/pt/subscriber.json b/website/common/locales/pt/subscriber.json index 5dfdbb3f66..88f5812987 100644 --- a/website/common/locales/pt/subscriber.json +++ b/website/common/locales/pt/subscriber.json @@ -2,7 +2,7 @@ "subscription": "Subscrição", "subscriptions": "Subscrições", "subDescription": "Compre Gemas com ouro, ganhe itens misteriosos mensalmente, mantenha o histórico do progresso, dobre o limite de drop diário e ajude os desenvolvedores. Clique para mais informações.", - "sendGems": "Send Gems", + "sendGems": "Enviar Gemas", "buyGemsGold": "Comprar Gemas com Ouro", "buyGemsGoldText": "Alexander the Merchant will sell you Gems at a cost of 20 Gold per Gem. His monthly shipments are initially capped at 25 Gems per month, but for every 3 consecutive months that you are subscribed, this cap increases by 5 Gems, up to a maximum of 50 Gems per month!", "mustSubscribeToPurchaseGems": "Deve subscrever para comprar gemas com ouro.", @@ -25,7 +25,7 @@ "giftSubscriptionText4": "Obrigado por suportar Habitica!", "monthUSD": "USD / Mês", "organization": "Organização", - "groupPlans": "Group Plans", + "groupPlans": "Planos de Grupo", "indivPlan1": "Para indivíduos, Habitica é grátis. Até para pequenos grupos de interesse, grátis (ou barato)", "indivPlan2": "pode ser usado para motivar participantes em modificações comportamentais Pense em grupos de redação, desafios de arte, e mais.", "groupText1": "Mas alguns líderes de grupos irão querer mais controle, privacidade, segurança, e suporte. Exemplos de tais grupos são famílias, grupos de saúde e bem-estar, grupos de funcionários, e mais. Esses planos fornecem instâncias privadas do Habitica para seu grupo ou organização, seguro e independente de", @@ -131,10 +131,10 @@ "mysterySet201702": "Conjunto do Rouba-Corações", "mysterySet201703": "Conjunto Cintilante", "mysterySet201704": "Conjunto de Conto de Fadas", - "mysterySet201705": "Feathered Fighter Set", - "mysterySet201706": "Pirate Pioneer Set", + "mysterySet201705": "Conjunto de Guerreiro Emplumado", + "mysterySet201706": "Conjunto de Pirata Pioneiro", "mysterySet201707": "Jellymancer Set", - "mysterySet201708": "Lava Warrior Set", + "mysterySet201708": "Conjunto do Guerreiro de Lava", "mysterySet201709": "Sorcery Student Set", "mysterySet201710": "Imperious Imp Set", "mysterySet201711": "Carpet Rider Set", @@ -144,6 +144,7 @@ "mysterySet201803": "Daring Dragonfly Set", "mysterySet201804": "Spiffy Squirrel Set", "mysterySet201805": "Phenomenal Peacock Set", + "mysterySet201806": "Alluring Anglerfish Set", "mysterySet301404": "Conjunto \"Steampunk Padrão\"", "mysterySet301405": "Conjunto \"Acessórios Steampunk\"", "mysterySet301703": "Conjunto do Pavão Steampunk", @@ -186,7 +187,7 @@ "choosePaymentMethod": "Choose your payment method", "subscribeSupportsDevs": "Subscribing supports the developers and helps keep Habitica running", "buyGemsSupportsDevs": "Purchasing Gems supports the developers and helps keep Habitica running", - "support": "SUPPORT", + "support": "SUPORTE", "gemBenefitLeadin": "Gems allow you to buy fun extras for your account, including:", "gemBenefit1": "Unique and fashionable costumes for your avatar.", "gemBenefit2": "Backgrounds to immerse your avatar in the world of Habitica!", @@ -200,10 +201,10 @@ "subscriptionBenefit5": "Receive the exclusive Royal Purple Jackalope pet!", "subscriptionBenefit6": "Earn Mystic Hourglasses for use in the Time Travelers' Shop!", "haveCouponCode": "Do you have a coupon code?", - "subscriptionAlreadySubscribedLeadIn": "Thanks for subscribing!", + "subscriptionAlreadySubscribedLeadIn": "Obrigado pela subscrição!", "subscriptionAlreadySubscribed1": "To see your subscription details and cancel, renew, or change your subscription, please go to User icon > Settings > Subscription.", - "purchaseAll": "Purchase All", + "purchaseAll": "Comprar Tudo", "gemsPurchaseNote": "Subscribers can buy gems for gold in the Market! For easy access, you can also pin the gem to your Rewards column.", - "gemsRemaining": "gems remaining", - "notEnoughGemsToBuy": "You are unable to buy that amount of gems" + "gemsRemaining": "gemas restantes", + "notEnoughGemsToBuy": "É incapaz de comprar essa quantidade de gemas" } \ No newline at end of file diff --git a/website/common/locales/pt/tasks.json b/website/common/locales/pt/tasks.json index df3ecb0e1d..885bc37139 100644 --- a/website/common/locales/pt/tasks.json +++ b/website/common/locales/pt/tasks.json @@ -5,7 +5,7 @@ "sureDeleteCompletedTodos": "Tens a certeza de que queres apagar os teus Afazeres concluídos?", "lotOfToDos": "Os seus 30 Afazeres mais recentes são mostrados aqui. Pode ver os afazeres concluídos mais antigos de Dados > Ferramenta de Exibição de Dados ou Dados > Exportar Dados > Dados do Utilizador.", "deleteToDosExplanation": "Se carregar no botão abaixo, todos os seus Afazeres completos e arquivados serão permanentemente apagados, excepto Afazeres pertencentes a desafios correntemente ativos ou Planos de Grupo. Exporte-os primeiro se quiser manter um registo dos mesmos.", - "addMultipleTip": "Tip: To add multiple <%= taskType %>, separate each one using a line break (Shift + Enter) and then press \"Enter.\"", + "addMultipleTip": "Dica: Para adicionar <%= taskType %> em simultâneo, separa cada um usando um parágrafo (Shift + Enter) e no fim pressiona \"Enter\".", "addsingle": "Adicionar Único", "addATask": "Adicionar <%= type %>", "editATask": "Editar <%= type %>", @@ -194,8 +194,6 @@ "weeks": "Semanas", "year": "Ano", "years": "Anos", - "confirmScoreNotes": "Confirme a pontuação de tarefas com notas", - "taskScoreNotesTooLong": "Notas de pontuação de tarefas devem ter menos de 256 caracteres", "groupTasksByChallenge": "Agrupar tarefas por título de desafio", "taskNotes": "Notas de Tarefa", "monthlyRepeatHelpContent": "Esta tarefa deve ser cumprida a cada X meses.", diff --git a/website/common/locales/pt_BR/backgrounds.json b/website/common/locales/pt_BR/backgrounds.json index 5d3b143b2b..fbd7435d14 100644 --- a/website/common/locales/pt_BR/backgrounds.json +++ b/website/common/locales/pt_BR/backgrounds.json @@ -359,5 +359,12 @@ "backgroundRowboatText": "Barco a Remo", "backgroundRowboatNotes": "Cante rondas em um Barco a Remo.", "backgroundPirateFlagText": "Bandeira de Pirata", - "backgroundPirateFlagNotes": "Voe em uma destemida Bandeira de Pirata." + "backgroundPirateFlagNotes": "Voe em uma destemida Bandeira de Pirata.", + "backgrounds072018": "Conjunto 50: Lançado em Julho de 2018", + "backgroundDarkDeepText": "Escuras Profundezas", + "backgroundDarkDeepNotes": "Nade nas Escuras Profundezas ao lado dos seres bioluminescentes. ", + "backgroundDilatoryCityText": "Cidade de Lentópolis", + "backgroundDilatoryCityNotes": "Perambule na submersa Cidade de Lentópolis.", + "backgroundTidePoolText": "Piscinas das Marés ", + "backgroundTidePoolNotes": "Observe a vida oceânica em uma das Piscinas das Marés." } \ No newline at end of file diff --git a/website/common/locales/pt_BR/communityguidelines.json b/website/common/locales/pt_BR/communityguidelines.json index d1dea50b47..733e505939 100644 --- a/website/common/locales/pt_BR/communityguidelines.json +++ b/website/common/locales/pt_BR/communityguidelines.json @@ -14,7 +14,7 @@ "commGuideList02B": "Obedecer todos os Termos e Condições", "commGuideList02C": "Não publique imagens ou texto que envolvam violência, ameaças ou que sejam sexualmente explícitas ou sugestivas. Também não promova discriminação, intolerância, racismo, sexismo, ódio, assédio ou ofensas contra um indivíduo ou grupo. Nem mesmo como uma piada. Isso inclui insultos, bem como declarações. Nem todo mundo tem o mesmo senso de humor e, então, algo que você considera uma piada pode ser ofensivo para o outro. Ataque suas Diárias, não os outros.", "commGuideList02D": "Mantenha a linguagem apropriada para todas as idades. Temos muitos Habiticianos jovens que acessam o site! Não vamos machucar os inocentes ou atrapalhar qualquer Habiticiano a atingir seus objetivos.", - "commGuideList02E": "Tenha respeito pelas crenças dos outros. Não os julgue, mesmo se o que diz for algo que ache brando ou socialmente correto. Somos uma comunidade diversa, com pessoas de várias religiões e culturas e queremos que todas elas se sintam bem nos locais públicos. Atenção, se um moderador ou um membro da equipe te disser que certo termo é proibido no Habitica, a decisão é irreversível, mesmo que não o considere uma ofensa. Além disso, ofensas religiosas serão resolvidas severamente uma vez que violam os Termos de Serviço.", + "commGuideList02E": "Tenha respeito pelas crenças dos outros. Não os julgue, mesmo se o que diz for algo que ache brando ou socialmente correto. Somos uma comunidade diversa, com pessoas de várias religiões e culturas e queremos que todas elas se sintam bem nos locais públicos. Atenção, se um moderador ou um membro da Equipe te disser que certo termo é proibido no Habitica, a decisão é irreversível, mesmo que não o considere uma ofensa. Além disso, ofensas religiosas serão resolvidas severamente uma vez que violam os Termos de Serviço.", "commGuideList02F": "Evite discussões longas de tópicos polêmicos na Taverna e assuntos que podem ser desnecessárias nesse contexto. Se você sente que alguém disse algo rude ou ofensivo, não responda essa pessoa. Se alguém mencionar algo que é permitido pelas regras, mas que é ofensivo para você, está tudo bem em avisar à pessoa de maneira educada. Se é algo que vai contra as Diretrizes ou os Termos de Serviço, você deve reportar e deixar que os Moderadores respondam. Em caso de dúvida, reporte a publicação.", "commGuideList02G": "Responda sempre o mais rápido possível qualquer pedido da Moderação. Isso pode incluir, mas não se limitar a: pedir que você faça suas publicações nos locais privados, editar seu perfil para remover conteúdo impróprio, pedir para você discutir um assunto específico em um espaço mais apropriado, etc.", "commGuideList02H": "Respire e reflita antes de responder com raiva quando alguém disser que o que você disse ou fez deixou esse alguém desconfortável. É um grande sinal de força estar apto a pedir desculpas sinceras para alguém. Se você sentiu que a maneira que você foi respondido é inapropriada, fale com um moderador antes de falar com a pessoa publicamente.", diff --git a/website/common/locales/pt_BR/content.json b/website/common/locales/pt_BR/content.json index 5089fea61d..e7165d2a1a 100644 --- a/website/common/locales/pt_BR/content.json +++ b/website/common/locales/pt_BR/content.json @@ -195,6 +195,7 @@ "hatchingPotionFairy": "Fada", "hatchingPotionStarryNight": "Noite Estrelada", "hatchingPotionRainbow": "Arco-Íris", + "hatchingPotionGlass": "Vidro", "hatchingPotionNotes": "Use-a em um ovo e ele chocará como um mascote <%= potText(locale) %>.", "premiumPotionAddlNotes": "Não utilizável em ovos de mascote de missões.", "foodMeat": "Carne", diff --git a/website/common/locales/pt_BR/defaulttasks.json b/website/common/locales/pt_BR/defaulttasks.json index a3b38e0fb7..1a6fae98e8 100644 --- a/website/common/locales/pt_BR/defaulttasks.json +++ b/website/common/locales/pt_BR/defaulttasks.json @@ -10,7 +10,7 @@ "defaultHabit5Text": "Clique aqui para editar e fazer deste hábito um que você queira parar de fazer", "defaultHabit5Notes": "Ou delete da tela de edição", "defaultDaily1Text": "Use o Habitica para acompanhar suas tarefas", - "defaultTodo1Text": "Entrar no Habitica (Me marque!)", + "defaultTodo1Text": "Entrar na [Guilda Brasil](/groups/guild/ac9ff1fd-50fc-46a6-9791-e1833173dab3) (Me marque!)", "defaultTodoNotes": "Você pode completar, editar ou remover este Afazer.", "defaultTodo2Text": "Terminar o tutorial sobre Tarefas do Justin.", "defaultTodo2Notes": "Visite todas as seções na barra inferior", diff --git a/website/common/locales/pt_BR/faq.json b/website/common/locales/pt_BR/faq.json index 61668ebaed..61dda3b817 100644 --- a/website/common/locales/pt_BR/faq.json +++ b/website/common/locales/pt_BR/faq.json @@ -49,10 +49,10 @@ "androidFaqAnswer11": "Você pode reportar um bug, pedir uma funcionalidade ou enviar sua opinião pelo menu Ajuda > Reportar um Problema e Ajuda > Enviar Opinião. Faremos todo o possível para ajudá-lo(a)!", "webFaqAnswer11": "Para reportar um bug, vá para [Ajuda > Reportar um Problema](https://habitica.com/groups/guild/a29da26b-37de-4a71-b0c6-48e72a900dac) e leia os pontos acima da caixa de chat. Se você não conseguir logar no Habitica, envie suas informações de login (não a sua senha!) para [<%= techAssistanceEmail %>](<%= wikiTechAssistanceEmail %>). Não se preocupe, nós corrigiremos isso para você rapidamente!

Pedidos de funcionalidades são pegos nos fóruns do Trello. Vá para [Ajuda > Solicitar Funcionalidade](https://trello.com/c/odmhIqyW/440-read-first-table-of-contents) e siga as instruções. Tcharammmm!", "faqQuestion12": "Como luto contra um Chefão Global?", - "iosFaqAnswer12": "Chefões Globais são monstros especiais que aparecem na Taverna. Todos os usuários ativos o enfrentam automaticamente e suas tarefas e habilidades causarão dano no Chefão como de costume.\n\nVocê pode estar em uma Missão normal ao mesmo tempo. Suas tarefas e Habilidades contarão para ambos Chefão Global e missões de Chefão/Coleta do seu grupo.\n\nUm Chefão Global nunca irá machucar você ou sua conta de qualquer maneira. Ao invés disso, ele tem uma Barra de Fúria que encherá quando usuários não fizerem as Diárias. Se a Barra de Fúria encher, ele atacará um dos NPC do site e a imagem dele mudará.\n\nVocê pode ler mais sobre [Chefões Globais anteriores](http://habitica.wikia.com/wiki/World_Bosses) na wiki.", - "androidFaqAnswer12": "Chefões Globais são monstros especiais que aparecem na Taverna. Todos os usuários ativos o enfrentam automaticamente e suas tarefas e habilidades causarão dano no Chefão como de costume.\n\nVocê pode estar em uma Missão normal ao mesmo tempo. Suas tarefas e Habilidades contarão para ambos Chefão Global e missões de Chefão/Coleta do seu grupo.\n\nUm Chefão Global nunca irá machucar você ou sua conta de qualquer maneira. Ao invés disso, ele tem uma Barra de Fúria que encherá quando usuários não fizerem as Diárias. Se a Barra de Fúria encher, ele atacará um dos NPC do site e a imagem dele mudará.\n\nVocê pode ler mais sobre [Chefões Globais anteriores](http://habitica.wikia.com/wiki/World_Bosses) na wiki.", - "webFaqAnswer12": "Chefões Globais são monstros especiais que aparecem na Taverna. Todos os usuários ativos o enfrentam automaticamente e suas tarefas e habilidades causarão dano no Chefão como de costume. Você pode estar em uma Missão normal ao mesmo tempo. Suas tarefas e Habilidades contarão para ambos Chefão Global e missões de Chefão/Coleta do seu grupo. Um Chefão Global nunca irá machucar você ou sua conta de qualquer maneira. Ao invés disso, ele tem uma Barra de Fúria que encherá quando usuários não fizerem as Diárias. Se a Barra de Fúria encher, ele atacará um dos NPC do site e a imagem dele mudará. Você pode ler mais sobre [Chefões Globais anteriores](http://habitica.wikia.com/wiki/World_Bosses) na wiki.", - "iosFaqStillNeedHelp": "Se você tem uma pergunta que não está no [FAQ da Wiki](http://habitica.wikia.com/wiki/FAQ), venha perguntar no chat da Taverna em Menu > Taverna! Ficamos felizes em ajudar.", - "androidFaqStillNeedHelp": "Se você tem uma pergunta que não está nessa lista ou no [FAQ da Wiki](http://habitica.wikia.com/wiki/FAQ), venha perguntar no chat da Taverna em Menu > Taverna! Ficamos felizes em ajudar.", - "webFaqStillNeedHelp": "Se você tiver uma dúvida que não estiver nesta lista ou no [FAQ da Wiki](http://pt-br.habitica.wikia.com/wiki/FAQ), pergunte na [Guilda Brasil](https://habitica.com/groups/guild/ac9ff1fd-50fc-46a6-9791-e1833173dab3)! Ficaremos feliz em ajudar." + "iosFaqAnswer12": "Chefões Globais são monstros especiais que aparecem na Taverna. Todos os usuários ativos o enfrentam automaticamente e suas tarefas e habilidades causarão dano no Chefão como de costume.\n\nVocê pode estar em uma Missão normal ao mesmo tempo. Suas tarefas e Habilidades contarão para ambos Chefão Global e missões de Chefão/Coleta do seu grupo.\n\nUm Chefão Global nunca irá machucar você ou sua conta de qualquer maneira. Ao invés disso, ele tem uma Barra de Fúria que encherá quando usuários não fizerem as Diárias. Se a Barra de Fúria encher, ele atacará um dos NPC do site e a imagem dele mudará.\n\nVocê pode ler mais sobre [Chefões Globais anteriores](http://pt-br.habitica.wikia.com/wiki/World_Bosses) na wiki.", + "androidFaqAnswer12": "Chefões Globais são monstros especiais que aparecem na Taverna. Todos os usuários ativos o enfrentam automaticamente e suas tarefas e habilidades causarão dano no Chefão como de costume.\n\nVocê pode estar em uma Missão normal ao mesmo tempo. Suas tarefas e Habilidades contarão para ambos Chefão Global e missões de Chefão/Coleta do seu grupo.\n\nUm Chefão Global nunca irá machucar você ou sua conta de qualquer maneira. Ao invés disso, ele tem uma Barra de Fúria que encherá quando usuários não fizerem as Diárias. Se a Barra de Fúria encher, ele atacará um dos NPC do site e a imagem dele mudará.\n\nVocê pode ler mais sobre [Chefões Globais anteriores](http://pt-br.habitica.wikia.com/wiki/World_Bosses) na wiki.", + "webFaqAnswer12": "Chefões Globais são monstros especiais que aparecem na Taverna. Todos os usuários ativos o enfrentam automaticamente e suas tarefas e habilidades causarão dano no Chefão como de costume. Você pode estar em uma Missão normal ao mesmo tempo. Suas tarefas e Habilidades contarão para ambos Chefão Global e missões de Chefão/Coleta do seu grupo. Um Chefão Global nunca irá machucar você ou sua conta de qualquer maneira. Ao invés disso, ele tem uma Barra de Fúria que encherá quando usuários não fizerem as Diárias. Se a Barra de Fúria encher, ele atacará um dos NPC do site e a imagem dele mudará. Você pode ler mais sobre [Chefões Globais anteriores](http://pt-br.habitica.wikia.com/wiki/World_Bosses) na wiki.", + "iosFaqStillNeedHelp": "Se você tem uma pergunta que não está no [FAQ da Wiki](http://pt-br.habitica.wikia.com/wiki/FAQ), venha perguntar no chat da Taverna em Menu > Taverna! Ficamos felizes em ajudar.", + "androidFaqStillNeedHelp": "Se você tem uma pergunta que não está nessa lista ou no [FAQ da Wiki](http://pt-br.habitica.wikia.com/wiki/FAQ), venha perguntar no chat da Taverna em Menu > Taverna! Ficamos felizes em ajudar.", + "webFaqStillNeedHelp": "Se você tiver uma dúvida que não estiver nesta lista ou no [FAQ da Wiki](http://pt-br.habitica.wikia.com/wiki/FAQ), pergunte na [Guilda Brasil](https://habitica.com/groups/guild/ac9ff1fd-50fc-46a6-9791-e1833173dab3)! Ficaremos felizes em ajudar." } \ No newline at end of file diff --git a/website/common/locales/pt_BR/gear.json b/website/common/locales/pt_BR/gear.json index 2feb25dd49..aa7d2269f7 100644 --- a/website/common/locales/pt_BR/gear.json +++ b/website/common/locales/pt_BR/gear.json @@ -258,14 +258,14 @@ "weaponSpecialSpring2018MageNotes": "Essa flor mágica nunca murcha! Aumenta Inteligência em <%= int %> e Percepção em <%= per %>. Equipamento de Edição Limitada. Primavera de 2018.", "weaponSpecialSpring2018HealerText": "Bastão de Granada", "weaponSpecialSpring2018HealerNotes": "As pedras deste cajado irão focar seu poder quando você lançar feitiços de cura! Aumenta Inteligência em <%= int %>. Equipamento de Edição Limitada. Primavera de 2018.", - "weaponSpecialSummer2018RogueText": "Fishing Rod", - "weaponSpecialSummer2018RogueNotes": "This lightweight, practically unbreakable rod and reel can be dual-wielded to maximize your DPS (Dragonfish Per Summer). Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.", - "weaponSpecialSummer2018WarriorText": "Betta Fish Spear", - "weaponSpecialSummer2018WarriorNotes": "Mighty enough for battle, elegant enough for ceremony, this exquisitely crafted spear shows you will protect your home surf no matter what! Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.", - "weaponSpecialSummer2018MageText": "Lionfish Fin Rays", - "weaponSpecialSummer2018MageNotes": "Underwater, magic based on fire, ice, or electricity can prove hazardous to the Mage wielding it. Conjuring poisonous spines, however, works brilliantly! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2018 Summer Gear.", - "weaponSpecialSummer2018HealerText": "Merfolk Monarch Trident", - "weaponSpecialSummer2018HealerNotes": "With a benevolent gesture, you command healing water to flow through your dominions in waves. Increases Intelligence by <%= int %>. Limited Edition 2018 Summer Gear.", + "weaponSpecialSummer2018RogueText": "Vara de Pescar", + "weaponSpecialSummer2018RogueNotes": "Esta leve, e praticamente inquebrável, vara com carretel pode ser usada com ambas as mãos para maximizar seu DPS (Douradas Por Segundo). Aumenta Força em <%= str %>. Equipamento de Edição Limitada. Verão de 2018.", + "weaponSpecialSummer2018WarriorText": "Lança Peixe Betta", + "weaponSpecialSummer2018WarriorNotes": "Poderoso o bastante para a batalha e elegante o suficiente para uma cerimônia, esta lança finamente esculpida mostra que você protegerá seu lar surfista, não importa o que aconteça! Aumenta Força em<%= str %>. Equipamento de Edição Limitada. Verão de 2018.", + "weaponSpecialSummer2018MageText": "Barbatanas Rajadas de Leão-Maguinho", + "weaponSpecialSummer2018MageNotes": "É bem perigoso mergulhar e ao mesmo tempo invocar magias baseadas em fogo, gelo ou eletricidade. No entanto conjurar espinhos venenosos funcionam maravilhosamente bem. Aumenta Inteligência em <%= int %> e Percepção em <%= per %>. Equipamento de Edição Limitada. Verão de 2018.", + "weaponSpecialSummer2018HealerText": "Tridente do Monarca Atlântico", + "weaponSpecialSummer2018HealerNotes": "Em um gesto benevolente, vossa majestade comanda que flua, em ondas, água curadoras em seus domínios. Aumenta Inteligência em <%= int %>. Equipamento de Edição Limitada. Verão de 2018.", "weaponMystery201411Text": "Garfo de Banquete", "weaponMystery201411Notes": "Apunhale seus inimigos ou empilhe suas comidas favoritas - esse versátil garfão faz de tudo! Não concede benefícios. Item de Assinante, Novembro de 2014.", "weaponMystery201502Text": "Cajado Brilhante Alado do Amor e Também da Verdade", @@ -346,6 +346,8 @@ "weaponArmoireCobblersHammerNotes": "Este martelo é feito especialmente para se trabalhar com couro. Porém ele pode ajudar numa emergência contra uma Diária vermelha. Aumenta Constituição e Força em <%= attrs %> cada.Armário Encantado: Conjunto do Sapateiro (Item 2 de 3).", "weaponArmoireGlassblowersBlowpipeText": "Soprador do Vidreiro", "weaponArmoireGlassblowersBlowpipeNotes": "Use este tubo para soprar vidro derretido e criar lindos vasos, enfeites e outras coisas elegantes. Aumenta Força em <%= str %>. Armário Encantado: Conjunto do Vidreiro (Item 1 de 4).", + "weaponArmoirePoisonedGobletText": "Poisoned Goblet", + "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).", "armor": "armadura", "armorCapitalized": "Armadura", "armorBase0Text": "Roupas Modestas", @@ -580,14 +582,14 @@ "armorSpecialSpring2018MageNotes": "Suas habilidades mágicas serão ampliadas enquanto envolto nestas macias e sedosas pétalas. Aumenta Inteligência em <%= int %>. Equipamento de Edição Limitada. Primavera de 2018.", "armorSpecialSpring2018HealerText": "Armadura Escarlate", "armorSpecialSpring2018HealerNotes": "Deixe esta reluzente armadura aquecer seu coração com poder de cura. Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada. Primavera de 2018.", - "armorSpecialSummer2018RogueText": "Pocket Fishing Vest", - "armorSpecialSummer2018RogueNotes": "Bobbers? Boxes of hooks? Spare line? Lockpicks? Smoke bombs? Whatever you need on hand for your summer fishing getaway, there's a pocket for it! Increases Perception by <%= per %>. Limited Edition 2018 Summer Gear.", - "armorSpecialSummer2018WarriorText": "Betta Tail Armor", - "armorSpecialSummer2018WarriorNotes": "Dazzle onlookers with whorls of magnificent color as you spin and dart through the water. How could any opponent dare strike at this beauty? Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.", - "armorSpecialSummer2018MageText": "Lionfish Scale Hauberk", - "armorSpecialSummer2018MageNotes": "Venom magic has a reputation for subtlety. Not so this colorful armor, whose message is clear to beast and task alike: watch out! Increases Intelligence by <%= int %>. Limited Edition 2018 Summer Gear.", - "armorSpecialSummer2018HealerText": "Merfolk Monarch Robes", - "armorSpecialSummer2018HealerNotes": "These cerulean vestments reveal that you have land-walking feet... well. Not even a monarch can be expected to be perfect. Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.", + "armorSpecialSummer2018RogueText": "Colete de Pesca (com bolsos!)", + "armorSpecialSummer2018RogueNotes": "Boias guias? Caixas de anzóis? Linha de reposição? Gazuas? Bombas de fumaça? Tudo o que você precisar para a sua fuga de verão, esse colete tem um bolso para isso! Aumenta Percepção em <%= per %>. Equipamento de Edição Limitada.Verão de 2018.", + "armorSpecialSummer2018WarriorText": "Armadura Cauda Betta", + "armorSpecialSummer2018WarriorNotes": "Encante com espirais de cores magníficas aqueles que lhe ver nadar e tornear. Como alguém ousará atacar algo tão glorioso? Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada. Verão de 2018.", + "armorSpecialSummer2018MageText": "Armadura de Escamas de Leão-Maguinho", + "armorSpecialSummer2018MageNotes": "Magia venenosa é famosa pela sua sutiliza. Esta armadura não só tem uma cor vibrante, como também passa uma mensagem bem clara para as tarefas e inimigos: Se cuidem! Aumenta Inteligência em <%= int %> Equipamento de Edição Limitada. Verão de 2018.", + "armorSpecialSummer2018HealerText": "Robes do Monarca Atlântico", + "armorSpecialSummer2018HealerNotes": "Estas vestes cerúleas revelam ... seus pés de anfíbios ... Bem, nem mesmo um monarca pode ser perfeito. Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada. Verão de 2018.", "armorMystery201402Text": "Túnica do Mensageiro", "armorMystery201402Notes": "Cintilante e resistente, essa túnica tem vários bolsos para carregar cartas. Não concede benefícios. Item de Assinante, Fevereiro de 2014.", "armorMystery201403Text": "Armadura de Caminhante da Floresta", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "O calor e luz gerador por esta armadura mágica irão aquecer seu coração, mas nunca queimar sua pele! Não concede benefícios. Item de assinante, Setembro de 2017.", "armorMystery201802Text": "Armadura Bug do Amor", "armorMystery201802Notes": "Esta armadura brilhante reflete a força do seu coração e a infunde em qualquer Habiticano próximo que possa precisar de encorajamento! Não concede benefícios. Item de Assinante, Fevereiro de 2018.", + "armorMystery201806Text": "Cauda do Peixe-Pescador Atraente", + "armorMystery201806Notes": " Esta cauda sinuante apresenta pontos cintilantes para iluminar o seu caminho em meio às profundezas.Item de Assinante, Junho de 2018.", "armorMystery301404Text": "Traje da Revolução Industrial", "armorMystery301404Notes": "Elegante e distinto! Não concede benefícios. Item de Assinante, Fevereiro de 3015.", "armorMystery301703Text": "Vestido de Pavão da Revolução Industrial", @@ -742,6 +746,8 @@ "armorArmoireGlassblowersCoverallsNotes": "Esse macacão te protegerá enquanto cria obras de arte com vidro derretido. Aumenta Constituição em <%= con %>. Armário Encantado: Conjunto do Vidreiro (Item 2 de 4).", "armorArmoireBluePartyDressText": "Vestido de Festa Azul", "armorArmoireBluePartyDressNotes": "Você percebe bem, é forte, é inteligente e tão chique! Aumenta Percepção, Força e Constituição em <%= attrs %> cada. Armário Encantado: Conjunto Laço de cabelo Azul (Item 2 de 2).", + "armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown", + "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Increases Perception by <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).", "headgear": "Elmo", "headgearCapitalized": "Equipamento De Cabeça", "headBase0Text": "Sem Equipamento de Cabeça", @@ -976,14 +982,14 @@ "headSpecialSpring2018MageNotes": "As pétalas elegantes desse elmo te abençoarão com a magia da primavera. Aumenta Percepção em <%= per %>. Equipamento de Edição Limitada. Primavera de 2018.", "headSpecialSpring2018HealerText": "Tiara Escarlate", "headSpecialSpring2018HealerNotes": "As gemas polidas dessa tiara potencializarão sua energia mental. Aumenta Inteligência em <%= int %>. Equipamento de Edição Limitada. Primavera de 2018.", - "headSpecialSummer2018RogueText": "Fishing Sun Hat", - "headSpecialSummer2018RogueNotes": "Provides comfort and protection from the harsh glare of the summer sun over the water. Especially important if you're more accustomed to staying stealthy in the shadows! Increases Perception by <%= per %>. Limited Edition 2018 Summer Gear.", - "headSpecialSummer2018WarriorText": "Betta Fish Barbute", - "headSpecialSummer2018WarriorNotes": "Show everyone you're the alpha betta with this flamboyant helm! Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.", - "headSpecialSummer2018MageText": "Lionfish Crest", - "headSpecialSummer2018MageNotes": "Glare dolorously upon anyone who dares say you look like a “tastyfish”. Increases Perception by <%= per %>. Limited Edition 2018 Summer Gear.", - "headSpecialSummer2018HealerText": "Merfolk Monarch Crown", - "headSpecialSummer2018HealerNotes": "Adorned with aquamarine, this finned diadem marks leadership of folk, fish, and those who are a bit of both! Increases Intelligence by <%= int %>. Limited Edition 2018 Summer Gear.", + "headSpecialSummer2018RogueText": "Chapéu de Pesca", + "headSpecialSummer2018RogueNotes": "Proporciona conforto e proteção contra o brilho intenso do sol sobre a água. Especialmente importante para quem só fica nas sombras de modo furtivo. Aumenta Percepção em <%= per %>. Equipamento de Edição Limitada. Verão de 2018.", + "headSpecialSummer2018WarriorText": "Barbatana Betta", + "headSpecialSummer2018WarriorNotes": "Mostre para todo mundo que você é o Alpha entre os bettas com este extravagante capacete! Aumenta Força em <%= str %>. Equipamento de Edição Limitada. Verão de 2018.", + "headSpecialSummer2018MageText": "Crista do Leão-Maguinho", + "headSpecialSummer2018MageNotes": "O brilho afiado relembra o gosto da dor para aqueles que lhe acharem apetitoso. Aumenta Percepção em <%= per %>. Equipamento de Edição Limitada. Verão de 2018.", + "headSpecialSummer2018HealerText": "Coroa do Monarca Atlântico", + "headSpecialSummer2018HealerNotes": "Adornado com água-marinha, este refinado diadema marca a liderança dos atlantes, peixes e aqueles que são um pouco dos dois! Aumenta Inteligência em <%= int %>. Equipamento de Edição Limitada. Verão de 2018.", "headSpecialGaymerxText": "Elmo dos Guerreiros Arco-Íris", "headSpecialGaymerxNotes": "Para celebrar a Conferência GaymerX, este elmo especial foi decorado com uma colorida e radiante estampa. A GaymerX é uma conferência de games que celebra a comunidade LGTBQ e jogos e é aberta para todo mundo.", "headMystery201402Text": "Elmo Alado", @@ -1054,6 +1060,8 @@ "headMystery201803Notes": "Apesar de sua aparência decorativa, você pode abanar as asas desta tiara para facilitar seu movimento. Não concede benefícios. Item de Assinante, Março de 2018.", "headMystery201805Text": "Elmo do Pavão Fenomenal", "headMystery201805Notes": "Esse elmo te tornará o mais orgulhoso e belo (possivelmente também o mais chato) pássaro da cidade. Não concede benefícios. Item de Assinante, Maio de 2018.", + "headMystery201806Text": "Elmo do Peixe-Pescador Atraente", + "headMystery201806Notes": "A luz hipnotizante deste elmo chamará todas as criaturas do mar para perto de você. Nós pedimos que você use seu cintilante poder de atração para o bem! Não confere nenhum benefício. Item de Assinante, Junho de 2018.", "headMystery301404Text": "Cartola Chique", "headMystery301404Notes": "Uma cartola chique para os mais finos cavalheiros e damas! Não concede benefícios. Item de Assinante, Janeiro de 3015.", "headMystery301405Text": "Cartola Básica", @@ -1154,6 +1162,8 @@ "headArmoireBigWigNotes": "Algumas perucas são usadas para parecer mais autoritário, mas essa é só pela piada! Aumenta Força em <%= str %>. Armário Encantado: Item Independente.", "headArmoireGlassblowersHatText": "Chapéu do Vidreiro", "headArmoireGlassblowersHatNotes": "Esse chapéu combina com os outros equipamentos de proteção do vidreiro! Aumenta Percepção em <%= per %>. Armário Encantado: Conjunto do Vidreiro (Item 3 de 4).", + "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress", + "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).", "offhand": "mão secundária", "offhandCapitalized": "Mão Secundária", "shieldBase0Text": "Sem Item na Mão Secundária", @@ -1304,10 +1314,10 @@ "shieldSpecialSpring2018WarriorNotes": "Esse escudo resistente brilha com a glória do amanhecer. Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada. Primavera de 2018.", "shieldSpecialSpring2018HealerText": "Escudo Escarlate", "shieldSpecialSpring2018HealerNotes": "Apesar de sua aparência elegante, este escudo escarlate é bem resistente. Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada. Primavera de 2018.", - "shieldSpecialSummer2018WarriorText": "Betta Skull Shield", - "shieldSpecialSummer2018WarriorNotes": "Fashioned from stone, this fearsome skull-styled shield strikes fear into fish foes while rallying your Skeleton pets and mounts. Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.", - "shieldSpecialSummer2018HealerText": "Merfolk Monarch Emblem", - "shieldSpecialSummer2018HealerNotes": "This shield can produce a dome of air for the benefit of land-dwelling visitors to your watery realm. Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.", + "shieldSpecialSummer2018WarriorText": "Escudo Carcaça Betta", + "shieldSpecialSummer2018WarriorNotes": "Talhado em pedra, este temível escudo em forma de crânio enche os peixefóbicos de medo ao lhe ver trotando com sua montaria e mascote de ossos. Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada. Verão de 2018.", + "shieldSpecialSummer2018HealerText": "Brasão do Monarca Atlântico", + "shieldSpecialSummer2018HealerNotes": "Este escudo produz um domo de ar para graça dos visitantes terrestres em seu reino aquático. Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada. Verão de 2018.", "shieldMystery201601Text": "Destruidora de Resoluções", "shieldMystery201601Notes": "Essa lâmina pode ser usada para bloquear todas as distrações. Não concede benefícios. Item de Assinante, Janeiro de 2016", "shieldMystery201701Text": "Escudo Congela-Tempo", @@ -1368,6 +1378,8 @@ "shieldArmoireFancyShoeNotes": "Um sapato muito especial no qual você está trabalhando. É digno da realeza! Aumenta Inteligência e Percepção em <%= attrs %> cada. Armário Encantado: Conjunto do Sapateiro (Item 3 de 3).", "shieldArmoireFancyBlownGlassVaseText": "Vaso de Vidro Luxuoso", "shieldArmoireFancyBlownGlassVaseNotes": "Que vaso luxuoso você fez! O que colocará dentro? Aumenta Inteligência em <%= int %>. Armário Encantado: Conjunto do Vidreiro (Item 4 de 4).", + "shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield", + "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).", "back": "Acessório de Fundo", "backCapitalized": "Acessório para costas", "backBase0Text": "Sem Acessório de Fundo", @@ -1554,7 +1566,7 @@ "eyewearSpecialWhiteTopFrameNotes": "Óculos com uma armação branca sobre as lentes. Não concede benefícios.", "eyewearSpecialYellowTopFrameText": "Óculos Amarelos Padrão", "eyewearSpecialYellowTopFrameNotes": "Óculos com uma armação amarela sobre as lentes. Não concede benefícios.", - "eyewearSpecialAetherMaskText": "Máscara Éterea", + "eyewearSpecialAetherMaskText": "Máscara Etérea", "eyewearSpecialAetherMaskNotes": "Esta máscara possui uma história misteriosa. Aumenta Inteligência em <%= int %>.", "eyewearSpecialSummerRogueText": "Tapa-Olho Malandro", "eyewearSpecialSummerRogueNotes": "Não precisa ser um biltre para ver como isso é estiloso! Não concede benefícios. Equipamento de Edição Limitada. Verão de 2014.", diff --git a/website/common/locales/pt_BR/groups.json b/website/common/locales/pt_BR/groups.json index 0ebd39bc3a..c9e4986554 100644 --- a/website/common/locales/pt_BR/groups.json +++ b/website/common/locales/pt_BR/groups.json @@ -134,12 +134,11 @@ "PMPlaceholderDescription": "Selecione uma conversa à esquerda", "PMPlaceholderTitleRevoked": "Seus privilégios do chat foram revogados", "PMPlaceholderDescriptionRevoked": "Você não pode enviar mensagens pois seus privilégios do chat foram revogados. Se tiver alguma pergunta ou preocupação quanto a isso, por favor envie um email para admin@habitica.com para argumentar com a Equipe.", - "PMEnable": "Habilitar Mensagens Diretas", - "PMDisable": "Desabilitar Mensagens Diretas", - "PMEnabledOptPopoverText": "Quando as Mensagens Diretas estiverem desabilitadas, você ainda pode enviar mensagens, mas ninguém poderá lhe enviar.", - "PMDisabledOptPopoverText": "Habilite esta opção para poder receber mensagens.", + "PMReceive": "Receba Mensagens Diretas", + "PMEnabledOptPopoverText": "Mensagens Diretas estão ativas. Usuários podem lhe contatar por meio do seu Perfil.", + "PMDisabledOptPopoverText": "Mensagens Diretas estão inativas. Ative esta opção para que usuários lhe contatem por meio do seu Perfil.", "PMDisabledCaptionTitle": "Mensagens Diretas estão desabilitadas", - "PMDisabledCaptionText": "Você ainda pode enviar mensagens, mas ninguém pode lhe enviar.", + "PMDisabledCaptionText": "Você ainda pode enviar mensagens, mas ninguém pode enviar uma à você.", "block": "Bloquear", "unblock": "Desbloquear", "pm-reply": "Enviar uma resposta", diff --git a/website/common/locales/pt_BR/limited.json b/website/common/locales/pt_BR/limited.json index d384ceb86d..b117348192 100644 --- a/website/common/locales/pt_BR/limited.json +++ b/website/common/locales/pt_BR/limited.json @@ -116,21 +116,21 @@ "winter2018ConfettiSet": "Mago de Confete (Mago)", "winter2018GiftWrappedSet": "Guerreiro Embrulhado para Presente (Guerreiro)", "winter2018MistletoeSet": "Curandeiro do Visco (Curandeiro)", - "winter2018ReindeerSet": "Gatuno da Rena ( Gatuno)", + "winter2018ReindeerSet": "Gatuno da Rena (Gatuno)", "spring2018SunriseWarriorSet": "Guerreiro do Alvorecer (Guerreiro)", "spring2018TulipMageSet": "Tulipa Mágica (Mago)", "spring2018GarnetHealerSet": "Granada da Cura (Curandeiro)", "spring2018DucklingRogueSet": "Disfarce de Patinho (Ladino)", - "summer2018BettaFishWarriorSet": "Betta Fish Warrior (Warrior)", - "summer2018LionfishMageSet": "Lionfish Mage (Mage)", - "summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)", - "summer2018FisherRogueSet": "Fisher-Rogue (Rogue)", + "summer2018BettaFishWarriorSet": "Guerreiro Peixe Betta (Guerreiro)", + "summer2018LionfishMageSet": "Leão-Maguinho (Mago)", + "summer2018MerfolkMonarchSet": "Monarca Atlântico (Curandeiro) ", + "summer2018FisherRogueSet": "Pescador Trapaceiro (Gatuno) ", "eventAvailability": "Disponível para compra até <%= date(locale) %>.", "dateEndMarch": "30 de Abril.", "dateEndApril": "19 de Abril", "dateEndMay": "31 de Maio", "dateEndJune": "14 de Junho", - "dateEndJuly": "29 de Julho", + "dateEndJuly": "31 de Julho", "dateEndAugust": "31 de Agosto", "dateEndOctober": "31 de Outubro", "dateEndNovember": "30 de Novembro", diff --git a/website/common/locales/pt_BR/loadingscreentips.json b/website/common/locales/pt_BR/loadingscreentips.json index f9228d36ea..fd3efb4003 100644 --- a/website/common/locales/pt_BR/loadingscreentips.json +++ b/website/common/locales/pt_BR/loadingscreentips.json @@ -30,7 +30,7 @@ "tip28": "Especifique um Início de Dia Personalizado clicando no Ícone de Usuário > Configurações para controlar quando teu dia reinicia.", "tip29": "Complete todas as suas Diárias para ganhar o Buff Dia Perfeito, que aumenta seus atributos!", "tip30": "Você também pode convidar pessoas para Guildas e não somente para Grupos. Por exemplo, a Guilda \"Brasil\".", - "tip31": "Confira listas pré-definidas na Guilda \"Library of Tasks and Challenges\" para exemplos de tarefas.", + "tip31": "Confira listas pré-definidas na Guilda \"Library of Tasks and Challenges\" ou pergunte na Guilda Brasil.", "tip32": "Muito do código, da arte, da escrita e traduções do Habitica é feito por contribuidores voluntários! Vá à guilda Aspiring Legends para ajuda sobre como contribuir.", "tip33": "Veja a guilda Brasil ou Bulletin Board para novidades sobre Guildas, Desafios e outros eventos criados por jogadores - e anuncie os seus lá!", "tip34": "Ocasionalmente, reavalie suas tarefas para garantir que estão atualizadas! Pode até perguntar na Guilda Brasil!", diff --git a/website/common/locales/pt_BR/quests.json b/website/common/locales/pt_BR/quests.json index 456edc2100..969fc7eb42 100644 --- a/website/common/locales/pt_BR/quests.json +++ b/website/common/locales/pt_BR/quests.json @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "Guildas não podem ser convidadas para missões.", "questNotOwned": "Você não possui esse pergaminho de missão.", "questNotGoldPurchasable": "Missão \"<%= key %>\" não é comprável com ouro.", + "questNotGemPurchasable": ".A missão \"<%= key %>\" não é comprável com Gemas.", "questLevelTooHigh": "Você precisa ter nível <%= level %> para iniciar essa missão.", "questAlreadyUnderway": "Seu grupo já está em uma missão. Tente novamente quando a missão atual tiver encerrado.", "questAlreadyAccepted": "Você já aceitou o convite para a missão.", diff --git a/website/common/locales/pt_BR/subscriber.json b/website/common/locales/pt_BR/subscriber.json index c38db038bb..dd7d15bc27 100644 --- a/website/common/locales/pt_BR/subscriber.json +++ b/website/common/locales/pt_BR/subscriber.json @@ -144,6 +144,7 @@ "mysterySet201803": "Conjunto Libélula Ousada", "mysterySet201804": "Conjunto do Esquilo Maneiro", "mysterySet201805": "Conjunto do Pavão Phenomenal", + "mysterySet201806": "Peixe-Pescador Atraente", "mysterySet301404": "Conjunto \"Revolução Industrial Padrão\"", "mysterySet301405": "Conjunto \"Acessórios Revolução Industrial\"", "mysterySet301703": "Conjunto \"Revolução Industrial Pavão\"", diff --git a/website/common/locales/pt_BR/tasks.json b/website/common/locales/pt_BR/tasks.json index 48e08c15b8..7ca1f93662 100644 --- a/website/common/locales/pt_BR/tasks.json +++ b/website/common/locales/pt_BR/tasks.json @@ -194,8 +194,6 @@ "weeks": "Semanas", "year": "Ano", "years": "Anos", - "confirmScoreNotes": "Confirmar a pontuação da tarefa com notas", - "taskScoreNotesTooLong": "As notas de pontuação da tarefa devem ter menos de 256 caracteres.", "groupTasksByChallenge": "Tarefas em grupo por nome do desafio", "taskNotes": "Notas da Tarefa", "monthlyRepeatHelpContent": "Esta tarefa deve ser feita a cada X meses", diff --git a/website/common/locales/ro/backgrounds.json b/website/common/locales/ro/backgrounds.json index 41b48a4e20..941c52c6ff 100644 --- a/website/common/locales/ro/backgrounds.json +++ b/website/common/locales/ro/backgrounds.json @@ -245,16 +245,16 @@ "backgroundBellTowerText": "Clopotnita", "backgroundBellTowerNotes": "Urca in Clopotnita", "backgroundTreasureRoomText": "Camera Comorilor", - "backgroundTreasureRoomNotes": "Bask in the wealth of a Treasure Room.", + "backgroundTreasureRoomNotes": "Bucură-te de bogățiile unei Camere de Comori.", "backgroundWeddingArchText": "Arca de nunta", - "backgroundWeddingArchNotes": "Pose under the Wedding Arch.", + "backgroundWeddingArchNotes": "Pozează sub Arcul Nunții.", "backgrounds032017": "SET 34: Lansat in Martie 2017", "backgroundMagicBeanstalkText": "Magic Beanstalk", "backgroundMagicBeanstalkNotes": "Ascend a Magic Beanstalk.", - "backgroundMeanderingCaveText": "Meandering Cave", - "backgroundMeanderingCaveNotes": "Explore the Meandering Cave.", - "backgroundMistiflyingCircusText": "Mistiflying Circus", - "backgroundMistiflyingCircusNotes": "Carouse in the Mistiflying Circus.", + "backgroundMeanderingCaveText": "Peșteră Șerpuitoare", + "backgroundMeanderingCaveNotes": "Explorează Peștera Șerpuitoare.", + "backgroundMistiflyingCircusText": "Circul Zburător Misterios", + "backgroundMistiflyingCircusNotes": "Chefuiește în Circul Zburător Misterios.", "backgrounds042017": "SET 35: Lansat in Aprilie 2017", "backgroundBugCoveredLogText": "Buștean cu gândaci", "backgroundBugCoveredLogNotes": "Investighează Bușteanul cu gândaci", @@ -267,8 +267,8 @@ "backgroundGuardianStatuesNotes": "Fi atent în fața Statuilor Gardienilor", "backgroundHabitCityStreetsText": "Străzile orașului Habit", "backgroundHabitCityStreetsNotes": "Explorează străzile orașului Habit", - "backgroundOnATreeBranchText": "On a Tree Branch", - "backgroundOnATreeBranchNotes": "Perch On a Tree Branch.", + "backgroundOnATreeBranchText": "Pe Creanga unui Copac", + "backgroundOnATreeBranchNotes": "Cocoață-te pe Creanga unui Copac.", "backgrounds062017": "SET 37: Lansat in Iunie 2017", "backgroundBuriedTreasureText": "Comoara ingropata", "backgroundBuriedTreasureNotes": "Dezgroapa comoara ingropata", @@ -276,63 +276,63 @@ "backgroundOceanSunriseNotes": "Admira un rasarit la malul marii", "backgroundSandcastleText": "Castel de nisip", "backgroundSandcastleNotes": "Domneste peste un castel de nisip", - "backgrounds072017": "SET 38: Released July 2017", - "backgroundGiantSeashellText": "Giant Seashell", - "backgroundGiantSeashellNotes": "Lounge in a Giant Seashell.", - "backgroundKelpForestText": "Kelp Forest", - "backgroundKelpForestNotes": "Swim through a Kelp Forest.", - "backgroundMidnightLakeText": "Midnight Lake", - "backgroundMidnightLakeNotes": "Rest by a Midnight Lake.", - "backgrounds082017": "SET 39: Released August 2017", - "backgroundBackOfGiantBeastText": "Back of a Giant Beast", - "backgroundBackOfGiantBeastNotes": "Ride on the Back of a Giant Beast.", - "backgroundDesertDunesText": "Desert Dunes", - "backgroundDesertDunesNotes": "Boldly explore the Desert Dunes.", - "backgroundSummerFireworksText": "Summer Fireworks", - "backgroundSummerFireworksNotes": "Celebrate Habitica's Naming Day with Summer Fireworks!", - "backgrounds092017": "SET 40: Released September 2017", - "backgroundBesideWellText": "Beside a Well", - "backgroundBesideWellNotes": "Stroll Beside a Well.", - "backgroundGardenShedText": "Garden Shed", - "backgroundGardenShedNotes": "Work in a Garden Shed.", - "backgroundPixelistsWorkshopText": "Pixelist's Workshop", - "backgroundPixelistsWorkshopNotes": "Create masterpieces in the Pixelist's Workshop.", - "backgrounds102017": "SET 41: Released October 2017", - "backgroundMagicalCandlesText": "Magical Candles", - "backgroundMagicalCandlesNotes": "Bask in the glow of Magical Candles.", - "backgroundSpookyHotelText": "Spooky Hotel", - "backgroundSpookyHotelNotes": "Sneak down the hall of a Spooky Hotel.", - "backgroundTarPitsText": "Tar Pits", - "backgroundTarPitsNotes": "Tiptoe through the Tar Pits.", - "backgrounds112017": "SET 42: Released November 2017", - "backgroundFiberArtsRoomText": "Fiber Arts Room", + "backgrounds072017": "SET 38: Lansat în Iulie 2017", + "backgroundGiantSeashellText": "Scoică Uriașă", + "backgroundGiantSeashellNotes": "Întinde-te în Scoica Uriașă.", + "backgroundKelpForestText": "Pădurea Algelor", + "backgroundKelpForestNotes": "Înoată prin Pădurea Algelor.", + "backgroundMidnightLakeText": "Lac în Miez de Noapte", + "backgroundMidnightLakeNotes": "Odihnește-te lângă un Lac în Miez de Noapte.", + "backgrounds082017": "SET 39: Lansat în August 2017", + "backgroundBackOfGiantBeastText": "Spatele unei Bestii Uriașe", + "backgroundBackOfGiantBeastNotes": "Călărește pe Spatele unei Bestii Uriașe.", + "backgroundDesertDunesText": "Dune în Deșert", + "backgroundDesertDunesNotes": "Explorează curajos Dunele Deșertului.", + "backgroundSummerFireworksText": "Artificii de Iarnă", + "backgroundSummerFireworksNotes": "Sărbătorește Ziua de Nume Habitica cu Artificii de Vară!", + "backgrounds092017": "SET 40: Lansat în Septembrie 2017", + "backgroundBesideWellText": "Lângă Puț", + "backgroundBesideWellNotes": "Fă o plimbare Lângă un Puț.", + "backgroundGardenShedText": "Șopronul din Grădină", + "backgroundGardenShedNotes": "Lucrează în Șopronul din Grădină.", + "backgroundPixelistsWorkshopText": "Atelierul Pixelarilor", + "backgroundPixelistsWorkshopNotes": "Crează opere de artă în Atelierul Pixelarilor.", + "backgrounds102017": "SET 41: Lansat în Octombrie 2017", + "backgroundMagicalCandlesText": "Lumânările Magice", + "backgroundMagicalCandlesNotes": "Chefuiește în strălucirea Lumânărilor Magice.", + "backgroundSpookyHotelText": "Hotelul Înfiorător", + "backgroundSpookyHotelNotes": "Furișează-te pe holul Hotelului Înfiorător.", + "backgroundTarPitsText": "Gropi cu Smoală", + "backgroundTarPitsNotes": "Mergi pe vârfuri prin Gropile cu Smoală.", + "backgrounds112017": "SET 42: Lansat în Noiembrie 2017", + "backgroundFiberArtsRoomText": "Camera Artelor din Fibră", "backgroundFiberArtsRoomNotes": "Spin thread in a Fiber Arts Room.", - "backgroundMidnightCastleText": "Midnight Castle", - "backgroundMidnightCastleNotes": "Stroll by the Midnight Castle.", - "backgroundTornadoText": "Tornado", - "backgroundTornadoNotes": "Fly through a Tornado.", - "backgrounds122017": "SET 43: Released December 2017", - "backgroundCrosscountrySkiTrailText": "Cross-Country Ski Trail", - "backgroundCrosscountrySkiTrailNotes": "Glide along a Cross-Country Ski Trail.", - "backgroundStarryWinterNightText": "Starry Winter Night", - "backgroundStarryWinterNightNotes": "Admire a Starry Winter Night.", - "backgroundToymakersWorkshopText": "Toymaker's Workshop", - "backgroundToymakersWorkshopNotes": "Bask in the wonder of a Toymaker's Workshop.", - "backgrounds012018": "SET 44: Released January 2018", + "backgroundMidnightCastleText": "Castel în Miez de Noapte", + "backgroundMidnightCastleNotes": "Plimbă-te pe lângă Castelul în Miez de Noapte.", + "backgroundTornadoText": "Tornadă", + "backgroundTornadoNotes": "Zboară prin Tornadă.", + "backgrounds122017": "SET 43: Lansat în Decembrie 2017", + "backgroundCrosscountrySkiTrailText": "Pista de Ski de-a lungul Țării", + "backgroundCrosscountrySkiTrailNotes": "Glisează pe Pista de Ski de-a lungul Țării.", + "backgroundStarryWinterNightText": "Noapte de Iarnă Înstelată", + "backgroundStarryWinterNightNotes": "Admiră Noaptea de Iarnă Înstelată.", + "backgroundToymakersWorkshopText": "Atelierul Creatorului de Jucării", + "backgroundToymakersWorkshopNotes": "Bucură-te de minunățiile Atelierului unui Creator de Jucării.", + "backgrounds012018": "SET 44: Lansat în Ianuarie 2018", "backgroundAuroraText": "Aurora", - "backgroundAuroraNotes": "Bask in the wintry glow of an Aurora.", - "backgroundDrivingASleighText": "Sleigh", - "backgroundDrivingASleighNotes": "Drive a Sleigh over snow-covered fields.", + "backgroundAuroraNotes": "Bucură-te de strălucirea de iarnă a unei Aurore Boreale.", + "backgroundDrivingASleighText": "Sanie", + "backgroundDrivingASleighNotes": "Dă-te cu Sania peste câmpuri acoperite de zăpadă.", "backgroundFlyingOverIcySteppesText": "Icy Steppes", "backgroundFlyingOverIcySteppesNotes": "Fly over Icy Steppes.", - "backgrounds022018": "SET 45: Released February 2018", - "backgroundChessboardLandText": "Chessboard Land", - "backgroundChessboardLandNotes": "Play a game in Chessboard Land.", - "backgroundMagicalMuseumText": "Magical Museum", - "backgroundMagicalMuseumNotes": "Tour a Magical Museum.", - "backgroundRoseGardenText": "Rose Garden", - "backgroundRoseGardenNotes": "Dally in a fragrant Rose Garden.", - "backgrounds032018": "SET 46: Released March 2018", + "backgrounds022018": "SET 45: Lansat în Februarie 2018", + "backgroundChessboardLandText": "Tărâmul Tablei de Șah", + "backgroundChessboardLandNotes": "Joacă o partidă în Tărâmul Tablei de Șah.", + "backgroundMagicalMuseumText": "Muzeul Magic", + "backgroundMagicalMuseumNotes": "Fă un tur al Muzeului Magic.", + "backgroundRoseGardenText": "Grădina cu Trandafiri", + "backgroundRoseGardenNotes": "Pierde timpul în Grădina cu Trandafiri.", + "backgrounds032018": "SET 46: Lansat în Martie 2018", "backgroundGorgeousGreenhouseText": "Gorgeous Greenhouse", "backgroundGorgeousGreenhouseNotes": "Walk among the flora kept in a Gorgeous Greenhouse.", "backgroundElegantBalconyText": "Elegant Balcony", @@ -359,5 +359,12 @@ "backgroundRowboatText": "Rowboat", "backgroundRowboatNotes": "Sing rounds in a Rowboat.", "backgroundPirateFlagText": "Pirate Flag", - "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag." + "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag.", + "backgrounds072018": "SET 50: Released July 2018", + "backgroundDarkDeepText": "Dark Deep", + "backgroundDarkDeepNotes": "Swim in the Dark Deep among bioluminescent critters.", + "backgroundDilatoryCityText": "City of Dilatory", + "backgroundDilatoryCityNotes": "Meander through the undersea City of Dilatory.", + "backgroundTidePoolText": "Tide Pool", + "backgroundTidePoolNotes": "Observe the ocean life near a Tide Pool." } \ No newline at end of file diff --git a/website/common/locales/ro/communityguidelines.json b/website/common/locales/ro/communityguidelines.json index 68c6a0e1ce..e095df2286 100644 --- a/website/common/locales/ro/communityguidelines.json +++ b/website/common/locales/ro/communityguidelines.json @@ -1,17 +1,17 @@ { "iAcceptCommunityGuidelines": "Accept să respect regulile comunității", "tavernCommunityGuidelinesPlaceholder": "memento prietenesc: acesta este un chat pentru toate vârstele, așa că rugămintea este e a menține conținutul și limbajul adecvate! Consultează Regulile Comunității în bara laterală dacă ai întrebări.", - "lastUpdated": "Last updated:", + "lastUpdated": "Ultimul update:", "commGuideHeadingWelcome": "Bine ai venit în Habitica", - "commGuidePara001": "Greetings, adventurer! Welcome to Habitica, the land of productivity, healthy living, and the occasional rampaging gryphon. We have a cheerful community full of helpful people supporting each other on their way to self-improvement. To fit in, all it takes is a positive attitude, a respectful manner, and the understanding that everyone has different skills and limitations -- including you! Habiticans are patient with one another and try to help whenever they can.", + "commGuidePara001": "Salutări, aventurierule! Bun venit în Habitica, tărâmul productiviății, al vieții sănătoase, și al grifonului dezlănțuit. Avem o comunitate veselă, plină de oameni dispuși să ajute unii pe alții în drumul lor spre îmbunătățirea personală. Pentru a te încadra, tot ce-ți trebuie este o atitudine pozitivă, respectuoasă, și înțelegerea faptului că toți avem abilități și limitări diferite -- inclusiv tu! Habiticans sunt răbdători unii cu ceilalți și încearcă să ajute cu ce pot.", "commGuidePara002": "To help keep everyone safe, happy, and productive in the community, we do have some guidelines. We have carefully crafted them to make them as friendly and easy-to-read as possible. Please take the time to read them before you start chatting.", "commGuidePara003": "Aceste reguli se aplică tuturor spațiilor sociale pe care le folosim, incluzând (dar fără a fi limitat la) Trello, GitHub, Transifex și Wikia (cunoscută și ca wiki). Câteodată pot apărea situații neprevăzute, precum o nouă sursă de conflict sau un necromant. Când se întâmplă acest lucru, moderatorii pot răspunde prin editarea acestor reguli pentru a menține comunitatea la adăpost de noi amenințări. Nu te teme: vei fi alertat printr-un anunț de la Bailey dacă regulile se schimbă.", "commGuidePara004": "Acum pregătiți-vă carnetele de notițe și penițele și să începem!", - "commGuideHeadingInteractions": "Interactions in Habitica", + "commGuideHeadingInteractions": "Interacțiuni în Habitica", "commGuidePara015": "Habitica has two kinds of social spaces: public, and private. Public spaces include the Tavern, Public Guilds, GitHub, Trello, and the Wiki. Private spaces are Private Guilds, Party chat, and Private Messages. All Display Names must comply with the public space guidelines. To change your Display Name, go on the website to User > Profile and click on the \"Edit\" button.", "commGuidePara016": "Când navighezi prin spațiile publice din Habitica, sunt anumite reguli generale pentru a păstra pe toată lumea în siguranță și fericită. Acestea ar trebui să fie simple pentru aventurieri ca tine!", "commGuideList02A": "Respect each other. Be courteous, kind, friendly, and helpful. Remember: Habiticans come from all backgrounds and have had wildly divergent experiences. This is part of what makes Habitica so cool! Building a community means respecting and celebrating our differences as well as our similarities. Here are some easy ways to respect each other:", - "commGuideList02B": "Obey all of the Terms and Conditions.", + "commGuideList02B": "Respectă toți Termenii și Condițiile.", "commGuideList02C": "Do not post images or text that are violent, threatening, or sexually explicit/suggestive, or that promote discrimination, bigotry, racism, sexism, hatred, harassment or harm against any individual or group. Not even as a joke. This includes slurs as well as statements. Not everyone has the same sense of humor, and so something that you consider a joke may be hurtful to another. Attack your Dailies, not each other.", "commGuideList02D": "Keep discussions appropriate for all ages. We have many young Habiticans who use the site! Let's not tarnish any innocents or hinder any Habiticans in their goals.", "commGuideList02E": "Avoid profanity. This includes milder, religious-based oaths that may be acceptable elsewhere. We have people from all religious and cultural backgrounds, and we want to make sure that all of them feel comfortable in public spaces. If a moderator or staff member tells you that a term is disallowed on Habitica, even if it is a term that you did not realize was problematic, that decision is final. Additionally, slurs will be dealt with very severely, as they are also a violation of the Terms of Service.", @@ -112,17 +112,17 @@ "commGuidePara011d": "pe GitHub", "commGuidePara012": "If you have an issue or concern about a particular Mod, please send an email to our Staff (admin@habitica.com).", "commGuidePara013": "In a community as big as Habitica, users come and go, and sometimes a staff member or moderator needs to lay down their noble mantle and relax. The following are Staff and Moderators Emeritus. They no longer act with the power of a Staff member or Moderator, but we would still like to honor their work!", - "commGuidePara014": "Staff and Moderators Emeritus:", + "commGuidePara014": "Emeritus Staff și Moderatori:", "commGuideHeadingFinal": "Secțiune Finală", "commGuidePara067": "So there you have it, brave Habitican -- the Community Guidelines! Wipe that sweat off of your brow and give yourself some XP for reading it all. If you have any questions or concerns about these Community Guidelines, please reach out to us via the Moderator Contact Form and we will be happy to help clarify things.", "commGuidePara068": "Now go forth, brave adventurer, and slay some Dailies!", "commGuideHeadingLinks": "Useful Links", - "commGuideLink01": "Habitica Help: Ask a Question: a Guild for users to ask questions!", - "commGuideLink02": "The Wiki: the biggest collection of information about Habitica.", - "commGuideLink03": "GitHub: for bug reports or helping with code!", - "commGuideLink04": "The Main Trello: for site feature requests.", - "commGuideLink05": "The Mobile Trello: for mobile feature requests.", - "commGuideLink06": "The Art Trello: for submitting pixel art.", - "commGuideLink07": "The Quest Trello: for submitting quest writing.", + "commGuideLink01": "Habitica Help: Ask a Question: o Breaslă pentru întrebările puse de utilizatori!", + "commGuideLink02": "Wiki: cea mai mare colecție de informații despre Habitica.", + "commGuideLink03": "GitHub: pentru raportarea erorilor și pentru a ajuta la programare!", + "commGuideLink04": "Trello Principal: pentru solicitarea unei facilități pentru site.", + "commGuideLink05": "Trello Mobil: pentru solicitarea facilităților pentru smartphone.", + "commGuideLink06": "Trello Artă: pentru trimiterea artei pixelate.", + "commGuideLink07": "Trello Expediții: pentru trimiterea textelor pentru expediții.", "commGuidePara069": "The following talented artists contributed to these illustrations:" } \ No newline at end of file diff --git a/website/common/locales/ro/content.json b/website/common/locales/ro/content.json index 4c44397e0e..179cb371cf 100644 --- a/website/common/locales/ro/content.json +++ b/website/common/locales/ro/content.json @@ -195,6 +195,7 @@ "hatchingPotionFairy": "Fairy", "hatchingPotionStarryNight": "Starry Night", "hatchingPotionRainbow": "Rainbow", + "hatchingPotionGlass": "Glass", "hatchingPotionNotes": "Toarnă aceasta pe un ou și va ecloza ca un companion <%= potText(locale) %>.", "premiumPotionAddlNotes": "Neutilizabil pe ouă de companioni obținute din expediții.", "foodMeat": "Carne", diff --git a/website/common/locales/ro/contrib.json b/website/common/locales/ro/contrib.json index 2a29cf12ca..b1f4eed7c8 100644 --- a/website/common/locales/ro/contrib.json +++ b/website/common/locales/ro/contrib.json @@ -1,15 +1,15 @@ { - "playerTiersDesc": "The colored usernames you see in chat represent a person's contributor tier. The higher the tier, the more the person has contributed to habitica through art, code, the community, or more!", - "tier1": "Tier 1 (Friend)", - "tier2": "Tier 2 (Friend)", - "tier3": "Tier 3 (Elite)", - "tier4": "Tier 4 (Elite)", - "tier5": "Tier 5 (Champion)", - "tier6": "Tier 6 (Champion)", - "tier7": "Tier 7 (Legendary)", - "tierModerator": "Moderator (Guardian)", - "tierStaff": "Staff (Heroic)", - "tierNPC": "NPC", + "playerTiersDesc": "Numele de utilizator colorat pe care îl vezi în chat reprezintă nivelul de contribuție a unei persoane. Cu cât este mai ridicat nivelul, cu atât persoana respectivă a contribuit mai mult la Habitica prin artă, programare, în comunitate, sau altele!", + "tier1": "Nivelul 1 (Prieten)", + "tier2": "Nivelul 2 (Prieten)", + "tier3": "Nivel 3 (Elită)", + "tier4": "Nivelul 4 (Elită)", + "tier5": "Nivelul 5 (Campion)", + "tier6": "Nivelul 6 (Campion)", + "tier7": "Nivelul 7 (Legendar)", + "tierModerator": "Moderator (Gardian)", + "tierStaff": "Staff (Eroic)", + "tierNPC": "PNJ", "friend": "Prieten", "friendFirst": "When your first set of submissions is deployed, you will receive the Habitica Contributor's badge. Your name in Tavern chat will proudly display that you are a contributor. As a bounty for your work, you will also receive 3 Gems.", "friendSecond": "When your second set of submissions is deployed, the Crystal Armor will be available for purchase in the Rewards shop. As a bounty for your continued work, you will also receive 3 Gems.", @@ -29,28 +29,28 @@ "heroicText": "The Heroic tier contains Habitica staff and staff-level contributors. If you have this title, you were appointed to it (or hired!).", "npcText": "PNJi au susținut Kickstarter-ul Habitica la nivelul cel mai înalt. Poți să le găsești avatarurile priveghind caracteristicile sitului!", "modalContribAchievement": "Realizare de contribuitor!", - "contribModal": "<%= name %>, you awesome person! You're now a tier <%= level %> contributor for helping Habitica.", - "contribLink": "See what prizes you've earned for your contribution!", + "contribModal": "<%= name %>, ești o persoană nemaipomenită! Ai primit nivelul <%= level %> de contribuție pentru ajutorarea Habitica.", + "contribLink": "Vezi ce premii ai câștigat pentru contribuția ta!", "contribName": "Contribuitor", - "contribText": "Has contributed to Habitica, whether via code, art, music, writing, or other methods. To learn more, join the Aspiring Legends Guild!", + "contribText": "A contribuit la Habitica, fie prin programare, artă, muzică, scris, sau alte metode. Pentru a învăța mai multe, alătură-te Aspiring Legends Guild!", "readMore": "Citește mai mult", - "kickstartName": "Kickstarter Backer - $<%= key %> Tier", + "kickstartName": "Susținător Kickstarter - Nivel $<%= key %>", "kickstartText": "A susținut proiectul Kickstarter", - "helped": "Helped Habitica Grow", + "helped": "A ajutat Habitica să crească", "helpedText1": "A ajutat Habitica prin completarea", "helpedText2": "acestui sondaj.", - "hall": "Hall of Heroes", + "hall": "Sala Eroilor", "contribTitle": "Titlu de Contribuitor (ex. „Fierar”)", "contribLevel": "Contrib Tier", "contribHallText": "1-7 for normal contributors, 8 for moderators, 9 for staff. This determines which items, pets, and mounts are available. Also determines name-tag coloring. Tiers 8 and 9 are automatically given admin status.", - "hallContributors": "Hall of Contributors", + "hallContributors": "Sala Contribuitorilor", "hallPatrons": "Hala Patronilor", "rewardUser": "Răsplătește utilizatorul", - "UUID": "User ID", + "UUID": "ID Utilizator", "loadUser": "Încarcă utilizator", - "noAdminAccess": "You don't have admin access.", - "userNotFound": "User not found.", - "invalidUUID": "UUID must be valid", + "noAdminAccess": "Nu ai acces de admin.", + "userNotFound": "Utilizatorul nu a fost găsit.", + "invalidUUID": "UUID trebuie să fie valid", "title": "Titlu", "moreDetails": "Mai multe detalii (1-7)", "moreDetails2": "mai multe detalii (8-9)", @@ -64,17 +64,17 @@ "playerTiers": "Niveluri de jucător", "tier": "Nivel", "visitHeroes": "Vizitează Hala Eroilor (contribuitori și susținători)", - "conLearn": "Learn more about contributor rewards", + "conLearn": "Află mai multe despre recompensele de contribuitor", "conLearnHow": "Află cum să contribui la Habitica", "conLearnURL": "http://habitica.wikia.com/wiki/Contributing_to_Habitica", "conRewardsURL": "http://habitica.wikia.com/wiki/Contributor_Rewards", - "surveysSingle": "Helped Habitica grow, either by filling out a survey or helping with a major testing effort. Thank you!", - "surveysMultiple": "Helped Habitica grow on <%= count %> occasions, either by filling out a survey or helping with a major testing effort. Thank you!", + "surveysSingle": "A ajutat Habitica să crească, fie prin completarea unui formular sau ajutând la o testare majoră. Mulțumim!", + "surveysMultiple": "A ajutat Habitica să crească în <%= count %> cazuri, fie prin completarea unu formular sau ajutând la o testare majoră. Mulțumim!", "currentSurvey": "Current Survey", "surveyWhen": "The badge will be awarded to all participants when surveys have been processed, in late March.", - "blurbInbox": "This is where your private messages are stored! You can send someone a message by clicking on the envelope icon next to their name in Tavern, Party, or Guild Chat. If you've received an inappropriate PM, you should email a screenshot of it to Lemoness (<%= hrefCommunityManagerEmail %>)", + "blurbInbox": "Aici îți sunt stocate mesajele private! Poți trimite cuiva un m esaj apăsând pe icon-ul cu plic de lângă numele lor în chat-urile din Tavernă, Ceată sau Breaslă. Dacă ai primit un MP necorespunzător, ar trebui să trimiți un screenshot prin email lui Lemoness (<%= hrefCommunityManagerEmail %>)", "blurbGuildsPage": "Guilds are common-interest chat groups created by the players, for players. Browse through the list and join the Guilds that interest you!", "blurbChallenges": "Challenges are created by your fellow players. Joining a Challenge will add its tasks to your task dashboard, and winning a Challenge will give you an achievement and often a gem prize!", "blurbHallPatrons": "This is the Hall of Patrons, where we honor the noble adventurers who backed Habitica's original Kickstarter. We thank them for helping us bring Habitica to life!", - "blurbHallContributors": "This is the Hall of Contributors, where open-source contributors to Habitica are honored. Whether through code, art, music, writing, or even just helpfulness, they have earned gems, exclusive equipment, and prestigious titles. You can contribute to Habitica, too! Find out more here. " + "blurbHallContributors": "Aceasta este Sala Contribuitorilor, unde contribuitorii open-source ai Habitica sunt onorați. Prin programare, artă, muzică, scris. sau prin ajutor general, au primit nestemate, echipament exclusiv, titluri prestigioase. Și tu poți contribui la Habitica! Află mai multe aici." } \ No newline at end of file diff --git a/website/common/locales/ro/faq.json b/website/common/locales/ro/faq.json index 750ae21ea7..6857c2511c 100644 --- a/website/common/locales/ro/faq.json +++ b/website/common/locales/ro/faq.json @@ -6,7 +6,7 @@ "webFaqAnswer0": "First, you'll set up tasks that you want to do in your everyday life. Then, as you complete the tasks in real life and check them off, you'll earn Experience and Gold. Gold is used to buy equipment and some items, as well as custom rewards. Experience causes your character to level up and unlock content such as pets, skills, and quests! For more detail, check out a step-by-step overview of the game at [Help -> Overview for New Users](https://habitica.com/static/overview).", "faqQuestion1": "Cum îmi setez sarcinile?", "iosFaqAnswer1": "Bunele obiceiuri (acelea marcate cu +) sunt sarcini pe care le poți efectua de mai multe ori pe zi, cum ar fi mâncatul legumelor. Proastele obiceiuri (cele marcate cu -) sunt sarcini pe care trebuie să le eviți, ca mâncatul unghiilor. Obiceiurile marcate cu + și - au asociate o alegere bună și o alegere proastă, cum ar fi mersul pe scări vs. mersul cu liftul. Bunele obiceiuri te răsplătesc cu experiență și aur. Proastele obiceiuri îți scad sănătatea.\n\nSarcinile zilnice sunt sarcini pe care le poți face în fiecare zi, cum ar fi spălatul pe dinți sau verificarea e-mailului. Poți ajusta zilele în care o sarcină trebuie efectuată printr-o apăsare pe aceasta pentru a o edita. Dacă sari peste o sarcină zilnică ce trebuie efectuată, avatarul va pierde sănătate peste noapte. Ai grijă să nu adaugi prea multe sarcini zilnice în același timp.\n\n„De făcut” este lista ta de sarcini de făcut. Prin completarea acestor sarcini câștigi aur și experiență. Nu pierzi niciodată sănătate prin nerealizarea acestor sarcini. Poți adăuga date limită pentru o sarcină „de făcut” prin atingerea acesteia pentru a o edita.", - "androidFaqAnswer1": "Good Habits (the ones with a +) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a -) are tasks that you should avoid, like biting nails. Habits with a + and a - have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award experience and gold. Bad Habits subtract health.\n\n Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by tapping to edit it. If you skip a Daily that is due, your character will take damage overnight. Be careful not to add too many Dailies at once!\n\n To-Dos are your To-Do list. Completing a To-Do earns you gold and experience. You never lose health from To-Dos. You can add a due date to a To-Do by tapping to edit.", + "androidFaqAnswer1": "Bunele obiceiuri (acelea marcate cu +) sunt sarcini pe care le poți efectua de mai multe ori pe zi, cum ar fi mâncatul legumelor. Proastele obiceiuri (cele marcate cu -) sunt sarcini pe care trebuie să le eviți, ca mâncatul unghiilor. Obiceiurile marcate cu + și - au asociate o alegere bună și o alegere proastă, cum ar fi mersul pe scări vs. mersul cu liftul. Bunele obiceiuri te răsplătesc cu experiență și aur. Proastele obiceiuri îți scad sănătatea.\n\nSarcinile zilnice sunt sarcini pe care le poți face în fiecare zi, cum ar fi spălatul pe dinți sau verificarea e-mailului. Poți ajusta zilele în care o sarcină trebuie efectuată printr-o apăsare pe aceasta pentru a o edita. Dacă sari peste o sarcină zilnică ce trebuie efectuată, avatarul va pierde sănătate peste noapte. Ai grijă să nu adaugi prea multe sarcini zilnice în același timp.\n\n„De făcut” este lista ta de sarcini de făcut. Prin completarea acestor sarcini câștigi aur și experiență. Nu pierzi niciodată sănătate prin nerealizarea acestor sarcini. Poți adăuga date limită pentru o sarcină „de făcut” prin atingerea acesteia pentru a o edita.", "webFaqAnswer1": "* Good Habits (the ones with a :heavy_plus_sign:) are tasks that you can do many times a day, such as eating vegetables. Bad Habits (the ones with a :heavy_minus_sign:) are tasks that you should avoid, like biting nails. Habits with a :heavy_plus_sign: and a :heavy_minus_sign: have a good choice and a bad choice, like taking the stairs vs. taking the elevator. Good Habits award Experience and Gold. Bad Habits subtract Health.\n* Dailies are tasks that you have to do every day, like brushing your teeth or checking your email. You can adjust the days that a Daily is due by clicking the pencil item to edit it. If you skip a Daily that is due, your avatar will take damage overnight. Be careful not to add too many Dailies at once!\n* To-Dos are your To-Do list. Completing a To-Do earns you Gold and Experience. You never lose Health from To-Dos. You can add a due date to a To-Do by clicking the pencil icon to edit.", "faqQuestion2": "Care ar fi niște sarcini exemplu?", "iosFaqAnswer2": "Wiki-ul are patru liste de sarcini exemplu de folosit ca inspirație:\n

\n * [Exemple de obiceiuri](http://habitica.wikia.com/wiki/Sample_Habits)\n * [Exemple de sarcini zilnice](http://habitica.wikia.com/wiki/Sample_Dailies)\n * [Exemple de sarcini de făcut](http://habitica.wikia.com/wiki/Sample_To-Dos)\n * [Exemple de recompense particularizate](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)", diff --git a/website/common/locales/ro/gear.json b/website/common/locales/ro/gear.json index 13a2ade871..f4238181df 100644 --- a/website/common/locales/ro/gear.json +++ b/website/common/locales/ro/gear.json @@ -4,16 +4,16 @@ "klass": "Clasă", "groupBy": "Sortează după <%= type %>", "classBonus": "(This item matches your class, so it gets an additional 1.5 Stat multiplier.)", - "classArmor": "Class Armor", + "classArmor": "Armura Clasei", "featuredset": "Featured Set <%= name %>", - "mysterySets": "Mystery Sets", - "gearNotOwned": "You do not own this item.", - "noGearItemsOfType": "You don't own any of these.", - "noGearItemsOfClass": "You already have all your class equipment! More will be released during the Grand Galas, near the solstices and equinoxes.", + "mysterySets": "Seturi Misterioase", + "gearNotOwned": "Nu deții acest obiect.", + "noGearItemsOfType": "Nu deții nimic dintre acestea.", + "noGearItemsOfClass": "Ai deja tot echipamentul specific clasei tale! Mai multe echipamente vor apărea în timpul Galelor Grand, în apropierea solstițiilor și echinocțiilor. ", "classLockedItem": "This item is only available to a specific class. Change your class under the User icon > Settings > Character Build!", - "tierLockedItem": "This item is only available once you've purchased the previous items in sequence. Keep working your way up!", - "sortByType": "Type", - "sortByPrice": "Price", + "tierLockedItem": "Acest obiect este disponibil doar odată cu achiziționarea celorlalte obiecte precedente din secvență. Continuă să-ți croiești calea!", + "sortByType": "Tip", + "sortByPrice": "Preț", "sortByCon": "CON", "sortByPer": "PER", "sortByStr": "STR", @@ -346,6 +346,8 @@ "weaponArmoireCobblersHammerNotes": "This hammer is specially made for leatherwork. It can do a real number on a red Daily in a pinch, though. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 2 of 3).", "weaponArmoireGlassblowersBlowpipeText": "Glassblower's Blowpipe", "weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Increases Strength by <%= str %>. Enchanted Armoire: Glassblower Set (Item 1 of 4).", + "weaponArmoirePoisonedGobletText": "Poisoned Goblet", + "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).", "armor": "armură", "armorCapitalized": "Armor", "armorBase0Text": "Îmbrăcăminte simplă", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "The heat and light generated by this magic armor will warm your heart but never burn your skin! Confers no benefit. December 2017 Subscriber Item.", "armorMystery201802Text": "Love Bug Armor", "armorMystery201802Notes": "This shiny armor reflects your strength of heart and infuses it into any Habiticans nearby who may need encouragement! Confers no benefit. February 2018 Subscriber Item.", + "armorMystery201806Text": "Alluring Anglerfish Tail", + "armorMystery201806Notes": "This sinuous tail features glowing spots to light your way through the deep. Confers no benefit. June 2018 Subscriber Item.", "armorMystery301404Text": "Steampunk Suit", "armorMystery301404Notes": "Dapper and dashing, wot! Confers no benefit. February 3015 Subscriber Item.", "armorMystery301703Text": "Steampunk Peacock Gown", @@ -742,6 +746,8 @@ "armorArmoireGlassblowersCoverallsNotes": "These coveralls will protect you while you're making masterpieces with hot molten glass. Increases Constitution by <%= con %>. Enchanted Armoire: Glassblower Set (Item 2 of 4).", "armorArmoireBluePartyDressText": "Blue Party Dress", "armorArmoireBluePartyDressNotes": "You're perceptive, tough, smart, and so fashionable! Increases Perception, Strength, and Constitution by <%= attrs %> each. Enchanted Armoire: Blue Hairbow Set (Item 2 of 2).", + "armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown", + "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Increases Perception by <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).", "headgear": "helm", "headgearCapitalized": "Headgear", "headBase0Text": "No Headgear", @@ -1054,6 +1060,8 @@ "headMystery201803Notes": "Although its appearance is quite decorative, you can engage the wings on this circlet for extra lift! Confers no benefit. March 2018 Subscriber Item.", "headMystery201805Text": "Phenomenal Peacock Helm", "headMystery201805Notes": "This helm will make you the proudest and prettiest (possibly also the loudest) bird in town. Confers no benefit. May 2018 Subscriber Item.", + "headMystery201806Text": "Alluring Anglerfish Helm", + "headMystery201806Notes": "The mesmerizing light atop this helm will call all the creatures of the sea to your side. We urge you to use your glowy powers of attraction for good! Confers no benefit. June 2018 Subscriber Item.", "headMystery301404Text": "Fancy Top Hat", "headMystery301404Notes": "A fancy top hat for the finest of gentlefolk! January 3015 Subscriber Item. Confers no benefit.", "headMystery301405Text": "Basic Top Hat", @@ -1154,6 +1162,8 @@ "headArmoireBigWigNotes": "Some powdered wigs are for looking more authoritative, but this one is just for laughs! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.", "headArmoireGlassblowersHatText": "Glassblower's Hat", "headArmoireGlassblowersHatNotes": "This hat mainly just looks good with your other protective glassblowing gear! Increases Perception by <%= per %>. Enchanted Armoire: Glassblower Set (Item 3 of 4).", + "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress", + "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).", "offhand": "off-hand item", "offhandCapitalized": "Off-Hand Item", "shieldBase0Text": "No Off-Hand Equipment", @@ -1368,6 +1378,8 @@ "shieldArmoireFancyShoeNotes": "A very special shoe you're working on. It's fit for royalty! Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 3 of 3).", "shieldArmoireFancyBlownGlassVaseText": "Fancy Blown Glass Vase", "shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Increases Intelligence by <%= int %>. Enchanted Armoire: Glassblower Set (Item 4 of 4).", + "shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield", + "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).", "back": "Back Accessory", "backCapitalized": "Back Accessory", "backBase0Text": "Niciun accesoriu pentru spate", diff --git a/website/common/locales/ro/groups.json b/website/common/locales/ro/groups.json index 6a5a89f5ac..231eeaf324 100644 --- a/website/common/locales/ro/groups.json +++ b/website/common/locales/ro/groups.json @@ -5,15 +5,15 @@ "innCheckIn": "Odihnește-te la han", "innText": "You're resting in the Inn! While checked-in, your Dailies won't hurt you at the day's end, but they will still refresh every day. Be warned: If you are participating in a Boss Quest, the Boss will still damage you for your Party mates' missed Dailies unless they are also in the Inn! Also, your own damage to the Boss (or items collected) will not be applied until you check out of the Inn.", "innTextBroken": "You're resting in the Inn, I guess... While checked-in, your Dailies won't hurt you at the day's end, but they will still refresh every day... If you are participating in a Boss Quest, the Boss will still damage you for your Party mates' missed Dailies... unless they are also in the Inn... Also, your own damage to the Boss (or items collected) will not be applied until you check out of the Inn... so tired...", - "innCheckOutBanner": "You are currently checked into the Inn. Your Dailies won't damage you and you won't make progress towards Quests.", - "resumeDamage": "Resume Damage", - "helpfulLinks": "Helpful Links", - "communityGuidelinesLink": "Community Guidelines", - "lookingForGroup": "Looking for Group (Party Wanted) Posts", - "dataDisplayTool": "Data Display Tool", - "reportProblem": "Report a Bug", - "requestFeature": "Request a Feature", - "askAQuestion": "Ask a Question", + "innCheckOutBanner": "Momentan ești cazat la Han. Cotidienele tale nu îți vor provoca deteriorări și nu vei putea face progrese în Expediții. ", + "resumeDamage": "Reia Deteriorarea", + "helpfulLinks": "Link-uri utile", + "communityGuidelinesLink": "Ghidurile Comunității", + "lookingForGroup": "Discuții despre grupuri (căutarea de echipe)", + "dataDisplayTool": "Unealtă de afișare a datelor", + "reportProblem": "Raportează o eroare", + "requestFeature": "Cere o Facilitate", + "askAQuestion": "Pune o întrebare", "askQuestionGuild": "Ask a Question (Habitica Help guild)", "contributing": "Contributing", "faq": "FAQ", @@ -134,12 +134,11 @@ "PMPlaceholderDescription": "Select a conversation on the left", "PMPlaceholderTitleRevoked": "Your chat privileges have been revoked", "PMPlaceholderDescriptionRevoked": "You are not able to send private messages because your chat privileges have been revoked. If you have questions or concerns about this, please email admin@habitica.com to discuss it with the staff.", - "PMEnable": "Enable Private Messages", - "PMDisable": "Disable Private Messages", - "PMEnabledOptPopoverText": "When Private Messages are disabled, you still can send messages, but no one can send them to you.", - "PMDisabledOptPopoverText": "Enable this option to be able to receive messages.", + "PMReceive": "Receive Private Messages", + "PMEnabledOptPopoverText": "Private Messages are enabled. Users can contact you via your profile.", + "PMDisabledOptPopoverText": "Private Messages are disabled. Enable this option to allow users to contact you via your profile.", "PMDisabledCaptionTitle": "Private Messages are disabled", - "PMDisabledCaptionText": "You still can send messages, but no one can send them to you.", + "PMDisabledCaptionText": "You can still send messages, but no one can send them to you.", "block": "Block", "unblock": "Un-block", "pm-reply": "Send a reply", diff --git a/website/common/locales/ro/inventory.json b/website/common/locales/ro/inventory.json index f9730a68bd..d9e0f964de 100644 --- a/website/common/locales/ro/inventory.json +++ b/website/common/locales/ro/inventory.json @@ -2,7 +2,7 @@ "noItemsAvailableForType": "You have no <%= type %>.", "foodItemType": "Food", "eggsItemType": "Eggs", - "hatchingPotionsItemType": "Hatching Potions", + "hatchingPotionsItemType": "Poțiuni de Eclozat", "specialItemType": "Special items", - "lockedItem": "Locked Item" + "lockedItem": "Obiect blocat" } diff --git a/website/common/locales/ro/limited.json b/website/common/locales/ro/limited.json index dc6113e414..3f5c0963c2 100644 --- a/website/common/locales/ro/limited.json +++ b/website/common/locales/ro/limited.json @@ -9,7 +9,7 @@ "agriculturalFriends": "Prieteni agricoli", "agriculturalFriendsText": "Got transformed into a flower <%= count %> times by party members.", "aquaticFriends": "Prieteni acvatici", - "aquaticFriendsText": "Got splashed <%= count %> times by party members.", + "aquaticFriendsText": "Am fost stropit(ă) de <%= count %> ori de coechipieri.", "valentineCard": "Felicitare de Sf. Valentin", "valentineCardExplanation": "Pentru că ați suportat un poem atât de dulceag, ambii veți primi insigna „Prieteni adorabili”!", "valentineCardNotes": "Send a Valentine's Day card to a party member.", @@ -130,7 +130,7 @@ "dateEndApril": "April 19", "dateEndMay": "May 31", "dateEndJune": "June 14", - "dateEndJuly": "July 29", + "dateEndJuly": "July 31", "dateEndAugust": "August 31", "dateEndOctober": "October 31", "dateEndNovember": "November 30", diff --git a/website/common/locales/ro/loadingscreentips.json b/website/common/locales/ro/loadingscreentips.json index 9b6ffea1a2..9fce2fd06c 100644 --- a/website/common/locales/ro/loadingscreentips.json +++ b/website/common/locales/ro/loadingscreentips.json @@ -4,15 +4,15 @@ "tip2": "Click any equipment to see a preview, or equip it instantly by clicking the star in its upper-left corner!", "tip3": "Puteți să vă personalizați sarcinile prin întrebuințarea ideogramelor emoji.", "tip4": "Scrie simbolul # înaintea denumirii unei sarcini, și aceasta va avea un font uriaș!", - "tip5": "It’s best to use skills that cause buffs in the morning so they last longer.", + "tip5": "Este recomandat să folosești abilitățile dimineața, pentru a le face să dureze mai mult.", "tip6": "Hover over a task and click the dots to access advanced task controls, such as the ability to push tasks to the top/bottom of your list.", "tip7": "Some backgrounds connect perfectly if Party members use the same background. Ex: Mountain Lake, Pagodas, and Rolling Hills.", - "tip8": "Send a Message to someone by clicking their name in chat and then clicking the envelope icon at the top of their profile!", + "tip8": "Trimite un Mesaj cuiva dând click pe numele lor în chat și apoi apăsând pe pictograma cu plicul din susul profilului lor!", "tip9": "Use the filters + search bar in the Inventories, Shops, Guilds, and Challenges to quickly find what you want.", - "tip10": "You can win gems by competing in Challenges. New ones are added every day!", + "tip10": "Poți câștiga nestemate luând parte la Provocări. Acestea sunt adăugate în fiecare zi!", "tip11": "Having more than four Party members increases accountability!", - "tip12": "Add checklists to your To-Dos to multiply your rewards!", - "tip13": "Click “Tags” on your task page to make an unwieldy task list very manageable!", + "tip12": "Adaugă liste de bifare la Activitățile tale De-Făcut pentru a-ți multiplica recompensele!", + "tip13": "Apasă pe ”Etichete” pe pagina ta cu sarcini pentru a transforma o listă cu sarcini greu de controlat într-una foarte controlabilă!", "tip14": "You can add headers or inspirational quotes to your list as Habits with no (+/-).", "tip15": "Complete all the Masterclasser Quest-lines to learn about Habitica’s secret lore.", "tip16": "Click the link to the Data Display Tool in the footer for valuable insights on your progress.", diff --git a/website/common/locales/ro/loginincentives.json b/website/common/locales/ro/loginincentives.json index bc0e693b4f..64b13e47c6 100644 --- a/website/common/locales/ro/loginincentives.json +++ b/website/common/locales/ro/loginincentives.json @@ -4,16 +4,16 @@ "nextRewardUnlocksIn": "Check-ins until your next prize: <%= numberOfCheckinsLeft %>", "awesome": "Mișto!", "totalCount": "<%= count %> total count", - "countLeft": "Check-ins until next reward: <%= count %>", + "countLeft": "Check-in-uri până la următoarea recompensă: <%= count %>", "incentivesDescription": "Când vine vorba de formarea obiceiurilor, consistența este elementul cheie. Fiecare zi în care faceți check-in te va aduce mai aproape de un premiu. ", - "totalCheckins": "<%= count %> Check-Ins", + "totalCheckins": "<%= count %>Check-in-uri", "checkinEarned": "Your Check-In Counter went up!", - "unlockedCheckInReward": "You unlocked a Check-In Prize!", - "totalCheckinsTitle": "Total Check-Ins", - "checkinProgressTitle": "Progress until next", - "incentiveBackgroundsUnlockedWithCheckins": "Locked Plain Backgrounds will unlock with Daily Check-Ins.", - "checkinReceivedAllRewardsMessage": "You have received all the Check-In prizes available! Congratulations!", - "oneOfAllPetEggs": "one of each standard Pet Egg", + "unlockedCheckInReward": "Ai deblocat un Premiu pentru Check-In!", + "totalCheckinsTitle": "Check-In-uri totale", + "checkinProgressTitle": "Progres până la următorul", + "incentiveBackgroundsUnlockedWithCheckins": "Imaginile de Background simple blocate se vor debloca odată cu check-in-urile zilnice.", + "checkinReceivedAllRewardsMessage": "Ai primit toate premiile disponibile pentru Check-In-uri! Felicitări!", + "oneOfAllPetEggs": "Câte un Ou standard din fiecare", "twoOfAllPetEggs": "two of each standard Pet Egg", "threeOfAllPetEggs": "three of each standard Pet Egg", "oneOfAllHatchingPotions": "one of each standard Hatching Potion", diff --git a/website/common/locales/ro/maintenance.json b/website/common/locales/ro/maintenance.json index d3f08722e8..3959460482 100644 --- a/website/common/locales/ro/maintenance.json +++ b/website/common/locales/ro/maintenance.json @@ -3,19 +3,19 @@ "importantMaintenance": "We are doing important maintenance that we estimate will last until 10pm Pacific Time (5am UTC).", "maintenance": "Mentenanță", "maintenanceMoreInfo": "Doriți mai multe informații în legătura cu mentenanța? <%= linkStart %> Aruncați o privire paginii noastre de informații <%= linkEnd %>.", - "noDamageKeepStreaks": "You will NOT take damage or lose streaks!", + "noDamageKeepStreaks": "Starea ta nu se va deteriora și nu vei pierde șiruri!", "thanksForPatience": "Vă mulțumim pentru răbdare!", "twitterMaintenanceUpdates": "Pentru cele mai recente ", - "veteranPetAward": "At the end, you will receive a Veteran pet!", + "veteranPetAward": "La final vei primi un animal Veteran!", - "maintenanceInfoTitle": "Information about Upcoming Maintenance to Habitica", - "maintenanceInfoWhat": "What is happening?", + "maintenanceInfoTitle": "Informații despre Lucrări de Mentenanță la Habitica", + "maintenanceInfoWhat": "Ce se întâmplă?", "maintenanceInfoWhatText": "On May 21, Habitica will be down for maintenance for most of the day. You will not take any damage or have your account harmed during that weekend, even if you can’t log in to check off your Dailies in time! We will be working very hard to make the downtime as short as possible, and will be posting regular updates on our Twitter account. At the end of the downtime, to thank everyone for their patience, you will all receive a rare pet!", "maintenanceInfoWhy": "Why is this happening?", "maintenanceInfoWhyText": "For the past several months, we have been thoroughly revamping Habitica behind-the-scenes. Specifically, we have rewritten the API. While it may not look much different on the surface, it’s a whole new world underneath. This will allow us WAY more flexibility when we want to build features in the future, and lead to improved performance!", "maintenanceInfoTechDetails": "Want more details on the technical side of the process? Visit The Forge, our dev blog.", - "maintenanceInfoMore": "More Information", - "maintenanceInfoAccountChanges": "What changes will I see to my account after the rewrite is complete?", + "maintenanceInfoMore": "Mai multe Informații", + "maintenanceInfoAccountChanges": "Care sunt schimbările care vor apărea în contul meu după ce rescrierea este completă?", "maintenanceInfoAccountChangesText": "At first, there won’t be any notable changes aside from performance improvements for features such as Challenges. If you notice any changes that shouldn’t be there, email us at <%= hrefTechAssistanceEmail %> and we will investigate them for you!", "maintenanceInfoAddFeatures": "What kind of features will this allow Habitica to add?", "maintenanceInfoAddFeaturesText": "Completing this rewrite will allow us to start building out improved chat and Guilds, plans for organizations and families, and additional productivity features like Monthlies and the ability to record yesterday’s activity! Those are all involved features on their own, so it will take time to build them, but until we were finished with this rewrite, there was no way we could start them.", diff --git a/website/common/locales/ro/merch.json b/website/common/locales/ro/merch.json index 798a8a19d8..b95ad4c89f 100644 --- a/website/common/locales/ro/merch.json +++ b/website/common/locales/ro/merch.json @@ -6,13 +6,13 @@ "merch-teespring-goto" : "Cumpără un tricou Habitica", "merch-teespring-mug-summary" : "Teespring is a platform that makes it easy for anyone to create and sell high-quality products people love, with no cost or risk.", - "merch-teespring-mug-goto" : "Get a Habitica Mug", + "merch-teespring-mug-goto" : "Cumpără o Cană Habitica", "merch-teespring-eu-summary" : "EUROPEAN VERSION : Teespring is a platform that makes it easy for anyone to create and sell high-quality products people love, with no cost or risk.", "merch-teespring-eu-goto" : "Cumpărați un tricou Habitica", "merch-teespring-mug-eu-summary" : "EUROPEAN VERSION : Teespring is a platform that makes it easy for anyone to create and sell high-quality products people love, with no cost or risk.", - "merch-teespring-mug-eu-goto" : "Get a Habitica Mug (EU)", + "merch-teespring-mug-eu-goto" : "Cumpără o Cană Habitica (UE)", "merch-stickermule-summary" : "Stick proud Melior wherever you (or someone else) need a reminder of both present and future accomplishments!", "merch-stickermule-goto" : "Cumpărați stickere Habitica" diff --git a/website/common/locales/ro/npc.json b/website/common/locales/ro/npc.json index a6b3136492..80be0629a6 100644 --- a/website/common/locales/ro/npc.json +++ b/website/common/locales/ro/npc.json @@ -2,16 +2,16 @@ "npc": "PNJ", "npcAchievementName": "<%= key %> NPC", "npcAchievementText": "Backed the Kickstarter project at the maximum level!", - "welcomeTo": "Welcome to", + "welcomeTo": "Bine ai venit la", "welcomeBack": "Welcome back!", "justin": "Justin", - "justinIntroMessage1": "Hello there! You must be new here. My name is Justin, your guide to Habitica.", - "justinIntroMessage2": "To start, you'll need to create an avatar.", - "justinIntroMessage3": "Great! Now, what are you interested in working on throughout this journey?", - "introTour": "Here we are! I've filled out some Tasks for you based on your interests, so you can get started right away. Click a Task to edit or add new Tasks to fit your routine!", + "justinIntroMessage1": "Salutare! Trebuie să fii nou pe aici. Numele meu este Justin, ghidul tău în Habitica. ", + "justinIntroMessage2": "Pentru a începe, trebuie să creezi un avatar. ", + "justinIntroMessage3": "Grozav! Acum, ești interesat să lucrezi în continuare în timpul călătoriei?", + "introTour": "Iată-ne! Am adăugat câte va Sarcini pentru tine, bazat pe interesele tale, astfel încât să poți începe imediat. Apasă pe o Sarcină pentru a edita, sau adaugă o nouă Sarcină care să se potrivească rutinii tale!", "prev": "Prev", - "next": "Next", - "randomize": "Randomize", + "next": "Următorul", + "randomize": "Randomizează", "mattBoch": "Matt Boch", "mattShall": "Shall I bring you your steed, <%= name %>? Once you've fed a pet enough food to turn it into a mount, it will appear here. Click a mount to saddle up!", "mattBochText1": "Welcome to the Stable! I'm Matt, the beast master. Starting at level 3, you will find eggs and potions to hatch pets with. When you hatch a pet in the Market, it will appear here! Click a pet's image to add it to your avatar. Feed them with the food you find after level 3, and they'll grow into hardy mounts.", diff --git a/website/common/locales/ro/pets.json b/website/common/locales/ro/pets.json index b220ea7862..913995c979 100644 --- a/website/common/locales/ro/pets.json +++ b/website/common/locales/ro/pets.json @@ -8,11 +8,11 @@ "rarePets": "Companioni rari", "questPets": "Companioni din adventuri", "mounts": "Animale de călărit", - "activeMount": "Active Mount", - "noActiveMount": "No Active Mount", + "activeMount": "Animal de Călărit Activ", + "noActiveMount": "Niciun Animal de Călărit activ", "mountsTamed": "Animale de călărit îmblânzite", "questMounts": "Animale de călărit obținute din aventuri", - "magicMounts": "Magic Potion Mounts", + "magicMounts": "Animale de Călărit eclozate cu Poțiuni Magice", "rareMounts": "Animale de călărit rare", "etherealLion": "Leu eteric", "veteranWolf": "Lup veteran", diff --git a/website/common/locales/ro/quests.json b/website/common/locales/ro/quests.json index 56e3cf88ab..1ab19dea9f 100644 --- a/website/common/locales/ro/quests.json +++ b/website/common/locales/ro/quests.json @@ -8,12 +8,12 @@ "unlockableQuests": "Unlockable Quests", "goldQuests": "Masterclasser Quest Lines", "questDetails": "Quest Details", - "questDetailsTitle": "Quest Details", + "questDetailsTitle": "Detalii despre Expediție", "questDescription": "Quests allow players to focus on long-term, in-game goals with the members of their party.", "invitations": "Invitations", "completed": "Încheiat", - "rewardsAllParticipants": "Rewards for all Quest Participants", - "rewardsQuestOwner": "Additional Rewards for Quest Owner", + "rewardsAllParticipants": "Recompense pentru toți Participanții la Expediție", + "rewardsQuestOwner": "Recompense suplimentare pentru Deținătorul Expediției", "questOwnerReceived": "The Quest Owner Has Also Received", "youWillReceive": "You Will Receive", "questOwnerWillReceive": "The Quest Owner Will Also Receive", @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "Guilds cannot be invited on quests.", "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", + "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", diff --git a/website/common/locales/ro/questscontent.json b/website/common/locales/ro/questscontent.json index ccd1ff0de7..f817c88df9 100644 --- a/website/common/locales/ro/questscontent.json +++ b/website/common/locales/ro/questscontent.json @@ -6,7 +6,7 @@ "questEvilSantaDropBearCubPolarMount": "Urs polar (Călare)", "questEvilSanta2Text": "Găsește puiul", "questEvilSanta2Notes": "When Trapper Santa captured the polar bear mount, her cub ran off into the icefields. You hear twig-snaps and snow crunch through the crystalline sound of the forest. Paw prints! You start racing to follow the trail. Find all the prints and broken twigs, and retrieve the cub!", - "questEvilSanta2Completion": "You've found the cub! It will keep you company forever.", + "questEvilSanta2Completion": "Ai găsit un pui! Va rămâne companionul tău pentru totdeauna. ", "questEvilSanta2CollectTracks": "Urme", "questEvilSanta2CollectBranches": "Crengi rupte", "questEvilSanta2DropBearCubPolarPet": "Urs polar (companion)", diff --git a/website/common/locales/ro/rebirth.json b/website/common/locales/ro/rebirth.json index 15ccf2d173..6906f33394 100644 --- a/website/common/locales/ro/rebirth.json +++ b/website/common/locales/ro/rebirth.json @@ -5,13 +5,13 @@ "rebirthStartOver": "Renaștere repornește personajul de la Nivelul 1.", "rebirthAdvList1": "Ai revenit la Sănătate deplină.", "rebirthAdvList2": "Nu aveți experiență sau aur. ", - "rebirthAdvList3": "Your Habits, Dailies, and To-Dos reset to yellow, and streaks reset, except for challenge tasks.", + "rebirthAdvList3": "Obiceiurile, Cotidienele și Sarcinile sunt resetate la galben, iar șirurile se resetează, cu excepția sarcinilor din provocări", "rebirthAdvList4": "Ai clasa de început a Războinicului până când vei câștiga o altă clasă.", "rebirthInherit": "Noul tău personaj va moșteni unele lucruri de la predecesorul lui:", - "rebirthInList1": "Tasks, history, equipment, and settings remain.", + "rebirthInList1": "Sarcinile, istoricul, echipamentul și setările rămân.", "rebirthInList2": "Apartenența la Provocări, Ghilde și Echipă rămân.", "rebirthInList3": "Nestematele, nivelurile de susținător și contribuitor rămân.", - "rebirthInList4": "Items obtained from Gems or drops (such as pets and mounts) remain.", + "rebirthInList4": "Obiectele obținute cu nestemate sau câștigate (cum ar fi animale de companie sau călărit) rămân.", "rebirthEarnAchievement": "Vei primi de asemenea o Realizare pentru începerea unei noi aventuri!", "beReborn": "Renaște-te", "rebirthAchievement": "Ai început o aventură nouă! Asta este Renașterea cu numărul <%= number %> pentru tine, iar cel mai înalt Nivel pe care l-ai atins este <%= level %>. Pentru a primi această Realizare din nou, începe-ți următoarea aventură când ai atins un Nivel și mai înalt!", diff --git a/website/common/locales/ro/settings.json b/website/common/locales/ro/settings.json index 4c0847464a..bad6583c55 100644 --- a/website/common/locales/ro/settings.json +++ b/website/common/locales/ro/settings.json @@ -10,9 +10,9 @@ "newTaskEditPop": "Cu această opțiune activată, țelurile noi vor fi imediat deschise și vei putea adăuga detalii cum ar fi note sau etichete.", "dailyDueDefaultView": "Setează pe „scadente” implicit cotidienele", "dailyDueDefaultViewPop": "Cu această setare, cotidienele vor fi implicit „scadente” în loc de „toate”", - "reverseChatOrder": "Show chat messages in reverse order", - "startAdvCollapsed": "Advanced Settings in tasks start collapsed", - "startAdvCollapsedPop": "With this option set, Advanced Settings will be hidden when you first open a task for editing.", + "reverseChatOrder": "Arată mesajele din chat în ordine inversă", + "startAdvCollapsed": "Setările avansate ale țelurilor sunt ascunse", + "startAdvCollapsedPop": "Cu această opțiune activată, Setările Avansate vor fi ascunse atunci când deschizi pentru prima oară un țel pentru modificare.", "dontShowAgain": "Nu mai arăta asta din nou", "suppressLevelUpModal": "Nu arăta popup-ul la câștigarea unui nivel", "suppressHatchPetModal": "Nu arăta popup-ul la eclozarea unui companion", @@ -24,7 +24,7 @@ "showBaileyPop": "Cheam-o pe Bailey Crainica afară din ascunziș pentru a revedea știrile vechi.", "fixVal": "Aranjează Valorile Personajului", "fixValPop": "Schimbă manual valori ca Sănătate, Nivel și Aur.", - "invalidLevel": "Invalid value: Level must be 1 or greater.", + "invalidLevel": "Valoare invalidă: Nivelul trebuie să fie 1 sau mai mare", "enableClass": "Activează Sistemul de Clase.", "enableClassPop": "Inițial, ai dezactivat sistemul de clase. Vrei să îl reactivezi acum?", "classTourPop": "Arată turul de prezentare a utilizării sistemului de clase.", @@ -32,10 +32,10 @@ "resetAccPop": "Ia-o de la început, eliminiând toate nivelele, aurul, echipamentul, istoricul și țelurile.", "deleteAccount": "Șterge contul", "deleteAccPop": "Anulează și șterge contul tău Habitica.", - "feedback": "If you'd like to give us feedback, please enter it below - we'd love to know what you liked or didn't like about Habitica! Don't speak English well? No problem! Use the language you prefer.", + "feedback": "Dacă dorești să ne dai feedback, te rugăm să îl scrii mai jos - ne-ar plăcea să știm ce ți-a plăcut și ce nu la Habitica! Nu vorbești bine Engleza? Nicio problemă! Folosește limba pe care o preferi.", "qrCode": "Cod de bare QR", "dataExport": "Export date", - "saveData": "Here are a few options for saving your data.", + "saveData": "Iată câteva opțiuni pentru salvarea datelor.", "habitHistory": "Istoric Obiceiuri", "exportHistory": "Export Istoric:", "csv": "(CSV)", @@ -45,10 +45,10 @@ "xml": "(XML)", "json": "(JSON)", "customDayStart": "Când începe ziua", - "sureChangeCustomDayStartTime": "Are you sure you want to change your Custom Day Start time? Your Dailies will next reset the first time you use Habitica after <%= time %>. Make sure you have completed your Dailies before then!", + "sureChangeCustomDayStartTime": "Ești sigur că vrei să-ți modifici ora de începere a zilei? Cotidienele tale se vor reseta data viitoare când folosești Habitica după <%= time %>. Asigură-te că le-ai completat înainte!", "changeCustomDayStart": "Dorești schimbarea orei de început a zilei?", "sureChangeCustomDayStart": "Sigur dorești schimbarea orei de început a zilei?", - "customDayStartHasChanged": "Your custom day start has changed.", + "customDayStartHasChanged": "Ora de începere a zilei a fost modificată.", "nextCron": "Sarcinile tale zilnice se vor reseta prima dată când folosești Habitica după ora <%= time %>. Ai grijă să completezi sarcinile zilnice înainte de această oră!", "customDayStartInfo1": "Habitica defaults to check and reset your Dailies at midnight in your own time zone each day. You can customize that time here.", "misc": "Altele", @@ -63,42 +63,42 @@ "newUsername": "New Login Name", "dangerZone": "Zona de pericol", "resetText1": "ATENȚIE! Aceasta îți va reseta multe setari ale contului. Este foarte nerecomandat dar totuși unii utilizatori găsesc aceasta resetare folositoare la început după ce s-au distrat cu site-ul pentru puțin timp.", - "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 \"<%= magicWord %>\" into the text box below.", + "resetText2": "Vei pierde toate nivelurile, Aurul și punctele de Experiență. Toate sarcinile tale (cu excepția celor din provocări) vor fi șterse permanent și vei pierde toate datele de istoric. Vei pierde tot echipamentul și obiectele Misterioase de abonat pe care le deții (va trebui să fii în clasa corespunzătoare pentru a recumpăra echipamentele specifice clasei). Îți vei păstra clasa curentă, animalele de companie și de călărit. E posibil să preferi utilizarea Globului Renașterii, care este o opțiune mult mai sigură și care îți va păstra sarcinile și echipamentul. ", + "deleteLocalAccountText": "Ești sigur/ă? Această acțiune îți va șterge contul pentru totdeauna, cu imposibilitatea recuperării acestuia. Pentru a utiliza Habitica din nou, va fi necesar să te înregistrezi cu un cont nou. Nestematele deținute sau cheltuite nu vor fi restituite. Dacă ești absolut sigur/ă, introdu-ți parola în căsuța de mai jos.", + "deleteSocialAccountText": "Ești sigur/ă? Această acțiune îți va șterge contul pentru totdeauna, cu imposibilitatea recuperării acestuia. Pentru a utiliza Habitica din nou, va fi necesar să te înregistrezi cu un cont nou. Nestematele deținute sau cheltuite nu vor fi restituite. Dacă ești absolut sigur/ă, scrie ”<%= magicWord %>” în căsuța de mai jos. ", "API": "API", "APIv3": "API v3", "APIText": "Folosește acestea la cererea unor aplicații externe. Totuși consideră Tokenul API ca o parolă și nu o afișa public. Ocazional ți se va cere ID-ul tău de utilizatăr dar nu afișa Token-ul API nicăieri unde ar putea fi văzut de ceilalți inclusiv în Github.", "APIToken": "Tokern API (aceasta este ca o parolă - a se vedea atenționarea de mai sus!)", - "showAPIToken": "Show API Token", - "hideAPIToken": "Hide API Token", + "showAPIToken": "Arată Token-ul API", + "hideAPIToken": "Ascunde Token-ul API", "APITokenWarning": "If you need a new API Token (e.g., if you accidentally shared it), email <%= hrefTechAssistanceEmail %> with your User ID and current Token. Once it is reset you will need to re-authorize everything by logging out of the website and mobile app and by providing the new Token to any other Habitica tools that you use.", - "thirdPartyApps": "Third Party Apps", - "dataToolDesc": "A webpage that shows you certain information from your Habitica account, such as statistics about your tasks, equipment, and skills.", + "thirdPartyApps": "Aplicații Third Party", + "dataToolDesc": "O pagină web care arată anumite informații din contul tău Habitica, cum arfi statistici despre sarcini, echipament și abilități.", "beeminder": "Beeminder", - "beeminderDesc": "Let Beeminder automatically monitor your Habitica To-Dos. You can commit to maintaining a target number of To-Dos completed per day or per week, or you can commit to gradually reducing your remaining number of uncompleted To-Dos. (By \"commit\" Beeminder means under threat of paying actual money! But you may also just like Beeminder's fancy graphs.)", - "chromeChatExtension": "Chrome Chat Extension", - "chromeChatExtensionDesc": "The Chrome Chat Extension for Habitica adds an intuitive chat box to all of habitica.com. It allows users to chat in the Tavern, their party, and any guilds they are in.", - "otherExtensions": "Other Extensions", - "otherDesc": "Find other apps, extensions, and tools on the Habitica wiki.", + "beeminderDesc": "Permite Beeminder să monitorizeze automat lucrurile tale De-Făcut din Habitica. Poți să fii dedicat păstrării unui număr țintă de lucruri De-Făcut completate pe zi sau pe săptămână, sau poți fi dedicat reducerii graduale a numărului de lucruri De-Făcut necompletate rămase. (Prin ”dedicare” Beeminder se referă la pericolul de a plăti bani reali! Dar s-ar putea să-ți placă pur și simplu graficele fancy din Beeminder.)", + "chromeChatExtension": "Extensia de Chat pentru Chrome", + "chromeChatExtensionDesc": "Extensia de Chat pentru Chrome de la Habitica adaugă o căsuță de chat intuitivă tuturor lucrurilor legate de habitica.com. Permite utilizatorilor să vorbească în Tavernă, în ceată sau în orice breaslă în care se găsesc.", + "otherExtensions": "Alte Extensii", + "otherDesc": "Găsește alte aplicații, extensii și instrumente pe Habitica wiki.", "resetDo": "Fă-o, resetează-mi contul!", - "resetComplete": "Reset complete!", + "resetComplete": "Resetare completă!", "fixValues": "Aranjează valori", "fixValuesText1": "Dacă ai găsit o eroare sau ai făcut o greșeală care ți-a schimbat în mod nedrept personajul (vătămări pe care nu trebuia să le fi primit, Aur pe care nu l-ai primit etc.), poți corecta manual numerele aici. Da, asta îți permite să trișezi: folosește facilitatea aceasta cu chibzuință sau îți vei sabota propria încercare de a deprinde obiceiuri!", - "fixValuesText2": "Note that you cannot restore Streaks on individual tasks here. To do that, edit the Daily and go to Advanced Settings, where you will find a Restore Streak field.", + "fixValuesText2": "Fii atent la faptul că nu poți restabili Șirurile țelurilor individuale de aici. Pentru a face asta, editează Cotidiana și mergi la Setări Avansate, unde poți găsi un câmp pentru Restabilirea Șirului.", "disabledWinterEvent": "Dezactivat în timpul Evenimentului Țării Minunilor de Iarnă Pt. 4 (pentru că răsplățile pot fi cumpărate cu aur).", "fix21Streaks": "Șiruri de 21 de zile", "discardChanges": "Anulează modificările", "deleteDo": "Fă-o, șterge-mi contul!", "enterNumber": "Te rog introdu un număr între 0 și 24", "fillAll": "Te rog completează toate câmpurile", - "invalidPasswordResetCode": "The supplied password reset code is invalid or has expired.", - "passwordChangeSuccess": "Your password was successfully changed to the one you just chose. You can now use it to access your account.", + "invalidPasswordResetCode": "Codul de resetare a parolei este invalid sau expirat.", + "passwordChangeSuccess": "Parola ți-a fost modificată cu succes la cea tocmai aleasă. Acum o poți utiliza pentru a-ți accesa contul.", "passwordSuccess": "Password successfully changed", "usernameSuccess": "Login Name successfully changed", "emailSuccess": "Email successfully changed", - "detachSocial": "De-register <%= network %>", - "detachedSocial": "Successfully removed <%= network %> authentication from your account", + "detachSocial": "De-înregistrează <%= network %>", + "detachedSocial": "Ai eliminat cu succes autentificarea <%= network %> din cont ", "addedLocalAuth": "Successfully added local authentication", "data": "Data", "exportData": "Export Data", @@ -106,38 +106,38 @@ "email": "Email", "registerWithSocial": "Înregistrează-te cu <%= network %>", "registeredWithSocial": "Înregistrat cu <%= network %>", - "loginNameDescription": "This is what you use to log in to Habitica. To change it, use the form below. If instead you want to change the Display Name that appears on your avatar and in chat messages, go to the User Icon > Profile and click the Edit button.", + "loginNameDescription": "Asta e ceea ce folosești pentru a te loga în Habitica. Pentru a schimba metoda, folosește formularul de mai jos. Dacă în loc de asta vrei să schimbi Numele Afișat care apare în dreptul avatarului și în mesajele din chat, mergi la Icon Utilizator > Profil și apasă pe butonul Editare.", "emailNotifications": "Email Notifications", "wonChallenge": "Ai câștigat o provocare!", "newPM": "Received Private Message", "newPMInfo": "Mesaj nou de la <%= name %>: <%= message %>", - "sentGems": "Sent gems!", + "sentGems": "Trimite nestemate!", "giftedGems": "Gifted Gems", - "giftedGemsInfo": "<%= name %> gifted you <%= amount %> Gems", - "giftedGemsFull": "Hello <%= username %>, <%= sender %> has sent you <%= gemAmount %> gems!", + "giftedGemsInfo": "<%= name %> ți-a făcut cadou <%= amount %> Nestemate", + "giftedGemsFull": "Salut <%= username %>, <%= sender %> ți-a trimis <%= gemAmount %> nestemate!", "giftedSubscription": "Gifted Subscription", - "giftedSubscriptionInfo": "<%= name %> gifted you a <%= months %> month subscription", - "giftedSubscriptionFull": "Hello <%= username %>, <%= sender %> has sent you <%= monthCount %> months of subscription!", - "giftedSubscriptionWinterPromo": "Hello <%= username %>, you received <%= monthCount %> months of subscription as part of our holiday gift-giving promotion!", + "giftedSubscriptionInfo": "<%= name %> ți-a făcut cadou o abonare de <%= months %> luni", + "giftedSubscriptionFull": "Salut <%= username %>, <%= sender %> ți-a trimis <%= monthCount %> luni de abonare!", + "giftedSubscriptionWinterPromo": "Salut <%= username %>, ai primit <%= monthCount %> luni de abonare ca parte din promoția noastră de dăruire de sărbători!", "invitedParty": "Invited To Party", "invitedGuild": "Invited To Guild", - "importantAnnouncements": "Reminders to check in to complete tasks and receive prizes", + "importantAnnouncements": "Memento de intrare și completare a sarcinilor, și primire a premiilor", "weeklyRecaps": "Summaries of your account activity in the past week (Note: this is currently disabled due to performance issues, but we hope to have this back up and sending e-mails again soon!)", - "onboarding": "Guidance with setting up your Habitica account", + "onboarding": "Ghid pentru setarea contului tău Habitica", "questStarted": "Your Quest has Begun", "invitedQuest": "Invited to Quest", "kickedGroup": "Kicked from group", "remindersToLogin": "Reminders to check in to Habitica", - "subscribeUsing": "Subscribe using", + "subscribeUsing": "Abonează-te folosind", "unsubscribedSuccessfully": "Unsubscribed successfully!", - "unsubscribedTextUsers": "You have successfully unsubscribed from all Habitica emails. You can enable only the emails you want to receive from Settings > > Notifications (requires login).", + "unsubscribedTextUsers": "Te-ai dezabonat cu succes de la toate email-urile de la Habitica. Poți activa doar email-urile pe care vreu să le primești din Setări > > Notificări (necesită logare).", "unsubscribedTextOthers": "You won't receive any other email from Habitica.", "unsubscribeAllEmails": "Check to Unsubscribe from Emails", "unsubscribeAllEmailsText": "By checking this box, I certify that I understand that by unsubscribing from all emails, Habitica will never be able to notify me via email about important changes to the site or my account.", - "unsubscribeAllPush": "Check to Unsubscribe from all Push Notifications", + "unsubscribeAllPush": "Apasă pentru a te Dezabona de la toate Notificările Push", "correctlyUnsubscribedEmailType": "Correctly unsubscribed from \"<%= emailType %>\" emails.", - "subscriptionRateText": "Recurring $<%= price %> USD every <%= months %> months", - "recurringText": "recurring", + "subscriptionRateText": "$<%= price %> USD recurent la fiecare <%= months %> luni", + "recurringText": "recurent", "benefits": "Benefits", "coupon": "Coupon", "couponPlaceholder": "Enter Coupon Code", @@ -148,44 +148,44 @@ "promoCodeApplied": "Promo Code Applied! Check your inventory", "promoPlaceholder": "Enter Promotion Code", "displayInviteToPartyWhenPartyIs1": "Display Invite To Party button when party has 1 member.", - "saveCustomDayStart": "Save Custom Day Start", + "saveCustomDayStart": "Sarvează ora personală de început a zilei", "registration": "Înregistrare", - "addLocalAuth": "Add local authentication:", + "addLocalAuth": "Adaugă autentificare local:", "generateCodes": "Generează coduri", "generate": "Generează", - "getCodes": "Get Codes", + "getCodes": "Primește Coduri", "webhooks": "Webhooks", - "enabled": "Enabled", - "webhookURL": "Webhook URL", + "enabled": "Activat", + "webhookURL": "URL Webhook", "invalidUrl": "Legătură invalidă", - "invalidEnabled": "the \"enabled\" parameter should be a boolean.", - "invalidWebhookId": "the \"id\" parameter should be a valid UUID.", - "missingWebhookId": "The webhook's id is required.", - "invalidWebhookType": "\"<%= type %>\" is not a valid value for the parameter \"type\".", - "webhookBooleanOption": "\"<%= option %>\" must be a Boolean value.", - "webhookIdAlreadyTaken": "A webhook with the id <%= id %> already exists.", - "noWebhookWithId": "There is no webhook with the id <%= id %>.", - "regIdRequired": "RegId is required", - "invalidPushClient": "Invalid client. Only Official Habitica clients can receive push notifications.", - "pushDeviceAdded": "Push device added successfully", - "pushDeviceAlreadyAdded": "The user already has the push device", - "pushDeviceNotFound": "The user has no push device with this id.", - "pushDeviceRemoved": "Push device removed successfully.", - "buyGemsGoldCap": "Cap raised to <%= amount %>", - "mysticHourglass": "<%= amount %> Mystic Hourglass", - "mysticHourglassText": "Mystic Hourglasses allow purchasing a previous month's Mystery Item set.", - "purchasedPlanId": "Recurring $<%= price %> USD each <%= months %> Month(s) (<%= plan %>)", - "purchasedPlanExtraMonths": "You have <%= months %> months of extra subscription credit.", - "consecutiveSubscription": "Consecutive Subscription", - "consecutiveMonths": "Consecutive Months:", - "gemCapExtra": "Gem Cap Extra:", - "mysticHourglasses": "Mystic Hourglasses:", - "mysticHourglassesTooltip": "Mystic Hourglasses", + "invalidEnabled": "parametrul ”activat” trebuie să fie boolean.", + "invalidWebhookId": "parametrul ”id” trebuie să fie un UUID valid.", + "missingWebhookId": "Id-ul Webhook este necesar.", + "invalidWebhookType": "”<%= type %>” nu este o valoare validă pentru parametrul ”tip”.", + "webhookBooleanOption": "”<%= option %>” trebuie să fie o valoare Boolean.", + "webhookIdAlreadyTaken": "Un webhook cu id-ul <%= id %> există deja.", + "noWebhookWithId": "Nu există un webhok cu id-ul <%= id %>.", + "regIdRequired": "RegId este necesar", + "invalidPushClient": "Client invalid. Numai clienții oficiali Habitica pot primi notificări push.", + "pushDeviceAdded": "Dispozitiv push adăugat cu succes", + "pushDeviceAlreadyAdded": "Utilizatorul are deja dispozitivul push", + "pushDeviceNotFound": "Utilizatorul nu are un dispozitiv push cu acest id.", + "pushDeviceRemoved": "Dispozitiv push îndepărtat cu succes.", + "buyGemsGoldCap": "Limită crescută la <%= amount %>", + "mysticHourglass": "<%= amount %> Clepsidre Mistice", + "mysticHourglassText": "Clepsidrele Mistice permit cumpărarea unui set de obiecte Misterioase din luni trecute.", + "purchasedPlanId": "$<%= price %> USD recurent la fiecare <%= months %> Luni (<%= plan %>)", + "purchasedPlanExtraMonths": "Ai credit de abonare pentru încă <%= months %> luni. ", + "consecutiveSubscription": "Abonare Consecutivă", + "consecutiveMonths": "Luni Consecutive:", + "gemCapExtra": "Limită de Nestemate Extra:", + "mysticHourglasses": "Clepsidre Mistice:", + "mysticHourglassesTooltip": "Clepsidre Mistice", "paypal": "PayPal", "amazonPayments": "Plată prin Amazon", "timezone": "Fus orar", "timezoneUTC": "Habitica folosește fusul orar al calculatorului dumneavoastră, anume: <%= utc %>", "timezoneInfo": "If that time zone is wrong, first reload this page using your browser's reload or refresh button to ensure that Habitica has the most recent information. If it is still wrong, adjust the time zone on your PC and then reload this page again.

If you use Habitica on other PCs or mobile devices, the time zone must be the same on them all. If your Dailies have been resetting at the wrong time, repeat this check on all other PCs and on a browser on your mobile devices.", "push": "Push", - "about": "About" + "about": "Despre" } \ No newline at end of file diff --git a/website/common/locales/ro/spells.json b/website/common/locales/ro/spells.json index f376e687d6..e55bc48598 100644 --- a/website/common/locales/ro/spells.json +++ b/website/common/locales/ro/spells.json @@ -6,8 +6,8 @@ "spellWizardEarthText": "Cutremur", "spellWizardEarthNotes": "Your mental power shakes the earth and buffs your Party's Intelligence! (Based on: Unbuffed INT)", "spellWizardFrostText": "Ger aprig", - "spellWizardFrostNotes": "With one cast, ice freezes all your streaks so they won't reset to zero tomorrow!", - "spellWizardFrostAlreadyCast": "You have already cast this today. Your streaks are frozen, and there's no need to cast this again.", + "spellWizardFrostNotes": "Cu o singură vrajă, toate șirurile tale sunt înghețate, astfel încât nu se vor mai reseta mâine!", + "spellWizardFrostAlreadyCast": "Ai folosit deja această vrajă astăzi. Șirurile tale sunt înghețate deja, deci nu este nevoie să faci aceeași vrajă din nou. ", "spellWarriorSmashText": "Izbitură brutală", "spellWarriorSmashNotes": "You make a task more blue/less red and deal extra damage to Bosses! (Based on: STR)", "spellWarriorDefensiveStanceText": "Postură defensivă", diff --git a/website/common/locales/ro/subscriber.json b/website/common/locales/ro/subscriber.json index 60813c37e2..333074253f 100644 --- a/website/common/locales/ro/subscriber.json +++ b/website/common/locales/ro/subscriber.json @@ -2,14 +2,14 @@ "subscription": "Abonament", "subscriptions": "Abonamente", "subDescription": "Cumpără nestemate cu aur, obține articole misterioase în fiecare lună, păstrează istoricul progresului, dublează limitele zilnice de picări, sprijină dezvoltatorii. Clic pentru mai multe informații.", - "sendGems": "Send Gems", + "sendGems": "Trimite Nestemate", "buyGemsGold": "Cumpără Nestemate cu Aur", "buyGemsGoldText": "Alexander the Merchant will sell you Gems at a cost of 20 Gold per Gem. His monthly shipments are initially capped at 25 Gems per month, but for every 3 consecutive months that you are subscribed, this cap increases by 5 Gems, up to a maximum of 50 Gems per month!", - "mustSubscribeToPurchaseGems": "Must subscribe to purchase gems with GP", + "mustSubscribeToPurchaseGems": "Trebuie să fii abonat pentru a cumpăra Nestemate cu aur", "reachedGoldToGemCap": "You've reached the Gold=>Gem conversion cap <%= convCap %> for this month. We have this to prevent abuse / farming. The cap resets within the first three days of each month.", "reachedGoldToGemCapQuantity": "Your requested amount <%= quantity %> exceeds the Gold=>Gem conversion cap <%= convCap %> for this month. We have this to prevent abuse / farming. The cap resets within the first three days of each month.", "retainHistory": "Reține mai mult din istoric", - "retainHistoryText": "Makes completed To-Dos and task history available for longer.", + "retainHistoryText": "Pune la dispoziție pentru mai mult timp lista completată a lucrurilor De-Făcut și istoricul sarcinilor.", "doubleDrops": "Daily drop caps doubled", "doubleDropsText": "Umpleți grajdul mai repede!", "mysteryItem": "Obiecte unice disponibile lunar", @@ -144,6 +144,7 @@ "mysterySet201803": "Daring Dragonfly Set", "mysterySet201804": "Spiffy Squirrel Set", "mysterySet201805": "Phenomenal Peacock Set", + "mysterySet201806": "Alluring Anglerfish Set", "mysterySet301404": "Steampunk Standard Set", "mysterySet301405": "Steampunk Accessories Set", "mysterySet301703": "Peacock Steampunk Set", diff --git a/website/common/locales/ro/tasks.json b/website/common/locales/ro/tasks.json index 3c4b453140..b6f74a387a 100644 --- a/website/common/locales/ro/tasks.json +++ b/website/common/locales/ro/tasks.json @@ -1,11 +1,11 @@ { "clearCompleted": "Șterge pe cele completate", - "clearCompletedDescription": "Completed To-Dos are deleted after 30 days for non-subscribers and 90 days for subscribers.", - "clearCompletedConfirm": "Are you sure you want to delete your completed To-Dos?", - "sureDeleteCompletedTodos": "Are you sure you want to delete your completed To-Dos?", - "lotOfToDos": "Your most recent 30 completed To-Dos are shown here. You can see older completed To-Dos from Data > Data Display Tool or Data > Export Data > User Data.", - "deleteToDosExplanation": "If you click the button below, all of your completed To-Dos and archived To-Dos will be permanently deleted, except for To-Dos from active challenges and Group Plans. Export them first if you want to keep a record of them.", - "addMultipleTip": "Tip: To add multiple <%= taskType %>, separate each one using a line break (Shift + Enter) and then press \"Enter.\"", + "clearCompletedDescription": "Lista de lucruri De-Făcut completată este ștearsă după 30 de zile pentru non-abonați și 90 de zile pentru abonați.", + "clearCompletedConfirm": "Ești sigur/ă că vrei să-ți ștergi lista lucrurilor De-Făcut completată?", + "sureDeleteCompletedTodos": "Ești sigur/ă că vrei să-ți ștergi lista lucrurilor De-Făcut completată?", + "lotOfToDos": "Cele mai recente 30 de activități De-Făcut completate apar aici. Le poți vedea pe cele mai vechi din Data > Data Display Tool sau Data > Export Data > User Data.", + "deleteToDosExplanation": "Dacă apeși butonul de mai jos, toate activitățile tale De-Făcut completate și cele arhivate vor fi șterse permanent, cu excepția celor din provocări în desfășurare și din Planurile de Grup. Exportă-le întâi dacă vrei să ții o evidență a lor.", + "addMultipleTip": "Sfat Pentru a adăuga multiple <%= taskType %>, separă-le pe fiecare utilizând o linie de pauză (Shift + Enter) și apoi apasă ”Enter.”", "addsingle": "Add Single", "addATask": "Adaugă un/o <%= type %>", "editATask": "Editează un/o <%= type %>", @@ -27,15 +27,15 @@ "addChecklist": "Adaugă listă bife", "checklist": "Listă bife", "checklistText": "Descompune-ți sarcinile în bucățele mai mici! Listele de verificare cresc Experiența și Aurul pe care le primești de la o Sarcina, și reduc paguba de la o Cotidiană nefăcută. ", - "newChecklistItem": "New checklist item", - "expandChecklist": "Expand Checklist", - "collapseChecklist": "Collapse Checklist", + "newChecklistItem": "Obiect nou în listă", + "expandChecklist": "Extinde Lista ", + "collapseChecklist": "Pliază Checklist-ul", "text": "Title", "extraNotes": "Alte note", - "notes": "Notes", + "notes": "Notițe", "direction/Actions": "Direcție/Acțiuni", - "advancedSettings": "Advanced Settings", - "taskAlias": "Task Alias", + "advancedSettings": "Setări Avansate", + "taskAlias": "Alias-ul Sarcinii", "taskAliasPopover": "This task alias can be used when integrating with 3rd party integrations. Only dashes, underscores, and alphanumeric characters are supported. The task alias must be unique among all your tasks.", "taskAliasPlaceholder": "your-task-alias-here", "taskAliasPopoverWarning": "WARNING: Changing this value will break any 3rd party integrations that rely on the task alias.", @@ -49,16 +49,16 @@ "attributeAllocation": "Alocare de Statistici", "attributeAllocationHelp": "Stat allocation is an option that provides methods for Habitica to automatically assign an earned Stat Point to a Stat immediately upon level-up.

You can set your Automatic Allocation method to Task Based in the Stats section of your profile.", "progress": "Progres", - "daily": "Daily", + "daily": "Activitate Zilnică", "dailies": "Cotidiene", "newDaily": "Cotidiană nouă", "newDailyBulk": "New Dailies (one per line)", - "dailysDesc": "Dailies repeat on a regular basis. Choose the schedule that works best for you!", + "dailysDesc": "Cotidienele se repetă regulat. Alege-ți programul care funcționează cel mai bine pentru tine!", "streakCounter": "Contor șir", "repeat": "Repetă", - "repeats": "Repeats", + "repeats": "Se repetă", "repeatEvery": "Repeat Every", - "repeatOn": "Repeat On", + "repeatOn": "Se repetă pe", "repeatHelpTitle": "How often should this task be repeated?", "dailyRepeatHelpContent": "This task will be due every X days. You can set that value below.", "weeklyRepeatHelpContent": "This task will be due on the highlighted days below. Click on a day to activate/deactivate it.", @@ -66,27 +66,27 @@ "repeatWeek": "On Certain Days of the Week", "day": "Day", "days": "Days", - "restoreStreak": "Adjust Streak", - "resetStreak": "Reset Streak", - "todo": "To-Do", + "restoreStreak": "Ajustează Șirul", + "resetStreak": "Resetează Șirul", + "todo": "De-Făcut", "todos": "Sarcini", "newTodo": "Sarcină nouă", "newTodoBulk": "New To-Dos (one per line)", - "todosDesc": "To-Dos need to be completed once. Add checklists to your To-Dos to increase their value.", + "todosDesc": "Lucrurile De-Făcut trebuie completate o singură dată. Adaugă o bife acestora pentru a le crește valoarea.", "dueDate": "Dată limită", "remaining": "Active", "complete": "Done", - "complete2": "Complete", + "complete2": "Complet", "dated": "Dated", - "today": "Today", - "dueIn": "Due <%= dueIn %>", + "today": "Astăzi", + "dueIn": "Termen limită <%= dueIn %>", "due": "Scadente", "notDue": "Not Due", "grey": "Gri", "score": "Score", - "reward": "Reward", + "reward": "Recompensă", "rewards": "Recompense", - "rewardsDesc": "Rewards are a great way to use Habitica and complete your tasks. Try adding a few today!", + "rewardsDesc": "Recompensele sunt o modalitate grozavă de a utiliza Habitica și a-ți completa sarcinile. Încearcă să adaugi câteva astăzi!", "ingamerewards": "Equipment & Skills", "gold": "Aur", "silver": "Argint (100 Arginți = 1 Aur)", @@ -99,38 +99,38 @@ "clearTags": "Șterge", "hideTags": "Ascunde", "showTags": "Arată", - "editTags2": "Edit Tags", + "editTags2": "Editează Etichetele", "toRequired": "You must supply a \"to\" property", "startDate": "Start Date", "startDateHelpTitle": "When should this task start?", "startDateHelp": "Set the date for which this task takes effect. Will not be due on earlier days.", - "streaks": "Streak Achievements", - "streakName": "<%= count %> Streak Achievements", - "streakText": "Has performed <%= count %> 21-day streaks on Dailies", + "streaks": "Realizări legate de Șir", + "streakName": "<%= count %> Realizări legate de Șir", + "streakText": "A îndeplinit <%= count %> șiruri a câte 21 de zile în Cotidiene", "streakSingular": "Înșiruitor", "streakSingularText": "A îndeplinit 21 de zile în șir o Cotidiană", - "perfectName": "<%= count %> Perfect Days", - "perfectText": "Completed all active Dailies on <%= count %> days. With this achievement you get a +level/2 buff to all Stats for the next day. Levels greater than 100 don't have any additional effects on buffs.", + "perfectName": "<%= count %> Zile Perfecte", + "perfectText": "A completat toate Cotidienele în <%= count %> zile. Cu această realizare primești +nivel/2 sporuri pentru toate atributele în ziua următoare. Nivelele mai mari de 100 nu au niciun spor suplimentar.", "perfectSingular": "Zi perfectă", - "perfectSingularText": "Completed all active Dailies in one day. With this achievement you get a +level/2 buff to all Stats for the next day. Levels greater than 100 don't have any additional effects on buffs.", + "perfectSingularText": "A completat toate Cotidienele într-o zi. Cu această realizare primești +nivel/2 sporuri pentru toate atributele în ziua următoare. Nivelele mai mari de 100 nu au niciun spor suplimentar.", "streakerAchievement": "Ai realizat gradul „Streaker”! A 21-a zi este o bornă pe drumul creării de obiceiuri. Poți continua să acumulezi această realizare pentru fiecare 21 de zile adiționale în această activitate zilnică sau în oricare alta.", "fortifyName": "Poțiune fortifiantă", "fortifyPop": "Readu toate țelurile la valoarea neutră (culoarea galbenă) și refă toată Sănătatea pierdută.", "fortify": "Fortifică", "fortifyText": "Fortify will return all your tasks, except challenge tasks, to a neutral (yellow) state, as if you'd just added them, and top your Health off to full. This is great if all your red tasks are making the game too hard, or all your blue tasks are making the game too easy. If starting fresh sounds much more motivating, spend the Gems and catch a reprieve!", - "confirmFortify": "Are you sure?", - "fortifyComplete": "Fortify complete!", - "deleteTask": "Delete this Task", - "sureDelete": "Are you sure you want to delete this task?", + "confirmFortify": "Ești sigur/ă?", + "fortifyComplete": "Fortificare completă!", + "deleteTask": "Șterge această Sarcină", + "sureDelete": "Ești sigur/ă că vrei să ștergi această sarcină?", "streakCoins": "Bonus de realizare în șir!", - "taskToTop": "To top", - "taskToBottom": "To bottom", + "taskToTop": "Mergi sus", + "taskToBottom": "Mergi jos", "emptyTask": "Enter the task's title first.", "dailiesRestingInInn": "You're Resting in the Inn! Your Dailies will NOT hurt you tonight, but they WILL still refresh every day. If you're in a quest, you won't deal damage/collect items until you check out of the Inn, but you can still be injured by a Boss if your Party mates skip their own Dailies.", "habitHelp1": "Good Habits are things that you do often. They award Gold and Experience every time you click the <%= plusIcon %>.", "habitHelp2": "Bad Habits are things you want to avoid doing. They remove Health every time you click the <%= minusIcon %>.", "habitHelp3": "For inspiration, check out these sample Habits!", - "newbieGuild": "More questions? Ask in the <%= linkStart %>Habitica Help guild<%= linkEnd %>!", + "newbieGuild": "Ai alte întrebări? Întreabă în <%= linkStart %> Habitica Help Guild<%= linkEnd %>!", "dailyHelp1": "Dailies repeat <%= emphasisStart %>every day<%= emphasisEnd %> that they are active. Click the <%= pencilIcon %> to change the days a Daily is active.", "dailyHelp2": "If you don't complete active Dailies, you lose Health when your day rolls over.", "dailyHelp3": "Dailies turn <%= emphasisStart %>redder<%= emphasisEnd %> when you miss them, and <%= emphasisStart %>bluer<%= emphasisEnd %> when you complete them. The redder the Daily, the more it will reward you... or hurt you.", @@ -141,75 +141,73 @@ "toDoHelp3": "Breaking a To-Do down into a checklist of smaller items will make it less scary, and will increase your points!", "toDoHelp4": "For inspiration, check out these sample To-Dos!", "rewardHelp1": "The Equipment you buy for your avatar is stored in <%= linkStart %>Inventory > Equipment<%= linkEnd %>.", - "rewardHelp2": "Equipment affects your Stats (<%= linkStart %>Avatar > Stats<%= linkEnd %>).", + "rewardHelp2": "Echipamentul îți influențează Statisticile (<%= linkStart %>Avatar > Stats<%= linkEnd %>).", "rewardHelp3": "Special equipment will appear here during World Events.", "rewardHelp4": "Don't be afraid to set custom Rewards! Check out some samples here.", "clickForHelp": "Click for help", - "taskAliasAlreadyUsed": "Task alias already used on another task.", - "taskNotFound": "Task not found.", - "invalidTaskType": "Task type must be one of \"habit\", \"daily\", \"todo\", \"reward\".", + "taskAliasAlreadyUsed": "Aliasul sarcinii este deja utilizat pentru o alta.", + "taskNotFound": "Sarcina nu a putut fi găsită.", + "invalidTaskType": "Tipul sarcinii trebuie să fie una dintre ”obicei”, ”cotidene”, ”defăcut”, ”recompensă”.", "invalidTasksType": "Task type must be one of \"habits\", \"dailys\", \"todos\", \"rewards\".", - "invalidTasksTypeExtra": "Task type must be one of \"habits\", \"dailys\", \"todos\", \"rewards\", \"completedTodos\".", - "cantDeleteChallengeTasks": "A task belonging to a challenge can't be deleted.", - "checklistOnlyDailyTodo": "Checklists are supported only on Dailies and To-Dos", - "checklistItemNotFound": "No checklist item was found with given id.", + "invalidTasksTypeExtra": "Tipul sarcinii trebuie să fie una dintre ”obicei”, ”cotidene”, ”defăcut”, ”recompensă”, ”defăcutCompletat”.", + "cantDeleteChallengeTasks": "O sarcină care aparține unei provocări nu poate fi ștearsă.", + "checklistOnlyDailyTodo": "Listele de bife sunt disponibile numai pentru Cotidiene și De-Făcut", + "checklistItemNotFound": "Niciun obiect din Checklist nu a fost găsit pentru id-ul utilizat.", "itemIdRequired": "\"itemId\" must be a valid UUID.", - "tagNotFound": "No tag item was found with given id.", + "tagNotFound": "Niciun obiect etichetă nu a fost găsit pentru id-ul utilizat.", "tagIdRequired": "\"tagId\" must be a valid UUID corresponding to a tag belonging to the user.", - "positionRequired": "\"position\" is required and must be a number.", - "cantMoveCompletedTodo": "Can't move a completed todo.", - "directionUpDown": "\"direction\" is required and must be 'up' or 'down'.", - "alreadyTagged": "The task is already tagged with given tag.", - "strengthExample": "Relating to exercise and activity", - "intelligenceExample": "Relating to academic or mentally challenging pursuits", - "perceptionExample": "Relating to work or financial tasks", - "constitutionExample": "Relating to health, wellness, and social interaction", - "counterPeriod": "Counter Resets Every", - "counterPeriodDay": "Day", - "counterPeriodWeek": "Week", - "counterPeriodMonth": "Month", + "positionRequired": "”poziția” este necesară și trebuie să fie un număr.", + "cantMoveCompletedTodo": "Nu poți muta lucrul De-Făcut completat.", + "directionUpDown": "”direcția” este necesară și trebuie să fie 'sus' sau 'jos'.", + "alreadyTagged": "Sarcina este deja etichetată cu o etichetă utilizată.", + "strengthExample": "Legat de exerciții fizice și activitate", + "intelligenceExample": "Legat de scopuri academice sau provocatoare pentru dezvoltarea intelectuală", + "perceptionExample": "Legat de muncă și sarcini financiare", + "constitutionExample": "Legat de sănătate, stare de bine, și interacțiuni sociale", + "counterPeriod": "Se resetează în fiecare", + "counterPeriodDay": "Zi", + "counterPeriodWeek": "Săptămână", + "counterPeriodMonth": "Lună", "habitCounter": "Counter (Resets <%= frequency %>)", "habitCounterUp": "Positive Counter (Resets <%= frequency %>)", "habitCounterDown": "Negative Counter (Resets <%= frequency %>)", - "taskRequiresApproval": "This task must be approved before you can complete it. Approval has already been requested", - "taskApprovalHasBeenRequested": "Approval has been requested", - "taskApprovalWasNotRequested": "Only a task waiting for approval can be marked as needing more work", - "approvals": "Approvals", - "approvalRequired": "Needs Approval", - "repeatZero": "Daily is never due", - "repeatType": "Repeat Type", - "repeatTypeHelpTitle": "What kind of repeat is this?", + "taskRequiresApproval": "Această sarcină trebuie aprobată înainte să o poți completa. Aprobarea a fost deja solicitată", + "taskApprovalHasBeenRequested": "Aprobarea a fost solicitată", + "taskApprovalWasNotRequested": "Numai o sarcină așteaptă aprobare și poate fi marcată ca necesitând treabă suplimentară", + "approvals": "Aprobări", + "approvalRequired": "Necesită Aprobare", + "repeatZero": "Cotidenele nu au niciodată termen limită", + "repeatType": "Tip de repetiție", + "repeatTypeHelpTitle": "Ce tip de repetiție este aceasta?", "repeatTypeHelp": "Select \"Daily\" if you want this task to repeat every day or every third day, etc. Select \"Weekly\"if you want it to repeat on certain days of the week. If you select \"Monthly\" or \"Yearly\", adjust the Start Date to control which day of the month or year the task will be due on.", - "weekly": "Weekly", - "monthly": "Monthly", - "yearly": "Yearly", - "onDays": "On Days", - "summary": "Summary", - "repeatsOn": "Repeats On", - "dayOfWeek": "Day of the Week", - "dayOfMonth": "Day of the Month", - "month": "Month", - "months": "Months", - "week": "Week", - "weeks": "Weeks", - "year": "Year", - "years": "Years", - "confirmScoreNotes": "Confirm task scoring with notes", - "taskScoreNotesTooLong": "Task score notes must be less than 256 characters", - "groupTasksByChallenge": "Group tasks by challenge title", - "taskNotes": "Task Notes", - "monthlyRepeatHelpContent": "This task will be due every X months", - "yearlyRepeatHelpContent": "This task will be due every X years", - "resets": "Resets", - "summaryStart": "Repeats <%= frequency %> every <%= everyX %> <%= frequencyPlural %>", - "nextDue": "Next Due Dates", - "checkOffYesterDailies": "Check off any Dailies you did yesterday:", - "yesterDailiesTitle": "You left these Dailies unchecked yesterday! Do you want to check off any of them now?", - "yesterDailiesCallToAction": "Start My New Day!", - "yesterDailiesOptionTitle": "Confirm that this Daily wasn't done before applying damage", + "weekly": "Săptămânal", + "monthly": "Lunar", + "yearly": "Anual", + "onDays": "În zile", + "summary": "Rezumat", + "repeatsOn": "Se repetă pe", + "dayOfWeek": "Zile din Săptămână", + "dayOfMonth": "Zile din Lună", + "month": "Lună", + "months": "Luni", + "week": "Săptămână", + "weeks": "Săptămâni", + "year": "An", + "years": "Ani", + "groupTasksByChallenge": "Grupează sarcinile în funcție de titlul provocării", + "taskNotes": "Notițele Sarcinii", + "monthlyRepeatHelpContent": "Această sarcină va avea termen limită la fiecare X luni", + "yearlyRepeatHelpContent": "Această sarcină va avea termen limită la fiecare X ani", + "resets": "Se resetează", + "summaryStart": "Repetă <%= frequency %> la fiecare <%= everyX %> <%= frequencyPlural %>", + "nextDue": "Următoarele Termene Limită", + "checkOffYesterDailies": "Bifează Cotidienele făcute ieri:", + "yesterDailiesTitle": "Ți-ai lăsat aceste Cotidiene nebifate ieri! Dorești să le bifezi pe oricare dintre ele acum?", + "yesterDailiesCallToAction": "Începe o Nouă Zi!", + "yesterDailiesOptionTitle": "Confirmă că aceste Cotidiene nu au fost făcute înainte de aplicarea deteriorării", "yesterDailiesDescription": "If this setting is applied, Habitica will ask you if you meant to leave the Daily undone before calculating and applying damage to your avatar. This can protect you against unintentional damage.", - "repeatDayError": "Please ensure that you have at least one day of the week selected.", - "searchTasks": "Search titles and descriptions...", - "sessionOutdated": "Your session is outdated. Please refresh or sync.", - "errorTemporaryItem": "This item is temporary and cannot be pinned." + "repeatDayError": "Te rugăm să te asiguri că ai măcar una din zilele săptămânii selectate.", + "searchTasks": "Caută titluri și descrieri...", + "sessionOutdated": "Sesiunea ta este învechită. Reîmprospătează sau sincronizează.", + "errorTemporaryItem": "Acest obiect este temporar și nu poate fi scos în evidență." } \ No newline at end of file diff --git a/website/common/locales/ru/backgrounds.json b/website/common/locales/ru/backgrounds.json index 6ce14cb57d..63505e184d 100644 --- a/website/common/locales/ru/backgrounds.json +++ b/website/common/locales/ru/backgrounds.json @@ -359,5 +359,12 @@ "backgroundRowboatText": "Гребная лодка", "backgroundRowboatNotes": "Петь песни в гребной лодке", "backgroundPirateFlagText": "Пиратский флаг", - "backgroundPirateFlagNotes": "Расправить устрашающий Пиратский флаг" + "backgroundPirateFlagNotes": "Расправить устрашающий Пиратский флаг", + "backgrounds072018": "Набор 50: Выпущен в Июле 2018", + "backgroundDarkDeepText": "Темные глубины", + "backgroundDarkDeepNotes": "Ныряйте в Темные глубины средни светящихся обитателей", + "backgroundDilatoryCityText": "Город Промедления", + "backgroundDilatoryCityNotes": "Побродите по подводному городу Промедления.", + "backgroundTidePoolText": "Водоем от прилива", + "backgroundTidePoolNotes": "Исследуйте фауну моря возле водоема оставленным приливом" } \ No newline at end of file diff --git a/website/common/locales/ru/content.json b/website/common/locales/ru/content.json index a8a967e8a4..eb5f883b72 100644 --- a/website/common/locales/ru/content.json +++ b/website/common/locales/ru/content.json @@ -195,6 +195,7 @@ "hatchingPotionFairy": "Сказочный", "hatchingPotionStarryNight": "Ночной звездный", "hatchingPotionRainbow": "Радужный", + "hatchingPotionGlass": "Стеклянный", "hatchingPotionNotes": "Полейте его на яйцо и из него вылупится <%= potText(locale) %> питомец.", "premiumPotionAddlNotes": "Несовместим с яйцами квестовых питомцев.", "foodMeat": "Мясо", diff --git a/website/common/locales/ru/gear.json b/website/common/locales/ru/gear.json index 30969dcf22..ba2d0d05c1 100644 --- a/website/common/locales/ru/gear.json +++ b/website/common/locales/ru/gear.json @@ -258,14 +258,14 @@ "weaponSpecialSpring2018MageNotes": "Этот волшебный цветок никогда не увядает! Увеличивает интеллект на <%= int %> и восприятие на <%= per %>. Ограниченный выпуск весны 2018.", "weaponSpecialSpring2018HealerText": "Гранатовый жезл", "weaponSpecialSpring2018HealerNotes": "Камни в этой штуке сосредоточат вашу силу, когда вы будете накладывать исцеляющие заклинания! Увеличивает интеллект на <%= int %>. Ограниченный выпуск весны 2018.", - "weaponSpecialSummer2018RogueText": "Fishing Rod", - "weaponSpecialSummer2018RogueNotes": "This lightweight, practically unbreakable rod and reel can be dual-wielded to maximize your DPS (Dragonfish Per Summer). Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.", - "weaponSpecialSummer2018WarriorText": "Betta Fish Spear", - "weaponSpecialSummer2018WarriorNotes": "Mighty enough for battle, elegant enough for ceremony, this exquisitely crafted spear shows you will protect your home surf no matter what! Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.", - "weaponSpecialSummer2018MageText": "Lionfish Fin Rays", - "weaponSpecialSummer2018MageNotes": "Underwater, magic based on fire, ice, or electricity can prove hazardous to the Mage wielding it. Conjuring poisonous spines, however, works brilliantly! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2018 Summer Gear.", - "weaponSpecialSummer2018HealerText": "Merfolk Monarch Trident", - "weaponSpecialSummer2018HealerNotes": "With a benevolent gesture, you command healing water to flow through your dominions in waves. Increases Intelligence by <%= int %>. Limited Edition 2018 Summer Gear.", + "weaponSpecialSummer2018RogueText": "Удочка", + "weaponSpecialSummer2018RogueNotes": "Эту лёгкую, практически нерушимую удочку можно держать в обеих руках, чтобы увеличить ваш УВС (Уклейки в Сезон). Увеличивает силу на <%= str %>. Ограниченный выпуск лета 2018.", + "weaponSpecialSummer2018WarriorText": "Копье Бойцовской рыбы", + "weaponSpecialSummer2018WarriorNotes": "Достаточно мощная для битвы, достаточно элегантная для церемонии, это изысканно созданное копье показывает, что вы защитите свои родные прибои, несмотря ни на что! Увеличивает силу на <%= str %>. Ограниченный выпуск лета 2018.", + "weaponSpecialSummer2018MageText": "Плавники Крылатки", + "weaponSpecialSummer2018MageNotes": "Подводная магия, основанная на огне, льде или электричестве, может оказаться опасной для мага, владеющего ею. Тем не менее, заклинание ядовитых шипов работает прекрасно! Увеличивает интеллект на <%= int %> и восприятие на <%= per %>. Ограниченный выпуск лета 2018.", + "weaponSpecialSummer2018HealerText": "Трезубец Амфибии", + "weaponSpecialSummer2018HealerNotes": "С доброжелательным жестом, вы приказываете целебной воде течь сквозь ваши владения под волнами. Увеличивает интеллект на <%= int %>. Ограниченный выпуск лета 2018. ", "weaponMystery201411Text": "Вилы пиршества", "weaponMystery201411Notes": "Многофункциональные вилы – вонзайте их во врагов, или в свои любимые блюда! Бонусов не дают. Подарок подписчикам ноября 2014.", "weaponMystery201502Text": "Сверкающий крылатый посох Любви-а-также-Правды", @@ -345,7 +345,9 @@ "weaponArmoireCobblersHammerText": "Молоток Башмачника", "weaponArmoireCobblersHammerNotes": "Этот молоток специально предназначен для работы над кожей. С его помощью можно одним ударом справиться с красными Ежедневными заданиями. Увеличивает Телосложение и Силу на <%= attrs %>. Зачарованный сундук: Набор Сапожника (предмет 2 из 3)", "weaponArmoireGlassblowersBlowpipeText": "Инструмент стеклодува", - "weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Increases Strength by <%= str %>. Enchanted Armoire: Glassblower Set (Item 1 of 4).", + "weaponArmoireGlassblowersBlowpipeNotes": "Используйте эту трубку, чтобы выдувать красивые вазы, орнаменты и другие причудливые вещи из расплавленного стекла. Увеличивает силу на <%= str %>. Зачарованный сундук: Набор Стеклодува (предмет 1 из 4).", + "weaponArmoirePoisonedGobletText": "Отравленный кубок", + "weaponArmoirePoisonedGobletNotes": "Используйте это, чтобы выработать иммунитет к иокановому порошку и другим невероятно опасным ядам. Увеличивает интеллект на <%= int %>. Зачарованный сундук: Набор пиратской принцессы (предмет 3 из 4).", "armor": "Броня", "armorCapitalized": "Броня", "armorBase0Text": "Обычная одежда", @@ -580,14 +582,14 @@ "armorSpecialSpring2018MageNotes": "Ваше заклинание может только улучшиться, когда вы будете одеты в эти мягкие, шелковистые лепестки. Увеличивает интеллект на <%= int %>. Ограниченный выпуск весны 2018.", "armorSpecialSpring2018HealerText": "Гранатовые доспехи", "armorSpecialSpring2018HealerNotes": "Пусть эта яркая броня придаст вашему сердцу силу для исцеления. Увеличивает телосложение на <%= con %>. Ограниченный выпуск весны 2018.", - "armorSpecialSummer2018RogueText": "Pocket Fishing Vest", - "armorSpecialSummer2018RogueNotes": "Bobbers? Boxes of hooks? Spare line? Lockpicks? Smoke bombs? Whatever you need on hand for your summer fishing getaway, there's a pocket for it! Increases Perception by <%= per %>. Limited Edition 2018 Summer Gear.", - "armorSpecialSummer2018WarriorText": "Betta Tail Armor", - "armorSpecialSummer2018WarriorNotes": "Dazzle onlookers with whorls of magnificent color as you spin and dart through the water. How could any opponent dare strike at this beauty? Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.", - "armorSpecialSummer2018MageText": "Lionfish Scale Hauberk", - "armorSpecialSummer2018MageNotes": "Venom magic has a reputation for subtlety. Not so this colorful armor, whose message is clear to beast and task alike: watch out! Increases Intelligence by <%= int %>. Limited Edition 2018 Summer Gear.", - "armorSpecialSummer2018HealerText": "Merfolk Monarch Robes", - "armorSpecialSummer2018HealerNotes": "These cerulean vestments reveal that you have land-walking feet... well. Not even a monarch can be expected to be perfect. Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.", + "armorSpecialSummer2018RogueText": "Жилетка рыбака", + "armorSpecialSummer2018RogueNotes": "Поплавок? Коробки крючков? Запасная леска? Отмычки? Дымовые бомбы? Независимо от того, что вам понадобится для летнего рыбацкого отдыха, все найдется в кармане! Увеличивает восприятие на <%= per %>Ограниченный выпуск лета 2018. ", + "armorSpecialSummer2018WarriorText": "Хвостовые доспехи бойцовской рыбы", + "armorSpecialSummer2018WarriorNotes": "Ослепите зрителей головокружительными яркими кружевами, и скорее ныряйте в воду. Как смел злодей даже напасть на эту красоту? Увеличивает телосложение на <%= con %>. Ограниченный выпуск лета 2018.", + "armorSpecialSummer2018MageText": "Крылатковый панцирь", + "armorSpecialSummer2018MageNotes": "Магия ядов относится к навыкам хитрости. Но броня ярких оттенков, давая ясно понять хищнику: я ядовитый! Увеличивает интеллект на <%= int %>. Ограниченный выпуск лета 2018.", + "armorSpecialSummer2018HealerText": "Роба Амфибии", + "armorSpecialSummer2018HealerNotes": "Эти лазурные облачения приоткрывают тайну, что у вас есть ноги для ходьбы по суше. Ну... Даже монарх не настолько идеальный. Увеличивает телосложение на <%= con %>. Ограниченный выпуск лета 2018.", "armorMystery201402Text": "Облачение посланника", "armorMystery201402Notes": "Сверкающая и крепкая, эта броня снабжена большим количеством карманов для переноски писем. Бонусов не дает. Подарок подписчикам февраля 2014.", "armorMystery201403Text": "Доспехи лесовика", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "Тепло и свет от этой магической брони согреют ваше сердце, но никогда не обожгут кожу! Бонусов не даёт. Подарок подписчикам декабря 2017.", "armorMystery201802Text": "Броня Жука любви", "armorMystery201802Notes": "Эта блестящая броня отражает силу вашего сердца и наполняет ей любого жителя Хабитики вблизи, нуждающегося в ободрении! Бонусов не дает. Подарок подписчикам февраля 2018.", + "armorMystery201806Text": "Хвост притягательного удильщика", + "armorMystery201806Notes": "На этом извилистом хвосте есть светящиеся точки, которые осветят ваш путь в глубинах. Бонусов не даёт. Подарок подписчикам июня 2018.", "armorMystery301404Text": "Стимпанковский костюм", "armorMystery301404Notes": "Чудной и лихой! Бонусов не дает. Подарок подписчикам февраля 3015.", "armorMystery301703Text": "Павлинье платье в стиле стимпанк", @@ -739,9 +743,11 @@ "armorArmoireCobblersCoverallsText": "Костюм Башмачника", "armorArmoireCobblersCoverallsNotes": "Этот прочный комбинезон имеет множество карманов для инструментов, кусков кожи и другие полезных предметов! Увеличивает Восприятие и Силу на <%= attrs %>. Зачарованный сундук: Набор Сапожника (предмет 1 из 3)", "armorArmoireGlassblowersCoverallsText": "Костюм Стеклодува", - "armorArmoireGlassblowersCoverallsNotes": "These coveralls will protect you while you're making masterpieces with hot molten glass. Increases Constitution by <%= con %>. Enchanted Armoire: Glassblower Set (Item 2 of 4).", + "armorArmoireGlassblowersCoverallsNotes": "Этот комбинезон защитит вас, пока вы делаете шедевры из горячего плавленного стекла. Усиливает Телосложение на <%= con %>. Зачарованный сундук: Набор Стеклодува (предмет 2 из 4).", "armorArmoireBluePartyDressText": "Синее вечернее платье", - "armorArmoireBluePartyDressNotes": "You're perceptive, tough, smart, and so fashionable! Increases Perception, Strength, and Constitution by <%= attrs %> each. Enchanted Armoire: Blue Hairbow Set (Item 2 of 2).", + "armorArmoireBluePartyDressNotes": "Вы проницательны, сильны, умны и восхитительны! Увеличивает Восприятие, Силу, и Интеллект на <%= attrs %> каждый. Зачарованный сундук: Набор Синего банта (предмет 2 из 2).", + "armorArmoirePiraticalPrincessGownText": "Платье пиратской принцессы", + "armorArmoirePiraticalPrincessGownNotes": "Это дорогое одеяние имеет множество карманов для скрытых оружий и добычи! Увеличивает восприятие на <%= per %>. Зачарованный сундук: Набор пиратской принцессы (предмет 2 из 4).", "headgear": "Головной убор", "headgearCapitalized": "Головной убор", "headBase0Text": "Нет шлема", @@ -976,14 +982,14 @@ "headSpecialSpring2018MageNotes": "Причудливые лепестки этого шлема даруют вам особое волшебство весны. Улучшает восприятие на <%= per %>. Ограниченный выпуск весны 2018.", "headSpecialSpring2018HealerText": "Гранатовый венец", "headSpecialSpring2018HealerNotes": "Полированные драгоценные камни этого венца повысят вашу ментальную энергию. Увеличивает интеллект на <%= int %>. Ограниченный выпуск весны 2018.", - "headSpecialSummer2018RogueText": "Fishing Sun Hat", - "headSpecialSummer2018RogueNotes": "Provides comfort and protection from the harsh glare of the summer sun over the water. Especially important if you're more accustomed to staying stealthy in the shadows! Increases Perception by <%= per %>. Limited Edition 2018 Summer Gear.", - "headSpecialSummer2018WarriorText": "Betta Fish Barbute", - "headSpecialSummer2018WarriorNotes": "Show everyone you're the alpha betta with this flamboyant helm! Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.", - "headSpecialSummer2018MageText": "Lionfish Crest", - "headSpecialSummer2018MageNotes": "Glare dolorously upon anyone who dares say you look like a “tastyfish”. Increases Perception by <%= per %>. Limited Edition 2018 Summer Gear.", - "headSpecialSummer2018HealerText": "Merfolk Monarch Crown", - "headSpecialSummer2018HealerNotes": "Adorned with aquamarine, this finned diadem marks leadership of folk, fish, and those who are a bit of both! Increases Intelligence by <%= int %>. Limited Edition 2018 Summer Gear.", + "headSpecialSummer2018RogueText": "Шляпа от солнца", + "headSpecialSummer2018RogueNotes": "Обеспечивает комфорт и защиту от неприятного, слепящего, летнего солнца над водой. В особенности помогает, если вы привыкли к скрытному пребыванию в тенях. Улучшает восприятие на <%= per %>. Ограниченный выпуск лета 2018.", + "headSpecialSummer2018WarriorText": "Борода бойовской рыбы", + "headSpecialSummer2018WarriorNotes": "Покажите всем, что вы альфа бойцовской рыбы с этим эпатажным шлемом! Увеличивает силу на <%= str %>. Ограниченный выпуск лета 2018.", + "headSpecialSummer2018MageText": "Гребень Крылатки", + "headSpecialSummer2018MageNotes": "Свирепо бросьте взгляд на всякого, кто посмеет сказать, что вы похожи на «вкусную рыбу». Увеличивает восприятие на <%= per %>. Ограниченный выпуск лета 2018.", + "headSpecialSummer2018HealerText": "Корона Амфибии", + "headSpecialSummer2018HealerNotes": "Эта украшенная аквамарином диадема с плавниками выделяет лидерство народа, рыб, и тех, кто отчасти относится к обеим группам! Увеличивает интеллект на <%= int %>. Ограниченный выпуск лета 2018.", "headSpecialGaymerxText": "Радужный шлем воина.", "headSpecialGaymerxNotes": "В честь Конференции GaymerX этот особый шлем выкрашен в яркие радужные цвета! GaymerX это интернациональная игровая конвенция, поддерживающая ЛГБТ+ сообщества и видео игры. Она открыта каждому!", "headMystery201402Text": "Шлем с крыльями", @@ -1053,7 +1059,9 @@ "headMystery201803Text": "Венец отважной Стрекозы", "headMystery201803Notes": "Хотя его внешний вид довольно декоративен, вы можете задействовать крылья на этом ободке для дополнительного подъема! Не даёт преимуществ. Подарок подписчикам марта 2018.", "headMystery201805Text": "Восхитительный Шлем Павлина", - "headMystery201805Notes": "This helm will make you the proudest and prettiest (possibly also the loudest) bird in town. Confers no benefit. May 2018 Subscriber Item.", + "headMystery201805Notes": "Этот шлем сделает вас самой гордой и симпатичной (и, возможно, самой громкой) птицей в городе. Бонусов не даёт. Подарок подписчикам мая 2018.", + "headMystery201806Text": "Голова притягательного удильщика", + "headMystery201806Notes": "Гипнотизирующий свет, исходящий из верхушки этого шлема переведёт всех обитателей моря на вашу сторону. Мы призываем вас использовать ваши привлекающие световые силы для хороших целей! Бонусов не даёт. Подарок подписчикам июня 2018.", "headMystery301404Text": "Модный цилиндр", "headMystery301404Notes": "Модный цилиндр для самых уважаемых господ! Подарок подписчикам января 3015. Бонусов не дает.", "headMystery301405Text": "Обычный цилиндр", @@ -1143,9 +1151,9 @@ "headArmoireCoachDriversHatText": "Водительская фуражка", "headArmoireCoachDriversHatNotes": "Эта шляпа довольно изящна, хотя не и так, как цилиндр. Постарайтесь не потерять ее, когда будете спешно колесить по стране! Повышает Интеллект на <%= int %>. Зачарованный сундук: набор водителя автобуса (предмет 2 из 3)", "headArmoireCrownOfDiamondsText": "Бриллиантовая корона", - "headArmoireCrownOfDiamondsNotes": "This shining crown isn't just a great hat; it will also sharpen your mind! Increases Intelligence by <%= int %>. Enchanted Armoire: King of Diamonds Set (Item 2 of 4).", + "headArmoireCrownOfDiamondsNotes": "Эта сверкающая корона не просто великолепный головной убор; она также обостряет ваш ум! Повышает Интеллект на <%= int %>. Зачарованный сундук: Алмазный набор (предмет 2 из 4).", "headArmoireFlutteryWigText": "Порхающий парик", - "headArmoireFlutteryWigNotes": "This fine powdered wig has plenty of room for your butterflies to rest if they get tired while doing your bidding. Increases Intelligence, Perception, and Strength by <%= attrs %> each. Enchanted Armoire: Fluttery Frock Set (Item 2 of 4).", + "headArmoireFlutteryWigNotes": "Этот прекрасный напудренный парик имеет много места для отдыха вашим бабочкам, если они устанут от ваших аукционов. Увеличивает интеллект, восприятие, и силу на <%= attrs %> каждый. Зачарованный сундук: Набор порхающего платья (предмет 2 из 4).", "headArmoireBirdsNestText": "Птичье гнездо", "headArmoireBirdsNestNotes": "Если вы начнете ощущать движение и слышать чириканье, ваша новая шляпа, возможно, превратилась в новых друзей. Увеличивает интеллект на <%= int %>. Зачарованный сундук: Независимый предмет.", "headArmoirePaperBagText": "Бумажный пакет", @@ -1153,7 +1161,9 @@ "headArmoireBigWigText": "Большой парик", "headArmoireBigWigNotes": "Некоторые напудренные парики выглядят более авторитетными, но этот только для смеха! Увеличивает силу на <%= str %>. Волшебный сундук: независимый предмет.", "headArmoireGlassblowersHatText": "Шляпка Стеклодува", - "headArmoireGlassblowersHatNotes": "This hat mainly just looks good with your other protective glassblowing gear! Increases Perception by <%= per %>. Enchanted Armoire: Glassblower Set (Item 3 of 4).", + "headArmoireGlassblowersHatNotes": "Этот головной убор выглядит просто замечательно с остальной вашей экипировкой стеклодува! Увеличивает восприятие на <%= per %>. Зачарованный сундук: Набор Стеклодува (предмет 3 из 4).", + "headArmoirePiraticalPrincessHeaddressText": "Головной убор пиратской принцессы", + "headArmoirePiraticalPrincessHeaddressNotes": "Модные пираты известны своими модными головными уборами! Увеличивает восприятие и интеллект на <%= attrs %>. Зачарованный сундук: Набор пиратской принцессы (предмет 1 из 4).", "offhand": "предмет для защитной руки", "offhandCapitalized": "Защита", "shieldBase0Text": "Нет снаряжения для защитной руки", @@ -1304,10 +1314,10 @@ "shieldSpecialSpring2018WarriorNotes": "Этот прочный щит светится великолепием первого луча. Увеличивает телосложение на <%= con %>. Ограниченный выпуск весны 2018.", "shieldSpecialSpring2018HealerText": "Гранатовый щит", "shieldSpecialSpring2018HealerNotes": "Несмотря на свое причудливый внешний вид, этот гранатовый щит довольно прочен!. Увеличивает телосложение на <%= con %>. Ограниченный выпуск весны 2018.", - "shieldSpecialSummer2018WarriorText": "Betta Skull Shield", - "shieldSpecialSummer2018WarriorNotes": "Fashioned from stone, this fearsome skull-styled shield strikes fear into fish foes while rallying your Skeleton pets and mounts. Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.", - "shieldSpecialSummer2018HealerText": "Merfolk Monarch Emblem", - "shieldSpecialSummer2018HealerNotes": "This shield can produce a dome of air for the benefit of land-dwelling visitors to your watery realm. Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.", + "shieldSpecialSummer2018WarriorText": "Костяной щит Бойцовской рыбы", + "shieldSpecialSummer2018WarriorNotes": "Этот устрашающий, сделанный из камня щит в виде черепа вселит страх в рыб-недругов, пока вы будете выгуливать своих питомцев-скелетов и скакунов. Увеличивает телосложение на <%= con %>. Ограниченный выпуск лета 2018.", + "shieldSpecialSummer2018HealerText": "Герб Амфибии", + "shieldSpecialSummer2018HealerNotes": "Этот щит может создать воздушный купол для удобства проживающих на суше посетителей вашего водяного царства. Увеличивает телосложение на <%= con %>. Ограниченный выпуск лета 2018.", "shieldMystery201601Text": "Уничтожитель Решительности", "shieldMystery201601Notes": "Этот клинок может быть использован, чтобы парировать все отвлечения. Бонусов не дает. Подарок подписчикам января 2016.", "shieldMystery201701Text": "Время-Замораживающий Щит", @@ -1361,13 +1371,15 @@ "shieldArmoireWeaversShuttleText": "Ткацкий челнок", "shieldArmoireWeaversShuttleNotes": "Этот инструмент протягивает уточную нить через тканную основу, создавая одежду! Повышает Интеллект на <%= int %> и Восприятие на <%= per %>. Зачарованный сундук: набор Ткача (предмет 3 из 3).", "shieldArmoireShieldOfDiamondsText": "Сапфировый щит", - "shieldArmoireShieldOfDiamondsNotes": "This radiant shield not only provides protection, it empowers you with endurance! Increases Constitution by <%= con %>. Enchanted Armoire: King of Diamonds Set (Item 4 of 4).", + "shieldArmoireShieldOfDiamondsNotes": "Этот круглый щит не только обеспечивает защиту, но и придает вам стойкости! Повышает Телосложение на <%= con %>. Зачарованный сундук: Алмазный набор (Предмет 4 из 4).", "shieldArmoireFlutteryFanText": "Витиеватый веер", "shieldArmoireFlutteryFanNotes": "В жаркий денек ничто не сравнится с узорчатым веером в способности сохранять владельца хладнокровным умом и телом. Повышает Телосложение, Интеллект и Восприятие на <%= attrs %>. Зачарованный сундук: независимый предмет. (предмет 4 из 4).", "shieldArmoireFancyShoeText": "Стильный башмак", "shieldArmoireFancyShoeNotes": "Очень особенный башмак, над которым вы работаете. Он отлично смотрится с вашем величием! Увеличивает Интеллект и Восприятие на <%= attrs %>. Зачарованный сундук: Набор Сапожника (предмет 3 из 3).", "shieldArmoireFancyBlownGlassVaseText": "Стильная ваза Стеклодува", - "shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Increases Intelligence by <%= int %>. Enchanted Armoire: Glassblower Set (Item 4 of 4).", + "shieldArmoireFancyBlownGlassVaseNotes": "Какую красивую вазу вы сделали! Что же вы положите внутрь? Увеличивает интеллект на <%= int %>. Зачарованный сундук: Набор Стеклодува (предмет 4 из 4).", + "shieldArmoirePiraticalSkullShieldText": "Пиратский щит-череп", + "shieldArmoirePiraticalSkullShieldNotes": "Этот зачарованный щит прошепчет вам потайные места вражеских сокровищ- слушайте внимательно! Увеличивает телосложение и интеллект на <%= attrs %>. Зачарованный сундук: Набор пиратской принцессы (предмет 4 из 4).", "back": "Аксессуар на спину", "backCapitalized": "Аксессуар на спину", "backBase0Text": "Нет аксессуаров на спине", @@ -1403,7 +1415,7 @@ "backMystery201804Text": "Беличий хвост", "backMystery201804Notes": "Конечно, он помогает вам балансировать, когда вы прыгаете по веткам, но самое главное - МАКСИМАЛЬНАЯ ПУШИСТОСТЬ. Бонусов не дает. Подарок подписчикам апреля 2018.", "backMystery201805Text": "Восхитительное Оперение Павлина", - "backMystery201805Notes": "This gorgeous feathery tail is perfect for a strut down a lovely garden path! Confers no benefit. May 2018 Subscriber Item.", + "backMystery201805Notes": "Этот роскошный пушистый хвост просто идеален для прогулок по парку! Бонусов не дает. Май 2018 предмет подписчика.", "backSpecialWonderconRedText": "Могущественный плащ", "backSpecialWonderconRedNotes": "Развевается мощно и красиво. Бонусов не дает. Предмет специального фестивального выпуска.", "backSpecialWonderconBlackText": "Тайный плащ", diff --git a/website/common/locales/ru/groups.json b/website/common/locales/ru/groups.json index f044e223dd..ade004f3f2 100644 --- a/website/common/locales/ru/groups.json +++ b/website/common/locales/ru/groups.json @@ -134,10 +134,9 @@ "PMPlaceholderDescription": "Выберите беседу слева", "PMPlaceholderTitleRevoked": "Возможность отправлять сообщения на вашем аккаунте заблокирована", "PMPlaceholderDescriptionRevoked": "Вы не можете отправлять личные сообщения, не достаточно прав в чате. Если есть вопросы или сомнения на этот счет, пожалуйста сообщите нам на почту admin@habitica.com, чтобы решить данный вопрос.", - "PMEnable": "Разрешить отправлять личные сообщения", - "PMDisable": "Заблокировать получение личных сообщений", - "PMEnabledOptPopoverText": "Когда личные сообщения заблокированы, вы все еще можете отправлять свои сообщения, но никто не сможет отправить вам на них ответ.", - "PMDisabledOptPopoverText": "Включите эту функцию, чтобы получить личные сообщения.", + "PMReceive": "Получать личные сообщения", + "PMEnabledOptPopoverText": "Личные сообщения включены. Пользователи могут связаться с вами через ваш профиль.", + "PMDisabledOptPopoverText": "Личные сообщения отключены. Включите эту функцию, чтобы разрешить пользователям связываться с вами через ваш профиль.", "PMDisabledCaptionTitle": "Личные сообщения заблокированы", "PMDisabledCaptionText": "Вы все еще можете отправлять личные сообщения, но никто не может сможет на них вам ответить.", "block": "Блокировать", diff --git a/website/common/locales/ru/limited.json b/website/common/locales/ru/limited.json index b35c814378..dccb00b5a8 100644 --- a/website/common/locales/ru/limited.json +++ b/website/common/locales/ru/limited.json @@ -121,16 +121,16 @@ "spring2018TulipMageSet": "Тюльпанный маг (Маг)", "spring2018GarnetHealerSet": "Гранатово-красный целитель (Целитель)", "spring2018DucklingRogueSet": "Гадкий утёнок (Разбойник)", - "summer2018BettaFishWarriorSet": "Betta Fish Warrior (Warrior)", - "summer2018LionfishMageSet": "Lionfish Mage (Mage)", - "summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)", - "summer2018FisherRogueSet": "Fisher-Rogue (Rogue)", + "summer2018BettaFishWarriorSet": "Воин бойцовской рыбы (Воин)", + "summer2018LionfishMageSet": "Крылатковый Маг (Маг)", + "summer2018MerfolkMonarchSet": "Амфибия (Целитель)", + "summer2018FisherRogueSet": "Рыбак-Разбойник (Разбойник)", "eventAvailability": "Доступно для покупки до <%= date(locale) %>.", "dateEndMarch": "Апрель 30", "dateEndApril": "Апрель 19", "dateEndMay": "Май 31", "dateEndJune": "14 Июня", - "dateEndJuly": "29 июля", + "dateEndJuly": "31 июля", "dateEndAugust": "31 августа", "dateEndOctober": "31 октября", "dateEndNovember": "30 ноября", diff --git a/website/common/locales/ru/quests.json b/website/common/locales/ru/quests.json index 44509544ac..20cd42f540 100644 --- a/website/common/locales/ru/quests.json +++ b/website/common/locales/ru/quests.json @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "Гильдии нельзя приглашать на квесты.", "questNotOwned": "У вас ещё нет этого свитка квеста.", "questNotGoldPurchasable": "Квест \"<%= key %>\" нельзя купить за золото.", + "questNotGemPurchasable": "Квест \"<%= key %>\" нельзя купить за самоцветы.", "questLevelTooHigh": "Вам нужно достигнуть уровня <%= level %>, чтобы начать этот квест.", "questAlreadyUnderway": "Ваша команда уже участвует в квесте. Попробуйте снова, когда закончите текущий квест.", "questAlreadyAccepted": "Вы уже приняли это приглашение на квест.", diff --git a/website/common/locales/ru/subscriber.json b/website/common/locales/ru/subscriber.json index b909e785e7..a0f8e5cf2f 100644 --- a/website/common/locales/ru/subscriber.json +++ b/website/common/locales/ru/subscriber.json @@ -144,6 +144,7 @@ "mysterySet201803": "Набор отважной Стрекозы", "mysterySet201804": "Набор Нарядной белки", "mysterySet201805": "Восхитительный Набор Павлина", + "mysterySet201806": "Притигающий набор удильщика", "mysterySet301404": "Стандартный Стимпанковый набор", "mysterySet301405": "Набор аксессуаров в стиле Стимпанка", "mysterySet301703": "Набор Стимпанк Павлина", diff --git a/website/common/locales/ru/tasks.json b/website/common/locales/ru/tasks.json index ae76ebe907..8a74ca5989 100644 --- a/website/common/locales/ru/tasks.json +++ b/website/common/locales/ru/tasks.json @@ -194,8 +194,6 @@ "weeks": "Недели", "year": "Год", "years": "Лет", - "confirmScoreNotes": "Подкрепите оценку задания комментарием", - "taskScoreNotesTooLong": "Комментарий к заданию должен быть меньше 256 символов", "groupTasksByChallenge": "Сгруппируйте задания по тегу испытания", "taskNotes": "Примечания к задаче", "monthlyRepeatHelpContent": "Это задание будет появляться каждые N месяцев", diff --git a/website/common/locales/sk/backgrounds.json b/website/common/locales/sk/backgrounds.json index d496c972b5..0ef4b354e7 100644 --- a/website/common/locales/sk/backgrounds.json +++ b/website/common/locales/sk/backgrounds.json @@ -359,5 +359,12 @@ "backgroundRowboatText": "Rowboat", "backgroundRowboatNotes": "Sing rounds in a Rowboat.", "backgroundPirateFlagText": "Pirate Flag", - "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag." + "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag.", + "backgrounds072018": "SET 50: Released July 2018", + "backgroundDarkDeepText": "Dark Deep", + "backgroundDarkDeepNotes": "Swim in the Dark Deep among bioluminescent critters.", + "backgroundDilatoryCityText": "City of Dilatory", + "backgroundDilatoryCityNotes": "Meander through the undersea City of Dilatory.", + "backgroundTidePoolText": "Tide Pool", + "backgroundTidePoolNotes": "Observe the ocean life near a Tide Pool." } \ No newline at end of file diff --git a/website/common/locales/sk/content.json b/website/common/locales/sk/content.json index 9510e11b7c..f859ffe47a 100644 --- a/website/common/locales/sk/content.json +++ b/website/common/locales/sk/content.json @@ -195,6 +195,7 @@ "hatchingPotionFairy": "Fairy", "hatchingPotionStarryNight": "Starry Night", "hatchingPotionRainbow": "Rainbow", + "hatchingPotionGlass": "Glass", "hatchingPotionNotes": "Vylej tento elixír na vajíčko a vyliahne sa z neho <%= potText(locale) %> zvieratko.", "premiumPotionAddlNotes": "Nedá sa použiť na vajíčka zvieratiek z výprav.", "foodMeat": "Mäso", diff --git a/website/common/locales/sk/gear.json b/website/common/locales/sk/gear.json index 8a7b7e6d89..d96943f8f4 100644 --- a/website/common/locales/sk/gear.json +++ b/website/common/locales/sk/gear.json @@ -346,6 +346,8 @@ "weaponArmoireCobblersHammerNotes": "This hammer is specially made for leatherwork. It can do a real number on a red Daily in a pinch, though. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 2 of 3).", "weaponArmoireGlassblowersBlowpipeText": "Glassblower's Blowpipe", "weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Increases Strength by <%= str %>. Enchanted Armoire: Glassblower Set (Item 1 of 4).", + "weaponArmoirePoisonedGobletText": "Poisoned Goblet", + "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).", "armor": "zbroj", "armorCapitalized": "Armor", "armorBase0Text": "Prosté ošatenie", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "The heat and light generated by this magic armor will warm your heart but never burn your skin! Confers no benefit. December 2017 Subscriber Item.", "armorMystery201802Text": "Love Bug Armor", "armorMystery201802Notes": "This shiny armor reflects your strength of heart and infuses it into any Habiticans nearby who may need encouragement! Confers no benefit. February 2018 Subscriber Item.", + "armorMystery201806Text": "Alluring Anglerfish Tail", + "armorMystery201806Notes": "This sinuous tail features glowing spots to light your way through the deep. Confers no benefit. June 2018 Subscriber Item.", "armorMystery301404Text": "Steampunk Suit", "armorMystery301404Notes": "Dapper and dashing, wot! Confers no benefit. February 3015 Subscriber Item.", "armorMystery301703Text": "Steampunk Peacock Gown", @@ -742,6 +746,8 @@ "armorArmoireGlassblowersCoverallsNotes": "These coveralls will protect you while you're making masterpieces with hot molten glass. Increases Constitution by <%= con %>. Enchanted Armoire: Glassblower Set (Item 2 of 4).", "armorArmoireBluePartyDressText": "Blue Party Dress", "armorArmoireBluePartyDressNotes": "You're perceptive, tough, smart, and so fashionable! Increases Perception, Strength, and Constitution by <%= attrs %> each. Enchanted Armoire: Blue Hairbow Set (Item 2 of 2).", + "armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown", + "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Increases Perception by <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).", "headgear": "helm", "headgearCapitalized": "Headgear", "headBase0Text": "No Headgear", @@ -1054,6 +1060,8 @@ "headMystery201803Notes": "Although its appearance is quite decorative, you can engage the wings on this circlet for extra lift! Confers no benefit. March 2018 Subscriber Item.", "headMystery201805Text": "Phenomenal Peacock Helm", "headMystery201805Notes": "This helm will make you the proudest and prettiest (possibly also the loudest) bird in town. Confers no benefit. May 2018 Subscriber Item.", + "headMystery201806Text": "Alluring Anglerfish Helm", + "headMystery201806Notes": "The mesmerizing light atop this helm will call all the creatures of the sea to your side. We urge you to use your glowy powers of attraction for good! Confers no benefit. June 2018 Subscriber Item.", "headMystery301404Text": "Fancy Top Hat", "headMystery301404Notes": "A fancy top hat for the finest of gentlefolk! January 3015 Subscriber Item. Confers no benefit.", "headMystery301405Text": "Basic Top Hat", @@ -1154,6 +1162,8 @@ "headArmoireBigWigNotes": "Some powdered wigs are for looking more authoritative, but this one is just for laughs! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.", "headArmoireGlassblowersHatText": "Glassblower's Hat", "headArmoireGlassblowersHatNotes": "This hat mainly just looks good with your other protective glassblowing gear! Increases Perception by <%= per %>. Enchanted Armoire: Glassblower Set (Item 3 of 4).", + "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress", + "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).", "offhand": "off-hand item", "offhandCapitalized": "Off-Hand Item", "shieldBase0Text": "No Off-Hand Equipment", @@ -1368,6 +1378,8 @@ "shieldArmoireFancyShoeNotes": "A very special shoe you're working on. It's fit for royalty! Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 3 of 3).", "shieldArmoireFancyBlownGlassVaseText": "Fancy Blown Glass Vase", "shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Increases Intelligence by <%= int %>. Enchanted Armoire: Glassblower Set (Item 4 of 4).", + "shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield", + "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).", "back": "Back Accessory", "backCapitalized": "Back Accessory", "backBase0Text": "No Back Accessory", diff --git a/website/common/locales/sk/groups.json b/website/common/locales/sk/groups.json index cbf162b3f7..d5b4435743 100644 --- a/website/common/locales/sk/groups.json +++ b/website/common/locales/sk/groups.json @@ -134,12 +134,11 @@ "PMPlaceholderDescription": "Select a conversation on the left", "PMPlaceholderTitleRevoked": "Your chat privileges have been revoked", "PMPlaceholderDescriptionRevoked": "You are not able to send private messages because your chat privileges have been revoked. If you have questions or concerns about this, please email admin@habitica.com to discuss it with the staff.", - "PMEnable": "Enable Private Messages", - "PMDisable": "Disable Private Messages", - "PMEnabledOptPopoverText": "When Private Messages are disabled, you still can send messages, but no one can send them to you.", - "PMDisabledOptPopoverText": "Enable this option to be able to receive messages.", + "PMReceive": "Receive Private Messages", + "PMEnabledOptPopoverText": "Private Messages are enabled. Users can contact you via your profile.", + "PMDisabledOptPopoverText": "Private Messages are disabled. Enable this option to allow users to contact you via your profile.", "PMDisabledCaptionTitle": "Private Messages are disabled", - "PMDisabledCaptionText": "You still can send messages, but no one can send them to you.", + "PMDisabledCaptionText": "You can still send messages, but no one can send them to you.", "block": "Zablokovať", "unblock": "Odblokovať", "pm-reply": "Odpovedať", diff --git a/website/common/locales/sk/limited.json b/website/common/locales/sk/limited.json index 02182d417d..dcfdfb2a0a 100644 --- a/website/common/locales/sk/limited.json +++ b/website/common/locales/sk/limited.json @@ -130,7 +130,7 @@ "dateEndApril": "April 19", "dateEndMay": "May 31", "dateEndJune": "June 14", - "dateEndJuly": "July 29", + "dateEndJuly": "July 31", "dateEndAugust": "August 31", "dateEndOctober": "October 31", "dateEndNovember": "November 30", diff --git a/website/common/locales/sk/quests.json b/website/common/locales/sk/quests.json index a989820ea7..c7a4e8c166 100644 --- a/website/common/locales/sk/quests.json +++ b/website/common/locales/sk/quests.json @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "Cechy nemôžu byť pozvané na výpravu.", "questNotOwned": "Nevlastníš tento zvitok s výpravou.", "questNotGoldPurchasable": "Výprava \"<%= key %>\" sa nedá kúpiť so zlatom.", + "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", "questLevelTooHigh": "Musíš byť level <%= level %>, aby si začal túto výpravu.", "questAlreadyUnderway": "Tvoja družina je práve na výprave. Skús to znovu, keď vaša súčasná výprava skončí.", "questAlreadyAccepted": "Túto pozvánku si už prijal.", diff --git a/website/common/locales/sk/subscriber.json b/website/common/locales/sk/subscriber.json index 4fe8625317..020cce4014 100644 --- a/website/common/locales/sk/subscriber.json +++ b/website/common/locales/sk/subscriber.json @@ -144,6 +144,7 @@ "mysterySet201803": "Daring Dragonfly Set", "mysterySet201804": "Spiffy Squirrel Set", "mysterySet201805": "Phenomenal Peacock Set", + "mysterySet201806": "Alluring Anglerfish Set", "mysterySet301404": "Steampunk Standard Set", "mysterySet301405": "Steampunk Accessories Set", "mysterySet301703": "Peacock Steampunk Set", diff --git a/website/common/locales/sk/tasks.json b/website/common/locales/sk/tasks.json index f536a3c225..82dc3f043a 100644 --- a/website/common/locales/sk/tasks.json +++ b/website/common/locales/sk/tasks.json @@ -194,8 +194,6 @@ "weeks": "Weeks", "year": "Year", "years": "Years", - "confirmScoreNotes": "Confirm task scoring with notes", - "taskScoreNotesTooLong": "Task score notes must be less than 256 characters", "groupTasksByChallenge": "Group tasks by challenge title", "taskNotes": "Task Notes", "monthlyRepeatHelpContent": "This task will be due every X months", diff --git a/website/common/locales/sr/backgrounds.json b/website/common/locales/sr/backgrounds.json index 7680f73f93..4e8a3ad0a8 100644 --- a/website/common/locales/sr/backgrounds.json +++ b/website/common/locales/sr/backgrounds.json @@ -359,5 +359,12 @@ "backgroundRowboatText": "Rowboat", "backgroundRowboatNotes": "Sing rounds in a Rowboat.", "backgroundPirateFlagText": "Pirate Flag", - "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag." + "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag.", + "backgrounds072018": "SET 50: Released July 2018", + "backgroundDarkDeepText": "Dark Deep", + "backgroundDarkDeepNotes": "Swim in the Dark Deep among bioluminescent critters.", + "backgroundDilatoryCityText": "City of Dilatory", + "backgroundDilatoryCityNotes": "Meander through the undersea City of Dilatory.", + "backgroundTidePoolText": "Tide Pool", + "backgroundTidePoolNotes": "Observe the ocean life near a Tide Pool." } \ No newline at end of file diff --git a/website/common/locales/sr/content.json b/website/common/locales/sr/content.json index 6e59be2860..f1966512bf 100644 --- a/website/common/locales/sr/content.json +++ b/website/common/locales/sr/content.json @@ -195,6 +195,7 @@ "hatchingPotionFairy": "Fairy", "hatchingPotionStarryNight": "Starry Night", "hatchingPotionRainbow": "Rainbow", + "hatchingPotionGlass": "Glass", "hatchingPotionNotes": "Pospite ovo po jajetu, i iz njega će se izleći <%= potText(locale) %> ljubimac.", "premiumPotionAddlNotes": "Not usable on quest pet eggs.", "foodMeat": "Meso", diff --git a/website/common/locales/sr/gear.json b/website/common/locales/sr/gear.json index 5b89f383f4..5bb7c09276 100644 --- a/website/common/locales/sr/gear.json +++ b/website/common/locales/sr/gear.json @@ -346,6 +346,8 @@ "weaponArmoireCobblersHammerNotes": "This hammer is specially made for leatherwork. It can do a real number on a red Daily in a pinch, though. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 2 of 3).", "weaponArmoireGlassblowersBlowpipeText": "Glassblower's Blowpipe", "weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Increases Strength by <%= str %>. Enchanted Armoire: Glassblower Set (Item 1 of 4).", + "weaponArmoirePoisonedGobletText": "Poisoned Goblet", + "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).", "armor": "oklop", "armorCapitalized": "Armor", "armorBase0Text": "Obična odeća", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "The heat and light generated by this magic armor will warm your heart but never burn your skin! Confers no benefit. December 2017 Subscriber Item.", "armorMystery201802Text": "Love Bug Armor", "armorMystery201802Notes": "This shiny armor reflects your strength of heart and infuses it into any Habiticans nearby who may need encouragement! Confers no benefit. February 2018 Subscriber Item.", + "armorMystery201806Text": "Alluring Anglerfish Tail", + "armorMystery201806Notes": "This sinuous tail features glowing spots to light your way through the deep. Confers no benefit. June 2018 Subscriber Item.", "armorMystery301404Text": "Stimpank odelo", "armorMystery301404Notes": "Kicoško i zanosno! Ne daje nikakav bonus. Predmet za pretplatnike februar 3015..", "armorMystery301703Text": "Steampunk Peacock Gown", @@ -742,6 +746,8 @@ "armorArmoireGlassblowersCoverallsNotes": "These coveralls will protect you while you're making masterpieces with hot molten glass. Increases Constitution by <%= con %>. Enchanted Armoire: Glassblower Set (Item 2 of 4).", "armorArmoireBluePartyDressText": "Blue Party Dress", "armorArmoireBluePartyDressNotes": "You're perceptive, tough, smart, and so fashionable! Increases Perception, Strength, and Constitution by <%= attrs %> each. Enchanted Armoire: Blue Hairbow Set (Item 2 of 2).", + "armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown", + "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Increases Perception by <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).", "headgear": "helm", "headgearCapitalized": "Headgear", "headBase0Text": "No Headgear", @@ -1054,6 +1060,8 @@ "headMystery201803Notes": "Although its appearance is quite decorative, you can engage the wings on this circlet for extra lift! Confers no benefit. March 2018 Subscriber Item.", "headMystery201805Text": "Phenomenal Peacock Helm", "headMystery201805Notes": "This helm will make you the proudest and prettiest (possibly also the loudest) bird in town. Confers no benefit. May 2018 Subscriber Item.", + "headMystery201806Text": "Alluring Anglerfish Helm", + "headMystery201806Notes": "The mesmerizing light atop this helm will call all the creatures of the sea to your side. We urge you to use your glowy powers of attraction for good! Confers no benefit. June 2018 Subscriber Item.", "headMystery301404Text": "Otmeni cilindar", "headMystery301404Notes": "Otmeni cilindar za pripadnike visokog društva! Predmet za pretplatnike januar 3015. Ne daje nikakav bonus.", "headMystery301405Text": "Jednostavni cilindar", @@ -1154,6 +1162,8 @@ "headArmoireBigWigNotes": "Some powdered wigs are for looking more authoritative, but this one is just for laughs! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.", "headArmoireGlassblowersHatText": "Glassblower's Hat", "headArmoireGlassblowersHatNotes": "This hat mainly just looks good with your other protective glassblowing gear! Increases Perception by <%= per %>. Enchanted Armoire: Glassblower Set (Item 3 of 4).", + "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress", + "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).", "offhand": "off-hand item", "offhandCapitalized": "Off-Hand Item", "shieldBase0Text": "No Off-Hand Equipment", @@ -1368,6 +1378,8 @@ "shieldArmoireFancyShoeNotes": "A very special shoe you're working on. It's fit for royalty! Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 3 of 3).", "shieldArmoireFancyBlownGlassVaseText": "Fancy Blown Glass Vase", "shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Increases Intelligence by <%= int %>. Enchanted Armoire: Glassblower Set (Item 4 of 4).", + "shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield", + "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).", "back": "modni detalj za leđa", "backCapitalized": "Back Accessory", "backBase0Text": "Bez ukrasa na leđima", diff --git a/website/common/locales/sr/groups.json b/website/common/locales/sr/groups.json index f0a7ddc8e9..1486361532 100644 --- a/website/common/locales/sr/groups.json +++ b/website/common/locales/sr/groups.json @@ -134,12 +134,11 @@ "PMPlaceholderDescription": "Select a conversation on the left", "PMPlaceholderTitleRevoked": "Your chat privileges have been revoked", "PMPlaceholderDescriptionRevoked": "You are not able to send private messages because your chat privileges have been revoked. If you have questions or concerns about this, please email admin@habitica.com to discuss it with the staff.", - "PMEnable": "Enable Private Messages", - "PMDisable": "Disable Private Messages", - "PMEnabledOptPopoverText": "When Private Messages are disabled, you still can send messages, but no one can send them to you.", - "PMDisabledOptPopoverText": "Enable this option to be able to receive messages.", + "PMReceive": "Receive Private Messages", + "PMEnabledOptPopoverText": "Private Messages are enabled. Users can contact you via your profile.", + "PMDisabledOptPopoverText": "Private Messages are disabled. Enable this option to allow users to contact you via your profile.", "PMDisabledCaptionTitle": "Private Messages are disabled", - "PMDisabledCaptionText": "You still can send messages, but no one can send them to you.", + "PMDisabledCaptionText": "You can still send messages, but no one can send them to you.", "block": "Blokirati", "unblock": "Odblokirati", "pm-reply": "Odgovor", diff --git a/website/common/locales/sr/limited.json b/website/common/locales/sr/limited.json index 9eaaf24662..76093f36c6 100644 --- a/website/common/locales/sr/limited.json +++ b/website/common/locales/sr/limited.json @@ -130,7 +130,7 @@ "dateEndApril": "April 19", "dateEndMay": "May 31", "dateEndJune": "June 14", - "dateEndJuly": "July 29", + "dateEndJuly": "July 31", "dateEndAugust": "August 31", "dateEndOctober": "October 31", "dateEndNovember": "November 30", diff --git a/website/common/locales/sr/quests.json b/website/common/locales/sr/quests.json index 973e68e397..f443a4e3b9 100644 --- a/website/common/locales/sr/quests.json +++ b/website/common/locales/sr/quests.json @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "Guilds cannot be invited on quests.", "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", + "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", diff --git a/website/common/locales/sr/subscriber.json b/website/common/locales/sr/subscriber.json index 33078110b0..bd7bab8e85 100644 --- a/website/common/locales/sr/subscriber.json +++ b/website/common/locales/sr/subscriber.json @@ -144,6 +144,7 @@ "mysterySet201803": "Daring Dragonfly Set", "mysterySet201804": "Spiffy Squirrel Set", "mysterySet201805": "Phenomenal Peacock Set", + "mysterySet201806": "Alluring Anglerfish Set", "mysterySet301404": "Steampunk Standard Set", "mysterySet301405": "Steampunk Accessories Set", "mysterySet301703": "Peacock Steampunk Set", diff --git a/website/common/locales/sr/tasks.json b/website/common/locales/sr/tasks.json index c42cbed9d5..5f01706b8a 100644 --- a/website/common/locales/sr/tasks.json +++ b/website/common/locales/sr/tasks.json @@ -194,8 +194,6 @@ "weeks": "Weeks", "year": "Year", "years": "Years", - "confirmScoreNotes": "Confirm task scoring with notes", - "taskScoreNotesTooLong": "Task score notes must be less than 256 characters", "groupTasksByChallenge": "Group tasks by challenge title", "taskNotes": "Task Notes", "monthlyRepeatHelpContent": "This task will be due every X months", diff --git a/website/common/locales/sv/backgrounds.json b/website/common/locales/sv/backgrounds.json index e1a5e3cb8e..26d66f6fff 100644 --- a/website/common/locales/sv/backgrounds.json +++ b/website/common/locales/sv/backgrounds.json @@ -359,5 +359,12 @@ "backgroundRowboatText": "Rowboat", "backgroundRowboatNotes": "Sing rounds in a Rowboat.", "backgroundPirateFlagText": "Pirate Flag", - "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag." + "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag.", + "backgrounds072018": "SET 50: Released July 2018", + "backgroundDarkDeepText": "Dark Deep", + "backgroundDarkDeepNotes": "Swim in the Dark Deep among bioluminescent critters.", + "backgroundDilatoryCityText": "City of Dilatory", + "backgroundDilatoryCityNotes": "Meander through the undersea City of Dilatory.", + "backgroundTidePoolText": "Tide Pool", + "backgroundTidePoolNotes": "Observe the ocean life near a Tide Pool." } \ No newline at end of file diff --git a/website/common/locales/sv/content.json b/website/common/locales/sv/content.json index 0f75068d39..ffe196ac0a 100644 --- a/website/common/locales/sv/content.json +++ b/website/common/locales/sv/content.json @@ -195,6 +195,7 @@ "hatchingPotionFairy": "Älva", "hatchingPotionStarryNight": "Stjärnklar Natt", "hatchingPotionRainbow": "Regnbåge", + "hatchingPotionGlass": "Glass", "hatchingPotionNotes": "Häll den här på ett ägg, så kläcks det som ett <%= potText(locale) %> husdjur.", "premiumPotionAddlNotes": "Kan ej användas på ägg till uppdragshusdjur", "foodMeat": "Kött", diff --git a/website/common/locales/sv/gear.json b/website/common/locales/sv/gear.json index edbf7fcff1..11be7a7837 100644 --- a/website/common/locales/sv/gear.json +++ b/website/common/locales/sv/gear.json @@ -346,6 +346,8 @@ "weaponArmoireCobblersHammerNotes": "This hammer is specially made for leatherwork. It can do a real number on a red Daily in a pinch, though. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 2 of 3).", "weaponArmoireGlassblowersBlowpipeText": "Glassblower's Blowpipe", "weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Increases Strength by <%= str %>. Enchanted Armoire: Glassblower Set (Item 1 of 4).", + "weaponArmoirePoisonedGobletText": "Poisoned Goblet", + "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).", "armor": "rustning", "armorCapitalized": "Rustning", "armorBase0Text": "Vanliga kläder", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "The heat and light generated by this magic armor will warm your heart but never burn your skin! Confers no benefit. December 2017 Subscriber Item.", "armorMystery201802Text": "Love Bug Armor", "armorMystery201802Notes": "This shiny armor reflects your strength of heart and infuses it into any Habiticans nearby who may need encouragement! Confers no benefit. February 2018 Subscriber Item.", + "armorMystery201806Text": "Alluring Anglerfish Tail", + "armorMystery201806Notes": "This sinuous tail features glowing spots to light your way through the deep. Confers no benefit. June 2018 Subscriber Item.", "armorMystery301404Text": "Steampunk-dräkt", "armorMystery301404Notes": "Dapper and dashing, wot! Confers no benefit. February 3015 Subscriber Item.", "armorMystery301703Text": "Steampunk Peacock Gown", @@ -742,6 +746,8 @@ "armorArmoireGlassblowersCoverallsNotes": "These coveralls will protect you while you're making masterpieces with hot molten glass. Increases Constitution by <%= con %>. Enchanted Armoire: Glassblower Set (Item 2 of 4).", "armorArmoireBluePartyDressText": "Blue Party Dress", "armorArmoireBluePartyDressNotes": "You're perceptive, tough, smart, and so fashionable! Increases Perception, Strength, and Constitution by <%= attrs %> each. Enchanted Armoire: Blue Hairbow Set (Item 2 of 2).", + "armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown", + "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Increases Perception by <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).", "headgear": "hjälm", "headgearCapitalized": "Huvudbonader", "headBase0Text": "No Headgear", @@ -1054,6 +1060,8 @@ "headMystery201803Notes": "Although its appearance is quite decorative, you can engage the wings on this circlet for extra lift! Confers no benefit. March 2018 Subscriber Item.", "headMystery201805Text": "Phenomenal Peacock Helm", "headMystery201805Notes": "This helm will make you the proudest and prettiest (possibly also the loudest) bird in town. Confers no benefit. May 2018 Subscriber Item.", + "headMystery201806Text": "Alluring Anglerfish Helm", + "headMystery201806Notes": "The mesmerizing light atop this helm will call all the creatures of the sea to your side. We urge you to use your glowy powers of attraction for good! Confers no benefit. June 2018 Subscriber Item.", "headMystery301404Text": "Stilig cylinderhatt", "headMystery301404Notes": "A fancy top hat for the finest of gentlefolk! January 3015 Subscriber Item. Confers no benefit.", "headMystery301405Text": "Vanlig cylinderhatt", @@ -1154,6 +1162,8 @@ "headArmoireBigWigNotes": "Some powdered wigs are for looking more authoritative, but this one is just for laughs! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.", "headArmoireGlassblowersHatText": "Glassblower's Hat", "headArmoireGlassblowersHatNotes": "This hat mainly just looks good with your other protective glassblowing gear! Increases Perception by <%= per %>. Enchanted Armoire: Glassblower Set (Item 3 of 4).", + "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress", + "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).", "offhand": "off-hand item", "offhandCapitalized": "Off-Hand Item", "shieldBase0Text": "No Off-Hand Equipment", @@ -1368,6 +1378,8 @@ "shieldArmoireFancyShoeNotes": "A very special shoe you're working on. It's fit for royalty! Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 3 of 3).", "shieldArmoireFancyBlownGlassVaseText": "Fancy Blown Glass Vase", "shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Increases Intelligence by <%= int %>. Enchanted Armoire: Glassblower Set (Item 4 of 4).", + "shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield", + "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).", "back": "Ryggtillbehör", "backCapitalized": "Back Accessory", "backBase0Text": "Inget ryggtillbehör", diff --git a/website/common/locales/sv/groups.json b/website/common/locales/sv/groups.json index 02b6372271..7930d5311c 100644 --- a/website/common/locales/sv/groups.json +++ b/website/common/locales/sv/groups.json @@ -134,12 +134,11 @@ "PMPlaceholderDescription": "Select a conversation on the left", "PMPlaceholderTitleRevoked": "Your chat privileges have been revoked", "PMPlaceholderDescriptionRevoked": "You are not able to send private messages because your chat privileges have been revoked. If you have questions or concerns about this, please email admin@habitica.com to discuss it with the staff.", - "PMEnable": "Enable Private Messages", - "PMDisable": "Disable Private Messages", - "PMEnabledOptPopoverText": "When Private Messages are disabled, you still can send messages, but no one can send them to you.", - "PMDisabledOptPopoverText": "Enable this option to be able to receive messages.", + "PMReceive": "Receive Private Messages", + "PMEnabledOptPopoverText": "Private Messages are enabled. Users can contact you via your profile.", + "PMDisabledOptPopoverText": "Private Messages are disabled. Enable this option to allow users to contact you via your profile.", "PMDisabledCaptionTitle": "Private Messages are disabled", - "PMDisabledCaptionText": "You still can send messages, but no one can send them to you.", + "PMDisabledCaptionText": "You can still send messages, but no one can send them to you.", "block": "Blockera", "unblock": "Avblockera", "pm-reply": "Skicka ett svar", diff --git a/website/common/locales/sv/limited.json b/website/common/locales/sv/limited.json index 6032b094de..84692cfc82 100644 --- a/website/common/locales/sv/limited.json +++ b/website/common/locales/sv/limited.json @@ -130,7 +130,7 @@ "dateEndApril": "April 19", "dateEndMay": "Maj 31", "dateEndJune": "Juni 14", - "dateEndJuly": "Juli 29", + "dateEndJuly": "July 31", "dateEndAugust": "Augusti 31", "dateEndOctober": "Den 31:a Oktober", "dateEndNovember": "30:e November", diff --git a/website/common/locales/sv/quests.json b/website/common/locales/sv/quests.json index 962ab59f90..5814d51b7e 100644 --- a/website/common/locales/sv/quests.json +++ b/website/common/locales/sv/quests.json @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "Gillen kan inte bli inbjudna till uppdrag.", "questNotOwned": "Du äger inte den där uppdragsskriftrullen.", "questNotGoldPurchasable": "Uppdrag \"<%= key %>\" går inte att köpa med Guld.", + "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", "questLevelTooHigh": "Du måste vara nivå <%= level %> för att påbörja det här uppdraget.", "questAlreadyUnderway": "Ditt sällskap är redan på ett uppdrag. Försök igen när det nuvarande uppdraget har avslutats.", "questAlreadyAccepted": "Du har redan accepterat uppdragsinbjudan.", diff --git a/website/common/locales/sv/subscriber.json b/website/common/locales/sv/subscriber.json index bf4d836b74..bd8e5aebb7 100644 --- a/website/common/locales/sv/subscriber.json +++ b/website/common/locales/sv/subscriber.json @@ -144,6 +144,7 @@ "mysterySet201803": "Daring Dragonfly Set", "mysterySet201804": "Spiffy Squirrel Set", "mysterySet201805": "Phenomenal Peacock Set", + "mysterySet201806": "Alluring Anglerfish Set", "mysterySet301404": "Steampunk Standard Set", "mysterySet301405": "Steampunk Tillbehör Set", "mysterySet301703": "Påfågel Steampunk Set", diff --git a/website/common/locales/sv/tasks.json b/website/common/locales/sv/tasks.json index f794ae756a..21bcdbaad9 100644 --- a/website/common/locales/sv/tasks.json +++ b/website/common/locales/sv/tasks.json @@ -194,8 +194,6 @@ "weeks": "Veckor", "year": "År", "years": "År", - "confirmScoreNotes": "Confirm task scoring with notes", - "taskScoreNotesTooLong": "Task score notes must be less than 256 characters", "groupTasksByChallenge": "Gruppera uppgifter genom utmaningstitel", "taskNotes": "Uppgifts-noteringar", "monthlyRepeatHelpContent": "Denna uppgift förfaller varje X månader", diff --git a/website/common/locales/tr/backgrounds.json b/website/common/locales/tr/backgrounds.json index 9736905baa..6cfda843bb 100644 --- a/website/common/locales/tr/backgrounds.json +++ b/website/common/locales/tr/backgrounds.json @@ -277,12 +277,12 @@ "backgroundSandcastleText": "Kumdan Kale", "backgroundSandcastleNotes": "Bir Kumdan Kaleyi hükmet.", "backgrounds072017": "SET 38: Temmuz 2017'de yayımlandı", - "backgroundGiantSeashellText": "Dev deniz kabuğu", - "backgroundGiantSeashellNotes": "Dev deniz kabuğunda dinlen.", + "backgroundGiantSeashellText": "Dev Deniz Kabuğu", + "backgroundGiantSeashellNotes": "Dev Deniz Kabuğunda dinlen.", "backgroundKelpForestText": "Yosun Ormanı", "backgroundKelpForestNotes": "Bir Yosun Ormanından yüzerek geç.", "backgroundMidnightLakeText": "Geceyarısı Gölü", - "backgroundMidnightLakeNotes": "Geceyarısı gölünün yanında dinlen.", + "backgroundMidnightLakeNotes": "Geceyarısı Gölünün yanında dinlen.", "backgrounds082017": "SET 39: Ağustos 2017'de yayımlandı", "backgroundBackOfGiantBeastText": "Dev bir Canavarın Sırtında", "backgroundBackOfGiantBeastNotes": "Dev bir Canavarın Sırtına bin.", @@ -297,38 +297,38 @@ "backgroundGardenShedNotes": "Bir Bahçe Kulübesinde çalış.", "backgroundPixelistsWorkshopText": "Pikselci'nin Atölyesi", "backgroundPixelistsWorkshopNotes": "Pikselci'nin Atölyesinde şaheserler yarat.", - "backgrounds102017": "SET 41: Ekim 2017'te yayımlandı", + "backgrounds102017": "SET 41: Ekim 2017'de yayımlandı", "backgroundMagicalCandlesText": "Sihirli Mumlar", - "backgroundMagicalCandlesNotes": "sihirli mumların ışığında otur.", + "backgroundMagicalCandlesNotes": "Sihirli Mumların ışığında otur.", "backgroundSpookyHotelText": "Ürkünç Otel", "backgroundSpookyHotelNotes": "Ürkünç Otelin salonundan içeri gizlice gir.", "backgroundTarPitsText": "Tartar Çukuru", - "backgroundTarPitsNotes": "Tartar çukurlarının yanından parmak uçlarında geç. ", - "backgrounds112017": "SET 42: Kasım 2017'te yayımlandı", + "backgroundTarPitsNotes": "Tartar Çukurlarının yanından parmak uçlarında geç. ", + "backgrounds112017": "SET 42: Kasım 2017'de yayımlandı", "backgroundFiberArtsRoomText": "Örgü Odası", - "backgroundFiberArtsRoomNotes": "Örgü odasında iplik üret", + "backgroundFiberArtsRoomNotes": "Örgü odasında iplik üret.", "backgroundMidnightCastleText": "Geceyarısı Kalesi", "backgroundMidnightCastleNotes": "Geceyarısı Kalesinin etrafında gezin.", "backgroundTornadoText": "Hortum", - "backgroundTornadoNotes": "Hortum ile birlikte uç.", + "backgroundTornadoNotes": "Hortumun içinden uç.", "backgrounds122017": "SET 43: Aralık 2017'de yayımlandı", "backgroundCrosscountrySkiTrailText": "Kros Kayağı Pisti", "backgroundCrosscountrySkiTrailNotes": "Glide along a Cross-Country Ski Trail.", "backgroundStarryWinterNightText": "Yıldızlı Kış Gecesi", "backgroundStarryWinterNightNotes": "Admire a Starry Winter Night.", - "backgroundToymakersWorkshopText": "Toymaker's Workshop", + "backgroundToymakersWorkshopText": "Oyuncak Atölyesi", "backgroundToymakersWorkshopNotes": "Bask in the wonder of a Toymaker's Workshop.", - "backgrounds012018": "SET 44: Released January 2018", + "backgrounds012018": "SET 44: Ocak 2018'de yayımlandı", "backgroundAuroraText": "Aurora", "backgroundAuroraNotes": "Bask in the wintry glow of an Aurora.", "backgroundDrivingASleighText": "Sleigh", "backgroundDrivingASleighNotes": "Drive a Sleigh over snow-covered fields.", "backgroundFlyingOverIcySteppesText": "Icy Steppes", "backgroundFlyingOverIcySteppesNotes": "Fly over Icy Steppes.", - "backgrounds022018": "SET 45: Released February 2018", - "backgroundChessboardLandText": "Chessboard Land", - "backgroundChessboardLandNotes": "Play a game in Chessboard Land.", - "backgroundMagicalMuseumText": "Magical Museum", + "backgrounds022018": "SET 45: Şubat 2018'de yayımlandı", + "backgroundChessboardLandText": "Satranç Diyarı", + "backgroundChessboardLandNotes": "Satranç Diyarında Satranç Oyunu Oyna.", + "backgroundMagicalMuseumText": "Sihirli Müze", "backgroundMagicalMuseumNotes": "Tour a Magical Museum.", "backgroundRoseGardenText": "Gül Bahçesi ", "backgroundRoseGardenNotes": "Dally in a fragrant Rose Garden.", @@ -339,25 +339,32 @@ "backgroundElegantBalconyNotes": "Look out over the landscape from an Elegant Balcony.", "backgroundDrivingACoachText": "Driving a Coach", "backgroundDrivingACoachNotes": "Enjoy Driving a Coach past fields of flowers.", - "backgrounds042018": "SET 47: Released April 2018", - "backgroundTulipGardenText": "Tulip Garden", + "backgrounds042018": "SET 47: Nisan 2018'de yayımlandı", + "backgroundTulipGardenText": " Lale Tarlası", "backgroundTulipGardenNotes": "Tiptoe through a Tulip Garden.", "backgroundFlyingOverWildflowerFieldText": "Field of Wildflowers", "backgroundFlyingOverWildflowerFieldNotes": "Soar above a Field of Wildflowers.", - "backgroundFlyingOverAncientForestText": "Ancient Forest", + "backgroundFlyingOverAncientForestText": "Tarihi Orman", "backgroundFlyingOverAncientForestNotes": "Fly over the canopy of an Ancient Forest.", - "backgrounds052018": "SET 48: Released May 2018", + "backgrounds052018": "SET 48: Mayıs 2018'de yayımlandı", "backgroundTerracedRiceFieldText": "Terraced Rice Field", "backgroundTerracedRiceFieldNotes": "Enjoy a Terraced Rice Field in the growing season.", - "backgroundFantasticalShoeStoreText": "Fantastical Shoe Store", + "backgroundFantasticalShoeStoreText": "Fantastik Ayakkabı Mağazası", "backgroundFantasticalShoeStoreNotes": "Look for fun new footwear in the Fantastical Shoe Store.", "backgroundChampionsColosseumText": "Champions' Colosseum", "backgroundChampionsColosseumNotes": "Bask in the glory of the Champions' Colosseum.", - "backgrounds062018": "SET 49: Released June 2018", - "backgroundDocksText": "Docks", + "backgrounds062018": "SET 49: Haziran 2018'de yayımlandı", + "backgroundDocksText": "Liman", "backgroundDocksNotes": "Fish from atop the Docks.", "backgroundRowboatText": "Rowboat", "backgroundRowboatNotes": "Sing rounds in a Rowboat.", - "backgroundPirateFlagText": "Pirate Flag", - "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag." + "backgroundPirateFlagText": "Korsan Bayrağı", + "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag.", + "backgrounds072018": "SET 50: Temmuz 2018'de yayınlandı", + "backgroundDarkDeepText": "Dark Deep", + "backgroundDarkDeepNotes": "Swim in the Dark Deep among bioluminescent critters.", + "backgroundDilatoryCityText": "City of Dilatory", + "backgroundDilatoryCityNotes": "Meander through the undersea City of Dilatory.", + "backgroundTidePoolText": "Gelgit Havuzu", + "backgroundTidePoolNotes": "Gelgit Havuzunda okyanus hayatını incele" } \ No newline at end of file diff --git a/website/common/locales/tr/challenge.json b/website/common/locales/tr/challenge.json index 54c6065418..7ac226e11e 100644 --- a/website/common/locales/tr/challenge.json +++ b/website/common/locales/tr/challenge.json @@ -1,6 +1,6 @@ { "challenge": "Mücadele", - "challengeDetails": "mücadeleler oyuncuların görevler tamamlayarak ödül kazandığı olaylardır. Her mücadelenin bir ana teması vardır.", + "challengeDetails": "Mücadeleler oyuncuların görevler tamamlayarak ödül kazandığı etkinliklerdir. Her mücadelenin bir ana teması vardır.", "brokenChaLink": "Çalışmayan Mücadele Bağlantısı", "brokenTask": "Çalışmayan Mücadele Bağlantısı: bu görev bir mücadelenin parçasıydı ama o mücadeleden silindi. Ne yapmak istersin?", "keepIt": "Sakla", @@ -13,8 +13,8 @@ "challengeWinner": "Takip eden mücadelelerin kazanı", "challenges": "Mücadeleler", "challengesLink": "Mücadeleler", - "challengePrize": "Challenge Prize", - "endDate": "Ends", + "challengePrize": "Mücadele Ödülü", + "endDate": "Bitiş Tarihi", "noChallenges": "Henüz mücadele yok, yeni bir tane oluşturmak için", "toCreate": "sekmesini ziyaret et.", "selectWinner": "Kazananı seç ve mücadeleyi bitir:", @@ -25,16 +25,16 @@ "filter": "Filtrele", "groups": "Gruplar", "noNone": "Hiçbiri", - "category": "Category", + "category": "Kategori", "membership": "Üyelik", "ownership": "Ownership", "participating": "Üye Oldukların", "notParticipating": "Üye Olmadıkların", "either": "Tümü", "createChallenge": "Mücadele Oluştur", - "createChallengeAddTasks": "Mücadele görevleri ekle ", - "createChallengeCloneTasks": "Clone Challenge Tasks", - "addTaskToChallenge": "Görev ekle", + "createChallengeAddTasks": "Mücadele İşleri ekle ", + "createChallengeCloneTasks": "Mücadele İşlerini Kopyala", + "addTaskToChallenge": "İş ekle", "discard": "Vazgeç", "challengeTitle": "Mücadele Başlığı", "challengeTag": "Etiket İsmi", @@ -92,46 +92,46 @@ "userAlreadyInChallenge": "Kullanıcı zaten bu mücadeleye dahil.", "cantOnlyUnlinkChalTask": "Yalnızca bozuk mücadelelerin linkini silebilirsin.", "shortNameTooShort": "Etiket İsmi en az 3 karakterden oluşmalıdır.", - "joinedChallenge": "Bir Mücadele'ye Katıldı", - "joinedChallengeText": "Bu kullanıcı bir Mücadele'ye katılarak kendini sınadı!", - "myChallenges": "Benim mücadelelerim", + "joinedChallenge": "Bir Mücadeleye Katıldı", + "joinedChallengeText": "Bu kullanıcı bir Mücadeleye katılarak kendini sınadı!", + "myChallenges": "Benim Mücadelelerim", "findChallenges": "Mücadeleleri keşfet ", "noChallengeTitle": "You don't have any Challenges.", "challengeDescription1": "Challenges are community events in which players compete and earn prizes by completing a group of related tasks.", "challengeDescription2": "Find recommended Challenges based on your interests, browse Habitica's public Challenges, or create your own Challenges.", - "createdBy": "tarafından oluşturuldu", + "createdBy": "Tarafından Oluşturuldu", "joinChallenge": "Mücadeleye katıl", - "leaveChallenge": "Mucadeleden ayrıl ", - "addTask": "Görev ekle ", + "leaveChallenge": "MÜcadeleden ayrıl ", + "addTask": "İş ekle ", "editChallenge": "Edit Challenge", - "challengeDescription": "Challenge Description", - "selectChallengeWinnersDescription": "Select a winner from the Challenge participants", - "awardWinners": "Award Winner", - "doYouWantedToDeleteChallenge": "Bu mücadeleyi silmek istiyor musun ?", - "deleteChallenge": "Mücadeleyi Sil", + "challengeDescription": "Mücadele Açıklaması", + "selectChallengeWinnersDescription": "Mücadele katılımcıları arasından kazananı seç", + "awardWinners": "Kazananı Ödüllendir", + "doYouWantedToDeleteChallenge": "Bu Mücadeleyi silmek istiyor musun?", + "deleteChallenge": "Mücadeleyi sil", "challengeNamePlaceholder": "Mücadele ismi nedir?", "challengeSummary": "Özet", "challengeSummaryPlaceholder": "Write a short description advertising your Challenge to other Habiticans. What is the main purpose of your Challenge and why should people join it? Try to include useful keywords in the description so that Habiticans can easily find it when they search!", "challengeDescriptionPlaceholder": "Use this section to go into more detail about everything that Challenge participants should know about your Challenge.", - "challengeGuild": "Add to", - "challengeMinimum": "Minimum 1 Gem for public Challenges (helps prevent spam, it really does).", + "challengeGuild": "'a/'e Ekle", + "challengeMinimum": "Umumi mücadeleler için en az 1 Elmas (Spam'in önüne geçmeye yardımcı olur, gerçekten).", "participantsTitle": "Katılımcılar ", "shortName": "Kısa İsim", "shortNamePlaceholder": "What short tag should be used to identify your Challenge?", - "updateChallenge": "mücadeleyi güncelle", + "updateChallenge": "Mücadeleyi güncelle", "haveNoChallenges": "This group has no Challenges", "loadMore": "Devamını Yükle", "exportChallengeCsv": "Export Challenge", "editingChallenge": "Editing Challenge", - "nameRequired": "Name is required", + "nameRequired": "İsim gerekli", "tagTooShort": "Tag name is too short", - "summaryRequired": "Summary is required", - "summaryTooLong": "Summary is too long", - "descriptionRequired": "Description is required", + "summaryRequired": "Özet gerekli", + "summaryTooLong": "Özet çok uzun", + "descriptionRequired": "Tanım gerekli", "locationRequired": "Location of challenge is required ('Add to')", "categoiresRequired": "One or more categories must be selected", - "viewProgressOf": "View Progress Of", - "selectMember": "Select Member", - "confirmKeepChallengeTasks": "Do you want to keep challenge tasks?", - "selectParticipant": "Select a Participant" + "viewProgressOf": "'ın/'in İlerleme Durumunu Görüntüle", + "selectMember": "Katılımcı Seç", + "confirmKeepChallengeTasks": "Mücadele görevlerini saklamak istiyor musun?", + "selectParticipant": "Katılımcı Seç" } \ No newline at end of file diff --git a/website/common/locales/tr/character.json b/website/common/locales/tr/character.json index cbbe7d856b..8e18a383d8 100644 --- a/website/common/locales/tr/character.json +++ b/website/common/locales/tr/character.json @@ -4,7 +4,7 @@ "avatar": "Avatarı Düzenle", "editAvatar": "Avatarını Düzenle", "noDescription": "Bu Habiticalı profil özeti eklememiş.", - "noPhoto": "Bu Habiticalı fotoğraf eklememiş ", + "noPhoto": "Bu Habiticalı fotoğraf eklememiş .", "other": "Diğer", "fullName": "Tam Ad", "displayName": "Görünecek Ad", @@ -94,13 +94,13 @@ "xp": "XP", "health": "Sağlık", "allocateStr": "Güce verilen puanlar:", - "allocateStrPop": "Add a Point to Strength", + "allocateStrPop": "Güce bir Puan ekle", "allocateCon": "Bünyeye verilen puanlar:", - "allocateConPop": "Add a Point to Constitution", + "allocateConPop": "Bünyeye bir Puan ekle", "allocatePer": "Sezgiye verilen puanlar:", - "allocatePerPop": "Add a Point to Perception", + "allocatePerPop": "Sezgiye bir Puan ekle", "allocateInt": "Zekaya verilen puanlar:", - "allocateIntPop": "Add a Point to Intelligence", + "allocateIntPop": "Zekaya bir Puan ekle", "noMoreAllocate": "Now that you've hit level 100, you won't gain any more Stat Points. You can continue leveling up, or start a new adventure at level 1 by using the Orb of Rebirth, now available for free in the Market.", "stats": "İstatistikler", "achievs": "Başarılar", @@ -164,18 +164,18 @@ "respawn": "Yeniden Diril!", "youDied": "Öldün!", "dieText": "Bir Seviyeni, bütün Altınını ve rastgele bir ekipmanını kaybettin. Yüksel, Habiticalı, ve tekrar dene! Kötü alışkanlıklarını frenle, Günlük İşlerin tamamlanmasında uyanık ol ve eğer sendelersen bir Sağlık İksiri ile ölümü kendinden uzak tut!", - "sureReset": "Are you sure? This will reset your character's class and allocated Stat Points (you'll get them all back to re-allocate), and costs 3 Gems.", + "sureReset": "Emin misin? Bu adım karakterinin sınıfını ve dağıtılmış tüm puanlarını silecek (tekrar dağıtmak için puanları geri alacaksın) ve 3 elmasa mal olacak.", "purchaseFor": "<%= cost %> Elmas karşılığında satın alınsın mı?", "purchaseForHourglasses": "Purchase for <%= cost %> Hourglasses?", "notEnoughMana": "Yetersiz mana.", - "invalidTarget": "Onun üzerinde yetenek kullanamazsın. ", + "invalidTarget": "Onun üzerine büyü yapamazsın. ", "youCast": "<%= spell %> uyguladın.", "youCastTarget": "<%= target %> hedefine <%= spell %> uyguladın.", "youCastParty": "Takım için <%= spell %> uyguladın.", "critBonus": "Kritik Vuruş! Bonus:", - "gainedGold": "Altin kazandın ", + "gainedGold": "Altın kazandın ", "gainedMana": "You gained some Mana", - "gainedHealth": "Can kazandın", + "gainedHealth": "Sağlık kazandın", "gainedExperience": "Tecrübe kazandın", "lostGold": "Altın harcadın", "lostMana": "You used some Mana", diff --git a/website/common/locales/tr/communityguidelines.json b/website/common/locales/tr/communityguidelines.json index 7d7c237618..15e4c76355 100644 --- a/website/common/locales/tr/communityguidelines.json +++ b/website/common/locales/tr/communityguidelines.json @@ -81,7 +81,7 @@ "commGuideList09C": "Katılımcı Seviyelerindeki ilerlemenin kalıcı olarak etkisizleştirilmesi (\"dondurulması\")", "commGuideHeadingModerateConsequences": "Orta Çapta İhlal Sonuçlarına Örnekler", "commGuideList10A": "Restricted public and/or private chat privileges", - "commGuideList10A1": "Eylemlerin sohbet ayrıcalıklarının iptali ile sonuçlanırsa, bir Moderatör veya Kadro üyesi sana neden sessizleştirildiğini ve bunun ne kadar sürececeğini bildirmek için mesaj yazdığın foruma yazacaktır ve / veya Özel Mesaj atacaktır. Bu sürenin sonunda, Topluluk Kurallarına uyma konusunda istekli olman koşuluyla sohbet ayrıcalıklarını geri alacaksın.", + "commGuideList10A1": "Eylemlerin sohbet ayrıcalıklarının iptali ile sonuçlanırsa, bir Moderatör veya Kadro üyesi sana neden sessizleştirildiğini ve bunun ne kadar sürececeğini bildirmek için mesaj yazdığın foruma yazacaktır ve / veya Özel Mesaj atacaktır. Bu sürenin sonunda, Topluluk Kurallarına uyma konusunda istekli olman koşuluyla sohbet ayrıcalıklarını geri alırsın.", "commGuideList10C": "Restricted Guild/Challenge creation privileges", "commGuideList10D": "Katılımcı Seviyelerindeki ilerlemenin geçici olarak etkisizleştirilmesi (\"dondurulması\")", "commGuideList10E": "Katılımcı Seviyelerinde düşüş", @@ -117,7 +117,7 @@ "commGuidePara067": "So there you have it, brave Habitican -- the Community Guidelines! Wipe that sweat off of your brow and give yourself some XP for reading it all. If you have any questions or concerns about these Community Guidelines, please reach out to us via the Moderator Contact Form and we will be happy to help clarify things.", "commGuidePara068": "Şimdi rastgele, cesur maceracı! Biraz Günlük İş hakla!", "commGuideHeadingLinks": "Yararlı Bağlantılar", - "commGuideLink01": "Habitica Help: Ask a Question: a Guild for users to ask questions!", + "commGuideLink01": "Habitica Yardım Loncası: Bir Soru Sor: kullanıcıların sorularını sorabilecekleri bir Lonca!", "commGuideLink02": "The Wiki: the biggest collection of information about Habitica.", "commGuideLink03": "GitHub: for bug reports or helping with code!", "commGuideLink04": "The Main Trello: for site feature requests.", diff --git a/website/common/locales/tr/content.json b/website/common/locales/tr/content.json index d5554dd85f..565ec4634a 100644 --- a/website/common/locales/tr/content.json +++ b/website/common/locales/tr/content.json @@ -195,6 +195,7 @@ "hatchingPotionFairy": "Peri", "hatchingPotionStarryNight": "Yıldızlı Gece", "hatchingPotionRainbow": "Gökkuşağı", + "hatchingPotionGlass": "Cam", "hatchingPotionNotes": "Bunu yumurtanın üstüne döktüğünde <%= potText(locale) %> türünde bir hayvan çıkacak.", "premiumPotionAddlNotes": "Görev yumurtalarıyla kullanılamaz.", "foodMeat": "Et", diff --git a/website/common/locales/tr/contrib.json b/website/common/locales/tr/contrib.json index 330aa19313..ae95a5f63b 100644 --- a/website/common/locales/tr/contrib.json +++ b/website/common/locales/tr/contrib.json @@ -1,14 +1,14 @@ { "playerTiersDesc": "Handaki sohbette gördüğün renkli kullanıcı adları o kişinin katkı rütbesini gösterir. Katkı rütbesi olan kullanıcılar habitica'ya sanat, kod veya iletişim ve başka konularda katkıda bulunmuşlardır.", - "tier1": "1. rütbe (arkadaş)", - "tier2": "2.Rütbe (Arkadaş)", - "tier3": "3.Rütbe (Elit)", - "tier4": "4.Rütbe (Elit)", - "tier5": "5.Rütbe (Şampiyon)", - "tier6": "6.Rütbe (Şampiyon)", - "tier7": "7. rütbe (Efsanevi)", + "tier1": "1. Rütbe (Arkadaş)", + "tier2": "2. Rütbe (Arkadaş)", + "tier3": "3. Rütbe (Elit)", + "tier4": "4. Rütbe (Elit)", + "tier5": "5. Rütbe (Şampiyon)", + "tier6": "6. Rütbe (Şampiyon)", + "tier7": "7. Rütbe (Efsanevi)", "tierModerator": "Moderatör (Koruyucu)", - "tierStaff": "Kadro Üyesi(Kahraman)", + "tierStaff": "Kadro Üyesi (Kahraman)", "tierNPC": "NPC", "friend": "Arkadaş", "friendFirst": "Birinci sunumun yayımlandığında, Habitica Katılımcısı rozetini kazanacaksın. Taverna sohbetinde adın, bir katılımcı olduğunu ifade edecek şekilde görüntülenecek. Ayrıca çabalarının karşılığında 3 Elmas alacaksın.", @@ -29,8 +29,8 @@ "heroicText": "Epik kademesi, Habitica kadrosunu ve kadro seviyesindeki katılımcıları kapsar. Bu unvana sahipsen, görevlendirildin (ya da işe alındın!) demektir.", "npcText": "NPC'ler, Habitica Kickstarter kampanyasının en üst kademede destekçileridir. Avatarlarının, sitenin çeşitli özelliklerine göz kulak olduğunu görebilirsin!", "modalContribAchievement": "Katılımcı Başarısı!", - "contribModal": "<%= name %>, sen mükemmel bir insansın! Habiticaya katkda bulunduğun için artık <%= level %>. kademe bir katılımcısın", - "contribLink": "katılımından dolayı kazandığın ödüller!", + "contribModal": "<%= name %>, sen mükemmel bir insansın! Habiticaya katkıda bulunduğun için artık <%= level %>. Kademe bir katılımcısın.", + "contribLink": "Katılımından dolayı kazandığın ödüllere bak!", "contribName": "Katılımcı", "contribText": "Habitica'ya yazılım, tasarım, müzik vb. şekillerde katkıda bulunmuştur. Daha fazlasını ögrenmek için Aspiring Legends Loncasına katıl!", "readMore": "Devamını Oku", diff --git a/website/common/locales/tr/defaulttasks.json b/website/common/locales/tr/defaulttasks.json index 61181653d5..11a41c30c2 100644 --- a/website/common/locales/tr/defaulttasks.json +++ b/website/common/locales/tr/defaulttasks.json @@ -5,7 +5,7 @@ "defaultHabit2Notes": "Örnek Kötü Alışkanlıklar: - Sigara iç - İşlerini ertele", "defaultHabit3Text": "Merdivenleri/Asansörü Kullan (Düzenlemek için kaleme tıkla)", "defaultHabit3Notes": "Örnek İyi veya Kötü Alışkanlıklar: +/- Merdivenleri/Asansörleri Kullan ; +/- Su/Kola İç", - "defaultHabit4Text": "Habitica'ya görev ekle", + "defaultHabit4Text": "Habitica'ya iş ekle", "defaultHabit4Notes": "Bir Alışkanlık, Günlük İş veya Yapılacak İş", "defaultHabit5Text": "Bırakmak istediğin kötü bir alışkanlık olarak düzenlemek için buraya tıkla", "defaultHabit5Notes": "Veya düzenleme ekranından sil", diff --git a/website/common/locales/tr/faq.json b/website/common/locales/tr/faq.json index c33853b36c..1aba570bee 100644 --- a/website/common/locales/tr/faq.json +++ b/website/common/locales/tr/faq.json @@ -17,8 +17,8 @@ "androidFaqAnswer3": "İşlerinin renkleri, onları ne kadar iyi yerine getirdiğine göre renk değiştirir! Her bir yeni iş, sarı renk ile başlar. Günlük İşlerini ve iyi Alışkanlıklarını sıklılkla yerine getirdiğin sürece renkleri maviye döner. Günlük işlerini yapmadıkça veya kötü bir Alışkanlığını sergiledikçe renkleri kırmızı olmaya başlar. Bir iş ne kadar kırmızıysa bununla orantılı olarak daha fazla ödül verir. Ancak, bu bir Günlük İş veya kötü bir Alışkanlık ise can değerin de bir o kadar düşer! Bu durum, seni zor görünen görevlerini yapman için isteklendirir.", "webFaqAnswer3": "İşlerin, onları ne kadar iyi yerine getirdiğine göre renk değiştirir! Yeni işler nötr sarı renk ile başlar. Günlük İşleri veya İyi Alışkanlıkları daha sık yerine getirdiğinde renkleri maviye döner. Bir Günlük İşi atladığında ya da bir Kötü Alışkanlığı sergilediğinde renkleri kırmızı olmaya başlar. Bir iş ne kadar kırmızıysa bununla orantılı olarak daha fazla ödül verir. Ancak, bu bir Günlük İş veya kötü bir Alışkanlık ise hasarı da bir o kadar yüksek olur! Bu durum, seni zor görünen görevlerini yapman için isteklendirir.", "faqQuestion4": "Neden sağlık kaybettim ve nasıl tekrar iyileşeceğim?", - "iosFaqAnswer4": "Can kaybetmene sebep olacak birçok şey var .İlk olarak eğer günlük işlerini tamamlamamış bırakır ve yarın sana sorduğunda hala tamamlamamışsan bu canını azaltır. İkinci olarak eğer kötü bir alışkanlık işaretlersen bu da canını azaltir.Son olarak eger takim arkadaşlarınla savaş görevinde isen takım arkadaşlarının yapmadığı günlük işler sana zarar verebilir \n\nCan kazanmanın ana yolu level atlamaktir. Bu bütün canını yeniler. Ayni zamanda altınlarını kullanarak ödüller listenden sağlık iksiri alabilirsin.Ek olarak 10. Level ve üst leveller de şifaci olmayı seçebilirsin ve şifacının iyileştirme güçlerini öğrenebilirsin .Eğer takımında bir şifaci varsa ondan seni iyileştirmesini istiyebilirsin.", - "androidFaqAnswer4": "Can kaybetmene sebep olacak birçok şey var .İlk olarak eğer günlük işlerini tamamlamamış bırakır ve yarın sana sorduğunda hala tamamlamamışsan bu canını azaltır. İkinci olarak eğer kötü bir alışkanlık işaretlersen bu da canını azaltir.Son olarak eger takim arkadaşlarınla savaş görevinde isen takım arkadaşlarının yapmadığı günlük işler sana zarar verebilir \n\nCan kazanmanın ana yolu level atlamaktir. Bu bütün canını yeniler. Ayni zamanda altınlarını kullanarak ödüller listenden sağlık iksiri alabilirsin.Ek olarak 10. Level ve üst leveller de şifaci olmayı seçebilirsin ve şifacının iyileştirme güçlerini öğrenebilirsin .Eğer takımında bir şifaci varsa ondan seni iyileştirmesini istiyebilirsin.", + "iosFaqAnswer4": "Can kaybetmene sebep olacak birçok şey var. İlk olarak eğer günlük işlerini tamamlamamış bırakır ve yarın sana sorduğunda hala tamamlamamışsan bu canını azaltır. İkinci olarak eğer kötü bir alışkanlık işaretlersen bu da canını azaltir. Son olarak eğer takımın ile bir görevde isen takım arkadaşlarının yapmadığı günlük işler sana zarar verebilir \n\nCan kazanmanın ana yolu level atlamaktir. Bu bütün canını yeniler. Ayni zamanda altınlarını kullanarak ödüller listenden sağlık iksiri alabilirsin. Ek olarak 10. Level ve üst leveller de şifaci olmayı seçebilirsin ve şifacının iyileştirme güçlerini öğrenebilirsin. Eğer takımında bir şifaci varsa ondan seni iyileştirmesini istiyebilirsin.", + "androidFaqAnswer4": "Can kaybetmene sebep olacak birçok şey var. İlk olarak eğer günlük işlerini tamamlamamış bırakır ve yarın sana sorduğunda hala tamamlamamışsan bu canını azaltır. İkinci olarak eğer kötü bir alışkanlık işaretlersen bu da canını azaltir. Son olarak eğer takımın ile bir görevde isen takım arkadaşlarının yapmadığı günlük işler sana zarar verebilir \n\nCan kazanmanın ana yolu level atlamaktir. Bu bütün canını yeniler. Ayni zamanda altınlarını kullanarak ödüller listenden sağlık iksiri alabilirsin. Ek olarak 10. Level ve üst leveller de şifaci olmayı seçebilirsin ve şifacının iyileştirme güçlerini öğrenebilirsin. Eğer takımında bir şifaci varsa ondan seni iyileştirmesini istiyebilirsin.", "webFaqAnswer4": "Hasar almana neden olan birkaç şey vardır. Öncelikle, Günlük İşlerini yerine getirmediğin günün sonunda hasar alırsın. İkinci olarak, kötü bir Alışkanlığa tıklarsan yine hasar alırsın. Sonuncu olarak da, takımınla birlikte bir Canavar Savaşındaysan ve takım arkadaşlarından birisi Günlük İşlerini tamamlamadıysa Canavar hepinize saldıracaktır. \nİyileşmenin ana yolu seviye atlamaktır; bu, tüm Sağlığını geri getirir. İstersen Ödüller kısmından Altın karşılığı Sağlık İksiri de alabilirsin. Ayrıca, 10. seviyede veya üstündeysen Şifacı olmayı seçebilir ve iyileştirme yeteneklerini öğrenebilirsin. Takımında bir Şifacı varsa o da seni iyileştirebilir.", "faqQuestion5": "Habitica'yı arkadaşlarımla nasıl oynarım?", "iosFaqAnswer5": "En iyi yolu onları birlikte bir Takıma davet etmektir! Takımlar birbirini desteklemek için görevlere çıkabilir, canavarlarla savaşabilir ve yeteneklerini kullanabilirler. Mevcut Takımın yoksa Menü > Takım sekmesine gidip \"Yeni Takım Oluştur\"a tıkla. Arkadaşlarını Kullanıcı ID'leri (uygulamada Ayarlar > Hesap Bilgileri, sitede Ayarlar > API altında bulabilecekleri bir dizi sayı ve harf) ile davet etmek için Üyeler listesine, ardından sağ üst köşedeki Davet Et'e dokun. Web sitesinde ayrıca e-posta yoluyla da arkadaşlarını davet edebilirsin. Gelecekteki bir güncellemede bu özelliği uygulamaya da ekleyeceğiz.\n\nWeb sitesinde arkadaşların ve sen açık sohbet odaları olan Loncalara katılabilirsiniz. Loncalar gelecekteki bir güncellemede uygulamaya da eklenecektir!", diff --git a/website/common/locales/tr/front.json b/website/common/locales/tr/front.json index e4ff12a576..5b3a198785 100644 --- a/website/common/locales/tr/front.json +++ b/website/common/locales/tr/front.json @@ -107,7 +107,7 @@ "marketing2Header": "Arkadaşlarla Yarış, İlgi Gruplarına Katıl", "marketing2Lead1Title": "Social Productivity", "marketing2Lead1": "Habitica'yı tek başına oynayabileceğin gibi, ışıklar ortak çalışmaya, mücadele etmeye ve birbirinizi sorumluluk sahibi tutmaya başlayınca gerçekten yanmış sayılır. Tüm kişisel gelişim programlarının en etkili kısmı sosyal yükümlülüktür; yükümlülük ve mücadele için de bir video oyunundan daha iyi bir ortam olabilir mi?", - "marketing2Lead2Title": "Fight Monsters", + "marketing2Lead2Title": "Canavarlarla Savaş", "marketing2Lead2": "Canavarlar İle Savaş. Savaşsız bir Rol Yapma Oyunu olur mu? Takımınla birlikte canavarlar ile savaş. Canavarlar \"süper sorumluluk modu\"dur - aksattığın bir spor salonu günü canavar herkesin canını yakar.", "marketing2Lead3Title": "Challenge Each Other", "marketing2Lead3": "Challenges let you compete with friends and strangers. Whoever does the best at the end of a challenge wins special prizes.", @@ -132,7 +132,7 @@ "oldNews": "Haberler", "newsArchive": "Wikia'da haber arşivi (çok dilli)", "passConfirm": "Şifreyi Onayla", - "setNewPass": "Yeni şifre oluştur. ", + "setNewPass": "Yeni Şifre Oluştur", "passMan": "Eğer bir şifre yöneticisi kullanıyorsan (örn. 1Password) ve giriş yapmakta sorun yaşıyorsan, kullanıcı adını ve şifreni elle girmeyi dene.", "password": "Şifre", "playButton": "Oyna", @@ -292,15 +292,15 @@ "heroIdRequired": "\"heroId\" geçerli bir UUID olmalıdır.", "cannotFulfillReq": "Talebin yerine getirilemedi. Eğer bu hata devam ederse, admin@habitica.com adresine mail gönder.", "modelNotFound": "Bu model bulunmamaktadır.", - "signUpWithSocial": "<%= social %> ile üye ol", + "signUpWithSocial": "<%= social %> ile kayıt ol", "loginWithSocial": "<%= social %> ile giriş yap", "confirmPassword": "Şifreyi Onayla", "usernameLimitations": "Login Name must be 1 to 20 characters long, containing only letters a to z, or numbers 0 to 9, or hyphens, or underscores.", - "usernamePlaceholder": "Örn., HabitRabbit", - "emailPlaceholder": "ör. rabbit@example.com", - "passwordPlaceholder": "ör. ******************", - "confirmPasswordPlaceholder": "Aynı şifre olduğundan emin olun!", - "joinHabitica": "Habitica'ya Katılın", + "usernamePlaceholder": "örn., HabitRabbit", + "emailPlaceholder": "ör., rabbit@example.com", + "passwordPlaceholder": "ör., ******************", + "confirmPasswordPlaceholder": "Aynı şifre olduğundan emin ol!", + "joinHabitica": "Habitica'ya Katıl", "alreadyHaveAccountLogin": "Already have a Habitica account? Log in.", "dontHaveAccountSignup": "Don’t have a Habitica account? Sign up.", "motivateYourself": "Motivate yourself to achieve your goals.", @@ -329,6 +329,6 @@ "signup": "Sign Up", "getStarted": "Get Started", "mobileApps": "Mobil Uygulamalar", - "learnMore": "Fazlasını Öğren", + "learnMore": "Daha Fazlasını Öğren", "useMobileApps": "Habitica is not optimized for a mobile browser. We recommend downloading our mobile apps." } \ No newline at end of file diff --git a/website/common/locales/tr/gear.json b/website/common/locales/tr/gear.json index dba6510277..4a69fef3b0 100644 --- a/website/common/locales/tr/gear.json +++ b/website/common/locales/tr/gear.json @@ -105,7 +105,7 @@ "weaponSpecialRoguishRainbowMessageText": "Düzenbazın Gökkuşağı Mektubu", "weaponSpecialRoguishRainbowMessageNotes": "Bu ışıltılı zarf, Habiticalılardan teşvik mesajları ve teslimatlarını hızlandırmaya yardımcı olacak bir sihir dokunuşu içeriyor! Sezgiyi <%= per %> puan arttırır.", "weaponSpecialSkeletonKeyText": "İskelet Anahtarı", - "weaponSpecialSkeletonKeyNotes": "En Sinsi Hırsızlar bütün kilitleri açabilecek bir anahtar taşır! Bünyeyi <%= con %> puan arttırır.", + "weaponSpecialSkeletonKeyNotes": "En iyi Sinsihırsızlar bütün kilitleri açabilecek bir anahtar taşır! Bünyeyi <%= con %> puan arttırır.", "weaponSpecialNomadsScimitarText": "Göçebenin Palası", "weaponSpecialNomadsScimitarNotes": "Bu Palanın kıvrımlı bıçağı, bir bineğin üstünden İşlere saldırmak için mükemmeldir! Zekayı <%= int %> puan arttırır.", "weaponSpecialFencingFoilText": "Eskrim Folyosu", @@ -274,8 +274,8 @@ "weaponMystery201505Notes": "Bu yeşil ve gümüş yarmak, birçok rakibini bineklerinin üstünden devirdi. Bir fayda sağlamaz. Mayıs 2015 Abone Eşyası.", "weaponMystery201611Text": "Bereketli Boynuz", "weaponMystery201611Notes": "Her türden lezzetli ve sağlıklı yiyecek, bu boynuzun açıklığından sarkmaktadır. Ziyafetin tadını çıkar! Bir fayda sağlamaz. Kasım 2016 Abone Eşyası.", - "weaponMystery201708Text": "Lava Kılıcı", - "weaponMystery201708Notes": "Bu kılıcın ateşli parlaklığı, koyu kırmızı Görevler'in bile hızlı çalışmasını sağlayacaktır! Bir fayda sağlamaz. Ağustos 2017 Abone Eşyası.", + "weaponMystery201708Text": "Lav Kılıcı", + "weaponMystery201708Notes": "Bu kılıcın ateşli parlaklığı, koyu kırmızı İşlerin bile hızlı çalışmasını sağlayacaktır! Bir fayda sağlamaz. Ağustos 2017 Abone Eşyası.", "weaponMystery301404Text": "Steampunk Sopa", "weaponMystery301404Notes": "Şehrin etrafında gezintiye çıkmak için birebir. Mart 3015 Abone Eşyası. Bir fayda sağlamaz.", "weaponArmoireBasicCrossbowText": "Basit Yaylı Tüfek", @@ -346,6 +346,8 @@ "weaponArmoireCobblersHammerNotes": "This hammer is specially made for leatherwork. It can do a real number on a red Daily in a pinch, though. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 2 of 3).", "weaponArmoireGlassblowersBlowpipeText": "Glassblower's Blowpipe", "weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Increases Strength by <%= str %>. Enchanted Armoire: Glassblower Set (Item 1 of 4).", + "weaponArmoirePoisonedGobletText": "Poisoned Goblet", + "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).", "armor": "zırh", "armorCapitalized": "Zırh", "armorBase0Text": "Sade Giysi", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "The heat and light generated by this magic armor will warm your heart but never burn your skin! Confers no benefit. December 2017 Subscriber Item.", "armorMystery201802Text": "Love Bug Armor", "armorMystery201802Notes": "This shiny armor reflects your strength of heart and infuses it into any Habiticans nearby who may need encouragement! Confers no benefit. February 2018 Subscriber Item.", + "armorMystery201806Text": "Alluring Anglerfish Tail", + "armorMystery201806Notes": "This sinuous tail features glowing spots to light your way through the deep. Confers no benefit. June 2018 Subscriber Item.", "armorMystery301404Text": "Steampunk Takım", "armorMystery301404Notes": "Şık ve enerjik, tam gaz! Bir fayda sağlamaz. Şubat 3015 Abone Eşyası.", "armorMystery301703Text": "Steampunk Tavuskuşu Cübbesi", @@ -742,6 +746,8 @@ "armorArmoireGlassblowersCoverallsNotes": "These coveralls will protect you while you're making masterpieces with hot molten glass. Increases Constitution by <%= con %>. Enchanted Armoire: Glassblower Set (Item 2 of 4).", "armorArmoireBluePartyDressText": "Blue Party Dress", "armorArmoireBluePartyDressNotes": "You're perceptive, tough, smart, and so fashionable! Increases Perception, Strength, and Constitution by <%= attrs %> each. Enchanted Armoire: Blue Hairbow Set (Item 2 of 2).", + "armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown", + "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Increases Perception by <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).", "headgear": "başlık", "headgearCapitalized": "Başlık", "headBase0Text": "Başlık Yok", @@ -1054,6 +1060,8 @@ "headMystery201803Notes": "Although its appearance is quite decorative, you can engage the wings on this circlet for extra lift! Confers no benefit. March 2018 Subscriber Item.", "headMystery201805Text": "Phenomenal Peacock Helm", "headMystery201805Notes": "This helm will make you the proudest and prettiest (possibly also the loudest) bird in town. Confers no benefit. May 2018 Subscriber Item.", + "headMystery201806Text": "Alluring Anglerfish Helm", + "headMystery201806Notes": "The mesmerizing light atop this helm will call all the creatures of the sea to your side. We urge you to use your glowy powers of attraction for good! Confers no benefit. June 2018 Subscriber Item.", "headMystery301404Text": "Süslü Silindir Şapka", "headMystery301404Notes": "Centilmenlerin en iyisine layık, süslü bir silindir şapka! Ocak 3015 Abone Eşyası. Bir fayda sağlamaz.", "headMystery301405Text": "Sade Silindir Şapka", @@ -1154,6 +1162,8 @@ "headArmoireBigWigNotes": "Some powdered wigs are for looking more authoritative, but this one is just for laughs! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.", "headArmoireGlassblowersHatText": "Glassblower's Hat", "headArmoireGlassblowersHatNotes": "This hat mainly just looks good with your other protective glassblowing gear! Increases Perception by <%= per %>. Enchanted Armoire: Glassblower Set (Item 3 of 4).", + "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress", + "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).", "offhand": "off-hand item", "offhandCapitalized": "Off-Hand Item", "shieldBase0Text": "No Off-Hand Equipment", @@ -1368,6 +1378,8 @@ "shieldArmoireFancyShoeNotes": "A very special shoe you're working on. It's fit for royalty! Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 3 of 3).", "shieldArmoireFancyBlownGlassVaseText": "Fancy Blown Glass Vase", "shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Increases Intelligence by <%= int %>. Enchanted Armoire: Glassblower Set (Item 4 of 4).", + "shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield", + "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).", "back": "Sırt Aksesuarı", "backCapitalized": "Sırt Aksesuarı", "backBase0Text": "Sırt Aksesuarı Yok", @@ -1505,19 +1517,19 @@ "headAccessoryWolfEarsText": "Kurt Kulakları", "headAccessoryWolfEarsNotes": "Bu kulaklar seni sadık bir kurt gibi gösterecek! Bir fayda sağlamaz.", "headAccessoryBlackHeadbandText": "Siyah Kafabandı", - "headAccessoryBlackHeadbandNotes": "Sade Siyah Kafabandı.Bir fayda sağlamaz.", + "headAccessoryBlackHeadbandNotes": "Sade Siyah Kafabandı. Bir fayda sağlamaz.", "headAccessoryBlueHeadbandText": "Mavi Kafabandı", - "headAccessoryBlueHeadbandNotes": "Sade Mavi Kafabandı.Bir fayda sağlamaz.", + "headAccessoryBlueHeadbandNotes": "Sade Mavi Kafabandı. Bir fayda sağlamaz.", "headAccessoryGreenHeadbandText": "Yeşil Kafabandı", - "headAccessoryGreenHeadbandNotes": "Sade Yeşil Kafabandı.Bir fayda sağlamaz.", + "headAccessoryGreenHeadbandNotes": "Sade Yeşil Kafabandı. Bir fayda sağlamaz.", "headAccessoryPinkHeadbandText": "Pembe Kafabandı", - "headAccessoryPinkHeadbandNotes": "Sade Pembe Kafabandı.Bir fayda sağlamaz.", + "headAccessoryPinkHeadbandNotes": "Sade Pembe Kafabandı. Bir fayda sağlamaz.", "headAccessoryRedHeadbandText": "Kırmızı Kafabandı", - "headAccessoryRedHeadbandNotes": "Sade Kırmızı Kafabandı.Bir fayda sağlamaz.", + "headAccessoryRedHeadbandNotes": "Sade Kırmızı Kafabandı. Bir fayda sağlamaz.", "headAccessoryWhiteHeadbandText": "Beyaz Kafabandı", - "headAccessoryWhiteHeadbandNotes": "Sade Beyaz Kafabandı.Bir fayda sağlamaz.", + "headAccessoryWhiteHeadbandNotes": "Sade Beyaz Kafabandı. Bir fayda sağlamaz.", "headAccessoryYellowHeadbandText": "Sarı Kafabandı", - "headAccessoryYellowHeadbandNotes": "Sade Sarı Kafabandı.Bir fayda sağlamaz.", + "headAccessoryYellowHeadbandNotes": "Sade Sarı Kafabandı. Bir fayda sağlamaz.", "headAccessoryMystery201403Text": "Orman Yürüyüşçüsü Boynuzları", "headAccessoryMystery201403Notes": "Bu boynuzlar yosun ve liken ile parıldar. Bir fayda sağlamaz. Mart 2014 Abone Eşyası.", "headAccessoryMystery201404Text": "Alacakaranlık Kelebeği Anteni", diff --git a/website/common/locales/tr/generic.json b/website/common/locales/tr/generic.json index eb96e2e6df..46e45c2f04 100644 --- a/website/common/locales/tr/generic.json +++ b/website/common/locales/tr/generic.json @@ -28,7 +28,7 @@ "titleTimeTravelers": "Zaman Yolcuları", "titleSeasonalShop": "Mevsimsel Dükkan", "titleSettings": "Ayarlar", - "saveEdits": "Ayarları kaydet ", + "saveEdits": "Ayarları Kaydet ", "showMore": "Daha Fazla Göster", "showLess": "Daha Az Göster", "expandToolbar": "Araç Çubuğunu Genişlet", @@ -86,7 +86,7 @@ "gemsPopoverTitle": "Elmas", "gems": "Elmas", "gemButton": "<%= number %> Elmasın var.", - "needMoreGems": "Elmasa mı ihtiyacin var?", + "needMoreGems": "Elmasa mı ihtiyacın var?", "needMoreGemsInfo": "Purchase Gems now, or become a subscriber to buy Gems with Gold, get monthly mystery items, enjoy increased drop caps and more!", "moreInfo": "Daha Fazla Bilgi", "moreInfoChallengesURL": "http://tr.habitica.wikia.com/wiki/Mücadeleler", @@ -122,7 +122,7 @@ "error": "Hata", "menu": "Menü", "notifications": "Bildirimler", - "noNotifications": "Bildirimlerin yok", + "noNotifications": "Bildirimlerin yok.", "clear": "Temizle", "endTour": "Turu Sonlandır", "audioTheme": "Ses Teması", @@ -133,14 +133,14 @@ "audioTheme_luneFoxTheme": "LuneFox'un Melodisi", "audioTheme_rosstavoTheme": "Rosstavo'nun Melodisi", "audioTheme_dewinTheme": "Dewin'in Teması", - "audioTheme_airuTheme": "Airu'nun Teması", + "audioTheme_airuTheme": "Airu'nun Melodisi", "audioTheme_beatscribeNesTheme": "Beatscribe'ın NES Melodisi", "audioTheme_arashiTheme": "Arashi'nin Melodisi", "audioTheme_triumphTheme": "Triumph Theme", "audioTheme_lunasolTheme": "Lunasol Theme", - "audioTheme_spacePenguinTheme": "SpacePenguin'in Teması", + "audioTheme_spacePenguinTheme": "SpacePenguin'in Melodisi", "audioTheme_maflTheme": "MAFL Theme", - "audioTheme_pizildenTheme": "Pizilden's Theme", + "audioTheme_pizildenTheme": "Pizilden'in Melodisi", "audioTheme_farvoidTheme": "Farvoid Theme", "askQuestion": "Bir Soru Sor", "reportBug": "Bir Hata Bildir", @@ -217,7 +217,7 @@ "getwell3": "Çok iyi hissetmediğine üzgünüm!", "getwellCardAchievementTitle": "Şefkatli Sırdaş", "getwellCardAchievementText": "İyi dilekler her zaman makbuldur. <%= count %> geçmiş olsun kartı gönderdin ya da aldın.", - "goodluckCard": "İyi Şanslar Kart", + "goodluckCard": "İyi Şanslar Kartı", "goodluckCardExplanation": "İkiniz de Şanslı Mektup başarısını kazandınız!", "goodluckCardNotes": "Bir takım üyesine iyi şanslar kartı gönder.", "goodluck0": "Şans hep seni takip etsin!", @@ -268,7 +268,7 @@ "academics": "Academics", "advocacy_causes": "Advocacy + Causes", "entertainment": "Entertainment", - "finance": "Finan", + "finance": "Finans", "health_fitness": "Sağlık + Spor", "hobbies_occupations": "Hobbies + Occupations", "location_based": "Konuma dayalı", diff --git a/website/common/locales/tr/groups.json b/website/common/locales/tr/groups.json index 4f333a5946..38ec0195a4 100644 --- a/website/common/locales/tr/groups.json +++ b/website/common/locales/tr/groups.json @@ -9,7 +9,7 @@ "resumeDamage": "Handan çıkış yap", "helpfulLinks": "Yararlı Bağlantılar", "communityGuidelinesLink": "Topluluk Kuralları", - "lookingForGroup": "Takım (Parti) Aranıyor Gönderileri", + "lookingForGroup": "Takım Aranıyor Gönderileri", "dataDisplayTool": "Veri Gösterim Aracı", "reportProblem": "Bir Hata Bildir", "requestFeature": "Bir Özellik Öner", @@ -39,7 +39,7 @@ "party": "Takım", "createAParty": "Takım Oluştur", "updatedParty": "Takım ayarları güncellendi.", - "errorNotInParty": "Şu anda bir takımda değilsin.", + "errorNotInParty": "Bir Takımda değilsin", "noPartyText": "You are either not in a Party or your Party is taking a while to load. You can either create one and invite friends, or if you want to join an existing Party, have them enter your Unique User ID below and then come back here to look for the invitation:", "LFG": "Yeni takımını tanıtmak veya katılabileceğin bir takım bulmak istiyorsan, <%= linkStart %>Takım Aranıyor Loncasını(Takım gönderilerinin olduğu)<%= linkEnd %> ziyaret et.", "wantExistingParty": "Want to join an existing Party? Go to the <%= linkStart %>Party Wanted Guild<%= linkEnd %> and post this User ID:", @@ -59,7 +59,7 @@ "invitationAcceptedBody": "<%= username %> <%= groupName %> grubuna davetini kabul etti!", "joinNewParty": "Yeni Takıma Katıl", "declineInvitation": "Daveti Reddet", - "partyLoading1": "Your Party is being summoned. Please wait...", + "partyLoading1": "Takımın çağrılıyor. Lütfen bekle...", "partyLoading2": "Your Party is coming in from battle. Please wait...", "partyLoading3": "Takımın bir araya geliyor. Lütfen bekle... ", "partyLoading4": "Your Party is materializing. Please wait...", @@ -84,7 +84,7 @@ "logoUrl": "Logo URL'si", "assignLeader": "Grup Lideri Ata", "members": "Üyeler", - "memberList": "Üye listesi", + "memberList": "Üye Listesi", "partyList": "Order for Party members in header", "banTip": "Gruptan Çıkar", "moreMembers": "daha fazla üye", @@ -134,12 +134,11 @@ "PMPlaceholderDescription": "Select a conversation on the left", "PMPlaceholderTitleRevoked": "Your chat privileges have been revoked", "PMPlaceholderDescriptionRevoked": "You are not able to send private messages because your chat privileges have been revoked. If you have questions or concerns about this, please email admin@habitica.com to discuss it with the staff.", - "PMEnable": "Enable Private Messages", - "PMDisable": "Disable Private Messages", - "PMEnabledOptPopoverText": "When Private Messages are disabled, you still can send messages, but no one can send them to you.", - "PMDisabledOptPopoverText": "Enable this option to be able to receive messages.", + "PMReceive": "Receive Private Messages", + "PMEnabledOptPopoverText": "Private Messages are enabled. Users can contact you via your profile.", + "PMDisabledOptPopoverText": "Private Messages are disabled. Enable this option to allow users to contact you via your profile.", "PMDisabledCaptionTitle": "Private Messages are disabled", - "PMDisabledCaptionText": "You still can send messages, but no one can send them to you.", + "PMDisabledCaptionText": "You can still send messages, but no one can send them to you.", "block": "Engelle", "unblock": "Engeli Kaldır", "pm-reply": "Cevap yaz", @@ -165,7 +164,7 @@ "needsText": "Lütfen bir mesaj yaz.", "needsTextPlaceholder": "Mesajını buraya yaz.", "copyMessageAsToDo": "Mesajı Yapılacaklar listesine kopyala", - "copyAsTodo": "yapılıcak olarak kopyala.", + "copyAsTodo": "Yapılıcak İş olarak kopyala", "messageAddedAsToDo": "Mesaj Yapılacaklar listesine kopyalandı.", "messageWroteIn": "<%= user %>, <%= group %> içerisinde yazdı", "msgPreviewHeading": "Mesaj Önizleme", @@ -185,7 +184,7 @@ "sendInvitations": "Davetiyeleri Gönder", "invitationsSent": "Davetiyeler gönderildi!", "invitationSent": "Davetiye gönderildi!", - "invitedFriend": "Arkadaş Davet Ettin", + "invitedFriend": "Bir Arkadaş Davet Ettin", "invitedFriendText": "Bu kullanıcı macerasına katılan bir arkadaşını (veya arkadaşlarını) davet etti!", "inviteAlertInfo2": "Veya bağlantıyı paylaş (kopyala/yapıştır):", "inviteLimitReached": "Maksimum sayıda eposta davetiyesi zaten gönderdin. Spamlamayı önlemek için bir sınırımız var, ancak daha fazlasını istersen, lütfen <% = techAssistanceEmail%> adresinden bizimle iletişime geç!", @@ -303,7 +302,7 @@ "groupBenefitSixDescription": "Bütün abonelik faydalarına, aylık özel eşyalar ve altın karşılığında elmas satın almak dahil sahip ol! (Eğer zaten aboneysen, eski aboneliğin iptal edilecek ama aylık kumsaati gibi ardışık abonelik faydaların kalacaktır.)", "groupBenefitSevenTitle": "Yeni özel Boynuzlu Tavşan Bineğine sahip ol", "groupBenefitEightTitle": "İşleri yönetmeye yardımcı olmak için Grup Yöneticileri ekle", - "groupBenefitEightDescription": "Grubunun sorumluluklarını paylaşmak ister misin? Liderin görevleri eklemesini, atamasını ve onaylamasına yardımcı olmak için insanları Grup Yöneticilerine yükselt", + "groupBenefitEightDescription": "Grubunun sorumluluklarını paylaşmak ister misin? Liderin görevleri eklemesini, atamasını ve onaylamasına yardımcı olmak için insanları Grup Yöneticilerine yükselt!", "groupBenefitMessageLimitTitle": "Mesaj Limitini Artır", "groupBenefitMessageLimitDescription": "Mesaj limiti 400 mesaj barındıracak kadar artırıldı!", "teamBasedTasks": "Takım İşleri", @@ -348,11 +347,11 @@ "addTaskToGroupPlan": "Oluştur", "leaderMarker": "- Lider", "managerMarker": "- Yönetici", - "joinedGuild": "Loncaya katıldı", + "joinedGuild": "Bir Loncaya katıldı", "joinedGuildText": "Bir Loncaya katılarak Habitica'nın sosyal yanına adım attın!", "badAmountOfGemsToPurchase": "Miktar en az 1 olmalı.", "groupPolicyCannotGetGems": "Bir grubun üyesi olduğun için, grup politikası üyelerinin elmas almasını önler.", - "viewParty": "Takım sayfası", + "viewParty": "Takım Sayfası", "newGuildPlaceholder": "Enter your guild's name.", "guildMembers": "Guild Members", "guildBank": "Guild Bank", @@ -397,7 +396,7 @@ "removeInvite": "Remove Invitation", "removeMember": "Remove Member", "sendMessage": "Mesaj Gönder ", - "removeManager2": "Yönetici Sil", + "removeManager2": "Yöneticiyi Sil", "promoteToLeader": "Lidere Yükselt", "inviteFriendsParty": "Inviting friends to your Party will grant you an exclusive
Quest Scroll to battle the Basi-List together!", "upgradeParty": "Takımı Yükselt", @@ -417,7 +416,7 @@ "updateParty": "Takımı Güncelle", "upgrade": "Yükselt", "selectPartyMember": "Takım Üyesi seç", - "areYouSureDeleteMessage": "Bu mesajı silmek istediğinizden emin misiniz?", + "areYouSureDeleteMessage": "Bu mesajı silmek istediğinden emin misin?", "reverseChat": "Reverse Chat", "invites": "Davetler", "details": "Detaylar", diff --git a/website/common/locales/tr/limited.json b/website/common/locales/tr/limited.json index 9372c9d1aa..38150d06ae 100644 --- a/website/common/locales/tr/limited.json +++ b/website/common/locales/tr/limited.json @@ -89,10 +89,10 @@ "grandMalkinSet": "Görkemli Pisirbaz (Büyücü)", "cleverDogSet": "Akıllı Köpek (Düzenbaz)", "braveMouseSet": "Cesur Fare (Savaşçı)", - "summer2016SharkWarriorSet": "Köpek Balığı Savaşçı'sı (Savaşçı)", - "summer2016DolphinMageSet": "Yunus Büyücü'sü (Büyücü)", - "summer2016SeahorseHealerSet": "Denizatı Şifacı'sı (Şifacı)", - "summer2016EelSet": "Yılan Balığı Düzenbaz'ı (Düzenbaz)", + "summer2016SharkWarriorSet": "Köpek Balığı Savaşçısı (Savaşçı)", + "summer2016DolphinMageSet": "Yunus Büyücüsü (Büyücü)", + "summer2016SeahorseHealerSet": "Denizatı Şifacısı (Şifacı)", + "summer2016EelSet": "Yılan Balığı Düzenbazı (Düzenbaz)", "fall2016SwampThingSet": "Bataklık Canavarı (Savaşçı)", "fall2016WickedSorcererSet": "Hiddetli Büyücü (Büyücü)", "fall2016GorgonHealerSet": "Gorgon Şifacı (Şifacı)", @@ -126,11 +126,11 @@ "summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)", "summer2018FisherRogueSet": "Fisher-Rogue (Rogue)", "eventAvailability": "<%= date(locale) %> tarihine kadar satın alınabilir. ", - "dateEndMarch": "April 30", + "dateEndMarch": "30 Nisan", "dateEndApril": "19 Nisan", "dateEndMay": "May 31", "dateEndJune": "14 Haziran", - "dateEndJuly": "29 Temmuz", + "dateEndJuly": "July 31", "dateEndAugust": "31 Ağustos", "dateEndOctober": "October 31", "dateEndNovember": "November 30", diff --git a/website/common/locales/tr/messages.json b/website/common/locales/tr/messages.json index ee726dd36d..20bd284264 100644 --- a/website/common/locales/tr/messages.json +++ b/website/common/locales/tr/messages.json @@ -22,23 +22,23 @@ "messageTwoHandedEquip": "<%= twoHandedText %> iki elle tutulabilir, bu yüzden <%= offHandedText %> bırakıldı.", "messageTwoHandedUnequip": "<%= twoHandedText %> iki elle tutulabilir, bu yüzden <%= offHandedText %> kuşanıldığı için bırakıldı.", "messageDropFood": "<%= dropText %> buldun!", - "messageDropEgg": "Bir <%= dropText %> yumurtası buldun.", - "messageDropPotion": "<%= dropText %> kuluçka iksiri buldun!", + "messageDropEgg": "Bir <%= dropText %> Yumurtası buldun!", + "messageDropPotion": "Bir <%= dropText %> Kuluçka İksiri buldun! ", "messageDropQuest": "Bir görev buldun!", "messageDropMysteryItem": "Kutuyu açtın ve içinde <%= dropText %> buldun!", "messageFoundQuest": "\"<%= questText %>\" görevinin parşömenini buldun!", "messageAlreadyPurchasedGear": "Bu ekipmanı daha önce satın aldın ama şu anda sahip değilsin. İşler sayfasındaki ödüller sütunundan tekrar satın alabilirsin.", "messageAlreadyOwnGear": "Bu eşyaya zaten sahipsin. Ekipman sayfasına giderek kuşanabilirsin.", - "previousGearNotOwned": "You need to purchase a lower level gear before this one.", + "previousGearNotOwned": "Bu eşyayı almadan önce daha düşük rütbeli eşyaları almalısın.", "messageHealthAlreadyMax": "Zaten maksimum sağlığa sahipsin.", "messageHealthAlreadyMin": "Oh hayır! Sağlığını yitirdin, ve sağlık iksiri satın almak için artık çok geç, ama endişelenmeyin - kendinizi canlandırabilirsiniz!", "armoireEquipment": "<%= image %> Efsunlu Gardıropta nadide bir ekipman buldun: <%= dropText %>! Muhteşem!", - "armoireFood": "<%= image %> You rummage in the Armoire and find <%= dropText %>. What's that doing in here?", + "armoireFood": "<%= image %> Gardırobu karıştırırken <%= dropText %> buldun. Onun orada ne işi var?", "armoireExp": "Efsunlu Gardırop ile güreş tuttun ve Tecrübe kazandın. Oh olsun!", "messageInsufficientGems": "Yeteri kadar elmasın yok!", "messageAuthPasswordMustMatch": ":password ve :confirmPassword uyuşmuyor", "messageAuthCredentialsRequired": ":username, :email, :password, :confirmPassword zorunludur", - "messageAuthUsernameTaken": "Kullanıcı adı zaten kullanılıyor", + "messageAuthUsernameTaken": "Kullanıcı Adı zaten kullanılıyor", "messageAuthEmailTaken": "Mail adresi zaten kullanımda", "messageAuthNoUserFound": "Kullanıcı bulunamadı.", "messageAuthMustBeLoggedIn": "Giriş yapman gerekiyor.", @@ -59,8 +59,8 @@ "messageUserOperationProtected": "`<%= operation %>` korumalı bir yol olduğu için kaydedilemedi.", "messageUserOperationNotFound": "<%= operation %> operasyonu bulunamadı", "messageNotificationNotFound": "Bildirim bulunamadı.", - "messageNotAbleToBuyInBulk": "This item cannot be purchased in quantities above 1.", + "messageNotAbleToBuyInBulk": "Bu eşya 1 taneden fazla alınamaz.", "notificationsRequired": "Bildirm ID'leri gerekmektedir.", - "unallocatedStatsPoints": "You have <%= points %> unallocated Stat Points", - "beginningOfConversation": "This is the beginning of your conversation with <%= userName %>. Remember to be kind, respectful, and follow the Community Guidelines!" + "unallocatedStatsPoints": "<%= points %> adet dağıtılmamış Nitelik Puanın var.", + "beginningOfConversation": "Bu <%= userName %> ile konuşmanın başlangıcıdır.Kibar ve saygılı olmayı ve Topluluk Kurallarına uymayı unutma." } \ No newline at end of file diff --git a/website/common/locales/tr/npc.json b/website/common/locales/tr/npc.json index 13dce55866..97940aa719 100644 --- a/website/common/locales/tr/npc.json +++ b/website/common/locales/tr/npc.json @@ -5,7 +5,7 @@ "welcomeTo": "Hoş Geldin", "welcomeBack": "Hoş Geldin!", "justin": "Justin", - "justinIntroMessage1": "Merhabalar! Burada yeni gibi duruyorsun. Benim adım Justin,ve senin Habitica rehberinim.", + "justinIntroMessage1": "Merhabalar! Burada yeni gibi duruyorsun. Benim adım Justin ve senin Habitica rehberinim.", "justinIntroMessage2": "Başlamak için ilk önce karakterini oluşturmalısın.", "justinIntroMessage3": "Harika! Peki, bu maceraya ne üzerinde çalışmak için katıldın?", "introTour": "Here we are! I've filled out some Tasks for you based on your interests, so you can get started right away. Click a Task to edit or add new Tasks to fit your routine!", @@ -16,14 +16,14 @@ "mattShall": "Bineğinizi getireyim mi <%= name %>? Evcil hayvanlarınızı yeterince beslediğinizde hayvanlarınız binek hayvanlarına dönüşür ve burada listelenirler. Üzerlerine tıklayarak onlara binebilirsiniz!", "mattBochText1": "Ahıra hoş geldin! Ben hayvan terbiyecisi Matt. 3. seviyeden itibaren, yumurta ve iksirleri kullanarak hayvanlar elde edebilirsin. Pazarda bir yumurta açtığında, içinden çıkan hayvan burada belirir! Avatarına eklemek için bir hayvanın resmine tıkla. 3. seviyeden sonra bulacağın yiyeceklerle onları besley ve güçlü bineklere dönüşmelerini seyret.", "welcomeToTavern": "Taverna'ya Hoş Geldin!", - "sleepDescription": "Bir molaya mı ihtiyacın var? istersen Daniel'in hanında dinlenerek Habiticanın şu özelliklerini durdurabilirsin:", - "sleepBullet1": "Yapmadığın günlük işler sana zarar vermez", - "sleepBullet2": "İşlerin serilerini kaybetmeyecek ve renklerinde değişme olmayacak.", - "sleepBullet3": "Savaşta günlük yapmadığın işler yüzünden hasar almazsın.", + "sleepDescription": "Bir molaya mı ihtiyacın var? İstersen Daniel'in hanında dinlenerek Habiticanın şu özelliklerini durdurabilirsin:", + "sleepBullet1": "Yapmadığın Günlük İşler sana zarar vermez", + "sleepBullet2": "İşlerin serilerini kaybetmeyecek ve renklerinde değişme olmayacak.", + "sleepBullet3": "Savaşta günlük yapmadığın işler yüzünden hasar almazsın", "sleepBullet4": "Your boss damage or collection Quest items will stay pending until check-out", "pauseDailies": "Handa dinlen", "unpauseDailies": "Handan çıkış yap", - "staffAndModerators": "Kadro üyeleri ve Moderatörlerle", + "staffAndModerators": "Kadro Üyeleri ve Moderatörler", "communityGuidelinesIntro": "Habitica tries to create a welcoming environment for users of all ages and backgrounds, especially in public spaces like the Tavern. If you have any questions, please consult our Community Guidelines.", "acceptCommunityGuidelines": "Topluluk Kuralları'na uymayı kabul ediyorum", "daniel": "Daniel", @@ -35,7 +35,7 @@ "worldBossDescription": "Dünya Canavarı Detayları", "alexander": "Tüccar Alexander", "welcomeMarket": "Pazara hoş geldin! Zor bulunan yumurtalardan ve iksirlerden al! Fazla mallarını sat! Hizmetlerden faydalan! Tekliflerimizi görmek için içeri buyur.", - "welcomeMarketMobile": "Dükkanıma hoş geldin. Burada bulunması zor olan yumurta ve kuluçka iksirlerini satın alabilirsin.buyur ve fiyatlara bir bak.", + "welcomeMarketMobile": "Pazara hoş geldin! Zor bulunan yumurtalardan ve iksirlerden satın al! Tekliflerimizi görmek için içeri buyur.", "displayItemForGold": "Bir <%= itemType %> satmak istiyor musun?", "displayEggForGold": "Bir <%= itemType %> Yumurtası satmak istiyor musun?", "displayPotionForGold": "Bir <%= itemType %> İksir satmak istiyor musun?", @@ -49,8 +49,8 @@ "hideLocked": "Kilidi açılmamış olanları gizle", "hidePinned": "Hide pinned", "hideMissing": "Hide Missing", - "amountExperience": "<%= amount %>tecrübe", - "amountGold": "<%= amount %>Altın", + "amountExperience": "<%= amount %> Tecrübe", + "amountGold": "<%= amount %> Altın", "namedHatchingPotion": "<%= type %>Kuluçka İksiri", "buyGems": "Elmas Satın Al", "purchaseGems": "Elmas Satın Al", @@ -65,10 +65,10 @@ "shops": "Dükkanlar", "custom": "Custom", "wishlist": "Dilek listesi", - "wrongItemType": "<%= type %>eşya tipi geçerli değil.", + "wrongItemType": "\"<%= type %>\" eşya tipi geçerli değil.", "wrongItemPath": "The item path \"<%= path %>\" is not valid.", - "unpinnedItem": "<%= item %> eşyasını istek listesinden çıkardın.artık ödüller listesinde gözükmeyecek.", - "cannotUnpinArmoirPotion": "Sağlık İksiri ve Efsunlu Gardırop ödüller listesinden çıkarılamaz.", + "unpinnedItem": "<%= item %> eşyasını istek listesinden çıkardın. Artık Ödüller listesinde gözükmeyecek.", + "cannotUnpinArmoirPotion": "Sağlık İksiri ve Efsunlu Gardırop Ödüller listesinden çıkarılamaz.", "purchasedItem": "You bought <%= itemName %>", "ian": "Ian", "ianText": "Görev Dükkanına hoş geldiniz! Burada bulacağınız Görev Parşömenleri sayesinde arkadaşlarınızla toplanıp canavarlarla savaşabilirsiniz. Satıştaki Görev Parşömenlerimizi görmek istiyorsanız sizi şöyle sağ tarafa alayım!", @@ -159,5 +159,5 @@ "welcome4": "Sağlığını (HP) azaltan kötü alışkanlıklarından kaçın, yoksa avatarın ölebilir!", "welcome5": "Şimdi avatarını kişiselleştir ve işlerini ayarla...", "imReady": "Habitica'ya Giriş", - "limitedOffer": "<%= date %>tarihine kadar. " + "limitedOffer": "<%= date %> tarihine kadar satın alınabilir. " } \ No newline at end of file diff --git a/website/common/locales/tr/overview.json b/website/common/locales/tr/overview.json index 8b1610bcbc..09ee0f6e09 100644 --- a/website/common/locales/tr/overview.json +++ b/website/common/locales/tr/overview.json @@ -2,7 +2,7 @@ "needTips": "Nasıl başlayacağın ile ilgili ip uçlarına mı ihtiyacın var? İşte basit bir rehber!", "step1": "Adım 1: İşleri Gir", - "webStep1Text": "Habitica is nothing without real-world goals, so enter a few tasks. You can add more later as you think of them! All tasks can be added by clicking the green \"Create\" button.\n* **Set up [To-Dos](http://habitica.wikia.com/wiki/To-Dos):** Enter tasks you do once or rarely in the To-Dos column, one at a time. You can click on the tasks to edit them and add checklists, due dates, and more!\n* **Set up [Dailies](http://habitica.wikia.com/wiki/Dailies):** Enter activities you need to do daily or on a particular day of the week, month, or year in the Dailies column. Click task to edit when it will be due and/or set a start date. You can also make it due on a repeating basis, for example, every 3 days.\n* **Set up [Habits](http://habitica.wikia.com/wiki/Habits):** Enter habits you want to establish in the Habits column. You can edit the Habit to change it to just a good habit :heavy_plus_sign: or a bad habit :heavy_minus_sign:\n* **Set up [Rewards](http://habitica.wikia.com/wiki/Rewards):** In addition to the in-game Rewards offered, add activities or treats which you want to use as a motivation to the Rewards column. It's important to give yourself a break or allow some indulgence in moderation!\n* If you need inspiration for which tasks to add, you can look at the wiki's pages on [Sample Habits](http://habitica.wikia.com/wiki/Sample_Habits), [Sample Dailies](http://habitica.wikia.com/wiki/Sample_Dailies), [Sample To-Dos](http://habitica.wikia.com/wiki/Sample_To-Dos), and [Sample Rewards](http://habitica.wikia.com/wiki/Sample_Custom_Rewards).", + "webStep1Text": "Habitica gerçek dünya hedefi olmadan hiçbirşeydir, bu nedenle birkaç görev gir. Sonra onlardan düşündükçe daha fazla ekleyebilirsin!* **[Yapılacaklar](http://habitica.wikia.com/wiki/To-Dos) kurmak:**Tek tek, Yapılacaklar sütununa bir kez veya nadiren yaptığın görevleri gir. Onları düzenlemek ve kontrol listeleri, bitirme tarihi, ve daha fazlasını eklemek için göreve tıklayabilirsin!* **[Günlük İşler](http://habitica.wikia.com/wiki/Dailies) kurmak:**Günlük İşler sütununa günlük veya haftanın belirli bir günlerinde yapman gereken faaliyetleri gir. Günlük işleri tekrar üzerine de, Örneğin 3 günde 1, kurabilirsin. Günleri düzenlemek' için göreve tıkla. * **[Alışkanlıklar](http://habitica.wikia.com/wiki/Habits) kurmak:**Alışkanlıklar sütununa kurmak istediğin alışkanlıkları gir. Alışkanlığı sadece iyi bir alışkanlık haline veya kötü bir alışkanlık haline getirmek için düzenleyebilirsin.* **[Ödüller](http://habitica.wikia.com/wiki/Rewards) kurmak:**Sunulan oyun içi Ödüllere ek olarak, Ödüller sütununa bir motivasyon olarak kullanmak istediğin aktiviteleri veya muameleleri ekle. Kendine bir mola vermen veya ılımlılık içinde biraz hoşgörüyle izin vermen önemlidir! Eklenmesi gereken görevler için ilham almaya ihtiyaç duyarsan, [Örnek Alışkanlıklar](http://habitica.wikia.com/wiki/Sample_Habits), [Örnek Günlük İşler](http://habitica.wikia.com/wiki/Sample_Dailies), [Örnek Yapılacaklar](http://habitica.wikia.com/wiki/Sample_To-Dos), ve [Örnek Ödüller](http://habitica.wikia.com/wiki/Sample_Custom_Rewards) wiki sayfalarına bakabilirsiniz.", "step2": "Adım 2: Gerçek Hayatta Bir Şeyler Yaparak Puan Kazan", "webStep2Text": "Şimdi, hedeflerini listeden çözmeye başla! Görevleri Habitica'da kontrol ederek tamamlarken, seviye atlamana yardım edecek [Tecrübe](http://tr.habitica.wikia.com/wiki/Tecr%C3%BCbe_Puan%C4%B1), ve Ödul satın almanı sağlayacak [Altın](http://tr.habitica.wikia.com/wiki/Alt%C4%B1n) kazanacaksın. Kötü alışkanlıklara düşersen veya Günlük İşler'ini kaçırırsan, [Sağlık](http://tr.habitica.wikia.com/wiki/Sa%C4%9Fl%C4%B1k) kaybedersin. Bu şekilde, Habitica Tecrübe ve Sağlık çubukları, hedeflerine doğru ilerlemenin eğlenceli bir göstergesi olarak hizmet eder. Oyundaki karakter ilerlemelerinde gerçek hayatının geliştiğini görmeye başlayacaksın.", diff --git a/website/common/locales/tr/pets.json b/website/common/locales/tr/pets.json index 98956eba62..f51ef662ff 100644 --- a/website/common/locales/tr/pets.json +++ b/website/common/locales/tr/pets.json @@ -44,14 +44,14 @@ "noHatchingPotions": "Hiç kuluçka iksirin yok.", "inventoryText": "Kullanılabilir iksirleri yeşil renkte işaretli görmek için bir yumurtaya tıkla ve yumurtayı açmak için bu işaretli iksirlerden birini seç. Eğer hiçbir iksir işaretli değilse, yumurtayı seçili konumdan çıkarmak için yumurtaya tekrar tıkla ve iksiri üzerinde kullanabileceğin yumurtaları işaretli görmek için önce iksire tıklamayı dene. Eğer işine yaramayacak olanlar varsa, bunları Tüccar Alexander'a satabilirsin.", "haveHatchablePet": "You have a <%= potion %> hatching potion and <%= egg %> egg to hatch this pet! Click the paw print to hatch.", - "quickInventory": "Pratik envanter", + "quickInventory": "Pratik Envanter", "foodText": "yiyecek", "food": "Yiyecek ve Eyerler", - "noFoodAvailable": "Hiç yiyeceğin yok.", - "noSaddlesAvailable": "Hiç eyerin yok.", + "noFoodAvailable": "Hiç Yiyeceğin yok.", + "noSaddlesAvailable": "Hiç Eyerin yok.", "noFood": "Hiç yiyeceğin veya eyerin yok.", "dropsExplanation": "Eğer görevlerini tamamlayarak kazanmayı beklemek istemiyorsan, bu eşyaları Elmas karşılığında daha hızlı edinebilirsin. Eşya kazanma sistemi ile ilgili detaylı bilgi al.", - "dropsExplanationEggs": "Standart yumurtaları veya görev bitirerek görev yumurtalarını bulmayı beklemek istemiyorsan, yumurtaları daha hızlı almak için Elmas harca. Ganimet sistemi hakkında daha fazla bilgi edin.", + "dropsExplanationEggs": "Standart yumurtaları veya Görev bitirerek Görev yumurtalarını bulmayı beklemek istemiyorsan, yumurtaları daha hızlı almak için Elmas harca. Ganimet sistemi hakkında daha fazla bilgi edin.", "premiumPotionNoDropExplanation": "Sihirli Kuluçka İksirleri, Görevlerden kazanılan yumurtaların üzerinde kullanılamaz. Sihirli Kuluçka İksirlerini edinmenin tek yolu buradan satın almaktır, rastgele ödül olarak kazanılamaz.", "beastMasterProgress": "Hayvan Terbiyecisi Aşaması", "stableBeastMasterProgress": "Hayvan Terbiyecisi Aşaması: <%= number %> Evcil Hayvan Bulundu", diff --git a/website/common/locales/tr/quests.json b/website/common/locales/tr/quests.json index 927cb31e5a..dfe069ddce 100644 --- a/website/common/locales/tr/quests.json +++ b/website/common/locales/tr/quests.json @@ -6,7 +6,7 @@ "questsForSale": "Satılık Görevler", "petQuests": "Hayvan ve Binek Görevleri", "unlockableQuests": "Açılabilir Görevler", - "goldQuests": "Altınla Satın Alınabilir Görevler", + "goldQuests": "Altınla Satın Alınabilir Görev Serileri", "questDetails": "Görev Detayları", "questDetailsTitle": "Görev Detayları", "questDescription": "Quests allow players to focus on long-term, in-game goals with the members of their party.", @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "Loncalar göreve davet edilemezler.", "questNotOwned": "Bu görev parşömenine sahip değilsin.", "questNotGoldPurchasable": "\"<%= key %>\" görevi Altın ile satın alınabilen bir görev değildir.", + "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", "questLevelTooHigh": "Bu göreve başlamak için <%= level %>. seviye olmalısın.", "questAlreadyUnderway": "Takımın zaten bir görevde. Şu anki görev sona erdiğinde tekrar dene.", "questAlreadyAccepted": "Görev davetini zaten kabul ettin.", @@ -120,7 +121,7 @@ "questBundles": "İndirimli Görev Paketleri", "buyQuestBundle": "Görev Paketini Al", "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!", - "pendingDamage": "<%= damage %> pending damage", + "pendingDamage": "<%= damage %> beklenen hasar", "pendingDamageLabel": "beklenen hasar", "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Sağlık", "rageAttack": "Öfke Saldırısı:", diff --git a/website/common/locales/tr/questscontent.json b/website/common/locales/tr/questscontent.json index 2d303e5009..99bf2dfbef 100644 --- a/website/common/locales/tr/questscontent.json +++ b/website/common/locales/tr/questscontent.json @@ -182,11 +182,11 @@ "questTRexText": "Dinozorlar Kralı", "questTRexNotes": "Sakïnkal Bozkırları'ndan gelen antik yaratıklar Habitica'nın dört bir yanında fink attığına göre, @Urse yetişkin bir Tyrannosaur'u sahiplenmeye karar verdi. Ne ters gidebilir ki?

Her şey.", "questTRexCompletion": "Vahşi dinozor taşkınlığını sonlandırdı ve dev horozlarla arkadaşlık yapmak için sakinleşti. @Urse dinozora bakıp gülümsedi. \"O kadar da korkunç hayvanlar değiller aslında! Yalnızca biraz disipline ihtiyaçları var. İşte, birkaç Tyrannosaur yumurtası da sen al.\"", - "questTRexBoss": "Etten Tyrannosaur", + "questTRexBoss": "Etten T-Rex", "questTRexUndeadText": "Gün Yüzüne Çıkan Dinozor", "questTRexUndeadNotes": "Sakïnkal Bozkırları'ndan gelen antik dinozorlar Habit Şehri'nde özgürce dolaştığı için, Büyük Müze'den dehşet çığlıkları yayılmaya başladı. @Baconsaur bağırdı: \"Müzedeki Tyrannosaur iskeleti hareketleniyor! Akrabalarının varlığını hissetmiş olmalı!\" Kemikli yaratık ağzını açtı ve sana doğru dişlerini tıkırdattı. Zaten ölü olan bir yaratığı nasıl yenebilirsin ki? Kendini iyileştirmeden önce darbelerini hızla geçirmelisin!", "questTRexUndeadCompletion": "Tyrannosaur'un parlayan gözleri karardı ve bedeni eski kaidesinin üzerine yeniden yerleşti. Herkes rahat bir nefes aldı. \"Şuna bak!\" dedi @Baconsaur. \"Fosilleşmiş yumurtaların bazıları ışıl ışıl ve yepyeni! Belki kuluçkadan sana bir şeyler çıkabilir.\"", - "questTRexUndeadBoss": "İskelet Tyrannosaur", + "questTRexUndeadBoss": "İskelet T-Rex", "questTRexUndeadRageTitle": "Kemik Kaynaması", "questTRexUndeadRageDescription": "Günlük İşlerini aksattıkça bu bar dolar. Dolduğunda, İskelet Tyrannosaur kalan sağlığının %30'luk kısmını iyileştirir!", "questTRexUndeadRageEffect": "`İskelet Tyrannosaur KEMİK KAYNAMASI kullandı!`\n\nCanavar ileri doğru müthiş bir biçimde kükredi ve hasar görmüş kemiklerinden bazıları yerlerine kaynadı!", @@ -365,7 +365,7 @@ "questBeetleText": "KRİTİK PROGRAMLAMA HATASI", "questBeetleNotes": "Habitica'nın alanında bir şeyler yanlış gitti. Demircilerin demirhaneleri söndü ve her yerde garip hatalar belirmeye başladı. Kötülük habercisi bir sarsıntı eşliğinde, sinsi bir düşman toprağın içinden fırladı... bu bir KRİTİK BÖCEK! O toprağı enfekte edip etrafındaki Habiticalıların arızalanmaya başlamasına neden olurken, silahını kuşandın. @starsystemic bağırdı: \"Demircilerin bu Böceği kontrol altına almaları için yardım etmeliyiz!\" Görünüşe bakılırsa bu yazılımcının belasını, önceliğin haline getirmen gerekecek.", "questBeetleCompletion": "Son bir saldırıyla birlikte, KRİTİK BÖCEĞİ yere serdin. @starsystemic ve Demirciler sevinçten dört köşe halde sana koştular. \"Bu böceğin üstesinden geldiğin için sana ne kadar teşekkür etsek az! İşte, bunlar senin.\" Üç tane parıldayan kınkanatlı yumurtasını sana doğru uzattılar. Umalım ki bu küçük böcekler büyüdüklerinde Habitica'ya zarar vermek yerine yardım etsinler.", - "questBeetleBoss": "KRİTİK BÖCEK", + "questBeetleBoss": "KRİTİK PROGRAMLAMA HATASI", "questBeetleDropBeetleEgg": "Kınkanatlı (Yumurta)", "questBeetleUnlockText": "Pazardan Kınkanatlı yumurtaları satın alabilmeni sağlar", "questGroupTaskwoodsTerror": "İşkorusu'nda Terör", @@ -403,17 +403,17 @@ "questDustBunniesCompletion": "Toz tavşanları şey topağına dönüşüyor... toz, tabi ki. Etraf açılırken etrafına bakıyorsun. Bu mekanın temiz olduğunda ne kadar hoş göründüğünü unutmuşsun. Tozun şimdiye kadar bulunmuş olduğu yerde saçılmış altınların olduğunu fark ediyorsun. Yahu, nerede olduklarını merak ediyordun sen de!", "questDustBunniesBoss": "Vahşi Toz Tavşanları", "questGroupMoon": "Ay Savaşı", - "questMoon1Text": "Ay Savaşı, 1nci Kısım: Gizemli Çömelk Kırıklarını Bul", + "questMoon1Text": "Ay Savaşı, 1. Bölüm: Gizemli Çömlek Kırıklarını Bul", "questMoon1Notes": "Habiticalıların dikkati tuhaf bir şey tarafından dağıtılıyor: yeryüzünde eğri taş parçaları görülmeye başlandı. Endişelenen Kahin @Starsystemic seni kulesine çağırır. Der ki. \"Bu taş parçaları hakkında ürkütücü kehanetler görüyorum, toprağı mahvediyor ve çalışkan Habiticalıların oyalanmasına sebep oluyor. Kaynağını bulabilirim, ama önce taş parçalarını incelemem lazım. Bana biraz getirebilir misin?\"", "questMoon1Completion": "@Starststemic getirdiğin taş parçalarını incelemek için kulesine kaybolur. \"Bu düşündüğümüzden de daha karmaşık olabilir,\" der güvenilir asistanı @Beffymaroo. \"Sebebini bulmamız biraz zaman alacak. Her gün uğramaya devam et, daha fazlasını bildiğimizde sana bir sonraki görev parşömenini yollayalım.\"", "questMoon1CollectShards": "Ay Çömleği Kırıkları", "questMoon1DropHeadgear": "Ay Savaşçısı Miğferi (Başlık)", - "questMoon2Text": "Ay Savaşı, 2nci Kısım: Gölgeleyen Stresi Durdur", + "questMoon2Text": "Ay Savaşı, 2. Bölüm: Gölgeleyen Stresi Durdur", "questMoon2Notes": "Taş parçalarını inceledikten sonra Kahin @Starsystemic'in kötü haberleri var. \"Kadim bir canavar Habitica'ya geliyor, ve vatandaşların üzerine korkunç stres çöküyor. Karanlığı insanların kalbinden alıp bu kuleye çekebilirim, burada fiziksel biçime girer, ama tekrar kaçıp yayılmadan önce onu yenmen gerekir.\" Başını aşağı yukarı sallarsın, ve kahin konuşmaya başlar. Dans eden gölgeler odayı kaplar, birbirlerini sıkıştırırlar. Soğuk rüzgar dolanır, karanlık artar. Gölgeleyen Stres yerden yükselir, gerçeğe dönüşen bir kabus gibi güler... ve saldırır!", "questMoon2Completion": "Gölge karanlık bir hava kabarığı olarak patlar, odayı aydınlatarak ve kalplerinizi hafifleterek yokolur. Habitica'yı örten stres düşürülmüştür, ve hepiniz derin bir nefes alabilirsiniz. Yine de, gökyüzüne bakarken, bunun daha bitmediğini hissedersin: canavar birinin gölgesini yok ettiğini biliyor. \"Önümüzdeki haftaları dikkatle izliyor olacağız,\" der @Starsystemic, \"ve ortaya çıktığında sana bir görev parşömeni yollarım.\"", "questMoon2Boss": "Gölgeleyen Stres", "questMoon2DropArmor": "Ay Savaşçısı Zırhı (Zırh)", - "questMoon3Text": "Ay Savaşı, 3ncü Kısım: Azman Ay", + "questMoon3Text": "Ay Savaşı, 3. Bölüm: Azman Ay", "questMoon3Notes": "@Starsystemic'in acil parşömeni gece yarısında sana ulaşır ve sen kulesine koşarsın. \"Canavar bizim dünyamıza geçmek için dolunayı kullanmaya çalışıyor,\" der. \"Eğer başarılı olursa, yaratacağı stresin şok dalgası baş edilemez olur!\"

Canavarın kendini canlandırmak için gerçekten de ayı kullandığını umutsuzca görürsün. Kayalı yüzeyinde parlayan bir göz açılır, açık sivri dişli ağzından uzun bir dil çıkar. Tamamen belirmesine katiyetle izin vermeyeceksin!", "questMoon3Completion": "Beliren canavar gölgeye dönüşür, ve tehlike geçerek ay gümüş rengi olur. Ejderhalar tekrar neşeyle ötmeye başlar, ve yıldızlar sakinleştirici ışıkla parıldar. Kahin @Starsystemic eğilir ve bir aytaşı parçasını eline alır. Elinde gümüş gibi parıldar, ve sonra muhteşem kristal bir tırpana dönüşür. ", "questMoon3Boss": "Azman Ay", @@ -430,7 +430,7 @@ "questTriceratopsBoss": "Tepinen Üç Boynuzlu Dinozor", "questTriceratopsDropTriceratopsEgg": "Üç Boynuzlu Dinozor (Yumurta)", "questTriceratopsUnlockText": "Pazardan Üç Boynuzlu Dinozor yumurtaları satın alabilmeni sağlar", - "questGroupStoikalmCalamity": "Sakïnkal Afeti", + "questGroupStoikalmCalamity": "Sakïnkal Felaketi", "questStoikalmCalamity1Text": "Sakïnkal Felaketi, 1. Bölüm: Topraktan Düşmanlar", "questStoikalmCalamity1Notes": "@Kiwibot'dan kısa bir mektup gelir, ve donmuş parşömen parmaklarının ucunu da kalbini de ürpertir. \"Sakïnkal Bozkırları'na ziyaret -- canavarlar yeryüzünden fışkırıyor -- yardım yollayın!\" Takımını toplayıp kuzeye doğru yola çıkarsın, ancak dağlardan aşağıya iner inmez ayaklarınızın altındaki kar patlar ve korkunç bir şekilde sırıtan kafatasları sizi çevreleyerek kuşatır!

Aniden, bir mızrak yanınızdan uçar, ve gizlice size doğru yanaşmaya çalışan bir kafatasına saplanır. İnce dokunmuş zırhlı, uzun boylu bir kadın mastodon üzerinde kargaşaya dörtnala koşar ve örgülü uzun saçı sallanarak mızrağını ezilmiş canavardan acımasızca çıkarır. Bu düşmanları Mamut Binicileri'nin lideri olan Lady Glaciate'nin yardımıyla savaşmanın zamanı geldi!", "questStoikalmCalamity1Completion": "Kafataslarına son bir darbe indirirsin, ve bir sihir bulutuna dağılırlar. \"Lanetli sürü gitmiş olabilir,\" der Lady Glaciate, \" ama daha büyük sorunlarımız var. Beni takip et.\" Soğuk havadan korunman için sana bir pelerin atar, ve sen de peşinden gidersin.", @@ -464,14 +464,14 @@ "questPeacockCompletion": "Ani kararlılığın Çekişmeli Tavuskuşu'nu şaşırtır. Odaklanmış zihnin tarafından alt edilir, ve kafaları, gördüğün en ihtişamlı yaratığa dönüşerek tekrar tek bir kafaya birleşir. \"Teşekkür ederim,\" der tavuskuşu. \"O kadar uzun zamandır kendimi farklı yönlere çekiştiriyorum ki, gerçekten ne istediğimi göremez hale gelmişim. Lütfen bu yumurtaları minnettarlığımın bir işareti olarak kabul edin.\"", "questPeacockBoss": "Çekişmeli Tavuskuşu", "questPeacockDropPeacockEgg": "Tavuskuşu (Yumurta)", - "questPeacockUnlockText": "Pazardan Yavuskuşu yumurtaları satın alabilmeni sağlar", + "questPeacockUnlockText": "Pazardan Tavuskuşu yumurtaları satın alabilmeni sağlar", "questButterflyText": "Güle Güle Kelebek", "questButterflyNotes": "Bahçıvan arkadaşın @Megan san bir davetiye gönderdi: \"Bu sıcak günler, Habitica'nın Taskan kırsalında bulunan kelebek bahçesini ziyaret etmek için mükemmel bir zamandır. Gel kelebeklerin göç etmesini gör!\" Ancak, geldiğinde, bahçenin karmakarışık olduğunu - biraz kavrulmuş çim ve kurutulmuş yabani otlarla dolu olduğunu görürsün. O kadar sıcak ki Habiticalılar çiçeklere su vermeye çıkmıyor ve koyu kırmızı Günlük İşler orayı kuru, güneşte pişmiş, yangın tehlikesine olan bir yere dönüştürdü. Orada sadece bir tane kelebek var, ve onunla ilgili garip bir şey var ...

\"Aman! Bu, Alevli Kelebek için mükemmel bir kuluçka zemini,\" diye bağırır @Leephon.

\"Eğer onu yakalamazsak her şeyi mahvedicek!\" der @Eevachu.

Güle güle deme zamanı Kelebek!", "questButterflyCompletion": "Yanan bir savaşın ardından Alevli Kelebek yakalanır. \"Bu kundakçıyı yakalayarak büyük iş çıkardın,\" der @Megan rahatlayarak. \"Yine de, en korkunç kelebeği bile kınamak zor. Bu Kelebeğı güvenli bir yere bırakalım ... çöl gibi.\"

Diğer bahçivanlardan biri @Beffymaroo, yanmış ama gülümseyerek gelir. \"Bulduğumuz bu kozaları büyütmemize yardımcı olur musun? Belki önümüzdeki yıl onlar için daha yeşil bir bahçemiz olur.\"", "questButterflyBoss": "Alevli Kelebek", "questButterflyDropButterflyEgg": "Tırtıl (Yumurta)", "questButterflyUnlockText": "Pazardan Tırtıl yumurtası almana imkan sağlar", - "questGroupMayhemMistiflying": "Gizemuçanda Kargaşa", + "questGroupMayhemMistiflying": "Gizemuçan'da Kargaşa", "questMayhemMistiflying1Text": "Gizemuçan'da Kargaşa, 1. Kısım: Gizemuçan Korkunç bir Dert Deneyimler", "questMayhemMistiflying1Notes": "Yerel kahinlerin keyifli hava tahmini yapmasına rağmen, öğleden sonra son derece rüzgarlıdır, bu yüzden gürleyen havadan kaçmak için arkadaşın @Kiwibot'u evine minnetle takip edersin.

İkiniz de, Nisan Şakacısını mutfak masasında uzanarak bulacağınızı tahmin etmezsiniz.

\"Ah, merhaba,\" der. \"Sizi burada görmek ne kadar güzel. Lütfen size bu leziz çaydan biraz ikram edeyim.\"

\"O...\" diye başlar @Kiwibot. \"O BENİM--\"

\"Evet evet tabi ki,\" der Nisan Şakacısı, ve kendine birkaç bisküvi daha alır. \"Bir içeri kaçıp bu kasırga toplanması kafataslarından biraz kaçmayı düşünmüştüm.\" Çay fincanından bir yudum alır. \"Tesadüfen, Gizemuçan şehri saldırı altında.\"

Dehşete düşerek, sen ve arkadaşların Ahırlara koşar ve en hızlı kanatlı bineklerinizi eyerlersiniz. Süzülen şehire doğru yükseldikçe, bir grup gürültücü, uçan kafataslarının şehri kuşattığını görürsünüz...ve birkaçı dikkatlerini size doğru çevirir!", "questMayhemMistiflying1Completion": "Nihai kafatası da gökyüzünden düşer, parlayan bir gökkuşağı cübbesi ağzındadır, ancak rüzgar yumuşamış değildir. Burada başka bir şey dönüyor. Ve bu kaytaran Nisan Şakacısı nerede? Cübbeyi eline alıp şehre doğru fırlarsın.", @@ -528,7 +528,7 @@ "questLostMasterclasser2Notes": "The Joyful Reaper drums her bony fingers on some of the books that you brought. “Oh, dear,” the Master of Healers says. “There is a malevolent life essence at work. I might have guessed, considering the attacks by reanimated skulls during each incident.” Her assistant @tricksy.fox brings in a chest, and you are startled to see the contents that @beffymaroo unloads: the very same objects once used by this mysterious Tzina to possess people.

“I’m going to use resonant healing magic to try to make this creature manifest,” the Joyful Reaper says, reminding you that the skeleton is a somewhat unconventional Healer. “You’ll need to read the revealed information quickly, in case it breaks loose.”

As she concentrates, a twisting mist begins to siphon from the books and twine around the objects. Quickly, you flip through the pages, trying to read the new lines of text that are writhing into view. You catch only a few snippets: “Sands of the Timewastes” — “the Great Disaster” —“split into four”— “permanently corrupted”— before a single name catches your eye: Zinnya.

Abruptly, the pages wrench free from your fingers and shred themselves as a howling creature explodes into being, coalescing around the possessed objects.

“It’s an a’Voidant!” the Joyful Reaper shouts, throwing up a protection spell. “They’re ancient creatures of confusion and obscurity. If this Tzina can control one, she must have a frightening command over life magic. Quickly, attack it before it escapes back into the books!”

", "questLostMasterclasser2Completion": "The a’Voidant succumbs at last, and you share the snippets that you read.

“None of those references sound familiar, even for someone as old as I,” the Joyful Reaper says. “Except… the Timewastes are a distant desert at the most hostile edge of Habitica. Portals often fail nearby, but swift mounts could get you there in no time. Lady Glaciate will be glad to assist.” Her voice grows amused. “Which means that the enamored Master of Rogues will undoubtedly tag along.” She hands you the glimmering mask. “Perhaps you should try to track the lingering magic in these items to its source. I’ll go harvest some sustenance for your journey.”", "questLostMasterclasser2Boss": "The a'Voidant", - "questLostMasterclasser2DropEyewear": "Eter Maskesi(Gözlük)", + "questLostMasterclasser2DropEyewear": "Eter Maskesi (Gözlük)", "questLostMasterclasser3Text": "The Mystery of the Masterclassers, Part 3: City in the Sands", "questLostMasterclasser3Notes": "As night unfurls over the scorching sands of the Timewastes, your guides @AnnDeLune, @Kiwibot, and @Katy133 lead you forward. Some bleached pillars poke from the shadowed dunes, and as you approach them, a strange skittering sound echoes across the seemingly-abandoned expanse.

“Invisible creatures!” says the April Fool, clearly covetous. “Oho! Just imagine the possibilities. This must be the work of a truly stealthy Rogue.”

“A Rogue who could be watching us,” says Lady Glaciate, dismounting and raising her spear. “If there’s a head-on attack, try not to irritate our opponent. I don’t want a repeat of the volcano incident.”

He beams at her. “But it was one of your most resplendent rescues.”

To your surprise, Lady Glaciate turns very pink at the compliment. She hastily stomps away to examine the ruins.

“Looks like the wreck of an ancient city,” says @AnnDeLune. “I wonder what…”

Before she can finish her sentence, a portal roars open in the sky. Wasn’t that magic supposed to be nearly impossible here? The hoofbeats of the invisible animals thunder as they flee in panic, and you steady yourself against the onslaught of shrieking skulls that flood the skies.", "questLostMasterclasser3Completion": "The April Fool surprises the final skull with a spray of sand, and it blunders backwards into Lady Glaciate, who smashes it expertly. As you catch your breath and look up, you see a single flash of someone’s silhouette moving on the other side of the closing portal. Thinking quickly, you snatch up the amulet from the chest of previously-possessed items, and sure enough, it’s drawn towards the unseen person. Ignoring the shouts of alarm from Lady Glaciate and the April Fool, you leap through the portal just as it snaps shut, plummeting into an inky swath of nothingness.", @@ -590,8 +590,8 @@ "questsRageStrikeRecap": "On March 6, our wonderful Ian the Quest Guide was deeply shaken when the Dysheartener shattered the ground around the Quest Shop. Quickly, tackle your tasks to defeat the monster and help rebuild!", "questDysheartenerBossRageMarket": "`The Dysheartener uses SHATTERING HEARTBREAK!`\n\nHelp! After feasting on our incomplete Dailies, the Dysheartener lets out another Shattering Heartbreak attack, smashing the walls and floor of the Market! As stone rains down, Alex the Merchant weeps at his crushed merchandise, stricken by the destruction.\n\nWe can't let this happen again! Be sure to do all our your Dailies to prevent the Dysheartener from using its final strike.", "questDysheartenerBossRageQuests": "`The Dysheartener uses SHATTERING HEARTBREAK!`\n\nAaaah! We've left our Dailies undone again, and the Dysheartener has mustered the energy for one final blow against our beloved shopkeepers. The countryside around Ian the Quest Master is ripped apart by its Shattering Heartbreak attack, and Ian is struck to the core by the horrific vision. We're so close to defeating this monster.... Hurry! Don't stop now!", - "questDysheartenerDropHippogriffPet": "Hopeful Hippogriff (Pet)", - "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)", + "questDysheartenerDropHippogriffPet": "Umutlu Hippogriff (Hayvan)", + "questDysheartenerDropHippogriffMount": "Umutlu Hippogriff (Binek)", "dysheartenerArtCredit": "Artwork by @AnnDeLune", "hugabugText": "Hug a Bug Quest Bundle", "hugabugNotes": "Contains 'The CRITICAL BUG,' 'The Snail of Drudgery Sludge,' and 'Bye, Bye, Butterfry.' Available until March 31.", diff --git a/website/common/locales/tr/settings.json b/website/common/locales/tr/settings.json index 05cb853725..f234cdccbe 100644 --- a/website/common/locales/tr/settings.json +++ b/website/common/locales/tr/settings.json @@ -116,8 +116,8 @@ "giftedGemsInfo": "<%= name %> sana <%= amount %> Elmas hediye etti", "giftedGemsFull": "Selam <%= username %>, <%= sender %> sana <%= gemAmount %> elmas yolladı!", "giftedSubscription": "Hediye Edilen Abonelik", - "giftedSubscriptionInfo": "<%= name %> sana <%= months %> aylık bir abonelik hediye etti", - "giftedSubscriptionFull": "Merhaba <%= username %>, <%= sender %> sana <%= monthCount %> aylık bir abonelik gönderdi!", + "giftedSubscriptionInfo": "<%= name %> sana <%= months %> aylık abonelik hediye etti", + "giftedSubscriptionFull": "Selam <%= username %>, <%= sender %> sana <%= monthCount %> aylık abonelik yolladı!", "giftedSubscriptionWinterPromo": "Hello <%= username %>, you received <%= monthCount %> months of subscription as part of our holiday gift-giving promotion!", "invitedParty": "Takıma Davet Edildin", "invitedGuild": "Loncaya Davet Edildin", diff --git a/website/common/locales/tr/spells.json b/website/common/locales/tr/spells.json index 5cadd4ff34..b9d1f47b59 100644 --- a/website/common/locales/tr/spells.json +++ b/website/common/locales/tr/spells.json @@ -1,8 +1,8 @@ { "spellWizardFireballText": "Alev Patlaması", - "spellWizardFireballNotes": "Ellerinden alevler fışkırır. Tecrübe kazanır ve Canavarlara ekstra hasar verirsin! Uygulamak için bir işe tıkla. (Baz alınan: Zeka)", + "spellWizardFireballNotes": "Ellerinden alevler fışkırır. Tecrübe kazanır ve Canavarlara ekstra hasar verirsin! (Baz alınan: Zeka)", "spellWizardMPHealText": "Cennet Dalgası", - "spellWizardMPHealNotes": "Mana puanı harcayarak diğer takım arkadaşlarının,Büyücüler hariç, mana kazanmasını sağladın!(Zeka puanına göre)", + "spellWizardMPHealNotes": "Mana puanı harcayarak diğer takım arkadaşlarının, Büyücüler hariç, mana kazanmasını sağladın! (Baz alınan: Zeka)", "spellWizardEarthText": "Zelzele", "spellWizardEarthNotes": "Zihinsel gücün dünyayı sarsıyor. Tüm takımın Zeka ile kutsanır! (Baz alınan: Kutsanmamış Zeka)", "spellWizardFrostText": "Dondurucu Soğuk", @@ -11,15 +11,15 @@ "spellWarriorSmashText": "Gaddar Vuruş", "spellWarriorSmashNotes": "Bir iş daha mavi/daha az kırmızı hale gelir ve Baş Düşmanlara ekstra hasar verirsin! (Baz alınan: Güç)", "spellWarriorDefensiveStanceText": "Savunma Vaziyeti", - "spellWarriorDefensiveStanceNotes": "Cenin pozisyonuna geçtin ve bünye düzeyin arttı(orijinal bümye düzeyine göre)", + "spellWarriorDefensiveStanceNotes": "Cenin pozisyonuna geçtin ve Bünye ile kutsandın! (Baz alınan: Kutsanmamış Bünye)", "spellWarriorValorousPresenceText": "Yiğit Duruş", - "spellWarriorValorousPresenceNotes": "Senin cesaretli duruşun bütün takıma güç verdi ve güç seviyelerini artırdı (orijinal güç seviyelerine göre)", + "spellWarriorValorousPresenceNotes": "Senin cesaretli duruşun bütün takımın Güç seviyelerini artırdı! (Baz alınan: Kutsanmamış Güç)", "spellWarriorIntimidateText": "Korkutucu Bakış", "spellWarriorIntimidateNotes": "Bakışınla düşmanlarına korku salarsın. Tüm takımın Bünye ile kutsanır! (Baz alınan: Kutsanmamış Bünye)", "spellRoguePickPocketText": "Yankesicilik", - "spellRoguePickPocketNotes": "Yakınlardaki bir işi soyup altın kazan! Uygulamak için bir işe tıkla. (Baz alınan: Sezgi)", + "spellRoguePickPocketNotes": "Yakınlardaki bir işi soyup altın kazan! (Baz alınan: Sezgi)", "spellRogueBackStabText": "Arkadan Bıçaklama", - "spellRogueBackStabNotes": "Aptal bir göreve ihanet ederek altın ve tecrübe kazan! Uygulamak için bir işe tıkla. (Baz alınan: Güç)", + "spellRogueBackStabNotes": "Aptal bir göreve ihanet ederek altın ve tecrübe kazan! (Baz alınan: Güç)", "spellRogueToolsOfTradeText": "Hırsızlık Eşyaları", "spellRogueToolsOfTradeNotes": "Senin el çabuklukların tüm partinin sezgisini artırdı! (Baz alınan: Kutsanmamış Sezgi)", "spellRogueStealthText": "Gizlilik", @@ -35,17 +35,17 @@ "spellHealerHealAllText": "Hayır Duası", "spellHealerHealAllNotes": "Rahatlatıcı bir büyü ile tüm takımın sağlığını geri kazanır! (Baz alınan: Bünye ve Zeka)", "spellSpecialSnowballAuraText": "Kartopu", - "spellSpecialSnowballAuraNotes": "Takım üyelerinden birine bir kartopu fırlat! Ne yanlış gidebilir ki? Etkisi üye yeni güne girene kadar dayanır.", + "spellSpecialSnowballAuraNotes": "Turn a friend into a frosty snowman!", "spellSpecialSaltText": "Tuz", - "spellSpecialSaltNotes": "Biri seni kartopunun hedefi yaptı. Ha ha, çok komik. Şimdi şu karı alın üzerimden!", + "spellSpecialSaltNotes": "Reverse the spell that made you a snowman.", "spellSpecialSpookySparklesText": "Ürkünç Işıltı", - "spellSpecialSpookySparklesNotes": "Arkadaşını bir hayalete çevir.", + "spellSpecialSpookySparklesNotes": "Arkadaşını görünmez hale çevir!", "spellSpecialOpaquePotionText": "Opak İksir", - "spellSpecialOpaquePotionNotes": "Seni hayalete çeviren büyüyü geri al.", + "spellSpecialOpaquePotionNotes": "Seni görünmez yapan büyüyü geri al.", "spellSpecialShinySeedText": "Parlak Tohum", "spellSpecialShinySeedNotes": "Arkadaşını neşeli bir çiçeğe çevir!", "spellSpecialPetalFreePotionText": "Yaprak Dökücü İksir", - "spellSpecialPetalFreePotionNotes": "Seni çiçeğe çeviren iksiri ters çevir. ", + "spellSpecialPetalFreePotionNotes": "Seni çiçeğe çeviren büyüyü geri al. ", "spellSpecialSeafoamText": "Deniz Köpüğü", "spellSpecialSeafoamNotes": "Arkadaşını bir deniz canlısına çevir!", "spellSpecialSandText": "Kum", diff --git a/website/common/locales/tr/subscriber.json b/website/common/locales/tr/subscriber.json index 72bf47982d..61c962f6b1 100644 --- a/website/common/locales/tr/subscriber.json +++ b/website/common/locales/tr/subscriber.json @@ -86,7 +86,7 @@ "timeTravelersTitle": "Gizemli Zaman Yolcuları", "timeTravelersPopoverNoSub": "Gizemli Zaman Yolcularını çağırmak için bir Mistik Kum Saatine ihtiyacın olacak! <%= linkStart %>Aboneler<%= linkEnd %> her kesintisiz üç aylık abonelik karşılığında bir Mistik Kum Saati kazanırlar. Bir Mistik Kum Saatine sahip olduğunda geri gel ve Zaman Yolcuları sana bir nadir hayvanı, bineği veya Abonelere Özel Eşya Setini geçmişten veya belki de gelecekten çıkarıp getirsinler.", "timeTravelersPopoverNoSubMobile": "Görünüşe göre zaman geçidini açmak için ve Gizemli Zaman Yolcuları'nı çağırmak için Mistik Kum Saati'ne ihtiyacın olacak.", - "timeTravelersPopover": "Mistik Kum Saati'niz zaman geçidimizi açtı! Geçmişten ya da gelecekten sizin için neyi kapıp getirmemizi istediğinizi seçin.", + "timeTravelersPopover": "Your Mystic Hourglass has opened our time portal! Choose what you’d like us to fetch from the past or future.", "timeTravelersAlreadyOwned": "Tebrikler! Zaman Yolcularının sunduğu her şeye zaten sahipsin. Siteyi desteklediğin için teşekkürler!", "mysticHourglassPopover": "Bir Mistik Kum Saati, geçmişteki aylık Gizemli Eşya ve dünya canavarı ödülleri gibi belirli sınırlı sürüm eşyaları satın almanı sağlar.", "mysterySetNotFound": "Gizemli set bulunamadı veya zaten sahipsin.", @@ -144,6 +144,7 @@ "mysterySet201803": "Daring Dragonfly Set", "mysterySet201804": "Spiffy Squirrel Set", "mysterySet201805": "Phenomenal Peacock Set", + "mysterySet201806": "Alluring Anglerfish Set", "mysterySet301404": "Standart Steampunk Seti", "mysterySet301405": "Steampunk Aksesuarları Seti", "mysterySet301703": "Tavuskuşu Steampunk Seti", @@ -178,11 +179,11 @@ "couponCodeRequired": "Kupon kodu gerekli.", "paypalCanceled": "Aboneliğin iptal edildi", "earnGemsMonthly": "Earn up to **<%= cap %> Gems** per month", - "receiveMysticHourglass": "Mistik kum saati kazan. ", + "receiveMysticHourglass": "Receive a Mystic Hourglass!", "receiveMysticHourglasses": "Receive **<%= amount %> Mystic Hourglasses**!", - "everyMonth": "Her ay", - "everyXMonths": "Her <%= interval %>ay", - "everyYear": "Her yıl", + "everyMonth": "Her Ay", + "everyXMonths": "Her <%= interval %> Ayda Bir", + "everyYear": "Her Yıl", "choosePaymentMethod": "Choose your payment method", "subscribeSupportsDevs": "Subscribing supports the developers and helps keep Habitica running", "buyGemsSupportsDevs": "Purchasing Gems supports the developers and helps keep Habitica running", @@ -204,6 +205,6 @@ "subscriptionAlreadySubscribed1": "To see your subscription details and cancel, renew, or change your subscription, please go to User icon > Settings > Subscription.", "purchaseAll": "Purchase All", "gemsPurchaseNote": "Subscribers can buy gems for gold in the Market! For easy access, you can also pin the gem to your Rewards column.", - "gemsRemaining": "gems remaining", + "gemsRemaining": "kalan elmaslar", "notEnoughGemsToBuy": "You are unable to buy that amount of gems" } \ No newline at end of file diff --git a/website/common/locales/tr/tasks.json b/website/common/locales/tr/tasks.json index 5553b7b90a..d96dd5acc5 100644 --- a/website/common/locales/tr/tasks.json +++ b/website/common/locales/tr/tasks.json @@ -1,8 +1,8 @@ { "clearCompleted": "Tamamlanmışları Sil", "clearCompletedDescription": "Tamamlanan işler abone olmayanlar için 30 günden ve aboneler için 90 günden sonra silinir.", - "clearCompletedConfirm": "Tamamlanmış Yapılacak işlerini silmek istediğine emin misin?", - "sureDeleteCompletedTodos": "Tamamlanmış Yapılacak işlerini silmek istediğine emin misin?", + "clearCompletedConfirm": "Tamamlanmış Yapılacak İşlerini silmek istediğine emin misin?", + "sureDeleteCompletedTodos": "Tamamlanmış Yapılacak İşlerini silmek istediğine emin misin?", "lotOfToDos": "En son tamamladığın 30 Yapılacak İş burada gösterilir. Tamamlanan Yapılacak İşlerin daha eskilerini Veri > Veri Görüntüleme Aracı veya Veri > Veriyi Dışa Aktar > Kullanıcı Verisi sekmelerinden görebilirsin.", "deleteToDosExplanation": "Aşağıdaki düğmeye tıkladığında, Grup Planları ve aktif mücadele Yapılacakları dışında, tamamlanmış tüm Yapılacaklar ve arşivlenmiş Yapılacaklar kalıcı olarak silinecektir. Eğer bir kopya saklamak istersen öncelikle bunları dışa aktar.", "addMultipleTip": "Öneri: Birden fazla <%= taskType %> eklemek için her birini aralarında (Shift+Enter) a basarak yazıp sonra Enter a basarak ekleyebilirsin.", @@ -10,14 +10,14 @@ "addATask": "<%= type %> ekle", "editATask": "<%= type %> düzenle", "createTask": "<%= type %> oluştur", - "addTaskToUser": "iş ekle", + "addTaskToUser": "İş Ekle", "scheduled": "Zamanlı", "theseAreYourTasks": "Bunlar senin <%= taskType %>", "habit": "Alışkanlık", "habits": "Alışkanlıklar", "newHabit": "Yeni Alışkanlık", "newHabitBulk": "Yeni Alışkanlıklar (satır başı bir tane)", - "habitsDesc": "Alışkanlıkların belirli bir gün düzeni yoktur. Onları bir gün içeriside birden çok kere tamamlıyabilirsin.", + "habitsDesc": "Alışkanlıkların belirli bir gün düzeni yoktur. Onları bir gün içeriside birden çok kere tamamlayabilirsin.", "positive": "Pozitif", "negative": "Negatif", "yellowred": "Zayıf", @@ -28,13 +28,13 @@ "checklist": "Kontrol Listesi", "checklistText": "Bir işi küçük parçalara ayır! Kontrol listeleri, Yapılacak İşlere ilişkin Tecrübe ve Altın ödüllerini arttırır, Günlük İşlerin de sana vereceği hasarı azaltır.", "newChecklistItem": "Yeni bir kontrol listesi maddesi", - "expandChecklist": "Kontrol listesini aç", - "collapseChecklist": "Kontol listesini küçült", + "expandChecklist": "Kontrol Listesini Aç", + "collapseChecklist": "Kontol Listesini Daralt", "text": "Başlık", "extraNotes": "Ek Notlar", "notes": "Notlar", "direction/Actions": "Yönlendirme/Aksiyonlar", - "advancedSettings": "İleri Düzey Ayarlar", + "advancedSettings": "Gelişmiş Ayarlar", "taskAlias": "İşin Takma Adı", "taskAliasPopover": "İşler için bir takma isim, 3. parti entegrasyonlarında kullanılabilir. Yalnızca tire, alt çizgi ve alfanumerik karakterler desteklenmektedir. İşin takma adı, diğer işlerin isimlerinden farklı olmalıdır.", "taskAliasPlaceholder": "işinin-takma-ismi", @@ -99,17 +99,17 @@ "clearTags": "Temizle", "hideTags": "Gizle", "showTags": "Göster", - "editTags2": "Edit Tags", + "editTags2": "Etiketleri Düzenle", "toRequired": "Bir \"to\" mülkiyeti sağlamalısın", "startDate": "Başlangıç Tarihi", "startDateHelpTitle": "Bu iş ne zaman başlamalı?", "startDateHelp": "Bu işin başlayacağı tarihi seç. Daha öncesinde bu işi yapman gerekmeyecek.", "streaks": "Seri Başarıları", - "streakName": "<%= count %> adet Seri Başarısı", - "streakText": "Günlük işlerde 21-günlük seri <%= count %> adet gerçekleştirilmiştir.", + "streakName": "<%= count %> Seri Başarısı", + "streakText": "Günlük İşlerde <%= count %> defa 21-gün süren seri gerçekleştirdi.", "streakSingular": "Uzun Koşucu", "streakSingularText": "Bir Gündelik İş üzerinde 21 günlük seri sergiledi.", - "perfectName": "<%= count %> adet Mükemmel Gün", + "perfectName": "<%= count %> Mükemmel Gün", "perfectText": "Completed all active Dailies on <%= count %> days. With this achievement you get a +level/2 buff to all Stats for the next day. Levels greater than 100 don't have any additional effects on buffs.", "perfectSingular": "Mükemmel Gün", "perfectSingularText": "Completed all active Dailies in one day. With this achievement you get a +level/2 buff to all Stats for the next day. Levels greater than 100 don't have any additional effects on buffs.", @@ -164,7 +164,7 @@ "intelligenceExample": "Akademik veya zihinsel uğraş arayışı ile alakalı", "perceptionExample": "İş veya finansal görevlerle alakalı", "constitutionExample": "Sağlık, iyilik ve sosyal ilişkilerle alakalı", - "counterPeriod": "Sayaç Hergün Sıfırlanır", + "counterPeriod": "Counter Resets Every", "counterPeriodDay": "Gün", "counterPeriodWeek": "Hafta", "counterPeriodMonth": "Ay", @@ -194,8 +194,6 @@ "weeks": "Haftalar", "year": "Sene", "years": "Seneler", - "confirmScoreNotes": "İş sayımını notlarla onayla", - "taskScoreNotesTooLong": "İş sayımı notları 256 karakterden daha az olmalıdır.", "groupTasksByChallenge": "İşleri mücadele adına göre sırala", "taskNotes": "İş Notları", "monthlyRepeatHelpContent": "Bu iş, her X ayda bir tekrarlanır", @@ -210,6 +208,6 @@ "yesterDailiesDescription": "Bu ayar uygulanıyorsa, avatarına zarar verme hesaplamasından önce Günlük İşi yapıp yapmadığını Habitica soracaktır. Bu, kasıtsız olarak hasar görmelerine karşı seni koruyabilir.", "repeatDayError": "Lütfen haftanın en az bir gününün seçili olduğundan emin ol.", "searchTasks": "Search titles and descriptions...", - "sessionOutdated": "Oturumunuz güncel değil.Lütfen sayfayı yenileyin.", + "sessionOutdated": "Oturumun güncel değil. Lütfen sayfayı yenile.", "errorTemporaryItem": "This item is temporary and cannot be pinned." } \ No newline at end of file diff --git a/website/common/locales/uk/backgrounds.json b/website/common/locales/uk/backgrounds.json index 613d02e7db..eb34286dbf 100644 --- a/website/common/locales/uk/backgrounds.json +++ b/website/common/locales/uk/backgrounds.json @@ -359,5 +359,12 @@ "backgroundRowboatText": "Rowboat", "backgroundRowboatNotes": "Sing rounds in a Rowboat.", "backgroundPirateFlagText": "Pirate Flag", - "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag." + "backgroundPirateFlagNotes": "Fly a fearsome Pirate Flag.", + "backgrounds072018": "SET 50: Released July 2018", + "backgroundDarkDeepText": "Dark Deep", + "backgroundDarkDeepNotes": "Swim in the Dark Deep among bioluminescent critters.", + "backgroundDilatoryCityText": "City of Dilatory", + "backgroundDilatoryCityNotes": "Meander through the undersea City of Dilatory.", + "backgroundTidePoolText": "Tide Pool", + "backgroundTidePoolNotes": "Observe the ocean life near a Tide Pool." } \ No newline at end of file diff --git a/website/common/locales/uk/content.json b/website/common/locales/uk/content.json index ab34553c57..0ddde3704e 100644 --- a/website/common/locales/uk/content.json +++ b/website/common/locales/uk/content.json @@ -195,6 +195,7 @@ "hatchingPotionFairy": "Fairy", "hatchingPotionStarryNight": "Starry Night", "hatchingPotionRainbow": "Rainbow", + "hatchingPotionGlass": "Glass", "hatchingPotionNotes": "Вилийте це на яйце, і з нього вилупиться улюбленець<%= potText(locale) %>.", "premiumPotionAddlNotes": "Неможливо використати на квестових яйцях з улюбленцями.", "foodMeat": "М'ясо", diff --git a/website/common/locales/uk/gear.json b/website/common/locales/uk/gear.json index 1fc0b0dc5d..77a80a0f74 100644 --- a/website/common/locales/uk/gear.json +++ b/website/common/locales/uk/gear.json @@ -346,6 +346,8 @@ "weaponArmoireCobblersHammerNotes": "This hammer is specially made for leatherwork. It can do a real number on a red Daily in a pinch, though. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 2 of 3).", "weaponArmoireGlassblowersBlowpipeText": "Glassblower's Blowpipe", "weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Increases Strength by <%= str %>. Enchanted Armoire: Glassblower Set (Item 1 of 4).", + "weaponArmoirePoisonedGobletText": "Poisoned Goblet", + "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).", "armor": "броня", "armorCapitalized": "Armor", "armorBase0Text": "Звичайний одяг", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "The heat and light generated by this magic armor will warm your heart but never burn your skin! Confers no benefit. December 2017 Subscriber Item.", "armorMystery201802Text": "Love Bug Armor", "armorMystery201802Notes": "This shiny armor reflects your strength of heart and infuses it into any Habiticans nearby who may need encouragement! Confers no benefit. February 2018 Subscriber Item.", + "armorMystery201806Text": "Alluring Anglerfish Tail", + "armorMystery201806Notes": "This sinuous tail features glowing spots to light your way through the deep. Confers no benefit. June 2018 Subscriber Item.", "armorMystery301404Text": "Steampunk Suit", "armorMystery301404Notes": "Dapper and dashing, wot! Confers no benefit. February 3015 Subscriber Item.", "armorMystery301703Text": "Steampunk Peacock Gown", @@ -742,6 +746,8 @@ "armorArmoireGlassblowersCoverallsNotes": "These coveralls will protect you while you're making masterpieces with hot molten glass. Increases Constitution by <%= con %>. Enchanted Armoire: Glassblower Set (Item 2 of 4).", "armorArmoireBluePartyDressText": "Blue Party Dress", "armorArmoireBluePartyDressNotes": "You're perceptive, tough, smart, and so fashionable! Increases Perception, Strength, and Constitution by <%= attrs %> each. Enchanted Armoire: Blue Hairbow Set (Item 2 of 2).", + "armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown", + "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Increases Perception by <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).", "headgear": "helm", "headgearCapitalized": "Headgear", "headBase0Text": "No Headgear", @@ -1054,6 +1060,8 @@ "headMystery201803Notes": "Although its appearance is quite decorative, you can engage the wings on this circlet for extra lift! Confers no benefit. March 2018 Subscriber Item.", "headMystery201805Text": "Phenomenal Peacock Helm", "headMystery201805Notes": "This helm will make you the proudest and prettiest (possibly also the loudest) bird in town. Confers no benefit. May 2018 Subscriber Item.", + "headMystery201806Text": "Alluring Anglerfish Helm", + "headMystery201806Notes": "The mesmerizing light atop this helm will call all the creatures of the sea to your side. We urge you to use your glowy powers of attraction for good! Confers no benefit. June 2018 Subscriber Item.", "headMystery301404Text": "Fancy Top Hat", "headMystery301404Notes": "A fancy top hat for the finest of gentlefolk! January 3015 Subscriber Item. Confers no benefit.", "headMystery301405Text": "Basic Top Hat", @@ -1154,6 +1162,8 @@ "headArmoireBigWigNotes": "Some powdered wigs are for looking more authoritative, but this one is just for laughs! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.", "headArmoireGlassblowersHatText": "Glassblower's Hat", "headArmoireGlassblowersHatNotes": "This hat mainly just looks good with your other protective glassblowing gear! Increases Perception by <%= per %>. Enchanted Armoire: Glassblower Set (Item 3 of 4).", + "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress", + "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).", "offhand": "off-hand item", "offhandCapitalized": "Off-Hand Item", "shieldBase0Text": "No Off-Hand Equipment", @@ -1368,6 +1378,8 @@ "shieldArmoireFancyShoeNotes": "A very special shoe you're working on. It's fit for royalty! Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 3 of 3).", "shieldArmoireFancyBlownGlassVaseText": "Fancy Blown Glass Vase", "shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Increases Intelligence by <%= int %>. Enchanted Armoire: Glassblower Set (Item 4 of 4).", + "shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield", + "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).", "back": "Back Accessory", "backCapitalized": "Back Accessory", "backBase0Text": "No Back Accessory", diff --git a/website/common/locales/uk/groups.json b/website/common/locales/uk/groups.json index 5f834e39cf..2d183d4b64 100644 --- a/website/common/locales/uk/groups.json +++ b/website/common/locales/uk/groups.json @@ -134,12 +134,11 @@ "PMPlaceholderDescription": "Виберіть діалог зліва", "PMPlaceholderTitleRevoked": "Ваші привілегії у чаті були відмінені", "PMPlaceholderDescriptionRevoked": "You are not able to send private messages because your chat privileges have been revoked. If you have questions or concerns about this, please email admin@habitica.com to discuss it with the staff.", - "PMEnable": "Увімкнути приватні повідомлення", - "PMDisable": "Вимкнути приватні повідомлення", - "PMEnabledOptPopoverText": "When Private Messages are disabled, you still can send messages, but no one can send them to you.", - "PMDisabledOptPopoverText": "Enable this option to be able to receive messages.", + "PMReceive": "Receive Private Messages", + "PMEnabledOptPopoverText": "Private Messages are enabled. Users can contact you via your profile.", + "PMDisabledOptPopoverText": "Private Messages are disabled. Enable this option to allow users to contact you via your profile.", "PMDisabledCaptionTitle": "Private Messages are disabled", - "PMDisabledCaptionText": "You still can send messages, but no one can send them to you.", + "PMDisabledCaptionText": "You can still send messages, but no one can send them to you.", "block": "Заблокувати", "unblock": "Розблокувати", "pm-reply": "Надіслати відповідь", @@ -162,46 +161,46 @@ "whyReportingPost": "Why are you reporting this post?", "whyReportingPostPlaceholder": "Please help our moderators by letting us know why you are reporting this post for a violation, e.g., spam, swearing, religious oaths, bigotry, slurs, adult topics, violence.", "optional": "Optional", - "needsText": "Please type a message.", - "needsTextPlaceholder": "Type your message here.", + "needsText": "Будь-ласка наберіть повідомлення.", + "needsTextPlaceholder": "Напишіть ваше повідомлення тут.", "copyMessageAsToDo": "Copy message as To-Do", "copyAsTodo": "Copy as To-Do", "messageAddedAsToDo": "Message copied as To-Do.", "messageWroteIn": "<%= user %> wrote in <%= group %>", "msgPreviewHeading": "Message Preview", - "leaderOnlyChallenges": "Only group leader can create challenges", - "sendGift": "Send Gift", - "inviteFriends": "Invite Friends", + "leaderOnlyChallenges": "Тільки лідер гурту може створювати випробування", + "sendGift": "Відправити подарунок", + "inviteFriends": "Запросити друзів", "partyMembersInfo": "Your Party currently has <%= memberCount %> members and <%= invitationCount %> pending invitations. The limit of members in a Party is <%= limitMembers %>. Invitations above this limit cannot be sent.", - "inviteByEmail": "Invite by Email", - "inviteByEmailExplanation": "If a friend joins Habitica via your email, they'll automatically be invited to your Party!", + "inviteByEmail": "Запросити через Email", + "inviteByEmailExplanation": "Якщо ваші друзі приєднаються до Habitica через Email, то вони автоматично будуть запрошені приєднатися до вашого Гурту!", "inviteMembersHowTo": "Invite people via a valid email or 36-digit User ID. If an email isn't registered yet, we'll invite them to join Habitica.", - "inviteFriendsNow": "Invite Friends Now", - "inviteFriendsLater": "Invite Friends Later", + "inviteFriendsNow": "Запросіть друзів зараз", + "inviteFriendsLater": "Запросити друзів пізніше", "inviteAlertInfo": "If you have friends already using Habitica, invite them by User ID here.", "inviteExistUser": "Invite Existing Users", "byColon": "By:", - "inviteNewUsers": "Invite New Users", - "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):", + "inviteNewUsers": "Запросити нових користувачів", + "sendInvitations": "Надіслати запрошення", + "invitationsSent": "Запрошення надіслано!", + "invitationSent": "Запрошення надіслано!", + "invitedFriend": "Запросити друга", + "invitedFriendText": "Цей користувач запросив друга (або друзів), які приєднались до них у їхній пригоді!", + "inviteAlertInfo2": "Або поділись цим посиланням (копіювати/вставити):", "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 %>", - "sendGiftGemsBalance": "From <%= number %> Gems", + "sendGiftHeading": "Надіслати подарунок для <%= name %>", + "sendGiftGemsBalance": "Від <%= number %> Самоцвітів", "sendGiftCost": "Total: $<%= cost %> USD", - "sendGiftFromBalance": "From Balance", - "sendGiftPurchase": "Purchase", - "sendGiftMessagePlaceholder": "Personal message (optional)", + "sendGiftFromBalance": "З балансу", + "sendGiftPurchase": "Придбати", + "sendGiftMessagePlaceholder": "Персональне повідомлення(опціонально)", "sendGiftSubscription": "<%= months %> Month(s): $<%= price %> USD", "gemGiftsAreOptional": "Please note that Habitica will never require you to gift gems to other players. Begging people for gems is a violation of the Community Guidelines, and all such instances should be reported to <%= hrefTechAssistanceEmail %>.", "battleWithFriends": "Battle Monsters With Friends", - "startPartyWithFriends": "Start a Party with your friends!", - "startAParty": "Start a Party", - "addToParty": "Add someone to your Party", - "likePost": "Click if you like this post!", + "startPartyWithFriends": "Створіть Гурт з вашими друзями!", + "startAParty": "Створити гурт", + "addToParty": "Додати когось до свого Гурту", + "likePost": "Натисніть якщо вам сподобався цей пост!", "partyExplanation1": "Play Habitica with friends to stay accountable!", "partyExplanation2": "Battle monsters and create Challenges!", "partyExplanation3": "Invite friends now to earn a Quest Scroll!", @@ -216,23 +215,23 @@ "partyOnName": "Party On", "partyUpText": "Joined a Party with another person! Have fun battling monsters and supporting each other.", "partyOnText": "Joined a Party with at least four people! Enjoy your increased accountability as you unite with your friends to vanquish your foes!", - "groupNotFound": "Group not found or you don't have access.", + "groupNotFound": "Гурт не знайдений або у вас немає доступу.", "groupTypesRequired": "You must supply a valid \"type\" query string.", "questLeaderCannotLeaveGroup": "You cannot leave your Party when you have started a quest. Abort the quest first.", "cannotLeaveWhileActiveQuest": "You cannot leave Party during an active quest. Please leave the quest first.", - "onlyLeaderCanRemoveMember": "Only group leader can remove a member!", - "cannotRemoveCurrentLeader": "You cannot remove the group leader. Assign a new a leader first.", - "memberCannotRemoveYourself": "You cannot remove yourself!", - "groupMemberNotFound": "User not found among group's members", - "mustBeGroupMember": "Must be member of the group.", + "onlyLeaderCanRemoveMember": "Тільки лідер групи може видаляти учасників!", + "cannotRemoveCurrentLeader": "Ви не можете видалити лідера групи. Спочатку назначте нового лідера.", + "memberCannotRemoveYourself": "Ви не можете видалити себе!", + "groupMemberNotFound": "Користувач не знайдений серед учасників групи", + "mustBeGroupMember": "Повинен бути учасником групи.", "canOnlyInviteEmailUuid": "Can only invite using uuids or emails.", "inviteMissingEmail": "Missing email address in invite.", "inviteMissingUuid": "Missing user id in invite", - "inviteMustNotBeEmpty": "Invite must not be empty.", - "partyMustbePrivate": "Parties must be private", + "inviteMustNotBeEmpty": "Запрошення не повинні бути пустими.", + "partyMustbePrivate": "Гурти повинні бути приватними", "userAlreadyInGroup": "UserID: <%= userId %>, User \"<%= username %>\" already in that group.", - "youAreAlreadyInGroup": "You are already a member of this group.", - "cannotInviteSelfToGroup": "You cannot invite yourself to a group.", + "youAreAlreadyInGroup": "Ви вже є учасником цієї группи.", + "cannotInviteSelfToGroup": "Ви не можете запросити себе до групи.", "userAlreadyInvitedToGroup": "UserID: <%= userId %>, User \"<%= username %>\" already invited to that group.", "userAlreadyPendingInvitation": "UserID: <%= userId %>, User \"<%= username %>\" already pending invitation.", "userAlreadyInAParty": "UserID: <%= userId %>, User \"<%= username %>\" already in a party.", @@ -240,54 +239,54 @@ "userHasNoLocalRegistration": "User does not have a local registration (username, email, password).", "uuidsMustBeAnArray": "User ID invites must be an array.", "emailsMustBeAnArray": "Email address invites must be an array.", - "canOnlyInviteMaxInvites": "You can only invite \"<%= maxInvites %>\" at a time", + "canOnlyInviteMaxInvites": "Ви можете запросити тільки \"<%= maxInvites %>\" людей одночасно", "partyExceedsMembersLimit": "Party size is limited to <%= maxMembersParty %> members", - "onlyCreatorOrAdminCanDeleteChat": "Not authorized to delete this message!", - "onlyGroupLeaderCanEditTasks": "Not authorized to manage tasks!", + "onlyCreatorOrAdminCanDeleteChat": "У вас немає прав для видалення цього повідомлення!", + "onlyGroupLeaderCanEditTasks": "У вас немає прав для управління задачами!", "onlyGroupTasksCanBeAssigned": "Only group tasks can be assigned", "assignedTo": "Assigned To", "assignedToUser": "Assigned to <%= userName %>", "assignedToMembers": "Assigned to <%= userCount %> members", "assignedToYouAndMembers": "Assigned to you and <%= userCount %> members", - "youAreAssigned": "You are assigned to this task", - "taskIsUnassigned": "This task is unassigned", + "youAreAssigned": "Ви назначені на цю задачу", + "taskIsUnassigned": "Задача не назначена", "confirmClaim": "Are you sure you want to claim this task?", "confirmUnClaim": "Are you sure you want to unclaim this task?", - "confirmApproval": "Are you sure you want to approve this task?", + "confirmApproval": "Ви впевнені що хочете одобрити цю задачу?", "confirmNeedsWork": "Are you sure you want to mark this task as needing work?", "userRequestsApproval": "<%= userName %> requests approval", "userCountRequestsApproval": "<%= userCount %> request approval", - "youAreRequestingApproval": "You are requesting approval", + "youAreRequestingApproval": "Ви запрошуєте одобрення", "chatPrivilegesRevoked": "You cannot do that because your chat privileges have been revoked.", "cannotCreatePublicGuildWhenMuted": "You cannot create a public guild because your chat privileges have been revoked.", "cannotInviteWhenMuted": "You cannot invite anyone to a guild or party because your chat privileges have been revoked.", "newChatMessagePlainNotification": "New message in <%= groupName %> by <%= authorName %>. Click here to open the chat page!", - "newChatMessageTitle": "New message in <%= groupName %>", - "exportInbox": "Export Messages", - "exportInboxPopoverTitle": "Export your messages as HTML", + "newChatMessageTitle": "Нове повідомлення у <%= groupName %>", + "exportInbox": "Експортувати повідомлення", + "exportInboxPopoverTitle": "Експортувати ваші повідомлення як HTML", "exportInboxPopoverBody": "HTML allows easy reading of messages in a browser. For a machine-readable format, use Data > Export Data", - "to": "To:", - "from": "From:", + "to": "До:", + "from": "Від:", "desktopNotificationsText": "We need your permission to enable desktop notifications for new messages in party chat! Follow your browser's instructions to turn them on.

You'll receive these notifications only while you have Habitica open. If you decide you don't like them, they can be disabled in your browser's settings.

This box will close automatically when a decision is made.", - "confirmAddTag": "Do you want to assign this task to \"<%= tag %>\"?", - "confirmRemoveTag": "Do you really want to remove \"<%= tag %>\"?", - "groupHomeTitle": "Home", - "assignTask": "Assign Task", - "claim": "Claim", - "removeClaim": "Remove Claim", - "onlyGroupLeaderCanManageSubscription": "Only the group leader can manage the group's subscription", - "yourTaskHasBeenApproved": "Your task <%= taskText %> has been approved.", - "taskNeedsWork": "<%= managerName %> marked <%= taskText %> as needing additional work.", - "userHasRequestedTaskApproval": "<%= user %> requests approval for <%= taskName %>", - "approve": "Approve", - "approveTask": "Approve Task", - "needsWork": "Needs Work", + "confirmAddTag": "Ви хочете назначити цю задачу до \"<%= tag %>\"?", + "confirmRemoveTag": "Ви справді бажаєте видалити \"<%= tag %>\"?", + "groupHomeTitle": "Домівка", + "assignTask": "Назначити задачу", + "claim": "Присвоїти", + "removeClaim": "Відмінити присвоєння", + "onlyGroupLeaderCanManageSubscription": "Тільки лідер групи може управляти підпискою групи", + "yourTaskHasBeenApproved": "Ваша задача <%= taskText %> була схвалена.", + "taskNeedsWork": "<%= managerName %> позначена <%= taskText %> як потребуюча доробки.", + "userHasRequestedTaskApproval": "<%= user %> запрошує підтвердження для <%= taskName %>", + "approve": "Підтвердити", + "approveTask": "Підтвердити задачу", + "needsWork": "Потребує доробки", "viewRequests": "View Requests", - "approvalTitle": "<%= userName %> has completed <%= type %>: \"<%= text %>\"", + "approvalTitle": "<%= userName %> виконав <%= type %>: \"<%= text %>\"", "confirmTaskApproval": "Do you want to reward <%= username %> for completing this task?", "groupSubscriptionPrice": "$9 every month + $3 a month for every additional group member", "groupAdditionalUserCost": "+$3.00/month/user", - "groupBenefitsTitle": "How a group plan can help you", + "groupBenefitsTitle": "Як груповий план може вам допомогти", "groupBenefitsDescription": "We've just launched the beta version of our group plans! Upgrading to a group plan unlocks some unique features to optimize the social side of Habitica.", "groupBenefitOneTitle": "Create a shared task list", "groupBenefitOneDescription": "Set up a shared task list for the group that everyone can easily view and edit.", @@ -295,49 +294,49 @@ "groupBenefitTwoDescription": "Want a coworker to answer a critical email? Need your roommate to pick up the groceries? Just assign them the tasks you create, and they'll automatically appear in that person's task dashboard.", "groupBenefitThreeTitle": "Claim a task that you are working on", "groupBenefitThreeDescription": "Stake your claim on any group task with a simple click. Make it clear what everybody is working on!", - "groupBenefitFourTitle": "Mark tasks that require special approval", + "groupBenefitFourTitle": "Позначити задачу, яка потребує спеціального схвалення", "groupBenefitFourDescription": "Need to verify that a task really did get done before that user gets their rewards? Just adjust the approval settings for added control.", "groupBenefitFiveTitle": "Chat privately with your group", "groupBenefitFiveDescription": "Stay in the loop about important decisions in our easy-to-use chatroom!", - "groupBenefitSixTitle": "Get a free subscription", + "groupBenefitSixTitle": "Отримай безкоштовну підписку", "groupBenefitSixDescription": "Get full subscription benefits, including exclusive monthly items and the ability to buy gems with gold! (If you're already a subscriber, your old subscription will be cancelled but your consecutive subscription benefits such as monthly hourglasses will remain.)", "groupBenefitSevenTitle": "Get a brand-new exclusive Jackalope Mount", "groupBenefitEightTitle": "Add Group Managers to help manage tasks", "groupBenefitEightDescription": "Want to share your group's responsibilities? Promote people to Group Managers to help the Leader add, assign, and approve tasks!", - "groupBenefitMessageLimitTitle": "Increase message limit", + "groupBenefitMessageLimitTitle": "Збільшити ліміт повідомлень", "groupBenefitMessageLimitDescription": "Your message limit is doubled to house up to 400 messages at a time!", - "teamBasedTasks": "Team-based Tasks", + "teamBasedTasks": "Командно-орієнтовані задачі", "specializedCommunication": "Specialized Communication", "funExtras": "Fun Extras", "enterprisePlansButton": "Ask about Enterprise Plans", "enterprisePlansDescription": "Looking for a larger install with custom needs? See if our enterprise plans are right for you.", "familyPlansButton": "Sign Up for Family Plan Mailing List", "familyPlansDescription": "Want a cozier solution to manage your household? Family Plans are coming soon!", - "createAGroup": "Create a Group", - "getAGroupPlanToday": "Get a Group Plan Today", - "assignFieldPlaceholder": "Type a group member's profile name", - "cannotDeleteActiveGroup": "You cannot remove a group with an active subscription", + "createAGroup": "Створити групу", + "getAGroupPlanToday": "Отримати Груповий План сьогодні", + "assignFieldPlaceholder": "Введіть ім'я профілю учасника групи", + "cannotDeleteActiveGroup": "Ви не можете видалити группу з активною підпискою", "groupTasksTitle": "Group Tasks List", "approvalsTitle": "Tasks Awaiting Approval", "upgradeTitle": "Upgrade", "blankApprovalsDescription": "When your group completes tasks that need your approval, they'll appear here! Adjust approval requirement settings under task editing.", - "userIsClamingTask": "`<%= username %> has claimed:` <%= task %>", + "userIsClamingTask": "<%= username %> привласнив: <%= task %>", "approvalRequested": "Approval Requested", "refreshApprovals": "Refresh Approvals", "refreshGroupTasks": "Refresh Group Tasks", "claimedBy": "Claimed by: <%= claimingUsers %>", "cantDeleteAssignedGroupTasks": "Can't delete group tasks that are assigned to you.", - "confirmGuildPlanCreation": "Create this group?", - "onlyGroupLeaderCanInviteToGroupPlan": "Only the group leader can invite users to a group with a subscription.", - "paymentDetails": "Payment Details", + "confirmGuildPlanCreation": "Створити цю групу?", + "onlyGroupLeaderCanInviteToGroupPlan": "Тільки лідер групи може запрошувати користувачів до групи з підпискою.", + "paymentDetails": "Деталі оплати", "aboutToJoinCancelledGroupPlan": "You are about to join a group with a canceled plan. You will NOT receive a free subscription.", "cannotChangeLeaderWithActiveGroupPlan": "You can not change the leader while the group has an active plan.", "leaderCannotLeaveGroupWithActiveGroup": "A leader can not leave a group while the group has an active plan", "youHaveGroupPlan": "You have a free subscription because you are a member of a group that has a Group Plan. This will end when you are no longer in the group that has a Group Plan. Any months of extra subscription credit you have will be applied at the end of the Group Plan.", - "cancelGroupSub": "Cancel Group Plan", - "confirmCancelGroupPlan": "Are you sure you want to cancel the group plan and remove its benefits from all members, including their free subscriptions?", - "canceledGroupPlan": "Canceled Group Plan", - "groupPlanCanceled": "Group Plan will become inactive on", + "cancelGroupSub": "Закінчити груповий план", + "confirmCancelGroupPlan": "Ви впевнені що хочете завершити груповий план та забрати його вигоди з усіх учасників, включаючи їх безкоштовні підписки?", + "canceledGroupPlan": "Закінченний груповий план", + "groupPlanCanceled": "Груповий план стане неактивним", "purchasedGroupPlanPlanExtraMonths": "You have <%= months %> months of extra group plan credit.", "addManagers": "Add Managers", "addManager": "Add Manager", diff --git a/website/common/locales/uk/limited.json b/website/common/locales/uk/limited.json index 3cf7026d17..fc6e2d9801 100644 --- a/website/common/locales/uk/limited.json +++ b/website/common/locales/uk/limited.json @@ -130,7 +130,7 @@ "dateEndApril": "April 19", "dateEndMay": "May 31", "dateEndJune": "June 14", - "dateEndJuly": "July 29", + "dateEndJuly": "July 31", "dateEndAugust": "August 31", "dateEndOctober": "October 31", "dateEndNovember": "November 30", diff --git a/website/common/locales/uk/quests.json b/website/common/locales/uk/quests.json index f5cd67c1ac..96406ce933 100644 --- a/website/common/locales/uk/quests.json +++ b/website/common/locales/uk/quests.json @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "Guilds cannot be invited on quests.", "questNotOwned": "You don't own that quest scroll.", "questNotGoldPurchasable": "Quest \"<%= key %>\" is not a Gold-purchasable quest.", + "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", "questLevelTooHigh": "You must be level <%= level %> to begin this quest.", "questAlreadyUnderway": "Your party is already on a quest. Try again when the current quest has ended.", "questAlreadyAccepted": "You already accepted the quest invitation.", diff --git a/website/common/locales/uk/subscriber.json b/website/common/locales/uk/subscriber.json index 0fa382320f..c029b02e18 100644 --- a/website/common/locales/uk/subscriber.json +++ b/website/common/locales/uk/subscriber.json @@ -144,6 +144,7 @@ "mysterySet201803": "Daring Dragonfly Set", "mysterySet201804": "Spiffy Squirrel Set", "mysterySet201805": "Phenomenal Peacock Set", + "mysterySet201806": "Alluring Anglerfish Set", "mysterySet301404": "Steampunk Standard Set", "mysterySet301405": "Steampunk Accessories Set", "mysterySet301703": "Peacock Steampunk Set", diff --git a/website/common/locales/uk/tasks.json b/website/common/locales/uk/tasks.json index 5ba0cdbd05..cb6f069db5 100644 --- a/website/common/locales/uk/tasks.json +++ b/website/common/locales/uk/tasks.json @@ -194,8 +194,6 @@ "weeks": "Тижні", "year": "Рік", "years": "Роки", - "confirmScoreNotes": "Confirm task scoring with notes", - "taskScoreNotesTooLong": "Запити на завдання за розміром мають бути не більше 256 символів", "groupTasksByChallenge": "Group tasks by challenge title", "taskNotes": "Task Notes", "monthlyRepeatHelpContent": "This task will be due every X months", diff --git a/website/common/locales/zh/backgrounds.json b/website/common/locales/zh/backgrounds.json index 70cb4b0c00..308655048d 100644 --- a/website/common/locales/zh/backgrounds.json +++ b/website/common/locales/zh/backgrounds.json @@ -359,5 +359,12 @@ "backgroundRowboatText": "划艇", "backgroundRowboatNotes": "在小船上轮唱", "backgroundPirateFlagText": "海盗旗", - "backgroundPirateFlagNotes": "悬挂起令人生畏的海盗旗" + "backgroundPirateFlagNotes": "悬挂起令人生畏的海盗旗", + "backgrounds072018": "SET 50: Released July 2018", + "backgroundDarkDeepText": "Dark Deep", + "backgroundDarkDeepNotes": "Swim in the Dark Deep among bioluminescent critters.", + "backgroundDilatoryCityText": "City of Dilatory", + "backgroundDilatoryCityNotes": "Meander through the undersea City of Dilatory.", + "backgroundTidePoolText": "Tide Pool", + "backgroundTidePoolNotes": "Observe the ocean life near a Tide Pool." } \ No newline at end of file diff --git a/website/common/locales/zh/content.json b/website/common/locales/zh/content.json index a3e0bf12c4..7a65477205 100644 --- a/website/common/locales/zh/content.json +++ b/website/common/locales/zh/content.json @@ -195,6 +195,7 @@ "hatchingPotionFairy": "仙女", "hatchingPotionStarryNight": "星夜", "hatchingPotionRainbow": "彩虹", + "hatchingPotionGlass": "Glass", "hatchingPotionNotes": "把它倒在宠物蛋上可以孵化出一只<%= potText(locale) %>宠物。", "premiumPotionAddlNotes": "无法在任务奖励宠物蛋上使用", "foodMeat": "肉", diff --git a/website/common/locales/zh/gear.json b/website/common/locales/zh/gear.json index fbccb2c8d6..053db643a7 100644 --- a/website/common/locales/zh/gear.json +++ b/website/common/locales/zh/gear.json @@ -346,6 +346,8 @@ "weaponArmoireCobblersHammerNotes": "这个锤子是专用于皮革制品的。但它能在紧要关头对红色的每日任务造成真正的伤害。体质和力量各增加 <%= attrs %> 点。魔法衣橱:鞋匠套装(3件套的第2件)", "weaponArmoireGlassblowersBlowpipeText": "玻璃吹制工的吹管", "weaponArmoireGlassblowersBlowpipeNotes": "用这只吹管把融化的玻璃吹成漂亮的花瓶、装饰品和其他的漂亮的东西。增加 <%= str %> 点力量。魔法衣橱:玻璃吹制工套装(4件套的第1件)", + "weaponArmoirePoisonedGobletText": "Poisoned Goblet", + "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).", "armor": "护甲", "armorCapitalized": "护甲", "armorBase0Text": "普通服装", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "這個魔法护甲产生的光和熱力會在不燒傷你的皮膚的條件下為你的心保持温暖。没有属性加成。2017年十二月捐赠者物品。", "armorMystery201802Text": "爱虫护甲", "armorMystery201802Notes": "这闪亮的护甲反射出你心灵的力量并将之注入附近每一个需要鼓励的Habitican的心中。没有属性加成。2018年二月订阅者物品。", + "armorMystery201806Text": "Alluring Anglerfish Tail", + "armorMystery201806Notes": "This sinuous tail features glowing spots to light your way through the deep. Confers no benefit. June 2018 Subscriber Item.", "armorMystery301404Text": "蒸汽朋克套装", "armorMystery301404Notes": "整洁又精神,真聪明!没有属性加成。3015年2月订阅者物品", "armorMystery301703Text": "蒸汽朋克孔雀装礼服", @@ -742,6 +746,8 @@ "armorArmoireGlassblowersCoverallsNotes": "当你在用融化的热玻璃创造杰作时,这些连体工作服会保护你。增加 <%= con %> 点体质。魔法衣橱:玻璃吹制工套装(4件套中的第2件)", "armorArmoireBluePartyDressText": "蓝色派对裙", "armorArmoireBluePartyDressNotes": "你感觉灵敏、坚韧、聪明,并且非常时尚!增加感知、力量和体质各 <%= attrs %> 点。魔法衣橱:蓝色蝴蝶结发饰品套装(2件套中的第2件)", + "armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown", + "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Increases Perception by <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).", "headgear": "头饰", "headgearCapitalized": "头饰", "headBase0Text": "没有头盔", @@ -1054,6 +1060,8 @@ "headMystery201803Notes": "虽然它的外观非常具有装饰性,但你可以把翅膀放在这个头饰上以获得额外的升力!无属性加成。2018年3月捐赠者物品。", "headMystery201805Text": "华丽孔雀头盔", "headMystery201805Notes": "这顶头盔将让你成为镇上最自豪最漂亮的(也可能是最吵闹的)的鸟。无属性加成。 2018年5月捐赠者物品。", + "headMystery201806Text": "Alluring Anglerfish Helm", + "headMystery201806Notes": "The mesmerizing light atop this helm will call all the creatures of the sea to your side. We urge you to use your glowy powers of attraction for good! Confers no benefit. June 2018 Subscriber Item.", "headMystery301404Text": "华丽礼帽", "headMystery301404Notes": "上流社会佼佼者的华丽礼帽!3015年1月捐赠者物品。没有属性加成。", "headMystery301405Text": "基础礼帽", @@ -1154,6 +1162,8 @@ "headArmoireBigWigNotes": "有些扑粉假发是为了让人看起来更具权威性,但这顶只会让人发笑! 增加<%= str %>点力量。 魔法衣橱:独立装备。", "headArmoireGlassblowersHatText": "玻璃吹制工的帽子", "headArmoireGlassblowersHatNotes": "这顶帽子和你的其他作为防护的玻璃吹制工装备一起佩戴时看起来很不错! 通过。增加<%= per %>点感知。 魔法衣橱:玻璃吹制工套装(4件物品中的第3件)。", + "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress", + "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).", "offhand": "副手物品", "offhandCapitalized": "副手物品", "shieldBase0Text": "没有副手装备", @@ -1368,6 +1378,8 @@ "shieldArmoireFancyShoeNotes": "A very special shoe you're working on. It's fit for royalty! Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 3 of 3).", "shieldArmoireFancyBlownGlassVaseText": "Fancy Blown Glass Vase", "shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Increases Intelligence by <%= int %>. Enchanted Armoire: Glassblower Set (Item 4 of 4).", + "shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield", + "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).", "back": "背部挂件", "backCapitalized": "背部挂件", "backBase0Text": "没有背部挂件", diff --git a/website/common/locales/zh/groups.json b/website/common/locales/zh/groups.json index 07864a12dd..f74f8ccb4e 100644 --- a/website/common/locales/zh/groups.json +++ b/website/common/locales/zh/groups.json @@ -134,12 +134,11 @@ "PMPlaceholderDescription": "在左侧选择对话", "PMPlaceholderTitleRevoked": "您的聊天权利已被取消", "PMPlaceholderDescriptionRevoked": "您无法发送私信,因为您的聊天权限已被撤销。 如果您对此有任何疑问或疑虑,请发送电子邮件至 admin@habitica.com 与工作人员讨论。", - "PMEnable": "开启私信功能", - "PMDisable": "关闭私信功能", - "PMEnabledOptPopoverText": "当私信功能被关闭时,您仍然可以给他人发送私信,但是别人无法给您发送私信。", - "PMDisabledOptPopoverText": "启用此选项可以接收消息。", + "PMReceive": "Receive Private Messages", + "PMEnabledOptPopoverText": "Private Messages are enabled. Users can contact you via your profile.", + "PMDisabledOptPopoverText": "Private Messages are disabled. Enable this option to allow users to contact you via your profile.", "PMDisabledCaptionTitle": "私信功能已关闭", - "PMDisabledCaptionText": "您仍然可以发送消息,但没有人可以给您发送消息。", + "PMDisabledCaptionText": "You can still send messages, but no one can send them to you.", "block": "阻止", "unblock": "解锁", "pm-reply": "发送回复", diff --git a/website/common/locales/zh/limited.json b/website/common/locales/zh/limited.json index 01f1d9b748..fe434564e8 100644 --- a/website/common/locales/zh/limited.json +++ b/website/common/locales/zh/limited.json @@ -130,7 +130,7 @@ "dateEndApril": "4月19日", "dateEndMay": "5月31日", "dateEndJune": "6月14日", - "dateEndJuly": "7月29日", + "dateEndJuly": "July 31", "dateEndAugust": "8月31日", "dateEndOctober": "10月31日", "dateEndNovember": "11月30日", diff --git a/website/common/locales/zh/quests.json b/website/common/locales/zh/quests.json index a15d5a4e29..a389fbb8a5 100644 --- a/website/common/locales/zh/quests.json +++ b/website/common/locales/zh/quests.json @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "公会不能被邀请参加探索任务。", "questNotOwned": "你还没拥有那个探索任务卷轴。", "questNotGoldPurchasable": "探索任务\"<%= key %>\"不能用金币购买。", + "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", "questLevelTooHigh": "你必须达到等级<%= level %>来开始这个探索任务。", "questAlreadyUnderway": "你的队伍已经开始一个探索任务。当前探索任务结束后请再试一次。", "questAlreadyAccepted": "你已经接收探索任务邀请。", diff --git a/website/common/locales/zh/subscriber.json b/website/common/locales/zh/subscriber.json index b026016eea..6413218830 100644 --- a/website/common/locales/zh/subscriber.json +++ b/website/common/locales/zh/subscriber.json @@ -144,6 +144,7 @@ "mysterySet201803": "勇敢蜻蜓套装", "mysterySet201804": "漂亮的松鼠套装", "mysterySet201805": "华丽孔雀套装", + "mysterySet201806": "Alluring Anglerfish Set", "mysterySet301404": "蒸汽朋克标准套装", "mysterySet301405": "蒸汽朋克配饰套装", "mysterySet301703": "孔雀蒸汽朋克套装", diff --git a/website/common/locales/zh/tasks.json b/website/common/locales/zh/tasks.json index 2a227bf8b2..804a16f7d2 100644 --- a/website/common/locales/zh/tasks.json +++ b/website/common/locales/zh/tasks.json @@ -194,8 +194,6 @@ "weeks": "周", "year": "年", "years": "年", - "confirmScoreNotes": "通过标记确认任务分数", - "taskScoreNotesTooLong": "任务分数标记必须少于256", "groupTasksByChallenge": "将小组按挑战的标题归类", "taskNotes": "任务笔记", "monthlyRepeatHelpContent": "这个任务会每隔X月重复", diff --git a/website/common/locales/zh_TW/achievements.json b/website/common/locales/zh_TW/achievements.json index e4b8f46970..3dcd876ea3 100644 --- a/website/common/locales/zh_TW/achievements.json +++ b/website/common/locales/zh_TW/achievements.json @@ -1,8 +1,8 @@ { "share": "分享", "onwards": "繼續!", - "levelup": "透過完成你在現實生活中的目標,你現在升級並完全恢復了!", + "levelup": "透過完成你在現實生活中的目標,你現在已經升級並完全治癒了!", "reachedLevel": "你到達等級<%= level %>", - "achievementLostMasterclasser": "Quest Completionist: Masterclasser Series", - "achievementLostMasterclasserText": "Completed all sixteen quests in the Masterclasser Quest Series and solved the mystery of the Lost Masterclasser!" + "achievementLostMasterclasser": "任務終結者: 大師鑑別者系列", + "achievementLostMasterclasserText": "已完成大師鑑別者任務系列的6個任務,並解開了失傳的大師鑑別者的神秘面紗!!" } diff --git a/website/common/locales/zh_TW/backgrounds.json b/website/common/locales/zh_TW/backgrounds.json index 8235f1a9ab..95efaf6bd4 100644 --- a/website/common/locales/zh_TW/backgrounds.json +++ b/website/common/locales/zh_TW/backgrounds.json @@ -186,14 +186,14 @@ "backgroundDeepSeaNotes": "在深海中潛水。", "backgroundDilatoryCastleText": "拖延城堡", "backgroundDilatoryCastleNotes": "遊過拖延城堡。", - "backgrounds082016": "第27組:2016年8月推出", + "backgrounds082016": "第 27 組:2016 年 8 月推出", "backgroundIdyllicCabinText": "田園小屋", "backgroundIdyllicCabinNotes": "在田園小屋隱居", "backgroundMountainPyramidText": "山上的金字塔", "backgroundMountainPyramidNotes": "攀上階梯眾多的山上金字塔。", "backgroundStormyShipText": "暴風雨之船", "backgroundStormyShipNotes": "在暴風雨之船上與風和浪對抗。", - "backgrounds092016": "第28組:2016年9月推出", + "backgrounds092016": "第 28 組:2016 年 9 月推出", "backgroundCornfieldsText": "玉米田", "backgroundCornfieldsNotes": "在玉米田裡享受美好的一天。", "backgroundFarmhouseText": "農舍", @@ -207,7 +207,7 @@ "backgroundStrangeSewersNotes": "穿越一個詭異的下水道。", "backgroundRainyCityText": "雨幕之城", "backgroundRainyCityNotes": "通過一個多雨的城市。", - "backgrounds112016": "第 30 組:2016年11月推出", + "backgrounds112016": "第 30 組:2016 年 11 月推出", "backgroundMidnightCloudsText": "午夜雲霄", "backgroundMidnightCloudsNotes": "飛越午夜雲霄。", "backgroundStormyRooftopsText": "陰雲密布的屋頂", @@ -236,128 +236,135 @@ "backgroundWinterStorefrontNotes": "在冬季商店中購買禮物。", "backgrounds012017": "第 32 組:2017 年 1 月推出", "backgroundBlizzardText": "暴風雪", - "backgroundBlizzardNotes": "勇敢的去面對恐怖的暴風雪", + "backgroundBlizzardNotes": "勇敢的去面對恐怖的暴風雪。", "backgroundSparklingSnowflakeText": "閃閃發光的雪花", - "backgroundSparklingSnowflakeNotes": "在閃閃發亮的雪花上滑行", + "backgroundSparklingSnowflakeNotes": "在閃閃發亮的雪花上滑行。", "backgroundStoikalmVolcanoesText": "Stoïkalm火山", - "backgroundStoikalmVolcanoesNotes": "探索Stoïkalm火山", - "backgrounds022017": "第33組:2017年2月推出", + "backgroundStoikalmVolcanoesNotes": "探索Stoïkalm火山。", + "backgrounds022017": "第33組:2017 年 2 月推出", "backgroundBellTowerText": "鐘樓", "backgroundBellTowerNotes": "爬到鐘塔頂端吧!", "backgroundTreasureRoomText": "藏寶庫", "backgroundTreasureRoomNotes": "在藏寶庫中閃閃發光!", "backgroundWeddingArchText": "鮮花拱門", "backgroundWeddingArchNotes": "在鮮花拱門下擺 Pose!", - "backgrounds032017": "第34組: 2017年三月推出", + "backgrounds032017": "第34組: 2017 年 3 月推出", "backgroundMagicBeanstalkText": "魔法豌豆樹", "backgroundMagicBeanstalkNotes": "爬上巨大的魔法豌豆樹吧!", "backgroundMeanderingCaveText": "蜿蜒洞窟", "backgroundMeanderingCaveNotes": "在蜿蜒洞窟中探險", "backgroundMistiflyingCircusText": "神秘馬戲團", "backgroundMistiflyingCircusNotes": "在神秘馬戲團中盡情玩耍", - "backgrounds042017": "第35組: 2017年4月推出", + "backgrounds042017": "第 35 組: 2017 年 4 月推出", "backgroundBugCoveredLogText": "爬滿蟲子的原木", "backgroundBugCoveredLogNotes": "調查爬滿蟲子的原木", "backgroundGiantBirdhouseText": "巨大的鳥屋", "backgroundGiantBirdhouseNotes": "棲息在巨大的鳥屋", "backgroundMistShroudedMountainText": "雲霧繚繞的山鋒", "backgroundMistShroudedMountainNotes": "雲霧繚繞的山鋒頂端", - "backgrounds052017": "第36組: 2017年五月推出", + "backgrounds052017": "第 36 組: 2017 年 5 月推出", "backgroundGuardianStatuesText": "守護者石像", "backgroundGuardianStatuesNotes": "在守護者石像前守夜", "backgroundHabitCityStreetsText": "習慣城市的街道", "backgroundHabitCityStreetsNotes": "探索習慣城市的街道", "backgroundOnATreeBranchText": "在樹的分支上", "backgroundOnATreeBranchNotes": "棲息在樹枝上", - "backgrounds062017": "第37組: 2017年六月推出", + "backgrounds062017": "第 37 組: 2017 年 6 月推出", "backgroundBuriedTreasureText": "埋藏的珍寶", "backgroundBuriedTreasureNotes": "發覺被埋藏的珍寶", "backgroundOceanSunriseText": "海洋日出", "backgroundOceanSunriseNotes": "欣賞海洋日出", "backgroundSandcastleText": "沙堡", "backgroundSandcastleNotes": "統治一座沙堡", - "backgrounds072017": "第38組: 2017年七月推出", + "backgrounds072017": "第 38 組: 2017 年 7 月推出", "backgroundGiantSeashellText": "巨大的貝殼", "backgroundGiantSeashellNotes": "在巨大的貝殼裡面閒逛", "backgroundKelpForestText": "海草森林", "backgroundKelpForestNotes": "在海草森林之間悠遊。", "backgroundMidnightLakeText": "午夜湖畔", "backgroundMidnightLakeNotes": "在午夜湖畔旁小憩。", - "backgrounds082017": "第39組: 2017年八月推出", + "backgrounds082017": "第 39 組: 2017 年 8 月推出", "backgroundBackOfGiantBeastText": "巨獸背脊", "backgroundBackOfGiantBeastNotes": "騎乘在巨獸背脊上。", "backgroundDesertDunesText": "沙漠之丘", "backgroundDesertDunesNotes": "在沙漠之丘無畏探索。", "backgroundSummerFireworksText": "夏季煙火", "backgroundSummerFireworksNotes": "伴隨夏季煙火慶祝Habitica的命名日!", - "backgrounds092017": "第40組: 2017年九月推出", - "backgroundBesideWellText": "Beside a Well", - "backgroundBesideWellNotes": "Stroll Beside a Well.", - "backgroundGardenShedText": "Garden Shed", - "backgroundGardenShedNotes": "Work in a Garden Shed.", - "backgroundPixelistsWorkshopText": "Pixelist's Workshop", - "backgroundPixelistsWorkshopNotes": "Create masterpieces in the Pixelist's Workshop.", - "backgrounds102017": "第41組: 2017年十月推出", - "backgroundMagicalCandlesText": "Magical Candles", - "backgroundMagicalCandlesNotes": "Bask in the glow of Magical Candles.", - "backgroundSpookyHotelText": "Spooky Hotel", - "backgroundSpookyHotelNotes": "Sneak down the hall of a Spooky Hotel.", - "backgroundTarPitsText": "Tar Pits", - "backgroundTarPitsNotes": "Tiptoe through the Tar Pits.", - "backgrounds112017": "SET 42: Released November 2017", - "backgroundFiberArtsRoomText": "Fiber Arts Room", - "backgroundFiberArtsRoomNotes": "Spin thread in a Fiber Arts Room.", - "backgroundMidnightCastleText": "Midnight Castle", - "backgroundMidnightCastleNotes": "Stroll by the Midnight Castle.", - "backgroundTornadoText": "Tornado", - "backgroundTornadoNotes": "Fly through a Tornado.", - "backgrounds122017": "SET 43: Released December 2017", - "backgroundCrosscountrySkiTrailText": "Cross-Country Ski Trail", - "backgroundCrosscountrySkiTrailNotes": "Glide along a Cross-Country Ski Trail.", - "backgroundStarryWinterNightText": "Starry Winter Night", - "backgroundStarryWinterNightNotes": "Admire a Starry Winter Night.", - "backgroundToymakersWorkshopText": "Toymaker's Workshop", - "backgroundToymakersWorkshopNotes": "Bask in the wonder of a Toymaker's Workshop.", - "backgrounds012018": "SET 44: Released January 2018", - "backgroundAuroraText": "Aurora", - "backgroundAuroraNotes": "Bask in the wintry glow of an Aurora.", - "backgroundDrivingASleighText": "Sleigh", - "backgroundDrivingASleighNotes": "Drive a Sleigh over snow-covered fields.", - "backgroundFlyingOverIcySteppesText": "Icy Steppes", - "backgroundFlyingOverIcySteppesNotes": "Fly over Icy Steppes.", - "backgrounds022018": "SET 45: Released February 2018", - "backgroundChessboardLandText": "Chessboard Land", - "backgroundChessboardLandNotes": "Play a game in Chessboard Land.", - "backgroundMagicalMuseumText": "Magical Museum", - "backgroundMagicalMuseumNotes": "Tour a Magical Museum.", - "backgroundRoseGardenText": "Rose Garden", - "backgroundRoseGardenNotes": "Dally in a fragrant Rose Garden.", - "backgrounds032018": "SET 46: Released March 2018", - "backgroundGorgeousGreenhouseText": "Gorgeous Greenhouse", - "backgroundGorgeousGreenhouseNotes": "Walk among the flora kept in a Gorgeous Greenhouse.", - "backgroundElegantBalconyText": "Elegant Balcony", - "backgroundElegantBalconyNotes": "Look out over the landscape from an Elegant Balcony.", - "backgroundDrivingACoachText": "Driving a Coach", - "backgroundDrivingACoachNotes": "Enjoy Driving a Coach past fields of flowers.", - "backgrounds042018": "SET 47: Released April 2018", - "backgroundTulipGardenText": "Tulip Garden", - "backgroundTulipGardenNotes": "Tiptoe through a Tulip Garden.", - "backgroundFlyingOverWildflowerFieldText": "Field of Wildflowers", - "backgroundFlyingOverWildflowerFieldNotes": "Soar above a Field of Wildflowers.", - "backgroundFlyingOverAncientForestText": "Ancient Forest", - "backgroundFlyingOverAncientForestNotes": "Fly over the canopy of an Ancient Forest.", - "backgrounds052018": "SET 48: Released May 2018", - "backgroundTerracedRiceFieldText": "Terraced Rice Field", - "backgroundTerracedRiceFieldNotes": "Enjoy a Terraced Rice Field in the growing season.", - "backgroundFantasticalShoeStoreText": "Fantastical Shoe Store", - "backgroundFantasticalShoeStoreNotes": "Look for fun new footwear in the Fantastical Shoe Store.", - "backgroundChampionsColosseumText": "Champions' Colosseum", - "backgroundChampionsColosseumNotes": "Bask in the glory of the Champions' Colosseum.", - "backgrounds062018": "第49組:2018年六月推出", + "backgrounds092017": "第 40 組: 2017 年 9 月推出", + "backgroundBesideWellText": "在古井邊", + "backgroundBesideWellNotes": "在古井邊散步。", + "backgroundGardenShedText": "園藝小棚", + "backgroundGardenShedNotes": "在園藝小棚內工作", + "backgroundPixelistsWorkshopText": "畫作工作室", + "backgroundPixelistsWorkshopNotes": "在畫作工作室裡創造曠世巨作", + "backgrounds102017": "第 41 組: 2017 年 10 月推出", + "backgroundMagicalCandlesText": "神秘蠟燭", + "backgroundMagicalCandlesNotes": "在一閃一閃的神祕蠟燭中取暖。", + "backgroundSpookyHotelText": "驚魂旅社", + "backgroundSpookyHotelNotes": "潛行於驚魂旅社的大廳。", + "backgroundTarPitsText": "焦油坑", + "backgroundTarPitsNotes": "在焦油坑上躡手躡腳地行走。", + "backgrounds112017": "第 42 組: 2017 年 11 月推出", + "backgroundFiberArtsRoomText": "纖維藝術室", + "backgroundFiberArtsRoomNotes": "在纖維藝術室中紡織。", + "backgroundMidnightCastleText": "午夜城堡", + "backgroundMidnightCastleNotes": "在午夜城堡漫步。", + "backgroundTornadoText": "巨無霸龍捲風", + "backgroundTornadoNotes": "飛越巨無霸龍捲風。", + "backgrounds122017": "第 43 組:2017 年 12 月推出", + "backgroundCrosscountrySkiTrailText": "跨國滑雪道", + "backgroundCrosscountrySkiTrailNotes": "沿著跨國滑雪道滑行。", + "backgroundStarryWinterNightText": "星光閃閃的冬夜", + "backgroundStarryWinterNightNotes": "欣賞一個星光閃閃的冬夜。", + "backgroundToymakersWorkshopText": "玩具工作坊", + "backgroundToymakersWorkshopNotes": "沐浴在驚奇的玩具工作坊。", + "backgrounds012018": "第 44 組:2018 年 1 月推出", + "backgroundAuroraText": "極光", + "backgroundAuroraNotes": "沐浴在極光寒冷的光芒下。", + "backgroundDrivingASleighText": "雪橇", + "backgroundDrivingASleighNotes": "在雪地上駕著雪橇。", + "backgroundFlyingOverIcySteppesText": "冰冷的乾草原", + "backgroundFlyingOverIcySteppesNotes": "飛越冰冷的乾草原。", + "backgrounds022018": "第 45 組:2018 年 2 月推出", + "backgroundChessboardLandText": "棋盤王國", + "backgroundChessboardLandNotes": "在棋盤王國中下一盤棋。", + "backgroundMagicalMuseumText": "魔法博物館", + "backgroundMagicalMuseumNotes": "參觀魔法博物館。", + "backgroundRoseGardenText": "玫瑰園", + "backgroundRoseGardenNotes": "在香氣四溢的玫瑰園裡嬉戲。", + "backgrounds032018": "第 46 組:2018 年 3 月推出", + "backgroundGorgeousGreenhouseText": "華麗溫室", + "backgroundGorgeousGreenhouseNotes": "漫步於華麗溫室裡培育的花卉。", + "backgroundElegantBalconyText": "高雅陽台", + "backgroundElegantBalconyNotes": "從高雅陽台向外眺望風景。", + "backgroundDrivingACoachText": "駕駛四輪大馬車", + "backgroundDrivingACoachNotes": "享受邊駕駛四輪大馬車邊穿越一朵朵的鮮花。", + "backgrounds042018": "第 47 組:2018 年 4 月推出", + "backgroundTulipGardenText": "鬱金香花園", + "backgroundTulipGardenNotes": "踩踏走過鬱金香花園。", + "backgroundFlyingOverWildflowerFieldText": "一片野花", + "backgroundFlyingOverWildflowerFieldNotes": "在一片野花上方翱翔。", + "backgroundFlyingOverAncientForestText": "古老的森林", + "backgroundFlyingOverAncientForestNotes": "飛越古老的森林天篷。", + "backgrounds052018": "第 48 組:2018 年 5 月推出", + "backgroundTerracedRiceFieldText": "水稻梯田", + "backgroundTerracedRiceFieldNotes": "在生長的季節享受水稻梯田。", + "backgroundFantasticalShoeStoreText": "夢幻鞋店", + "backgroundFantasticalShoeStoreNotes": "在夢幻鞋店中尋找有趣的新球鞋。", + "backgroundChampionsColosseumText": "冠軍競技場", + "backgroundChampionsColosseumNotes": "沉浸於冠軍競技場的榮耀之中。", + "backgrounds062018": "第 49 組:2018 年 6 月推出", "backgroundDocksText": "碼頭", "backgroundDocksNotes": "在碼頭上釣魚。", "backgroundRowboatText": "小船", - "backgroundRowboatNotes": "在小船中歌唱幾輪。", + "backgroundRowboatNotes": "在小船上輪流K歌。", "backgroundPirateFlagText": "海盜旗", - "backgroundPirateFlagNotes": "揚起嚇人的海盜旗。" + "backgroundPirateFlagNotes": "揚起令人生畏的海盜旗。", + "backgrounds072018": "第 50 組:2018 年 7 月推出", + "backgroundDarkDeepText": "深海", + "backgroundDarkDeepNotes": "在深海裡游經許多會發光生物。", + "backgroundDilatoryCityText": "慢吞吞城市", + "backgroundDilatoryCityNotes": "漫步在海底中的慢吞吞城市。", + "backgroundTidePoolText": "潮汐池", + "backgroundTidePoolNotes": "在潮汐池邊發現了許許多多的海洋生物!!" } \ No newline at end of file diff --git a/website/common/locales/zh_TW/challenge.json b/website/common/locales/zh_TW/challenge.json index c06168aeb9..7dc04398a6 100644 --- a/website/common/locales/zh_TW/challenge.json +++ b/website/common/locales/zh_TW/challenge.json @@ -1,6 +1,6 @@ { "challenge": "挑戰", - "challengeDetails": "挑戰是一種社群活動,玩家可以完成一系列相關任務來彼此競爭並贏得獎品。", + "challengeDetails": "挑戰是一種社群活動,玩家可以透過完成一系列的相關任務來參與競爭並贏得獎勵。", "brokenChaLink": "無效的挑戰連結", "brokenTask": "無效的挑戰連結:這項任務本來是一個挑戰的一部份,但是此任務已從該挑戰中移除了。你想怎樣做?", "keepIt": "保留", @@ -14,7 +14,7 @@ "challenges": "挑戰", "challengesLink": "挑戰", "challengePrize": "挑戰獎品", - "endDate": "Ends", + "endDate": "結束", "noChallenges": "還沒有挑戰,探訪", "toCreate": "去建立一個。", "selectWinner": "選一位贏家然後結束挑戰:", diff --git a/website/common/locales/zh_TW/character.json b/website/common/locales/zh_TW/character.json index 72bd39973f..052a3dab68 100644 --- a/website/common/locales/zh_TW/character.json +++ b/website/common/locales/zh_TW/character.json @@ -1,9 +1,9 @@ { - "communityGuidelinesWarning": "請記得你的角色名稱,簡介頭像以及簡介內容必須遵守使用者規範(比如說:不可有猥褻行為、不可有成人議題、不可汙辱他人等等)。如果你不確定某些事有沒有合乎規定,歡迎來信到 <%= hrefCommunityManagerEmail %>!", + "communityGuidelinesWarning": "請記得你的角色名稱,簡介照片以及簡介內容必須遵守使用者規範(比如說:不可有猥褻行為、不可有成人議題、不可汙辱他人等等)。如果你不確定某些事有沒有合乎規定,歡迎寫信到 <%= hrefBlankCommunityManagerEmail %>!", "profile": "基本資料", "avatar": "客制化角色圖像", "editAvatar": "編輯角色", - "noDescription": "此 Habitica 玩家未新增說明。", + "noDescription": "此 Habitica 玩家未新增介紹。", "noPhoto": "此 Habitica 玩家未新增相片。", "other": "其他", "fullName": "全名", @@ -45,7 +45,7 @@ "beard": "落腮鬍", "mustache": "八字鬍", "flower": "花朵", - "accent": "Accent", + "accent": "首飾", "headband": "髮箍", "wheelchair": "輪椅", "extra": "其他", @@ -63,7 +63,7 @@ "equipment": "裝備", "equipmentBonus": "裝備", "equipmentBonusText": "裝備中的戰鬥裝備會提供屬性加成獎勵。在背包底下的裝備分頁中可以選擇你的戰鬥裝備。", - "classBonusText": "你的職業(戰士,如果你還沒解鎖或選擇其他職業)比起其他職業的戰鬥裝備,能夠更有效地使用自己職業的裝備。穿著和你現在職業相同的裝備會提供50%的屬性加成獎勵提升。", + "classBonusText": "你的職業(戰士,當你還沒解鎖或選擇其他職業時)比起其他職業的戰鬥裝備,能夠更有效地使用自己職業的裝備。穿著和你現在職業相同的裝備會提供50%的屬性加成獎勵提升。", "classEquipBonus": "職業加成", "battleGear": "戰鬥裝備", "gear": "裝備", @@ -72,16 +72,16 @@ "costume": "服裝", "costumeText": "如果你覺得其他裝備的外觀更勝於你現在的裝備,勾選「使用服裝」框穿上想被看到的服裝,而你不會看到戰鬥裝備。", "useCostume": "使用服裝", - "useCostumeInfo1": "Click \"Use Costume\" to equip items to your avatar without affecting the Stats from your Battle Gear! This means that you can equip for the best Stats on the left, and dress up your avatar with your equipment on the right.", - "useCostumeInfo2": "Once you click \"Use Costume\" your avatar will look pretty basic... but don't worry! If you look on the left, you'll see that your Battle Gear is still equipped. Next, you can make things fancy! Anything you equip on the right won't affect your Stats, but can make you look super awesome. Try out different combos, mixing sets, and coordinating your Costume with your pets, mounts, and backgrounds.

Got more questions? Check out the Costume page on the wiki. Find the perfect ensemble? Show it off in the Costume Carnival guild or brag in the Tavern!", - "costumePopoverText": "Select \"Use Costume\" to equip items to your avatar without affecting the Stats from your Battle Gear! This means that you can dress up your avatar in whatever outfit you like while still having your best Battle Gear equipped.", + "useCostumeInfo1": "點擊「使用服裝」來更換角色圖像的裝備,且不影響你的戰鬥裝備的數值。所以你可以在左欄裝備你最強屬性的裝備;同時在右欄為你的人物穿上最好看的服裝。", + "useCostumeInfo2": "當你點擊「使用服裝」,你的頭像會變回非常\"基礎\"...但是別擔心! 如果你看一下左欄,你會發現你的戰鬥裝備仍是裝配著的。接著,就可以開始精心設計你的服裝了! 你在右欄裝備的任何服裝都將不會影響你的數值,但你卻會看起來更酷! 試試不同的組合、混合搭配,並依據你的寵物、坐騎、背景來搭配。

還有更多問題? 到Wiki上的服裝頁面。已經找到最好看的服裝搭配了嗎?請到服裝嘉年華公會或到酒館裡炫耀一番吧!", + "costumePopoverText": "選擇「使用服裝」來更會角色圖像上的裝備,且不影響你的戰鬥裝備的數值。這意味著你可以在右欄為你的人物穿上最好看的服裝,同時仍使用著最強的戰鬥裝備。", "autoEquipPopoverText": "選取此選項以在您購買裝備後自動穿上。", "costumeDisabled": "您已停用服裝。", "gearAchievement": "你已達成「終極裝備」成就:升級到職業的最高裝備!你已完成以下組合:", "moreGearAchievements": "想獲得更多終極裝備徽章,可在設定 > 網站頁面變更職業並購買新職業的裝備!", - "armoireUnlocked": "獲得更多的裝備請購買神秘寶箱! 點擊神秘寶箱可獲得隨機的特殊裝備!!也有可能是獲得隨機的經驗值或是食物。", + "armoireUnlocked": "獲得更多的裝備請購買神秘寶箱! 點擊神秘寶箱可獲得隨機的特殊裝備!!也有可能會獲得隨機的經驗值或是食物。", "ultimGearName": "終極裝備 - <%= ultClass %>", - "ultimGearText": "已經升級到 <%= ultClass %> 的最高武器和盔甲。", + "ultimGearText": "已經將 <%= ultClass %>職業的武器與盔甲組合升級到滿等了!!", "level": "等級", "levelUp": "升級了!", "gainedLevel": "你升級了!", @@ -94,18 +94,18 @@ "xp": "經驗值", "health": "生命值", "allocateStr": "分配給力量的屬性點:", - "allocateStrPop": "增加一點力量", + "allocateStrPop": "增加力量屬性點一點", "allocateCon": "分配給體質的屬性點:", - "allocateConPop": "增加一點體質", + "allocateConPop": "增加體質屬性點一點", "allocatePer": "分配給感知的屬性點:", - "allocatePerPop": "增加一點感知", + "allocatePerPop": "增加感知屬性點一點", "allocateInt": "分配給智力的屬性點:", - "allocateIntPop": "增加一點智力", - "noMoreAllocate": "Now that you've hit level 100, you won't gain any more Stat Points. You can continue leveling up, or start a new adventure at level 1 by using the Orb of Rebirth, now available for free in the Market.", + "allocateIntPop": "增加智力屬性點一點", + "noMoreAllocate": "現在你已達到100等,你將不會再得到任何的屬性點。你仍可以繼續升級,或者使用重生球從1等開始另一個新的旅程。重生球在市場可免費獲得。", "stats": "狀態統計", "achievs": "成就", "strength": "力量", - "strText": "力量會增加「會心一擊」的機率,而會心一擊時會提升金幣、經驗和物品掉落的機率。力量還能幫助你傷害 BOSS。", + "strText": "力量會增加「會心一擊」、金幣、經驗和物品掉落的機率。力量還能幫助你攻擊傷害 BOSS。", "constitution": "體質", "conText": "體質會降低壞習慣和未達成的每日任務造成的傷害。", "perception": "感知", @@ -115,10 +115,10 @@ "levelBonus": "等級加成", "levelBonusText": "每個屬性會獲得相當於(你的等級-1)的一半的加成獎勵。", "allocatedPoints": "已分配的屬性點", - "allocatedPointsText": "Stat Points you've earned and assigned. Assign Points using the Character Build column.", + "allocatedPointsText": "統計你獲得且已分配的屬性點。依據角色設定欄位來分配你的屬性點。", "allocated": "已分配", "buffs": "增益魔法", - "buffsText": "Temporary Stat bonuses from abilities and achievements. These wear off at the end of your day. The abilities you've unlocked appear in the Rewards list of your Tasks page.", + "buffsText": "從你的技能和成就中獲得的暫時性屬性加成。這些都將隨著當天的結束而消失。你目前解鎖的技能將出現再任務頁面的獎勵欄裡。", "characterBuild": "角色建立", "class": "職業", "experience": "經驗值", @@ -128,23 +128,23 @@ "mage": "法師", "wizard": "法師", "mystery": "神秘", - "changeClass": "Change Class, Refund Stat Points", + "changeClass": "該換職業、退還屬性點", "lvl10ChangeClass": "你必須達到10級才能改變職業。", - "changeClassConfirmCost": "確定要用 3 個寶石變更您的職業嗎?", - "invalidClass": "此職業不存在。請指定\"戰士\"、\"盜賊\"、\"法師\"、或\"醫者\"。", - "levelPopover": "Each level earns you one Point to assign to a Stat of your choice. You can do so manually, or let the game decide for you using one of the Automatic Allocation options.", - "unallocated": "未分配屬性點", + "changeClassConfirmCost": "確定要花費 3 個寶石來變更您的職業嗎?", + "invalidClass": "此職業不存在。請指定\"戰士\"、\"盜賊\"、\"法師\" 或是 \"醫者\"。", + "levelPopover": "每一次升等,你將獲得一點可自由分配的屬性點。你可以手動選擇,或是讓系統依據其中一種分配規則來自種分配屬性點。", + "unallocated": "未分配的屬性點", "haveUnallocated": "你有<%= points %>點未分配屬性點", "autoAllocation": "自動分配", - "autoAllocationPop": "Places Points into Stats according to your preferences, when you level up.", - "evenAllocation": "Distribute Stat Points evenly", - "evenAllocationPop": "Assigns the same number of Points to each Stat.", - "classAllocation": "Distribute Points based on Class", - "classAllocationPop": "Assigns more Points to the Stats important to your Class.", - "taskAllocation": "Distribute Points based on task activity", - "taskAllocationPop": "Assigns Points based on the Strength, Intelligence, Constitution, and Perception categories associated with the tasks you complete.", + "autoAllocationPop": "升等後,請依照你的喜好分配屬性點。", + "evenAllocation": "平均分配屬性點", + "evenAllocationPop": "所有屬性平均分配屬性點。", + "classAllocation": "根據職業分配屬性點", + "classAllocationPop": "分配更多的屬性點到對你的職業較重要的屬性", + "taskAllocation": "根據任務分配屬性點", + "taskAllocationPop": "根據你完成的任務所關聯的特質分配屬性點。", "distributePoints": "分配未使用的屬性點", - "distributePointsPop": "Assigns all unallocated Stat Points according to the selected allocation scheme.", + "distributePointsPop": "根據你所選擇的方法來分配所有尚未分配的屬性點", "warriorText": "戰士有更大的機率觸發「會心一擊」,並在完成任務時隨機獲得額外的金幣、經驗和掉落率。他們還能對 Boss造成嚴重的傷害。如果你希望獲得隨機的高額獎勵,或者在 Boss任務中重創 Boss,來玩戰士吧!", "wizardText": "法師學習迅速,經驗值獲取和升級比其他職業來得快。他們也擁有用以施展特殊技能的大量魔力。如果您喜歡 Habitica 的遊戲策略性,或者升級和解鎖進階功能可讓您抱有強大動力,就玩法師吧!", "mageText": "法師學習迅速,經驗值獲取和升級比其他職業來得快。他們也擁有用以施展特殊技能的大量魔力。如果您喜歡 Habitica 的遊戲策略性,或者升級和解鎖進階功能可讓您抱有強大動力,就玩法師吧!", @@ -154,7 +154,7 @@ "optOutOfPMs": "暫時不選擇", "chooseClass": "選擇您的職業", "chooseClassLearnMarkdown": "[了解關於 Habitica 職業系統的更多資訊](http://habitica.wikia.com/wiki/Class_System)", - "optOutOfClassesText": "懶得選職業嗎?想晚點再決定嗎?可以暫時不選擇 - 您將會是戰士而沒有特別技能。可以在之後到遊戲維基了解職業系統,並隨時在使用者圖示 > 設定中啟用職業。", + "optOutOfClassesText": "懶得選職業嗎?想晚點再決定嗎?可以暫時不選擇 - 您將成為戰士且沒有任何特別技能。您之後可到wiki了解職業系統,並隨時在使用者圖示 > 設定中啟用職業。", "selectClass": "選擇<%= heroClass %>", "select": "選擇", "stealth": "匿蹤", @@ -164,9 +164,9 @@ "respawn": "重生!", "youDied": "你死了!", "dieText": "你已經失去了一個等級,你所有的金幣,和隨機一件裝備。起來,Habit公民,然後再試一次!遏制這些負面的習慣,慎加的完成每日任務,並當你虛弱時持有讓死亡敬而遠之的治療藥水!", - "sureReset": "Are you sure? This will reset your character's class and allocated Stat Points (you'll get them all back to re-allocate), and costs 3 Gems.", + "sureReset": "你確定嗎? 這將會重置你的角色職業和已分配的屬性點數(您可重新分配)。這需要花費 3 顆鑽石。", "purchaseFor": "花費 <%= cost %> 顆寶石嗎?", - "purchaseForHourglasses": "Purchase for <%= cost %> Hourglasses?", + "purchaseForHourglasses": "花費<%= cost %>個沙漏嗎?", "notEnoughMana": "魔力不足。", "invalidTarget": "無法在此目標施展法術。", "youCast": "你施放了 <%= spell %>。", @@ -202,7 +202,7 @@ "int": "智力", "showQuickAllocation": "顯示屬性分配", "hideQuickAllocation": "隱藏屬性分配", - "quickAllocationLevelPopover": "Each level earns you one Point to assign to a Stat of your choice. You can do so manually, or let the game decide for you using one of the Automatic Allocation options found in User Icon > Stats.", + "quickAllocationLevelPopover": "每一次升等,你將獲得一點可自由分配的屬性點。你可以手動選擇,或是讓系統依據在玩家圖像>屬性 中的其中一種分配規則來自種分配屬性點。", "notEnoughAttrPoints": "你沒足夠的屬性點。", "style": "樣式", "facialhair": "臉部", @@ -215,7 +215,7 @@ "challengesWon": "獲勝的挑戰", "questsCompleted": "完成的任務", "headAccess": "頭部裝飾", - "backAccess": "後背附件", + "backAccess": "後背裝飾", "bodyAccess": "身體配件", "mainHand": "主手", "offHand": "副手", diff --git a/website/common/locales/zh_TW/communityguidelines.json b/website/common/locales/zh_TW/communityguidelines.json index 9021bcf686..c7b8d89dff 100644 --- a/website/common/locales/zh_TW/communityguidelines.json +++ b/website/common/locales/zh_TW/communityguidelines.json @@ -1,128 +1,128 @@ { "iAcceptCommunityGuidelines": "我願意遵守社群守則", - "tavernCommunityGuidelinesPlaceholder": "友情提示:這裡的討論適合所有年齡層,所以請保持適當的內容和言語!如果你有問題,請查閱以下社區指南。", + "tavernCommunityGuidelinesPlaceholder": "友情提示:這裡的討論適合所有年齡層,所以請保持適當的內容和言語!如果您有任何問題,歡迎查閱側邊欄位的社區指南。", "lastUpdated": "最後更新:", "commGuideHeadingWelcome": "歡迎來到 Habitica!", - "commGuidePara001": "你好,冒險者!歡迎來到Habitica,生產力、健康生活與偶有狂暴獅鷲之地。我們有愉快的社區,充滿樂於助人之人,彼此扶持並藉此自我提昇。想要參與,你需要的只是積極的態度,恭敬的舉止,以及理解每個都擁有不同的技能與極限——包括你!Habitican們要對他人有耐心,盡可能地幫助他們。", - "commGuidePara002": "To help keep everyone safe, happy, and productive in the community, we do have some guidelines. We have carefully crafted them to make them as friendly and easy-to-read as possible. Please take the time to read them before you start chatting.", + "commGuidePara001": "您好,冒險者!歡迎來到Habitica,這是個生產力、健康生活、偶有狂暴獅鷲的土地。我們有個愉快的社群,到處充滿著樂於助人的好公民,彼此扶持並藉此自我提昇。要融入這裡,您只需態度積極上進、尊重他人,以及能理解每個都擁有不同的長處與短處——包括你自己!Habitica的公民待人耐心,只要有能力就會盡力幫助。", + "commGuidePara002": "為了保證每個人在社區中都是安全、快樂、高生產力的,我們確實有一些準則需要遵守。我們謹慎地制定規則,使其盡可能對每個人皆友善且易讀。請在開始聊天之前花點時間閱讀它們。", "commGuidePara003": "這些規則適用在屬於我們的所有社群空間(但也不只限於此),包括 Trello, GitHub, Transifex 以及 Wikia (也就是我們的維基)。有時候會出現一些前所未見的狀況,例如新的衝突或是邪惡的亡靈法師。當這些情況發生,管理員們可能會修改這些指導原則以確保整個社群平安。別擔心,假如指導原則有所更動,Bailey 會發布公告來通知你。", "commGuidePara004": "拿起你的羽毛筆跟羊皮卷軸,準備做筆記吧!", - "commGuideHeadingInteractions": "Habitica中的互動", - "commGuidePara015": "Habitica has two kinds of social spaces: public, and private. Public spaces include the Tavern, Public Guilds, GitHub, Trello, and the Wiki. Private spaces are Private Guilds, Party chat, and Private Messages. All Display Names must comply with the public space guidelines. To change your Display Name, go on the website to User > Profile and click on the \"Edit\" button.", - "commGuidePara016": "當你在 Habitica 的公共空間四處逛逛時,請務必遵守某些普通規則,好確保大家的安全與快樂。對於像你這樣的冒險者而言,想必是易如反掌!", - "commGuideList02A": "Respect each other. Be courteous, kind, friendly, and helpful. Remember: Habiticans come from all backgrounds and have had wildly divergent experiences. This is part of what makes Habitica so cool! Building a community means respecting and celebrating our differences as well as our similarities. Here are some easy ways to respect each other:", - "commGuideList02B": "Obey all of the Terms and Conditions.", - "commGuideList02C": "Do not post images or text that are violent, threatening, or sexually explicit/suggestive, or that promote discrimination, bigotry, racism, sexism, hatred, harassment or harm against any individual or group. Not even as a joke. This includes slurs as well as statements. Not everyone has the same sense of humor, and so something that you consider a joke may be hurtful to another. Attack your Dailies, not each other.", - "commGuideList02D": "Keep discussions appropriate for all ages. We have many young Habiticans who use the site! Let's not tarnish any innocents or hinder any Habiticans in their goals.", - "commGuideList02E": "Avoid profanity. This includes milder, religious-based oaths that may be acceptable elsewhere. We have people from all religious and cultural backgrounds, and we want to make sure that all of them feel comfortable in public spaces. If a moderator or staff member tells you that a term is disallowed on Habitica, even if it is a term that you did not realize was problematic, that decision is final. Additionally, slurs will be dealt with very severely, as they are also a violation of the Terms of Service.", - "commGuideList02F": "Avoid extended discussions of divisive topics in the Tavern and where it would be off-topic. If you feel that someone has said something rude or hurtful, do not engage them. If someone mentions something that is allowed by the guidelines but which is hurtful to you, it’s okay to politely let someone know that. If it is against the guidelines or the Terms of Service, you should flag it and let a mod respond. When in doubt, flag the post.", - "commGuideList02G": "Comply immediately with any Mod request. This could include, but is not limited to, requesting you limit your posts in a particular space, editing your profile to remove unsuitable content, asking you to move your discussion to a more suitable space, etc.", - "commGuideList02H": "Take time to reflect instead of responding in anger if someone tells you that something you said or did made them uncomfortable. There is great strength in being able to sincerely apologize to someone. If you feel that the way they responded to you was inappropriate, contact a mod rather than calling them out on it publicly.", - "commGuideList02I": "Divisive/contentious conversations should be reported to mods by flagging the messages involved or using the Moderator Contact Form. If you feel that a conversation is getting heated, overly emotional, or hurtful, cease to engage. Instead, report the posts to let us know about it. Moderators will respond as quickly as possible. It's our job to keep you safe. If you feel that more context is required, you can report the problem using the Moderator Contact Form.", - "commGuideList02J": "Do not spam. Spamming may include, but is not limited to: posting the same comment or query in multiple places, posting links without explanation or context, posting nonsensical messages, posting multiple promotional messages about a Guild, Party or Challenge, or posting many messages in a row. Asking for gems or a subscription in any of the chat spaces or via Private Message is also considered spamming. If people clicking on a link will result in any benefit to you, you need to disclose that in the text of your message or that will also be considered spam.

It is up to the mods to decide if something constitutes spam or might lead to spam, even if you don’t feel that you have been spamming. For example, advertising a Guild is acceptable once or twice, but multiple posts in one day would probably constitute spam, no matter how useful the Guild is!", - "commGuideList02K": "Avoid posting large header text in the public chat spaces, particularly the Tavern. Much like ALL CAPS, it reads as if you were yelling, and interferes with the comfortable atmosphere.", - "commGuideList02L": "We highly discourage the exchange of personal information -- particularly information that can be used to identify you -- in public chat spaces. Identifying information can include but is not limited to: your address, your email address, and your API token/password. This is for your safety! Staff or moderators may remove such posts at their discretion. If you are asked for personal information in a private Guild, Party, or PM, we highly recommend that you politely refuse and alert the staff and moderators by either 1) flagging the message if it is in a Party or private Guild, or 2) filling out the Moderator Contact Form and including screenshots.", - "commGuidePara019": "In private spaces, users have more freedom to discuss whatever topics they would like, but they still may not violate the Terms and Conditions, including posting slurs or any discriminatory, violent, or threatening content. Note that, because Challenge names appear in the winner's public profile, ALL Challenge names must obey the public space guidelines, even if they appear in a private space.", - "commGuidePara020": "私人訊息(私訊)也有一些附加的規範。 如果有人把你封鎖,請不要再任何別的地方與他們聯繫,並要求他們解除封鎖。 此外,您不應該向別人發送私人訊息請求幫助(因為公開回答別人的疑問,對社群是有幫助的)。 最後,不要發送任何私人訊息要求其他人送你寶石或訂閱當禮物,像這類的訊息都會被認定為垃圾訊息。", - "commGuidePara020A": "If you see a post that you believe is in violation of the public space guidelines outlined above, or if you see a post that concerns you or makes you uncomfortable, you can bring it to the attention of Moderators and Staff by clicking the flag icon to report it. A Staff member or Moderator will respond to the situation as soon as possible. Please note that intentionally reporting innocent posts is an infraction of these Guidelines (see below in “Infractions”). PMs cannot be flagged at this time, so if you need to report a PM, please contact the Mods via the form on the “Contact Us” page, which you can also access via the help menu by clicking “Contact the Moderation Team.” You may want to do this if there are multiple problematic posts by the same person in different Guilds, or if the situation requires some explanation. You may contact us in your native language if that is easier for you: we may have to use Google Translate, but we want you to feel comfortable about contacting us if you have a problem.", - "commGuidePara021": "此外,Habit大陸中的一些公共區域還有另外的準則.", + "commGuideHeadingInteractions": "在Habitica中與人互動", + "commGuidePara015": "Habitica有兩種社群空間: 公共的以及私人的。公共空間包含: 公開的公會、Tavern、GitHub、Trello、以及Wiki。私人空間則包含: 私人的公會、隊伍聊天室、以及私人訊息。所有顯示的名字皆須符合公共空間守則。若想要修改顯示名字,請到網頁上的 玩家圖像>基本資料 並點擊「編輯」按鈕。", + "commGuidePara016": "當你在 Habitica 的公共空間四處閒逛時,請務必遵守基本事項,以確保大家的安全與快樂。對於像您這樣的冒險者而言,想必是易如反掌!", + "commGuideList02A": "彼此尊重。成為彬彬有禮、善良且樂於助人的好公民。請記得 Habitica的公民來自於五湖四海,擁有各式各樣不同的經歷與背景。Habitica正是因為如此才如此多采多姿! 建立一個社群意味著要彼此尊重與欣賞我們之間的相似與相異之處。以下是一些簡單的尊重彼此的方式: ", + "commGuideList02B": "遵守所有的服務條款與條件。", + "commGuideList02C": "請不要上傳含有暴力、恐嚇、色情/性暗示的內容。也請不要提倡歧視、偏見、種族主義、仇恨、騷擾、或傷害到他人的圖片或文字。甚至開玩笑都不合宜。這包括含糊說話和措辭表達。並非每一個人都有相同的幽默感,所以某些您認為只是玩笑的事可能對他人會造成傷害。", + "commGuideList02D": "讓討論內容是老少皆宜的。我們有許多年輕的Habitica朋友在使用這個網站! 不要玷污了任何純真的心靈或是阻礙了Habitica公民達成他們的目標。", + "commGuideList02E": "請避免褻瀆的語言。這包括那些較輕微而帶有宗教性的咒罵,即使它們在其它場合下可能會被接受 。我們有來自各種宗教和文化背景的人,而我們想確保每個人在公共空間中都能感到自在。如果有管理員或是工作人員警告你已違背了某項 Habitica 的規範,就算你之前不清楚,這仍將是最終的警告。此外,誹謗的言語也將因違背了服務條款,遭受到嚴厲的處份。", + "commGuideList02F": "請避免在酒館中對有爭議且離題的話題繼續討論。如果您覺得有人說了些粗魯或傷人的話,請不要理他們。如果有人說這話題在準則裡是允許的但對您而言是有傷害性的,您可以禮貌地讓別人知道這點。如果該篇文章違反準則或是服務條款,您應將其標記並讓管理員出面回應。若有任何疑問,請檢舉該篇文章。", + "commGuideList02G": "遵守任何管理員的要求。這可能包含但不限於: 在特定地方要求限制您的貼文、編輯您的個人簡介並刪除不合適的內容、要求您將該討論移至更合適的空間等等。", + "commGuideList02H": "三思而後行,而不是在激怒中作回應。若有人告訴您說,您所說的一些話或所作的事令他們覺得不舒服。能夠向他人真誠的道歉就是您崇高的美德力量。若您覺得他們對您的反應有不恰當的地方,請告知管理員,而非在公共區域大聲地向他們喊罵。", + "commGuideList02I": "請舉報引戰的文章讓管理員知道。可藉由檢舉或使用管理員聯絡表單通知管理員。若您覺得對話已經變得過於激烈、情緒化或傷害人的,請立即停止對話。此時,應點擊檢舉讓我們知道,管理員會盡快出面回應。保證安全是我們的工作,若您覺得需要任何的補充說明,可使用管理員聯絡表單來回報問題。", + "commGuideList02J": "請勿發送垃圾訊息。垃圾訊息包含但不限於: 在多個地方發布相同的評論或問題、發布沒有附帶任何解釋與說明的連結、發布無意義的消息、大量發布推廣公會 隊伍 或挑戰的貼文、或者一次發送多則訊息。在任何聊天空間或是透過私人訊息中要求給予寶石或訂閱也將被視為垃圾訊息。若其他使用者點擊某個連結會給您帶來任何好處,您必須在消息中告知大家,否則這些消息也將被視為垃圾消息。

是否已構成垃圾訊息的條件或是可能會成為垃圾訊息全由管理員自行判斷,即使您不覺得您正在發送垃圾訊息。例如,推廣公會文一次兩次是可接受的,但在一天內發布多條相關訊息即可能構成圾垃訊息,無論此公會對人是多麼的有幫助!", + "commGuideList02K": "請避免在公共的交談空間張貼全大寫的英文詞彙,特別是在酒吧。 因為這會看起來像是您正在大聲咆哮。這樣會干擾到大家舒適的氣氛。", + "commGuideList02L": "我們非常不鼓勵在公共場合交換個人資訊,尤其是那些能夠分辨出您的個人身分的訊息。這些訊息包括但不限於: 您的住址、電子信箱、API token或密碼。這是為了您的安全著想! 工作人員或管理員將根據他們的判斷移除那些訊息。若有人在私人公會、隊伍或私訊中要求您提供個人訊息,我們強烈建議您禮貌地回絕他,並告知工作人員或管理員。方法1) 若是在隊伍或是私人公會裡,請點擊檢舉。方法2) 填寫管理員聯絡表單並附帶截圖。", + "commGuidePara019": "在個人空間中,使用者能夠更自由的討論任何喜歡的話題。但是,他們仍不能違反服務條款,這包括發布任何歧視性、暴力、或恐嚇性的內容。請記住,由於挑戰名稱將出現在勝利者的基本資料中,所以所有的挑戰名稱也必須遵守公共空間守則,即使它們只出現在私人空間中。", + "commGuidePara020": "私人訊息(私訊)也有一些附加的規範。 如果有使用者封鎖您,請不要在任何別的地方與他們聯繫,並要求他們解除封鎖您。 此外,您不應該向別人發送私人訊息請求協助(因為公開回答別人的疑問,對社群是有正面幫助的)。最後,不要發送任何私人訊息要求其他人送您寶石或訂閱當禮物,像這類的訊息都會被定為垃圾訊息。", + "commGuidePara020A": "如果您看到一則您認為是違反公共空間守則的訊息,或者您看到一則困擾您或讓您不舒服的訊息,您可以透過檢舉將其報告給管理員或工作人員。工作人員或管理員將盡快做出回應。請注意,故意檢舉無辜的訊息也是一種違反社群規範的行為喔(具體請見下方的「違規」介紹)!私信目前暫時還無法被檢舉,所以若您需要檢舉一則私信,請通過「聯絡我們」頁面上的表格與管理員聯繫,您也可以在主菜單上點擊「聯絡管理團隊」。當您遇到如下情況,您也可以這樣檢舉: 同一個人在不同公會中發布許多有問題的訊息、或是當您遇到的狀況與要額外的文字解釋時。您可以用自己的母語來與我們聯繫,如果這樣對您較方便。此時我們可能會採用Google翻譯。但我們由衷希望您在遇到任何問題時都能夠輕鬆自在地與我們交流。", + "commGuidePara021": "此外,在Habitica裡的某些公共區域還有額外的規範。", "commGuideHeadingTavern": "酒館", - "commGuidePara022": "The Tavern is the main spot for Habiticans to mingle. Daniel the Innkeeper keeps the place spic-and-span, and Lemoness will happily conjure up some lemonade while you sit and chat. Just keep in mind…", - "commGuidePara023": "Conversation tends to revolve around casual chatting and productivity or life improvement tips. Because the Tavern chat can only hold 200 messages, it isn't a good place for prolonged conversations on topics, especially sensitive ones (ex. politics, religion, depression, whether or not goblin-hunting should be banned, etc.). These conversations should be taken to an applicable Guild. A Mod may direct you to a suitable Guild, but it is ultimately your responsibility to find and post in the appropriate place.", - "commGuidePara024": "Don't discuss anything addictive in the Tavern. Many people use Habitica to try to quit their bad Habits. Hearing people talk about addictive/illegal substances may make this much harder for them! Respect your fellow Tavern-goers and take this into consideration. This includes, but is not exclusive to: smoking, alcohol, pornography, gambling, and drug use/abuse.", - "commGuidePara027": "When a moderator directs you to take a conversation elsewhere, if there is no relevant Guild, they may suggest you use the Back Corner. The Back Corner Guild is a free public space to discuss potentially sensitive subjects that should only be used when directed there by a moderator. It is carefully monitored by the moderation team. It is not a place for general discussions or conversations, and you will be directed there by a mod only when it is appropriate.", + "commGuidePara022": "酒館是一個Habitica公民的主要交流地點。酒館主人Daniel將店裡打掃得一塵不染。而Lemoness將非常樂意地在您坐下聊天時變出幾杯檸檬水。只是您要記住...", + "commGuidePara023": "談話主題盡量請圍繞在閒聊或是對於生產力或生活改善的一些小撇步。因為酒館只能保留200條訊息,所以它不是個適合延長話題的地方,尤其是一些敏感話題 (例如政治、宗教、抑鬱、或是捕殺哥布林活動是否該被禁止等話題)。這些話題都應該在合適的公會裡進行討論。管理員可能會指引您到合適的公會,但最終您有責任自己找到一個適當的地方來發布您的訊息。", + "commGuidePara024": "不要在酒館內討論任何容易讓人成癮的東西。很多人嘗試使用Habitica戒掉壞習慣。聽到別人談論這些容易讓人上癮或非法的東西,可能會使他們更難戒除! 來到酒館時,請尊重他人,替他們著想。這包括但不限於: 抽煙、喝酒、賭博、色情、藥物使用與濫用。", + "commGuidePara027": "當管理員示意您在其他地方進行對話時,如果這裡沒有相關的公會,他們可能會建議您到「後方角落(Back Corner)」。後方角落公會(The Back Corner Guild)是一個免費的公共空間,用於討論潛在的敏感話題,只有在管理員的邀請下您才可以進入此公會並使用它。這個公會已受管理員團隊嚴密地監控。這不是個正常討論或對話的地方,所以只有在和適的時候,您才會透過管理員進入此公會。", "commGuideHeadingPublicGuilds": "公開的公會", - "commGuidePara029": "Public Guilds are much like the Tavern, except that instead of being centered around general conversation, they have a focused theme. Public Guild chat should focus on this theme. For example, members of the Wordsmiths Guild might be cross if the conversation is suddenly focusing on gardening instead of writing, and a Dragon-Fanciers Guild might not have any interest in deciphering ancient runes. Some Guilds are more lax about this than others, but in general, try to stay on topic!", - "commGuidePara031": "Some public Guilds will contain sensitive topics such as depression, religion, politics, etc. This is fine as long as the conversations therein do not violate any of the Terms and Conditions or Public Space Rules, and as long as they stay on topic.", - "commGuidePara033": "Public Guilds may NOT contain 18+ content. If they plan to regularly discuss sensitive content, they should say so in the Guild description. This is to keep Habitica safe and comfortable for everyone.", - "commGuidePara035": "If the Guild in question has different kinds of sensitive issues, it is respectful to your fellow Habiticans to place your comment behind a warning (ex. \"Warning: references self-harm\"). These may be characterized as trigger warnings and/or content notes, and Guilds may have their own rules in addition to those given here. If possible, please use markdown to hide the potentially sensitive content below line breaks so that those who may wish to avoid reading it can scroll past it without seeing the content. Habitica staff and moderators may still remove this material at their discretion.", - "commGuidePara036": "Additionally, the sensitive material should be topical -- bringing up self-harm in a Guild focused on fighting depression may make sense, but is probably less appropriate in a music Guild. If you see someone who is repeatedly violating this guideline, especially after several requests, please flag the posts and notify the moderators via the Moderator Contact Form.", - "commGuidePara037": "No Guilds, Public or Private, should be created for the purpose of attacking any group or individual. Creating such a Guild is grounds for an instant ban. Fight bad habits, not your fellow adventurers!", - "commGuidePara038": "All Tavern Challenges and Public Guild Challenges must comply with these rules as well.", + "commGuidePara029": "公開的公會就像酒館一樣,只是除了一般討論外,他們都有一個聚焦的主題。在公開公會聊天時,內容應該聚焦在這個主題上。例如,語言藝術家公會(Wordsmiths Guild) 如果突然專注於園藝的議題而非寫作上,那這個公會可能會被取消;或是龍之愛好者公會(Dragon-Fanciers Guild) 就從來不對解密古老符文感到任何的興趣。一些公會可能會要求得較為寬鬆,但一般而言,盡量不要偏離主題!", + "commGuidePara031": "一些公開的公會可能會題到較為敏感的話題,比如說關於抑鬱、宗教或政治的話題。只要不違反​​服務條款,及公共空間準則,並且將討論限制在話題範圍內,這些討論是不會被受限制的。", + "commGuidePara033": "公開的公會不該含有18禁成人內容。若打算定期討論此敏感話題,他們必須在公會介紹欄位裡註明。這是為了確保每個人在Habitica是安全且舒適的。", + "commGuidePara035": "如果一個公會討論到包含各種不同類型的敏感議題,您應尊重您的Habitica夥伴,在您的言論前面加註警語(例如 \"警告: 內容涉及自我傷害\")。這些關鍵字將成為觸發警告或是備註內容的特徵。此時,公會可能會針對這些內容有自己的規定。如果可以的話,請使用Markdown語法來隱藏這些在換行符號後的潛在敏感內容,以便那些希望能避開閱讀這些內容的人不會在閱讀時看見該內容。不過Habitica的工作人員與管理員仍有可能在慎重考慮後移除這些內容。", + "commGuidePara036": "此外,敏感話題必須貼切主題。例如,在對抗憂鬱症的公會裡談及自我傷害是可被理解的,但在音樂公會裡可能就沒那麼適當了。如果您看見有人一直在違反規範,且屢勸不聽的話,請檢舉該內容並透過管理員聯絡表單通知管理員。", + "commGuidePara037": "不允許建立任何用於攻擊某團體或個人的公會,不論是公開或是私人的。建立這樣的公會會被立刻封禁。請對抗您的壞習慣,而非您的冒險者小夥伴!", + "commGuidePara038": "所有的酒館挑戰和公開的公會挑戰也都必須遵守這些規則。", "commGuideHeadingInfractionsEtc": "違規、後果和恢復", "commGuideHeadingInfractions": "違規", - "commGuidePara050": "Habit公民互相幫助互相尊重,並努力讓整個社區更有趣更友好。然而在極少數情況下,Habit公民的所作所為可能違反以上的準則。當這種情況發生時,管理員將採取一切必要行動來保持Habit大陸的可靠和舒適。", - "commGuidePara051": "There are a variety of infractions, and they are dealt with depending on their severity. These are not comprehensive lists, and the Mods can make decisions on topics not covered here at their own discretion. The Mods will take context into account when evaluating infractions.", - "commGuideHeadingSevereInfractions": "多項違規", - "commGuidePara052": "嚴重違規極大的傷害Habit大陸的社區和用戶的安全,因此會導致嚴重後果。", - "commGuidePara053": "下面是一些嚴重違規的例子。這並非一個全面的列表。", - "commGuideList05A": "違反條件和狀態", - "commGuideList05B": "仇恨言論/圖片、騷擾/跟踪、網絡欺凌、網絡論戰和流氓行為", - "commGuideList05C": "違規緩刑", - "commGuideList05D": "Impersonation of Staff or Moderators", - "commGuideList05E": "重複的中度違規", - "commGuideList05F": "Creation of a duplicate account to avoid consequences (for example, making a new account to chat after having chat privileges revoked)", - "commGuideList05G": "Intentional deception of Staff or Moderators in order to avoid consequences or to get another user in trouble", + "commGuidePara050": "Habitica的公民喜歡互相幫助包容,並努力讓整個社群變得更有趣好玩更友善。然而在極少數情況下,Habitica公民的所作所為可能已違反了以上的規範。此時,管理員將採取一切必要的行動來確保每個人在Habitica都是安全且舒適的。", + "commGuidePara051": "違規形式各種各樣,我們將根據其嚴重性進行處理。這裡沒有明確的律法,但管理員有權自行決定一些以前沒有提及的規範。他們在評估違規行為時會慎重地考慮上下文才做出判決。", + "commGuideHeadingSevereInfractions": "嚴重違規", + "commGuidePara052": "嚴重違規對於Habitica的社群與用戶的安全將造成很大的損害,因此會有嚴厲的後續處置。", + "commGuidePara053": "以下是一些嚴重違規的例子。這並非是個完整的列表。", + "commGuideList05A": "違反服務條款", + "commGuideList05B": "仇恨性言論/圖片、騷擾/跟踪、網絡霸凌、網絡論戰以及白目行為", + "commGuideList05C": "緩刑期間再度累犯", + "commGuideList05D": "假冒工作人員或是管理員身分", + "commGuideList05E": "中度違規並累犯", + "commGuideList05F": "創立小帳以逃避後果(例如,在聊天權被剝奪後又建立新的帳號來聊天)", + "commGuideList05G": "為了逃避後果或是為了使別人深陷麻煩而故意欺騙工作人員或管理員", "commGuideHeadingModerateInfractions": "中度違規", - "commGuidePara054": "中度違規不會讓社區不安全,但是會讓人不愉快。這些違規將產生中等影響。當多次違規行為加一起,後果會愈嚴重。", - "commGuidePara055": "以下是一些中度違規的例子。這並非一個全面的列表。", - "commGuideList06A": "Ignoring, disrespecting or arguing with a Mod. This includes publicly complaining about moderators or other users, publicly glorifying or defending banned users, or debating whether or not a moderator action was appropriate. If you are concerned about one of the rules or the behaviour of the Mods, please contact the staff via email (admin@habitica.com).", - "commGuideList06B": "Backseat Modding. To quickly clarify a relevant point: A friendly mention of the rules is fine. Backseat modding consists of telling, demanding, and/or strongly implying that someone must take an action that you describe to correct a mistake. You can alert someone to the fact that they have committed a transgression, but please do not demand an action -- for example, saying, \"Just so you know, profanity is discouraged in the Tavern, so you may want to delete that,\" would be better than saying, \"I'm going to have to ask you to delete that post.\"", - "commGuideList06C": "Intentionally flagging innocent posts.", - "commGuideList06D": "Repeatedly Violating Public Space Guidelines", - "commGuideList06E": "Repeatedly Committing Minor Infractions", + "commGuidePara054": "中度違規不會讓我們的社群不安全,但是會讓使用者有不愉快的體驗。這些違規將會有中等的處置。若多次違規,處置可能會變得愈加嚴重。", + "commGuidePara055": "以下是一些中度違規的例子。這並非是個完整的列表。", + "commGuideList06A": "忽視或不尊重管理員。這包括公開抱怨管理員或其他使用者、公開讚揚被封鎖的用戶或為其辯護、爭論管理員的作為是否合適。如果您對某條規範或某管理員的行為感到顧慮,請寫信與工作人員聯繫( admin@habitica.com )。", + "commGuideList06B": "不要越俎代庖。為了快速闡明相關問題,友好地提及規則是個很好的做法。越俎代庖的行為包括告知、要求、或是強烈暗示某人必須採取您所想到的措施來糾正錯誤。您可以警告某人已經違規了,但是請不要要求他們去做某事。 例如,對違規的人說: \"正如你所知道的,髒話在酒館裡是非常忌諱的,所以你可能會想要刪掉它們!\" 這會比說 \"我命令你必須刪掉那些貼文! \" 要好得多。", + "commGuideList06C": "無故惡意檢舉無辜的文章", + "commGuideList06D": "多次違反公共空間守則", + "commGuideList06E": "輕度違規並累犯", "commGuideHeadingMinorInfractions": "輕微違規", - "commGuidePara056": "一旦輕度違規,違規者會受到警告,而且會受到輕微的懲罰。屢教不改,繼續違規則會導致更加嚴重的後果。", - "commGuidePara057": "以下是一些輕度違規的例子。這並非一個全面的列表。", - "commGuideList07A": "初次違反公共空間準則", - "commGuideList07B": "Any statements or actions that trigger a \"Please Don't\". When a Mod has to say \"Please don't do this\" to a user, it can count as a very minor infraction for that user. An example might be \"Please don't keep arguing in favor of this feature idea after we've told you several times that it isn't feasible.\" In many cases, the Please Don't will be the minor consequence as well, but if Mods have to say \"Please Don't\" to the same user enough times, the triggering Minor Infractions will start to count as Moderate Infractions.", - "commGuidePara057A": "Some posts may be hidden because they contain sensitive information or might give people the wrong idea. Typically this does not count as an infraction, particularly not the first time it happens!", - "commGuideHeadingConsequences": "後果", - "commGuidePara058": "在Habit大陸與現實生活一樣,每一個行為都有一個結果,無論是一直跑步的你會變得健康,還是吃太多糖會使你蛀牙,或是一直學習會使你通過考試。", - "commGuidePara059": "同樣的,所有的違規有著不同的後果。以下列出一些後果的例子。", - "commGuidePara060": "If your infraction has a moderate or severe consequence, there will be a post from a staff member or moderator in the forum in which the infraction occurred explaining:", - "commGuideList08A": "你違反的規定是", - "commGuideList08B": "這樣的後果是", - "commGuideList08C": "如果可能的話,如何才能糾正這種處境,恢復自己的狀態。", - "commGuidePara060A": "If the situation calls for it, you may receive a PM or email as well as a post in the forum in which the infraction occurred. In some cases you may not be reprimanded in public at all.", - "commGuidePara060B": "If your account is banned (a severe consequence), you will not be able to log into Habitica and will receive an error message upon attempting to log in. If you wish to apologize or make a plea for reinstatement, please email the staff at admin@habitica.com with your UUID (which will be given in the error message). It is your responsibility to reach out if you desire reconsideration or reinstatement.", - "commGuideHeadingSevereConsequences": "造成嚴重後果的例子", - "commGuideList09A": "Account bans (see above)", + "commGuidePara056": "輕度違規,仍會受到輕微的處置。若屢勸不聽,將導致更嚴重的處置。", + "commGuidePara057": "以下是一些輕度違規的例子。這並非是個完整的列表。", + "commGuideList07A": "初次違反公共空間守則", + "commGuideList07B": "任何觸發了「請不要這樣做」的聲明或行動。當管理員不得不對使用者說「請不要這樣做」時,此時就算是使用者已經犯了一次輕微的違規行為。例如「在我們多次告訴您這個功能不可行之後,請不要再繼續爭吵此主意了。」在許多情況下「請不要這樣做」也會帶來輕微的處置,但若管理員不得不對同一使用者進行多次告誡,引發的輕度違規將被視為中度違規。", + "commGuidePara057A": "有的貼文可能會被隱藏,這是因為它們包含敏感訊息或是有可能會誤導他人。通常這不會被視為違規,特別是在第一次發生的時候!", + "commGuideHeadingConsequences": "後續處置", + "commGuidePara058": "在Habitica裡(正如現實生活一樣),每個行為都會造成一個後果,無論是持續跑步會變得更健康,還是吃太多糖會使你蛀牙,亦或是努力用功念書會讓你考試歐趴。", + "commGuidePara059": "同樣地,所有的違規行為都將有不同的後續處置。以下列出一些例子。", + "commGuidePara060": "如果您的違規行為造成中度或是嚴重的處置,那麼您將會收到一封來自工作人員或是管理員對於違規行為的解釋的信件並寫道: ", + "commGuideList08A": "您違規的行為是...", + "commGuideList08B": "這樣會帶來...的後果", + "commGuideList08C": "如果可以的話,如何做才能改正此處境,並恢復原狀。", + "commGuidePara060A": "依需要,在出現違規行為時,您可能會收到私信或電子郵件,並附帶違規行為發生的貼文。在某些情況下,您可能完全不會被公開譴責。", + "commGuidePara060B": "如果您的帳號被封鎖了(這是一種嚴重的處置),您將無法登入Habitica。此時當您嘗試登入時會收到一封錯誤訊息。如果您希望請求恢復帳號或是想道歉,請寄信到admin@habitica.com並附帶您的UUID(它會顯示在錯誤訊息中)與工作人員聯絡。若希望被重新考慮或復原,主動聯繫是您的責任。", + "commGuideHeadingSevereConsequences": "嚴重處置的例子", + "commGuideList09A": "帳號封鎖(請見上述)", "commGuideList09C": "永久禁用(\"凍結\")在貢獻者級別的進展", - "commGuideHeadingModerateConsequences": "中等後果的例子", - "commGuideList10A": "Restricted public and/or private chat privileges", - "commGuideList10A1": "If your actions result in revocation of your chat privileges, a Moderator or Staff member will PM you and/or post in the forum in which you were muted to notify you of the reason for your muting and the length of time for which you will be muted. At the end of that period, you will receive your chat privileges back, provided you are willing to correct the behavior for which you were muted and comply with the Community Guidelines.", - "commGuideList10C": "Restricted Guild/Challenge creation privileges", + "commGuideHeadingModerateConsequences": "中等處置的例子", + "commGuideList10A": "限制公開/或私人聊天的權利", + "commGuideList10A1": "如果您的行為導致聊天權利被剝奪,管理者或工作人員會私訊您,並/或在您被禁言的論壇區塊告知為何被禁言,以及被禁言的時間。懲罰時間到了後,如果您表現出願意改正行為並遵守社群規範,您的聊天權利將會被歸還。", + "commGuideList10C": "限制創立公會/挑戰的權利", "commGuideList10D": "暫時禁用(\"凍結\")在貢獻者級別的進展", "commGuideList10E": "降低貢獻者級別", - "commGuideList10F": "將用戶級別變成\"試用\"", - "commGuideHeadingMinorConsequences": "輕微後果的例子", - "commGuideList11A": "公共空間準則的提醒", + "commGuideList10F": "將用戶級別變成\"緩刑期\"", + "commGuideHeadingMinorConsequences": "輕微處置的例子", + "commGuideList11A": "公共空間守則的提醒", "commGuideList11B": "警告", "commGuideList11C": "申請", - "commGuideList11D": "刪除(管理員/員工可能會刪除有問題的內容)", - "commGuideList11E": "編輯(管理員/員工可能會刪除有問題的內容)", + "commGuideList11D": "刪除(管理員/工作人員可能會刪除有問題的內容)", + "commGuideList11E": "編輯(管理員/工作人員可能會刪除有問題的內容)", "commGuideHeadingRestoration": "歸還", - "commGuidePara061": "Habitica is a land devoted to self-improvement, and we believe in second chances. If you commit an infraction and receive a consequence, view it as a chance to evaluate your actions and strive to be a better member of the community.", - "commGuidePara062": "The announcement, message, and/or email that you receive explaining the consequences of your actions is a good source of information. Cooperate with any restrictions which have been imposed, and endeavor to meet the requirements to have any penalties lifted.", - "commGuidePara063": "If you do not understand your consequences, or the nature of your infraction, ask the Staff/Moderators for help so you can avoid committing infractions in the future. If you feel a particular decision was unfair, you can contact the staff to discuss it at admin@habitica.com.", - "commGuideHeadingMeet": "認識一下管理員們吧!", - "commGuidePara006": "Habitica has some tireless knights-errant who join forces with the staff members to keep the community calm, contented, and free of trolls. Each has a specific domain, but will sometimes be called to serve in other social spheres.", - "commGuidePara007": "職員有紫色星星標籤,他們的頭銜是「英雄」。", - "commGuidePara008": "管理員的名字後方有星號,以暗藍色作底色,他們的頭銜是\"護衛\"。唯一的例外是貝利,一位NPC,他的名字是黑底綠字的,後方有星號。", - "commGuidePara009": "現在的職員成員是(從左到右):", - "commGuideAKA": "<%= habitName %> 也就是 <%= realName %>", - "commGuideOnTrello": "Trello 的 <%= trelloName %>", - "commGuideOnGitHub": "GitHub 的 <%= gitHubName %>", - "commGuidePara010": "有些管理員會來協助職員。他們都經過精挑細選,所以請不吝給予尊重並聆聽他們的建議。", - "commGuidePara011": "現在的職員成員是(從左到右):", + "commGuidePara061": "Habitica是一個致力於自我改善的地方,而我們相信有第二次機會。如果您違規且收到處分,那就將其視為是一次評估自己行為的機會,並努力成為一名更好的社群成員吧。", + "commGuidePara062": "您收到通知處置的公告、訊息、或是電子郵件都是個很好的教育機會。請配合任何已實施的限制,並努力達到撤銷處置的要求。", + "commGuidePara063": "如果對後續處置,或是違規的行為有任何疑問,可以向工作人員或管理員取得協助,以避免之後再犯同樣的錯誤。如果對任何決定覺得不公平,可以寫信到admin@habitica.com與工作人員進行討論。", + "commGuideHeadingMeet": "一起來認識我們的工作人員與管理員們吧!", + "commGuidePara006": "Habitica 有一群努力不懈的俠客,他們與工作人員們合作,一起讓社群維持平穩、充實、無白目行為發生。他們雖然各有負責的領域,但有時會應要求出現在其他社交領域。", + "commGuidePara007": "工作人員的標籤是紫色帶皇冠記號。他們的頭銜是「英雄」。", + "commGuidePara008": "管理員的標籤是深藍色並附帶星記號。他們的頭銜是\"守護者\"。唯一的例外是Bailey,她是一位NPC,有黑底綠字並帶有星記號的標籤。", + "commGuidePara009": "現在的工作人員成員分別是(從左到右):", + "commGuideAKA": "<%= habitName %> a.k.a. <%= realName %>", + "commGuideOnTrello": "負責 Trello 的 <%= trelloName %>", + "commGuideOnGitHub": "負責 GitHub 的 <%= gitHubName %>", + "commGuidePara010": "有些管理員會協助工作人員。他們都經過精挑細選,所以請給予尊重並聽取他們的建議。", + "commGuidePara011": "現在的工作人員分別是(從左到右):", "commGuidePara011a": "在酒館對話", "commGuidePara011b": "在 GitHub/Wikia 上", "commGuidePara011c": "在 Wikia 上", "commGuidePara011d": "在 GitHub 上", - "commGuidePara012": "If you have an issue or concern about a particular Mod, please send an email to our Staff (admin@habitica.com).", - "commGuidePara013": "In a community as big as Habitica, users come and go, and sometimes a staff member or moderator needs to lay down their noble mantle and relax. The following are Staff and Moderators Emeritus. They no longer act with the power of a Staff member or Moderator, but we would still like to honor their work!", - "commGuidePara014": "Staff and Moderators Emeritus:", + "commGuidePara012": "如果您對某些管理員有疑慮或意見,歡迎寄信給我們的工作人員(admin@habitica.com)。", + "commGuidePara013": "像 Habitica 這麼大的社群裡,公民來來去去,有時管理員也需要卸下他們尊貴的外袍,讓自己放鬆一下。下面列舉的是榮譽退休的工作人員與管理員們。雖然他們不再有管理員的權限,但我們仍然想要表彰他們的貢獻!", + "commGuidePara014": "榮譽退休的工作人員與管理員: ", "commGuideHeadingFinal": "最後一節", - "commGuidePara067": "So there you have it, brave Habitican -- the Community Guidelines! Wipe that sweat off of your brow and give yourself some XP for reading it all. If you have any questions or concerns about these Community Guidelines, please reach out to us via the Moderator Contact Form and we will be happy to help clarify things.", - "commGuidePara068": "現在向前進發吧,勇敢的冒險家,完成你的每日任務吧!", + "commGuidePara067": "勇敢的Habitica公民,以上就是我們的社群規範!累了嗎? 擦乾額頭上的汗水,並給您自己一些經驗值作為讀完所有準則的獎勵吧! 如果有任何關於社群規範的問題,請透過管理員聯絡表單與我們聯繫,我們會很樂意地幫助並回答任何問題。", + "commGuidePara068": "現在讓我們一同向前進吧,勇敢的冒險家,並擊殺掉一些每日任務吧!", "commGuideHeadingLinks": "有用的連結", - "commGuideLink01": "Habitica Help: Ask a Question: a Guild for users to ask questions!", - "commGuideLink02": "The Wiki: the biggest collection of information about Habitica.", - "commGuideLink03": "GitHub: for bug reports or helping with code!", - "commGuideLink04": "The Main Trello: for site feature requests.", - "commGuideLink05": "The Mobile Trello: for mobile feature requests.", - "commGuideLink06": "The Art Trello: for submitting pixel art.", - "commGuideLink07": "The Quest Trello: for submitting quest writing.", - "commGuidePara069": "這些插圖由以下富有天賦的藝術家貢獻:" + "commGuideLink01": "Habitica諮詢台: 一個讓使用者提問的友善公會!!", + "commGuideLink02": "維基百科: 一個收集Habitica相關資訊最全面的地方!!", + "commGuideLink03": "GitHub: 回報bug或幫忙寫code的地方!!", + "commGuideLink04": "主Trello: 有啥新功能想建議? 請在這裡回報!!", + "commGuideLink05": "Trello手機板: 對於手機版Habitica有啥新功能想建議? 請在這裡回報!!", + "commGuideLink06": "Trello美術板: 提交新的像素畫作品的地方!!", + "commGuideLink07": "Trello任務板: 提交新的任務故事寫作的地方!!!", + "commGuidePara069": "以上插圖由下列富有天賦的藝術家提供:" } \ No newline at end of file diff --git a/website/common/locales/zh_TW/content.json b/website/common/locales/zh_TW/content.json index 750ad88dc6..f6703384ad 100644 --- a/website/common/locales/zh_TW/content.json +++ b/website/common/locales/zh_TW/content.json @@ -158,18 +158,18 @@ "questEggHippoText": "河馬", "questEggHippoMountText": "河馬", "questEggHippoAdjective": "一個快樂的", - "questEggYarnText": "Yarn", - "questEggYarnMountText": "Flying Carpet", - "questEggYarnAdjective": "woolen", - "questEggPterodactylText": "Pterodactyl", - "questEggPterodactylMountText": "Pterodactyl", - "questEggPterodactylAdjective": "trusting", - "questEggBadgerText": "Badger", - "questEggBadgerMountText": "Badger", - "questEggBadgerAdjective": "bustling", - "questEggSquirrelText": "Squirrel", - "questEggSquirrelMountText": "Squirrel", - "questEggSquirrelAdjective": "bushy-tailed", + "questEggYarnText": "毛線", + "questEggYarnMountText": "飛天魔毯", + "questEggYarnAdjective": "毛織物", + "questEggPterodactylText": "翼手龍", + "questEggPterodactylMountText": "翼手龍", + "questEggPterodactylAdjective": "信任的", + "questEggBadgerText": "獾皮", + "questEggBadgerMountText": "獾皮", + "questEggBadgerAdjective": "活躍的", + "questEggSquirrelText": "松鼠", + "questEggSquirrelMountText": "松鼠", + "questEggSquirrelAdjective": "精神煥發的", "eggNotes": "把孵化藥水倒在寵物蛋上會把它孵化成一隻<%= eggAdjective(locale) %> <%= eggText(locale) %>。", "hatchingPotionBase": "普通", "hatchingPotionWhite": "白色", @@ -193,102 +193,103 @@ "hatchingPotionCupid": "朱鹭色", "hatchingPotionShimmer": "閃爍", "hatchingPotionFairy": "仙女", - "hatchingPotionStarryNight": "Starry Night", - "hatchingPotionRainbow": "Rainbow", + "hatchingPotionStarryNight": "星夜", + "hatchingPotionRainbow": "彩虹", + "hatchingPotionGlass": "玻璃", "hatchingPotionNotes": "把它倒在寵物蛋上可以孵化出一隻<%= potText(locale) %>寵物。", "premiumPotionAddlNotes": "不能夠在任務寵物蛋上使用。", "foodMeat": "肉", - "foodMeatThe": "the Meat", - "foodMeatA": "Meat", + "foodMeatThe": "肉", + "foodMeatA": "肉", "foodMilk": "牛奶", - "foodMilkThe": "the Milk", - "foodMilkA": "Milk", + "foodMilkThe": "牛奶", + "foodMilkA": "牛奶", "foodPotatoe": "馬鈴薯", - "foodPotatoeThe": "the Potato", - "foodPotatoeA": "a Potato", + "foodPotatoeThe": "馬鈴薯", + "foodPotatoeA": "馬鈴薯", "foodStrawberry": "草莓", - "foodStrawberryThe": "the Strawberry", - "foodStrawberryA": "a Strawberry", + "foodStrawberryThe": "草莓", + "foodStrawberryA": "草莓", "foodChocolate": "巧克力", - "foodChocolateThe": "the Chocolate", - "foodChocolateA": "Chocolate", + "foodChocolateThe": "巧克力", + "foodChocolateA": "巧克力", "foodFish": "魚", - "foodFishThe": "the Fish", - "foodFishA": "a Fish", + "foodFishThe": "魚", + "foodFishA": "魚", "foodRottenMeat": "腐肉", - "foodRottenMeatThe": "the Rotten Meat", - "foodRottenMeatA": "Rotten Meat", + "foodRottenMeatThe": "腐肉", + "foodRottenMeatA": "腐肉", "foodCottonCandyPink": "粉紅色棉花糖", - "foodCottonCandyPinkThe": "the Pink Cotton Candy", - "foodCottonCandyPinkA": "Pink Cotton Candy", + "foodCottonCandyPinkThe": "粉紅色棉花糖", + "foodCottonCandyPinkA": "粉紅色棉花糖", "foodCottonCandyBlue": "藍色棉花糖", - "foodCottonCandyBlueThe": "the Blue Cotton Candy", - "foodCottonCandyBlueA": "Blue Cotton Candy", + "foodCottonCandyBlueThe": "藍色棉花糖", + "foodCottonCandyBlueA": "藍色棉花糖", "foodHoney": "蜂蜜", - "foodHoneyThe": "the Honey", - "foodHoneyA": "Honey", + "foodHoneyThe": "蜂蜜", + "foodHoneyA": "蜂蜜", "foodCakeSkeleton": "骸骨蛋糕", - "foodCakeSkeletonThe": "the Bare Bones Cake", - "foodCakeSkeletonA": "a Bare Bones Cake", + "foodCakeSkeletonThe": "骸骨蛋糕", + "foodCakeSkeletonA": "骸骨蛋糕", "foodCakeBase": "普通蛋糕", - "foodCakeBaseThe": "the Basic Cake", - "foodCakeBaseA": "a Basic Cake", + "foodCakeBaseThe": "普通蛋糕", + "foodCakeBaseA": "普通蛋糕", "foodCakeCottonCandyBlue": "藍色棉花糖蛋糕", - "foodCakeCottonCandyBlueThe": "the Candy Blue Cake", - "foodCakeCottonCandyBlueA": "a Candy Blue Cake", + "foodCakeCottonCandyBlueThe": "藍色棉花糖蛋糕", + "foodCakeCottonCandyBlueA": "藍色棉花糖蛋糕", "foodCakeCottonCandyPink": "粉紅棉花糖蛋糕", - "foodCakeCottonCandyPinkThe": "the Candy Pink Cake", - "foodCakeCottonCandyPinkA": "a Candy Pink Cake", + "foodCakeCottonCandyPinkThe": "粉紅棉花糖蛋糕", + "foodCakeCottonCandyPinkA": "粉紅棉花糖蛋糕", "foodCakeShade": "巧克力蛋糕", - "foodCakeShadeThe": "the Chocolate Cake", - "foodCakeShadeA": "a Chocolate Cake", + "foodCakeShadeThe": "巧克力蛋糕", + "foodCakeShadeA": "巧克力蛋糕", "foodCakeWhite": "奶油蛋糕", - "foodCakeWhiteThe": "the Cream Cake", - "foodCakeWhiteA": "a Cream Cake", + "foodCakeWhiteThe": "奶油蛋糕", + "foodCakeWhiteA": "奶油蛋糕", "foodCakeGolden": "蜂蜜蛋糕", - "foodCakeGoldenThe": "the Honey Cake", - "foodCakeGoldenA": "a Honey Cake", + "foodCakeGoldenThe": "蜂蜜蛋糕", + "foodCakeGoldenA": "蜂蜜蛋糕", "foodCakeZombie": "過期蛋糕", - "foodCakeZombieThe": "the Rotten Cake", - "foodCakeZombieA": "a Rotten Cake", + "foodCakeZombieThe": "過期蛋糕", + "foodCakeZombieA": "過期蛋糕", "foodCakeDesert": "沙子蛋糕", - "foodCakeDesertThe": "the Sand Cake", - "foodCakeDesertA": "a Sand Cake", + "foodCakeDesertThe": "沙子蛋糕", + "foodCakeDesertA": "沙子蛋糕", "foodCakeRed": "草莓蛋糕", - "foodCakeRedThe": "the Strawberry Cake", - "foodCakeRedA": "a Strawberry Cake", + "foodCakeRedThe": "草莓蛋糕", + "foodCakeRedA": "草莓蛋糕", "foodCandySkeleton": "骸骨糖果", - "foodCandySkeletonThe": "the Bare Bones Candy", - "foodCandySkeletonA": "Bare Bones Candy", + "foodCandySkeletonThe": "骸骨蛋糕", + "foodCandySkeletonA": "骸骨蛋糕", "foodCandyBase": "普通糖果", - "foodCandyBaseThe": "the Basic Candy", - "foodCandyBaseA": "Basic Candy", + "foodCandyBaseThe": "普通糖果", + "foodCandyBaseA": "普通糖果", "foodCandyCottonCandyBlue": "酸味藍色糖果", - "foodCandyCottonCandyBlueThe": "the Sour Blue Candy", - "foodCandyCottonCandyBlueA": "Sour Blue Candy", + "foodCandyCottonCandyBlueThe": "酸味藍色糖果", + "foodCandyCottonCandyBlueA": "酸味藍色糖果", "foodCandyCottonCandyPink": "酸味粉紅色糖果", - "foodCandyCottonCandyPinkThe": "the Sour Pink Candy", - "foodCandyCottonCandyPinkA": "Sour Pink Candy", + "foodCandyCottonCandyPinkThe": "酸味粉紅色糖果", + "foodCandyCottonCandyPinkA": "酸味粉紅色糖果", "foodCandyShade": "巧克力糖果", - "foodCandyShadeThe": "the Chocolate Candy", - "foodCandyShadeA": "Chocolate Candy", + "foodCandyShadeThe": "巧克力糖果", + "foodCandyShadeA": "巧克力糖果", "foodCandyWhite": "香草糖果", - "foodCandyWhiteThe": "the Vanilla Candy", - "foodCandyWhiteA": "Vanilla Candy", + "foodCandyWhiteThe": "香草糖果", + "foodCandyWhiteA": "香草糖果", "foodCandyGolden": "蜂蜜糖果", - "foodCandyGoldenThe": "the Honey Candy", - "foodCandyGoldenA": "Honey Candy", + "foodCandyGoldenThe": "蜂蜜糖果", + "foodCandyGoldenA": "蜂蜜糖果", "foodCandyZombie": "腐爛糖果", - "foodCandyZombieThe": "the Rotten Candy", - "foodCandyZombieA": "Rotten Candy", + "foodCandyZombieThe": "腐爛糖果", + "foodCandyZombieA": "腐爛糖果", "foodCandyDesert": "沙子糖果", - "foodCandyDesertThe": "the Sand Candy", - "foodCandyDesertA": "Sand Candy", + "foodCandyDesertThe": "沙子糖果", + "foodCandyDesertA": "沙子糖果", "foodCandyRed": "肉桂糖果", - "foodCandyRedThe": "the Cinnamon Candy", - "foodCandyRedA": "Cinnamon Candy", + "foodCandyRedThe": "肉桂糖果", + "foodCandyRedA": "肉桂糖果", "foodSaddleText": "鞍", "foodSaddleNotes": "立即把你的一隻寵物變成坐騎。", - "foodSaddleSellWarningNote": "Hey! This is a pretty useful item! Are you familiar with how to use a Saddle with your Pets?", + "foodSaddleSellWarningNote": "嘿!這是一個非常有用的物品!你知道怎麼對你的寵物使用鞍嗎?", "foodNotes": "寵物吃了它,就會慢慢地長成強壯的坐騎。" } \ No newline at end of file diff --git a/website/common/locales/zh_TW/contrib.json b/website/common/locales/zh_TW/contrib.json index 277dc1eaaa..9cf7b86ea7 100644 --- a/website/common/locales/zh_TW/contrib.json +++ b/website/common/locales/zh_TW/contrib.json @@ -1,18 +1,18 @@ { - "playerTiersDesc": "在聊天畫面中看到的彩色使用者名稱代表個人的貢獻者等級。等級越高,表示這位玩家透過美術、程式碼、社群...等為 habitica 貢獻得越多!", + "playerTiersDesc": "在聊天畫面中您看到使用者名稱上的顏色代表個人的貢獻者等級。等級越高,就證明他對Habitica的美術、程式碼、社群等地方貢獻得越多!", "tier1": "等級 1 ( 夥伴 )", "tier2": "等級 2 ( 夥伴 )", "tier3": "等級 3 ( 精英 )", "tier4": "等級 4 ( 精英 )", - "tier5": "等級 5 ( 捍衛者 )", - "tier6": "等級 6 ( 捍衛者 )", + "tier5": "等級 5 ( 王者 )", + "tier6": "等級 6 ( 王者 )", "tier7": "等級 7 ( 傳奇 )", "tierModerator": "管理員 ( 守護者 )", "tierStaff": "工作人員 ( 英雄 )", "tierNPC": "NPC", "friend": "好友", - "friendFirst": "當你 第一次的意見被採用時,您將收到Habitica貢獻者的徽章。你在酒館聊天的名字將能驕傲地顯示你是一個貢獻者。並且獎賞你所做的貢獻,你也將獲得3顆寶石", - "friendSecond": "當你第二次的意見被採用時,你可以在獎勵商店買到水晶甲。為了感謝你持續地工作,你還會收到3顆寶石。", + "friendFirst": "當您的意見 第一次被採納時,您將收到Habitica貢獻者的徽章。在酒館聊天時,您的名字將會被自豪地冠上貢獻者頭銜。作為貢獻的獎勵,您也將獲得3顆寶石。", + "friendSecond": "當您第二次意見被採納時,您可以在獎勵商店買到水晶護甲。作為貢獻的獎勵,您也將獲得3顆寶石。", "elite": "精英", "eliteThird": "當你的第三組意見被採用時,你可以在獎勵商店買到水晶頭盔。為了感謝你持續地工作,你還會收到3顆寶石。", "eliteFourth": "當你的第四組意見被採用時,你可以在獎勵商店買到水晶劍。為了感謝你持續地工作,你還會收到4顆寶石。", @@ -20,24 +20,24 @@ "championFifth": "當你的第五組意見被採用時,你可以在獎勵商店買到水晶盾牌。為了感謝你持續地工作,你還會收到4顆寶石。", "championSixth": "當你的第六組意見被採用時,你會得到一個九頭蛇寵物。你還會收到4顆寶石。", "legendary": "傳奇", - "legSeventh": "當你的第七組意見被採用時,你會得到4顆寶石並成為榮譽貢獻者公會的一員,且可以知道Habitica的幕後細節!繼續貢獻並不會提升你的等級,但是你可以繼續贏得寶石和頭銜作為回報。", + "legSeventh": "當您第七次意見被採納時,您將得到4顆寶石、成為榮譽貢獻者公會的一員、並將得知Habitica幕後開發的細節!繼續貢獻將不再提升您的稱號,但是您仍可繼續獲得寶石和頭銜以作回報。", "moderator": "領袖", "guardian": "守護者", "guardianText": "領袖是從高階的貢獻者中仔細挑選出來的,所以請尊重他們,並聽取他們的建議。", "staff": "職員", "heroic": "英雄", - "heroicText": "英雄級別包含了Habitica的員工,和跟員工並排的貢獻者。如果你有這個頭銜,你就是被委任了(或被聘請了!)。", - "npcText": "NPC 們對 Habitica 的 Kickstarter 計劃作出了最高層級的支持。你可以在網站各處,看到他們的角色形象!", + "heroicText": "英雄級別包含了Habitica的工作人員以及與其同位階的貢獻者。如果您有這個頭銜,您將被委任(甚至是被聘請!)。", + "npcText": "NPC 們對 Habitica 的 Kickstarter 計劃作出了最高層級的支持。您可以在網站各處,看到他們的角色形象!", "modalContribAchievement": "貢獻成就!", - "contribModal": "<%= name %>, you awesome person! You're now a tier <%= level %> contributor for helping Habitica.", - "contribLink": "See what prizes you've earned for your contribution!", + "contribModal": "<%= name %>,您太棒啦! 您現在已成為幫助Habitica的<%= level %>貢獻者。", + "contribLink": "快來看看您拿到甚麼酬勞吧!", "contribName": "貢獻者", - "contribText": "Has contributed to Habitica, whether via code, art, music, writing, or other methods. To learn more, join the Aspiring Legends Guild!", + "contribText": "為Habitica在程式碼、美術、音樂、寫作、或其他方面作出貢獻。詳情請加入「有理想的傳奇人物公會(Aspiring Legends Guild)」!", "readMore": "閱讀更多", "kickstartName": "Kickstarter 捐助者- $<%= key %>層級", "kickstartText": "支持了 Kickstarter 項目", "helped": "幫助了Habitica成長", - "helpedText1": "為了幫助 Habitica 成長,填寫", + "helpedText1": "為了幫助 Habitica 成長,請填寫", "helpedText2": "這份問卷。", "hall": "英雄殿堂", "contribTitle": "貢獻者頭銜 ( 例如「鐵匠」)", @@ -46,11 +46,11 @@ "hallContributors": "贊助人殿堂", "hallPatrons": "贊助人殿堂", "rewardUser": "獎勵玩家", - "UUID": "帳戶ID", + "UUID": "使用者ID", "loadUser": "載入玩家", "noAdminAccess": "您沒有管理員權限。", - "userNotFound": "找不到帳戶。", - "invalidUUID": "必須用有效的UUID", + "userNotFound": "找不到此用戶。", + "invalidUUID": "必須填寫有效的UUID", "title": "頭銜", "moreDetails": "更多細節 (1-7)", "moreDetails2": "更多細節 (8-9)", @@ -65,16 +65,16 @@ "tier": "層級", "visitHeroes": "前往英雄殿堂(貢獻者和支持者之殿)", "conLearn": "了解更多貢獻者的獎勵", - "conLearnHow": "如何為Habitica作出貢獻", + "conLearnHow": "了解如何為Habitica作出貢獻", "conLearnURL": "http://habitica.wikia.com/wiki/Contributing_to_Habitica", "conRewardsURL": "http://habitica.wikia.com/wiki/Contributor_Rewards", - "surveysSingle": "可以藉由填寫表單或是進行一些主要的軟體測試來幫助Habitica變得更好。感謝您!!", - "surveysMultiple": "Habitica 將獲得 <%= count %> 次成長機會,敬請 填寫調查表 或 進行測試 來幫助我們,感謝您!", + "surveysSingle": "可以藉由填寫表單或是進行一些主要的軟體測試來幫助Habitica變得更好。我們由衷地感謝您!", + "surveysMultiple": "已在<%= count %> 場合下幫助過Habitica成長,例如透過填寫調查問卷、或在一次大型測試中提供幫助。我們由衷地感謝您!", "currentSurvey": "目前的調查表", "surveyWhen": "在三月下旬調查表將處理完畢,徽章將被授予給的所有參與者。", - "blurbInbox": "這是存放您私人訊息的地方!您可以在酒館、隊伍或公會聊天畫面中按下他人名稱旁的信封圖示以傳送訊息給對方。若您收到不當的私人訊息,請將截圖透過電子信件發送給 Lemoness (<%= hrefCommunityManagerEmail %>)", - "blurbGuildsPage": "公會為大眾所創,找尋有趣的工會並加入討論吧!", - "blurbChallenges": "一些夥伴會創造挑戰,參與挑戰會加入一些工作到你的工作中,贏得挑戰會得到成就甚至是寶石!", - "blurbHallPatrons": "這裡是贊助名人堂,為了那些一開始支持 Habitica 的偉大玩家們設立的。我們感謝他們讓 Habitica 成真!", - "blurbHallContributors": "這裡是英雄館。那些對開源有貢獻的玩家,包含在程式、美術、音樂、著作,或是到處幫忙的人們列於其中。他們已經獲得 寶石、特殊裝備、與偉大的名聲。你也可以為 Habitica 做出貢獻!在此看更多訊息。" + "blurbInbox": "這是存放您私人訊息的地方!您可以在酒館、隊伍或公會聊天畫面中按下其他使用者名稱旁的信封圖示以私訊給對方。若您收到不當的私人訊息,請附帶截圖寄信給Lemoness (<%= hrefCommunityManagerEmail %>)", + "blurbGuildsPage": "公會是由使用者基於想與共同興趣者聊天所創立的。找尋有趣的公會並加入討論吧!", + "blurbChallenges": "挑戰是由您的同儕夥伴所創立的。參與挑戰將加入一些任務加到你的任務列表中,贏得挑戰將可獲得成就,而且時常帶有寶石獎勵喔!", + "blurbHallPatrons": " 這裡是贊助名人堂。我們在這裡紀念從草創時期就開始在Kickstarter 上贊助 Habitica 的偉大旅行者們。我們由衷地感謝他們讓 Habitica 正式上架!", + "blurbHallContributors": "這裡是貢獻者殿堂。我們在這裡紀念對開源項目有所貢獻的人們。這包含在程式、美術、音樂、著作方面,或是熱忠於到處幫忙的人都列於其中。他們已經獲得 寶石、特殊裝備、與尊貴的頭銜。您也可以為 Habitica 做出貢獻!點此來查看詳細資訊。" } \ No newline at end of file diff --git a/website/common/locales/zh_TW/death.json b/website/common/locales/zh_TW/death.json index e2598c6ed4..64cab5a475 100644 --- a/website/common/locales/zh_TW/death.json +++ b/website/common/locales/zh_TW/death.json @@ -13,5 +13,5 @@ "lowHealthTips3": "未完成的每日任務會在隔天造成損害,所以要小心,不要一開始就增加太多每日任務!", "lowHealthTips4": "如果你的每日任務在某些日子不用完成的話,你可以點選鉛筆按鈕去更改它。", "goodLuck": "祝你好運!", - "cannotRevive": "不能在還沒有死亡的時候復活。" + "cannotRevive": "不能在還沒死亡的時候復活。" } \ No newline at end of file diff --git a/website/common/locales/zh_TW/defaulttasks.json b/website/common/locales/zh_TW/defaulttasks.json index 24b870ee31..a713e3568b 100644 --- a/website/common/locales/zh_TW/defaulttasks.json +++ b/website/common/locales/zh_TW/defaulttasks.json @@ -6,14 +6,14 @@ "defaultHabit3Text": "爬樓梯/ 搭電梯 (點選鉛筆圖案進行編輯)", "defaultHabit3Notes": "一些好或壞的習慣:+/- 搭電梯或走樓梯 ; +/- 喝水或喝汽水", "defaultHabit4Text": "添加一個任務到Habitica裡", - "defaultHabit4Notes": "一個習慣或者每日任務或者待辦事項", - "defaultHabit5Text": "點擊這裡來把它編輯成一個你想戒掉的壞習慣吧", + "defaultHabit4Notes": "不論是一個習慣或是每日任務亦或是待辦事項", + "defaultHabit5Text": "點擊這裡來將它編輯為一個您想戒掉的壞習慣", "defaultHabit5Notes": "或者在編輯界面刪除", - "defaultDaily1Text": "用Habitica來追蹤你的任務", + "defaultDaily1Text": "用Habitica來追蹤您的任務", "defaultTodo1Text": "加入 Habitica ( 完成我!)", "defaultTodoNotes": "你可以完成這個事項,編輯它或刪除它。", - "defaultTodo2Text": "完成Justin的任務演練", - "defaultTodo2Notes": "參觀底部酒吧的所有部分", + "defaultTodo2Text": "完成參訪Justin的任務", + "defaultTodo2Notes": "查看過所有在底部的功能鍵", "defaultReward1Text": "休息15分鐘", "defaultReward1Notes": "自定獎勵可以是任何形式。有些人除非花金幣購買,才可以看喜歡的電視節目。", "defaultReward2Text": "獎勵自己", diff --git a/website/common/locales/zh_TW/faq.json b/website/common/locales/zh_TW/faq.json index bb1bc69c15..d19e98d7b3 100644 --- a/website/common/locales/zh_TW/faq.json +++ b/website/common/locales/zh_TW/faq.json @@ -1,58 +1,58 @@ { "frequentlyAskedQuestions": "常見問題", - "faqQuestion0": "我不知道怎麼玩,有遊戲介紹嗎?", - "iosFaqAnswer0": "首先,你要設定好你的每日任務。接著,當你在現實生活中完成時,再把每日任務打勾,你會因此得到經驗值和金幣。金幣可以購買裝備和物品,而經驗值能使你的角色升級並且隨著等級提升還能解鎖其他功能,像是:寵物、技能,以及關卡任務!你可以調整你自己的角色在選單「玩家」>「角色」裡面。\n\n另外,有些基本的功能作用需要注意:點選手機螢幕介面右上角的(+)可以增加新任務。新增任務後,可以輕按現有任務便可再度編輯。按住不放將任務往左邊滑過便可刪除。在畫面左上角有一個標籤可幫助你分類,你可以點選任務來增加或減少清單。", - "androidFaqAnswer0": "首先,你要設定好你的每日任務。接著,當你在現實生活中完成時,再把每日任務打勾,你會因此得到經驗值和金幣。金幣可以購買裝備和物品,而經驗值能使你的角色升級並且隨著等級提升還能解鎖其他功能,像是:寵物、技能,以及關卡任務!你可以調整你自己的角色在選單> [玩家角色>] 裡面。\n\n另外,有些基本的功能作用需要注意:點選手機螢幕介面右上角的(+)可以增加新任務。新增任務後,可以輕按現有任務便可再度編輯。按住不放將任務往左邊滑過便可刪除。在畫面左上角有一個標籤可幫助你分類,你可以點選任務來增加或減少清單。", - "webFaqAnswer0": "首先,你要設定好你的每日任務。接著,當你在現實生活中完成時,再把每日任務打勾,你會因此得到經驗值和金幣。金幣可以購買裝備和物品,當然還有自製獎勵,而經驗值能使你的角色升級並且隨著等級提升還能解鎖其他功能,像是:寵物、技能,以及關卡任務!詳情請見在[幫助 -> 新手總覽](https://habitica.com/static/overview)中。", + "faqQuestion0": "˙我很迷惑。我在哪裡可以得到簡單的介紹?", + "iosFaqAnswer0": "首先,您要設定好你的每日任務。接著,當您在現實生活中完成這些目標時,再把每日任務打勾,您會因此得到經驗值和金幣。金幣可以購買裝備和物品,而經驗值能使您的角色升級並且隨著等級提升還能解鎖其他功能,像是:寵物、技能,以及關卡任務!您可以調整自己的角色在選單「玩家」>「角色」裡面。\n\n另外,有些基本的功能作用需要注意:點選手機螢幕介面右上角的(+)可以增加新任務。新增任務後,可以輕按現有任務便可再度編輯。按住不放將任務往左邊滑過便可刪除。在畫面左上角有一個標籤可幫助你分類,您可以點選任務來增加或減少清單。", + "androidFaqAnswer0": "首先,您要設定好自己的每日任務。接著,當您在現實生活中完成這些目標時,再把每日任務打勾,您會因此得到經驗值和金幣。金幣可以購買裝備和物品,而經驗值能使您的角色升級並且隨著等級提升還能解鎖其他功能,像是:寵物、技能,以及關卡任務!您可以調整你自己的角色在選單> [玩家角色>] 裡面。\n\n另外,有些基本的功能作用需要注意:點選手機螢幕介面右上角的(+)可以增加新任務。新增任務後,可以輕按現有任務便可再度編輯。按住不放將任務往左邊滑過便可刪除。在畫面左上角有一個標籤可幫助你分類,您可以點選任務來增加或減少清單。", + "webFaqAnswer0": "首先,您要設定好自己的每日任務。接著,當您在現實生活中完成這些目標時,再把每日任務打勾,您就會因此得到經驗值和金幣。金幣可以購買裝備和物品,當然還有自製獎勵,而經驗值能使您的角色升級並且隨著等級提升還能解鎖其他功能,像是:寵物、技能,以及關卡任務!詳情請見[幫助 -> 新手總覽](https://habitica.com/static/overview)。", "faqQuestion1": "我要如何設定每日任務?", - "iosFaqAnswer1": "好習慣(+符號)就是你每天可以做很多次的那種正面任務,像是多吃菜。壞習慣(-符號)則是你應該要避免的負面任務,像是咬指甲。有些習慣同時擁有+和-,代表它可以同時兼具好的一面和壞的一面,像是走樓梯vs搭電梯。達成好習慣會獎勵你金幣和經驗。壞習慣則會減損生命值。\n\n每日任務是你每天都會做到的事情,像是刷牙或檢查電子信箱。你可以透過點擊來指定每日任務的天數。如果你沒有在每日任務指定的日子完成它的話,你的角色會在隔天減少生命值。所以小心不要一口氣增加太多每日任務!\n\n待辦事項是你的待辦清單,完成待辦事項也能夠得到金幣和經驗值。你不會因為待辦事項完成與否而受到攻擊。對著待辦事項點選也可以編輯指定日期。", + "iosFaqAnswer1": "您每天可以做很多次好習慣(有+符號的那些)的正面任務,像是多吃菜。壞習慣(有-符號的那些)則是您應該要避免的負面任務,像是咬指甲。有些習慣同時擁有+和-,代表它可以同時兼具好的一面和壞的一面,像是走樓梯vs搭電梯。達成好習慣會獎勵您金幣和經驗。壞習慣則會損失生命值。\n\n每日任務是您每天都要做到的事情,像是刷牙或檢查電子信箱。您可以透過點選編輯來調整每日任務出現的日期。如果您沒有在每日任務出現的日子完成它的話,您的角色將會在隔天損失生命值。所以要小心不要一口氣增加太多每日任務!\n\n待辦事項是您的待辦清單,完成待辦事項也能夠得到金幣和經驗值。您不會因為待辦事項完成與否而受到攻擊。點選編輯可以增加完成期限。", "androidFaqAnswer1": "好習慣(有\"+\"符號的那個)就是你每天可以做很多次的那種正面任務,像是多吃菜。壞習慣(有\"-\"符號的那個)則是你應該要避免的負面任務,像是咬指甲。有些習慣同時擁有+和-,代表它可以同時兼具好的一面和壞的一面,像是走樓梯vs搭電梯。達成好習慣會獎勵你金幣和經驗。壞習慣則會減損生命值。\n\n每日任務是你每天都會做到的事情,像是刷牙或檢查電子信箱。你可以透過點擊來指定每日任務的天數。如果你沒有在每日任務指定的日子完成它的話,你的角色會在隔天減少生命值。所以小心不要一口氣增加太多每日任務!\n\n待辦事項是你的待辦清單,完成待辦事項也能夠得到金幣和經驗值。你不會因為待辦事項完成與否而受到攻擊。可以點擊編輯一個待辦任務來為它添加完成期限。", - "webFaqAnswer1": "好習慣(有\"+\"符號的那個)就是你每天可以做很多次的那種正面任務,像是多吃菜。壞習慣(有\"-\"符號的那個)則是你應該要避免的負面任務,像是咬指甲。有些習慣同時擁有+和-,代表它可以同時兼具好的一面和壞的一面,像是走樓梯vs搭電梯。達成好習慣會獎勵你金幣和經驗。壞習慣則會減損生命值。\n\n每日任務是你每天都會做到的事情,像是刷牙或檢查電子信箱。你可以透過點擊來指定每日任務的天數。如果你沒有在每日任務指定的日子完成它的話,你的角色會在隔天減少生命值。所以小心不要一口氣增加太多每日任務!\n\n待辦事項是你的待辦清單,完成待辦事項也能夠得到金幣和經驗值。你不會因為待辦事項完成與否而受到攻擊。可以點擊編輯一個待辦任務來為它添加完成期限。", + "webFaqAnswer1": "您每天可以做很多次好習慣(有+符號的那些)的正面任務,像是多吃菜。壞習慣(有-符號的那些)則是您應該要避免的負面任務,像是咬指甲。有些習慣同時擁有+和-,代表它可以同時兼具好的一面和壞的一面,像是走樓梯vs搭電梯。達成好習慣會獎勵您金幣和經驗。壞習慣則會損失生命值。\n\n每日任務是您每天都要做到的事情,像是刷牙或檢查電子信箱。您可以透過點選編輯來調整每日任務出現的日期。如果您沒有在每日任務出現的日子完成它的話,您的角色將會在隔天損失生命值。所以要小心不要一口氣增加太多每日任務!\n\n待辦事項是您的待辦清單,完成待辦事項也能夠得到金幣和經驗值。您不會因為待辦事項完成與否而受到攻擊。點選編輯可以增加完成期限。", "faqQuestion2": "有沒有可供參考的任務範例?", - "iosFaqAnswer2": "wiki有四種參考範例來當作靈感:\n

\n* [習慣](http://habitica.wikia.com/wiki/Sample_Habits)\n* [每日任務](http://habitica.wikia.com/wiki/Sample_Dailies)\n* [待辦事項](http://habitica.wikia.com/wiki/Sample_To-Dos)\n* [自訂獎勵](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)", - "androidFaqAnswer2": "wiki有四種參考範例來當作靈感:\n

\n* [習慣](http://habitica.wikia.com/wiki/Sample_Habits)\n* [每日任務](http://habitica.wikia.com/wiki/Sample_Dailies)\n* [待辦事項](http://habitica.wikia.com/wiki/Sample_To-Dos)\n* [自訂獎勵](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)", - "webFaqAnswer2": "wiki有四種參考範例來當作靈感:\n * [習慣](http://habitica.wikia.com/wiki/Sample_Habits)\n * [每日任務](http://habitica.wikia.com/wiki/Sample_Dailies)\n * [待辦事項](http://habitica.wikia.com/wiki/Sample_To-Dos)\n * [自訂獎勵](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)", + "iosFaqAnswer2": "wiki上有針對四種不同的項目來提供範例以供參考:\n

\n* [習慣範例](http://habitica.wikia.com/wiki/Sample_Habits)\n* [每日任務範例](http://habitica.wikia.com/wiki/Sample_Dailies)\n* [待辦事項範例](http://habitica.wikia.com/wiki/Sample_To-Dos)\n* [自訂獎勵範例](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)", + "androidFaqAnswer2": "wiki上有針對四種不同的項目來提供範例以供參考:\n

\n* [習慣範例](http://habitica.wikia.com/wiki/Sample_Habits)\n* [每日任務範例](http://habitica.wikia.com/wiki/Sample_Dailies)\n* [待辦事項範例](http://habitica.wikia.com/wiki/Sample_To-Dos)\n* [自訂獎勵範例](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)", + "webFaqAnswer2": "wiki上有針對四種不同的項目來提供範例以供參考:\n * [習慣範例](http://habitica.wikia.com/wiki/Sample_Habits)\n * [每日任務範例](http://habitica.wikia.com/wiki/Sample_Dailies)\n * [待辦事項範例](http://habitica.wikia.com/wiki/Sample_To-Dos)\n * [自訂獎勵範例](http://habitica.wikia.com/wiki/Sample_Custom_Rewards)", "faqQuestion3": "為什麼我的任務會改變顏色?", - "iosFaqAnswer3": "你的任務會改變顏色是因為你完成該任務的次數比較多!每一個新任務都是從黃色開始。當你完成每日任務或是好習慣時,它們就會轉變成藍色。如果沒有完成每日任務或是你做了壞習慣時,它們就會轉變成紅色。越是紅的任務被正向完成時,就能得到越多獎勵。但是如果你又負向完成的話,它所給予的傷害也就越多喔!這有助於你完成比較困難的任務!", - "androidFaqAnswer3": "你的任務會改變顏色是因為你完成該任務的次數比較多!每一個新任務都是從黃色開始。當你完成每日任務或是好習慣時,它們就會轉變成藍色。如果沒有完成每日任務或是你做了壞習慣時,它們就會轉變成紅色。越是紅的任務被正向完成時,就能得到越多獎勵。但是如果你又負向完成的話,它所給予的傷害也就越多喔!這有助於你完成比較困難的任務!", - "webFaqAnswer3": "你的任務會改變顏色是因為你完成該任務的次數比較多!每一個新任務都是從黃色開始。當你完成每日任務或是好習慣時,它們就會轉變成藍色。如果沒有完成每日任務或是你做了壞習慣時,它們就會轉變成紅色。越是紅的任務被正向完成時,就能得到越多獎勵。但是如果你又負向完成的話,它所給予的傷害也就越多喔!這有助於你完成比較困難的任務!", - "faqQuestion4": "為什麼我的角色生命值減少,我要怎麼回復?", - "iosFaqAnswer4": "有很多方式都會減少角色的生命值。第一,如果你沒有如期完成每日任務的話,角色會在隔天受到傷害。第二,如果你做了壞習慣,它也會使生命值受損。最後,若你正在隊伍裡並且處於活動任務捲軸狀態的話,如果隊友沒有乖乖完成他自己的每日任務,那麼任務魔王也會攻擊你喔。\n\n主要回復生命值的方法就是提升等級,當你升等就會自動補足生命值。你也可以用金幣購買獎勵框框裡的治療藥水。另外,當你等級大於或等於10時,你可以選擇成為醫者,這樣一來你就能夠學習治癒術。或者你的隊伍中 (「社交」> 「隊伍」),有人是醫者的話,可以請他們治療你喔。", - "androidFaqAnswer4": "有很多方式都會減少角色的生命值。第一,如果你沒有如期完成每日任務的話,角色會在隔天受到傷害。第二,如果你做了壞習慣,它也會使生命值受損。最後,若你正在隊伍裡並且處於活動任務捲軸狀態的話,如果隊友沒有乖乖完成他自己的每日任務,那麼任務魔王也會攻擊你喔。\n\n主要回復生命值的方法就是提升等級,當你升等就會自動補足生命值。你也可以用金幣購買獎勵框框裡的治療藥水。另外,當你等級大於或等於10時,你可以選擇成為醫者,這樣一來你就能夠學習治癒術。或者你的隊伍中 (「社交」> 「隊伍」),有人是醫者的話,可以請他們治療你喔。", - "webFaqAnswer4": "There are several things that can cause you to take damage. First, if you left Dailies incomplete overnight and didn't check them off in the screen that popped up the next morning, those unfinished Dailies will damage you. Second, if you click a bad Habit, it will damage you. Finally, if you are in a Boss Battle with your party and one of your party mates did not complete all their Dailies, the Boss will attack you. The main way to heal is to gain a level, which restores all your Health. You can also buy a Health Potion with Gold from the Rewards column. Plus, at level 10 or above, you can choose to become a Healer, and then you will learn healing skills. Other Healers can heal you as well if you are in a Party with them. Learn more by clicking \"Party\" in the navigation bar.", + "iosFaqAnswer3": "您的任務會改根據您完成該任務的次數而改變!每一個新任務最初始都是從黃色的。當您完成每日任務或是好習慣越多次時,它們就會逐漸轉變成藍色。如果沒有完成每日任務或是您做了壞習慣時,它們就會開始轉變成紅色。完成越偏紅色的任務,就能得到越多獎勵。但是如果您又沒有達成每日任務或是它是個壞習慣,其扣損的生命就會越多!這有助於您完成比較困難的任務!", + "androidFaqAnswer3": "您的任務會改根據您完成該任務的次數而改變!每一個新任務最初始都是從黃色的。當您完成每日任務或是好習慣越多次時,它們就會逐漸轉變成藍色。如果沒有完成每日任務或是您做了壞習慣時,它們就會開始轉變成紅色。完成越偏紅色的任務,就能得到越多獎勵。但是如果您又沒有達成每日任務或是它是個壞習慣,其扣損的生命就會越多!這有助於您完成比較困難的任務!", + "webFaqAnswer3": "您的任務會改根據您完成該任務的次數而改變!每一個新任務最初始都是從黃色的。當您完成每日任務或是好習慣越多次時,它們就會逐漸轉變成藍色。如果沒有完成每日任務或是您做了壞習慣時,它們就會開始轉變成紅色。完成越偏紅色的任務,就能得到越多獎勵。但是如果您又沒有達成每日任務或是它是個壞習慣,其扣損的生命就會越多!這有助於您完成比較困難的任務!", + "faqQuestion4": "為什麼我的角色的生命值減少了? 我要怎麼恢復它們?", + "iosFaqAnswer4": "有很多方式都會扣損角色的生命值。第一,如果您沒有每天完成每日任務的話,角色就會在隔天受到傷害。第二,如果您做了壞習慣,這也會使生命值受損。最後,若您正在隊伍裡一起進行Boss任務戰的,一旦其中一個隊友沒有在當天完成全部的每日任務,那麼任務魔王也會攻擊您喔。\n\n主要回復生命值的方法就是提升等級。當您升等時就會自動回復全部的生命值。您也可以用金幣購買獎勵欄裡的治療藥水。另外,當您等級達到10等或以上時,您可以選擇成為醫者,這樣您就能夠學習治癒術。或者您的隊伍中有人剛好是醫者的話,也可以請他們治療您喔。", + "androidFaqAnswer4": "有很多方式都會扣損角色的生命值。第一,如果您沒有每天完成每日任務的話,角色就會在隔天受到傷害。第二,如果您做了壞習慣,這也會使生命值受損。最後,若您正在隊伍裡一起進行Boss任務戰的,一旦其中一個隊友沒有在當天完成全部的每日任務,那麼任務魔王也會攻擊您喔。\n\n主要回復生命值的方法就是提升等級。當您升等時就會自動回復全部的生命值。您也可以用金幣購買獎勵欄裡的治療藥水。另外,當您等級達到10等或以上時,您可以選擇成為醫者,這樣您就能夠學習治癒術。或者您的隊伍中有人剛好是醫者的話,也可以請他們治療您喔。", + "webFaqAnswer4": "有很多方式都會扣損角色的生命值。第一,如果您沒有每天完成每日任務的話,角色就會在隔天受到傷害。第二,如果您做了壞習慣,這也會使生命值受損。最後,若您正在隊伍裡一起進行Boss任務戰的,一旦其中一個隊友沒有在當天完成全部的每日任務,那麼任務魔王也會攻擊您喔。\n\n主要回復生命值的方法就是提升等級。當您升等時就會自動回復全部的生命值。您也可以用金幣購買獎勵欄裡的治療藥水。另外,當您等級達到10等或以上時,您可以選擇成為醫者,這樣您就能夠學習治癒術。如果您的隊伍中剛好有人是醫者的話,也可以請他們治療您喔。可以在導覽列上點選「隊伍」來查看更多。", "faqQuestion5": "要怎麼做才能夠跟朋友一起玩Habitica?", - "iosFaqAnswer5": "最好的方法就是邀請他們加入你的隊伍!隊伍可以參加活動任務、跟魔王對抗、施放技能來支援彼此。如果你並沒有加入任一隊伍的話,可前往選單>隊伍,接著點選\"建立新隊伍\"。然後點選成員名單,就可以在右上角看到邀請朋友選項,輸入他們的使用者ID (UUID:一串由數字和英文字母組成的字串,每個人都可以在手機app中的設定 >帳號 ,或是網站裡的設定 >API 裡面找到自己的UUID。)在網站上,你還可以用電子郵件邀請朋友,而這項功能也會增加到之後的app更新中。\n\n在網站裡你可以和朋友加入公會,裡面有一個公共的聊天室。公會也會增加到之後的app更新中。", - "androidFaqAnswer5": "The best way is to invite them to a Party with you! Parties can go on quests, battle monsters, and cast skills to support each other. Go to the [website](https://habitica.com/) to create one if you don't already have a Party. You can also join guilds together (Social > Guilds). Guilds are chat rooms focusing on a shared interest or the pursuit of a common goal, and can be public or private. You can join as many guilds as you'd like, but only one party.\n\n For more detailed info, check out the wiki pages on [Parties](http://habitica.wikia.com/wiki/Party) and [Guilds](http://habitica.wikia.com/wiki/Guilds).", - "webFaqAnswer5": "The best way is to invite them to a Party with you by clicking \"Party\" in the navigation bar! Parties can go on quests, battle monsters, and cast skills to support each other. You can also join Guilds together (click on \"Guilds\" in the navigation bar). Guilds are chat rooms focusing on a shared interest or the pursuit of a common goal, and can be public or private. You can join as many Guilds as you'd like, but only one Party. For more detailed info, check out the wiki pages on [Parties](http://habitica.wikia.com/wiki/Party) and [Guilds](http://habitica.wikia.com/wiki/Guilds).", + "iosFaqAnswer5": "最好的方法就是邀請他們加入您的隊伍!隊伍可以參加活動任務、跟魔王對抗、施放技能來支援彼此。如果您沒有加入任何的隊伍,可前往「選單」>「隊伍」,接著點選「建立新隊伍」。然後點選成員名單,就可以在右上角看到邀請朋友的選項。請輸入您的好朋友的使用者ID (即UUID: 一串由數字和英文字母組成的字串,每個人都可以在手機app中的設定>帳號,或是網站裡的設定>API 裡面找到自己的UUID。)在網站上,您還可以透過電子郵件邀請朋友,之後app也將會引進此功能。\n\n在網站裡,您也可以和朋友們一同加入公會,裡面有一個公共的聊天室。app也將在未來引進此功能。", + "androidFaqAnswer5": "最好的方法就是邀請他們加入您的隊伍!隊伍可以參加活動任務、跟魔王對抗、施放技能來支援彼此。如果您沒有加入任何的隊伍,可前往[此網站](https://habitica.com/) 來建立一個隊伍。您也可以與朋友們一同加入公會(「社交」>「公會」)。公會是一個基於共同興趣或是共同追求目標的聊天室,它可以是公開或是私人的。您可以加入很多個公會只要您喜歡,但只能加入一支隊伍。\n\n詳細資訊,請查看wiki頁面上的[隊伍](http://habitica.wikia.com/wiki/Party) 以及 [公會](http://habitica.wikia.com/wiki/Guilds)。", + "webFaqAnswer5": "最好的方法就是點選導覽列上的「隊伍」,並邀請他們加入您的隊伍!隊伍可以參加活動任務、跟魔王對抗、施放技能來支援彼此。您也可以與朋友們一同加入公會(在導覽列上點選「公會」)。公會是一個基於共同興趣或是共同追求目標的聊天室,它可以是公開或是私人的。只要您喜歡您可以加入很多個公會,但只能加入一支隊伍。詳細資訊,請參照wiki頁面上的[隊伍](http://habitica.wikia.com/wiki/Party) 以及 [公會](http://habitica.wikia.com/wiki/Guilds)。", "faqQuestion6": "我要怎麼做才能得到寵物或是坐騎呢?", - "iosFaqAnswer6": "當你等級升到3的時候,就會解鎖掉落系統。每當你完成任務時,你就會有一定的機率收到寵物蛋、孵化藥水,或是餵養寵物的食物。當你收到時系統就會自動存入「選單」>「物品」。\n\n想要孵化寵物,你需要同時擁有寵物蛋和孵化藥水各一。點選寵物蛋確認你要孵化的種類,接著點擊「孵化」,然後選擇孵化藥水就能夠確認寵物的顏色囉!孵化完成後你可以到「選單」>「寵物」將你的寵物裝備到角色上。\n\n你也可以用餵食的方式讓寵物進化成坐騎。點選寵物選擇「餵食」,你會看到一條綠色的狀態列隨著你餵食次數而增長,當狀態列額滿後就會進化成坐騎。這需要花點時間,不過如果你能找到寵物最喜歡的食物,就可以加速寵物進化的速度囉!請多多嘗試食物種類或者看這個[see the spoilers here]。(http://habitica.wikia.com/wiki/Food#Food_Preferences)\n當你擁有了一隻座騎,你可以到「選單」>「坐騎」將它裝備到角色上。\n\n當你完成某些任務捲軸時,你也可能收到任務寵物蛋。(你可以看看下面有一些關於任務捲軸的介紹)。", - "androidFaqAnswer6": "At level 3, you will unlock the Drop System. Every time you complete a task, you'll have a random chance at receiving an egg, a hatching potion, or a piece of food. They will be stored in Menu > Items.\n\n To hatch a Pet, you'll need an egg and a hatching potion. Tap on the egg to determine the species you want to hatch, and select \"Hatch with potion.\" Then choose a hatching potion to determine its color! To equip your new Pet, go to Menu > Stable > Pets, select a species, click on the desired Pet, and select \"Use\"(Your avatar doesn't update to reflect the change). \n\n You can also grow your Pets into Mounts by feeding them under Menu > Stable [ > Pets ]. Tap on a Pet, and then select \"Feed\"! You'll have to feed a pet many times before it becomes a Mount, but if you can figure out its favorite food, it will grow more quickly. Use trial and error, or [see the spoilers here](http://habitica.wikia.com/wiki/Food#Food_Preferences). To equip your Mount, go to Menu > Stable > Mounts, select a species, click on the desired Mount, and select \"Use\"(Your avatar doesn't update to reflect the change).\n\n You can also get eggs for Quest Pets by completing certain Quests. (See below to learn more about Quests.)", - "webFaqAnswer6": "At level 3, you will unlock the Drop System. Every time you complete a task, you'll have a random chance at receiving an egg, a hatching potion, or a piece of food. They will be stored under Inventory > Items. To hatch a Pet, you'll need an egg and a hatching potion. Once you have both an egg and a potion, go to Inventory > Stable to hatch your pet by clicking on its image. Once you've hatched a pet, you can equip it by clicking on it. You can also grow your Pets into Mounts by feeding them under Inventory > Stable. Drag a piece of food from the action bar at the bottom of the screen and drop it on a pet to feed it! You'll have to feed a Pet many times before it becomes a Mount, but if you can figure out its favorite food, it will grow more quickly. Use trial and error, or [see the spoilers here](http://habitica.wikia.com/wiki/Food#Food_Preferences). Once you have a Mount, click on it to equip it to your avatar. You can also get eggs for Quest Pets by completing certain Quests. (See below to learn more about Quests.)", + "iosFaqAnswer6": "當您的等級達到3等時,就會解鎖掉落物系統。每當您完成一個任務時,您就會有一定的機率得到寵物蛋、孵化藥劑,或是餵養寵物的食物。系統會將它們存到「選單」>「物品」裡。\n\n要孵化寵物,您需要同時擁有一顆寵物蛋以及一罐孵化藥劑。點選寵物蛋來確認您想孵化的種類,接著選擇「孵化」。接著選擇孵化藥劑就能夠確認寵物的顏色囉!孵化完成後你可以到「選單」>「寵物」將您的寵物裝備到角色圖像上。\n\n您也可以用餵食的方式讓寵物進化成坐騎。點選寵物並選擇「餵食」。這時您會看到一條綠色的狀態列隨著您餵食次數而增長。當狀態列全滿了以後寵物就會進化成坐騎。這需要花點時間,不過如果您能找到寵物最喜歡的食物,就可以加速寵物進化的速度囉!請多多嘗試餵食不同種的食物或是[直接看攻略](http://habitica.wikia.com/wiki/Food#Food_Preferences)。\n當您擁有了一隻座騎,可以到「選單」>「坐騎」將它裝備到角色圖像上。\n\n當您完成某些特殊的任務卷軸時,也會收到任務寵物。(可以查看底下關於任務卷軸的介紹)。", + "androidFaqAnswer6": "當您的等級達到3等時,就會解鎖掉落物系統。每當您完成一個任務時,您就會有一定的機率得到寵物蛋、孵化藥劑,或是餵養寵物的食物。系統會將它們存到「選單」>「物品」裡。\n\n要孵化寵物,您需要同時擁有一顆寵物蛋以及一罐孵化藥劑。點選寵物蛋來確認您想孵化的種類,接著選擇「用孵化藥劑孵化」。接著選擇孵化藥劑就能夠確認寵物的顏色囉!孵化完成後你可以到「選單」>「馬廄」>「寵物」將您的寵物裝備到角色圖像上。\n\n您也可以用餵食的方式讓寵物進化成坐騎。可以到「選單」>「馬廄」>[寵物]點選寵物並選擇「餵食」。這時您會看到一條綠色的狀態列隨著您餵食次數而增長。當狀態列全滿了以後寵物就會進化成坐騎。這需要花點時間,不過如果您能找到寵物最喜歡的食物,就可以加速寵物進化的速度囉!請多多嘗試餵食不同種的食物或是[直接看攻略](http://habitica.wikia.com/wiki/Food#Food_Preferences)。\n當您擁有了一隻座騎,也可以將它裝備到角色圖像上。\n\n當您完成某些特殊的任務卷軸時,也會收到任務寵物。(可以查看底下關於任務卷軸的介紹)。", + "webFaqAnswer6": "當您的等級達到3等時,就會解鎖掉落物系統。每當您完成一個任務時,您就會有一定的機率得到寵物蛋、孵化藥劑,或是餵養寵物的食物。系統會將它們存到「選單」>「物品」裡。要孵化寵物,您需要同時擁有一顆寵物蛋以及一罐孵化藥劑。都有了之後請到「背包」>「馬廄」裡點選您想孵化的寵物蛋即可孵化。當孵化完成後您可以將您的寵物裝備到角色圖像上。您也可以用餵食的方式讓寵物進化成坐騎。可以到「背包」>「馬廄」,從底部的快捷背包選擇一個食物拖曳到您想進化的寵物上即可餵食。點選寵物並選擇「餵食」。這時您會看到一條綠色的狀態列隨著您餵食次數而增長。當狀態列全滿了以後寵物就會進化成坐騎。這需要花點時間,不過如果您能找到寵物最喜歡的食物,就可以加速寵物進化的速度囉!請多多嘗試餵食不同種的食物或是[直接看攻略](http://habitica.wikia.com/wiki/Food#Food_Preferences)。當您擁有了一隻座騎,也可以將它裝備到角色圖像上。當您完成某些特殊的任務卷軸時,也會收到任務寵物。(可以查看底下關於任務卷軸的介紹)。", "faqQuestion7": "我要怎麼做才能夠成為戰士、法師、盜賊或是醫者?", - "iosFaqAnswer7": "在等級10的時候,你可以選擇成為戰士、法師、盜賊或是醫者。(所有玩家在一開始都會被系統默認為是戰士直到你升等為10。) 每種職業都有各自的優點以及不同的裝備選擇,當你等級11時還能夠施放職業技能。戰士可以很輕鬆地擊退魔王,還能夠抵擋來自任務的傷害,同時也是隊伍攻擊主力。法師也能夠給予魔王有效的攻擊,等級提升快速且能夠幫助隊伍的成員補充魔力。盜賊能獲得最多金幣,也是能撿到最多掉落物品的職業,而這些優點也能回饋給隊伍。最後是醫者,醫者擁有特殊技能可以治癒他們自身以及隊伍成員的生命值。\n\n如果你還沒能夠決定該選擇哪種作為職業的話--舉例,如果你覺得與其馬上選擇職業,不如先補足目前所需的裝備的話--你可以點選「之後再決定」,等你覺得時機到了就可以到「選單」>「選擇職業」。", - "androidFaqAnswer7": "At level 10, you can choose to become a Warrior, Mage, Rogue, or Healer. (All players start as Warriors by default.) Each Class has different equipment options, different Skills that they can cast after level 11, and different advantages. Warriors can easily damage Bosses, withstand more damage from their tasks, and help make their Party tougher. Mages can also easily damage Bosses, as well as level up quickly and restore Mana for their party. Rogues earn the most gold and find the most item drops, and they can help their Party do the same. Finally, Healers can heal themselves and their Party members.\n\n If you don't want to choose a Class immediately -- for example, if you are still working to buy all the gear of your current class -- you can click “Opt Out” and choose later under Menu > Choose Class.", - "webFaqAnswer7": "At level 10, you can choose to become a Warrior, Mage, Rogue, or Healer. (All players start as Warriors by default.) Each Class has different equipment options, different Skills that they can cast after level 11, and different advantages. Warriors can easily damage Bosses, withstand more damage from their tasks, and help make their party tougher. Mages can also easily damage Bosses, as well as level up quickly and restore Mana for their party. Rogues earn the most Gold and find the most item drops, and they can help their party do the same. Finally, Healers can heal themselves and their party members. If you don't want to choose a Class immediately -- for example, if you are still working to buy all the gear of your current class -- you can click \"Opt Out\" and re-enable it later under Settings.", - "faqQuestion8": "What is the blue Stat bar that appears in the Header after level 10?", - "iosFaqAnswer8": "當你等級10的時候,除了能夠選擇職業外,還會出現一條藍色的狀態列,它是你的魔力值。當你繼續升等後,你還會陸續解鎖一些特殊的職業技能,使用技能會使你的魔力減少。每種職業都有各自獨特的技能,當等級11時你會在「選單」>「使用技能」內找到它們。魔力值不像生命值一樣會隨著你等級提升而補滿,它會因為你完成好習慣、每日任務和待辦事項而增加,也會因為你做了壞習慣而減少。順帶一提,每隔一天魔力值也會悄悄回復一點,當你完成越多每日任務,隔天也能補充越多魔力值喔。", - "androidFaqAnswer8": "The blue bar that appeared when you hit level 10 and chose a Class is your Mana bar. As you continue to level up, you will unlock special Skills that cost Mana to use. Each Class has different Skills, which appear after level 11 under Menu > Skills. Unlike your health bar, your Mana bar does not reset when you gain a level. Instead, Mana is gained when you complete Good Habits, Dailies, and To-Dos, and lost when you indulge bad Habits. You'll also regain some Mana overnight -- the more Dailies you completed, the more you will gain.", - "webFaqAnswer8": "The blue bar that appeared when you hit level 10 and chose a Class is your Mana bar. As you continue to level up, you will unlock special Skills that cost Mana to use. Each Class has different Skills, which appear after level 11 in the action bar at the bottom of the screen. Unlike your Health bar, your Mana bar does not reset when you gain a level. Instead, Mana is gained when you complete good Habits, Dailies, and To-Dos, and lost when you indulge bad Habits. You'll also regain some Mana overnight -- the more Dailies you completed, the more you will gain.", - "faqQuestion9": "我要怎麼做才能夠攻擊魔王而且參與任務卷軸呢?", - "iosFaqAnswer9": "First, you need to join or start a Party (see above). Although you can battle monsters alone, we recommend playing in a group, because this will make Quests much easier. Plus, having a friend to cheer you on as you accomplish your tasks is very motivating!\n\n Next, you need a Quest Scroll, which are stored under Menu > Items. There are three ways to get a scroll:\n\n - At level 15, you get a Quest-line, aka three linked quests. More Quest-lines unlock at levels 30, 40, and 60 respectively. \n - When you invite people to your Party, you'll be rewarded with the Basi-List Scroll!\n - You can buy Quests from the Quests Shop for Gold and Gems.\n\n To battle the Boss or collect items for a Collection Quest, simply complete your tasks normally, and they will be tallied into damage overnight. (Reloading by pulling down on the screen may be required to see the Boss's health bar go down.) If you are fighting a Boss and you missed any Dailies, the Boss will damage your Party at the same time that you damage the Boss. \n\n After level 11 Mages and Warriors will gain Skills that allow them to deal additional damage to the Boss, so these are excellent classes to choose at level 10 if you want to be a heavy hitter.", - "androidFaqAnswer9": "First, you need to join or start a Party (see above). Although you can battle monsters alone, we recommend playing in a group, because this will make Quests much easier. Plus, having a friend to cheer you on as you accomplish your tasks is very motivating!\n\n Next, you need a Quest Scroll, which are stored under Menu > Items. There are three ways to get a scroll:\n\n - At level 15, you get a Quest-line, aka three linked quests. More Quest-lines unlock at levels 30, 40, and 60 respectively. \n - When you invite people to your Party, you'll be rewarded with the Basi-List Scroll!\n - You can buy Quests from the Quests Shop for Gold and Gems.\n\n To battle the Boss or collect items for a Collection Quest, simply complete your tasks normally, and they will be tallied into damage overnight. (Reloading by pulling down on the screen may be required to see the Boss's health bar go down.) If you are fighting a Boss and you missed any Dailies, the Boss will damage your Party at the same time that you damage the Boss. \n\n After level 11 Mages and Warriors will gain Skills that allow them to deal additional damage to the Boss, so these are excellent classes to choose at level 10 if you want to be a heavy hitter.", - "webFaqAnswer9": "First, you need to join or start a Party by clicking \"Party\" in the navigation bar. Although you can battle monsters alone, we recommend playing in a group, because this will make quests much easier. Plus, having a friend to cheer you on as you accomplish your tasks is very motivating! Next, you need a Quest Scroll, which are stored under Inventory > Quests. There are four ways to get a scroll:\n * When you invite people to your Party, you'll be rewarded with the Basi-List Scroll!\n * At level 15, you get a Quest-line, i.e., three linked quests. More Quest-lines unlock at levels 30, 40, and 60 respectively.\n * You can buy Quests from the Quests Shop (Shops > Quests) for Gold and Gems.\n * When you check in to Habitica a certain number of times, you'll be rewarded with Quest Scrolls. You earn a Scroll during your 1st, 7th, 22nd, and 40th check-ins.\n To battle the Boss or collect items for a Collection Quest, simply complete your tasks normally, and they will be tallied into damage overnight. (Reloading may be required to see the Boss's Health bar go down.) If you are fighting a Boss and you missed any Dailies, the Boss will damage your Party at the same time that you damage the Boss. After level 11 Mages and Warriors will gain Skills that allow them to deal additional damage to the Boss, so these are excellent classes to choose at level 10 if you want to be a heavy hitter.", + "iosFaqAnswer7": "在10等的時候,您可以選擇成為戰士、法師、盜賊或是醫者。(所有玩家在一開始都會被默認為戰士。) 每種職業都有各自的優點以及不同的裝備選擇,當您11等時還能夠施放職業技能。戰士可以很輕鬆地擊退魔王,還能夠抵擋更多來自任務的傷害,同時也是隊伍攻擊主力。法師也能夠給予魔王可觀的攻擊,同時還能快速地提升等級,且能夠幫助隊伍成員補充魔力。盜賊能獲得最多的金幣,同時也能撿到最多的掉落物品,而這些優點也能夠回饋給隊伍。最後是醫者,醫者擁有特殊技能可以治癒他們自身以及隊伍成員的生命值。\n\n如果您還沒決定好該選擇哪種職業的話 (例如,如果您覺得與其馬上選擇職業,不如先買齊目前所需的裝備),您可以點選「之後再決定」。之後,等您覺得時機已到時再自行到「選單」>「選擇職業」進行職業選擇。", + "androidFaqAnswer7": "在10等的時候,您可以選擇成為戰士、法師、盜賊或是醫者。(所有玩家在一開始都會被默認為戰士。) 每種職業都有各自的優點以及不同的裝備選擇,當您11等時還能夠施放職業技能。戰士可以很輕鬆地擊退魔王,還能夠抵擋更多來自任務的傷害,同時也是隊伍攻擊主力。法師也能夠給予魔王可觀的攻擊,同時還能快速地提升等級,且能夠幫助隊伍成員補充魔力。盜賊能獲得最多的金幣,同時也能撿到最多的掉落物品,而這些優點也能夠回饋給隊伍。最後是醫者,醫者擁有特殊技能可以治癒他們自身以及隊伍成員的生命值。\n\n如果您還沒決定好該選擇哪種職業的話 (例如,如果您覺得與其馬上選擇職業,不如先買齊目前所需的裝備),您可以點選「之後再決定」。之後,等您覺得時機已到時再自行到「選單」>「選擇職業」進行職業選擇。", + "webFaqAnswer7": "在10等的時候,您可以選擇成為戰士、法師、盜賊或是醫者。(所有玩家在一開始都會被默認為戰士。) 每種職業都有各自的優點以及不同的裝備選擇,當您11等時還能夠施放職業技能。戰士可以很輕鬆地擊退魔王,還能夠抵擋更多來自任務的傷害,同時也是隊伍攻擊主力。法師也能夠給予魔王可觀的攻擊,同時還能快速地提升等級,且能夠幫助隊伍成員補充魔力。盜賊能獲得最多的金幣,同時也能撿到最多的掉落物品,而這些優點也能夠回饋給隊伍。最後是醫者,醫者擁有特殊技能,可以治癒他們自身以及隊伍成員的生命值。如果您還沒決定好該選擇哪種職業的話 (例如,如果您覺得與其馬上選擇職業,不如先買完目前所需的裝備),您可以點選「之後再決定」,並在覺得時機已到時再自行到設定列裡進行職業選擇。", + "faqQuestion8": "為什麼我10等時,生命值和經驗值下方會多出一條藍色的狀態列?", + "iosFaqAnswer8": "當您10等時,除了能夠選擇職業外,還會出現一條藍色的狀態列,它是您的魔力值。當您繼續升等後,還會陸續解鎖一些特殊的職業技能以供消耗魔力值。每種職業都有各自獨特的技能,當11等時您會在「選單」>「技能」內找到它們。魔力值不像生命值一樣會隨著你等級提升而自動補滿。它會因為您達成好習慣、每日任務和待辦事項而增加,也會因為您做了壞習慣而減少。順帶一提,每隔一天魔力值也會悄悄回復一點點,當您完成越多的每日任務,隔天也能夠補充越多魔力值喔。", + "androidFaqAnswer8": "當您10等時,除了能夠選擇職業外,還會出現一條藍色的狀態列,它是您的魔力值。當您繼續升等後,還會陸續解鎖一些特殊的職業技能以供消耗魔力值。每種職業都有各自獨特的技能,當11等時您會在「選單」>「技能」內找到它們。魔力值不像生命值一樣會隨著你等級提升而自動補滿。它會因為您達成好習慣、每日任務和待辦事項而增加,也會因為您做了壞習慣而減少。順帶一提,每隔一天魔力值也會悄悄回復一點點,當您完成越多的每日任務,隔天也能夠補充越多魔力值喔。", + "webFaqAnswer8": "當您10等時,若您已選擇自己的職業,就會發現多了一條藍色的狀態列,它是您的魔力值。當您繼續升等後,還會陸續解鎖一些特殊的職業技能以供消耗魔力值。每種職業都有各自獨特的技能,當11等時您會在下方的技能列中找到它們。魔力值不像生命值一樣會隨著你等級提升而自動補滿。它會因為您達成好習慣、每日任務和待辦事項而增加,同時也會因為您做了壞習慣而減少。順帶一提,每隔一天魔力值也會悄悄回復一點點,當您完成越多的每日任務,隔天也能夠補充越多魔力值喔。", + "faqQuestion9": "我要怎麼做才能夠與魔王戰鬥,並繼續參與任務呢?", + "iosFaqAnswer9": "首先,您需要先加入或是建立一個隊伍(上面已有相關說明)。當然您也可以獨自一人對抗魔王,但我們還是推薦您加入一個隊伍,因為多點人會對抗魔王會輕鬆許多,而且在完成任務時有一些朋友會來讚賞您,這是非常激勵人心的!\n\n接著,您需要一卷任務卷軸,它會被存在「選單」>「物品」裡面。您有三種方式可以獲得卷軸: \n\n-當您15等時,您會取得一條任務線,裡面包含三個子任務。當您分別達到30等、40等、60等的時候,您可再解鎖更多的任務線。 \n-當您邀請別人進入您的隊伍,您將得到一卷名為「清單巨蟒」的任務卷軸做為獎勵。\n-您也可以在任務商城裡,用金幣或寶石購買任務卷軸。\n\n一般情況下,任務卷軸的任務將會是與魔王決鬥或者是收集特定物品。您只需要正常地完成您的任務,隔天系統就會自動將完成的任務的轉換成傷害攻擊魔王。(您可能需要由上往下拉以重新整理,這時就會看到魔王的血量下降了。)如果您在與魔王決鬥時沒做完全部的每日任務,那麼在您攻擊魔王的同時魔王也將會攻擊您所有的隊員哦!\n\n在11等之後,戰士和法師將得到可對魔王造成額外傷害的職業技能。所以如果您想成為一位高輸出的角色且剛好滿10等了,這兩種職業將會是您最好的選擇!", + "androidFaqAnswer9": "首先,您需要先加入或是建立一個隊伍(上面已有相關說明)。當然您也可以獨自一人對抗魔王,但我們還是推薦您加入一個隊伍,因為多點人會對抗魔王會輕鬆許多,而且在完成任務時有一些朋友會來讚賞您,這是非常激勵人心的!\n\n接著,您需要一卷任務卷軸,它會被存在「選單」>「物品」裡面。您有三種方式可以獲得卷軸: \n\n-當您15等時,您會取得一條任務線,裡面包含三個子任務。當您分別達到30等、40等、60等的時候,您可再解鎖更多的任務線。 \n-當您邀請別人進入您的隊伍,您將得到一卷名為「清單巨蟒」的任務卷軸做為獎勵。\n-您也可以在任務商城裡,用金幣或寶石購買任務卷軸。\n\n一般情況下,任務卷軸的任務將會是與魔王決鬥或者是收集特定物品。您只需要正常地完成您的任務,隔天系統就會自動將完成的任務的轉換成傷害攻擊魔王。(您可能需要由上往下拉以重新整理,這時就會看到魔王的血量下降了。)如果您在與魔王決鬥時沒做完全部的每日任務,那麼在您攻擊魔王的同時魔王也將會攻擊您所有的隊員哦!\n\n在11等之後,戰士和法師將得到可對魔王造成額外傷害的職業技能。所以如果您想成為一位高輸出的角色且剛好滿10等了,這兩種職業將會是您最好的選擇!", + "webFaqAnswer9": "首先,您需要先加入或是在導覽列上點選「隊伍」並建立一個隊伍。當然您也可以獨自一人對抗魔王,但我們還是推薦您加入一個隊伍,因為多點人會對抗魔王會輕鬆許多,而且在完成任務時有一些朋友會來讚賞您,這是非常激勵人心的!接著,您需要一卷任務卷軸,它們都被存在「背包」>「物品」>「任務」裡面。您有四種方式可以獲得卷軸: \n*當您邀請別人進入您的隊伍,您將得到一卷名為「清單巨蟒」的任務卷軸做為獎勵。\n*當您15等時,您會取得一條任務線,裡面包含三個子任務。當您分別達到30等、40等、60等時,還可再解鎖更多的任務線。 \n*您也可以在任務商城(「商店」>「任務」)用金幣或寶石購買任務卷軸。\n*當您登入Habitica累積滿一定數量時,您也可得到任務卷軸以茲鼓勵。您將在第1、7、22、40次時分別得到不一樣的卷軸。\n一般情況下,任務卷軸的任務將會是與魔王決鬥或者是收集特定物品。您只需要正常地完成您的任務,隔天系統就會自動將完成的任務的轉換成傷害攻擊魔王。(您可能需要由上往下拉以重新整理,這時就會看到魔王的血量下降了。)如果您在與魔王決鬥時沒做完全部的每日任務,那麼在您攻擊魔王的同時魔王也將會攻擊您所有的隊員哦!\n在11等之後,戰士和法師將得到可對魔王造成額外傷害的職業技能。所以如果您想成為一位高輸出的角色且剛好滿10等了,這兩種職業將會是您最好的選擇!", "faqQuestion10": "寶石是什麼?我要怎麼得到呢?", - "iosFaqAnswer10": "Gems are purchased with real money by tapping on the Gem icon in the header. When people buy Gems, they are helping us to keep the site running. We're very grateful for their support!\n\n In addition to buying Gems directly, there are three other ways players can gain Gems:\n\n * Win a Challenge that has been set up by another player. Go to Social > Challenges to join some.\n * Subscribe and unlock the ability to buy a certain number of Gems per month.\n * Contribute your skills to the Habitica project. See this wiki page for more details: [Contributing to Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica).\n\n Keep in mind that items purchased with Gems do not offer any statistical advantages, so players can still make use of the app without them!", - "androidFaqAnswer10": "Gems are purchased with real money by tapping on the Gem icon in the header. When people buy Gems, they are helping us to keep the site running. We're very grateful for their support!\n\n In addition to buying Gems directly, there are three other ways players can gain Gems:\n\n * Win a Challenge that has been set up by another player. Go to Social > Challenges to join some.\n * Subscribe and unlock the ability to buy a certain number of Gems per month.\n * Contribute your skills to the Habitica project. See this wiki page for more details: [Contributing to Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica).\n\n Keep in mind that items purchased with Gems do not offer any statistical advantages, so players can still make use of the app without them!", - "webFaqAnswer10": "Gems are purchased with real money, although [subscribers](https://habitica.com/user/settings/subscription) can purchase them with Gold. When people subscribe or buy Gems, they are helping us to keep the site running. We're very grateful for their support! In addition to buying Gems directly or becoming a subscriber, there are two other ways players can gain Gems:\n* Win a Challenge that has been set up by another player. Go to Challenges > Discover Challenges to join some.\n * Contribute your skills to the Habitica project. See this wiki page for more details: [Contributing to Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica). Keep in mind that items purchased with Gems do not offer any statistical advantages, so players can still make use of the site without them!", - "faqQuestion11": "我要怎麼做才能回報問題或者請求新功能呢?", - "iosFaqAnswer11": "You can report a bug, request a feature, or send feedback under Menu > About > Report a Bug and Menu > About > Send Feedback! We'll do everything we can to assist you.", - "androidFaqAnswer11": "You can report a bug, request a feature, or send feedback under About > Report a Bug and About > Send us Feedback! We'll do everything we can to assist you.", - "webFaqAnswer11": "To report a bug, go to [Help > Report a Bug](https://habitica.com/groups/guild/a29da26b-37de-4a71-b0c6-48e72a900dac) and read the points above the chat box. If you're unable to log in to Habitica, send your login details (not your password!) to [<%= techAssistanceEmail %>](<%= wikiTechAssistanceEmail %>). Don't worry, we'll get you fixed up soon! Feature requests are collected on Trello. Go to [Help > Request a Feature](https://trello.com/c/odmhIqyW/440-read-first-table-of-contents) and follow the instructions. Ta-da!", + "iosFaqAnswer10": "寶石需要透過點擊導覽列上的寶石圖示後並花費真錢才能購買。當您購買寶石的同時,您也正幫助了我們維持網站的營運。我們由衷地感謝您的支持!\n\n除了直接利用現金購買寶石外,還有三種其他的方式可以獲取寶石:\n*在別人設立好的挑戰中贏得勝利 。您可以到「社交」>「挑戰」裡加入一些挑戰。\n*訂閱我們,這樣就能每個月用遊戲金幣購買一定數量的寶石。\n*為Habitica作出貢獻,可查看wiki頁面以獲得詳細資訊:[幫助Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica)。\n\n注意! 購買寶石將不會得到額外的優勢。所以就算您沒有任何的寶石,還是可以開心順利地使用Habitica哦!", + "androidFaqAnswer10": "寶石需要透過點擊導覽列上的寶石圖示後並花費真錢才能購買。當您購買寶石的同時,您也正幫助了我們維持網站的營運。我們由衷地感謝您的支持!\n\n除了直接利用現金購買寶石外,還有三種其他的方式可以獲取寶石:\n*在別人設立好的挑戰中贏得勝利 。您可以到「社交」>「挑戰」裡加入一些挑戰。\n*訂閱我們,這樣就能每個月用遊戲金幣購買一定數量的寶石。\n*為Habitica作出貢獻,可查看wiki頁面以獲得詳細資訊:[幫助Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica)。\n\n注意! 購買寶石將不會得到額外的優勢。所以就算您沒有任何的寶石,還是可以開心順利地使用Habitica哦!", + "webFaqAnswer10": "寶石需要花費真錢才能購買。但是[訂閱者](https://habitica.com/user/settings/subscription)可以花費遊戲金幣購買它們。當您訂閱我們或是購買寶石的同時,您也正幫助了我們維持網站的營運。我們由衷地感謝您的支持!除了直接利用現金購買寶石外,還有兩種其他的方式可以獲取寶石:\n*在別人設立好的挑戰中贏得勝利 。可以到「社交」>「挑戰」裡加入一些挑戰。\n*為Habitica作出貢獻,可查看wiki頁面以獲得詳細資訊:[幫助Habitica](http://habitica.wikia.com/wiki/Contributing_to_Habitica)。注意! 購買寶石將不會得到額外的優勢。所以就算您沒有任何的寶石,還是可以開心順利地使用Habitica哦!", + "faqQuestion11": "我要怎麼做才能回報問題或者建議新功能呢?", + "iosFaqAnswer11": "您可以到「選單」>「關於」>「提交Bug」或是「回饋意見」裡回報錯誤、建議新功能或者是提供意見。我們將盡其所能的協助您!", + "androidFaqAnswer11": "您可以到「關於」>「回報問題」或是「提出問題」裡回報錯誤、建議新功能或者是提供意見。我們將盡其所能的協助您!", + "webFaqAnswer11": "您可以到[幫助>回報問題](https://habitica.com/groups/guild/a29da26b-37de-4a71-b0c6-48e72a900dac)裡回報錯誤。如果您無法登入Habitica,請提供您的登入資訊(不是您的密碼!)到[<%= techAssistanceEmail %>](<%= wikiTechAssistanceEmail %>)。別著急,我們將盡快解決問題! 我們都是透過Trello收集建議的新功能,請到[幫助>請求新功能](https://trello.com/c/odmhIqyW/440-read-first-table-of-contents)並依照指示操作。接著就期待您建議的新功能能在未來出現吧!", "faqQuestion12": "我要如何才能夠挑戰世界老闆?", - "iosFaqAnswer12": "World Bosses are special monsters that appear in the Tavern. All active users are automatically battling the Boss, and their tasks and Skills will damage the Boss as usual.\n\n You can also be in a normal Quest at the same time. Your tasks and Skills will count towards both the World Boss and the Boss/Collection Quest in your party.\n\n A World Boss will never hurt you or your account in any way. Instead, it has a Rage Bar that fills when users skip Dailies. If its Rage bar fills, it will attack one of the Non-Player Characters around the site and their image will change.\n\n You can read more about [past World Bosses](http://habitica.wikia.com/wiki/World_Bosses) on the wiki.", - "androidFaqAnswer12": "World Bosses are special monsters that appear in the Tavern. All active users are automatically battling the Boss, and their tasks and Skills will damage the Boss as usual.\n\n You can also be in a normal Quest at the same time. Your tasks and Skills will count towards both the World Boss and the Boss/Collection Quest in your party.\n\n A World Boss will never hurt you or your account in any way. Instead, it has a Rage Bar that fills when users skip Dailies. If its Rage bar fills, it will attack one of the Non-Player Characters around the site and their image will change.\n\n You can read more about [past World Bosses](http://habitica.wikia.com/wiki/World_Bosses) on the wiki.", - "webFaqAnswer12": "World Bosses are special monsters that appear in the Tavern. All active users are automatically battling the Boss, and their tasks and Skills will damage the Boss as usual. You can also be in a normal Quest at the same time. Your tasks and Skills will count towards both the World Boss and the Boss/Collection Quest in your party. A World Boss will never hurt you or your account in any way. Instead, it has a Rage Bar that fills when users skip Dailies. If its Rage bar fills, it will attack one of the Non-Player Characters around the site and their image will change. You can read more about [past World Bosses](http://habitica.wikia.com/wiki/World_Bosses) on the wiki.", - "iosFaqStillNeedHelp": "如果你有疑問,可是沒在 [這裡](http://habitica.wikia.com/wiki/FAQ)看到解答的話,到社交 > 酒館聊天,我們很高興為你服務!", - "androidFaqStillNeedHelp": "如果你的問題沒有出現在我們的[維基的問與答](http://habitica.wikia.com/wiki/FAQ),可以來酒館的聊天室,在「選單」>「社交」>「酒館」裡,我們會很樂意幫忙。", - "webFaqStillNeedHelp": "If you have a question that isn't on this list or on the [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ), come ask in the [Habitica Help guild](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! We're happy to help." + "iosFaqAnswer12": "世界級BOSS是出現在酒館的特別怪獸。所有在線的使用者都將自動跟Boss作戰。完成日常任務和使用技能都將自動對Boss造成傷害。\n\n您可以同時解一般的任務。您完成的日常任務與使用的技能都將同時對世界級Boss以及隊伍中的任務Boss造成傷害。\n\n世界Boss永遠無法攻擊您。取而代之的是,它有一個憤怒值,當使用者沒有完成每日任務時就會自動增加。如果憤怒值滿了,它就會隨機攻擊一位NPC,而它們的角色圖像也將被改變。\n\n您可以到wiki中獲得更多[歷史中的世界級BOSS](http://habitica.wikia.com/wiki/World_Bosses)的相關資訊。", + "androidFaqAnswer12": "世界級BOSS是出現在酒館的特別怪獸。所有在線的使用者都將自動跟Boss作戰。完成日常任務和使用技能都將自動對Boss造成傷害。\n\n您可以同時解一般的任務。您完成的日常任務與使用的技能都將同時對世界級Boss以及隊伍中的任務Boss造成傷害。\n\n世界Boss永遠無法攻擊您。取而代之的是,它有一個憤怒值,當使用者沒有完成每日任務時就會自動增加。如果憤怒值滿了,它就會隨機攻擊一位NPC,而它們的角色圖像也將被改變。\n\n您可以到wiki中獲得更多[歷史中的世界級BOSS](http://habitica.wikia.com/wiki/World_Bosses)的相關資訊。", + "webFaqAnswer12": "世界級BOSS是出現在酒館的特別怪獸。所有在線的使用者都將自動跟Boss作戰。完成日常任務和使用技能都將自動對Boss造成傷害。\n\n您可以同時解一般的任務。您完成的日常任務與使用的技能都將同時對世界級Boss以及隊伍中的任務Boss造成傷害。\n\n世界Boss永遠無法攻擊您。取而代之的是,它有一個憤怒值,當使用者沒有完成每日任務時就會自動增加。如果憤怒值滿了,它就會隨機攻擊一位NPC,而它們的角色圖像也將被改變。\n\n您可以到wiki中獲得更多[歷史中的世界級BOSS](http://habitica.wikia.com/wiki/World_Bosses)的相關資訊。", + "iosFaqStillNeedHelp": "如果您有任何疑問,但沒出現在以上列表中或是 [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ),請到「選單」 > 「酒館」的酒館聊天室裡詢問,我們將很高興地為您服務!", + "androidFaqStillNeedHelp": "如果您有任何疑問,但沒出現在以上列表中或是 [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ),請到「選單」 > 「酒館」的酒館聊天室裡詢問,我們將很高興地為您服務!", + "webFaqStillNeedHelp": "如果您有任何疑問,但沒出現在以上列表中或是 [Wiki FAQ](http://habitica.wikia.com/wiki/FAQ),請到「Habitica協助公會」(https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)裡詢問,我們將很高興地為您服務!" } \ No newline at end of file diff --git a/website/common/locales/zh_TW/front.json b/website/common/locales/zh_TW/front.json index c27aab0190..9fbffd8d9a 100644 --- a/website/common/locales/zh_TW/front.json +++ b/website/common/locales/zh_TW/front.json @@ -1,124 +1,124 @@ { "FAQ": "常見問題", - "termsAndAgreement": "By clicking the button below, you are indicating that you have read and agree to the Terms of Service and Privacy Policy.", + "termsAndAgreement": "通過點擊下面的按鈕,表示您已經閱讀並同意服務條款隱私權政策。", "accept1Terms": "當按下下面按鈕時,表示我同意", "accept2Terms": "以及", - "alexandraQuote": "當我在馬德里發表演說時,我真的不得不提到[Habitica]帶來的好處,如果你是一位需要老闆來管理自己的自由工作者,你絕對要擁有它!", - "althaireQuote": "接獲一個任務能不斷地激勵我完成所有的每日工作和待辦事項。我最大的動力就是不讓我的隊員們失望", - "andeeliaoQuote": "這是多麼棒的作品,我才剛開始玩幾天,已經更使我加的自覺並讓我有效運用時間!", - "autumnesquirrelQuote": "我減少對工作和做家事的拖延並且準時支付賬單。", - "businessSample1": "確認 1 頁庫存", - "businessSample2": "20分鐘歸檔", - "businessSample3": "排序和處理收件箱", - "businessSample4": "準備客戶的 1 份文件", - "businessSample5": "撥打客戶/推辭撥打電話", - "businessText": "在你的工作上使用Habitica", + "alexandraQuote": "當我在馬德里發表演說時,我真的不得不提到 Habitica 帶來的好處。如果您是一位需要老闆來管理自己的自由工作者,您絕對需要它!", + "althaireQuote": "持續地去完成任務真的能激勵我完成所有的每日工作和待辦事項。我最大的動力就是不辜負我的隊員們。", + "andeeliaoQuote": "這是多麼棒的程式。我才剛開始玩幾天,已經讓我加的生活變得更加充實更有效率!", + "autumnesquirrelQuote": "我現在工作和做家事時不再像以前一樣拖拖拉拉而且現在還會準時去支付賬單。", + "businessSample1": "確認 1 頁的庫存清單", + "businessSample2": "20分鐘的文件整理", + "businessSample3": "整理收件箱", + "businessSample4": "為客戶準備 1 份文件", + "businessSample5": "給客戶 撥打電話/推辭電話", + "businessText": "在您的工作中利用Habitica", "choreSample1": "把髒衣服放入洗衣籃", - "choreSample2": "20分鐘做作業", - "choreSample3": "清洗成堆的碗盤", + "choreSample2": "20分鐘的作家事時間", + "choreSample3": "洗碗盤", "choreSample4": "整理一間房間", - "choreSample5": "清洗並晾乾成堆的衣服", + "choreSample5": "清洗並晾乾衣服", "chores": "家務事", "clearBrowserData": "清除瀏覽器資料", "communityBug": "錯誤 (Bug) 回報", - "communityExtensions": "附加元件及擴充套件", + "communityExtensions": "附加元件&擴充套件", "communityFacebook": "Facebook", "communityFeature": "新功能請求", - "communityForum": "公會", - "communityKickstarter": "Kickstarter", + "communityForum": "論壇", + "communityKickstarter": "Kickstarter 集資平台", "communityReddit": "Reddit", - "companyAbout": "How It Works", + "companyAbout": "了解如何使用Habitica", "companyBlog": "部落格", "devBlog": "開發者的部落格", - "companyContribute": "Contribute", + "companyContribute": "貢獻", "companyDonate": "贊助", "companyPrivacy": "隱私權政策", "companyTerms": "服務條款", "companyVideos": "影片", "contribUse": "Habitica貢獻者使用", - "dragonsilverQuote": "我不能告訴你在數十年裡我到底用過多少個紀錄工作進度的系統.....[Habitica] 是唯一一個真正幫助我完成事情而不是只將它們列下來", - "dreimQuote": "上個暑假剛發現[Habitica]前,我有一半的大考得到F 。感謝每日任務...讓我懂得規劃並訓誡自己,而且就在一個月前,我所有大考都高分通過!", - "elmiQuote": "每天早上我期待著起床,因為我可以賺到金幣!", + "dragonsilverQuote": "我無法告訴您在數十年裡我到底已經用過了多少個紀錄工作進度的系統.....但 Habitica 是唯一個程式能真的幫助我完成事情而不僅僅只是將它們列下來而已。", + "dreimQuote": "去年暑假剛發現 Habitica 時,我有一半的大考都被當掉。幸好有了每日任務,它不但讓我懂得規劃並紀律自己,而且還讓我一個月前的大考全部都高分通過!", + "elmiQuote": "每天早上我最期待的事就是快點起床,因為我可以賺到更多的金幣!", "forgotPassword": "忘記密碼?", - "emailNewPass": "寄送 重設密碼的連結 到信箱", - "forgotPasswordSteps": "輸入你註冊Habitica帳號使用的電子郵件地址", + "emailNewPass": "寄送重設密碼的連結到您的信箱", + "forgotPasswordSteps": "輸入您註冊Habitica帳號時使用的電子郵件地址", "sendLink": "寄送連結", - "evagantzQuote": "我去看牙醫的時候,護理士發現我每天都有使用牙線,他很為我維持住這個好習慣感到開心,謝謝 [Habitica]!", - "examplesHeading": "玩家使用Habitica 來管理", - "featureAchievementByline": "做一些非常棒的事?取得勳章並展示出來!", + "evagantzQuote": "我第一次去看牙醫的時候,護理士發現我每天都有使用牙線,他為我維持住這個好習慣而感到開心。感謝 Habitica!", + "examplesHeading": "玩家使用Habitica 來管理...", + "featureAchievementByline": "做了一些一級棒的事?炫耀一下剛得到的徽章吧!", "featureAchievementHeading": "成就徽章", - "featureEquipByline": "在我們的市場,用你的任務獎勵購買限量版裝備、藥水、以及其他虛擬寶物!", + "featureEquipByline": "在商店用您的任務獎勵購買限量版裝備、藥水、以及其他虛擬寶物!", "featureEquipHeading": "裝備和其他", - "featurePetByline": "蛋和物品會在你完成任務之後掉落。保持生產力盡可能地收集寵物和座騎!", + "featurePetByline": "寵物蛋與道具會在您完成任務後掉落。盡可能地提高效率並收集寵物和座騎吧!", "featurePetHeading": "寵物和座騎", - "featureSocialByline": "與志同道合的人一起加入相同興趣的公會。建立挑戰與其他人相互競爭。", - "featureSocialHeading": "社交遊戲", - "featuredIn": "特色在於", - "featuresHeading": "我們還有其他功能", + "featureSocialByline": "與志同道合的人一起加入相同興趣的公會,並建立挑戰與其他人相互競爭。", + "featureSocialHeading": "多人遊戲", + "featuredIn": "大受好評於", + "featuresHeading": "我們還有這些特點...", "footerDevs": "開發者", "footerCommunity": "社群", "footerCompany": "公司", "footerMobile": "手機版本", "footerSocial": "社交", "forgotPass": "忘記密碼", - "frabjabulousQuote": "[Habitica] 讓我得到了很棒的高薪工作...更奇蹟似的,我現在會每天用牙線了!", + "frabjabulousQuote": "Habitica 是我能得到極高薪工作的原因...更不可思議的是,我現在養成習慣每天都會用牙線來潔牙!", "free": "免費加入", - "gamifyButton": "讓你今天的生活像遊戲一樣!", + "gamifyButton": "讓您的生活就像遊戲一樣!", "goalSample1": "練習 1 小時的鋼琴", - "goalSample2": "出版文章", - "goalSample3": "在部落格貼文", + "goalSample2": "編寫即將出版的文章", + "goalSample3": "在部落格上貼文", "goalSample4": "在Duolingo上日文課", - "goalSample5": "閱讀知識性文章", + "goalSample5": "閱讀一篇知識性的文章", "goals": "目標", - "guidanceForBlacksmiths": "鐵匠說明", + "guidanceForBlacksmiths": "寫code鐵匠指南", "wellness": "生命值", "healthSample1": "喝水/汽水", "healthSample2": "嚼口香糖/抽菸", "healthSample3": "走樓梯/搭電梯", "healthSample4": "吃健康/垃圾食物", - "healthSample5": "努力 1 小時", + "healthSample5": "盡情揮灑汗水1小時", "history": "歷史紀錄", - "infhQuote": "在我讀研究所的時候,[Habitica]幫我重建了生活重心!", + "infhQuote": "在我讀研究所的時候,Habitica 幫我重建了生活重心!", "invalidEmail": "需要有效的電子郵件地址,以便進行密碼重置。", - "irishfeet123Quote": "我曾經有個很糟的習慣,就是吃完飯後不去整理,而把杯子放得到處都是不放回原位。[Habitica] 救了我!", - "kazuiQuote": "還沒有遇到[Habitica]之前,我被論文給卡住了,而且我要求自己要做到的事也都進度緩慢,像是做家事、背單字,學圍棋等。至從遇到它之後我才發現,原來我把事情分散開來會更好管理,現在做這些每日任務成了我的動力來源!", + "irishfeet123Quote": "我曾經有個很糟的習慣,就是吃完飯後不想好好收拾碗盤,把杯子和碗弄得到處都是。感謝 Habitica 幫我解決掉這個壞習慣!", + "kazuiQuote": "加入 Habitica 之前,我的畢業論文一直無法完成,而且我要求自己要做到的事也都拖拖拉拉,像是做家事、背單字,學圍棋等等。但自從遇到Habitica 後我才發現,原來把事情拆成各種小型代辦事項會更好管理。現在做這些每日任務成了我的動力來源!", "landingend": "還沒被說服嗎?", - "landingend2": "See a more detailed list of [our features](/static/overview). Are you looking for a more private approach? Check out our [administrative packages](/static/plans), which are perfect for families, teachers, support groups, and businesses.", - "landingp1": "目前市面上出現的生產力工具app中,最常見的問題就是這些app其實並沒有辦法鼓勵你繼續堅持下去,但Habitica透過完成好習慣來克服了這個問題!它獎勵你的完成也處罰你的閃失,Habitica提供了外在動力促使你達成每一天的目標!", - "landingp2": "Whenever you reinforce a positive habit, complete a daily task, or take care of an old to-do, Habitica immediately rewards you with Experience points and Gold. As you gain experience, you can level up, increasing your Stats and unlocking more features, like classes and pets. Gold can be spent on in-game items that change your experience or personalized rewards you've created for motivation. When even the smallest successes provide you with an immediate reward, you're less likely to procrastinate.", + "landingend2": "查看[我們的功能](/static/overview)裡更詳細的說明列表。您在找尋一種更私人的方案嗎?請參考我們的[管理套組](/static/plans)。這是家庭、老師、互助團體、企業的最佳選擇。", + "landingp1": "目前市面上各種琳瑯滿目的生產力工具app中,最常見的問題就是這些app缺乏讓人想持續使用的動力。但Habitica克服了這點,它讓建立好習慣變得更加有趣!為自己的成功獎勵自己,為自己的懶惰有所懲罰。Habitica提供了外在的動力激勵您達成每一天的目標!", + "landingp2": "每當您堅持一個好習慣、完成一項每日任務、或是清除掉一項待辦事項,Habitica會馬上用經驗或金幣來獎勵您。獲得經驗後不但可以升級增加自己角色的屬性數值,還可以解鎖更多的更能,像是職業系統或是寵物系統。金幣可以用來購買裝備來提升能力,也可以購買自己用來激勵自己的個人獎勵。就算只是完成很微小的成就也可以立即得到獎賞,這讓您做事不再拖拖拉拉。", "landingp2header": "及時獎勵", - "landingp3": "當壞習慣發作或未能完成日常事務時,你的生命值會減少。若是生命值降得太低,你將失去一些現有的進度。透過給予即時後果的方式,Habitica 能夠在造成現實問題之前協助破除壞習慣和延宕的惡性循環。", + "landingp3": "一旦沉溺於壞習慣中或是未能完成每日任務時,您的生命值扣損。若是生命值降得太低,您將失去一些現有的進度。透過給予即時獎懲的方式,Habitica 能夠在您的壞習慣與拖延的惡性循環形成之前通通戒除掉。", "landingp3header": "承擔後果", - "landingp4": "Habitica建立了活躍的社群,來確保你對工作保持責任感。你可以和最麻吉的朋友們組成隊伍,並從中得到歡樂。除此之外,公會系統能讓你找到興趣相投的人或新的挑戰目標。\n你可以在公會分享你的目標,並且和大家交換如何解決問題的提示。\n在Habitica的社群裡意味著你同時擁有了支持,也擁有了解決事情的責任。", + "landingp4": "Habitica活躍的社群是您保持任務進展的重要支柱。您可以和最麻吉的朋友組成隊伍,並從互相鼓勵支持。除此之外,還有公會系統,它能讓您找到興趣相投或面對共同障礙的友人,互相分享自己的目標與經驗。在Habitica裡,社群意味著您同時擁有了朋友的支持與解決事情的責任感。", "landingp4header": "培養責任", "leadText": "Habitica 是一個讓你建立好習慣並提升生產力的免費app,使你的現實生活有如遊戲般有趣。遊戲內的獎罰制度激勵你向前邁進,強大的社群網路支持啟發你。Habitica 可以幫助你達成目標,使你變得健康,認真工作又快樂!!", "login": "登入", "loginAndReg": "登入 / 註冊", - "loginFacebookAlt": "使用 Facebook 註冊 / 登入", - "loginGoogleAlt": "使用 Google 註冊 / 登入", + "loginFacebookAlt": "透過Facebook帳號登入", + "loginGoogleAlt": "透過Google帳號登入", "logout": "登出", "marketing1Header": "透過遊戲養成您的習慣", - "marketing1Lead1Title": "Your Life, the Role Playing Game", - "marketing1Lead1": "Habitica 是能協助您在現實生活中養成生活習慣的遊戲。透過\"遊戲化\"的方式,將您自訂的任務(習慣、每日任務及待辦事項)轉變成您需要打敗的怪物。您越努力達成目標,遊戲中的你也會越來越強大;但若您越放縱自己,您的遊戲角色則會開始慢慢變弱。", + "marketing1Lead1Title": "您的人生RPG", + "marketing1Lead1": "Habitica 是一款能協助您在現實生活中改善生活習慣的遊戲。透過「遊戲化」的方式,將您自訂的任務(習慣、每日任務及待辦事項)轉變成您需要打敗的怪物。只要越努力達成目標,您在遊戲中的進展也會越順利。但若您開始放縱自己,遊戲角色也將會一點一滴地變得更衰弱。", "marketing1Lead2Title": "取得各種裝備", - "marketing1Lead2": "Improve your habits to build up your avatar. Show off the sweet gear you've earned!", + "marketing1Lead2": "改善您的習慣來增強您的角色形象。來炫耀一下您得到最寶貴的裝備吧!", "marketing1Lead3Title": "尋找隨機獎勵", - "marketing1Lead3": "For some, it's the gamble that motivates them: a system called \"stochastic rewards.\" Habitica accommodates all reinforcement and punishment styles: positive, negative, predictable, and random.", + "marketing1Lead3": "對某些人來說,最能激勵他們的方式就是透過賭博: 這機制稱為「隨機獎勵」。Habitica 擁有各種的獎懲方式: 不管是積極的、消極的、固定的、還是隨機的! ", "marketing2Header": "和朋友比賽,加入有趣的團體", - "marketing2Lead1Title": "Social Productivity", - "marketing2Lead1": "你可以獨自玩Habitica,但你會發現與其他人合作、競爭、共同分擔責任是非常吸引人的事情。任何自我提昇的課程中最有效的方法就是團體責任感,而又有什麼環境能比遊戲中的責任感與競爭意識更有效呢?", - "marketing2Lead2Title": "Fight Monsters", - "marketing2Lead2": "What's a Role Playing Game without battles? Fight monsters with your party. Monsters are \"super accountability mode\" - a day you miss the gym is a day the monster hurts *everyone!*", - "marketing2Lead3Title": "Challenge Each Other", - "marketing2Lead3": "Challenges let you compete with friends and strangers. Whoever does the best at the end of a challenge wins special prizes.", + "marketing2Lead1Title": "一起遊玩", + "marketing2Lead1": "您可以獨自遊玩Habitica,但最後您會發現與其他人一起合作、競爭、共同分擔責任,才能真正體會到樂趣。自我成長最有效的方法就是擁有團體責任感。而又有什麼能比遊戲提供更好的責任感與競爭的環境呢?", + "marketing2Lead2Title": "擊殺怪物", + "marketing2Lead2": "RPG怎麼能少了戰鬥元素呢? 與您的隊伍一起打怪吧! 怪物們已開啟「超級責任感模式」,只要您沒達成所有的每日任務,怪物將攻擊*所有的*隊員!", + "marketing2Lead3Title": "互相挑戰", + "marketing2Lead3": "挑戰機制讓您可以與朋友或是陌生人一同競爭。挑戰的獲勝者將可以贏得特別獎勵。", "marketing3Header": "應用程式與擴充套件", - "marketing3Lead1": "The **iPhone & Android** apps let you take care of business on the go. We realize that logging into the website to click buttons can be a drag.", - "marketing3Lead2Title": "Integrations", - "marketing3Lead2": "Other **3rd Party Tools** tie Habitica into various aspects of your life. Our API provides easy integration for things like the [Chrome Extension](https://chrome.google.com/webstore/detail/habitica/pidkmpibnnnhneohdgjclfdjpijggmjj?hl=en-US), for which you lose points when browsing unproductive websites, and gain points when on productive ones. [See more here](http://habitica.wikia.com/wiki/Extensions,_Add-Ons,_and_Customizations).", + "marketing3Lead1": "**iPhone & Android** 的app 讓您可以在外出時也能管理您的習慣。我們也知道有時後打開電腦並登入到網站,然後再勾選完成的任務不是件容易的事。", + "marketing3Lead2Title": "深度整合", + "marketing3Lead2": "其他的**第3方工具** 將Habitica融入到您各層面的生活。我們的API工具提供簡單的整合方式像是[Chrome 擴充套件](https://chrome.google.com/webstore/detail/habitica/pidkmpibnnnhneohdgjclfdjpijggmjj?hl=en-US)。當您在瀏覽會讓做事效率變差的網站時,您將會損血; 而瀏覽提高效率的網站時,則會得到經驗與金幣。[詳細資訊](http://habitica.wikia.com/wiki/Extensions,_Add-Ons,_and_Customizations)。", "marketing4Header": "組織或機構的應用環境", - "marketing4Lead1": "教育是遊戲化最能發揮作用的面向之一。我們都知道現在的學生是多麼寸步不離地玩著手機和遊戲;利用這種力量,推坑你的學生吧!讓他們和自己的朋友們正面競爭,並且用稀有裝備獎勵有良好行為的學生。接著就等著看他們自己的成績和態度往好處飆升。", + "marketing4Lead1": "教育是遊戲化最能發揮作用的領域之一。我們都知道現在的學生是多愛低頭滑手機和玩遊戲;我們應該好好利用這股力量!就讓他們和自己的朋友們相互良性競爭,並用稀有的獎勵來鼓勵有良好表現的學生。期待他們的成績和品行能突飛猛進吧。", "marketing4Lead1Title": "將遊戲融入教育", - "marketing4Lead2": "醫療保健的支出逐漸上升,我們總要做點什麼。有幾百種的課程能改善您的健康、減少您看醫生的錢。我們相信 Habitica 能幫助您通往健康的生活方式。", + "marketing4Lead2": "隨著醫療保健的支出逐漸上升,我們總要做點什麼來應對這個趨勢。我們這裡有幾百種不同的計畫能改善您的健康、並減少看醫生的錢。我們相信 Habitica 能幫助您通往健康的生活方式。", "marketing4Lead2Title": "將遊戲融入健康與保健", "marketing4Lead3-1": "想要將生活變成遊戲嗎?", "marketing4Lead3-2": "想要引入遊戲到教育、醫療或其他領域嗎?", @@ -126,96 +126,96 @@ "marketing4Lead3Title": "遊戲可以融入任何領域", "mobileAndroid": "Android", "mobileIOS": "iOS", - "motivate": "鼓舞自己還有你的夥伴們!", - "motivate1": "鼓勵自己去做任何事", - "motivate2": "妥善規劃,鼓勵自己,賺飽金幣!", + "motivate": "鼓舞自己還有您的夥伴們!", + "motivate1": "鼓勵自己嘗試去做任何事。", + "motivate2": "妥善規劃,鼓勵自己,賺取金幣!", "oldNews": "新消息", - "newsArchive": "Wikia 上的新聞檔案 (多國語言)", + "newsArchive": "Wikia 上的新聞存檔庫 (支援多國語言)", "passConfirm": "密碼確認", - "setNewPass": "Set New Password", - "passMan": "如果您正在使用密碼管理工具 (例如 1Password) 而在登入時遇到問題,請試試手動輸入使用者名稱及密碼。", + "setNewPass": "設立新密碼", + "passMan": "如果您有在使用密碼管理工具 (例如 1Password) 而且在登入時遇到問題,請試試手動輸入使用者名稱及密碼。", "password": "密碼", "playButton": "開始", "playButtonFull": "進入 Habitica的世界", "presskit": "媒體資料", "presskitDownload": "下載所有圖像:", - "presskitText": "Thanks for your interest in Habitica! The following images can be used for articles or videos about Habitica. For more information, please contact us at <%= pressEnquiryEmail %>.", - "pkQuestion1": "What inspired Habitica? How did it start?", - "pkAnswer1": "If you’ve ever invested time in leveling up a character in a game, it’s hard not to wonder how great your life would be if you put all of that effort into improving your real-life self instead of your avatar. We starting building Habitica to address that question.
Habitica officially launched with a Kickstarter in 2013, and the idea really took off. Since then, it’s grown into a huge project, supported by our awesome open-source volunteers and our generous users.", - "pkQuestion2": "Why does Habitica work?", - "pkAnswer2": "Forming a new habit is hard because people really need that obvious, instant reward. For example, it’s tough to start flossing, because even though our dentist tells us that it's healthier in the long run, in the immediate moment it just makes your gums hurt.
Habitica's gamification adds a sense of instant gratification to everyday objectives by rewarding a tough task with experience, gold… and maybe even a random prize, like a dragon egg! This helps keep people motivated even when the task itself doesn't have an intrinsic reward, and we've seen people turn their lives around as a result. You can check out success stories here: https://habitversary.tumblr.com", - "pkQuestion3": "Why did you add social features?", - "pkAnswer3": "Social pressure is a huge motivating factor for a lot of people, so we knew that we wanted to have a strong community that would hold each other accountable for their goals and cheer for their successes. Luckily, one of the things that multiplayer video games do best is foster a sense of community among their users! Habitica’s community structure borrows from these types of games; you can form a small Party of close friends, but you can also join a larger, shared-interest groups known as a Guild. Although some users choose to play solo, most decide to form a support network that encourages social accountability through features such as Quests, where Party members pool their productivity to battle monsters together.", - "pkQuestion4": "Why does skipping tasks remove your avatar’s health?", - "pkAnswer4": "If you skip one of your daily goals, your avatar will lose health the following day. This serves as an important motivating factor to encourage people to follow through with their goals because people really hate hurting their little avatar! Plus, the social accountability is critical for a lot of people: if you’re fighting a monster with your friends, skipping your tasks hurts their avatars, too.", - "pkQuestion5": "What distinguishes Habitica from other gamification programs?", - "pkAnswer5": "One of the ways that Habitica has been most successful at using gamification is that we've put a lot of effort into thinking about the game aspects to ensure that they are actually fun. We've also included many social components, because we feel that some of the most motivating games let you play with friends, and because research has shown that it's easier to form habits when you have accountability to other people.", - "pkQuestion6": "Who is the typical user of Habitica?", - "pkAnswer6": "Lots of different people use Habitica! More than half of our users are ages 18 to 34, but we have grandparents using the site with their young grandkids and every age in-between. Often families will join a party and battle monsters together.
Many of our users have a background in games, but surprisingly, when we ran a survey a while back, 40% of our users identified as non-gamers! So it looks like our method can be effective for anyone who wants productivity and wellness to feel more fun.", - "pkQuestion7": "Why does Habitica use pixel art?", - "pkAnswer7": "Habitica uses pixel art for several reasons. In addition to the fun nostalgia factor, pixel art is very approachable to our volunteer artists who want to chip in. It's much easier to keep our pixel art consistent even when lots of different artists contribute, and it lets us quickly generate a ton of new content!", - "pkQuestion8": "How has Habitica affected people's real lives?", - "pkAnswer8": "You can find lots of testimonials for how Habitica has helped people here: https://habitversary.tumblr.com", - "pkMoreQuestions": "Do you have a question that’s not on this list? Send an email to admin@habitica.com!", + "presskitText": "感謝您對Habitica的關注! 下面的所有圖片都可用在有關Habitica的文章或影片上。詳情請可以聯絡我們<%= pressEnquiryEmail %>。", + "pkQuestion1": "是甚麼啟發了Habitica呢? 你們又是怎們開始的? ", + "pkAnswer1": "如果您曾經花了很多時間在遊戲中升級您的角色,這就不難想像如果您可以將那些努力用在改進真實世界中的您自己,而不是您的虛擬角色,那麼您的生活會變得多麼美好啊! 為了這樣的問題,我們開始著手開發Habitica。
Habitica於2013年在Kickstarter集資網站上正式啟動,我們的理念大受歡迎。自從那時以後,Habitica 變成了一個非常巨大的專案,並被我們了不起的開源志願者以及慷慨大方的使用者們支持著。", + "pkQuestion2": "為甚麼Habitica的點子能行得通?", + "pkAnswer2": "養成全新的習慣真的很難,因為人們往往想要得到很顯著且及時的獎賞。舉個例子,要養成剔牙的習慣是非常難的,因為即便牙醫已經告訴我們說用牙線剔牙會讓牙齒變得更健康,但第一次使用的當下它卻只會讓您的牙齦很不舒服。
Habitica將人生遊戲化,在完成艱難的目標當下可以得到經驗、金幣,甚至是像一顆龍蛋這樣的隨機獎品來讓您的目標增添加了立即的滿足感。這幫助了大家擁有持續的行動力,就算是任務本身並不帶有實質的獎賞時也一樣。我們也因而看到有些人因此有了巨大的生活轉變。您可到這裡來看看一些成功經歷的故事: https://habitversary.tumblr.com 。", + "pkQuestion3": "為什麼你們想加入社交的元素?", + "pkAnswer3": "社交上的壓力對很多人來說是一個非常大的激勵因素。所以我們希望能建立一個強大的社群,讓大家都對自己的目標負責任並在達成時可以一同喝采。幸運的是,多人遊戲中最擅長的事情之一就是鞏固使用者們的社群意識! Habitica的社群結構借鑑了這些類型的遊戲。您可以和親朋好友們組成隊伍。但您也可以加入一個志趣相投、規模更大的團體,稱為公會。雖然有些玩家選擇單打獨鬥,但大多數人仍選擇建立一個互相支持的社群網絡,透過像是任務系統,此系統中 隊伍的成員可以匯集他們的生產力一同與怪獸戰鬥,等功能來培養社交上的責任感。", + "pkQuestion4": "為什麼未完成的任務會扣損角色的生命值?", + "pkAnswer4": "如果您未完成自己的每日任務,隔天您的角色將會損失生命值。這是因為大家都非常討厭傷害自己的小角色! 所以這個機制可以鼓勵大家盡可能地完成自己的目標。此外,社交上的壓力對很多人來說是非常重要的: 如果和朋友一同打怪,未完成自己的任務也將會傷害到自己隊友的角色。", + "pkQuestion5": "Habiticam與其它遊戲化的程式有何區別呢? ", + "pkAnswer5": "Habitica在使用遊戲化的方面最成功的一種方式就是我們投入大量精力來考慮遊戲中的各個層面,同時確保遊戲的趣味性。我們同時還囊括了許多社交的元素,因為我們覺得許多激勵人心的遊戲都允許您與朋友一同遊玩。而且研究也指出,當您需要對其他人負責時,此時養成一個習慣將會變得更加容易。", + "pkQuestion6": "哪些人是Habitica的典型使用者? ", + "pkAnswer6": "其實有許多不同類型的人都在用Habitica! 超過一半以上的使用使年齡都介於18到34歲。但也有許多爺爺奶奶一同陪伴年輕的孫子使用我們的網站,並且每個年齡層都有。一般而言,家庭會加入隊伍並一起與怪物戰鬥。
我們的許多使用者角色都有背景,但令人驚訝的是,我們調查後發現,有40%的使用者被認定為不玩電玩的人! 所以看起來我們的理念與方法對於任何希望透過有趣的方法來增進效率與健康的的人都是有效的。", + "pkQuestion7": "為什麼Habitica想採用像素畫?", + "pkAnswer7": "Habitica使用像素畫有幾個原因。除了懷舊風的因素之外,像素畫對於希望貢獻我們的志願美術師來說是非常平易近人的。即使有許多不同的美術師,使用像素畫也比較容易維持一致的風格,並且讓我們可以快速地創作大量的新內容!", + "pkQuestion8": "Habitica如何影響人們的真實生活呢? ", + "pkAnswer8": "您可以到這裡找到許多Habitica如何幫助使用者的感謝文章: https://habitversary.tumblr.com 。", + "pkMoreQuestions": "您想要問的問題沒有在清單中嗎? 可以寄信到admin@habitica.com!", "pkVideo": "影片", - "pkPromo": "Promos", - "pkLogo": "標識", - "pkBoss": "Bosses", - "pkSamples": "Sample Screens", - "pkWebsite": "網站", + "pkPromo": "宣傳品", + "pkLogo": "Logo", + "pkBoss": "Boss", + "pkSamples": "截圖範例", + "pkWebsite": "網頁版", "pkiOS": "iOS", "pkAndroid": "Android", "privacy": "隱私權政策", "psst": "噓!", - "punishByline": "用即將發生的後果警戒自己,破除壞習慣和一再拖延的惡性循環。", - "punishHeading1": "錯失了一個每日目標?", - "punishHeading2": "生命值降低!", - "questByline1": "和你朋友一起玩會讓你負責你的任務", - "questByline2": "對彼此發出挑戰,然後一起熱血完成目標吧!", - "questHeading1": "和朋友一起打怪物!", - "questHeading2": "如果你偷懶,他們會受傷!", + "punishByline": "利用即時獎懲系統破除壞習慣和一再拖延的惡性循環。", + "punishHeading1": "錯過了一個每日任務?", + "punishHeading2": "生命值下降!", + "questByline1": "和您的朋友一同遊玩,讓您對自己的任務有責任感", + "questByline2": "對彼此發出挑戰,然後一起完成目標吧!", + "questHeading1": "和朋友們一起大戰怪物!", + "questHeading2": "您的偷懶將會傷害同伴!", "register": "註冊", - "rewardByline1": "花費金幣獲得虛擬或是現實的獎勵", - "rewardByline2": "即時的獎賞讓你充滿動力!", + "rewardByline1": "花費金幣獲得虛擬及現實的獎勵", + "rewardByline2": "即時的獎賞讓您充滿動力!", "rewardHeading": "完成一個任務來獲得金幣!", "sampleDailies": "每日任務範例", "sampleHabits": "習慣範例", "sampleToDo": "待辦事項範例", "school": "學校", - "schoolSample1": "完成一個功課", - "schoolSample2": "學習1 個小時", - "schoolSample3": "與朋友一起學習", - "schoolSample4": "第1章的筆記", + "schoolSample1": "完成1項作業", + "schoolSample2": "學習1個小時", + "schoolSample3": "與學習群組會面", + "schoolSample4": "攥寫1章筆記", "schoolSample5": "閱讀1章", - "sixteenBitFilQuote": "感謝 [Habitica] 讓我以破紀錄的速度完成工作與任務,我總是非常˙期待升級!", - "skysailorQuote": "我的隊員還有我們的任務讓我不斷玩這個遊戲,這使我充滿動力去完成該做的事情並改善我的人生。", + "sixteenBitFilQuote": "感謝 Habitica 讓我以破紀錄的速度完成工作與任務。我總是非常˙期待能夠升到下一級!", + "skysailorQuote": "我的隊伍還有我們的任務讓我沉浸於這個遊戲。時時刻刻激勵我去完成自己的任務,還因而改變了我的生活。", "socialTitle": "Habitica - 讓生活變成遊戲", - "supermouse35Quote": "我比較常運動以及我好幾個月沒忘記吃我的藥!謝謝,Habit。 :D", + "supermouse35Quote": "我變得較常運動還有我已經好幾個月沒忘記吃我的藥!感謝,Habitica。 :D", "sync": "同步", "tasks": "工作", - "teamSample1": "主要會議行程安排在星期二", - "teamSample2": "Brainstorm Growth Hacking", - "teamSample3": "討論這週的 KPIs", + "teamSample1": "計畫禮拜二的會議行程", + "teamSample2": "腦力激盪時間", + "teamSample3": "討論本週的 關鍵績效指標(KPIs)", "teams": "隊伍", "terms": "服務條款及細則", - "testimonialHeading": "人家在說。。。", - "tumblr": "Tumblr", - "localStorageTryFirst": "If you are experiencing problems with Habitica, click the button below to clear local storage and most cookies for this website (other websites will not be affected). You will need to log in again after doing this, so first be sure that you know your log-in details, which can be found at Settings -> <%= linkStart %>Site<%= linkEnd %>.", - "localStorageTryNext": "If the problem persists, please <%= linkStart %>Report a Bug<%= linkEnd %> if you haven't already.", - "localStorageClearing": "Clearing Data", - "localStorageClearingExplanation": "Habitica's stored data is being cleared from your browser. You will be logged out and redirected to the home page. Please wait.", - "localStorageClear": "清除數據", - "localStorageClearExplanation": "This button will clear local storage and most cookies, and log you out.", + "testimonialHeading": "人家都怎麼說...", + "tumblr": "Tumblr部落格", + "localStorageTryFirst": "如果您在使用Habitica的途中遇到了問題,請點擊下方的按鈕來清除本地儲存及cookies(其他網站不會受影響)。在此之後您將需要重新登入,所以請先確保您知道個人的登入資訊。可以到設置-><%= linkStart %>網站<%= linkEnd %>中找到。", + "localStorageTryNext": "如果問題仍存在,如果還沒回報過,請使用<%= linkStart %>回報Bug<%= linkEnd %>。", + "localStorageClearing": "清除資料", + "localStorageClearingExplanation": "正在清除瀏覽器中Habitica的儲存資料。您將會被登出並重新導向至首頁。請稍候。", + "localStorageClear": "清除資料", + "localStorageClearExplanation": "此按鈕將刪除本地儲存與cookies,並且自動登出。", "tutorials": "新手教學", - "unlockByline1": "達成你的目標並升級。", - "unlockByline2": "解鎖新的獎勵工具,例如收集所有寵物、隨機掉落系統,以及更多!", - "unlockHeadline": "當你持續保持高生產力,你也解鎖新的遊戲內容。", + "unlockByline1": "完成目標,提升等級。", + "unlockByline2": "解鎖新的獎勵系統,例如寵物收集、隨機掉落系統,以及更多!", + "unlockHeadline": "當您持續保持高生產力,您將解鎖新的遊戲內容! ", "useUUID": "使用 UUID / API Token (供 Facebook 用戶使用)", - "username": "Login Name", - "emailOrUsername": "Email or Login Name (case-sensitive)", + "username": "使用者名稱", + "emailOrUsername": "電子郵件或使用者名稱(大小寫區分)", "watchVideos": "觀看影片", "work": "工作", - "zelahQuote": "有了 [Habitica],我可以為了獲得點數(早睡)或損失生命值(晚睡)而提早上床睡覺。", + "zelahQuote": "有了 Habitica,我能夠說服自己準時上床睡覺了,因為早睡能得到經驗值,晚睡會被扣血!", "reportAccountProblems": "回報帳戶問題", "reportCommunityIssues": "檢舉社群的問題", "subscriptionPaymentIssues": "Subscription and Payment Issues", diff --git a/website/common/locales/zh_TW/gear.json b/website/common/locales/zh_TW/gear.json index f8e0706f56..32300db20a 100644 --- a/website/common/locales/zh_TW/gear.json +++ b/website/common/locales/zh_TW/gear.json @@ -3,17 +3,17 @@ "equipmentType": "種類", "klass": "類別", "groupBy": "由<%= type %>分組", - "classBonus": "(This item matches your class, so it gets an additional 1.5 Stat multiplier.)", - "classArmor": "Class Armor", - "featuredset": "Featured Set <%= name %>", + "classBonus": "(這項物品適合你的職業,所以它額外獲得1.5倍屬性加成。)", + "classArmor": "職業盔甲", + "featuredset": "特色套裝<%= name %>", "mysterySets": "Mystery Sets", - "gearNotOwned": "You do not own this item.", + "gearNotOwned": "你不擁有這項物品。", "noGearItemsOfType": "你沒有任何這類物品。", "noGearItemsOfClass": "You already have all your class equipment! More will be released during the Grand Galas, near the solstices and equinoxes.", "classLockedItem": "This item is only available to a specific class. Change your class under the User icon > Settings > Character Build!", "tierLockedItem": "This item is only available once you've purchased the previous items in sequence. Keep working your way up!", - "sortByType": "Type", - "sortByPrice": "Price", + "sortByType": "種類", + "sortByPrice": "價錢", "sortByCon": "體質", "sortByPer": "感知", "sortByStr": "力量", @@ -27,7 +27,7 @@ "weaponWarrior1Text": "劍", "weaponWarrior1Notes": "普通士兵的劍。增加 <%= str %> 點力量。", "weaponWarrior2Text": "斧", - "weaponWarrior2Notes": "Double-bitted chopping weapon. Increases Strength by <%= str %>", + "weaponWarrior2Notes": "雙刃劈砍武器。增加<%= str %>點力量。", "weaponWarrior3Text": "流星錘", "weaponWarrior3Notes": "帶有尖刺的沉重棒子。增加 <%= str %> 點力量。", "weaponWarrior4Text": "藍寶石之劍", @@ -258,14 +258,14 @@ "weaponSpecialSpring2018MageNotes": "This magic flower never wilts! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2018 Spring Gear.", "weaponSpecialSpring2018HealerText": "Garnet Rod", "weaponSpecialSpring2018HealerNotes": "The stones in this staff will focus your power when you cast healing spells! Increases Intelligence by <%= int %>. Limited Edition 2018 Spring Gear.", - "weaponSpecialSummer2018RogueText": "Fishing Rod", - "weaponSpecialSummer2018RogueNotes": "This lightweight, practically unbreakable rod and reel can be dual-wielded to maximize your DPS (Dragonfish Per Summer). Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.", - "weaponSpecialSummer2018WarriorText": "Betta Fish Spear", - "weaponSpecialSummer2018WarriorNotes": "Mighty enough for battle, elegant enough for ceremony, this exquisitely crafted spear shows you will protect your home surf no matter what! Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.", - "weaponSpecialSummer2018MageText": "Lionfish Fin Rays", - "weaponSpecialSummer2018MageNotes": "Underwater, magic based on fire, ice, or electricity can prove hazardous to the Mage wielding it. Conjuring poisonous spines, however, works brilliantly! Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2018 Summer Gear.", - "weaponSpecialSummer2018HealerText": "Merfolk Monarch Trident", - "weaponSpecialSummer2018HealerNotes": "With a benevolent gesture, you command healing water to flow through your dominions in waves. Increases Intelligence by <%= int %>. Limited Edition 2018 Summer Gear.", + "weaponSpecialSummer2018RogueText": "釣竿", + "weaponSpecialSummer2018RogueNotes": "這個輕量、耐用的釣竿和捲線器可以雙重持用以最大化你的DPS(Dragonfish Per Summer,每個夏天釣起的巨口魚)。增加<%= str %>點力量。2018年夏季限量版裝備。", + "weaponSpecialSummer2018WarriorText": "鬥魚魚叉", + "weaponSpecialSummer2018WarriorNotes": "強大足以戰鬥,優雅適於儀式,這把精心打造的魚叉顯示出你會從任何危害家園的東西中保護你的家!增加<%= str %>點力量。2018年夏季限量版裝備。", + "weaponSpecialSummer2018MageText": "獅子魚輻鰭", + "weaponSpecialSummer2018MageNotes": "在水中,火、冰或電魔法會對施放法術的法師自己造成危害,然而召喚有毒的刺卻可以出色地運作!增加<%= int %>點智力和<%= per %>點感知。2018年夏季限量版裝備。", + "weaponSpecialSummer2018HealerText": "人魚帝王三叉戟", + "weaponSpecialSummer2018HealerNotes": "以一個友善的手勢,你指揮療癒之水從你的領海當中一陣陣流出。增加<%= int %>點智力。2018年夏季限量版裝備。", "weaponMystery201411Text": "盛宴之叉", "weaponMystery201411Notes": "刺傷你的仇敵或是插進你最愛的食物——這把多才多藝的叉子可是無所不能!沒有屬性加成。2014年11月訂閱者物品", "weaponMystery201502Text": "愛與真理之微光翅膀法杖", @@ -346,6 +346,8 @@ "weaponArmoireCobblersHammerNotes": "This hammer is specially made for leatherwork. It can do a real number on a red Daily in a pinch, though. Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 2 of 3).", "weaponArmoireGlassblowersBlowpipeText": "Glassblower's Blowpipe", "weaponArmoireGlassblowersBlowpipeNotes": "Use this tube to blow molten glass into beautiful vases, ornaments, and other fancy things. Increases Strength by <%= str %>. Enchanted Armoire: Glassblower Set (Item 1 of 4).", + "weaponArmoirePoisonedGobletText": "Poisoned Goblet", + "weaponArmoirePoisonedGobletNotes": "Use this to build your resistance to iocane powder and other inconceivably dangerous poisons. Increases Intelligence by <%= int %>. Enchanted Armoire: Piratical Princess Set (Item 3 of 4).", "armor": "盔甲", "armorCapitalized": "盔甲", "armorBase0Text": "正常服裝", @@ -402,8 +404,8 @@ "armorSpecialFinnedOceanicArmorNotes": "雖然看起來很精緻,但這件盔甲會讓你的皮膚摸起來像是有害的紅珊瑚哦。增加<%= str %>點力量。", "armorSpecialPyromancersRobesText": "Pyromancer's Robes", "armorSpecialPyromancersRobesNotes": "These elegant robes bestow each strike and spell with a burst of ethereal fire. Increases Constitution by <%= con %>.", - "armorSpecialBardRobesText": "Bardic Robes", - "armorSpecialBardRobesNotes": "These colorful robes may be conspicuous, but you can sing your way out of any situation. Increases Perception by <%= per %>.", + "armorSpecialBardRobesText": "吟遊詩人長袍", + "armorSpecialBardRobesNotes": "彩色長袍引人注目,吟遊詩人歌唱出路。增加<%= per %>點感知。", "armorSpecialLunarWarriorArmorText": "Lunar Warrior Armor", "armorSpecialLunarWarriorArmorNotes": "This armor is forged of moonstone and magical steel. Increases Strength and Constitution by <%= attrs %> each.", "armorSpecialMammothRiderArmorText": "Mammoth Rider Armor", @@ -580,14 +582,14 @@ "armorSpecialSpring2018MageNotes": "Your spell casting can only improve while clad in these soft, silky petals. Increases Intelligence by <%= int %>. Limited Edition 2018 Spring Gear.", "armorSpecialSpring2018HealerText": "Garnet Armor", "armorSpecialSpring2018HealerNotes": "Let this bright armor infuse your heart with power for healing. Increases Constitution by <%= con %>. Limited Edition 2018 Spring Gear.", - "armorSpecialSummer2018RogueText": "Pocket Fishing Vest", - "armorSpecialSummer2018RogueNotes": "Bobbers? Boxes of hooks? Spare line? Lockpicks? Smoke bombs? Whatever you need on hand for your summer fishing getaway, there's a pocket for it! Increases Perception by <%= per %>. Limited Edition 2018 Summer Gear.", - "armorSpecialSummer2018WarriorText": "Betta Tail Armor", - "armorSpecialSummer2018WarriorNotes": "Dazzle onlookers with whorls of magnificent color as you spin and dart through the water. How could any opponent dare strike at this beauty? Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.", - "armorSpecialSummer2018MageText": "Lionfish Scale Hauberk", - "armorSpecialSummer2018MageNotes": "Venom magic has a reputation for subtlety. Not so this colorful armor, whose message is clear to beast and task alike: watch out! Increases Intelligence by <%= int %>. Limited Edition 2018 Summer Gear.", - "armorSpecialSummer2018HealerText": "Merfolk Monarch Robes", - "armorSpecialSummer2018HealerNotes": "These cerulean vestments reveal that you have land-walking feet... well. Not even a monarch can be expected to be perfect. Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.", + "armorSpecialSummer2018RogueText": "多口袋釣魚背心", + "armorSpecialSummer2018RogueNotes": "浮標?盒裝釣鉤?備用釣魚線?開鎖器?煙霧彈?無論你的夏日釣魚之旅需要隨身攜帶什麼,都有一個口袋能裝它!增加<%= per %>點感知。2018年夏季限量版裝備。", + "armorSpecialSummer2018WarriorText": "鬥魚魚尾盔甲", + "armorSpecialSummer2018WarriorNotes": "用你在水中旋轉與飛舞造成的華麗色彩漩渦迷惑觀眾。怎有任何敵手膽敢攻擊這份美景?增加<%= con %>體質。2018年夏季限量版裝備。", + "armorSpecialSummer2018MageText": "獅子魚鱗鎖子甲", + "armorSpecialSummer2018MageNotes": "毒魔法以隱密聞名。不是指這件鮮艷的盔甲,它的訊息對野獸和任務一類的都很明顯:注意!增加<%= int %>點智力。2018年夏季限量版裝備。", + "armorSpecialSummer2018HealerText": "人魚帝王長袍", + "armorSpecialSummer2018HealerNotes": "這件天藍色的聖袍顯露出你有對能在陸地行走的雙腳……好吧,即使是帝王你也不能期待他是完美的。增加<%= con %>點體質。2018年夏季限量版裝備。", "armorMystery201402Text": "使者長袍", "armorMystery201402Notes": "閃閃發光又強大,這些衣服有很多攜帶信件的口袋。沒有屬性加成。 2014年2月訂閱者物品。", "armorMystery201403Text": "森林行者護甲", @@ -652,6 +654,8 @@ "armorMystery201712Notes": "The heat and light generated by this magic armor will warm your heart but never burn your skin! Confers no benefit. December 2017 Subscriber Item.", "armorMystery201802Text": "Love Bug Armor", "armorMystery201802Notes": "This shiny armor reflects your strength of heart and infuses it into any Habiticans nearby who may need encouragement! Confers no benefit. February 2018 Subscriber Item.", + "armorMystery201806Text": "Alluring Anglerfish Tail", + "armorMystery201806Notes": "This sinuous tail features glowing spots to light your way through the deep. Confers no benefit. June 2018 Subscriber Item.", "armorMystery301404Text": "蒸汽龐克套裝", "armorMystery301404Notes": "精巧又瀟灑,哇嗚!沒有屬性加成。3015年1月訂閱者物品。", "armorMystery301703Text": "Steampunk Peacock Gown", @@ -742,6 +746,8 @@ "armorArmoireGlassblowersCoverallsNotes": "These coveralls will protect you while you're making masterpieces with hot molten glass. Increases Constitution by <%= con %>. Enchanted Armoire: Glassblower Set (Item 2 of 4).", "armorArmoireBluePartyDressText": "Blue Party Dress", "armorArmoireBluePartyDressNotes": "You're perceptive, tough, smart, and so fashionable! Increases Perception, Strength, and Constitution by <%= attrs %> each. Enchanted Armoire: Blue Hairbow Set (Item 2 of 2).", + "armorArmoirePiraticalPrincessGownText": "Piratical Princess Gown", + "armorArmoirePiraticalPrincessGownNotes": "This luxuriant garment has many pockets for concealing weapons and loot! Increases Perception by <%= per %>. Enchanted Armoire: Piratical Princess Set (Item 2 of 4).", "headgear": "helm", "headgearCapitalized": "頭部裝備", "headBase0Text": "沒有頭部裝備", @@ -798,8 +804,8 @@ "headSpecialFireCoralCircletNotes": "這個裝備,由Habitica最偉大的煉金師設計,讓你可以在水中呼吸和潛水尋寶!", "headSpecialPyromancersTurbanText": "Pyromancer's Turban", "headSpecialPyromancersTurbanNotes": "This magical turban will help you breathe even in the thickest smoke! Plus it's extremely cozy! Increases Strength by <%= str %>.", - "headSpecialBardHatText": "Bardic Cap", - "headSpecialBardHatNotes": "Stick a feather in your cap and call it \"productivity\"! Increases Intelligence by <%= int %>.", + "headSpecialBardHatText": "吟遊詩人之帽", + "headSpecialBardHatNotes": "替你的帽帽插根羽毛並管它叫「生產力」!增加<%= int %>點智力。", "headSpecialLunarWarriorHelmText": "Lunar Warrior Helm", "headSpecialLunarWarriorHelmNotes": "The power of the moon will strengthen you in battle! Increases Strength and Intelligence by <%= attrs %> each.", "headSpecialMammothRiderHelmText": "Mammoth Rider Helm", @@ -976,14 +982,14 @@ "headSpecialSpring2018MageNotes": "The fancy petals of this helm will grant you special springtime magic. Increases Perception by <%= per %>. Limited Edition 2018 Spring Gear.", "headSpecialSpring2018HealerText": "Garnet Circlet", "headSpecialSpring2018HealerNotes": "The polished gems of this circlet will enhance your mental energy. Increases Intelligence by <%= int %>. Limited Edition 2018 Spring Gear.", - "headSpecialSummer2018RogueText": "Fishing Sun Hat", - "headSpecialSummer2018RogueNotes": "Provides comfort and protection from the harsh glare of the summer sun over the water. Especially important if you're more accustomed to staying stealthy in the shadows! Increases Perception by <%= per %>. Limited Edition 2018 Summer Gear.", - "headSpecialSummer2018WarriorText": "Betta Fish Barbute", - "headSpecialSummer2018WarriorNotes": "Show everyone you're the alpha betta with this flamboyant helm! Increases Strength by <%= str %>. Limited Edition 2018 Summer Gear.", - "headSpecialSummer2018MageText": "Lionfish Crest", - "headSpecialSummer2018MageNotes": "Glare dolorously upon anyone who dares say you look like a “tastyfish”. Increases Perception by <%= per %>. Limited Edition 2018 Summer Gear.", - "headSpecialSummer2018HealerText": "Merfolk Monarch Crown", - "headSpecialSummer2018HealerNotes": "Adorned with aquamarine, this finned diadem marks leadership of folk, fish, and those who are a bit of both! Increases Intelligence by <%= int %>. Limited Edition 2018 Summer Gear.", + "headSpecialSummer2018RogueText": "釣魚遮陽帽", + "headSpecialSummer2018RogueNotes": "從夏日陽光毒辣的照射中提供舒適和保護。如果你覺得在暗影中保持隱密會更自在,那它對你來說特別重要!增加<%= per %>點感知。2018年夏季限量版裝備。", + "headSpecialSummer2018WarriorText": "鬥魚頭盔", + "headSpecialSummer2018WarriorNotes": "用這個有著火紅背鰭的頭盔告訴每個人你簡直如魚得水!增加<%= str %>點力量。2018年夏季限量版裝備。", + "headSpecialSummer2018MageText": "獅子魚羽冠", + "headSpecialSummer2018MageNotes": "給予膽敢叫你「失智魚」的任何人哀痛目光。增加<%= per %>點感知。2018年夏季限量版裝備。", + "headSpecialSummer2018HealerText": "人魚帝王皇冠", + "headSpecialSummer2018HealerNotes": "以海藍寶點綴,這個帶鰭王冕象徵著對人類、魚類,還有任何帶著一點這兩者的統治權!增加<%= int %>點智力。2018年夏季限量版裝備。", "headSpecialGaymerxText": "彩虹戰士頭盔", "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.", "headMystery201402Text": "翼盔", @@ -1054,6 +1060,8 @@ "headMystery201803Notes": "Although its appearance is quite decorative, you can engage the wings on this circlet for extra lift! Confers no benefit. March 2018 Subscriber Item.", "headMystery201805Text": "Phenomenal Peacock Helm", "headMystery201805Notes": "This helm will make you the proudest and prettiest (possibly also the loudest) bird in town. Confers no benefit. May 2018 Subscriber Item.", + "headMystery201806Text": "Alluring Anglerfish Helm", + "headMystery201806Notes": "The mesmerizing light atop this helm will call all the creatures of the sea to your side. We urge you to use your glowy powers of attraction for good! Confers no benefit. June 2018 Subscriber Item.", "headMystery301404Text": "華麗禮帽", "headMystery301404Notes": "上流社會佼佼者的華麗禮帽!3015年1月訂閱者物品。沒有屬性加成。", "headMystery301405Text": "基礎禮帽", @@ -1154,6 +1162,8 @@ "headArmoireBigWigNotes": "Some powdered wigs are for looking more authoritative, but this one is just for laughs! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.", "headArmoireGlassblowersHatText": "Glassblower's Hat", "headArmoireGlassblowersHatNotes": "This hat mainly just looks good with your other protective glassblowing gear! Increases Perception by <%= per %>. Enchanted Armoire: Glassblower Set (Item 3 of 4).", + "headArmoirePiraticalPrincessHeaddressText": "Piratical Princess Headdress", + "headArmoirePiraticalPrincessHeaddressNotes": "Fancy buccaneers are known for their fancy headwear! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 1 of 4).", "offhand": "副手物品", "offhandCapitalized": "副手物品", "shieldBase0Text": "沒有副手裝備", @@ -1304,10 +1314,10 @@ "shieldSpecialSpring2018WarriorNotes": "This sturdy shield glows with the glory of first light. Increases Constitution by <%= con %>. Limited Edition 2018 Spring Gear.", "shieldSpecialSpring2018HealerText": "Garnet Shield", "shieldSpecialSpring2018HealerNotes": "Despite its fancy appearance, this garnet shield is quite durable! Increases Constitution by <%= con %>. Limited Edition 2018 Spring Gear.", - "shieldSpecialSummer2018WarriorText": "Betta Skull Shield", - "shieldSpecialSummer2018WarriorNotes": "Fashioned from stone, this fearsome skull-styled shield strikes fear into fish foes while rallying your Skeleton pets and mounts. Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.", - "shieldSpecialSummer2018HealerText": "Merfolk Monarch Emblem", - "shieldSpecialSummer2018HealerNotes": "This shield can produce a dome of air for the benefit of land-dwelling visitors to your watery realm. Increases Constitution by <%= con %>. Limited Edition 2018 Summer Gear.", + "shieldSpecialSummer2018WarriorText": "鬥魚骨盾", + "shieldSpecialSummer2018WarriorNotes": "以石頭塑成,這面嚇人的骨頭風格盾牌當你和你的骸骨寵物與坐騎齊聚一堂時,最能給予魚類敵人恐懼。增加<%= con %>點體質。2018年夏季限量版裝備。", + "shieldSpecialSummer2018HealerText": "人魚帝王紋章", + "shieldSpecialSummer2018HealerNotes": "這面盾牌可以製造空氣球體,以供來到你水中王國的陸棲訪客使用。增加<%= con %>點體質。2018年夏季限量版裝備。", "shieldMystery201601Text": "Resolution Slayer", "shieldMystery201601Notes": "This blade can be used to parry away all distractions. Confers no benefit. January 2016 Subscriber Item.", "shieldMystery201701Text": "Time-Freezer Shield", @@ -1368,6 +1378,8 @@ "shieldArmoireFancyShoeNotes": "A very special shoe you're working on. It's fit for royalty! Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Cobbler Set (Item 3 of 3).", "shieldArmoireFancyBlownGlassVaseText": "Fancy Blown Glass Vase", "shieldArmoireFancyBlownGlassVaseNotes": "What a fancy vase you've made! What will you put inside? Increases Intelligence by <%= int %>. Enchanted Armoire: Glassblower Set (Item 4 of 4).", + "shieldArmoirePiraticalSkullShieldText": "Piratical Skull Shield", + "shieldArmoirePiraticalSkullShieldNotes": "This enchanted shield will whisper the secret locations of your enemies' treasures- listen closely! Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Piratical Princess Set (Item 4 of 4).", "back": "後背附件", "backCapitalized": "Back Accessory", "backBase0Text": "沒有後背附件", @@ -1504,20 +1516,20 @@ "headAccessoryTigerEarsNotes": "這對老虎耳讓你看來像隻兇猛的老虎!沒有屬性加成。", "headAccessoryWolfEarsText": "狼耳", "headAccessoryWolfEarsNotes": "這對耳朵讓你看來像隻忠厚老實的狼!沒有屬性加成。", - "headAccessoryBlackHeadbandText": "Black Headband", - "headAccessoryBlackHeadbandNotes": "A simple black headband. Confers no benefit.", - "headAccessoryBlueHeadbandText": "Blue Headband", - "headAccessoryBlueHeadbandNotes": "A simple blue headband. Confers no benefit.", - "headAccessoryGreenHeadbandText": "Green Headband", - "headAccessoryGreenHeadbandNotes": "A simple green headband. Confers no benefit.", - "headAccessoryPinkHeadbandText": "Pink Headband", - "headAccessoryPinkHeadbandNotes": "A simple pink headband. Confers no benefit.", - "headAccessoryRedHeadbandText": "Red Headband", - "headAccessoryRedHeadbandNotes": "A simple red headband. Confers no benefit.", - "headAccessoryWhiteHeadbandText": "White Headband", - "headAccessoryWhiteHeadbandNotes": "A simple white headband. Confers no benefit.", - "headAccessoryYellowHeadbandText": "Yellow Headband", - "headAccessoryYellowHeadbandNotes": "A simple yellow headband. Confers no benefit.", + "headAccessoryBlackHeadbandText": "黑色髮箍", + "headAccessoryBlackHeadbandNotes": "一個簡單的黑色髮箍,沒有屬性加成。", + "headAccessoryBlueHeadbandText": "藍色髮箍", + "headAccessoryBlueHeadbandNotes": "一個簡單的藍色髮箍,沒有屬性加成。", + "headAccessoryGreenHeadbandText": "綠色髮箍", + "headAccessoryGreenHeadbandNotes": "一個簡單的綠色髮箍,沒有屬性加成。", + "headAccessoryPinkHeadbandText": "粉紅色髮箍", + "headAccessoryPinkHeadbandNotes": "一個簡單的粉紅色髮箍,沒有屬性加成。", + "headAccessoryRedHeadbandText": "紅色髮箍", + "headAccessoryRedHeadbandNotes": "一個簡單的紅色髮箍,沒有屬性加成。", + "headAccessoryWhiteHeadbandText": "白色髮箍", + "headAccessoryWhiteHeadbandNotes": "一個簡單的白色髮箍,沒有屬性加成。", + "headAccessoryYellowHeadbandText": "黃色髮箍", + "headAccessoryYellowHeadbandNotes": "一個簡單的黃色髮箍,沒有屬性加成。", "headAccessoryMystery201403Text": "森林徒步者鹿角", "headAccessoryMystery201403Notes": "這對鹿角上的苔蘚和地衣閃爍著微光。沒有屬性加成。2014年3月訂閱者物品。", "headAccessoryMystery201404Text": "暮光之城蝴蝶觸角", diff --git a/website/common/locales/zh_TW/generic.json b/website/common/locales/zh_TW/generic.json index 8ebdf057e2..6083c9b643 100644 --- a/website/common/locales/zh_TW/generic.json +++ b/website/common/locales/zh_TW/generic.json @@ -33,7 +33,7 @@ "showLess": "顯示更少", "expandToolbar": "展開列表", "collapseToolbar": "隱藏列表", - "markdownHelpLink": "Markdown formatting help", + "markdownHelpLink": "Markdown格式說明", "showFormattingHelp": "開啟格式使用提示", "hideFormattingHelp": "關閉格式使用提示", "youType": "輸入 :", @@ -281,11 +281,11 @@ "dismissAll": "全部清除", "messages": "訊息", "emptyMessagesLine1": "你沒有任何訊息", - "emptyMessagesLine2": "Send a message to start a conversation!", - "userSentMessage": "<%= user %> sent you a message", + "emptyMessagesLine2": "寄送訊息以開始對話!", + "userSentMessage": "<%= user %>寄給你一封訊息", "letsgo": "Let's Go!", "selected": "Selected", - "howManyToBuy": "How many would you like to buy?", - "habiticaHasUpdated": "There is a new Habitica update. Refresh to get the latest version!", - "contactForm": "Contact the Moderation Team" + "howManyToBuy": "你想要購買多少?", + "habiticaHasUpdated": "Habitica發布了更新。重新整理以獲得最新的版本!", + "contactForm": "聯絡管理員團隊" } \ No newline at end of file diff --git a/website/common/locales/zh_TW/groups.json b/website/common/locales/zh_TW/groups.json index 1e58464b8e..59572ab8f4 100644 --- a/website/common/locales/zh_TW/groups.json +++ b/website/common/locales/zh_TW/groups.json @@ -1,6 +1,6 @@ { "tavern": "酒館", - "tavernChat": "Tavern Chat", + "tavernChat": "酒館閒談", "innCheckOut": "離開旅館", "innCheckIn": "在旅館休息", "innText": "You're resting in the Inn! While checked-in, your Dailies won't hurt you at the day's end, but they will still refresh every day. Be warned: If you are participating in a Boss Quest, the Boss will still damage you for your Party mates' missed Dailies unless they are also in the Inn! Also, your own damage to the Boss (or items collected) will not be applied until you check out of the Inn.", @@ -8,15 +8,15 @@ "innCheckOutBanner": "You are currently checked into the Inn. Your Dailies won't damage you and you won't make progress towards Quests.", "resumeDamage": "Resume Damage", "helpfulLinks": "Helpful Links", - "communityGuidelinesLink": "Community Guidelines", + "communityGuidelinesLink": "社群規範", "lookingForGroup": "Looking for Group (Party Wanted) Posts", - "dataDisplayTool": "Data Display Tool", + "dataDisplayTool": "數據顯示工具", "reportProblem": "Report a Bug", "requestFeature": "Request a Feature", "askAQuestion": "提出問題", "askQuestionGuild": "Ask a Question (Habitica Help guild)", - "contributing": "Contributing", - "faq": "FAQ", + "contributing": "貢獻", + "faq": "常見問題", "lfgPosts": "尋找隊伍( 隊伍徵人 ) 貼文", "tutorial": "教學", "glossary": "詞彙表", @@ -50,11 +50,11 @@ "userId": "UUID", "invite": "邀請", "leave": "離開", - "invitedToParty": "You were invited to join the Party <%= party %>", - "invitedToPrivateGuild": "You were invited to join the private Guild <%= guild %>", - "invitedToPublicGuild": "You were invited to join the Guild <%= guild %>", - "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.", + "invitedToParty": "你受邀參加<%= party %>隊伍", + "invitedToPrivateGuild": "你受邀參加<%= guild %>私人公會", + "invitedToPublicGuild": "你受邀參加<%= guild %>公會", + "partyInvitationsText": "你有<%= numberInvites %>個隊伍邀請!做出明智的抉擇,因為你一次只能參加一個隊伍。", + "joinPartyConfirmationText": "你確定你要參加「<%= partyName %>」隊伍嗎?你一次只能參加一個隊伍。如果你加入了,其他所有的隊伍邀請都會被拒絕。", "invitationAcceptedHeader": "邀請已被接受", "invitationAcceptedBody": "<%= username %>接受了加入<%= groupName %>的邀請!", "joinNewParty": "加入新隊伍", @@ -64,8 +64,8 @@ "partyLoading3": "Your Party is gathering. Please wait...", "partyLoading4": "Your Party is materializing. Please wait...", "systemMessage": "系統訊息", - "newMsgGuild": "<%= name %> has new posts", - "newMsgParty": "Your Party, <%= name %>, has new posts", + "newMsgGuild": "<%= name %>有新的文章", + "newMsgParty": "你的隊伍<%= name %>有新的文章", "chat": "聊天", "sendChat": "發送", "toolTipMsg": "查看最新消息", @@ -106,22 +106,22 @@ "optionalMessage": "郵件選項", "yesRemove": "是的,移除他", "foreverAlone": "您不能喜歡自己的留言。請別當這種人。", - "sortBackground": "Sort by Background", - "sortClass": "Sort by Class", - "sortDateJoined": "Sort by Join Date", - "sortLogin": "Sort by Login Date", - "sortLevel": "Sort by Level", - "sortName": "Sort by Name", - "sortTier": "Sort by Tier", - "ascendingAbbrev": "Asc", - "descendingAbbrev": "Desc", + "sortBackground": "依背景排序", + "sortClass": "依職業排序", + "sortDateJoined": "依加入日期排序", + "sortLogin": "依登入日期排序", + "sortLevel": "依等級排序", + "sortName": "依名稱排序", + "sortTier": "依層級排序", + "ascendingAbbrev": "升序", + "descendingAbbrev": "降序", "applySortToHeader": "Apply Sort Options to Party Header", "confirmGuild": "以4個寶石建立公會?", "leaveGroupCha": "退出公會挑戰並且...", "confirm": "確認", - "leaveGroup": "Leave Guild", - "leavePartyCha": "Leave Party challenges and...", - "leaveParty": "Leave Party", + "leaveGroup": "退出公會", + "leavePartyCha": "退出隊伍挑戰並…", + "leaveParty": "退出隊伍", "sendPM": "送出私密訊息", "send": "送出", "messageSentAlert": "已寄出的留言", @@ -134,12 +134,11 @@ "PMPlaceholderDescription": "Select a conversation on the left", "PMPlaceholderTitleRevoked": "Your chat privileges have been revoked", "PMPlaceholderDescriptionRevoked": "You are not able to send private messages because your chat privileges have been revoked. If you have questions or concerns about this, please email admin@habitica.com to discuss it with the staff.", - "PMEnable": "Enable Private Messages", - "PMDisable": "Disable Private Messages", - "PMEnabledOptPopoverText": "When Private Messages are disabled, you still can send messages, but no one can send them to you.", - "PMDisabledOptPopoverText": "Enable this option to be able to receive messages.", + "PMReceive": "Receive Private Messages", + "PMEnabledOptPopoverText": "Private Messages are enabled. Users can contact you via your profile.", + "PMDisabledOptPopoverText": "Private Messages are disabled. Enable this option to allow users to contact you via your profile.", "PMDisabledCaptionTitle": "Private Messages are disabled", - "PMDisabledCaptionText": "You still can send messages, but no one can send them to you.", + "PMDisabledCaptionText": "You can still send messages, but no one can send them to you.", "block": "封鎖", "unblock": "解除封鎖", "pm-reply": "寄出回覆", @@ -152,7 +151,7 @@ "privateMessageGiftSubscriptionMessage": "已訂閱<%= numberOfMonths %>月!", "cannotSendGemsToYourself": "無法寄寶石給你自己。請嘗試訂閱我們。", "badAmountOfGemsToSend": "Amount must be within 1 and your current number of gems.", - "report": "Report", + "report": "檢舉", "abuseFlag": "舉報社群規範違規事件", "abuseFlagModalHeading": "Report a Violation", "abuseFlagModalBody": "Are you sure you want to report this post? You should only report a post that violates the <%= firstLinkStart %>Community Guidelines<%= linkEnd %> and/or <%= secondLinkStart %>Terms of Service<%= linkEnd %>. Inappropriately reporting a post is a violation of the Community Guidelines and may give you an infraction.", @@ -165,7 +164,7 @@ "needsText": "請輸入訊息", "needsTextPlaceholder": "在這裡輸入你的訊息", "copyMessageAsToDo": "複製訊息為待辦事項", - "copyAsTodo": "Copy as To-Do", + "copyAsTodo": "複製為待辦事項", "messageAddedAsToDo": "已複製訊息為待辦事項。", "messageWroteIn": "<%= user %> 在 <%= group %> 發言", "msgPreviewHeading": "訊息預覽", @@ -352,43 +351,43 @@ "joinedGuildText": "Ventured into the social side of Habitica by joining a Guild!", "badAmountOfGemsToPurchase": "Amount must be at least 1.", "groupPolicyCannotGetGems": "The policy of one group you're part of prevents its members from obtaining gems.", - "viewParty": "View Party", + "viewParty": "查看隊伍", "newGuildPlaceholder": "Enter your guild's name.", - "guildMembers": "Guild Members", - "guildBank": "Guild Bank", - "chatPlaceholder": "Type your message to Guild members here", - "partyChatPlaceholder": "Type your message to Party members here", - "fetchRecentMessages": "Fetch Recent Messages", - "like": "Like", - "liked": "Liked", + "guildMembers": "公會成員", + "guildBank": "公會銀行", + "chatPlaceholder": "在這裡輸入你給公會成員的訊息", + "partyChatPlaceholder": "在這裡輸入你給隊伍成員的訊息", + "fetchRecentMessages": "取得新訊息", + "like": "讚", + "liked": "已按讚", "joinGuild": "Join Guild", "inviteToGuild": "Invite to Guild", "messageGuildLeader": "Message Guild Leader", "donateGems": "Donate Gems", "updateGuild": "Update Guild", - "viewMembers": "View Members", + "viewMembers": "查看成員", "memberCount": "Member Count", "recentActivity": "Recent Activity", "myGuilds": "我的公會", "guildsDiscovery": "探索公會", - "role": "Role", - "guildOrPartyLeader": "Leader", - "guildLeader": "Guild Leader", - "member": "Member", - "guildSize": "Guild Size", - "goldTier": "Gold Tier", - "silverTier": "Silver Tier", - "bronzeTier": "Bronze Tier", + "role": "職位", + "guildOrPartyLeader": "會長", + "guildLeader": "公會會長", + "member": "成員", + "guildSize": "公會規模", + "goldTier": "黃金層級", + "silverTier": "白銀層級", + "bronzeTier": "青銅層級", "privacySettings": "Privacy Settings", "onlyLeaderCreatesChallenges": "Only the Leader can create Challenges", "privateGuild": "Private Guild", "charactersRemaining": "<%= characters %> characters remaining", "guildSummary": "Summary", "guildSummaryPlaceholder": "Write a short description advertising your Guild to other Habiticans. What is the main purpose of your Guild and why should people join it? Try to include useful keywords in the summary so that Habiticans can easily find it when they search!", - "groupDescription": "Description", + "groupDescription": "說明", "guildDescriptionPlaceholder": "Use this section to go into more detail about everything that Guild members should know about your Guild. Useful tips, helpful links, and encouraging statements all go here!", "markdownFormattingHelp": "[Markdown formatting help](http://habitica.wikia.com/wiki/Markdown_Cheat_Sheet)", - "partyDescriptionPlaceholder": "This is our Party's description. It describes what we do in this Party. If you want to learn more about what we do in this Party, read the description. Party on.", + "partyDescriptionPlaceholder": "這是我們隊伍的說明,它描述了我們在這個隊伍裡做什麼。如果你想要瞭解更多我們在這個隊伍裡做的事,請閱讀說明。加入我們。", "guildGemCostInfo": "A Gem cost promotes high quality Guilds and is transferred into your Guild's bank.", "noGuildsTitle": "你不是任何公會的成員。", "noGuildsParagraph1": "Guilds are social groups created by other players that can offer you support, accountability, and encouraging chat.", @@ -417,8 +416,8 @@ "updateParty": "Update Party", "upgrade": "Upgrade", "selectPartyMember": "選擇一名隊伍成員", - "areYouSureDeleteMessage": "Are you sure you want to delete this message?", - "reverseChat": "Reverse Chat", + "areYouSureDeleteMessage": "你確定要刪除這條訊息嗎?", + "reverseChat": "反轉發言", "invites": "Invites", "details": "Details", "participantDesc": "Once all members have either accepted or declined, the Quest begins. Only those who clicked 'accept' will be able to participate in the Quest and receive the rewards.", diff --git a/website/common/locales/zh_TW/limited.json b/website/common/locales/zh_TW/limited.json index dbc92e039b..53414afdbf 100644 --- a/website/common/locales/zh_TW/limited.json +++ b/website/common/locales/zh_TW/limited.json @@ -121,16 +121,16 @@ "spring2018TulipMageSet": "Tulip Mage (Mage)", "spring2018GarnetHealerSet": "Garnet Healer (Healer)", "spring2018DucklingRogueSet": "Duckling Rogue (Rogue)", - "summer2018BettaFishWarriorSet": "Betta Fish Warrior (Warrior)", - "summer2018LionfishMageSet": "Lionfish Mage (Mage)", - "summer2018MerfolkMonarchSet": "Merfolk Monarch (Healer)", - "summer2018FisherRogueSet": "Fisher-Rogue (Rogue)", - "eventAvailability": "Available for purchase until <%= date(locale) %>.", + "summer2018BettaFishWarriorSet": "鬥魚戰士(戰士)", + "summer2018LionfishMageSet": "獅子魚法師(法師)", + "summer2018MerfolkMonarchSet": "人魚帝王(醫者)", + "summer2018FisherRogueSet": "漁夫盜賊(盜賊)", + "eventAvailability": "可供購買直到<%= date(locale) %>。", "dateEndMarch": "四月30", "dateEndApril": "四月19", "dateEndMay": "五月31", "dateEndJune": "六月14", - "dateEndJuly": "七月29", + "dateEndJuly": "七月31", "dateEndAugust": "八月31", "dateEndOctober": "十月31", "dateEndNovember": "十一月30", diff --git a/website/common/locales/zh_TW/loginincentives.json b/website/common/locales/zh_TW/loginincentives.json index 3b466c4889..68796c02fe 100644 --- a/website/common/locales/zh_TW/loginincentives.json +++ b/website/common/locales/zh_TW/loginincentives.json @@ -1,6 +1,6 @@ { "unlockedReward": "你收到 <%= reward %>", - "earnedRewardForDevotion": "You have earned <%= reward %> for being committed to improving your life.", + "earnedRewardForDevotion": "你因為致力於改善你的生活而獲得了<%= reward %>。", "nextRewardUnlocksIn": "達到你的下個獎品所需的簽到次數: <%= numberOfCheckinsLeft %>", "awesome": "讚!", "totalCount": "<%= count %> 總數", diff --git a/website/common/locales/zh_TW/npc.json b/website/common/locales/zh_TW/npc.json index b5aa806acd..3c000ccfb0 100644 --- a/website/common/locales/zh_TW/npc.json +++ b/website/common/locales/zh_TW/npc.json @@ -1,7 +1,7 @@ { "npc": "NPC", "npcAchievementName": "<%= key %> NPC", - "npcAchievementText": "Backed the Kickstarter project at the maximum level!", + "npcAchievementText": "支持了最高等級的Kickstarter項目!", "welcomeTo": "歡迎來到", "welcomeBack": "歡迎回來!", "justin": "Justin", @@ -24,15 +24,15 @@ "pauseDailies": "暫停傷害", "unpauseDailies": "停止暫停傷害", "staffAndModerators": "員工和管理員", - "communityGuidelinesIntro": "Habitica tries to create a welcoming environment for users of all ages and backgrounds, especially in public spaces like the Tavern. If you have any questions, please consult our Community Guidelines.", - "acceptCommunityGuidelines": "I agree to follow the Community Guidelines", + "communityGuidelinesIntro": "Habitica試著創造對所有年齡和背景的使用者而言都感到歡迎的環境,特別是在像酒館之類的公共空間。如果你有任何問題,請查閱我們的社群規範。", + "acceptCommunityGuidelines": "我願意遵守社群規範", "daniel": "Daniel", "danielText": "歡迎來到酒館!在這裡坐一下來認識其他人吧。如果你需要休息(休假?生病?),我會讓你入住旅館。一旦入住,你的每日任務會原地凍結,直到退房的隔天。你將不用為錯過每日任務受傷,但是你仍然能點選完成那些任務。", "danielText2": "警告:如果你正在參與一個boss戰任務,你仍然會因為隊友未完成的每日任務,受到boss的傷害。而且你給boss的傷害(或是收到東西)將會在妳離開旅館時才生效。", "danielTextBroken": "歡迎來到酒館...痾應該是吧...如果你想休息,我會幫你安排到旅館...在旅館裡休息的期間,你的每日任務在每天結算時不會對你造成傷害,但你還是可以完成他們...如果你有體力的話...", "danielText2Broken": "哦...如果你正參與一場 boss 任務,boss 還是會因為隊友未完成的每日任務而傷害你...另外,你無法對 Boss 造成傷害 ( 或獲得物品 ),直到你離開旅館為止...", - "worldBossEvent": "World Boss Event", - "worldBossDescription": "World Boss Description", + "worldBossEvent": "世界Boss事件", + "worldBossDescription": "世界Boss說明", "alexander": "商人Alexander", "welcomeMarket": "歡迎來到市場!在這裡買少見的蛋和藥水!賣掉你多餘的物品!委託服務!來瞧瞧我們能為你提供什麼。", "welcomeMarketMobile": "歡迎來到市場!在這裡買少見的蛋和藥水!來瞧瞧我們能為你提供什麼。", @@ -40,15 +40,15 @@ "displayEggForGold": "你要販售一個<%= itemType %>蛋嗎?", "displayPotionForGold": "你要販售一個<%= itemType %>藥水嗎?", "sellForGold": "以 <%= gold %> 金幣販售", - "howManyToSell": "How many would you like to sell?", - "yourBalance": "Your balance", + "howManyToSell": "你想要販售多少?", + "yourBalance": "你的餘額", "sell": "販售", "buyNow": "立刻購買", - "sortByNumber": "Number", + "sortByNumber": "編號", "featuredItems": "特色物品!", "hideLocked": "隱藏未解鎖", "hidePinned": "隱藏釘選", - "hideMissing": "Hide Missing", + "hideMissing": "隱藏未發現", "amountExperience": "<%= amount %>經驗值", "amountGold": "<%= amount %>金幣", "namedHatchingPotion": "<%= type %>孵化藥劑", @@ -60,7 +60,7 @@ "sortBy": "排序依", "groupBy2": "分組依", "sortByName": "名稱", - "quantity": "Quantity", + "quantity": "數量", "cost": "花費", "shops": "商店", "custom": "自訂", @@ -72,9 +72,9 @@ "purchasedItem": "你買了<%= itemName %>", "ian": "Ian", "ianText": "歡迎來到任務商店! 這裡可以買任務卷軸,與朋友一起打怪。記得常來看看有什麼可以買!", - "ianTextMobile": "Can I interest you in some quest scrolls? Activate them to battle monsters with your Party!", + "ianTextMobile": "我可以喚起你對任務捲軸的興趣嗎?啟動它們以和你的隊伍對戰怪獸!", "ianBrokenText": "歡迎來到任務商店...你可以跟你朋友們在這裡使用任務卷軸打怪...一定要來看看我們右邊販售的精美任務卷軸哦...", - "featuredQuests": "Featured Quests!", + "featuredQuests": "特色任務", "cannotBuyItem": "你不能買這項物品。", "mustPurchaseToSet": "Must purchase <%= val %> to set it on <%= key %>.", "typeRequired": "需要種類", @@ -89,11 +89,11 @@ "unlocked": "物品解鎖", "alreadyUnlocked": "Full set already unlocked.", "alreadyUnlockedPart": "Full set already partially unlocked.", - "invalidQuantity": "Quantity to purchase must be a number.", + "invalidQuantity": "購買數量必須是一個數字。", "USD": "(美金)", - "newStuff": "New Stuff by Bailey", - "newBaileyUpdate": "New Bailey Update!", - "tellMeLater": "Tell Me Later", + "newStuff": "Bailey的新玩意兒", + "newBaileyUpdate": "Bailey的新信息!", + "tellMeLater": "稍後顯示", "dismissAlert": "不再顯示", "donateText1": "在你的帳號裡增加20個寶石。寶石可以用來購買特殊的虛擬物品,例如衣服和髮型。", "donateText2": "請幫助Habitica", @@ -105,12 +105,12 @@ "amazonInstructions": "點選使用 Amazon Payments 支付。", "paymentMethods": "付款方式:", "classGear": "職業裝備", - "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.", + "classGearText": "恭喜你選擇了一個職業!我把你的新基本武器加入你的背包裡了。查看下方好裝備它!", + "classStats": "這些事你的職業屬性;它們會影響遊戲。每次你的等級提昇,你都會獲得一點以供分配到一個特定屬性。把滑鼠游標移到每個屬性上以獲得更多資訊。", "autoAllocate": "自動分配", - "autoAllocateText": "If 'Automatic Allocation' is selected, your avatar gains Stats automatically based on your tasks' Stats, which you can find in TASK > Edit > Advanced Settings > Stat Allocation. Eg, if you hit the gym often, and your 'Gym' Daily is set to 'Strength', you'll gain Strength automatically.", + "autoAllocateText": "如果選擇了「自動分配」,你的角色會根據任務屬性自動獲得屬性。你可以在任務>編輯>進階設定>屬性分配裡面找到它。例如,如果你經常去健身房,而且你的「健身房」每日任務被設定成「力量」,你將會自動獲得力量。", "spells": "技能", - "spellsText": "You can now unlock class-specific skills. You'll see your first at level 11. Your mana replenishes 10 points per day, plus 1 point per completed To-Do.", + "spellsText": "你現在可以解鎖職業特有技能。你將會在等級11看到你的第一個技能。你的魔力每天會補充10點,加上每個完成的待辦事項都有1點。", "skillsTitle": "技能", "toDo": "待辦事項", "moreClass": "更多關於職業系統的訊息,請參考維基亞。", @@ -132,10 +132,10 @@ "tourChallengesPage": "一些夥伴會創造挑戰,參與挑戰會加入一些工作到你的工作中,贏得挑戰會得到成就甚至是寶石!", "tourMarketPage": "從4級開始,當你完成任務時,蛋和孵化藥水會隨機掉落。他們會出現在這裡—使用它們來孵化寵物!你也可以從集市購買物品。", "tourHallPage": "這裡是英雄館。那些對開源有貢獻的玩家,包含在程式、美術、音樂、著作,或是到處幫忙的人們列於其中。他們已經獲得 寶石、特殊裝備、與偉大的名聲。你也可以為 Habitica 做出貢獻!", - "tourPetsPage": "This is the Stable! After reaching level 3, you will gather pet eggs and hatching potions as you complete tasks. When you hatch a pet in the Market, it will appear here! Click a pet's image to add it to your avatar. Feed them with the food you find after level 3, and they'll grow into powerful mounts.", - "tourMountsPage": "Once you've fed a pet enough food to turn it into a mount, it will appear here. Click a mount to saddle up!", - "tourEquipmentPage": "This is where your Equipment is stored! Your Battle Gear affects your Stats. If you want to show different Equipment on your avatar without changing your Stats, click \"Enable Costume.\"", - "equipmentAlreadyOwned": "You already own that piece of equipment", + "tourPetsPage": "這裡是馬廄!到達等級3之後,你將在完成任務時收到寵物蛋和孵化藥水。當你在市場孵化一隻寵物,牠將會出現在這裡!點擊寵物的圖像來把牠加到你的角色身旁。餵食牠們你在等級3之後發現的食物,牠們將會成長為強大的坐騎。", + "tourMountsPage": "一旦你餵給寵物足夠的食物讓牠轉變成坐騎,牠將會出現在這裡。點擊坐騎以套上鞍!", + "tourEquipmentPage": "這裡是你的裝備收藏的地方!你的戰鬥裝備會影響你的屬性。如果你希望替角色穿上不同的裝備而又不改變屬性,點擊「啟用服裝」。", + "equipmentAlreadyOwned": "你已經擁有這個裝備", "tourOkay": "好!", "tourAwesome": "太棒了!", "tourSplendid": "精彩!", diff --git a/website/common/locales/zh_TW/pets.json b/website/common/locales/zh_TW/pets.json index 71c4870a90..6ce3063950 100644 --- a/website/common/locales/zh_TW/pets.json +++ b/website/common/locales/zh_TW/pets.json @@ -43,7 +43,7 @@ "hatchingPotion": "孵化藥水", "noHatchingPotions": "你沒有任何孵化藥水。", "inventoryText": "點選一顆蛋後,可使用的藥水會亮起綠色的背景,然後點擊藥水,來孵化出寵物。如果沒有藥水亮起綠色背景,再點擊一次蛋,可以取消點選。然後先點擊藥水,看看可使用的寵物蛋,它們同樣會亮起綠色背景。你也可以在商人Alexander那裡,賣掉不想要的物品。", - "haveHatchablePet": "You have a <%= potion %> hatching potion and <%= egg %> egg to hatch this pet! Click the paw print to hatch.", + "haveHatchablePet": "你擁有一瓶<%= potion %>孵化藥水和一顆<%= egg %>蛋,可以孵化出這隻寵物!點擊爪印來孵化牠。", "quickInventory": "快捷背包", "foodText": "食物", "food": "食物和鞍", @@ -123,23 +123,23 @@ "foodWikiUrl": "http://habitica.wikia.com/wiki/Food_Preferences", "welcomeStable": "Welcome to the Stable!", "welcomeStableText": "I'm Matt, the Beast Master. Starting at level 3, you can hatch Pets from Eggs by using Potions you find! When you hatch a Pet from your Inventory, it will appear here! Click a Pet's image to add it to your avatar. Feed them here with the Food you find after level 3, and they'll grow into hardy Mounts.", - "petLikeToEat": "What does my pet like to eat?", - "petLikeToEatText": "Pets will grow no matter what you feed them, but they'll grow faster if you feed them the one food that they like best. Experiment to find out the pattern, or see the answers here:
http://habitica.wikia.com/wiki/Food_Preferences", - "filterByStandard": "Standard", - "filterByMagicPotion": "Magic Potion", + "petLikeToEat": "我的寵物喜歡吃甚麼?", + "petLikeToEatText": "無論你餵寵物吃什麼牠們都會長大,但如果你餵寵物最喜歡的食物給牠們,寵物會成長地比較快。試驗來挖掘關聯,或在這裡看答案:
http://habitica.wikia.com/wiki/Food_Preferences", + "filterByStandard": "標準", + "filterByMagicPotion": "魔法藥水", "filterByQuest": "Quest", - "standard": "Standard", - "sortByColor": "Color", - "sortByHatchable": "Hatchable", - "hatch": "Hatch!", - "foodTitle": "Food", - "dragThisFood": "Drag this <%= foodName %> to a Pet and watch it grow!", - "clickOnPetToFeed": "Click on a Pet to feed <%= foodName %> and watch it grow!", - "dragThisPotion": "Drag this <%= potionName %> to an Egg and hatch a new pet!", - "clickOnEggToHatch": "Click on an Egg to use your <%= potionName %> hatching potion and hatch a new pet!", - "hatchDialogText": "Pour your <%= potionName %> hatching potion on your <%= eggName %> egg, and it will hatch into a <%= petName %>.", - "clickOnPotionToHatch": "Click on a hatching potion to use it on your <%= eggName %> and hatch a new pet!", - "notEnoughPets": "You have not collected enough pets", - "notEnoughMounts": "You have not collected enough mounts", - "notEnoughPetsMounts": "You have not collected enough pets and mounts" + "standard": "標準型", + "sortByColor": "顏色", + "sortByHatchable": "可孵化", + "hatch": "孵化!", + "foodTitle": "食物", + "dragThisFood": "拖曳這個<%= foodName %>到寵物身上並看著它成長!", + "clickOnPetToFeed": "點擊寵物以餵食<%= foodName %>並看著它成長!", + "dragThisPotion": "拖曳這個<%= potionName %>到蛋上並孵化一隻新寵物!", + "clickOnEggToHatch": "點擊蛋以使用<%= potionName %>孵化藥水並孵化一隻新寵物!", + "hatchDialogText": "倒你的<%= potionName %>孵化藥水在你的<%= eggName %>蛋上,它將會孵化出一隻<%= petName %>。", + "clickOnPotionToHatch": "點擊孵化藥水以用它在<%= eggName %>上並孵化一隻新寵物!", + "notEnoughPets": "你還未收集足夠的寵物", + "notEnoughMounts": "你還未收集足夠的坐騎", + "notEnoughPetsMounts": "你還未收集足夠的寵物和坐騎" } \ No newline at end of file diff --git a/website/common/locales/zh_TW/quests.json b/website/common/locales/zh_TW/quests.json index ed924ac3a3..95d31e1615 100644 --- a/website/common/locales/zh_TW/quests.json +++ b/website/common/locales/zh_TW/quests.json @@ -8,7 +8,7 @@ "unlockableQuests": "可解鎖的任務", "goldQuests": "Masterclasser Quest Lines", "questDetails": "任務內容", - "questDetailsTitle": "Quest Details", + "questDetailsTitle": "任務內容", "questDescription": "Quests allow players to focus on long-term, in-game goals with the members of their party.", "invitations": "邀請", "completed": "完成了!", @@ -98,6 +98,7 @@ "guildQuestsNotSupported": "公會不能邀請任務。", "questNotOwned": "你不擁有這件任務卷軸。", "questNotGoldPurchasable": "任務 \"<%= key %>\" 不是可用金幣購買的任務。", + "questNotGemPurchasable": "Quest \"<%= key %>\" is not a Gem-purchasable quest.", "questLevelTooHigh": "你必須達到等級 <%= level %> 才能開始這個任務。", "questAlreadyUnderway": "你的隊伍正在進行任務。請在任務結束後再試一次。", "questAlreadyAccepted": "You already accepted the quest invitation.", diff --git a/website/common/locales/zh_TW/settings.json b/website/common/locales/zh_TW/settings.json index 27c921ed51..911bebc74c 100644 --- a/website/common/locales/zh_TW/settings.json +++ b/website/common/locales/zh_TW/settings.json @@ -11,8 +11,8 @@ "dailyDueDefaultView": "預設每日任務顯示「待辦」欄", "dailyDueDefaultViewPop": "啟動這項設定後,會將每日任務預設顯示的「全部」改設為「待辦」", "reverseChatOrder": "反向列出對話訊息", - "startAdvCollapsed": "Advanced Settings in tasks start collapsed", - "startAdvCollapsedPop": "With this option set, Advanced Settings will be hidden when you first open a task for editing.", + "startAdvCollapsed": "預設折疊任務進階設定", + "startAdvCollapsedPop": "設置這個選項後,當你第一次開啟並編輯任務時進階設定會保持隱藏", "dontShowAgain": "不要再顯示", "suppressLevelUpModal": "升級時不要跳出提醒畫面", "suppressHatchPetModal": "孵化寵物時不要跳出提醒畫面", @@ -24,7 +24,7 @@ "showBaileyPop": "呼叫傳令員 Bailey,以查看過去的新聞。", "fixVal": "修改角色數值", "fixValPop": "手動修改諸如生命值、等級和金幣等數值。", - "invalidLevel": "Invalid value: Level must be 1 or greater.", + "invalidLevel": "無效數值:等級必須是1或以上。", "enableClass": "開啟職業系統", "enableClassPop": "你當初放棄了職業系統,現在確認開啟嗎?", "classTourPop": "顯示使用職業系統的教學。", @@ -32,7 +32,7 @@ "resetAccPop": "從頭開始,移除所有等級、金幣、裝備、歷史和任務。", "deleteAccount": "刪除帳號", "deleteAccPop": "取消並移除你的 Habitica 帳號。", - "feedback": "If you'd like to give us feedback, please enter it below - we'd love to know what you liked or didn't like about Habitica! Don't speak English well? No problem! Use the language you prefer.", + "feedback": "如果你想給我們意見,請在下面輸入——我們樂於瞭解你喜歡和不喜歡Habitica的什麼!不能流利地使用英文嗎?沒問題!使用你偏好的語言。", "qrCode": "QR Code", "dataExport": "匯出資料", "saveData": "這裡有幫助你儲存資料的訊息。", @@ -70,8 +70,8 @@ "APIv3": "API v3", "APIText": "這個是使用再第三方應用上面的。但是,你的 API Token 相當於密碼,請不要公開它。有時候別人可能會向你要UUID,但是永遠不要把你的 API token 分享給其他人,包括在 Github 上。", "APIToken": "API Token(這相當於密碼——注意看上面的警告!)", - "showAPIToken": "Show API Token", - "hideAPIToken": "Hide API Token", + "showAPIToken": "顯示API Token", + "hideAPIToken": "隱藏API Token", "APITokenWarning": "If you need a new API Token (e.g., if you accidentally shared it), email <%= hrefTechAssistanceEmail %> with your User ID and current Token. Once it is reset you will need to re-authorize everything by logging out of the website and mobile app and by providing the new Token to any other Habitica tools that you use.", "thirdPartyApps": "第三方應用程式", "dataToolDesc": "A webpage that shows you certain information from your Habitica account, such as statistics about your tasks, equipment, and skills.", @@ -105,7 +105,7 @@ "usernameOrEmail": "登入名稱或電子郵件", "email": "Email", "registerWithSocial": "使用<%= network %>註冊", - "registeredWithSocial": "Registered with <%= network %>", + "registeredWithSocial": "已使用<%= network %>註冊", "loginNameDescription": "This is what you use to log in to Habitica. To change it, use the form below. If instead you want to change the Display Name that appears on your avatar and in chat messages, go to the User Icon > Profile and click the Edit button.", "emailNotifications": "電子郵件通知", "wonChallenge": "你贏得一個挑戰!", @@ -186,6 +186,6 @@ "timezone": "時區", "timezoneUTC": "Habitica 使用您電腦的時區,現在是:<%= utc %>", "timezoneInfo": "If that time zone is wrong, first reload this page using your browser's reload or refresh button to ensure that Habitica has the most recent information. If it is still wrong, adjust the time zone on your PC and then reload this page again.

If you use Habitica on other PCs or mobile devices, the time zone must be the same on them all. If your Dailies have been resetting at the wrong time, repeat this check on all other PCs and on a browser on your mobile devices.", - "push": "壓", + "push": "推文", "about": "關於" } \ No newline at end of file diff --git a/website/common/locales/zh_TW/spells.json b/website/common/locales/zh_TW/spells.json index 6556bb671f..fc56fe1260 100644 --- a/website/common/locales/zh_TW/spells.json +++ b/website/common/locales/zh_TW/spells.json @@ -1,39 +1,39 @@ { "spellWizardFireballText": "火焰爆轟", - "spellWizardFireballNotes": "You summon XP and deal fiery damage to Bosses! (Based on: INT)", + "spellWizardFireballNotes": "你召喚出經驗值並對Boss造成火焰傷害!(基於:智力)", "spellWizardMPHealText": "澎湃靈泉", - "spellWizardMPHealNotes": "You sacrifice Mana so the rest of your Party, except Mages, gains MP! (Based on: INT)", + "spellWizardMPHealNotes": "你獻出魔力所以你隊伍裡的其他人,除了法師,獲得了MP!(基於:智力)", "spellWizardEarthText": "地震", - "spellWizardEarthNotes": "Your mental power shakes the earth and buffs your Party's Intelligence! (Based on: Unbuffed INT)", + "spellWizardEarthNotes": "你的精神之力震撼大地,並強化了你隊伍的智力!(基於:未增益智力)", "spellWizardFrostText": "極寒霜凍", - "spellWizardFrostNotes": "With one cast, ice freezes all your streaks so they won't reset to zero tomorrow!", + "spellWizardFrostNotes": "以一個施咒,寒冰凍結了你所有的連擊,所以它們不會在明天歸零!", "spellWizardFrostAlreadyCast": "今天你已經用了「極寒霜凍」技能,不需要再用一次了!", "spellWarriorSmashText": "致命一擊", - "spellWarriorSmashNotes": "You make a task more blue/less red and deal extra damage to Bosses! (Based on: STR)", + "spellWarriorSmashNotes": "你讓一個任務變得更藍/比較不紅並對Boss造成額外的傷害!(基於:力量)", "spellWarriorDefensiveStanceText": "防禦姿態", - "spellWarriorDefensiveStanceNotes": "You crouch low and gain a buff to Constitution! (Based on: Unbuffed CON)", + "spellWarriorDefensiveStanceNotes": "你壓低身子並獲得一個對體質的增益效果!(基於:未增益體質)", "spellWarriorValorousPresenceText": "英勇現身", - "spellWarriorValorousPresenceNotes": "Your boldness buffs your whole Party's Strength! (Based on: Unbuffed STR)", + "spellWarriorValorousPresenceNotes": "你的無畏增強了整個隊伍的力量!(基於:未增益力量)", "spellWarriorIntimidateText": "威懾凝視", - "spellWarriorIntimidateNotes": "Your fierce stare buffs your whole Party's Constitution! (Based on: Unbuffed CON)", + "spellWarriorIntimidateNotes": "你的兇猛目光增強了整個隊伍的體質!(基於:未增益體質)", "spellRoguePickPocketText": "扒竊", - "spellRoguePickPocketNotes": "You rob a nearby task and gain gold! (Based on: PER)", + "spellRoguePickPocketNotes": "你搶了一個附近的任務並獲得金幣!(基於:感知)", "spellRogueBackStabText": "背刺", - "spellRogueBackStabNotes": "You betray a foolish task and gain gold and XP! (Based on: STR)", + "spellRogueBackStabNotes": "你背叛了一個愚蠢的任務並獲得金幣和經驗值!(基於:力量)", "spellRogueToolsOfTradeText": "社交手段", - "spellRogueToolsOfTradeNotes": "Your tricky talents buff your whole Party's Perception! (Based on: Unbuffed PER)", + "spellRogueToolsOfTradeNotes": "你的狡猾天份強化了整個隊伍的感知!(基於:未增益感知)", "spellRogueStealthText": "潛行", - "spellRogueStealthNotes": "With each cast, a few of your undone Dailies won't cause damage tonight. Their streaks and colors won't change. (Based on: PER)", + "spellRogueStealthNotes": "伴隨著每一次施放,一些你未完成的每日任務今晚不會造成傷害,他們的連擊和顏色不會改變。(基於:感知)", "spellRogueStealthDaliesAvoided": "<%= originalText %> 避免的每日任務:<%= number %>.", "spellRogueStealthMaxedOut": "你已經避免了你的每日任務,沒有必要再施放這個法術。", "spellHealerHealText": "治療之光", - "spellHealerHealNotes": "Shining light restores your health! (Based on: CON and INT)", + "spellHealerHealNotes": "閃耀光芒回復了你的生命值!(基於:體質和智力)", "spellHealerBrightnessText": "灼熱光矢", - "spellHealerBrightnessNotes": "A burst of light makes your tasks more blue/less red! (Based on: INT)", + "spellHealerBrightnessNotes": "一道爆發出的光芒讓你的任務變得更藍/比較不紅了!(基於:智力)", "spellHealerProtectAuraText": "守護光環", - "spellHealerProtectAuraNotes": "You shield your Party by buffing their Constitution! (Based on: Unbuffed CON)", + "spellHealerProtectAuraNotes": "你靠著增強你隊伍的體質守護他們!(基於:未增益體質)", "spellHealerHealAllText": "祝福", - "spellHealerHealAllNotes": "Your soothing spell restores your whole Party's health! (Based on: CON and INT)", + "spellHealerHealAllNotes": "你的鎮痛法術回復了整個隊伍的生命值!(基於:體質和智力)", "spellSpecialSnowballAuraText": "雪球", "spellSpecialSnowballAuraNotes": "Turn a friend into a frosty snowman!", "spellSpecialSaltText": "鹽", @@ -46,10 +46,10 @@ "spellSpecialShinySeedNotes": "把一個朋友變成一個歡樂的花!", "spellSpecialPetalFreePotionText": "花瓣自由魔藥", "spellSpecialPetalFreePotionNotes": "Reverse the spell that made you a flower.", - "spellSpecialSeafoamText": "水藍", + "spellSpecialSeafoamText": "海洋泡沫", "spellSpecialSeafoamNotes": "把朋友變成海洋生物!", "spellSpecialSandText": "沙子", - "spellSpecialSandNotes": "Reverse the spell that made you a sea star.", + "spellSpecialSandNotes": "反轉讓你變成一隻海星的法術。", "partyNotFound": "找不到隊伍。", "targetIdUUID": "\"targetId\"必須是有效的UUID。", "challengeTasksNoCast": "你無法在挑戰任務上使用技能。", diff --git a/website/common/locales/zh_TW/subscriber.json b/website/common/locales/zh_TW/subscriber.json index c6c627727c..a76a7f03a4 100644 --- a/website/common/locales/zh_TW/subscriber.json +++ b/website/common/locales/zh_TW/subscriber.json @@ -10,7 +10,7 @@ "reachedGoldToGemCapQuantity": "Your requested amount <%= quantity %> exceeds the Gold=>Gem conversion cap <%= convCap %> for this month. We have this to prevent abuse / farming. The cap resets within the first three days of each month.", "retainHistory": "保留額外的歷史記錄", "retainHistoryText": "讓已完成的代辦事項以及任務的歷史記錄可以保留更久。", - "doubleDrops": "Daily drop caps doubled", + "doubleDrops": "每日掉落物上限加倍", "doubleDropsText": "收集坐騎更快!", "mysteryItem": "每個月額外獲得寶物", "mysteryItemText": "每個月,每位訂閱者都會獲得一件十分特殊的角色形象物品!還有,每3個連續訂閱就可以透過神秘時空旅行者獲取有歷史性(還有未來性)的角色形象物品。", @@ -144,6 +144,7 @@ "mysterySet201803": "Daring Dragonfly Set", "mysterySet201804": "Spiffy Squirrel Set", "mysterySet201805": "Phenomenal Peacock Set", + "mysterySet201806": "Alluring Anglerfish Set", "mysterySet301404": "蒸氣龐克標準套裝", "mysterySet301405": "蒸氣龐克配件套裝", "mysterySet301703": "Peacock Steampunk Set", @@ -200,10 +201,10 @@ "subscriptionBenefit5": "Receive the exclusive Royal Purple Jackalope pet!", "subscriptionBenefit6": "Earn Mystic Hourglasses for use in the Time Travelers' Shop!", "haveCouponCode": "Do you have a coupon code?", - "subscriptionAlreadySubscribedLeadIn": "Thanks for subscribing!", + "subscriptionAlreadySubscribedLeadIn": "感謝訂閱!", "subscriptionAlreadySubscribed1": "To see your subscription details and cancel, renew, or change your subscription, please go to User icon > Settings > Subscription.", "purchaseAll": "Purchase All", "gemsPurchaseNote": "Subscribers can buy gems for gold in the Market! For easy access, you can also pin the gem to your Rewards column.", - "gemsRemaining": "gems remaining", - "notEnoughGemsToBuy": "You are unable to buy that amount of gems" + "gemsRemaining": "剩餘寶石", + "notEnoughGemsToBuy": "你無法購買該數量的寶石" } \ No newline at end of file diff --git a/website/common/locales/zh_TW/tasks.json b/website/common/locales/zh_TW/tasks.json index 113dee17f4..bac75f5308 100644 --- a/website/common/locales/zh_TW/tasks.json +++ b/website/common/locales/zh_TW/tasks.json @@ -1,8 +1,8 @@ { "clearCompleted": "清除已完成任務", "clearCompletedDescription": "已完成的待辦事項將會在非訂閱用戶的30天後和訂閱用戶的90天後被刪除。", - "clearCompletedConfirm": "你確定你想要刪除已完成的待辦事項?", - "sureDeleteCompletedTodos": "你確定你想要刪除已完成的待辦事項? ", + "clearCompletedConfirm": "你確定要刪除已完成的待辦事項嗎?", + "sureDeleteCompletedTodos": "你確定要刪除已完成的待辦事項嗎? ", "lotOfToDos": "你過去30天完成的代辦事項顯示在這裡。你可以在Data > Data Display Tool or Data > Export Data > User Data查看更早之前完成的代辦事項。", "deleteToDosExplanation": "如果你點擊下面的按鈕,除了仍在進行中的挑戰集團隊計劃外,你所有已完成和已歸檔的代辦事項將被永久刪除。如果想要將他們保存的話,點擊前可以先匯出這些代辦事項。", "addMultipleTip": "提示:要新增複數的<%= taskType %>,把每一項分別使用「Shift + Enter」換行,然後按下「Enter」。", @@ -53,7 +53,7 @@ "dailies": "每日任務", "newDaily": "增加一個每日任務", "newDailyBulk": "新每日任務(每行一個)", - "dailysDesc": "Dailies repeat on a regular basis. Choose the schedule that works best for you!", + "dailysDesc": "每日任務會定期重複。選擇最適合你的期程!", "streakCounter": "連擊數", "repeat": "重複", "repeats": "重複", @@ -121,7 +121,7 @@ "confirmFortify": "你確定嗎?", "fortifyComplete": "穩固完成!", "deleteTask": "刪除這個任務", - "sureDelete": "你確定你想要刪除這個任務?", + "sureDelete": "你確定要刪除這個任務嗎?", "streakCoins": "連擊獎勵", "taskToTop": "置頂", "taskToBottom": "置底", @@ -194,8 +194,6 @@ "weeks": "週", "year": "年", "years": "年", - "confirmScoreNotes": "確認任務分數與備註", - "taskScoreNotesTooLong": "任務備註至多256個字喔!", "groupTasksByChallenge": "以挑戰名稱排序 隊伍任務", "taskNotes": "任務筆記", "monthlyRepeatHelpContent": "這個任務每X月會結算一次", diff --git a/website/common/script/content/appearance/backgrounds.js b/website/common/script/content/appearance/backgrounds.js index 8b1794e225..ec921b3729 100644 --- a/website/common/script/content/appearance/backgrounds.js +++ b/website/common/script/content/appearance/backgrounds.js @@ -689,6 +689,20 @@ let backgrounds = { notes: t('backgroundPirateFlagNotes'), }, }, + backgrounds072018: { + dark_deep: { + text: t('backgroundDarkDeepText'), + notes: t('backgroundDarkDeepNotes'), + }, + dilatory_city: { + text: t('backgroundDilatoryCityText'), + notes: t('backgroundDilatoryCityNotes'), + }, + tide_pool: { + text: t('backgroundTidePoolText'), + notes: t('backgroundTidePoolNotes'), + }, + }, incentiveBackgrounds: { violet: { text: t('backgroundVioletText'), diff --git a/website/common/script/content/appearance/sets.js b/website/common/script/content/appearance/sets.js index cd1ff74c48..67bf3d8021 100644 --- a/website/common/script/content/appearance/sets.js +++ b/website/common/script/content/appearance/sets.js @@ -18,6 +18,6 @@ module.exports = prefill({ pastelSkins: {setPrice: 5, availableFrom: '2018-04-05', availableUntil: '2018-05-02', text: t('pastelSkins')}, spookySkins: {setPrice: 5, availableUntil: '2016-01-01', text: t('spookySkins')}, supernaturalSkins: {setPrice: 5, availableFrom: '2017-10-01', availableUntil: '2017-11-02', text: t('supernaturalSkins')}, - splashySkins: {setPrice: 5, availableUntil: '2017-08-02', text: t('splashySkins')}, + splashySkins: {setPrice: 5, availableFrom: '2018-07-10', availableUntil: '2018-08-02', text: t('splashySkins')}, winterySkins: {setPrice: 5, availableFrom: '2018-01-04', availableUntil: '2018-02-02', text: t('winterySkins')}, }); diff --git a/website/common/script/content/gear/sets/armoire.js b/website/common/script/content/gear/sets/armoire.js index 7e71c2405f..12992e9e2a 100644 --- a/website/common/script/content/gear/sets/armoire.js +++ b/website/common/script/content/gear/sets/armoire.js @@ -367,6 +367,14 @@ let armor = { set: 'blueHairbow', canOwn: ownsItem('armor_armoire_bluePartyDress'), }, + piraticalPrincessGown: { + text: t('armorArmoirePiraticalPrincessGownText'), + notes: t('armorArmoirePiraticalPrincessGownNotes', { per: 7 }), + value: 100, + per: 7, + set: 'piraticalPrincess', + canOwn: ownsItem('armor_armoire_piraticalPrincessGown'), + }, }; let body = { @@ -794,6 +802,15 @@ let head = { set: 'glassblower', canOwn: ownsItem('head_armoire_glassblowersHat'), }, + piraticalPrincessHeaddress: { + text: t('headArmoirePiraticalPrincessHeaddressText'), + notes: t('headArmoirePiraticalPrincessHeaddressNotes', { attrs: 8 }), + value: 100, + per: 8, + int: 8, + set: 'piraticalPrincess', + canOwn: ownsItem('head_armoire_piraticalPrincessHeaddress'), + }, }; let shield = { @@ -990,6 +1007,15 @@ let shield = { set: 'glassblower', canOwn: ownsItem('shield_armoire_fancyBlownGlassVase'), }, + piraticalSkullShield: { + text: t('shieldArmoirePiraticalSkullShieldText'), + notes: t('shieldArmoirePiraticalSkullShieldNotes', { attrs: 4 }), + value: 100, + per: 4, + int: 4, + set: 'piraticalPrincess', + canOwn: ownsItem('shield_armoire_piraticalSkullShield'), + }, }; let headAccessory = { @@ -1299,6 +1325,14 @@ let weapon = { set: 'glassblower', canOwn: ownsItem('weapon_armoire_glassblowersBlowpipe'), }, + poisonedGoblet: { + text: t('weaponArmoirePoisonedGobletText'), + notes: t('weaponArmoirePoisonedGobletNotes', { int: 7 }), + value: 100, + int: 7, + set: 'piraticalPrincess', + canOwn: ownsItem('weapon_armoire_poisonedGoblet'), + }, }; let armoireSet = { diff --git a/website/common/script/content/gear/sets/mystery.js b/website/common/script/content/gear/sets/mystery.js index 35527d643f..7f4d6b2a47 100644 --- a/website/common/script/content/gear/sets/mystery.js +++ b/website/common/script/content/gear/sets/mystery.js @@ -193,6 +193,12 @@ let armor = { mystery: '201802', value: 0, }, + 201806: { + text: t('armorMystery201806Text'), + notes: t('armorMystery201806Notes'), + mystery: '201806', + value: 0, + }, 301404: { text: t('armorMystery301404Text'), notes: t('armorMystery301404Notes'), @@ -583,6 +589,12 @@ let head = { mystery: '201805', value: 0, }, + 201806: { + text: t('headMystery201806Text'), + notes: t('headMystery201806Notes'), + mystery: '201806', + value: 0, + }, 301404: { text: t('headMystery301404Text'), notes: t('headMystery301404Notes'), diff --git a/website/common/script/content/hatching-potions.js b/website/common/script/content/hatching-potions.js index b88eb8916c..b56a8885e7 100644 --- a/website/common/script/content/hatching-potions.js +++ b/website/common/script/content/hatching-potions.js @@ -3,7 +3,7 @@ import defaults from 'lodash/defaults'; import each from 'lodash/each'; import t from './translation'; -const CURRENT_SEASON = '_NONE_'; +const CURRENT_SEASON = 'July'; let drops = { Base: { @@ -132,6 +132,12 @@ let premium = { limited: true, _season: 'March', }, + Glass: { + value: 2, + text: t('hatchingPotionGlass'), + limited: true, + _season: 'July', + }, }; each(drops, (pot, key) => { diff --git a/website/common/script/content/mystery-sets.js b/website/common/script/content/mystery-sets.js index dacb2c59b8..b7b294f7b3 100644 --- a/website/common/script/content/mystery-sets.js +++ b/website/common/script/content/mystery-sets.js @@ -210,6 +210,10 @@ let mysterySets = { start: '2018-05-24', end: '2018-06-02', }, + 201806: { + start: '2018-06-21', + end: '2018-07-02', + }, 301404: { start: '3014-03-24', end: '3014-04-02', diff --git a/website/common/script/content/shop-featuredItems.js b/website/common/script/content/shop-featuredItems.js index 671efc1835..4dae9c02fc 100644 --- a/website/common/script/content/shop-featuredItems.js +++ b/website/common/script/content/shop-featuredItems.js @@ -8,8 +8,8 @@ const featuredItems = { path: 'armoire', }, { - type: 'hatchingPotions', - path: 'hatchingPotions.Desert', + type: 'premiumHatchingPotion', + path: 'premiumHatchingPotions.Glass', }, { type: 'food', diff --git a/website/common/script/libs/shops-seasonal.config.js b/website/common/script/libs/shops-seasonal.config.js index 24c467620f..97f2c9281c 100644 --- a/website/common/script/libs/shops-seasonal.config.js +++ b/website/common/script/libs/shops-seasonal.config.js @@ -19,6 +19,7 @@ module.exports = { }, availableSpells: [ + 'seafoam', ], availableQuests: [ diff --git a/website/common/script/ops/buy/abstractBuyOperation.js b/website/common/script/ops/buy/abstractBuyOperation.js index 9b0a2d9fe2..78256d21c3 100644 --- a/website/common/script/ops/buy/abstractBuyOperation.js +++ b/website/common/script/ops/buy/abstractBuyOperation.js @@ -24,6 +24,24 @@ export class AbstractBuyOperation { if (isNaN(this.quantity)) throw new BadRequest(this.i18n('invalidQuantity')); } + /** + * Returns the item value + * @param item + * @returns {number} + */ + getItemValue (item) { + return item.value; + } + + /** + * Returns the item key + * @param item + * @returns {String} + */ + getIemKey (item) { + return item.key; + } + /** * Shortcut to get the translated string without passing `req.language` * @param {String} key - translation key @@ -100,14 +118,6 @@ export class AbstractGoldItemOperation extends AbstractBuyOperation { super(user, req, analytics); } - getItemValue (item) { - return item.value; - } - - getIemKey (item) { - return item.key; - } - canUserPurchase (user, item) { this.item = item; let itemValue = this.getItemValue(item); @@ -138,3 +148,37 @@ export class AbstractGoldItemOperation extends AbstractBuyOperation { }; } } + +export class AbstractGemItemOperation extends AbstractBuyOperation { + constructor (user, req, analytics) { + super(user, req, analytics); + } + + canUserPurchase (user, item) { + this.item = item; + let itemValue = this.getItemValue(item); + + if (!item.canBuy(user)) { + throw new NotAuthorized(this.i18n('messageNotAvailable')); + } + + if (!user.balance || user.balance < itemValue * this.quantity) { + throw new NotAuthorized(this.i18n('notEnoughGems')); + } + } + + subtractCurrency (user, item) { + let itemValue = this.getItemValue(item); + + user.balance -= itemValue * this.quantity; + } + + analyticsData () { + return { + itemKey: this.getIemKey(this.item), + itemType: 'Market', + acquireMethod: 'Gems', + gemCost: this.getItemValue(this.item) * 4, + }; + } +} diff --git a/website/common/script/ops/buy/buy.js b/website/common/script/ops/buy/buy.js index 413ca79e7d..f564af45a5 100644 --- a/website/common/script/ops/buy/buy.js +++ b/website/common/script/ops/buy/buy.js @@ -12,6 +12,7 @@ import purchaseOp from './purchase'; import hourglassPurchase from './hourglassPurchase'; import errorMessage from '../../libs/errorMessage'; import {BuyGemOperation} from './buyGem'; +import {BuyQuestWithGemOperation} from './buyQuestGem'; // @TODO: remove the req option style. Dependency on express structure is an anti-pattern // We should either have more parms or a set structure validated by a Type checker @@ -52,10 +53,15 @@ module.exports = function buy (user, req = {}, analytics) { buyRes = buyOp.purchase(); break; } + case 'quests': { + const buyOp = new BuyQuestWithGemOperation(user, req, analytics); + + buyRes = buyOp.purchase(); + break; + } case 'eggs': case 'hatchingPotions': case 'food': - case 'quests': case 'gear': case 'bundles': buyRes = purchaseOp(user, req, analytics); diff --git a/website/common/script/ops/buy/buyQuestGem.js b/website/common/script/ops/buy/buyQuestGem.js new file mode 100644 index 0000000000..d3dae03502 --- /dev/null +++ b/website/common/script/ops/buy/buyQuestGem.js @@ -0,0 +1,57 @@ +import { + BadRequest, + NotAuthorized, + NotFound, +} from '../../libs/errors'; +import content from '../../content/index'; +import get from 'lodash/get'; + +import errorMessage from '../../libs/errorMessage'; +import {AbstractGemItemOperation} from './abstractBuyOperation'; + +export class BuyQuestWithGemOperation extends AbstractGemItemOperation { + constructor (user, req, analytics) { + super(user, req, analytics); + } + + multiplePurchaseAllowed () { + return true; + } + + getItemKey () { + return this.key; + } + + getItemValue (item) { + return item.value / 4; + } + + extractAndValidateParams (user, req) { + let key = this.key = get(req, 'params.key'); + if (!key) throw new BadRequest(errorMessage('missingKeyParam')); + + let item = content.quests[key]; + + if (!item) throw new NotFound(errorMessage('questNotFound', {key})); + + if (item.category === 'gold') { + throw new NotAuthorized(this.i18n('questNotGemPurchasable', {key})); + } + + this.canUserPurchase(user, item); + } + + executeChanges (user, item, req) { + user.items.quests[item.key] = user.items.quests[item.key] || 0; + user.items.quests[item.key] += this.quantity; + + this.subtractCurrency(user, item, this.quantity); + + return [ + user.items.quests, + this.i18n('messageBought', { + itemText: item.text(req.language), + }), + ]; + } +} diff --git a/website/common/script/ops/buy/purchase.js b/website/common/script/ops/buy/purchase.js index eb48ee72e8..4904b74fe3 100644 --- a/website/common/script/ops/buy/purchase.js +++ b/website/common/script/ops/buy/purchase.js @@ -63,7 +63,7 @@ function purchaseItem (user, item, price, type, key) { } } -const acceptedTypes = ['eggs', 'hatchingPotions', 'food', 'quests', 'gear', 'bundles']; +const acceptedTypes = ['eggs', 'hatchingPotions', 'food', 'gear', 'bundles']; const singlePurchaseTypes = ['gear']; module.exports = function purchase (user, req = {}, analytics) { let type = get(req.params, 'type'); diff --git a/website/common/script/ops/scoreTask.js b/website/common/script/ops/scoreTask.js index 78e5e39451..58e594754d 100644 --- a/website/common/script/ops/scoreTask.js +++ b/website/common/script/ops/scoreTask.js @@ -1,5 +1,6 @@ import timesLodash from 'lodash/times'; import reduce from 'lodash/reduce'; +import moment from 'moment'; import max from 'lodash/max'; import { NotAuthorized, @@ -212,16 +213,47 @@ module.exports = function scoreTask (options = {}, req = {}) { } _gainMP(user, max([0.25, 0.0025 * statsComputed(user).maxMP]) * (direction === 'down' ? -1 : 1)); + // Save history entry for habit task.history = task.history || []; + const timezoneOffset = user.preferences.timezoneOffset; + const dayStart = user.preferences.dayStart; + const historyLength = task.history.length; + const lastHistoryEntry = task.history[historyLength - 1]; - // Add history entry, even more than 1 per day - let historyEntry = { - date: Number(new Date()), - value: task.value, - }; - if (task.scoreNotes) historyEntry.scoreNotes = task.scoreNotes; + // Adjust the last entry date according to the user's timezone and CDS + let lastHistoryEntryDate; - task.history.push(historyEntry); + if (lastHistoryEntry && lastHistoryEntry.date) { + lastHistoryEntryDate = moment(lastHistoryEntry.date).zone(timezoneOffset); + if (lastHistoryEntryDate.hour() < dayStart) lastHistoryEntryDate.subtract(1, 'day'); + } + + if ( + lastHistoryEntryDate && + moment().zone(timezoneOffset).isSame(lastHistoryEntryDate, 'day') + ) { + lastHistoryEntry.value = task.value; + lastHistoryEntry.date = Number(new Date()); + + // @TODO remove this extra check after migration has run to set scoredUp and scoredDown in every task + lastHistoryEntry.scoredUp = lastHistoryEntry.scoredUp || 0; + lastHistoryEntry.scoredDown = lastHistoryEntry.scoredDown || 0; + + if (direction === 'up') { + lastHistoryEntry.scoredUp += times; + } else { + lastHistoryEntry.scoredDown += times; + } + + if (task.markModified) task.markModified(`history.${historyLength - 1}`); + } else { + task.history.push({ + date: Number(new Date()), + value: task.value, + scoredUp: direction === 'up' ? 1 : 0, + scoredDown: direction === 'down' ? 1 : 0, + }); + } _updateCounter(task, direction, times); } else if (task.type === 'daily') { diff --git a/website/raw_sprites/spritesmith/backgrounds/background_dark_deep.png b/website/raw_sprites/spritesmith/backgrounds/background_dark_deep.png new file mode 100644 index 0000000000..2f17beea46 Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/background_dark_deep.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/background_dilatory_city.png b/website/raw_sprites/spritesmith/backgrounds/background_dilatory_city.png new file mode 100644 index 0000000000..7f583b57c2 Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/background_dilatory_city.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/background_tide_pool.png b/website/raw_sprites/spritesmith/backgrounds/background_tide_pool.png new file mode 100644 index 0000000000..0ca8482b84 Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/background_tide_pool.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_dark_deep.png b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_dark_deep.png new file mode 100644 index 0000000000..d3c98087e4 Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_dark_deep.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_dilatory_city.png b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_dilatory_city.png new file mode 100644 index 0000000000..aaea1e9d5b Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_dilatory_city.png differ diff --git a/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_tide_pool.png b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_tide_pool.png new file mode 100644 index 0000000000..fdbdf2df85 Binary files /dev/null and b/website/raw_sprites/spritesmith/backgrounds/icons/icon_background_tide_pool.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/broad_armor_armoire_piraticalPrincessGown.png b/website/raw_sprites/spritesmith/gear/armoire/broad_armor_armoire_piraticalPrincessGown.png new file mode 100644 index 0000000000..a5d29b1d6e Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/broad_armor_armoire_piraticalPrincessGown.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/head_armoire_piraticalPrincessHeaddress.png b/website/raw_sprites/spritesmith/gear/armoire/head_armoire_piraticalPrincessHeaddress.png new file mode 100644 index 0000000000..d4032f5f5b Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/head_armoire_piraticalPrincessHeaddress.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shield_armoire_piraticalSkullShield.png b/website/raw_sprites/spritesmith/gear/armoire/shield_armoire_piraticalSkullShield.png new file mode 100644 index 0000000000..f8e253d790 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/shield_armoire_piraticalSkullShield.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_antiProcrastinationArmor.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_antiProcrastinationArmor.png index c0f6f5caf5..50379e43f3 100755 Binary files a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_antiProcrastinationArmor.png and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_antiProcrastinationArmor.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_farrierOutfit.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_farrierOutfit.png index 7f83dcfa86..e6531ac6ad 100755 Binary files a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_farrierOutfit.png and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_farrierOutfit.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_swanDancerTutu.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_swanDancerTutu.png index a813dcb245..859d5a9f55 100755 Binary files a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_swanDancerTutu.png and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_swanDancerTutu.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_yellowPartyDress.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_yellowPartyDress.png index e4e3458452..2e5f8b82e8 100755 Binary files a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_yellowPartyDress.png and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_yellowPartyDress.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_head_armoire_antiProcrastinationHelm.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_head_armoire_antiProcrastinationHelm.png index 9d59ab43f7..4feae3cadd 100755 Binary files a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_head_armoire_antiProcrastinationHelm.png and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_head_armoire_antiProcrastinationHelm.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_head_armoire_basicArcherCap.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_head_armoire_basicArcherCap.png index a9f69b4491..5fc680f209 100755 Binary files a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_head_armoire_basicArcherCap.png and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_head_armoire_basicArcherCap.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_head_armoire_minerHelmet.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_head_armoire_minerHelmet.png index 21921545e2..e581d40732 100755 Binary files a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_head_armoire_minerHelmet.png and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_head_armoire_minerHelmet.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_antiProcrastinationShield.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_antiProcrastinationShield.png index 5f20c11b7a..9f35629045 100755 Binary files a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_antiProcrastinationShield.png and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_antiProcrastinationShield.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_goldenBaton.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_goldenBaton.png index 932a8e6b66..f5d47217a6 100755 Binary files a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_goldenBaton.png and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_goldenBaton.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_horseshoe.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_horseshoe.png index bd178a2231..641d5af6a4 100755 Binary files a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_horseshoe.png and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_horseshoe.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_swanFeatherFan.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_swanFeatherFan.png index f09cd23337..33756a6955 100755 Binary files a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_swanFeatherFan.png and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_shield_armoire_swanFeatherFan.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_hoofClippers.png b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_hoofClippers.png index 9acb552d85..15a4e3d672 100755 Binary files a/website/raw_sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_hoofClippers.png and b/website/raw_sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_hoofClippers.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop_armor_armoire_piraticalPrincessGown.png b/website/raw_sprites/spritesmith/gear/armoire/shop_armor_armoire_piraticalPrincessGown.png new file mode 100644 index 0000000000..b771d4b864 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/shop_armor_armoire_piraticalPrincessGown.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop_head_armoire_piraticalPrincessHeaddress.png b/website/raw_sprites/spritesmith/gear/armoire/shop_head_armoire_piraticalPrincessHeaddress.png new file mode 100644 index 0000000000..8dcc8eec0e Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/shop_head_armoire_piraticalPrincessHeaddress.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop_shield_armoire_piraticalSkullShield.png b/website/raw_sprites/spritesmith/gear/armoire/shop_shield_armoire_piraticalSkullShield.png new file mode 100644 index 0000000000..c6ef16c8e9 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/shop_shield_armoire_piraticalSkullShield.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/shop_weapon_armoire_poisonedGoblet.png b/website/raw_sprites/spritesmith/gear/armoire/shop_weapon_armoire_poisonedGoblet.png new file mode 100644 index 0000000000..16047ec70b Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/shop_weapon_armoire_poisonedGoblet.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/slim_armor_armoire_piraticalPrincessGown.png b/website/raw_sprites/spritesmith/gear/armoire/slim_armor_armoire_piraticalPrincessGown.png new file mode 100644 index 0000000000..0273c08a41 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/slim_armor_armoire_piraticalPrincessGown.png differ diff --git a/website/raw_sprites/spritesmith/gear/armoire/weapon_armoire_poisonedGoblet.png b/website/raw_sprites/spritesmith/gear/armoire/weapon_armoire_poisonedGoblet.png new file mode 100644 index 0000000000..8c1999b341 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/armoire/weapon_armoire_poisonedGoblet.png differ diff --git a/website/raw_sprites/spritesmith/gear/events/mystery_201806/broad_armor_mystery_201806.png b/website/raw_sprites/spritesmith/gear/events/mystery_201806/broad_armor_mystery_201806.png new file mode 100644 index 0000000000..6834abae2e Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/events/mystery_201806/broad_armor_mystery_201806.png differ diff --git a/website/raw_sprites/spritesmith/gear/events/mystery_201806/head_mystery_201806.png b/website/raw_sprites/spritesmith/gear/events/mystery_201806/head_mystery_201806.png new file mode 100644 index 0000000000..17d7ae430b Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/events/mystery_201806/head_mystery_201806.png differ diff --git a/website/raw_sprites/spritesmith/gear/events/mystery_201806/shop_armor_mystery_201806.png b/website/raw_sprites/spritesmith/gear/events/mystery_201806/shop_armor_mystery_201806.png new file mode 100644 index 0000000000..a62df10556 Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/events/mystery_201806/shop_armor_mystery_201806.png differ diff --git a/website/raw_sprites/spritesmith/gear/events/mystery_201806/shop_head_mystery_201806.png b/website/raw_sprites/spritesmith/gear/events/mystery_201806/shop_head_mystery_201806.png new file mode 100644 index 0000000000..0b416de57b Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/events/mystery_201806/shop_head_mystery_201806.png differ diff --git a/website/raw_sprites/spritesmith/gear/events/mystery_201806/shop_set_mystery_201806.png b/website/raw_sprites/spritesmith/gear/events/mystery_201806/shop_set_mystery_201806.png new file mode 100644 index 0000000000..d2d1fa14bc Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/events/mystery_201806/shop_set_mystery_201806.png differ diff --git a/website/raw_sprites/spritesmith/gear/events/mystery_201806/slim_armor_mystery_201806.png b/website/raw_sprites/spritesmith/gear/events/mystery_201806/slim_armor_mystery_201806.png new file mode 100644 index 0000000000..4b282d45df Binary files /dev/null and b/website/raw_sprites/spritesmith/gear/events/mystery_201806/slim_armor_mystery_201806.png differ diff --git a/website/raw_sprites/spritesmith/gear/events/summer/weapon_special_summer2018Mage.png b/website/raw_sprites/spritesmith/gear/events/summer/weapon_special_summer2018Mage.png index 879504ad74..401ffa7862 100644 Binary files a/website/raw_sprites/spritesmith/gear/events/summer/weapon_special_summer2018Mage.png and b/website/raw_sprites/spritesmith/gear/events/summer/weapon_special_summer2018Mage.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Glass.png new file mode 100644 index 0000000000..2c231f5af6 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_BearCub-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Glass.png new file mode 100644 index 0000000000..9526e0be1a Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Cactus-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Glass.png new file mode 100644 index 0000000000..ac02c4cb3e Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Dragon-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Glass.png new file mode 100644 index 0000000000..e84790b137 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_FlyingPig-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Glass.png new file mode 100644 index 0000000000..e7c2e9fb24 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Fox-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Glass.png new file mode 100644 index 0000000000..9e843c3003 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_LionCub-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Glass.png new file mode 100644 index 0000000000..3045bc9670 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_PandaCub-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Glass.png new file mode 100644 index 0000000000..a52122676b Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_TigerCub-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Glass.png new file mode 100644 index 0000000000..c329cb8d83 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/body/Mount_Body_Wolf-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Glass.png new file mode 100644 index 0000000000..bc606de20f Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_BearCub-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Glass.png new file mode 100644 index 0000000000..9ec529f1e3 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Cactus-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Glass.png new file mode 100644 index 0000000000..ef5a5ef1a0 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Dragon-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Glass.png new file mode 100644 index 0000000000..478bf94fd6 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_FlyingPig-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Glass.png new file mode 100644 index 0000000000..6e3169f9c1 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Fox-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Glass.png new file mode 100644 index 0000000000..6f0390e5df Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_LionCub-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Glass.png new file mode 100644 index 0000000000..c1dbfb3f82 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_PandaCub-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Glass.png new file mode 100644 index 0000000000..0fc8f4098b Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_TigerCub-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Glass.png new file mode 100644 index 0000000000..699fd8b545 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/head/Mount_Head_Wolf-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Glass.png new file mode 100644 index 0000000000..5ab75568dc Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_BearCub-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Glass.png new file mode 100644 index 0000000000..51b6c95184 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Cactus-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Glass.png new file mode 100644 index 0000000000..801d46bd45 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Dragon-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Glass.png new file mode 100644 index 0000000000..71f2f8456b Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_FlyingPig-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Glass.png new file mode 100644 index 0000000000..8b0e9b4580 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Fox-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Glass.png new file mode 100644 index 0000000000..eae5dcd1db Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_LionCub-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Glass.png new file mode 100644 index 0000000000..92299e3c1d Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_PandaCub-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Glass.png new file mode 100644 index 0000000000..e284d30aa1 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_TigerCub-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Glass.png b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Glass.png new file mode 100644 index 0000000000..a114cf09e3 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/mounts/icon/Mount_Icon_Wolf-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-BearCub-Glass.png b/website/raw_sprites/spritesmith/stable/pets/Pet-BearCub-Glass.png new file mode 100644 index 0000000000..d8febedd66 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-BearCub-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Cactus-Glass.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Cactus-Glass.png new file mode 100644 index 0000000000..94de422336 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Cactus-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Dragon-Glass.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Dragon-Glass.png new file mode 100644 index 0000000000..3d5e69803c Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Dragon-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-FlyingPig-Glass.png b/website/raw_sprites/spritesmith/stable/pets/Pet-FlyingPig-Glass.png new file mode 100644 index 0000000000..53b39bfdad Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-FlyingPig-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Fox-Glass.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Fox-Glass.png new file mode 100644 index 0000000000..a1f07bf7b7 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Fox-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-LionCub-Glass.png b/website/raw_sprites/spritesmith/stable/pets/Pet-LionCub-Glass.png new file mode 100644 index 0000000000..fd42829517 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-LionCub-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-PandaCub-Glass.png b/website/raw_sprites/spritesmith/stable/pets/Pet-PandaCub-Glass.png new file mode 100644 index 0000000000..7b3dba6568 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-PandaCub-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-TigerCub-Glass.png b/website/raw_sprites/spritesmith/stable/pets/Pet-TigerCub-Glass.png new file mode 100644 index 0000000000..662088a2ce Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-TigerCub-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/pets/Pet-Wolf-Glass.png b/website/raw_sprites/spritesmith/stable/pets/Pet-Wolf-Glass.png new file mode 100644 index 0000000000..a4013d2585 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/pets/Pet-Wolf-Glass.png differ diff --git a/website/raw_sprites/spritesmith/stable/potions/Pet_HatchingPotion_Glass.png b/website/raw_sprites/spritesmith/stable/potions/Pet_HatchingPotion_Glass.png new file mode 100644 index 0000000000..2b080c86a7 Binary files /dev/null and b/website/raw_sprites/spritesmith/stable/potions/Pet_HatchingPotion_Glass.png differ diff --git a/website/raw_sprites/spritesmith_large/promo_aquatic_glass_potions.png b/website/raw_sprites/spritesmith_large/promo_aquatic_glass_potions.png new file mode 100644 index 0000000000..4c454c944f Binary files /dev/null and b/website/raw_sprites/spritesmith_large/promo_aquatic_glass_potions.png differ diff --git a/website/raw_sprites/spritesmith_large/promo_armoire_backgrounds_201806.png b/website/raw_sprites/spritesmith_large/promo_armoire_backgrounds_201806.png deleted file mode 100644 index 243e82c6df..0000000000 Binary files a/website/raw_sprites/spritesmith_large/promo_armoire_backgrounds_201806.png and /dev/null differ diff --git a/website/raw_sprites/spritesmith_large/promo_armoire_backgrounds_201807.png b/website/raw_sprites/spritesmith_large/promo_armoire_backgrounds_201807.png new file mode 100644 index 0000000000..456ba98f41 Binary files /dev/null and b/website/raw_sprites/spritesmith_large/promo_armoire_backgrounds_201807.png differ diff --git a/website/raw_sprites/spritesmith_large/promo_bundle_aquaticAmigos.png b/website/raw_sprites/spritesmith_large/promo_bundle_aquaticAmigos.png deleted file mode 100644 index f0b3cd47a6..0000000000 Binary files a/website/raw_sprites/spritesmith_large/promo_bundle_aquaticAmigos.png and /dev/null differ diff --git a/website/raw_sprites/spritesmith_large/promo_earrings_headbands.png b/website/raw_sprites/spritesmith_large/promo_earrings_headbands.png deleted file mode 100644 index 48f6651c92..0000000000 Binary files a/website/raw_sprites/spritesmith_large/promo_earrings_headbands.png and /dev/null differ diff --git a/website/raw_sprites/spritesmith_large/promo_fairy_potions.png b/website/raw_sprites/spritesmith_large/promo_fairy_potions.png deleted file mode 100644 index 233c65b781..0000000000 Binary files a/website/raw_sprites/spritesmith_large/promo_fairy_potions.png and /dev/null differ diff --git a/website/raw_sprites/spritesmith_large/promo_mystery_201805.png b/website/raw_sprites/spritesmith_large/promo_mystery_201805.png deleted file mode 100644 index 6173cf4459..0000000000 Binary files a/website/raw_sprites/spritesmith_large/promo_mystery_201805.png and /dev/null differ diff --git a/website/raw_sprites/spritesmith_large/promo_mystery_201806.png b/website/raw_sprites/spritesmith_large/promo_mystery_201806.png new file mode 100644 index 0000000000..4b6d6a12b7 Binary files /dev/null and b/website/raw_sprites/spritesmith_large/promo_mystery_201806.png differ diff --git a/website/raw_sprites/spritesmith_large/promo_seafoam.png b/website/raw_sprites/spritesmith_large/promo_seafoam.png new file mode 100644 index 0000000000..9a2a2b76eb Binary files /dev/null and b/website/raw_sprites/spritesmith_large/promo_seafoam.png differ diff --git a/website/raw_sprites/spritesmith_large/promo_splashy_skins.png b/website/raw_sprites/spritesmith_large/promo_splashy_skins.png new file mode 100644 index 0000000000..44ed12f1c9 Binary files /dev/null and b/website/raw_sprites/spritesmith_large/promo_splashy_skins.png differ diff --git a/website/raw_sprites/spritesmith_large/scene_party_healing.png b/website/raw_sprites/spritesmith_large/scene_party_healing.png new file mode 100644 index 0000000000..5a4765d580 Binary files /dev/null and b/website/raw_sprites/spritesmith_large/scene_party_healing.png differ diff --git a/website/raw_sprites/spritesmith_large/scene_perfect_day.png b/website/raw_sprites/spritesmith_large/scene_perfect_day.png deleted file mode 100644 index 603731c141..0000000000 Binary files a/website/raw_sprites/spritesmith_large/scene_perfect_day.png and /dev/null differ diff --git a/website/server/controllers/api-v3/groups.js b/website/server/controllers/api-v3/groups.js index b5f4ab5d8c..a15195e155 100644 --- a/website/server/controllers/api-v3/groups.js +++ b/website/server/controllers/api-v3/groups.js @@ -588,7 +588,8 @@ api.joinGroup = { } if (!isUserInvited) throw new NotAuthorized(res.t('messageGroupRequiresInvite')); - if (group.memberCount === 0) group.leader = user._id; // If new user is only member -> set as leader + // @TODO: Review the need for this and if still needed, don't base this on memberCount + if (!group.hasNotCancelled() && group.memberCount === 0) group.leader = user._id; // If new user is only member -> set as leader if (group.hasNotCancelled()) { await payments.addSubToGroupUser(user, group); @@ -665,14 +666,14 @@ api.joinGroup = { }; /** - * @api {post} /api/v3/groups/:groupId/reject Reject a group invitation + * @api {post} /api/v3/groups/:groupId/reject-invite Reject a group invitation * @apiName RejectGroupInvite * @apiGroup Group * * @apiParam (Path) {UUID} groupId The group _id ('party' for the user party and 'habitrpg' for tavern are accepted) * * @apiParamExample {String} party: - * /api/v3/groups/party/reject + * /api/v3/groups/party/reject-invite * * @apiSuccess {Object} data An empty object * @@ -958,6 +959,11 @@ async function _inviteByUUID (uuid, group, inviter, req, res) { throw new BadRequest(res.t('cannotInviteSelfToGroup')); } + const objections = inviter.getObjectionsToInteraction('group-invitation', userToInvite); + if (objections.length > 0) { + throw new NotAuthorized(res.t(objections[0], { userId: uuid, username: userToInvite.profile.name})); + } + if (group.type === 'guild') { if (_.includes(userToInvite.guilds, group._id)) { throw new NotAuthorized(res.t('userAlreadyInGroup', { userId: uuid, username: userToInvite.profile.name})); @@ -1160,6 +1166,7 @@ async function _inviteByEmail (invite, group, inviter, req, res) { * @apiError (401) {NotAuthorized} UserAlreadyInvited The user has already been invited to the group. * @apiError (401) {NotAuthorized} UserAlreadyInGroup The user is already a member of the group. * @apiError (401) {NotAuthorized} CannotInviteWhenMuted You cannot invite anyone to a guild or party because your chat privileges have been revoked. + * @apiError (401) {NotAuthorized} NotAuthorizedToSendMessageToThisUser You can't send a message to this player because they have chosen to block messages. * * @apiUse GroupNotFound * @apiUse UserNotFound @@ -1168,9 +1175,7 @@ async function _inviteByEmail (invite, group, inviter, req, res) { api.inviteToGroup = { method: 'POST', url: '/groups/:groupId/invite', - middlewares: [authWithHeaders({ - userFieldsToExclude: ['inbox'], - })], + middlewares: [authWithHeaders({})], async handler (req, res) { let user = res.locals.user; diff --git a/website/server/controllers/api-v3/news.js b/website/server/controllers/api-v3/news.js index a41d294618..d0d4d4cca7 100644 --- a/website/server/controllers/api-v3/news.js +++ b/website/server/controllers/api-v3/news.js @@ -3,7 +3,7 @@ import { authWithHeaders } from '../../middlewares/auth'; let api = {}; // @TODO export this const, cannot export it from here because only routes are exported from controllers -const LAST_ANNOUNCEMENT_TITLE = 'SUMMER SPLASH BEGINS: SUMMER CLASS OUTFITS, SEASONAL SHOP, AND NPC DECORATIONS!'; +const LAST_ANNOUNCEMENT_TITLE = 'SPLASHY SKINS'; const worldDmg = { // @TODO bailey: false, }; @@ -26,39 +26,18 @@ api.getNews = { res.status(200).send({ html: `
-
-
+
+

${res.t('newStuff')}

+

7/10/2018 - ${LAST_ANNOUNCEMENT_TITLE}

+
-

6/19/2018 - ${LAST_ANNOUNCEMENT_TITLE}


-

To escape the summer heat in Habit City, everyone's moved down to the undersea city of Dilatory. The Summer Splash event has begun!

-
-
-

Summer Class Outfits

-

From now until July 31st, limited edition outfits are available in the Rewards column. Depending on your class, you can be a Lionfish Mage, Fisher-Rogue, Betta Fish Warrior, or Merfolk Monarch Healer! You'd better get productive to earn enough gold before they disappear. Good luck!

-
by Vampitch, Vikte, TheDudeAbides, Lalaitha, and Beffymaroo
-
-
-
-

Seasonal Shop is Open!

-

The Seasonal Shop has opened! The Seasonal Sorceress is stocking the seasonal edition versions of previous summer outfits, now available for Gems instead of Gold. Plus, there will be more fun things in the shop as the event progresses. The Seasonal Shop will only be open until July 31st, so don't wait!

-
by SabreCat, Lemoness, AnnDeLune, Vampitch, nonight, tricksy.fox, Giu09, JaizakAripaik, Teto Forever, and Kai
-
-
-
-
-

NPC Costumes and Shop Decorations

-

Looks like the NPCs are really getting in to the cheery summer mood around the site. Who wouldn't? After all, there's plenty more celebration to come...

-
by Lemoness and Beffymaroo
-
-
-
-
-
-
+

The Seasonal Edition Splashy Skins are available until July 31st! You can complete your summer avatar look with Clownfish, Deep Ocean, Tropical Water, Mergold, Mergreen, Merblue, Merruby, and Shark Skins.

+

This Seasonal Edition customization set will only be available to purchase until July 31st, after which they'll be gone until next year, so be sure to swoop them up now! You can find them in User > Edit Avatar!

+
by Lemoness and UncommonCriminal
`, }); diff --git a/website/server/controllers/api-v3/tasks.js b/website/server/controllers/api-v3/tasks.js index dd12bc70c6..e309eac1c0 100644 --- a/website/server/controllers/api-v3/tasks.js +++ b/website/server/controllers/api-v3/tasks.js @@ -25,8 +25,6 @@ import logger from '../../libs/logger'; import moment from 'moment'; import apiError from '../../libs/apiError'; -const MAX_SCORE_NOTES_LENGTH = 256; - function canNotEditTasks (group, user, assignedUserId) { let isNotGroupLeader = group.leader !== user._id; let isManager = Boolean(group.managers[user._id]); @@ -275,7 +273,7 @@ api.createChallengeTasks = { * @apiGroup Task * * @apiParam (Query) {String="habits","dailys","todos","rewards","completedTodos"} type Optional query parameter to return just a type of tasks. By default all types will be returned except completed todos that must be requested separately. The "completedTodos" type returns only the 30 most recently completed. - * @apiParam (Query) [dueDate] + * @apiParam (Query) [dueDate] type Optional date to use for computing the nextDue field for each returned task. * * @apiSuccess {Array} data An array of tasks * @@ -530,7 +528,6 @@ api.updateTask = { * * @apiParam (Path) {String} taskId The task _id or alias * @apiParam (Path) {String="up","down"} direction The direction for scoring the task - * @apiParam (Body) {String} scoreNotes Notes explaining the scoring * * @apiExample {json} Example call: * curl -X "POST" https://habitica.com/api/v3/tasks/test-api-params/score/up @@ -556,18 +553,14 @@ api.scoreTask = { async handler (req, res) { req.checkParams('direction', res.t('directionUpDown')).notEmpty().isIn(['up', 'down']); - let validationErrors = req.validationErrors(); + const validationErrors = req.validationErrors(); if (validationErrors) throw validationErrors; - let user = res.locals.user; - let scoreNotes = req.body.scoreNotes; - if (scoreNotes && scoreNotes.length > MAX_SCORE_NOTES_LENGTH) throw new NotAuthorized(res.t('taskScoreNotesTooLong')); - let {taskId} = req.params; + const user = res.locals.user; + const {taskId} = req.params; - let task = await Tasks.Task.findByIdOrAlias(taskId, user._id, {userId: user._id}); - let direction = req.params.direction; - - if (scoreNotes) task.scoreNotes = scoreNotes; + const task = await Tasks.Task.findByIdOrAlias(taskId, user._id, {userId: user._id}); + const direction = req.params.direction; if (!task) throw new NotFound(res.t('taskNotFound')); @@ -605,7 +598,7 @@ api.scoreTask = { groupId: group._id, taskId: task._id, // user task id, used to match the notification when the task is approved userId: user._id, - groupTaskId: task.group.id, // the original task id + groupTaskId: task.group.taskId, // the original task id direction, }); managerPromises.push(manager.save()); @@ -679,13 +672,13 @@ api.scoreTask = { if (task.challenge && task.challenge.id && task.challenge.taskId && !task.challenge.broken && task.type !== 'reward') { // Wrapping everything in a try/catch block because if an error occurs using `await` it MUST NOT bubble up because the request has already been handled try { - let chalTask = await Tasks.Task.findOne({ + const chalTask = await Tasks.Task.findOne({ _id: task.challenge.taskId, }).exec(); if (!chalTask) return; - await chalTask.scoreChallengeTask(delta); + await chalTask.scoreChallengeTask(delta, direction); } catch (e) { logger.error(e); } diff --git a/website/server/libs/preening.js b/website/server/libs/preening.js index 9cb9a3d3e5..34f769815d 100644 --- a/website/server/libs/preening.js +++ b/website/server/libs/preening.js @@ -2,10 +2,12 @@ import _ from 'lodash'; import moment from 'moment'; // Aggregate entries -function _aggregate (history, aggregateBy) { +function _aggregate (history, aggregateBy, timezoneOffset, dayStart) { return _.chain(history) .groupBy(entry => { // group entries by aggregateBy - return moment(entry.date).format(aggregateBy); + const entryDate = moment(entry.date).zone(timezoneOffset); + if (entryDate.hour() < dayStart) entryDate.subtract(1, 'day'); + return entryDate.format(aggregateBy); }) .toPairs() // [key, entry] .sortBy(([key]) => key) // sort by date @@ -31,27 +33,31 @@ Subscribers and challenges: - 1 value each month for the previous 12 months - 1 value each year for the previous years */ -export function preenHistory (history, isSubscribed, timezoneOffset) { +export function preenHistory (history, isSubscribed, timezoneOffset = 0, dayStart = 0) { // history = _.filter(history, historyEntry => Boolean(historyEntry)); // Filter missing entries - let now = timezoneOffset ? moment().zone(timezoneOffset) : moment(); + const now = moment().zone(timezoneOffset); // Date after which to begin compressing data - let cutOff = now.subtract(isSubscribed ? 365 : 60, 'days').startOf('day'); + const cutOff = now.subtract(isSubscribed ? 365 : 60, 'days').startOf('day'); // Keep uncompressed entries (modifies history and returns removed items) let newHistory = _.remove(history, entry => { - let date = moment(entry.date); - return date.isSame(cutOff) || date.isAfter(cutOff); + if (!entry) return true; // sometimes entries are `null` + const entryDate = moment(entry.date).zone(timezoneOffset); + if (entryDate.hour() < dayStart) entryDate.subtract(1, 'day'); + return entryDate.isSame(cutOff) || entryDate.isAfter(cutOff); }); // Date after which to begin compressing data by year let monthsCutOff = cutOff.subtract(isSubscribed ? 12 : 10, 'months').startOf('day'); let aggregateByMonth = _.remove(history, entry => { - let date = moment(entry.date); - return date.isSame(monthsCutOff) || date.isAfter(monthsCutOff); + if (!entry) return true; // sometimes entries are `null` + const entryDate = moment(entry.date).zone(timezoneOffset); + if (entryDate.hour() < dayStart) entryDate.subtract(1, 'day'); + return entryDate.isSame(monthsCutOff) || entryDate.isAfter(monthsCutOff); }); // Aggregate remaining entries by month and year - if (aggregateByMonth.length > 0) newHistory.unshift(..._aggregate(aggregateByMonth, 'YYYYMM')); - if (history.length > 0) newHistory.unshift(..._aggregate(history, 'YYYY')); + if (aggregateByMonth.length > 0) newHistory.unshift(..._aggregate(aggregateByMonth, 'YYYYMM', timezoneOffset, dayStart)); + if (history.length > 0) newHistory.unshift(..._aggregate(history, 'YYYY', timezoneOffset, dayStart)); return newHistory; } @@ -60,11 +66,12 @@ export function preenHistory (history, isSubscribed, timezoneOffset) { export function preenUserHistory (user, tasksByType) { let isSubscribed = user.isSubscribed(); let timezoneOffset = user.preferences.timezoneOffset; + let dayStart = user.preferences.dayStart; let minHistoryLength = isSubscribed ? 365 : 60; function _processTask (task) { if (task.history && task.history.length > minHistoryLength) { - task.history = preenHistory(task.history, isSubscribed, timezoneOffset); + task.history = preenHistory(task.history, isSubscribed, timezoneOffset, dayStart); task.markModified('history'); } } @@ -73,12 +80,12 @@ export function preenUserHistory (user, tasksByType) { tasksByType.dailys.forEach(_processTask); if (user.history.exp.length > minHistoryLength) { - user.history.exp = preenHistory(user.history.exp, isSubscribed, timezoneOffset); + user.history.exp = preenHistory(user.history.exp, isSubscribed, timezoneOffset, dayStart); user.markModified('history.exp'); } if (user.history.todos.length > minHistoryLength) { - user.history.todos = preenHistory(user.history.todos, isSubscribed, timezoneOffset); + user.history.todos = preenHistory(user.history.todos, isSubscribed, timezoneOffset, dayStart); user.markModified('history.todos'); } } diff --git a/website/server/libs/setupMongoose.js b/website/server/libs/setupMongoose.js index dba8be153c..fc8260c298 100644 --- a/website/server/libs/setupMongoose.js +++ b/website/server/libs/setupMongoose.js @@ -4,6 +4,7 @@ import mongoose from 'mongoose'; const IS_PROD = nconf.get('IS_PROD'); const MAINTENANCE_MODE = nconf.get('MAINTENANCE_MODE'); +const POOL_SIZE = nconf.get('MONGODB_POOL_SIZE'); // Do not connect to MongoDB when in maintenance mode if (MAINTENANCE_MODE !== 'true') { @@ -12,6 +13,8 @@ if (MAINTENANCE_MODE !== 'true') { connectTimeoutMS: 30000, }; + if (POOL_SIZE) mongooseOptions.poolSize = Number(POOL_SIZE); + const NODE_DB_URI = nconf.get('IS_TEST') ? nconf.get('TEST_DB_URI') : nconf.get('NODE_DB_URI'); mongoose.connect(NODE_DB_URI, mongooseOptions, (err) => { diff --git a/website/server/libs/taskManager.js b/website/server/libs/taskManager.js index bac6ecc3fd..c65b1cdc52 100644 --- a/website/server/libs/taskManager.js +++ b/website/server/libs/taskManager.js @@ -148,7 +148,7 @@ export async function createTasks (req, res, options = {}) { * @param options.user The user that these tasks belong to * @param options.challenge The challenge that these tasks belong to * @param options.group The group that these tasks belong to - * @param options.dueDate + * @param options.dueDate The date to use for computing the nextDue field for each returned task * @return The tasks found */ export async function getTasks (req, res, options = {}) { diff --git a/website/server/middlewares/errorHandler.js b/website/server/middlewares/errorHandler.js index cb12a714cb..5b3cdb7390 100644 --- a/website/server/middlewares/errorHandler.js +++ b/website/server/middlewares/errorHandler.js @@ -69,8 +69,11 @@ module.exports = function errorHandler (err, req, res, next) { // eslint-disable logger.error(err, { method: req.method, originalUrl: req.originalUrl, - headers: omit(req.headers, ['x-api-key', 'cookie', 'password', 'confirmPassword']), // don't send sensitive information that only adds noise - body: req.body, + + // don't send sensitive information that only adds noise + headers: omit(req.headers, ['x-api-key', 'cookie', 'password', 'confirmPassword']), + body: omit(req.body, ['password', 'confirmPassword']), + httpCode: responseErr.httpCode, isHandledError: responseErr.httpCode < 500, }); diff --git a/website/server/models/task.js b/website/server/models/task.js index 026d922714..2b3d8e1c8f 100644 --- a/website/server/models/task.js +++ b/website/server/models/task.js @@ -184,31 +184,53 @@ TaskSchema.statics.sanitizeReminder = function sanitizeReminder (reminderObj) { return reminderObj; }; -TaskSchema.methods.scoreChallengeTask = async function scoreChallengeTask (delta) { +TaskSchema.methods.scoreChallengeTask = async function scoreChallengeTask (delta, direction) { let chalTask = this; chalTask.value += delta; if (chalTask.type === 'habit' || chalTask.type === 'daily') { // Add only one history entry per day - let lastChallengHistoryIndex = chalTask.history.length - 1; + const history = chalTask.history; + const lastChallengHistoryIndex = history.length - 1; + const lastHistoryEntry = history[lastChallengHistoryIndex]; - if (chalTask.history[lastChallengHistoryIndex] && - moment(chalTask.history[lastChallengHistoryIndex].date).isSame(new Date(), 'day')) { - chalTask.history[lastChallengHistoryIndex] = { + if ( + lastHistoryEntry && lastHistoryEntry.date && + moment().isSame(lastHistoryEntry.date, 'day') + ) { + lastHistoryEntry.value = chalTask.value; + lastHistoryEntry.date = Number(new Date()); + + if (chalTask.type === 'habit') { + // @TODO remove this extra check after migration has run to set scoredUp and scoredDown in every task + lastHistoryEntry.scoredUp = lastHistoryEntry.scoredUp || 0; + lastHistoryEntry.scoredDown = lastHistoryEntry.scoredDown || 0; + + if (direction === 'up') { + lastHistoryEntry.scoredUp += 1; + } else { + lastHistoryEntry.scoredDown += 1; + } + } + + chalTask.markModified(`history.${lastChallengHistoryIndex}`); + } else { + const historyEntry = { date: Number(new Date()), value: chalTask.value, }; - chalTask.markModified(`history.${lastChallengHistoryIndex}`); - } else { - chalTask.history.push({ - date: Number(new Date()), - value: chalTask.value, - }); + + if (chalTask.type === 'habit') { + historyEntry.scoredUp = direction === 'up' ? 1 : 0; + historyEntry.scoredDown = direction === 'down' ? 1 : 0; + } + + history.push(historyEntry); // Only preen task history once a day when the task is scored first if (chalTask.history.length > 365) { - chalTask.history = preenHistory(chalTask.history, true); // true means the challenge will retain as much entries as a subscribed user + chalTask.history = preenHistory(chalTask.history, true); // true means the challenge will retain as many entries as a subscribed user } } } @@ -220,7 +242,11 @@ export let Task = mongoose.model('Task', TaskSchema); // habits and dailies shared fields let habitDailySchema = () => { - return {history: Array}; // [{date:Date, value:Number}], // this causes major performance problems + // Schema not defined because it causes serious perf problems + // date is a date stored as a Number value + // value is a Number + // scoredUp and scoredDown only exist for habits and are numbers + return {history: Array}; }; // dailys and todos shared fields diff --git a/website/server/models/user/methods.js b/website/server/models/user/methods.js index 0ca9d43a13..183f881d34 100644 --- a/website/server/models/user/methods.js +++ b/website/server/models/user/methods.js @@ -59,6 +59,10 @@ const INTERACTION_CHECKS = Object.freeze({ // Unlike private messages, gems can't be sent to oneself (sndr, rcvr) => rcvr._id === sndr._id && 'cannotSendGemsToYourself', ], + + 'group-invitation': [ + // uses the checks that are in the 'always' array + ], }); /* eslint-enable no-unused-vars */ diff --git a/website/server/models/user/schema.js b/website/server/models/user/schema.js index c459d9d79c..81d7386d5c 100644 --- a/website/server/models/user/schema.js +++ b/website/server/models/user/schema.js @@ -499,8 +499,8 @@ let schema = new Schema({ streak: {type: Boolean, default: false}, }, tasks: { - groupByChallenge: {type: Boolean, default: false}, - confirmScoreNotes: {type: Boolean, default: false}, + groupByChallenge: {type: Boolean, default: false}, // @TODO remove? not used + confirmScoreNotes: {type: Boolean, default: false}, // @TODO remove? not used }, improvementCategories: { type: Array,