+
+
+
+
+
+
diff --git a/website/client/src/components/userMenu/inbox.vue b/website/client/src/components/userMenu/inbox.vue
deleted file mode 100644
index 72cceb6e11..0000000000
--- a/website/client/src/components/userMenu/inbox.vue
+++ /dev/null
@@ -1,698 +0,0 @@
-
-
-
-
-
-
-
-
-
{{ placeholderTexts.title }}
-
-
-
-
{{ $t('beginningOfConversation', {userName: selectedConversation.name}) }}
-
-
-
-
{{ $t('PMDisabledCaptionTitle') }}
-
{{ $t('PMDisabledCaptionText') }}
-
-
-
-
-
- {{ currentLength }} / 3000
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/website/client/src/components/userMenu/profile.vue b/website/client/src/components/userMenu/profile.vue
index 4f96f6e245..d10ecef08a 100644
--- a/website/client/src/components/userMenu/profile.vue
+++ b/website/client/src/components/userMenu/profile.vue
@@ -859,13 +859,12 @@ export default {
window.history.replaceState(null, null, '');
},
sendMessage () {
- this.$root.$emit('habitica::new-inbox-message', {
- userIdToMessage: this.user._id,
- displayName: this.user.profile.name,
- username: this.user.auth.local.username,
- backer: this.user.backer,
- contributor: this.user.contributor,
+ this.$store.dispatch('user:newPrivateMessageTo', {
+ member: this.user,
});
+
+ this.$router.push('/private-messages');
+ this.$root.$emit('bv::hide::modal', 'profile');
},
getProgressDisplay () {
// let currentLoginDay = Content.loginIncentives[this.user.loginIncentives];
diff --git a/website/client/src/libs/logging.js b/website/client/src/libs/logging.js
index 89a7725fe4..f2c442e101 100644
--- a/website/client/src/libs/logging.js
+++ b/website/client/src/libs/logging.js
@@ -29,7 +29,7 @@ export function setUpLogging () { // eslint-disable-line import/prefer-default-e
Vue.config.errorHandler = (err, vm, info) => {
console.error('Unhandled error in Vue.js code.');
console.error('Error:', err);
- console.error('Component where it occured:', vm);
+ console.error('Component where it occurred:', vm);
console.error('Info:', info);
_LTracker.push({
diff --git a/website/client/src/mixins/spells.js b/website/client/src/mixins/spells.js
index 22da51019b..dc64b987c8 100644
--- a/website/client/src/mixins/spells.js
+++ b/website/client/src/mixins/spells.js
@@ -165,7 +165,7 @@ export default {
}
return null;
- // @TOOD: User.sync();
+ // @TODO: User.sync();
},
castCancel () {
this.potionClickMode = false;
diff --git a/website/client/src/pages/private-messages.vue b/website/client/src/pages/private-messages.vue
new file mode 100644
index 0000000000..7b023d5e98
--- /dev/null
+++ b/website/client/src/pages/private-messages.vue
@@ -0,0 +1,867 @@
+
+
+
+
+
+
+
+
+
+
{{ placeholderTexts.title }}
+
+
+
+
+
{{ $t('beginningOfConversation', {userName: selectedConversation.name}) }}
+
{{ $t('beginningOfConversationReminder') }}
+
+
+
+
{{ $t('PMDisabledCaptionTitle') }}
+
{{ $t('PMDisabledCaptionText') }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/website/client/src/router/index.js b/website/client/src/router/index.js
index b44689dd15..6c4f07c4c0 100644
--- a/website/client/src/router/index.js
+++ b/website/client/src/router/index.js
@@ -75,6 +75,8 @@ const GroupPlanIndex = () => import(/* webpackChunkName: "group-plans" */ '@/com
const GroupPlanTaskInformation = () => import(/* webpackChunkName: "group-plans" */ '@/components/group-plans/taskInformation');
const GroupPlanBilling = () => import(/* webpackChunkName: "group-plans" */ '@/components/group-plans/billing');
+const MessagesIndex = () => import(/* webpackChunkName: "private-messages" */ '@/pages/private-messages');
+
// Challenges
const ChallengeIndex = () => import(/* webpackChunkName: "challenges" */ '@/components/challenges/index');
const MyChallenges = () => import(/* webpackChunkName: "challenges" */ '@/components/challenges/myChallenges');
@@ -193,6 +195,7 @@ const router = new VueRouter({
},
],
},
+ { path: '/private-messages', name: 'privateMessages', component: MessagesIndex },
{
name: 'challenges',
path: '/challenges',
diff --git a/website/client/src/store/actions/shops.js b/website/client/src/store/actions/shops.js
index d06b2fcb06..fea30216b8 100644
--- a/website/client/src/store/actions/shops.js
+++ b/website/client/src/store/actions/shops.js
@@ -60,7 +60,10 @@ async function buyArmoire (store, params) {
const isExperience = item.type === 'experience';
if (item.type === 'gear') {
- store.state.user.data.items.gear.owned[item.dropKey] = true;
+ store.state.user.data.items.gear.owned = {
+ ...store.state.user.data.items.gear.owned,
+ [item.dropKey]: true,
+ };
}
if (item.type === 'food') {
diff --git a/website/client/src/store/actions/user.js b/website/client/src/store/actions/user.js
index 87697b39af..3a98137fed 100644
--- a/website/client/src/store/actions/user.js
+++ b/website/client/src/store/actions/user.js
@@ -160,3 +160,65 @@ export async function userLookup (store, params) {
}
return response;
}
+
+export function block (store, params) {
+ store.state.user.data.inbox.blocks.push(params.uuid);
+ return axios.post(`/api/v4/user/block/${params.uuid}`);
+}
+
+export function unblock (store, params) {
+ const index = store.state.user.data.inbox.blocks.indexOf(params.uuid);
+ store.state.user.data.inbox.blocks.splice(index, 1);
+ return axios.post(`/api/v4/user/block/${params.uuid}`);
+}
+
+export function newPrivateMessageTo (store, params) {
+ const { member } = params;
+
+ const userStyles = {};
+ userStyles.items = { gear: {} };
+
+ if (member.items) {
+ userStyles.items.gear = {};
+ userStyles.items.gear.costume = { ...member.items.gear.costume };
+ userStyles.items.gear.equipped = { ...member.items.gear.equipped };
+
+ userStyles.items.currentMount = member.items.currentMount;
+ userStyles.items.currentPet = member.items.currentPet;
+ }
+
+ if (member.preferences) {
+ userStyles.preferences = {};
+ if (member.preferences.style) userStyles.preferences.style = member.preferences.style;
+ userStyles.preferences.hair = member.preferences.hair;
+ userStyles.preferences.skin = member.preferences.skin;
+ userStyles.preferences.shirt = member.preferences.shirt;
+ userStyles.preferences.chair = member.preferences.chair;
+ userStyles.preferences.size = member.preferences.size;
+ userStyles.preferences.chair = member.preferences.chair;
+ userStyles.preferences.background = member.preferences.background;
+ userStyles.preferences.costume = member.preferences.costume;
+ }
+
+ if (member.stats) {
+ userStyles.stats = {};
+ userStyles.stats.class = member.stats.class;
+ if (member.stats.buffs) {
+ userStyles.stats.buffs = {
+ seafoam: member.stats.buffs.seafoam,
+ shinySeed: member.stats.buffs.shinySeed,
+ spookySparkles: member.stats.buffs.spookySparkles,
+ snowball: member.stats.buffs.snowball,
+ };
+ }
+ }
+
+ store.state.privateMessageOptions = {
+ userIdToMessage: member._id,
+ displayName: member.profile.name,
+ username: member.auth.local.username,
+ backer: member.backer,
+ contributor: member.contributor,
+ userStyles,
+ };
+}
diff --git a/website/client/src/store/index.js b/website/client/src/store/index.js
index 42fe46c9a8..21bd4d58d8 100644
--- a/website/client/src/store/index.js
+++ b/website/client/src/store/index.js
@@ -127,6 +127,13 @@ export default function () {
equipmentDrawerOpen: true,
groupPlans: [],
isRunningYesterdailies: false,
+ privateMessageOptions: {
+ userIdToMessage: '',
+ displayName: '',
+ username: '',
+ backer: {},
+ contributor: {},
+ },
},
});
diff --git a/website/client/tests/unit/components/avatar.spec.js b/website/client/tests/unit/components/avatar.spec.js
index aef56e3c58..49e6f8398d 100644
--- a/website/client/tests/unit/components/avatar.spec.js
+++ b/website/client/tests/unit/components/avatar.spec.js
@@ -112,7 +112,7 @@ context('avatar.vue', () => {
};
});
- it('returns if showing equiped gear', () => {
+ it('returns if showing equipped gear', () => {
expect(vm.costumeClass).to.equal('equipped');
});
it('returns if wearing a costume', () => {
diff --git a/website/client/vue.config.js b/website/client/vue.config.js
index cdf5a9f345..10260e1f9e 100644
--- a/website/client/vue.config.js
+++ b/website/client/vue.config.js
@@ -116,6 +116,7 @@ module.exports = {
},
devServer: {
+ disableHostCheck: true,
proxy: {
// proxy all requests to the server at IP:PORT as specified in the top-level config
'^/api/v3': {
diff --git a/website/client/webpack.webstorm.config b/website/client/webpack.webstorm.config
new file mode 100644
index 0000000000..729c3d2a88
--- /dev/null
+++ b/website/client/webpack.webstorm.config
@@ -0,0 +1,9 @@
+const path = require('path');
+
+module.exports = {
+ resolve: {
+ alias: {
+ '@': path.join(__dirname, 'src'),
+ }
+ },
+};
diff --git a/website/common/locales/cs/achievements.json b/website/common/locales/cs/achievements.json
index 662a9b91a5..aff27a0997 100644
--- a/website/common/locales/cs/achievements.json
+++ b/website/common/locales/cs/achievements.json
@@ -34,5 +34,26 @@
"achievementMonsterMagusModalText": "Posbíral(a) jsi všechny zombie zvířata!",
"achievementMonsterMagusText": "Posbíral(a) všechny zombie mazlíčky.",
"achievementMonsterMagus": "Monster mág",
- "achievementPartyOn": "Tvoje skupina se rozrostla na 4 členy!"
+ "achievementPartyOn": "Tvoje skupina se rozrostla na 4 členy!",
+ "achievementPearlyProModalText": "Zkrotil jste všechny Bílé zvířata!",
+ "achievementPearlyProText": "Zkrotil všechny Bílé zvířata.",
+ "achievementPrimedForPaintingModalText": "Shromáždili jste všechny Bílé mazlíčky!",
+ "achievementPrimedForPaintingText": "Shromáždil všechny Bílé mazlíčky.",
+ "achievementPrimedForPainting": "Základem pro vybarveni",
+ "achievementPurchasedEquipmentModalText": "Vybavení je způsob, jak si přizpůsobit avatar a zlepšit své statistiky",
+ "achievementPurchasedEquipmentText": "Koupil první kus vybavení.",
+ "achievementPurchasedEquipment": "Nákup vybavení",
+ "achievementFedPetModalText": "Existuje mnoho různých druhů potravin, ale domácí mazlíčci mohou být vybíraví",
+ "achievementFedPetText": "Nakrmil/a svého prvního mazlíčka.",
+ "achievementFedPet": "Nakrmte domácího mazlíčka",
+ "achievementHatchedPetModalText": "Vydejte se do svého inventáře a zkuste zkombinovat lektvar a vejce",
+ "achievementCompletedTaskModalText": "Zaškrtněte některý ze svých úkolů a získejte odměny",
+ "achievementCompletedTaskText": "Dokončili svůj první úkol.",
+ "achievementCompletedTask": "Dokončete úkol",
+ "achievementCreatedTaskModalText": "Přidejte úkol pro něco, čeho byste chtěli tento týden dosáhnout",
+ "achievementCreatedTaskText": "Vytvořili svůj první úkol.",
+ "achievementCreatedTask": "Vytvořte úkol",
+ "earnedAchievement": "Získali jste úspěch!",
+ "viewAchievements": "Zobrazit úspěchy",
+ "letsGetStarted": "Začněme!"
}
diff --git a/website/common/locales/cs/backgrounds.json b/website/common/locales/cs/backgrounds.json
index b58af974d2..a94e6d2e4c 100644
--- a/website/common/locales/cs/backgrounds.json
+++ b/website/common/locales/cs/backgrounds.json
@@ -437,5 +437,31 @@
"backgroundDuckPondNotes": "Nakrm vodní ptáky u kachního jezírka.",
"backgroundDuckPondText": "Kachní jezírko",
"backgrounds032019": "Set 58: zveřejněno v březnu 2019",
- "backgroundValentinesDayFeastingHallNotes": "Pociť na Valentýna lásku v hodovní síni."
+ "backgroundValentinesDayFeastingHallNotes": "Pociť na Valentýna lásku v hodovní síni.",
+ "backgroundWinterNocturneText": "Zimní serenáda",
+ "backgrounds122019": "SET 67: Vydáno v prosinci 2019",
+ "backgroundPotionShopText": "Obchod lektvarů",
+ "backgrounds112019": "SET 66: Vydáno v listopadu 2019",
+ "backgroundPumpkinCarriageText": "Dýňový vozík",
+ "backgrounds102019": "SET 65: Vydáno říjen 2019",
+ "backgroundInAClassroomText": "Třída",
+ "backgroundInAnAncientTombText": "Starověká hrobka",
+ "backgroundAutumnFlowerGardenText": "Podzimní květinová zahrada",
+ "backgrounds092019": "SET 64: Vydáno září 2019",
+ "backgroundTreehouseText": "Dům na stromě",
+ "backgroundGiantDandelionsText": "Obří pampelišky",
+ "backgroundAmidAncientRuinsText": "Uprostřed ruin",
+ "backgrounds082019": "SET 63: Vydáno srpen 2019",
+ "backgroundAmongGiantAnemonesNotes": "Prozkoumejte útesový život, chráněný před predátory Mezi obříma sasankama.",
+ "backgroundAmongGiantAnemonesText": "Mezi obříma sasankami",
+ "backgroundFlyingOverTropicalIslandsNotes": "Nechte si vyrazit pohledem dech, při přeletu přes Tropické Ostrovy.",
+ "backgroundFlyingOverTropicalIslandsText": "Létání nad tropickými ostrovy",
+ "backgroundLakeWithFloatingLanternsText": "Jezero s plovoucími lucernami",
+ "backgrounds072019": "SET 62: Vydáno červenec 2019",
+ "backgroundUnderwaterVentsNotes": "Potopte se hluboko dolů, dolů k podvodním otvorům.",
+ "backgroundUnderwaterVentsText": "Podvodní otvory",
+ "backgroundSeasideCliffsNotes": "Stůjte na pláži s krásou Přímořské útesů nad vámi.",
+ "backgroundSeasideCliffsText": "Přímořské útesy",
+ "backgroundSchoolOfFishNotes": "Plavejte mezi školou ryb.",
+ "backgroundSchoolOfFishText": "Škola ryb"
}
diff --git a/website/common/locales/cs/content.json b/website/common/locales/cs/content.json
index 6382cb88ce..b706b1ecd1 100644
--- a/website/common/locales/cs/content.json
+++ b/website/common/locales/cs/content.json
@@ -351,5 +351,7 @@
"questEggDolphinMountText": "Delfín",
"questEggDolphinText": "Delfín",
"hatchingPotionShadow": "Stín",
- "premiumPotionUnlimitedNotes": "Nepoužitelné na vejce z výprav."
+ "premiumPotionUnlimitedNotes": "Nepoužitelné na vejce z výprav.",
+ "hatchingPotionAurora": "Polární záře",
+ "hatchingPotionAmber": "Jantar"
}
diff --git a/website/common/locales/cs/defaulttasks.json b/website/common/locales/cs/defaulttasks.json
index cc30c8061a..26e4a46001 100644
--- a/website/common/locales/cs/defaulttasks.json
+++ b/website/common/locales/cs/defaulttasks.json
@@ -55,5 +55,9 @@
"workTodoProject": "Práce na projektu >> ukončena",
"workDailyImportantTaskNotes": "Klikni k upřesnění tvého nejdůležitějšího úkolu",
"workDailyImportantTask": "Nejdůležitější úkol >> pracoval(a) jsem na dnešním nejdůležitějším úkolu",
- "workHabitMail": "Zpracuj e-maily"
+ "workHabitMail": "Zpracuj e-maily",
+ "exerciseDailyText": "Protahování >> Každodenní cvičební rutina",
+ "exerciseTodoText": "Nastavte rozvrh cvičení",
+ "exerciseTodoNotes": "Klepnutím přidáte kontrolní seznam!",
+ "healthHabit": "Jezte zdravé/nezdravé jídlo"
}
diff --git a/website/common/locales/cs/front.json b/website/common/locales/cs/front.json
index e9d8842692..2b12dde965 100644
--- a/website/common/locales/cs/front.json
+++ b/website/common/locales/cs/front.json
@@ -331,5 +331,6 @@
"getStarted": "Get Started!",
"mobileApps": "Mobilní aplikace",
"learnMore": "Zjisti více",
- "communityInstagram": "Instagram"
+ "communityInstagram": "Instagram",
+ "minPasswordLength": "Heslo musí mít 8 nebo více znaků."
}
diff --git a/website/common/locales/cs/gear.json b/website/common/locales/cs/gear.json
index af2dab3b53..04a77b36c0 100644
--- a/website/common/locales/cs/gear.json
+++ b/website/common/locales/cs/gear.json
@@ -1809,5 +1809,8 @@
"weaponSpecialFall2019MageText": "Jednooká hůl",
"weaponSpecialFall2019WarriorText": "Pařátový trojzubec",
"weaponSpecialFall2019RogueText": "Notový pult",
- "weaponSpecialSummer2019HealerText": "Bublinová hůlka"
+ "weaponSpecialSummer2019HealerText": "Bublinová hůlka",
+ "armorSpecialSpring2019MageText": "Jantarová róba",
+ "armorSpecialSpring2019RogueText": "Mrakové brnění",
+ "weaponSpecialWinter2020RogueText": "Tyč lucerny"
}
diff --git a/website/common/locales/cs/generic.json b/website/common/locales/cs/generic.json
index e155df23b2..869f170fa1 100644
--- a/website/common/locales/cs/generic.json
+++ b/website/common/locales/cs/generic.json
@@ -294,5 +294,6 @@
"loadEarlierMessages": "Načíst dřívější zprávy",
"demo": "Ukázka",
"options": "Možnosti",
- "finish": "Dokončit"
+ "finish": "Dokončit",
+ "congratulations": "Gratulujeme!"
}
diff --git a/website/common/locales/cs/limited.json b/website/common/locales/cs/limited.json
index 8ff5a12d5c..5806f2c686 100644
--- a/website/common/locales/cs/limited.json
+++ b/website/common/locales/cs/limited.json
@@ -147,7 +147,7 @@
"dateEndJanuary": "Leden 31",
"dateEndFebruary": "Únor 28",
"winterPromoGiftHeader": "DARUJ PŘEDPLATNÉ A ZÍSKEJ JEDNO ZDARMA!",
- "winterPromoGiftDetails1": "Až do 15. ledna, když někomu darujete předplatné, získáte stejné předplatné pro sebe zdarma!",
+ "winterPromoGiftDetails1": "Až do 6. ledna, když někomu darujete předplatné, získáte stejné předplatné pro sebe zdarma!",
"winterPromoGiftDetails2": "Prosím, mějte však na paměti, že pokud ty nebo příjemce tvého dárku již máte probíhající předplatné, pak darované předplatné odstartuje až poté, co je stávající zrušeno, nebo až vyprší jeho platnost. Děkujeme ti moc za tvojí podporu! <3",
"discountBundle": "balíček",
"g1g1Announcement": "Darujte předplatné, získejte akci zdarma na předplatné!",
diff --git a/website/common/locales/cs/messages.json b/website/common/locales/cs/messages.json
index ee7403e467..05b27d50af 100644
--- a/website/common/locales/cs/messages.json
+++ b/website/common/locales/cs/messages.json
@@ -41,7 +41,7 @@
"messageAuthEmailTaken": "Email se již používá",
"messageAuthNoUserFound": "Uživatel nenalezen.",
"messageAuthMustBeLoggedIn": "Musíš být přihlášen.",
- "messageAuthMustIncludeTokens": "Ve svém požadavku musíš uvést token a uid (uživatelské id)",
+ "messageAuthMustIncludeTokens": "Ve svém požadavku musíš uvést token a uid (Uživatelské Id)",
"messageGroupAlreadyInParty": "Již jsi ve skupině, zkus znovu načíst stránku.",
"messageGroupOnlyLeaderCanUpdate": "Pouze velitel družiny může jí může upravovat!",
"messageGroupRequiresInvite": "Nemůžeš se přidat do družiny, do které nejsi pozván.",
@@ -62,5 +62,7 @@
"unallocatedStatsPoints": "Máš
<%= points %>nepřidělených vlastnostních bodů",
"beginningOfConversation": "Toto je začátek tvé konverzace s uživatelem <%= userName %>. Nezapomeň být milý, ucitvý a drž se směrnic komunity!",
"messageDeletedUser": "Omlouváme se, ale tento uživatel smazal svůj účet.",
- "messageMissingDisplayName": "Missing display name."
+ "messageMissingDisplayName": "Chybí zobrazované jméno.",
+ "canDeleteNow": "Nyní můžete zprávu smazat.",
+ "reportedMessage": "Tuto zprávu jste nahlásili moderátorům."
}
diff --git a/website/common/locales/cs/npc.json b/website/common/locales/cs/npc.json
index 66062c20f8..0be2fd52e4 100644
--- a/website/common/locales/cs/npc.json
+++ b/website/common/locales/cs/npc.json
@@ -20,7 +20,7 @@
"welcomeToTavern": "Vítej v Krčmě!",
"sleepDescription": "Potřebuješ pauzu? Ubytuj se v Danielově krčmě pro pauznutí některých z těžších herních mechanismů země Habitica:",
"sleepBullet1": "Promeškané denní úkoly tě nezraní",
- "sleepBullet2": "Úkoly neztratí sérii a barva zůstane nezměněna",
+ "sleepBullet2": "Úkoly neztratí sérii",
"sleepBullet3": "Bossové ti neublíží za tvé vlastní zmeškané denní úkoly",
"sleepBullet4": "Tvé poškození bossům nebo sbírka předmětů na Výpravě zůstanou vypnuty, dokud se z krčmy neodhlásíš",
"pauseDailies": "Pauznout poškození",
@@ -169,5 +169,6 @@
"imReady": "Vstup do země Habitica",
"limitedOffer": "Dostupné do <%= date %>",
"paymentCanceledDisputes": "Na váš e-mail jsme zaslali potvrzení o zrušení. Pokud e-mail nevidíte, kontaktujte nás, abychom předešli budoucím sporům o fakturaci.",
- "paymentAutoRenew": "Toto předplatné se automaticky obnoví, dokud nebude zrušeno. Pokud potřebujete předplatné zrušit, můžete tak učinit z nastavení."
+ "paymentAutoRenew": "Toto předplatné se automaticky obnoví, dokud nebude zrušeno. Pokud potřebujete předplatné zrušit, můžete tak učinit z nastavení.",
+ "cannotUnpinItem": "Tuto položku nelze odepnout."
}
diff --git a/website/common/locales/cs/questscontent.json b/website/common/locales/cs/questscontent.json
index 70c861b7dc..deae4919f5 100644
--- a/website/common/locales/cs/questscontent.json
+++ b/website/common/locales/cs/questscontent.json
@@ -639,5 +639,12 @@
"questBronzeDropBronzePotion": "Bronzový líhnoucí lektvar",
"questBronzeBoss": "Brazen Brouk",
"questBronzeText": "Bitva s Brazenem Broukem",
- "mythicalMarvelsText": "Balíček mýtických zázraků"
+ "mythicalMarvelsText": "Balíček mýtických zázraků",
+ "questRobotCollectBolts": "Šrouby",
+ "questRobotCollectGears": "Ozubená kola",
+ "questRobotCollectSprings": "Pružiny",
+ "questRobotDropRobotEgg": "Robot (Vejce)",
+ "questAmberText": "Jantarová Aliance",
+ "questAmberBoss": "Trerezin",
+ "questAmberDropAmberPotion": "Jantarový líhnoucí lektvar"
}
diff --git a/website/common/locales/cs/rebirth.json b/website/common/locales/cs/rebirth.json
index c259a930c2..b5d226489b 100644
--- a/website/common/locales/cs/rebirth.json
+++ b/website/common/locales/cs/rebirth.json
@@ -21,7 +21,7 @@
"rebirthOrb": "Použil Kouli Znovozrození, aby začal znova, po dosáhnutí úrovně <%= level %>.",
"rebirthOrb100": "Použil Kouli znovuzrození, aby začal odznovu po dosažení úrovně 100 nebo vyšší.",
"rebirthOrbNoLevel": "Použil Kouli Znovozrození, aby začal znova.",
- "rebirthPop": "Obnoví tvou postavu a vrátí jí na 1. úroveň s povoláním Válečníka, zatímco ti zůstanou všechny úspěchy, celá sbírka a vybavení. Tvoje úkoly zůstanou i s historií, ale vrátí se na žlutou barvu. Tvé řady úspěchů se resetují, jen u úkolů z výzev zůstanou. Tvé zlato, zkušenosti, mana a efekty všech schopností budou odstraněny. Toto vše nastane s okamžitou platností. Pro více informací se podívej na wiki stránku:
Orb of Rebirth.",
+ "rebirthPop": "Obnoví tvou postavu a vrátí jí na 1. úroveň s povoláním Válečníka, zatímco ti zůstanou všechny úspěchy, celá sbírka a vybavení. Tvoje úkoly zůstanou i s historií, ale vrátí se na žlutou barvu. Tvé řady úspěchů se resetují, zůstanou úkoly patřící do aktivních výzev a do Skupiny. Tvé zlato, zkušenosti, mana a efekty všech schopností budou odstraněny. Toto vše nastane s okamžitou platností. Pro více informací se podívej na wiki stránku:
Orb of Rebirth.",
"rebirthName": "Koule znovuzrození",
"reborn": "Znovuzrozen, maximální úroveň <%= reLevel %>",
"confirmReborn": "Jsi si jistý?",
diff --git a/website/common/locales/cs/settings.json b/website/common/locales/cs/settings.json
index 0a592d61fe..1194c73193 100644
--- a/website/common/locales/cs/settings.json
+++ b/website/common/locales/cs/settings.json
@@ -120,7 +120,7 @@
"giftedSubscriptionFull": "Ahoj <%= username %>, <%= sender %> ti poslal <%= monthCount %> měsíce předplatného!",
"giftedSubscriptionWinterPromo": "Hello <%= username %>, you received <%= monthCount %> months of subscription as part of our holiday gift-giving promotion!",
"invitedParty": "Byli jste pozváni do Družiny",
- "invitedGuild": "Byli jste pozváni do Cechu",
+ "invitedGuild": "Byli jste pozváni do Cechu",
"importantAnnouncements": "Reminders to check in to complete tasks and receive prizes",
"weeklyRecaps": "Shrnutí aktivity tvého účtu za poslední týden (Poznámka: momentálně vypnuto kvůli problémům s výkonem, ale doufáme že se to vyřeší a budeme brzy znovu posílat e-maily!)",
"onboarding": "Guidance with setting up your Habitica account",
diff --git a/website/common/locales/cs/subscriber.json b/website/common/locales/cs/subscriber.json
index f83ef826b5..2ddf9b2c8e 100644
--- a/website/common/locales/cs/subscriber.json
+++ b/website/common/locales/cs/subscriber.json
@@ -174,7 +174,7 @@
"missingUnsubscriptionCode": "Chybějící kód k zrušení předplatného.",
"missingSubscription": "Uživatel nemá předplatné",
"missingSubscriptionCode": "Chybějící kód předplatitele. Možné hodnoty: basic_earned, basic_3mo, basic_6mo, google_6mo, basic_12mo.",
- "missingReceipt": "Missing Receipt.",
+ "missingReceipt": "Chybějící potvrzení.",
"cannotDeleteActiveAccount": "Máte aktivní předplatné, zrušte si ho před smazáním účtu.",
"paymentNotSuccessful": "Zaplacení neproběhlo úspešně",
"planNotActive": "Předplatné ještě nebylo aktivováén (vzhledem k PayPal bugu). Bude aktivováno <%= nextBillingDate %>, poté ho můžete zrušit a obdržíte veškeré výhody",
diff --git a/website/common/locales/da/achievements.json b/website/common/locales/da/achievements.json
index e7a6e5f14c..84469a4c93 100644
--- a/website/common/locales/da/achievements.json
+++ b/website/common/locales/da/achievements.json
@@ -2,29 +2,66 @@
"achievement": "Præstation",
"share": "Del",
"onwards": "Fremad!",
- "levelup": "Ved at opnå dine mål fra den virkelige verden er du steget i level, og er nu fuldt helet igen!",
- "reachedLevel": "Du har nået level <%= level %>",
- "achievementLostMasterclasser": "Quest færdiggører: Mesterklasse-rækken",
- "achievementLostMasterclasserText": "Færdiggjorde alle 16 quests i Mesterklasse quest-rækken og løste alle mysterier fra \"the Lost Masterclasser\"!",
- "achievementLostMasterclasserModalText": "Du har klaret alle seksten quests i Mesterklasser-serien og løst mysteriet om den forsvundne Mesterklasser!",
+ "levelup": "Ved at opnå dine mål fra den virkelige verden er du steget i niveau, og er nu fuldt helet igen!",
+ "reachedLevel": "Du har nået niveau <%= level %>",
+ "achievementLostMasterclasser": "Quest-knuser: Mesterklasse-serien",
+ "achievementLostMasterclasserText": "Færdiggjorde alle 16 quests i Mesterklasse-questrækken, og løste mysteriet om den Forsvundne Mesterklasser!",
+ "achievementLostMasterclasserModalText": "Du har klaret alle seksten quests i Mesterklasse-serien og løst mysteriet om den Forsvundne Mesterklasser!",
"achievementMindOverMatterText": "Har fuldført sten-, slim- og garn-kæledyrsquests.",
"achievementMindOverMatterModalText": "Du har klaret sten-, slim-, og garn-kæledyrsquestene!",
"achievementJustAddWater": "Tilføj kun vand",
"achievementJustAddWaterText": "Har klaret blæksprutte-, søheste-, tiarmet blæksprutte-, hval-, skildpadde-, nøgensnegle-, søslange- og delfin-kæledyrsquestene.",
"achievementJustAddWaterModalText": "Du har klaret blæksprutte-, søheste-, tiarmet blæksprutte-, hval-, skildpadde-, nøgensnegle-, søslange- og delfin-kæledyrsquestene!",
"achievementBackToBasics": "Almindeligt udbredt",
- "achievementBackToBasicsText": "Har samlet alle Almindelige kæledyr.",
- "achievementBackToBasicsModalText": "Du har samlet alle Almindelige kæledyr!",
+ "achievementBackToBasicsText": "Har samlet alle almindelige kæledyr.",
+ "achievementBackToBasicsModalText": "Du har samlet alle almindelige kæledyr!",
"achievementAllYourBase": "Alle almindelige",
- "achievementAllYourBaseText": "Har tæmmet alle Almindelige ridedyr.",
- "achievementAllYourBaseModalText": "Du har tæmmet alle Almindelige ridedyr!",
- "achievementMonsterMagusModalText": "Du har samlet all zombie dyr!",
- "achievementMonsterMagusText": "Har samlet all zombie dyr.",
- "achievementPartyOn": "Dit hold vokset til 4 medlemmer!",
- "achievementAridAuthorityModalText": "Du har tæmmet all ørken dyr!",
- "achievementAridAuthorityText": "Har tæmmet all ørken dyr.",
- "achievementDustDevilModalText": "Du har samlet alle ørken dyr!",
- "achievementDustDevilText": "Har samlet alle ørken dyr.",
- "achievementDustDevil": "Støv djævel",
- "achievementMindOverMatter": "Hvor der er vilje..."
+ "achievementAllYourBaseText": "Har tæmmet alle almindelige ridedyr.",
+ "achievementAllYourBaseModalText": "Du har tæmmet alle almindelige ridedyr!",
+ "achievementMonsterMagusModalText": "Du har samlet all zombiekæledyr!",
+ "achievementMonsterMagusText": "Har samlet all zombiekæledyr.",
+ "achievementPartyOn": "Dit hold voksede til 4 medlemmer!",
+ "achievementAridAuthorityModalText": "Du har tæmmet all ørkenridedyr!",
+ "achievementAridAuthorityText": "Har tæmmet all ørkenridedyr.",
+ "achievementDustDevilModalText": "Du har samlet alle ørkenkæledyr!",
+ "achievementDustDevilText": "Har samlet alle ørkenkæledyr.",
+ "achievementDustDevil": "Støvdjævel",
+ "achievementMindOverMatter": "Stof til eftertanke",
+ "achievementPearlyProModalText": "Du har tæmmet alle de hvide ridedyr!",
+ "achievementPearlyProText": "Har tæmmet alle hvide ridedyr.",
+ "achievementPearlyPro": "Perleskinnende prof",
+ "achievementPrimedForPaintingModalText": "Du har samlet alle de hvide kæledyr!",
+ "achievementPrimedForPaintingText": "Har samlet all hvide kæledyr.",
+ "achievementPrimedForPainting": "Grundmalet gruppe",
+ "achievementPurchasedEquipmentModalText": "Udstyr er en måde at tilpasse din avatar og forbedre dine egenskaber",
+ "achievementPurchasedEquipmentText": "Købte deres første stykke udstyr.",
+ "achievementPurchasedEquipment": "Køb udstyr",
+ "achievementFedPetModalText": "Der er mange forskellige slags mad, men kæledyr kan være kræsne",
+ "achievementFedPetText": "Fodrede deres første kæledyr.",
+ "achievementFedPet": "Giv et kæledyr mad",
+ "achievementHatchedPetModalText": "Kig i dit inventar, og prøv at kombinere en udrugningseliksir og et æg",
+ "achievementHatchedPetText": "Udklækkede deres første kæledyr.",
+ "achievementHatchedPet": "Udklæk et kæledyr",
+ "achievementCompletedTaskModalText": "Marker enhver af dine opgaver som færdig for at få belønninger",
+ "achievementCompletedTaskText": "Udførte deres første opgave.",
+ "achievementCompletedTask": "Udfør en opgave",
+ "achievementCreatedTaskModalText": "Tilføj en opgave for noget, du gerne vil gøre i denne uge",
+ "achievementCreatedTaskText": "Oprettede deres første opgave.",
+ "achievementCreatedTask": "Opret en opgave",
+ "achievementUndeadUndertakerModalText": "Du har tæmmet alle zombieridedyr!",
+ "achievementUndeadUndertakerText": "Har tæmmet alle zombieridedyr.",
+ "achievementUndeadUndertaker": "Udød yndling",
+ "achievementMonsterMagus": "Monstrøs magiker",
+ "achievementKickstarter2019Text": "Sponsorerede Kickstarterprojektet for badges i 2019",
+ "achievementKickstarter2019": "Pin Kickstarter sponsor",
+ "achievementAridAuthority": "Knastør ekspert",
+ "achievementPartyUp": "Du dannede hold med en anden bruger!",
+ "hideAchievements": "Skjul <%= category %>",
+ "showAllAchievements": "Vis alle <%= category %>",
+ "onboardingCompleteDesc": "Du opnåede
5 præstationer og
100 guld for at færdiggøre listen.",
+ "earnedAchievement": "Du opnåede en præstation!",
+ "viewAchievements": "Se præstationer",
+ "letsGetStarted": "Lad os komme i gang!",
+ "onboardingProgress": "<%= percentage %>% fremskridt",
+ "gettingStartedDesc": "Lad os lave en opgave, udføre den, og så se på din belønning. You vil få
5 præstationer og
100 guld, når du er færdig!"
}
diff --git a/website/common/locales/da/defaulttasks.json b/website/common/locales/da/defaulttasks.json
index a772da9c9a..fc84996fdb 100644
--- a/website/common/locales/da/defaulttasks.json
+++ b/website/common/locales/da/defaulttasks.json
@@ -1,13 +1,13 @@
{
"defaultHabit1Text": "Produktivt arbejde (Klik på blyanten for at redigere)",
- "defaultHabit1Notes": "Eksempler på Gode Vaner: +Spist en grønsag +15 minutters produktivt arbejde",
+ "defaultHabit1Notes": "Eksempler på gode vaner: + Spis en grønsag + 15 minutters produktivt arbejde",
"defaultHabit2Text": "Spis junk food (Klik på blyanten for at redigere)",
- "defaultHabit2Notes": "Eksempler på Dårlige Vaner: -Ryge -Overspringshandling",
- "defaultHabit3Text": "Tag trapperne/elevator (Klik på blyanten for at redigere)",
- "defaultHabit3Notes": "Eksempel på God eller Dårlig Vane: +/- Tog Trapperne/Elevatoren; +/- Drak Vand/Sodavand",
+ "defaultHabit2Notes": "Eksempler på dårlige vaner: - Rygning - Lav overspringshandlinger",
+ "defaultHabit3Text": "Tag trapperne/elevatoren (Klik på blyanten for at redigere)",
+ "defaultHabit3Notes": "Eksempel på en god eller dårlig vane: +/- Tog trapperne/elevatoren; +/- Drak vand/sodavand",
"defaultHabit4Text": "Tilføj en opgave til Habitica",
"defaultHabit4Notes": "Enten en Vane, en Daglig eller en To-Do",
- "defaultHabit5Text": "Tryk her for at gøre dette til en dårlig vane du gerne vil af med",
+ "defaultHabit5Text": "Tryk her, for at gøre dette til en dårlig vane, du gerne vil af med",
"defaultHabit5Notes": "Eller slet fra redigeringsskærmen",
"defaultDaily1Text": "Brug Habitica til at holde styr på dine opgaver",
"defaultTodo1Text": "Start med at spille Habitica (Markér mig som færdig!)",
@@ -25,4 +25,4 @@
"defaultTag5": "Teams",
"defaultTag6": "Pligter",
"defaultTag7": "Kreativitet"
-}
\ No newline at end of file
+}
diff --git a/website/common/locales/da/settings.json b/website/common/locales/da/settings.json
index 4a55e9d739..b0ae8b114e 100644
--- a/website/common/locales/da/settings.json
+++ b/website/common/locales/da/settings.json
@@ -140,59 +140,59 @@
"subscriptionRateText": "Løbende $<%= price %> USD hver <%= months %>. måned",
"recurringText": "løbende",
"benefits": "Fordele",
- "coupon": "Kupon",
- "couponPlaceholder": "Indtast Kuponkode",
- "couponText": "Nogle gange har vi events og giver kuponkoder til specielt udstyr. (f.eks. til dem, der svinger forbi vores stand på Wondercon)",
+ "coupon": "Rabat",
+ "couponPlaceholder": "Indtast rabatkode",
+ "couponText": "Nogle gange har vi events og giver rabatkoder til specielt udstyr (f.eks. til dem, der svinger indenom vores stand på Wondercon).",
"apply": "Udfør",
"resubscribe": "Genabonnér",
"promoCode": "Promo-kode",
- "promoCodeApplied": "Promo-kode anvendt. Tjek dit inventar",
- "promoPlaceholder": "Indtast Promo-kode",
+ "promoCodeApplied": "Promo-kode accepteret! Tjek dit inventar",
+ "promoPlaceholder": "Indtast promo-kode",
"displayInviteToPartyWhenPartyIs1": "Vis Invitér til Hold-knap når holdet har 1 medlem.",
- "saveCustomDayStart": "Gem Brugerdefineret Dagstart",
+ "saveCustomDayStart": "Gem brugerdefineret starttidspunkt",
"registration": "Registrering",
"addLocalAuth": "Tilføj login med email og kodeord",
- "generateCodes": "Generér Koder",
+ "generateCodes": "Generér koder",
"generate": "Generér",
- "getCodes": "Hent Koder",
+ "getCodes": "Hent koder",
"webhooks": "Webhooks",
- "webhooksInfo": "Habitica tilbyder webhooks, så information kan blive sendt til et script på en anden hjemmeside, når der sker bestemte ting med din konto. Du kan specificere disse scripts her. Vær forsigtig med denne funktion. En forkert URL kan forårsage fejl eller gøre Habitica langsomt. Se wiki-siden
Webhooks for mere information (engelsk).",
+ "webhooksInfo": "Habitica tilbyder webhooks, så information kan blive sendt til et script på en anden hjemmeside, når der sker bestemte ting med din konto. Du kan specificere disse scripts her. Vær forsigtig med denne funktion. En forkert URL kan forårsage fejl eller gøre Habitica langsom. Se wiki-siden
Webhooks (EN) for mere information.",
"enabled": "Aktiveret",
"webhookURL": "Webhook URL",
"invalidUrl": "ugyldig url",
- "invalidEnabled": "Parametren \"aktiveret\" skal være en boolesk værdi.",
- "invalidWebhookId": "Parametren \"id\" skal være et gyldigt Unikt Bruger-ID.",
- "missingWebhookId": "Webhook-id påkrævet.",
- "invalidWebhookType": "\"<%= type %>\" er ikke en gyldig værdi for parametren \"type\".",
+ "invalidEnabled": "Parametret \"aktiveret\" skal være en boolesk værdi.",
+ "invalidWebhookId": "Parametret \"id\" skal være et gyldigt unikt bruger-ID.",
+ "missingWebhookId": "Webhook-ID påkrævet.",
+ "invalidWebhookType": "\"<%= type %>\" er ikke en gyldig værdi for parametret \"type\".",
"webhookBooleanOption": "\"<%= option %>\" skal være en boolesk værdi.",
- "webhookIdAlreadyTaken": "En webhook med id'et <%= id %> findes allerede.",
- "noWebhookWithId": "Der er ingen webhook med id'et <%= id %>.",
- "regIdRequired": "RegId påkrævet",
- "invalidPushClient": "Ugyldig klient. Kun officielle Habitica-klienter kan modtage push notifikationer.",
+ "webhookIdAlreadyTaken": "En webhook med ID'et <%= id %> findes allerede.",
+ "noWebhookWithId": "Der er ingen webhook med ID'et <%= id %>.",
+ "regIdRequired": "RegID påkrævet",
+ "invalidPushClient": "Ugyldig klient. Kun officielle Habitica-klienter kan modtage pushnotifikationer.",
"pushDeviceAdded": "Push-enhed tilføjet",
"pushDeviceAlreadyAdded": "Denne bruger har allerede push-enheden",
"pushDeviceNotFound": "Brugeren har ingen push-enhed med dette ID.",
"pushDeviceRemoved": "Push-enhed fjernet.",
"buyGemsGoldCap": "Maksimum hævet til <%= amount %>",
- "mysticHourglass": "<%= amount %> Mystiske Timeglas",
- "mysticHourglassText": "Mystiske Timeglas giver dig adgang til at købe tidligere måneders Mystiske Gendstande-sæt.",
+ "mysticHourglass": "<%= amount %> mystiske timeglas",
+ "mysticHourglassText": "Mystiske timeglas giver dig adgang til at købe mystiske sæt fra tidligere måneder.",
"purchasedPlanId": "Løbende $<%= price %> USD hver <%= months %>. måned (<%= plan %>)",
"purchasedPlanExtraMonths": "Du har <%= months %> måneders overskydende abonnementkredit.",
- "consecutiveSubscription": "Fortløbende Abonnement",
- "consecutiveMonths": "Fortløbende Måneder:",
- "gemCapExtra": "Ekstra Ædelstensmaksimum:",
- "mysticHourglasses": "Mystiske Timeglas:",
+ "consecutiveSubscription": "Fortløbende abonnement",
+ "consecutiveMonths": "Fortløbende måneder:",
+ "gemCapExtra": "Ekstra ædelstensmaksimum:",
+ "mysticHourglasses": "Mystiske timeglas:",
"mysticHourglassesTooltip": "Mystiske timeglas",
"paypal": "PayPal",
"amazonPayments": "Amazon Payments",
- "amazonPaymentsRecurring": "Det er nødvendigt at sætte hak i boksen nedenunder for at oprette dit abonnement. Det vil tillade at din Amazonkonto kan bruges til gentagne betalinger for
dette abonnement. Det vil ikke få til Amazonkonto til at blive brugt automatisk ved fremtidige køb.",
+ "amazonPaymentsRecurring": "Det er nødvendigt at sætte hak i boksen nedenunder for at oprette dit abonnement. Det vil tillade, at din Amazonkonto kan bruges til gentagne betalinger for
dette abonnement. Det vil ikke forårsage, at din Amazonkonto bliver brugt automatisk ved fremtidige køb.",
"timezone": "Tidszone",
- "timezoneUTC": "Habitica bruger tidszonen sat på din PC, som er:
<%= utc %>",
- "timezoneInfo": "Hvis tidszonen er forkert, kan du først genindlæse denne side ved hjælp af din browsers knap til genindlæsning for at give Habitica de mest opdaterede informationer. Hvis den stadig er forkert, kan du justere din tidszone på din PC og derefter genindlæse siden igen.
Hvis du bruger Habitica på andre PC'er eller mobile enheder, skal tidszonen være den samme på dem alle. Hvis dine Daglige er blevet nulstellet på det forkerte tidspunkt. kan du gentage denne gennemgang på alle andre PC'er og i en browser på dine mobile enheder.",
+ "timezoneUTC": "Habitica bruger tidszonen fra din PC, som er:
<%= utc %>",
+ "timezoneInfo": "Hvis tidszonen er forkert, kan du først genindlæse denne side, ved hjælp af din browsers knap til genindlæsning, for at give Habitica de mest opdaterede informationer. Hvis den stadig er forkert, kan du justere din tidszone på din PC, og derefter genindlæse siden igen.
Hvis du bruger Habitica på andre PC'er eller mobile enheder, skal tidszonen være den samme på dem alle. Hvis dine Daglige er blevet nulstillet på det forkerte tidspunkt. så gentag venligst denne gennemgang af alle PC'er og i en browser på alle mobile enheder.",
"push": "Push",
"about": "Om Habitica",
"setUsernameNotificationTitle": "Bekræft dit brugernavn!",
- "setUsernameNotificationBody": "Vi vil skifte loginnavne til unikke, offentlige brugernavne snart. Dette brugernavn vil blive brugt til invitationer, @tags i chat og beskeder.",
+ "setUsernameNotificationBody": "Vi ændrer snart loginnavne til unikke, offentlige brugernavne. Dette brugernavn vil blive brugt til invitationer, @tags i chat og beskeder.",
"usernameIssueSlur": "Brugernavne må ikke indeholde upassende sprogbrug.",
"usernameIssueForbidden": "Brugernavne må ikke indeholde blokerede ord.",
"usernameIssueLength": "Brugernavne skal være mellem 1 og 20 tegn.",
@@ -200,9 +200,13 @@
"currentUsername": "Nuværende brugernavn:",
"displaynameIssueLength": "Displaynavne skal indeholde mellem 1 og 30 tegn.",
"displaynameIssueSlur": "Displaynavne må ikke indeholde upassende sprogbrug.",
- "goToSettings": "Gå til Indstillinger",
+ "goToSettings": "Gå til indstillinger",
"usernameVerifiedConfirmation": "Dit brugernavn, <%= username %>, er blevet bekræftet!",
"usernameNotVerified": "Bekræft venligst dit brugernavn.",
- "changeUsernameDisclaimer": "Vi vil lave loginnavne om til unikke, offentlige brugernavne snart. Dette brugernavn vil blive brugt til invitationer, @tags i chat og beskeder.",
- "verifyUsernameVeteranPet": "Et af disse Veterankæledyr venter på dig når du er færdig med at bekræfte!"
+ "changeUsernameDisclaimer": "Dette brugernavn vil blive brugt til invitationer, @tags i chat og beskeder.",
+ "verifyUsernameVeteranPet": "Et af disse veterankæledyr venter på dig, når du er færdig med at bekræfte!",
+ "onlyPrivateSpaces": "Kun i private rum",
+ "everywhere": "Alle steder",
+ "suggestMyUsername": "Foreslå mit brugernavn",
+ "mentioning": "Tagging"
}
diff --git a/website/common/locales/de/achievements.json b/website/common/locales/de/achievements.json
index e8a3a9f322..528b2ac82b 100644
--- a/website/common/locales/de/achievements.json
+++ b/website/common/locales/de/achievements.json
@@ -2,7 +2,7 @@
"achievement": "Erfolg",
"share": "Teilen",
"onwards": "Auf geht's!",
- "levelup": "Durch das Erfüllen Deiner Ziele im Leben bist Du ein Level aufgestiegen und wurdest vollständig geheilt!",
+ "levelup": "Durch das Erfüllen Deiner Ziele im realen Leben bist Du ein Level aufgestiegen und wurdest vollständig geheilt!",
"reachedLevel": "Du hast Level <%= level %> erreicht",
"achievementLostMasterclasser": "Quest-Erfüller: Klassenmeister-Reihe",
"achievementLostMasterclasserText": "Hat alle sechzehn Quests in der Klassenmeister-Questreihe abgeschlossen und das Rätsel des Verschwundenen Klassenmeisters gelöst!",
@@ -40,5 +40,28 @@
"achievementPrimedForPaintingText": "Hat alle weißen Haustiere gesammelt.",
"achievementPearlyProText": "Hat alle weißen Reittiere gezähmt.",
"achievementPearlyPro": "Perlweiß-Profi",
- "achievementPrimedForPainting": "Grundierung gemalt"
+ "achievementPrimedForPainting": "Grundierung gemalt",
+ "achievementCreatedTask": "Erstelle eine Aufgabe",
+ "onboardingCompleteDesc": "Du hast durch das Abschließen der Liste
5 Erfolge freigeschaltet und
100 Goldstücke verdient.",
+ "earnedAchievement": "Du hast einen Erfolg freigeschaltet!",
+ "achievementPurchasedEquipmentModalText": "Durch Ausrüstung kann Dein Avatar personalisiert und die Attributswerte erhöht werden",
+ "achievementPurchasedEquipment": "Erwerbe Ausrüstung",
+ "achievementFedPetModalText": "Es gibt viele verschiedene Arten an Futter, aber Haustiere können wählerisch sein",
+ "achievementFedPet": "Füttere ein Haustier",
+ "achievementHatchedPet": "Schlüpfe ein Haustier",
+ "hideAchievements": "<%= category %> ausblenden",
+ "showAllAchievements": "Alle <%= category %> anzeigen",
+ "viewAchievements": "Erfolge ansehen",
+ "letsGetStarted": "Los geht's!",
+ "onboardingProgress": "<%= percentage %>% Fortschritt",
+ "gettingStartedDesc": "Erstelle eine Aufgabe, schließe sie ab und prüfe dann Deine Belohnungen. Du schaltest
5 Erfolge frei und erhältst
100 Goldstücke, sobald Du fertig bist!",
+ "achievementCreatedTaskModalText": "Füge eine Aufgabe hinzu, für etwas, das Du diese Woche erreichen willst",
+ "achievementPurchasedEquipmentText": "Hat den ersten Rüstungsgegenstand gekauft.",
+ "achievementFedPetText": "Hat das erste Haustier gefüttert.",
+ "achievementHatchedPetModalText": "Schau in Dein Inventar und versuche ein Schlüpfelixier mit einem Ei zu kombinieren",
+ "achievementHatchedPetText": "Hat das erste Haustier geschlüpft.",
+ "achievementCompletedTaskModalText": "Hake Deine Aufgaben ab, um Belohnungen zu verdienen",
+ "achievementCompletedTaskText": "Hat die erste Aufgabe erledigt.",
+ "achievementCompletedTask": "Erledige eine Aufgabe",
+ "achievementCreatedTaskText": "Hat die erste Aufgabe erstellt."
}
diff --git a/website/common/locales/de/backgrounds.json b/website/common/locales/de/backgrounds.json
index 81efc53bfd..15a7215cda 100644
--- a/website/common/locales/de/backgrounds.json
+++ b/website/common/locales/de/backgrounds.json
@@ -485,5 +485,12 @@
"backgroundHolidayWreathText": "Adventskranz",
"backgroundHolidayMarketNotes": "Finde die perfekten Geschenke und Dekorationsartikel auf einem Weihnachtsmarkt.",
"backgroundHolidayMarketText": "Weihnachtsmarkt",
- "backgrounds122019": "SET 67: Veröffentlicht im Dezember 2019"
+ "backgrounds122019": "Set 67: Veröffentlicht im Dezember 2019",
+ "backgroundSnowglobeNotes": "Schüttele eine Schneekugel und nimm Deinen Platz im Mikrokosmos einer Winterlandschaft ein.",
+ "backgroundSnowglobeText": "Schneekugel",
+ "backgroundDesertWithSnowNotes": "Erlebe die rare und stille Schönheit einer Verschneiten Wüste.",
+ "backgroundDesertWithSnowText": "Verschneite Wüste",
+ "backgroundBirthdayPartyNotes": "Feiere den Geburtstag Deines Lieblingsmitmenschen in Habitica.",
+ "backgroundBirthdayPartyText": "Geburtstagsfeier",
+ "backgrounds012020": "Set 68: Veröffentlicht im Januar 2020"
}
diff --git a/website/common/locales/de/content.json b/website/common/locales/de/content.json
index c37d0113a7..32a8a5a451 100644
--- a/website/common/locales/de/content.json
+++ b/website/common/locales/de/content.json
@@ -352,5 +352,6 @@
"questEggRobotText": "Roboter-Haustier",
"hatchingPotionShadow": "Schatten",
"premiumPotionUnlimitedNotes": "Nicht auf Eier von Quest-Haustieren anwendbar.",
- "hatchingPotionAmber": "Bernstein"
+ "hatchingPotionAmber": "Bernstein",
+ "hatchingPotionAurora": "Polarlicht"
}
diff --git a/website/common/locales/de/front.json b/website/common/locales/de/front.json
index 3ff1ed7eef..a3c32ab7e4 100644
--- a/website/common/locales/de/front.json
+++ b/website/common/locales/de/front.json
@@ -331,5 +331,6 @@
"getStarted": "Auf gehts!",
"mobileApps": "Mobile Apps",
"learnMore": "Mehr erfahren",
- "communityInstagram": "Instagram"
+ "communityInstagram": "Instagram",
+ "minPasswordLength": "Das Passwort muss mindestens 8 Zeichen haben."
}
diff --git a/website/common/locales/de/gear.json b/website/common/locales/de/gear.json
index f84e7f8220..c07a3e9fa0 100644
--- a/website/common/locales/de/gear.json
+++ b/website/common/locales/de/gear.json
@@ -1978,10 +1978,52 @@
"headMystery201911Notes": "Jede Kristallspitze an diesem Hut verleiht Dir eine besondere Kraft: mystisches Hellsehen, arkane Weisheit und... hexerisches Tellerdrehen? Na dann... Gewährt keinen Attributbonus. Abonnentengegenstand, November 2019.",
"backMystery201912Notes": "Gleite leise über glänzende Schneefelder und schimmernde Berge mit diesen eisigen Flügeln. Gewährt keinen Attributbonus. Abonnentengegenstand, Dezember 2019.",
"backMystery201912Text": "Frostige Feenflügel",
- "headMystery201912Notes": "Diese glitzernde Schneeflocke verleiht Dir Resistenz gegen die beißende Kälte, unabhängig davon wie hoch Du fliegst! Gewährt keinen Attributbonus. Abonnentengegenstand, Dezember 2019.",
- "headMystery201912Text": "Frostige Feenkrone",
+ "headMystery201912Notes": "Diese glitzernde Schneeflocke verleiht Dir Widerstandfähigkeit gegen die beißende Kälte, unabhängig davon wie hoch Du fliegst! Gewährt keinen Attributbonus. Abonnentengegenstand, Dezember 2019.",
+ "headMystery201912Text": "Polar-Pixiekrone",
"headArmoireEarflapHatText": "Uschanka",
"armorArmoireDuffleCoatNotes": "Reise stilsicher durch eisige Gefilde mit diesem lauschigen Wollmantel. Erhöht Ausdauer und Wahrnehmung um jeweils <%= attrs %>. Verzauberter Schrank: Düffelmantel-Set (Gegenstand 1 von 2).",
"armorArmoireDuffleCoatText": "Düffelmantel",
- "headArmoireEarflapHatNotes": "Wenn Du etwas suchst, um Deinen Kopf wohlig warm zu halten, ist dieser Hut genau Dein Ding! Erhöht Intelligenz und Stärke um je <%= attrs %>. Verzauberter Schrank: Düffelmantel-Set (Gegenstand 2 von 2)."
+ "headArmoireEarflapHatNotes": "Wenn Du etwas suchst, um Deinen Kopf wohlig warm zu halten, ist dieser Hut genau Dein Ding! Erhöht Intelligenz und Stärke um je <%= attrs %>. Verzauberter Schrank: Düffelmantel-Set (Gegenstand 2 von 2).",
+ "shieldSpecialWinter2020HealerText": "Gigantische Zimtstange",
+ "shieldSpecialWinter2020WarriorText": "Zirkulärer Tannenzapfen",
+ "headSpecialWinter2020HealerText": "Sternanisabzeichen",
+ "headSpecialWinter2020MageText": "Glockenkrone",
+ "armorSpecialWinter2020HealerText": "Orangenschalenumhang",
+ "armorSpecialWinter2020WarriorNotes": "Oh mächtige Kiefer, oh überragende Tanne, leiht mir eure Kraft. Oder besser gesagt, eure Ausdauer! Erhöht Ausdauer um <%= con %>. Limitierte Ausgabe 2019-2020 Winterausrüstung.",
+ "armorSpecialWinter2020WarriorText": "Borkenrüstung",
+ "armorSpecialWinter2020RogueText": "Puscheliger Parka",
+ "weaponSpecialWinter2020HealerNotes": "Schwinge es und sein Aroma wird Deine Freunde und Helfer herbeirufen, um mit dem Kochen und Backen zu beginnen! Erhöht Intelligenz um <%= int %>. Limitierte Ausgabe 2019-2020 Winterausrüstung.",
+ "weaponSpecialWinter2020HealerText": "Gewürznelkenzepter",
+ "weaponSpecialWinter2020MageNotes": "Mit etwas Übung, kannst Du diese akustische Magie in jeder gewünschten Frequenz generieren: ein meditatives Summen, ein festliches Läuten oder ein ROTE AUFGABE ÜBERFÄLLIG-ALARM. Erhöht Intelligenz um <%= int %> und Wahrnehmung um <%= per %>. Limitierte Ausgabe 2019-2020 Winterausrüstung.",
+ "weaponSpecialWinter2020MageText": "Ringelige Schallwellen",
+ "weaponSpecialWinter2020WarriorNotes": "Zurück, Eichhörnchen! Ihr bekommt kein einziges Stück davon! ...Aber wenn Ihr alle bei einer Tasse Kakao abhängen wollt, geht das klar. Erhöht Stärke um <%= str %>. Limitierte Ausgabe 2019-2020 Winterausrüstung.",
+ "weaponSpecialWinter2020WarriorText": "Zackiger Tannenzapfen",
+ "weaponSpecialWinter2020RogueNotes": "Dunkelheit ist des Schurken Element. Wer eigne sich da besser, den Weg zu leuchten in der dunkelsten Jahreszeit? Erhöht Stärke um <%= str %>. Limitierte Ausgabe 2019-2020 Winterausrüstung.",
+ "weaponSpecialWinter2020RogueText": "Laternenstab",
+ "shieldSpecialWinter2020HealerNotes": "Hast Du das Gefühl, Du seist zu gut für diese Welt, zu unverfälscht? Nur diese Schönheit unter den Gewürzen ist Deiner würdig. Erhöht Ausdauer um <%= con %>. Limitierte Ausgabe 2019-2020 Winterausrüstung.",
+ "headSpecialWinter2020HealerNotes": "Bitte nimm es ab, bevor Du versuchst damit einen Chai oder Kaffee aufzubrühen. Erhöht Intelligenz um <%= int %>. Limitierte Ausgabe 2019-2020 Winterausrüstung.",
+ "headSpecialWinter2020MageNotes": "Oh! Süßer die Glocken nie klingen / als zu der Weihnachtszeit, / ’s ist, als ob Engelein singen, / \"Wende 'Flammenstoß' an\". Erhöht Wahrnehmung um <%= per %>. Limitierte Ausgabe 2019-2020 Winterausrüstung.",
+ "headSpecialWinter2020WarriorNotes": "Ein stechendes Gefühl auf Deinem Kopf ist ein kleiner Preis für saisonale Pracht. Erhöht Stärke um <%= str %>. Limitierte Ausgabe 2019-202 Winterausrüstung.",
+ "headSpecialWinter2020WarriorText": "Schneegekrönter Kopfschmuck",
+ "headSpecialWinter2020RogueNotes": "Ein Schurke geht in dieser Mütze die Straße entlang, die Leute wissen, so jemand fürchtet nichts. Erhöht Wahrnehmung um <%= per %>. Limitierte Ausgabe 2019-2020 Winterausrüstung.",
+ "headSpecialWinter2020RogueText": "Flauschige Bommelmütze",
+ "armorSpecialWinter2020HealerNotes": "Ein opulenter Umhang für jene, mit festlichem Geschmack! Erhöht Ausdauer um <%= con %>. Limitierte Ausgabe 2019-2020 Winterausrüstung.",
+ "armorSpecialWinter2020MageText": "Rundliche Robe",
+ "armorSpecialWinter2020RogueNotes": "Es besteht kein Zweifel, dass Du Stürmen mit der inneren Wärme Deines Elans und Deiner Hingabe trotzen kannst, aber es kann nicht schaden, sich dem Wetter entsprechend anzuziehen. Erhöht Wahrnehmung um <%= per %>. Limitierte Ausgabe 2019-2020 Winterausrüstung.",
+ "backMystery202001Notes": "Diese fluffigen Schwänze tragen himmlische Kräfte in sich, und ein ebenso hohes Niveau an Niedlichkeit! Gewährt keinen Attributbonus. Abonnentengegenstand, Januar 2020.",
+ "backMystery202001Text": "Fünf fabelhafte Schwänze",
+ "shieldSpecialWinter2020WarriorNotes": "Benutze ihn als Schild bis die Samen herunterfallen, und dann kannst Du ihn auf einen Kranz binden! Erhöht Ausdauer um <%= con %>. Limitierte Ausgabe 2019-2020 Winterausrüstung.",
+ "headMystery202001Notes": "Du bekommt ein so scharfes Gehör, dass Du hören kannst, wie die Sterne funkeln und der Mond sich dreht. Gewährt keinen Attributbonus. Abonnentengegenstand, Januar 2020.",
+ "headMystery202001Text": "Fabelhafte Fuchsohren",
+ "headSpecialNye2019Notes": "Du hast einen Frevelhaften Fetenhut erhalten! Trage ihn mit Stolz während Du das neue Jahr einläutest! Gewährt keinen Attributbonus.",
+ "headSpecialNye2019Text": "Frevelhafter Fetenhut",
+ "armorSpecialWinter2020MageNotes": "Läute das neue Jahr in dieser warmen, gemütlichen Robe ein, die Dich gegen übermässige Erschütterungen puffert. Erhöht Intelligenz um <%= int %>. Limitierte Ausgabe 2019-2020 Winterausrüstung.",
+ "shieldArmoireBirthdayBannerNotes": "Feiere Deinen besonderen Tag, den besonderen Tag von jemandem, den Du liebst, oder trage es zum Geburtstag von Habitica am 31. Januar! Erhöht Stärke um <%= str %>. Verzauberter Schrank: Herzlichen Glückwunsch zum Geburtstag-Set (Gegenstand 4 von 4).",
+ "shieldArmoireBirthdayBannerText": "Geburtstagsgösch",
+ "headArmoireFrostedHelmNotes": "Der perfekte Kopfschutz für jede Feier! Erhöht Intelligenz um <%= int %>. Verzauberter Schrank: Herzlichen Glückwunsch zum Geburtstag-Set (Gegenstand 1 von 4).",
+ "headArmoireFrostedHelmText": "Glasierter Helm",
+ "armorArmoireLayerCakeArmorNotes": "Sie ist schützend und lecker! Erhöht Ausdauer um <%= con %>. Verzauberter Schrank: Herzlichen Glückwunsch zum Geburtstag-Set (Gegenstand 2 von 4).",
+ "armorArmoireLayerCakeArmorText": "Schichttortenrüstung",
+ "weaponArmoireHappyBannerNotes": "Steht das \"H\" für Herzlich oder für Habitica? Entscheide selbst! Erhöht Wahrnehmung um <%= per %>. Verzauberter Schrank: Herzlichen Glückwunsch zum Geburtstag-Set (Gegenstand 3 von 4).",
+ "weaponArmoireHappyBannerText": "Herzliche Gösch"
}
diff --git a/website/common/locales/de/generic.json b/website/common/locales/de/generic.json
index 99438bf341..d927269783 100644
--- a/website/common/locales/de/generic.json
+++ b/website/common/locales/de/generic.json
@@ -3,7 +3,7 @@
"stringNotFound": "String '<%= string %>' nicht gefunden.",
"titleIndex": "Habitica | Dein Leben, das Rollenspiel",
"habitica": "Habitica",
- "habiticaLink": "
Habitica",
+ "habiticaLink": "
Habitica",
"onward": "Vorwärts!",
"done": "Erledigt",
"gotIt": "Verstanden!",
@@ -294,5 +294,7 @@
"options": "Optionen",
"loadEarlierMessages": "Lade ältere Nachrichten",
"demo": "Demo",
- "finish": "Abschliessen"
+ "finish": "Abschliessen",
+ "congratulations": "Gratulation!",
+ "onboardingAchievs": "Einstiegserfolge"
}
diff --git a/website/common/locales/de/limited.json b/website/common/locales/de/limited.json
index d1f97fc6ca..7e7e23242f 100644
--- a/website/common/locales/de/limited.json
+++ b/website/common/locales/de/limited.json
@@ -147,7 +147,7 @@
"dateEndJanuary": "31. Januar",
"dateEndFebruary": "28. Februar",
"winterPromoGiftHeader": "Verschenke ein Abonnement und bekomme eins umsonst!",
- "winterPromoGiftDetails1": "Nur bis zum 15. Januar: wenn Du jemandem ein Abonnement schenkst, erhältst Du das gleiche Abonnement gratis für Dich!",
+ "winterPromoGiftDetails1": "Nur bis zum 6. Januar: wenn Du jemandem ein Abonnement schenkst, erhältst Du das gleiche Abonnement gratis für Dich!",
"winterPromoGiftDetails2": "Bitte bedenke, dass das geschenkte Abonnement, falls Du oder Deine beschenkte Person bereits über ein sich wiederholendes Abonnement verfügen, erst dann startet, wenn das alte Abonnement gekündigt wird oder ausläuft. Herzlichen Dank für Deine Unterstützung! <3",
"discountBundle": "Paket",
"g1g1Announcement": "Die \"Schenke ein Abo, bekomm ein Abo Gratis\" Aktion läuft jetzt!",
@@ -168,5 +168,10 @@
"fall2019RavenSet": "Rabe (Krieger)",
"fall2019CyclopsSet": "Zyklop (Magier)",
"fall2019OperaticSpecterSet": "Opernhaftes Gespenst (Schurke)",
- "augustYYYY": "August <%= year %>"
+ "augustYYYY": "August <%= year %>",
+ "winter2020LanternSet": "Laterne (Schurke)",
+ "winter2020WinterSpiceSet": "Wintergewürz (Heiler)",
+ "winter2020CarolOfTheMageSet": "Weihnachtslied des Magiers (Magier)",
+ "winter2020EvergreenSet": "Immergrün (Krieger)",
+ "decemberYYYY": "Dezember <%= year %>"
}
diff --git a/website/common/locales/de/npc.json b/website/common/locales/de/npc.json
index 22eed37a3c..0769142fa7 100644
--- a/website/common/locales/de/npc.json
+++ b/website/common/locales/de/npc.json
@@ -169,5 +169,6 @@
"imReady": "Betrete Habitica",
"limitedOffer": "Verfügbar bis <%= date %>",
"paymentAutoRenew": "Dieses Abonnement wird automatisch erneuert bis es gekündigt wird. Wenn Du dieses Abonnement kündigen musst, kannst Du dies in Deinen Einstellungen tun.",
- "paymentCanceledDisputes": "Wir haben eine Bestätigung der Kündigung an Deine E-Mailadresse gesendet. Falls Du die E-Mail nicht erhältst, kontaktiere uns bitte um zu verhindern, dass es zu Zahlungsstreitigkeiten kommt."
+ "paymentCanceledDisputes": "Wir haben eine Bestätigung der Kündigung an Deine E-Mailadresse gesendet. Falls Du die E-Mail nicht erhältst, kontaktiere uns bitte um zu verhindern, dass es zu Zahlungsstreitigkeiten kommt.",
+ "cannotUnpinItem": "Dieser Gegenstand kann nicht von der Pinnwand entfernt werden."
}
diff --git a/website/common/locales/de/questscontent.json b/website/common/locales/de/questscontent.json
index 080aefb9d7..fd820ae1a0 100644
--- a/website/common/locales/de/questscontent.json
+++ b/website/common/locales/de/questscontent.json
@@ -1,11 +1,11 @@
{
"questEvilSantaText": "Wildernder Weihnachtswichtel",
- "questEvilSantaNotes": "Tief im Eisfeld hörst Du gequältes Brüllen. Du folgst dem Knurren – unterstrichen von einem Schnattern – zu einer Waldlichtung, auf welcher Du eine ausgewachsene Polarbärin siehst. Sie kämpft um ihr Leben, gefesselt und eingesperrt. Oben auf dem Käfig tanzt ein bösartiger kleiner Kobold, der als Schiffbrüchiger verkleidet ist. Bezwinge den Wildernden Weihnachtswichtel und rette das Tier!",
+ "questEvilSantaNotes": "Tief im Eisfeld hörst Du gequältes Brüllen. Du folgst dem Knurren – unterstrichen von einem Schnattern – zu einer Waldlichtung, auf welcher Du eine ausgewachsene Polarbärin siehst. Sie kämpft um ihr Leben, gefesselt und eingesperrt. Oben auf dem Käfig tanzt ein bösartiger kleiner Kobold, der als Schiffbrüchiger verkleidet ist. Bezwinge den Wildernden Weihnachtswichtel und rette das Tier!
Hinweis: \"Wildernder Weihnachtswichtel\" gewährt einen stapelbaren Questerfolg, aber verleiht nur einmalig ein seltenes Reittier.",
"questEvilSantaCompletion": "Vor Wut kreischend springt der Wildernde Weihnachtswichtel in den dunklen Wald davon. Die Bärin versucht Dir mit Brüllen und Knurren etwas zu verstehen zu geben. Du nimmst sie mit zurück zu den Ställen, wo Matt Boch, der Bestienmeister, der Bärin zuhört. Mit Schrecken vernimmst Du, dass die Bärin ein Junges hat! Als sie gefangen genommen wurde, lief es in die Eissteppe davon.",
"questEvilSantaBoss": "Wildernder Weihnachtswichtel",
"questEvilSantaDropBearCubPolarMount": "Eisbär (Reittier)",
"questEvilSanta2Text": "Finde das Jungtier",
- "questEvilSanta2Notes": "Mama Bärs Jungtier ist geflohen, als sie vom Wildernden Weihnachtswichtel gefangen wurde. Du hörst Zweige knacken und Schneestapfen in der Tiefe des stillen Waldes. Pfotenabdrücke! Mama Bär und Du laufen los, um der Spur zu folgen. Finde alle Spuren und abgeknickten Zweige, um das Jungtier aufzuspüren!",
+ "questEvilSanta2Notes": "Mama Bärs Jungtier ist geflohen, als sie vom Wildernden Weihnachtswichtel gefangen wurde. Du hörst Zweige knacken und Schneestapfen in der Tiefe des stillen Waldes. Pfotenabdrücke! Mama Bär und Du laufen los, um der Spur zu folgen. Finde alle Spuren und abgeknickten Zweige, um das Jungtier aufzuspüren!
Hinweis: \"Finde das Jungtier\" gewährt einen stapelbaren Questerfolg, aber verleiht nur einmalig ein seltenes Haustier.",
"questEvilSanta2Completion": "Du hast das Jungtier gefunden! Es wird Dir für immer Gesellschaft leisten.",
"questEvilSanta2CollectTracks": "Spuren",
"questEvilSanta2CollectBranches": "Abgebrochene Zweige",
@@ -559,7 +559,7 @@
"questYarnDropYarnEgg": "Wollknäuel (Ei)",
"questYarnUnlockText": "Schaltet den Kauf von Wollknäueleiern auf dem Marktplatz frei",
"winterQuestsText": "\"Winter\" Quest-Paket",
- "winterQuestsNotes": "Beinhaltet 'Wildernder Weihnachtswichtel', 'Finde das Jungtier' und 'Der Federvieh-Frost'. Verfügbar bis zum 31. Dezember.",
+ "winterQuestsNotes": "Beinhaltet 'Wildernder Weihnachtswichtel', 'Finde das Jungtier' und 'Der Federvieh-Frost'. Verfügbar bis zum 31. Januar. Beachte, dass Wildernder Weihnachtswichtel und Finde das Jungtier stapelbare Questerfolge haben, aber nur einmalig ein seltenes Haus- und Reittier verleihen.",
"questPterodactylText": "Der Pterror-Dactylus",
"questPterodactylNotes": "Du machst einen Spaziergang entlang der friedlichen Stoïstillen Klippen, als ein böses Kreischen die Luft zerreißt. Du drehst Dich um, siehst eine schreckliche Kreatur auf Dich zufliegen und wirst von einem mächtigen Schrecken überwältigt. Als Du Dich zur Flucht wendest, packt Dich @Lilith of Alfheim. \"Keine Panik! Es ist nur ein Pterror-Dactylus.\"
@Procyon P nickt. \"Sie nisten in der Nähe, aber sie fühlen sich angezogen vom Geruch negativer Gewohnheiten und unerledigter Tagesaufgaben.\"
Keine Sorge\", sagt @Katy133. \"Wir müssen nur besonders produktiv sein, um ihn zu besiegen!\" Du bist erfüllt von einem erneuerten Sinn für Zielstrebigkeit und wendest Dich Deinem Feind zu.",
"questPterodactylCompletion": "Mit einem letzten Kreischen stürzt der Pterror-Dactylus über die Klippe. Du rennst nach vorn, um zu sehen, wie er über die entfernten Steppen hinwegfliegt. \"Puh, ich bin froh, dass das vorbei ist\", sagst Du. \"Ich auch\", antwortet @GeraldThePixel. \"Aber seht doch! Er hat ein paar Eier für uns zurückgelassen.\" @Edge gibt Dir drei Eier, und Du gelobst, sie in friedlicher Ruhe aufzuziehen, umgeben von positiven Gewohnheiten und blauen Tagesaufgaben.",
@@ -674,5 +674,6 @@
"questAmberText": "Der Bernstein-Bund",
"questAmberBoss": "Trerezin",
"questAmberUnlockText": "Schaltet den Kauf von Bernsteinfarbenen Schlüpfelixieren auf dem Marktplatz frei",
- "questAmberDropAmberPotion": "Bernsteinfarbenes Schlüpfelixier"
+ "questAmberDropAmberPotion": "Bernsteinfarbenes Schlüpfelixier",
+ "evilSantaAddlNotes": "Beachte, dass Wildernder Weihnachtswichtel und Finde das Jungtier stapelbare Questerfolge haben, aber nur einmalig ein seltenes Haus- und Reittier verleihen."
}
diff --git a/website/common/locales/de/subscriber.json b/website/common/locales/de/subscriber.json
index 16531c9bb4..8ac850ba9f 100644
--- a/website/common/locales/de/subscriber.json
+++ b/website/common/locales/de/subscriber.json
@@ -228,5 +228,6 @@
"mysterySet201909": "Einzigartiges Eichel-Set",
"mysterySet201910": "Rätselhaftes Flammenset",
"mysterySet201911": "Kristallzauberer-Set",
- "mysterySet201912": "Frostiges Feenset"
+ "mysterySet201912": "Frostiges Feenset",
+ "mysterySet202001": "Fabelhaftes Fuchsset"
}
diff --git a/website/common/locales/en/groups.json b/website/common/locales/en/groups.json
index 637a7fbb8a..8e788a6445 100644
--- a/website/common/locales/en/groups.json
+++ b/website/common/locales/en/groups.json
@@ -138,6 +138,7 @@
"PMPlaceholderDescription": "Select a conversation on the left",
"PMPlaceholderTitleRevoked": "Your chat privileges have been revoked",
"PMReceive": "Receive Private Messages",
+ "PMDisabled": "Disable 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",
@@ -151,6 +152,7 @@
"toUserIDRequired": "A User ID is required",
"gemAmountRequired": "A number of gems is required",
"notAuthorizedToSendMessageToThisUser": "You can't send a message to this player because they have chosen to block messages.",
+ "blockedToSendToThisUser": "You can't send to this player because you have blocked this player.",
"privateMessageGiftGemsMessage": "Hello <%= receiverName %>, <%= senderName %> has sent you <%= gemAmount %> gems!",
"privateMessageGiftSubscriptionMessage": "<%= numberOfMonths %> months of subscription! ",
"cannotSendGemsToYourself": "Cannot send gems to yourself. Try a subscription instead.",
diff --git a/website/common/locales/en/messages.json b/website/common/locales/en/messages.json
index 8b3428aebf..7b5735a09c 100644
--- a/website/common/locales/en/messages.json
+++ b/website/common/locales/en/messages.json
@@ -68,7 +68,8 @@
"notificationsRequired": "Notification ids are required.",
"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!",
+ "beginningOfConversation": "This is the beginning of your conversation with <%= userName %>.",
+ "beginningOfConversationReminder": "Remember to be kind, respectful, and follow the Community Guidelines!",
"messageDeletedUser": "Sorry, this user has deleted their account.",
"messageMissingDisplayName": "Missing display name.",
diff --git a/website/common/locales/en/settings.json b/website/common/locales/en/settings.json
index e018b2a421..c60c370c98 100644
--- a/website/common/locales/en/settings.json
+++ b/website/common/locales/en/settings.json
@@ -120,7 +120,7 @@
"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!",
"invitedParty": "You were invited to a Party",
- "invitedGuild": "You were invited to a Guild",
+ "invitedGuild": "You were invited to a Guild",
"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",
@@ -211,4 +211,4 @@
"suggestMyUsername": "Suggest my username",
"everywhere": "Everywhere",
"onlyPrivateSpaces": "Only in private spaces"
-}
\ No newline at end of file
+}
diff --git a/website/common/locales/en@pirate/achievements.json b/website/common/locales/en@pirate/achievements.json
index 8852619570..08dfbd9371 100644
--- a/website/common/locales/en@pirate/achievements.json
+++ b/website/common/locales/en@pirate/achievements.json
@@ -40,5 +40,28 @@
"achievementPearlyPro": "Pearlie Pro",
"achievementPrimedForPaintingModalText": "Ye 'ave collected all th' White Critters!",
"achievementPrimedForPaintingText": "'as collected all the White Critters.",
- "achievementPrimedForPainting": "Plann'd fer Paintin'"
+ "achievementPrimedForPainting": "Plann'd fer Paintin'",
+ "achievementPurchasedEquipmentModalText": "Ee-quitment be a way ta customize yer avatar an' improve yer stats",
+ "achievementPurchasedEquipmentText": "Bought their first piece o' ee-quitment.",
+ "achievementPurchasedEquipment": "Buy Ee-quitment",
+ "achievementFedPetModalText": "There be many differen' types o' vittles, but critters kin be picky",
+ "achievementFedPetText": "Fed their firs' critter.",
+ "achievementFedPet": "Feed a Critter",
+ "achievementHatchedPetModalText": "Take a look through yer stuff an' try puttin' an 'atchin' potion wiv an egg",
+ "achievementHatchedPetText": "Hatched their firs' Critter.",
+ "achievementHatchedPet": "Hatch a Critter",
+ "achievementCompletedTaskModalText": "Check off any o' yer tasks t' earn loot",
+ "achievementCompletedTaskText": "Kermpleted their firs' task.",
+ "achievementCompletedTask": "Kermplete a Task",
+ "achievementCreatedTaskModalText": "Add a task fer somethin' ye'd like ta 'complish this week",
+ "achievementCreatedTaskText": "Set up their firs' task.",
+ "achievementCreatedTask": "Set up yer Task",
+ "hideAchievements": "Don' wanna see <%= category %>",
+ "showAllAchievements": "Let's see <%= category %>",
+ "onboardingCompleteDesc": "Ye've earned
5 Medals an'
100 gold fer kermpletin' th' list.",
+ "earnedAchievement": "Ye've earned a Medal!",
+ "viewAchievements": "View Medals",
+ "letsGetStarted": "Get on wiv it!",
+ "onboardingProgress": "<%= percentage %>% kermplete",
+ "gettingStartedDesc": "G'on an' set up a task, check it off, an' check out yer loot. Ye'll earn
5 Medals an'
100 gold when ye’re done!"
}
diff --git a/website/common/locales/en@pirate/gear.json b/website/common/locales/en@pirate/gear.json
index 3cc3aa852f..cb72f6022d 100644
--- a/website/common/locales/en@pirate/gear.json
+++ b/website/common/locales/en@pirate/gear.json
@@ -279,7 +279,7 @@
"weaponSpecialWinter2019WarriorText": "Snowflake Halberd",
"weaponSpecialWinter2019WarriorNotes": "This snowflake was grown, ice crystal by ice crystal, into a diamond-hard blade! Increases Strength by <%= str %>. Limited Edition 2018-2019 Winter Gear.",
"weaponSpecialWinter2019MageText": "Fiery Dragon Staff",
- "weaponSpecialWinter2019MageNotes": "Watch out! This explosive staff is ready to help you take on all comers. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2018-2019 Winter Gear",
+ "weaponSpecialWinter2019MageNotes": "Watch out! This explosive staff be ready t' 'elp you take on anyone. Raises yer Intelligence by <%= int %> an' Perception by <%= per %>. Limited Edition 2018-2019 Winter Gear",
"weaponSpecialWinter2019HealerText": "Wand of Winter",
"weaponSpecialWinter2019HealerNotes": "Winter can be a time of rest and healing, and so this wand of winter magic can help to soothe the most grievous hurts. Increases Intelligence by <%= int %>. Limited Edition 2018-2019 Winter Gear.",
"weaponMystery201411Text": "Pitchfork o' Feasting",
@@ -1765,5 +1765,53 @@
"shieldArmoireMightyPizzaText": "Mighty Pizza",
"shieldArmoireMightyPizzaNotes": "Sure, it's a pretty good shield, but we strongly suggest ye eat this fine, fine pizza. Increases Perception by <%= per %>. Enchanted Chest: Chef Set (Item 4 o' 4).",
"eyewearMystery201902Text": "Cryptic Crush Mask",
- "eyewearMystery201902Notes": "This mysterious mask hides yer identity but not yer winning smile. It don't benefit ye. February 2019 Subscriber Item."
+ "eyewearMystery201902Notes": "This mysterious mask hides yer identity but not yer winning smile. It don't benefit ye. February 2019 Subscriber Item.",
+ "weaponSpecialWinter2020RogueNotes": "Darkness be a Scallywag's element. Who better, then, ta light th' way in th' darkest time o' year? Raises yer Strength by <%= str %>. Limited Edition 2019-2020 Winter Gear.",
+ "weaponSpecialWinter2020RogueText": "Lantern Rod",
+ "weaponSpecialFall2019HealerNotes": "This phylactery kin call on th' spirits o' tasks long slain an' use their 'ealin' power. Raises yer Intelligence by <%= int %>. Limited Edition 2019 Autumn Gear.",
+ "weaponSpecialFall2019HealerText": "Frightnin' Phylactery",
+ "weaponSpecialFall2019MageNotes": "Be it forgin' thunderbolts, raisin' forty-fee-cations, or simply strikin' terror inta th' 'earts o' mortals, this staff lends th' power o' giants ta work wonders. Raises Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2019 Autumn Gear.",
+ "weaponSpecialFall2019MageText": "Staff wi' One Eye",
+ "weaponSpecialFall2019WarriorNotes": "Prepare ta rend yer foes wi' th' talons o' a raven! Raises Strength by <%= str %>. Limited Edition 2019 Autumn Gear.",
+ "weaponSpecialFall2019WarriorText": "Talony Trident",
+ "weaponSpecialFall2019RogueNotes": "Whether ye're conductin' an orky-stra or singin' an aria, this 'elpful device keeps yer 'ands free fer dramatic gesturin'! Raises yer Strength by <%= str %>. Limited Edition 2019 Autumn Gear.",
+ "weaponSpecialFall2019RogueText": "Musickin' Stand",
+ "weaponSpecialSummer2019HealerNotes": "Th' bubbles from this 'ere wand capture 'ealin' energy an' old ocean magic. Raises yer Intelligence by <%= int %>. Limited Edition 2019 Summer Gear.",
+ "weaponSpecialSummer2019HealerText": "Bubbly Wand",
+ "weaponSpecialSummer2019MageNotes": "Fruit o' yer labors, firs' picked from th' pool, this wee treasure'll do a lot for ye. Raises yer Intelligence by <%= int %>. Limited Edition 2019 Summer Gear.",
+ "weaponSpecialSummer2019MageText": "Brillin' Bloom",
+ "weaponSpecialSummer2019WarriorNotes": "Now ye're fightin' fancy! Raises yer Strength by <%= str %>. Limited Edition 2019 Summer Gear.",
+ "weaponSpecialSummer2019WarriorText": "yon Red Coral",
+ "weaponSpecialSummer2019RogueNotes": "This old an' nasty weapon'll 'elp ye ta win any undersea battle. Raises yer Strength by <%= str %>. Limited Edition 2019 Summer Gear.",
+ "weaponSpecialSummer2019RogueText": "Old Anchor",
+ "weaponSpecialSpring2019HealerNotes": "Yer song o' flowers an' rain'll soothe th' spirits o' all who hear. Raises yer Intelligence by <%= int %>. Limited Edition 2019 Spring Gear.",
+ "weaponSpecialSpring2019HealerText": "Song o' Spring",
+ "weaponSpecialSpring2019MageNotes": "There be a merskeeter stuck in th' stone at th' end o' this staff! May or may not include Dino germs. Raises yer Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2019 Spring Gear.",
+ "weaponSpecialSpring2019MageText": "Staff o' Amber",
+ "weaponSpecialSpring2019WarriorNotes": "Bad 'abits cower afore this very green blade. Raises yer Strength by <%= str %>. Limited Edition 2019 Spring Gear.",
+ "weaponSpecialSpring2019WarriorText": "Green'ry Sword",
+ "weaponSpecialSpring2019RogueNotes": "These weapons contain th' power o' th' sky an' rain. We recommend that ye dinnae use 'em while in th' water. Raises yer Strength by <%= str %>. Limited Edition 2019 Spring Gear.",
+ "weaponSpecialSpring2019RogueText": "Lightnin' Bolt",
+ "weaponSpecialKS2019Notes": "Curved as a gryphon's beak an' talons, this fancy polearm reminds ye t' power through when th' task ahead feels o'erwhelmin'. Raises yer Strength by <%= str %>.",
+ "weaponSpecialKS2019Text": "yon Mythical Gryphon Glaive",
+ "weaponArmoireMagnifyingGlassNotes": "Arrr!! A piece o' evidence! Examine it closely wi' this fine magnifier. Increases Perception by <%= per %>. Enchanted Armoire: Detective Set (Item 3 of 4).",
+ "weaponArmoireMagnifyingGlassText": "Magnifyin' Glass",
+ "weaponArmoireAstronomersTelescopeNotes": "An inster-mint that'll allow ye t' observe th' stars' ancient dance. Raises yer Perception by <%= per %>. Enchanted Armoire: Astronomer Mage Set (Item 3 of 3).",
+ "weaponArmoireAstronomersTelescopeText": "Astronomer's 'Scope",
+ "weaponArmoireBambooCaneNotes": "Perfick fer assistin' ye in a stroll, or fer dancin' the Charleston. Raises yer Intelligence, Perception, and Constitution by <%= attrs %> each. Enchanted Armoire: Boatin' Set (Item 3 of 3).",
+ "weaponArmoireBambooCaneText": "Cane o' Bamboo",
+ "weaponArmoireNephriteBowNotes": "This bow shoots special jade-tipped arrers that'll take down e'en yer most stubborn bad 'abits! Raises yer Intelligence by <%= int %> and Strength by <%= str %>. Enchanted Armoire: Nephrite Archer Set (Item 1 of 3).",
+ "weaponArmoireNephriteBowText": "Bow o' Nephrite",
+ "weaponArmoireSlingshotNotes": "Take aim atcher red Dailies! Raises yer Strength by <%= str %>. Enchanted Armoire: Independent Item.",
+ "weaponArmoireSlingshotText": "yon Slingshot",
+ "weaponArmoireJugglingBallsNotes": "Habiticans be masters at multi-taskin', so ye should 'ave no trouble keepin' all these balls in th' air! Raises yer Intelligence by <%= int %>. Enchanted Armoire: Independent Item.",
+ "weaponArmoireJugglingBallsText": "Jugglin' Balls",
+ "weaponMystery201911Notes": "Th' crystal ball atop yon staff kin show ye th' future, but beware! Usin' such dang'rous knowledge kin change a person in ways ye'd no' espect. Confers no benefit. November 2019 Subscriber Item.",
+ "weaponMystery201911Text": "Becharmed Crystal Staff",
+ "weaponSpecialWinter2020HealerNotes": "Wavin' it about'll waft th' aroma t' summon yer friends an' 'elpers ta begin cookin' an' bakin'! Raises yer Intelligence by <%= int %>. Limited Edition 2019-2020 Winter Gear.",
+ "weaponSpecialWinter2020HealerText": "Clove-Spice Scepter",
+ "weaponSpecialWinter2020MageNotes": "Wiv practice, ye kin perject this aural magic (in waves! Like th' sea!!) any way ye like: a thoughtful hum, a festive chime, er a RED TASK O'ERBOARD ALARM. Raises yer Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2019-2020 Winter Gear.",
+ "weaponSpecialWinter2020MageText": "Ripplin' Waves o' Sound",
+ "weaponSpecialWinter2020WarriorNotes": "Avast, squirrels! Ye'll get no piece o' this! ...But iffen ye wanna hang out an' 'ave cocoa, that be cool. Raises yer Strength by <%= str %>. Limited Edition 2019-2020 Winter Gear.",
+ "weaponSpecialWinter2020WarriorText": "Pointy Conny-fer Cone"
}
diff --git a/website/common/locales/en_GB/achievements.json b/website/common/locales/en_GB/achievements.json
index 130cce1c09..6860a7887c 100644
--- a/website/common/locales/en_GB/achievements.json
+++ b/website/common/locales/en_GB/achievements.json
@@ -18,5 +18,50 @@
"achievementJustAddWater": "Just Add Water",
"achievementMindOverMatterModalText": "You completed the Rock, Slime, and Yarn pet quests!",
"achievementMindOverMatterText": "Has completed Rock, Slime, and Yarn pet quests.",
- "achievementMindOverMatter": "Mind Over Matter"
+ "achievementMindOverMatter": "Mind Over Matter",
+ "achievementPearlyProModalText": "You tamed all the White Mounts!",
+ "achievementPearlyProText": "Has tamed all White Mounts.",
+ "achievementPearlyPro": "Pearly Pro",
+ "achievementPrimedForPaintingModalText": "You collected all the White Pets!",
+ "achievementPrimedForPaintingText": "Has collected all White Pets.",
+ "achievementPrimedForPainting": "Primed for Painting",
+ "achievementPurchasedEquipmentModalText": "Equipment is a way to customise your avatar and improve your stats",
+ "achievementPurchasedEquipmentText": "Purchased their first piece of equipment.",
+ "achievementPurchasedEquipment": "Purchase Equipment",
+ "achievementFedPetModalText": "There are many different types of food, but pets can be picky",
+ "achievementFedPetText": "Fed their first pet.",
+ "achievementFedPet": "Feed a Pet",
+ "achievementHatchedPetModalText": "Head over to your inventory and try combining a hatching potion and an egg",
+ "achievementHatchedPetText": "Hatched their first pet.",
+ "achievementHatchedPet": "Hatch a Pet",
+ "achievementCompletedTaskModalText": "Check off any of your tasks to earn rewards",
+ "achievementCompletedTaskText": "Completed their first task.",
+ "achievementCompletedTask": "Complete a Task",
+ "achievementCreatedTaskModalText": "Add a task for something you would like to accomplish this week",
+ "achievementCreatedTaskText": "Created their first task.",
+ "achievementCreatedTask": "Create a Task",
+ "achievementUndeadUndertakerModalText": "You tamed all the Zombie Mounts!",
+ "achievementUndeadUndertakerText": "Has tamed all Zombie Mounts.",
+ "achievementUndeadUndertaker": "Undead Undertaker",
+ "achievementMonsterMagusModalText": "You collected all the Zombie Pets!",
+ "achievementMonsterMagusText": "Has collected all Zombie Pets.",
+ "achievementMonsterMagus": "Monster Magus",
+ "achievementPartyOn": "Your party grew to 4 members!",
+ "achievementKickstarter2019Text": "Backed the 2019 Pin Kickstarter Project",
+ "achievementKickstarter2019": "Pin Kickstarter Backer",
+ "achievementAridAuthorityModalText": "You tamed all the Desert Mounts!",
+ "achievementAridAuthorityText": "Has tamed all Desert Mounts.",
+ "achievementAridAuthority": "Arid Authority",
+ "achievementPartyUp": "You teamed up with a party member!",
+ "achievementDustDevilModalText": "You collected all the Desert Pets!",
+ "achievementDustDevilText": "Has collected all Desert Pets.",
+ "achievementDustDevil": "Dust Devil",
+ "hideAchievements": "Hide <%= category %>",
+ "showAllAchievements": "Show All <%= category %>",
+ "onboardingCompleteDesc": "You earned
5 achievements and
100 gold for completing the list.",
+ "earnedAchievement": "You earned an achievement!",
+ "viewAchievements": "View Achievements",
+ "letsGetStarted": "Let's get started!",
+ "onboardingProgress": "<%= percentage %>% progress",
+ "gettingStartedDesc": "Let’s create a task, complete it, then check out your rewards. You’ll earn
5 achievements and
100 gold once you’re done!"
}
diff --git a/website/common/locales/en_GB/backgrounds.json b/website/common/locales/en_GB/backgrounds.json
index d033c63188..7270fccf4f 100644
--- a/website/common/locales/en_GB/backgrounds.json
+++ b/website/common/locales/en_GB/backgrounds.json
@@ -422,5 +422,75 @@
"backgroundFieldWithColoredEggsText": "Field with Coloured Eggs",
"backgroundFieldWithColoredEggsNotes": "Hunt for springtime treasure in a Field with Coloured Eggs.",
"backgroundFlowerMarketText": "Flower Market",
- "backgroundFlowerMarketNotes": "Find the perfect colours for bouquet or garden in a Flower Market."
+ "backgroundFlowerMarketNotes": "Find the perfect colours for bouquet or garden in a Flower Market.",
+ "backgroundHolidayMarketText": "Holiday Market",
+ "backgroundHolidayMarketNotes": "Find the perfect gifts and decorations at a Holiday Market.",
+ "backgroundHolidayWreathText": "Holiday Wreath",
+ "backgroundHolidayWreathNotes": "Festoon your avatar with a fragrant Holiday Wreath.",
+ "backgroundWinterNocturneText": "Winter Nocturne",
+ "backgroundWinterNocturneNotes": "Bask in the starlight of a Winter Nocturne.",
+ "backgrounds012020": "SET 68: Released January 2020",
+ "backgroundBirthdayPartyText": "Birthday Party",
+ "backgroundBirthdayPartyNotes": "Celebrate the Birthday Party of your favourite Habitican.",
+ "backgroundDesertWithSnowText": "Snowy Desert",
+ "backgroundDesertWithSnowNotes": "Witness the rare and quiet beauty of a Snowy Desert.",
+ "backgroundSnowglobeText": "Snowglobe",
+ "backgroundSnowglobeNotes": "Shake up a Snowglobe and take your place in a microcosm of a winter landscape.",
+ "backgrounds122019": "SET 67: Released December 2019",
+ "backgroundPotionShopNotes": "Find an elixir for any ailment at a Potion Shop.",
+ "backgroundPotionShopText": "Potion Shop",
+ "backgroundFlyingInAThunderstormNotes": "Chase a Tumultuous Thunderstorm as closely as you dare.",
+ "backgroundFlyingInAThunderstormText": "Tumultuous Thunderstorm",
+ "backgroundFarmersMarketNotes": "Shop for the freshest of foods at a Farmer's Market.",
+ "backgroundFarmersMarketText": "Farmer's Market",
+ "backgrounds112019": "SET 66: Released November 2019",
+ "backgroundMonsterMakersWorkshopNotes": "Experiment with discredited sciences in a Monster Maker's Workshop.",
+ "backgroundMonsterMakersWorkshopText": "Monster Maker's Workshop",
+ "backgroundPumpkinCarriageNotes": "Ride in an enchanted Pumpkin Carriage before the clock strikes midnight.",
+ "backgroundPumpkinCarriageText": "Pumpkin Carriage",
+ "backgroundFoggyMoorNotes": "Watch your step traversing a Foggy Moor.",
+ "backgroundFoggyMoorText": "Foggy Moor",
+ "backgrounds102019": "SET 65: Released October 2019",
+ "backgroundInAClassroomNotes": "Absorb knowledge from your mentors in a Classroom.",
+ "backgroundInAClassroomText": "Classroom",
+ "backgroundInAnAncientTombNotes": "Brave the mysteries of an Ancient Tomb.",
+ "backgroundInAnAncientTombText": "Ancient Tomb",
+ "backgroundAutumnFlowerGardenNotes": "Take in the warmth of an Autumn Flower Garden.",
+ "backgroundAutumnFlowerGardenText": "Autumn Flower Garden",
+ "backgrounds092019": "SET 64: Released September 2019",
+ "backgroundTreehouseNotes": "Hang out in an arboreal hideaway all to yourself, in your very own Treehouse.",
+ "backgroundTreehouseText": "Treehouse",
+ "backgroundGiantDandelionsNotes": "Dally among Giant Dandelions.",
+ "backgroundGiantDandelionsText": "Giant Dandelions",
+ "backgroundAmidAncientRuinsNotes": "Stand in reverence of the mysterious past Amid Ancient Ruins.",
+ "backgroundAmidAncientRuinsText": "Amid Ancient Ruins",
+ "backgrounds082019": "SET 63: Released August 2019",
+ "backgroundAmongGiantAnemonesNotes": "Explore reef life, protected from predators Among Giant Anemones.",
+ "backgroundAmongGiantAnemonesText": "Among Giant Anemones",
+ "backgroundFlyingOverTropicalIslandsNotes": "Let the view take your breath away as you Fly over Tropical Islands.",
+ "backgroundFlyingOverTropicalIslandsText": "Flying over Tropical Islands",
+ "backgroundLakeWithFloatingLanternsNotes": "Stargaze from the festival atmosphere of a Lake with Floating Lanterns.",
+ "backgroundLakeWithFloatingLanternsText": "Lake with Floating Lanterns",
+ "backgrounds072019": "SET 62: Released July 2019",
+ "backgroundUnderwaterVentsNotes": "Take a deep dive down, down to the Underwater Vents.",
+ "backgroundUnderwaterVentsText": "Underwater Vents",
+ "backgroundSeasideCliffsNotes": "Stand on a beach with the beauty of Seaside Cliffs above.",
+ "backgroundSeasideCliffsText": "Seaside Cliffs",
+ "backgroundSchoolOfFishNotes": "Swim among a School of Fish.",
+ "backgroundSchoolOfFishText": "School of Fish",
+ "backgrounds062019": "SET 61: Released June 2019",
+ "backgroundRainbowMeadowNotes": "Find the pot of gold where a Rainbow ends in a Meadow.",
+ "backgroundRainbowMeadowText": "Rainbow Meadow",
+ "backgroundParkWithStatueNotes": "Follow a flower-lined path through a Park with a Statue.",
+ "backgroundParkWithStatueText": "Park with Statue",
+ "backgroundDojoNotes": "Learn new moves in a Dojo.",
+ "backgroundDojoText": "Dojo",
+ "backgrounds052019": "SET 60: Released May 2019",
+ "backgroundBlossomingDesertNotes": "Witness a rare superbloom in the Blossoming Desert.",
+ "backgroundBlossomingDesertText": "Blossoming Desert",
+ "backgroundHalflingsHouseNotes": "Visit a charming Halfling's House.",
+ "backgroundHalflingsHouseText": "Halfling's House",
+ "backgroundBirchForestNotes": "Dally in a peaceful Birch Forest.",
+ "backgroundBirchForestText": "Birch Forest",
+ "backgrounds042019": "SET 59: Released April 2019"
}
diff --git a/website/common/locales/en_GB/character.json b/website/common/locales/en_GB/character.json
index 4c0b060c43..ec636f095d 100644
--- a/website/common/locales/en_GB/character.json
+++ b/website/common/locales/en_GB/character.json
@@ -104,7 +104,7 @@
"allocatePerPop": "Add a Point to Perception",
"allocateInt": "Points allocated to Intelligence:",
"allocateIntPop": "Add a Point to Intelligence",
- "noMoreAllocate": "Now that you've hit level 100, you won't gain any more 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.",
+ "noMoreAllocate": "Now that you've hit level 100, you won't gain any more Stat Points. You can continue levelling up, or start a new adventure at level 1 by using the
Orb of Rebirth!",
"stats": "Stats",
"achievs": "Achievements",
"strength": "Strength",
@@ -224,5 +224,9 @@
"mainHand": "Main-Hand",
"offHand": "Off-Hand",
"statPoints": "Stat Points",
- "pts": "pts"
+ "pts": "pts",
+ "chatCastSpellUser": "<%= username %> casts <%= spell %> on <%= target %>.",
+ "chatCastSpellParty": "<%= username %> casts <%= spell %> for the party.",
+ "purchasePetItemConfirm": "This purchase would exceed the number of items you need to hatch all possible <%= itemText %> pets. Are you sure?",
+ "purchaseForGold": "Purchase for <%= cost %> Gold?"
}
diff --git a/website/common/locales/en_GB/communityguidelines.json b/website/common/locales/en_GB/communityguidelines.json
index 140e0609fa..1d54c0a286 100644
--- a/website/common/locales/en_GB/communityguidelines.json
+++ b/website/common/locales/en_GB/communityguidelines.json
@@ -17,14 +17,14 @@
"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.",
+ "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 apologise to someone. If you feel that the way they responded to you was inappropriate, contact a mod rather than calling them out on it publicly.",
+ "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.",
+ "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": "
Private Messages (PMs) have some additional guidelines. If someone has blocked you, do not contact them elsewhere to ask them to unblock you. Additionally, you should not send PMs to someone asking for support (since public answers to support questions are helpful to the community). Finally, do not send anyone PMs begging for a gift of gems or a subscription, as this can be considered spamming.",
- "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.",
+ "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": "Furthermore, some public spaces in Habitica have additional guidelines.",
"commGuideHeadingTavern": "The Tavern",
"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…",
@@ -35,8 +35,8 @@
"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.",
+ "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 characterised 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.",
"commGuideHeadingInfractionsEtc": "Infractions, Consequences, and Restoration",
@@ -65,7 +65,7 @@
"commGuidePara056": "Minor Infractions, while discouraged, still have minor consequences. If they continue to occur, they can lead to more severe consequences over time.",
"commGuidePara057": "The following are some examples of Minor Infractions. This is not a comprehensive list.",
"commGuideList07A": "First-time violation of Public Space Guidelines",
- "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.",
+ "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 favour 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": "Consequences",
"commGuidePara058": "In Habitica -- as in real life -- every action has a consequence, whether it is getting fit because you've been running, getting cavities because you've been eating too much sugar, or passing a class because you've been studying.",
@@ -75,7 +75,7 @@
"commGuideList08B": "what the consequence is",
"commGuideList08C": "what to do to correct the situation and restore your status, if possible.",
"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.",
+ "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 apologise 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": "Examples of Severe Consequences",
"commGuideList09A": "Account bans (see above)",
"commGuideList09C": "Permanently disabling (\"freezing\") progression through Contributor Tiers",
@@ -94,7 +94,7 @@
"commGuideList11E": "Edits (Mods/Staff may edit problematic content)",
"commGuideHeadingRestoration": "Restoration",
"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.",
+ "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 endeavour 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": "Meet the Staff and Mods!",
"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.",
@@ -111,10 +111,10 @@
"commGuidePara011c": "on Wikia",
"commGuidePara011d": "on 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!",
+ "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 honour their work!",
"commGuidePara014": "Staff and Moderators Emeritus:",
"commGuideHeadingFinal": "The Final Section",
- "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": "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!",
diff --git a/website/common/locales/en_GB/content.json b/website/common/locales/en_GB/content.json
index b0a957c2fb..e949dc4540 100644
--- a/website/common/locales/en_GB/content.json
+++ b/website/common/locales/en_GB/content.json
@@ -212,7 +212,7 @@
"hatchingPotionFrost": "Frost",
"hatchingPotionIcySnow": "Icy Snow",
"hatchingPotionNotes": "Pour this on an egg, and it will hatch as a <%= potText(locale) %> pet.",
- "premiumPotionAddlNotes": "Not usable on quest pet eggs.",
+ "premiumPotionAddlNotes": "Not usable on quest pet eggs. Available for purchase until <%= date(locale) %>.",
"foodMeat": "Meat",
"foodMeatThe": "the Meat",
"foodMeatA": "Meat",
@@ -339,5 +339,19 @@
"foodPieDesertA": "a slice of Desert Dessert Pie",
"foodPieRed": "Red Cherry Pie",
"foodPieRedThe": "the Red Cherry Pie",
- "foodPieRedA": "a slice of Red Cherry Pie"
+ "foodPieRedA": "a slice of Red Cherry Pie",
+ "premiumPotionUnlimitedNotes": "Not usable on quest pet eggs.",
+ "hatchingPotionAurora": "Aurora",
+ "hatchingPotionAmber": "Amber",
+ "hatchingPotionShadow": "Shadow",
+ "hatchingPotionSilver": "Silver",
+ "hatchingPotionWatery": "Watery",
+ "hatchingPotionBronze": "Bronze",
+ "hatchingPotionSunshine": "Sunshine",
+ "questEggRobotAdjective": "a futuristic",
+ "questEggRobotMountText": "Robot",
+ "questEggRobotText": "Robot",
+ "questEggDolphinAdjective": "a chipper",
+ "questEggDolphinMountText": "Dolphin",
+ "questEggDolphinText": "Dolphin"
}
diff --git a/website/common/locales/en_GB/contrib.json b/website/common/locales/en_GB/contrib.json
index d1dc2a3400..31e91e3ffa 100644
--- a/website/common/locales/en_GB/contrib.json
+++ b/website/common/locales/en_GB/contrib.json
@@ -1,5 +1,5 @@
{
- "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!",
+ "playerTiersDesc": "The coloured 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)",
@@ -77,4 +77,4 @@
"blurbChallenges": "Challenges are created by your fellow players. Joining a Challenge will add its tasks to your task dashboard, and winning a Challenge will give you an achievement and often a gem prize!",
"blurbHallPatrons": "This is the Hall of Patrons, where we honour the noble adventurers who backed Habitica's original Kickstarter. We thank them for helping us bring Habitica to life!",
"blurbHallContributors": "This is the Hall of Contributors, where open-source contributors to Habitica are honored. Whether through code, art, music, writing, or even just helpfulness, they have earned
gems, exclusive equipment, and
prestigious titles. You can contribute to Habitica, too!
Find out more here. "
-}
\ No newline at end of file
+}
diff --git a/website/common/locales/en_GB/defaulttasks.json b/website/common/locales/en_GB/defaulttasks.json
index 99a2fbb9a7..ff59344c3a 100644
--- a/website/common/locales/en_GB/defaulttasks.json
+++ b/website/common/locales/en_GB/defaulttasks.json
@@ -24,5 +24,42 @@
"defaultTag4": "School",
"defaultTag5": "Teams",
"defaultTag6": "Chores",
- "defaultTag7": "Creativity"
-}
\ No newline at end of file
+ "defaultTag7": "Creativity",
+ "defaultHabitNotes": "Or delete from the edit screen",
+ "defaultHabitText": "Click here to edit this into a bad habit you'd like to quit",
+ "creativityTodoNotes": "Tap to specify the name of your project",
+ "creativityTodoText": "Finish creative project",
+ "creativityDailyNotes": "Tap to specify the name of your current project + set the schedule!",
+ "creativityDailyText": "Work on creative project",
+ "creativityHabit": "Study a master of the craft >> + Practiced a new creative technique",
+ "choresTodoNotes": "Tap to specify the cluttered area!",
+ "choresTodoText": "Organise closet >> Organise clutter",
+ "choresDailyNotes": "Tap to choose your schedule!",
+ "choresDailyText": "Wash dishes",
+ "choresHabit": "10 minutes cleaning",
+ "selfCareTodoNotes": "Tap to specify what you plan to do!",
+ "selfCareTodoText": "Engage in a fun activity",
+ "selfCareDailyNotes": "Tap to choose your schedule!",
+ "selfCareDailyText": "5 minutes of quiet breathing",
+ "selfCareHabit": "Take a short break",
+ "schoolTodoNotes": "Tap to name the assignment and choose a due date!]",
+ "schoolTodoText": "Finish assignment for class",
+ "schoolDailyNotes": "Tap to choose your homework schedule!",
+ "schoolDailyText": "Finish homework",
+ "schoolHabit": "Study/Procrastinate",
+ "healthTodoNotes": "Tap to add checklists!",
+ "healthTodoText": "Schedule check-up >> Brainstorm a healthy change",
+ "healthDailyNotes": "Tap to make any changes!",
+ "healthDailyText": "Floss",
+ "healthHabit": "Eat Health/Junk Food",
+ "exerciseTodoNotes": "Tap to add a checklist!",
+ "exerciseTodoText": "Set up workout schedule",
+ "exerciseDailyNotes": "Tap to choose your schedule and specify exercises!",
+ "exerciseDailyText": "Stretching >> Daily workout routine",
+ "exerciseHabit": "10 min cardio >> + 10 minutes cardio",
+ "workTodoProjectNotes": "Tap to specify the name of your current project + set a due date!",
+ "workTodoProject": "Work project >> Complete work project",
+ "workDailyImportantTaskNotes": "Tap to specify your most important task",
+ "workDailyImportantTask": "Most important task >> Worked on today’s most important task",
+ "workHabitMail": "Process email"
+}
diff --git a/website/common/locales/en_GB/faq.json b/website/common/locales/en_GB/faq.json
index 6b61b8fd8f..845e5566bb 100644
--- a/website/common/locales/en_GB/faq.json
+++ b/website/common/locales/en_GB/faq.json
@@ -27,7 +27,7 @@
"faqQuestion6": "How do I get a Pet or Mount?",
"iosFaqAnswer6": "At level 3, you will unlock the Drop System. Every time you complete a task, you'll have a random chance at receiving an egg, a hatching potion, or a piece of food. They will be stored in Menu > Items.\n\n To hatch a Pet, you'll need an egg and a hatching potion. Tap on the egg to determine the species you want to hatch, and select \"Hatch Egg.\" Then choose a hatching potion to determine its colour! Go to Menu > Pets to equip your new Pet to your avatar by clicking on it. \n\n You can also grow your Pets into Mounts by feeding them under Menu > Pets. Tap on a Pet, and then select \"Feed Pet\"! You'll have to feed a pet many times before it becomes a Mount, but if you can figure out its favourite food, it will grow more quickly. Use trial and error, or [see the spoilers here](http://habitica.fandom.com/wiki/Food#Food_Preferences). Once you have a Mount, go to Menu > Mounts and tap on it to equip it to your avatar.\n\n You can also get eggs for Quest Pets by completing certain Quests. (See below to learn more about Quests.)",
"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 colour! 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 favourite food, it will grow more quickly. Use trial and error, or [see the spoilers here](http://habitica.fandom.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.fandom.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": "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 favourite food, it will grow more quickly. Use trial and error, or [see the spoilers here](http://habitica.fandom.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.)",
"faqQuestion7": "How do I become a Warrior, Mage, Rogue, or Healer?",
"iosFaqAnswer7": "At level 10, you can choose to become a Warrior, Mage, Rogue, or Healer. (All players start as Warriors by default.) Each Class has different equipment options, different Skills that they can cast after level 11, and different advantages. Warriors can easily damage Bosses, withstand more damage from their tasks, and help make their Party tougher. Mages can also easily damage Bosses, as well as level up quickly and restore Mana for their party. Rogues earn the most gold and find the most item drops, and they can help their Party do the same. Finally, Healers can heal themselves and their Party members.\n\n If you don't want to choose a Class immediately -- for example, if you are still working to buy all the gear of your current class -- you can click “Decide Later” and choose later under Menu > Choose Class.",
"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.",
@@ -55,4 +55,4 @@
"iosFaqStillNeedHelp": "If you have a question that isn't on this list or on the [Wiki FAQ](http://habitica.fandom.com/wiki/FAQ), come ask in the Tavern chat under Menu > Tavern! We're happy to help.",
"androidFaqStillNeedHelp": "If you have a question that isn't on this list or on the [Wiki FAQ](http://habitica.fandom.com/wiki/FAQ), come ask in the Tavern chat under Menu > Tavern! We're happy to help.",
"webFaqStillNeedHelp": "If you have a question that isn't on this list or on the [Wiki FAQ](http://habitica.fandom.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."
-}
\ No newline at end of file
+}
diff --git a/website/common/locales/en_GB/front.json b/website/common/locales/en_GB/front.json
index 9ebd2c31da..5636f2c58e 100644
--- a/website/common/locales/en_GB/front.json
+++ b/website/common/locales/en_GB/front.json
@@ -37,7 +37,7 @@
"companyVideos": "Videos",
"contribUse": "Habitica contributors use",
"dragonsilverQuote": "I can't tell you how many time and task tracking systems I've tried over the decades... [Habitica] is the only thing I've used that actually helps me get things done rather than just list them.",
- "dreimQuote": "When I discovered [Habitica] last summer, I had just failed about half of my exams. Thanks to the Dailies... I was able to organize and discipline myself, and I actually passed all my exams with really good grades a month ago.",
+ "dreimQuote": "When I discovered [Habitica] last summer, I had just failed about half of my exams. Thanks to the Dailies... I was able to organise and discipline myself, and I actually passed all my exams with really good grades a month ago.",
"elmiQuote": "Every morning I'm looking forward to getting up so I can earn some gold!",
"forgotPassword": "Forgot Password?",
"emailNewPass": "Email a Password Reset Link",
@@ -85,7 +85,7 @@
"landingend": "Not convinced yet?",
"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": "The problem with most productivity apps on the market is that they provide no incentive to continue using them. Habitica fixes this by making habit building fun! By rewarding you for your successes and penalising you for slip-ups, Habitica provides external motivation for completing your day-to-day activities.",
- "landingp2": "Whenever you reinforce a positive habit, complete a daily task, or take care of an old to-do, 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.",
+ "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 personalised rewards you've created for motivation. When even the smallest successes provide you with an immediate reward, you're less likely to procrastinate.",
"landingp2header": "Instant Gratification",
"landingp3": "Whenever you indulge in a bad habit or fail to complete one of your daily tasks, you lose health. If your health drops too low, you lose some of the progress you've made. By providing immediate consequences, Habitica can help break bad habits and procrastination cycles before they cause real-world problems.",
"landingp3header": "Consequences",
@@ -112,7 +112,7 @@
"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.",
"marketing3Header": "Apps and Extensions",
- "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": "The **iPhone & Android** apps let you take care of business on the go. We realise 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.fandom.com/wiki/Extensions,_Add-Ons,_and_Customizations).",
"marketing4Header": "Organisational Use",
@@ -313,16 +313,16 @@
"trackYourGoals": "Track Your Habits and Goals",
"trackYourGoalsDesc": "Stay accountable by tracking and managing your Habits, Daily goals, and To-Do list with Habitica’s easy-to-use mobile apps and web interface.",
"earnRewards": "Earn Rewards for Your Goals",
- "earnRewardsDesc": "Check off tasks to level up your Avatar and unlock in-game features such as battle armor, mysterious pets, magic skills, and even quests!",
+ "earnRewardsDesc": "Check off tasks to level up your Avatar and unlock in-game features such as battle armour, mysterious pets, magic skills, and even quests!",
"battleMonsters": "Battle Monsters with Friends",
- "battleMonstersDesc": "Fight monsters with other Habiticans! Use the Gold that you earn to buy in-game or custom rewards, like watching an episode of your favorite TV show.",
+ "battleMonstersDesc": "Fight monsters with other Habiticans! Use the Gold that you earn to buy in-game or custom rewards, like watching an episode of your favourite TV show.",
"playersUseToImprove": "Players Use Habitica to Improve",
"healthAndFitness": "Health and Fitness",
"healthAndFitnessDesc": "Never motivated to floss? Can't seem to get to the gym? Habitica finally makes it fun to get healthy.",
"schoolAndWork": "School and Work",
"schoolAndWorkDesc": "Whether you're preparing a report for your teacher or your boss, it's easy to keep track of your progress as you tackle your toughest tasks.",
"muchmuchMore": "And much, much more!",
- "muchmuchMoreDesc": "Our fully customizable task list means that you can shape Habitica to fit your personal goals. Work on creative projects, emphasize self-care, or pursue a different dream -- it's all up to you.",
+ "muchmuchMoreDesc": "Our fully customizable task list means that you can shape Habitica to fit your personal goals. Work on creative projects, emphasise self-care, or pursue a different dream -- it's all up to you.",
"levelUpAnywhere": "Level Up Anywhere",
"levelUpAnywhereDesc": "Our mobile apps make it simple to keep track of your tasks on-the-go. Accomplish your goals with a single tap, no matter where you are.",
"joinMany": "Join over 2,000,000 people having fun while accomplishing their goals!",
@@ -331,5 +331,6 @@
"getStarted": "Get Started!",
"mobileApps": "Mobile Apps",
"learnMore": "Learn More",
- "communityInstagram": "Instagram"
+ "communityInstagram": "Instagram",
+ "minPasswordLength": "Password must be 8 characters or more."
}
diff --git a/website/common/locales/en_GB/gear.json b/website/common/locales/en_GB/gear.json
index 70dc1bfed0..8c67213f86 100644
--- a/website/common/locales/en_GB/gear.json
+++ b/website/common/locales/en_GB/gear.json
@@ -109,7 +109,7 @@
"weaponSpecialNomadsScimitarText": "Nomad's Scimitar",
"weaponSpecialNomadsScimitarNotes": "The curved blade of this Scimitar is perfect for attacking Tasks from the back of a mount! Increases Intelligence by <%= int %>.",
"weaponSpecialFencingFoilText": "Fencing Foil",
- "weaponSpecialFencingFoilNotes": "Should anyone dare to impugn your honor, you'll be ready with this fine foil! Increases Strength by <%= str %>.",
+ "weaponSpecialFencingFoilNotes": "Should anyone dare to impugn your honour, you'll be ready with this fine foil! Increases Strength by <%= str %>.",
"weaponSpecialTachiText": "Tachi",
"weaponSpecialTachiNotes": "This light and curved sword will shred your tasks to ribbons! Increases Strength by <%= str %>.",
"weaponSpecialAetherCrystalsText": "Aether Crystals",
@@ -191,7 +191,7 @@
"weaponSpecialSpring2016WarriorText": "Cheese Mallet",
"weaponSpecialSpring2016WarriorNotes": "No one has as many friends as the mouse with tender cheeses. Increases Strength by <%= str %>. Limited Edition 2016 Spring Gear.",
"weaponSpecialSpring2016MageText": "Staff of Bells",
- "weaponSpecialSpring2016MageNotes": "Abracadabra! So dazzling, you might mesmerize yourself! Ooh... it jingles... Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2016 Spring Gear.",
+ "weaponSpecialSpring2016MageNotes": "Abracadabra! So dazzling, you might mesmerise yourself! Ooh... it jingles... Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2016 Spring Gear.",
"weaponSpecialSpring2016HealerText": "Spring Flower Wand",
"weaponSpecialSpring2016HealerNotes": "With a wave and a wink, you bring the fields and forests into bloom! Or bop troublesome mice on the head. Increases Intelligence by <%= int %>. Limited Edition 2016 Spring Gear.",
"weaponSpecialSummer2016RogueText": "Electric Rod",
@@ -259,7 +259,7 @@
"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.",
+ "weaponSpecialSummer2018RogueNotes": "This lightweight, practically unbreakable rod and reel can be dual-wielded to maximise 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",
@@ -279,7 +279,7 @@
"weaponSpecialWinter2019WarriorText": "Snowflake Halberd",
"weaponSpecialWinter2019WarriorNotes": "This snowflake was grown, ice crystal by ice crystal, into a diamond-hard blade! Increases Strength by <%= str %>. Limited Edition 2018-2019 Winter Gear.",
"weaponSpecialWinter2019MageText": "Fiery Dragon Staff",
- "weaponSpecialWinter2019MageNotes": "Watch out! This explosive staff is ready to help you take on all comers. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2018-2019 Winter Gear",
+ "weaponSpecialWinter2019MageNotes": "Watch out! This explosive staff is ready to help you take on all comers. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2018-2019 Winter Gear.",
"weaponSpecialWinter2019HealerText": "Wand of Winter",
"weaponSpecialWinter2019HealerNotes": "Winter can be a time of rest and healing, and so this wand of winter magic can help to soothe the most grievous hurts. Increases Intelligence by <%= int %>. Limited Edition 2018-2019 Winter Gear.",
"weaponMystery201411Text": "Pitchfork of Feasting",
@@ -425,7 +425,7 @@
"armorSpecial2Text": "Jean Chalard's Noble Tunic",
"armorSpecial2Notes": "Makes you extra fluffy! Increases Constitution and Intelligence by <%= attrs %> each.",
"armorSpecialTakeThisText": "Take This Armour",
- "armorSpecialTakeThisNotes": "This armor was earned by participating in a sponsored Challenge made by Take This. Congratulations! Increases all Stats by <%= attrs %>.",
+ "armorSpecialTakeThisNotes": "This armour was earned by participating in a sponsored Challenge made by Take This. Congratulations! Increases all Stats by <%= attrs %>.",
"armorSpecialFinnedOceanicArmorText": "Finned Oceanic Armour",
"armorSpecialFinnedOceanicArmorNotes": "Although delicate, this armour makes your skin as harmful to the touch as a fire coral. Increases Strength by <%= str %>.",
"armorSpecialPyromancersRobesText": "Pyromancer's Robes",
@@ -451,9 +451,9 @@
"armorSpecialSamuraiArmorText": "Samurai Armour",
"armorSpecialSamuraiArmorNotes": "This strong, scaled armour is held together by elegant silk cords. Increases Perception by <%= per %>.",
"armorSpecialTurkeyArmorBaseText": "Turkey Armor",
- "armorSpecialTurkeyArmorBaseNotes": "Keep your drumsticks warm and cozy in this feathery armor! Confers no benefit.",
- "armorSpecialTurkeyArmorGildedText": "Gilded Turkey Armor",
- "armorSpecialTurkeyArmorGildedNotes": "Strut your stuff in this seasonally shiny armor! Confers no benefit.",
+ "armorSpecialTurkeyArmorBaseNotes": "Keep your drumsticks warm and cozy in this feathery armour! Confers no benefit.",
+ "armorSpecialTurkeyArmorGildedText": "Gilded Turkey Armour",
+ "armorSpecialTurkeyArmorGildedNotes": "Strut your stuff in this seasonally shiny armour! Confers no benefit.",
"armorSpecialYetiText": "Yeti-Tamer Robe",
"armorSpecialYetiNotes": "Fuzzy and fierce. Increases Constitution by <%= con %>. Limited Edition 2013-2014 Winter Gear.",
"armorSpecialSkiText": "Ski-sassin Parka",
@@ -501,7 +501,7 @@
"armorSpecialFallHealerText": "Gauzy Gear",
"armorSpecialFallHealerNotes": "Charge into battle pre-bandaged! Increases Constitution by <%= con %>. Limited Edition 2014 Autumn Gear.",
"armorSpecialWinter2015RogueText": "Icicle Drake Armour",
- "armorSpecialWinter2015RogueNotes": "This armour is freezing cold, but it will definitely be worth it when you uncover the untold riches at the center of the Icicle Drake hives. Not that you are looking for any such untold riches, because you are truly, definitely, absolutely a genuine Icicle Drake, okay?! Stop asking questions! Increases Perception by <%= per %>. Limited Edition 2014-2015 Winter Gear.",
+ "armorSpecialWinter2015RogueNotes": "This armour is freezing cold, but it will definitely be worth it when you uncover the untold riches at the centre of the Icicle Drake hives. Not that you are looking for any such untold riches, because you are truly, definitely, absolutely a genuine Icicle Drake, okay?! Stop asking questions! Increases Perception by <%= per %>. Limited Edition 2014-2015 Winter Gear.",
"armorSpecialWinter2015WarriorText": "Gingerbread Armour",
"armorSpecialWinter2015WarriorNotes": "Cozy and warm, straight from the oven! Increases Constitution by <%= con %>. Limited Edition 2014-2015 Winter Gear.",
"armorSpecialWinter2015MageText": "Boreal Robe",
@@ -540,7 +540,7 @@
"armorSpecialWinter2016MageNotes": "The wisest wizard keeps well-bundled in the winter wind. Increases Intelligence by <%= int %>. Limited Edition 2015-2016 Winter Gear.",
"armorSpecialWinter2016HealerText": "Festive Fairy Cloak",
"armorSpecialWinter2016HealerNotes": "Festive Fairies wrap their body wings around themselves for protection as they use their head wings to catch headwinds and fly around Habitica at speeds of up to 100 mph, delivering gifts and spraying everyone with confetti. How droll. Increases Constitution by <%= con %>. Limited Edition 2015-2016 Winter Gear.",
- "armorSpecialSpring2016RogueText": "Canine Camouflauge Suit",
+ "armorSpecialSpring2016RogueText": "Canine Camouflage Suit",
"armorSpecialSpring2016RogueNotes": "A clever pup knows to choose a brighter guise for concealment when everything is green and vibrant. Increases Perception by <%= per %>. Limited Edition 2016 Spring Gear.",
"armorSpecialSpring2016WarriorText": "Mighty Mail",
"armorSpecialSpring2016WarriorNotes": "Though you be but little, you are fierce! Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.",
@@ -591,7 +591,7 @@
"armorSpecialFall2017RogueText": "Pumpkin Patch Robes",
"armorSpecialFall2017RogueNotes": "Need to hide out? Crouch among the Jack o' Lanterns and these robes will conceal you! Increases Perception by <%= per %>. Limited Edition 2017 Autumn Gear.",
"armorSpecialFall2017WarriorText": "Strong and Sweet Armor",
- "armorSpecialFall2017WarriorNotes": "This armor will protect you like a delicious candy shell. Increases Constitution by <%= con %>. Limited Edition 2017 Autumn Gear.",
+ "armorSpecialFall2017WarriorNotes": "This armour will protect you like a delicious candy shell. Increases Constitution by <%= con %>. Limited Edition 2017 Autumn Gear.",
"armorSpecialFall2017MageText": "Masquerade Robes",
"armorSpecialFall2017MageNotes": "What masquerade ensemble would be complete without dramatic and sweeping robes? Increases Intelligence by <%= int %>. Limited Edition 2017 Autumn Gear.",
"armorSpecialFall2017HealerText": "Haunted House Armor",
@@ -599,7 +599,7 @@
"armorSpecialWinter2018RogueText": "Reindeer Costume",
"armorSpecialWinter2018RogueNotes": "You look so cute and fuzzy, who could suspect you are after holiday loot? Increases Perception by <%= per %>. Limited Edition 2017-2018 Winter Gear.",
"armorSpecialWinter2018WarriorText": "Wrapping Paper Armor",
- "armorSpecialWinter2018WarriorNotes": "Don't let the papery feel of this armor fool you. It's nearly impossible to rip! Increases Constitution by <%= con %>. Limited Edition 2017-2018 Winter Gear.",
+ "armorSpecialWinter2018WarriorNotes": "Don't let the papery feel of this armour fool you. It's nearly impossible to rip! Increases Constitution by <%= con %>. Limited Edition 2017-2018 Winter Gear.",
"armorSpecialWinter2018MageText": "Sparkly Tuxedo",
"armorSpecialWinter2018MageNotes": "The ultimate in magical formalwear. Increases Intelligence by <%= int %>. Limited Edition 2017-2018 Winter Gear.",
"armorSpecialWinter2018HealerText": "Mistletoe Robes",
@@ -607,17 +607,17 @@
"armorSpecialSpring2018RogueText": "Feather Suit",
"armorSpecialSpring2018RogueNotes": "This fluffy yellow costume will trick your enemies into thinking you're just a harmless ducky! Increases Perception by <%= per %>. Limited Edition 2018 Spring Gear.",
"armorSpecialSpring2018WarriorText": "Armor of Dawn",
- "armorSpecialSpring2018WarriorNotes": "This colorful plate is forged with the sunrise's fire. Increases Constitution by <%= con %>. Limited Edition 2018 Spring Gear.",
+ "armorSpecialSpring2018WarriorNotes": "This colourful plate is forged with the sunrise's fire. Increases Constitution by <%= con %>. Limited Edition 2018 Spring Gear.",
"armorSpecialSpring2018MageText": "Tulip Robe",
"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.",
+ "armorSpecialSpring2018HealerNotes": "Let this bright armour 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.",
+ "armorSpecialSummer2018WarriorNotes": "Dazzle onlookers with whorls of magnificent colour 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.",
+ "armorSpecialSummer2018MageNotes": "Venom magic has a reputation for subtlety. Not so this colourful armour, 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.",
"armorSpecialFall2018RogueText": "Alter Ego Frock Coat",
@@ -631,7 +631,7 @@
"armorSpecialWinter2019RogueText": "Poinsettia Armor",
"armorSpecialWinter2019RogueNotes": "With holiday greenery all about, no one will notice an extra shrubbery! You can move through seasonal gatherings with ease and stealth. Increases Perception by <%= per %>. Limited Edition 2018-2019 Winter Gear.",
"armorSpecialWinter2019WarriorText": "Glacial Armor",
- "armorSpecialWinter2019WarriorNotes": "In the heat of battle, this armor will keep you ice cool and ready for action. Increases Constitution by <%= con %>. Limited Edition 2018-2019 Winter Gear.",
+ "armorSpecialWinter2019WarriorNotes": "In the heat of battle, this armour will keep you ice cool and ready for action. Increases Constitution by <%= con %>. Limited Edition 2018-2019 Winter Gear.",
"armorSpecialWinter2019MageText": "Robes of Burning Inspiration",
"armorSpecialWinter2019MageNotes": "This fireproof garb will help protect you if any of your flashes of brilliance should happen to backfire! Increases Intelligence by <%= int %>. Limited Edition 2018-2019 Winter Gear.",
"armorSpecialWinter2019HealerText": "Midnight Robe",
@@ -697,17 +697,17 @@
"armorMystery201711Text": "Carpet Rider Outfit",
"armorMystery201711Notes": "This cozy sweater set will help keep you warm as you ride through the sky! Confers no benefit. November 2017 Subscriber Item.",
"armorMystery201712Text": "Candlemancer Armor",
- "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.",
+ "armorMystery201712Notes": "The heat and light generated by this magic armour will warm your heart but never burn your skin! Confers no benefit. December 2017 Subscriber Item.",
+ "armorMystery201802Text": "Love Bug Armour",
+ "armorMystery201802Notes": "This shiny armour 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.",
"armorMystery201807Text": "Sea Serpent Tail",
"armorMystery201807Notes": "This powerful tail will propel you through the sea at incredible speeds! Confers no benefit. July 2018 Subscriber Item.",
"armorMystery201808Text": "Lava Dragon Armor",
- "armorMystery201808Notes": "This armor is made from the shed scales of the elusive (and extremely warm) Lava Dragon. Confers no benefit. August 2018 Subscriber Item.",
+ "armorMystery201808Notes": "This armour is made from the shed scales of the elusive (and extremely warm) Lava Dragon. Confers no benefit. August 2018 Subscriber Item.",
"armorMystery201809Text": "Armor of Autumn Leaves",
- "armorMystery201809Notes": "You are not only a small and fearsome leaf puff, you are sporting the most beautiful colors of the season! Confers no benefit. September 2018 Subscriber Item.",
+ "armorMystery201809Notes": "You are not only a small and fearsome leaf puff, you are sporting the most beautiful colours of the season! Confers no benefit. September 2018 Subscriber Item.",
"armorMystery201810Text": "Dark Forest Robes",
"armorMystery201810Notes": "These robes are extra warm to protect you from the ghastly cold of haunted realms. Confers no benefit. October 2018 Subscriber Item.",
"armorMystery301404Text": "Steampunk Suit",
@@ -777,7 +777,7 @@
"armorArmoireSwanDancerTutuText": "Swan Dancer Tutu",
"armorArmoireSwanDancerTutuNotes": "You just might fly away into the air as you spin in this gorgeous feathered tutu. Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Swan Dancer Set (Item 2 of 3).",
"armorArmoireAntiProcrastinationArmorText": "Anti-Procrastination Armour",
- "armorArmoireAntiProcrastinationArmorNotes": "Infused with ancient productivity spells, this steel armor will give you extra strength to battle your tasks. Increases Strength by <%= str %>. Enchanted Armoire: Anti-Procrastination Set (Item 2 of 3).",
+ "armorArmoireAntiProcrastinationArmorNotes": "Infused with ancient productivity spells, this steel armour will give you extra strength to battle your tasks. Increases Strength by <%= str %>. Enchanted Armoire: Anti-Procrastination Set (Item 2 of 3).",
"armorArmoireYellowPartyDressText": "Yellow Party Dress",
"armorArmoireYellowPartyDressNotes": "You're perceptive, strong, smart, and so fashionable! Increases Perception, Strength, and Intelligence by <%= attrs %> each. Enchanted Armoire: Yellow Hairbow Set (Item 2 of 2).",
"armorArmoireFarrierOutfitText": "Farrier Outfit",
@@ -785,7 +785,7 @@
"armorArmoireCandlestickMakerOutfitText": "Candlestick Maker Outfit",
"armorArmoireCandlestickMakerOutfitNotes": "This sturdy set of clothes will protect you from hot wax spills as you ply your craft! Increases Constitution by <%= con %>. Enchanted Armoire: Candlestick Maker Set (Item 1 of 3).",
"armorArmoireWovenRobesText": "Woven Robes",
- "armorArmoireWovenRobesNotes": "Display your weaving work proudly by wearing this colorful robe! Increases Constitution by <%= con %> and Intelligence by <%= int %>. Enchanted Armoire: Weaver Set (Item 1 of 3).",
+ "armorArmoireWovenRobesNotes": "Display your weaving work proudly by wearing this colourful robe! Increases Constitution by <%= con %> and Intelligence by <%= int %>. Enchanted Armoire: Weaver Set (Item 1 of 3).",
"armorArmoireLamplightersGreatcoatText": "Lamplighter's Greatcoat",
"armorArmoireLamplightersGreatcoatNotes": "This heavy woolen coat can stand up to the harshest wintry night! Increases Perception by <%= per %>. Enchanted Armoire: Lamplighter's Set (Item 2 of 4).",
"armorArmoireCoachDriverLiveryText": "Coach Driver's Livery",
@@ -803,7 +803,7 @@
"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).",
"armorArmoireJeweledArcherArmorText": "Jeweled Archer Armor",
- "armorArmoireJeweledArcherArmorNotes": "This finely crafted armor will protect you from projectiles or errant red Dailies! Increases Constitution by <%= con %>. Enchanted Armoire: Jeweled Archer Set (Item 2 of 3).",
+ "armorArmoireJeweledArcherArmorNotes": "This finely crafted armour will protect you from projectiles or errant red Dailies! Increases Constitution by <%= con %>. Enchanted Armoire: Jeweled Archer Set (Item 2 of 3).",
"armorArmoireCoverallsOfBookbindingText": "Coveralls of Bookbinding",
"armorArmoireCoverallsOfBookbindingNotes": "Everything you need in a set of coveralls, including pockets for everything. A pair of goggles, loose change, a golden ring... Increases Constitution by <%= con %> and Perception by <%= per %>. Enchanted Armoire: Bookbinder Set (Item 2 of 4).",
"armorArmoireRobeOfSpadesText": "Robe of Spades",
@@ -811,9 +811,9 @@
"armorArmoireSoftBlueSuitText": "Soft Blue Suit",
"armorArmoireSoftBlueSuitNotes": "Blue is a calming colour. So calming, some even wear this soft outfit to sleep... zZz. Increases Intelligence by <%= int %> and Perception by <%= per %>. Enchanted Armoire: Blue Loungewear Set (Item 2 of 3).",
"armorArmoireSoftGreenSuitText": "Soft Green Suit",
- "armorArmoireSoftGreenSuitNotes": "Green is the most refreshing color! Ideal for resting those tired eyes... mmm, or even a nap... Increases Constitution and Intelligence by <%= attrs %> each. Enchanted Armoire: Green Loungewear Set (Item 2 of 3).",
+ "armorArmoireSoftGreenSuitNotes": "Green is the most refreshing colour! Ideal for resting those tired eyes... mmm, or even a nap... Increases Constitution and Intelligence by <%= attrs %> each. Enchanted Armoire: Green Loungewear Set (Item 2 of 3).",
"armorArmoireSoftRedSuitText": "Soft Red Suit",
- "armorArmoireSoftRedSuitNotes": "Red is such an invigorating color. If you need to wake up bright and early, this suit could make the perfect pajamas... Increases Intelligence by <%= int %> and Strength by <%= str %>. Enchanted Armoire: Red Loungewear Set (Item 2 of 3).",
+ "armorArmoireSoftRedSuitNotes": "Red is such an invigorating colour. If you need to wake up bright and early, this suit could make the perfect pajamas... Increases Intelligence by <%= int %> and Strength by <%= str %>. Enchanted Armoire: Red Loungewear Set (Item 2 of 3).",
"armorArmoireScribesRobeText": "Scribe's Robes",
"armorArmoireScribesRobeNotes": "These velvety robes are woven with inspirational and motivational magic. Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Scribe Set (Item 1 of 3).",
"headgear": "helm",
@@ -833,7 +833,7 @@
"headRogue1Text": "Leather Hood",
"headRogue1Notes": "Basic protective cowl. Increases Perception by <%= per %>.",
"headRogue2Text": "Black Leather Hood",
- "headRogue2Notes": "Useful for both defense and disguise. Increases Perception by <%= per %>.",
+ "headRogue2Notes": "Useful for both defence and disguise. Increases Perception by <%= per %>.",
"headRogue3Text": "Camouflage Hood",
"headRogue3Notes": "Rugged, but doesn't impede hearing. Increases Perception by <%= per %>.",
"headRogue4Text": "Penumbral Hood",
@@ -863,7 +863,7 @@
"headSpecial0Text": "Shade Helm",
"headSpecial0Notes": "Blood and ash, lava and obsidian give this helm its imagery and power. Increases Intelligence by <%= int %>.",
"headSpecial1Text": "Crystal Helm",
- "headSpecial1Notes": "The favored crown of those who lead by example. Increases all Stats by <%= attrs %>.",
+ "headSpecial1Notes": "The favoured crown of those who lead by example. Increases all Stats by <%= attrs %>.",
"headSpecial2Text": "Nameless Helm",
"headSpecial2Notes": "A testament to those who gave of themselves while asking nothing in return. Increases Intelligence and Strength by <%= attrs %> each.",
"headSpecialTakeThisText": "Take This Helm",
@@ -949,7 +949,7 @@
"headSpecialSpring2015MageText": "Stage Mage Hat",
"headSpecialSpring2015MageNotes": "Which came first, the bunny or the hat? Increases Perception by <%= per %>. Limited Edition 2015 Spring Gear.",
"headSpecialSpring2015HealerText": "Comforting Crown",
- "headSpecialSpring2015HealerNotes": "The pearl at the center of this crown calms and comforts those around it. Increases Intelligence by <%= int %>. Limited Edition 2015 Spring Gear.",
+ "headSpecialSpring2015HealerNotes": "The pearl at the centre of this crown calms and comforts those around it. Increases Intelligence by <%= int %>. Limited Edition 2015 Spring Gear.",
"headSpecialSummer2015RogueText": "Renegade Hat",
"headSpecialSummer2015RogueNotes": "This pirate hat fell overboard and has been decorated with scraps of fire coral. Increases Perception by <%= per %>. Limited Edition 2015 Summer Gear.",
"headSpecialSummer2015WarriorText": "Jeweled Oceanic Helm",
@@ -1071,7 +1071,7 @@
"headSpecialNye2018Text": "Outlandish Party Hat",
"headSpecialNye2018Notes": "You've received an Outlandish Party Hat! Wear it with pride while ringing in the New Year! Confers no benefit.",
"headSpecialWinter2019RogueText": "Poinsettia Helm",
- "headSpecialWinter2019RogueNotes": "This leafy helm will attain its brightest red color right around the darkest days of winter, helping you blend in with holiday decor! Increases Perception by <%= per %>. Limited Edition 2018-2019 Winter Gear.",
+ "headSpecialWinter2019RogueNotes": "This leafy helm will attain its brightest red colour right around the darkest days of winter, helping you blend in with holiday decor! Increases Perception by <%= per %>. Limited Edition 2018-2019 Winter Gear.",
"headSpecialWinter2019WarriorText": "Glacial Helm",
"headSpecialWinter2019WarriorNotes": "It's important to keep a cool head! This icy helm will protect you from any opponent's blows. Increases Strength by <%= str %>. Limited Edition 2018-2019 Winter Gear.",
"headSpecialWinter2019MageText": "Flaming Fireworks",
@@ -1139,7 +1139,7 @@
"headMystery201707Text": "Jellymancer Helm",
"headMystery201707Notes": "Need some extra hands for your tasks? This translucent jelly helm has quite a few tentacles to lend you help! Confers no benefit. July 2017 Subscriber Item.",
"headMystery201710Text": "Imperious Imp Helm",
- "headMystery201710Notes": "This helm makes you look intimidating... but it won't do any favors for your depth perception! Confers no benefit. October 2017 Subscriber Item.",
+ "headMystery201710Notes": "This helm makes you look intimidating... but it won't do any favours for your depth perception! Confers no benefit. October 2017 Subscriber Item.",
"headMystery201712Text": "Candlemancer Crown",
"headMystery201712Notes": "This crown will bring light and warmth to even the darkest winter night. Confers no benefit. December 2017 Subscriber Item.",
"headMystery201802Text": "Love Bug Helm",
@@ -1157,7 +1157,7 @@
"headMystery201809Text": "Crown of Autumn Flowers",
"headMystery201809Notes": "The last flowers of autumn's warm days are a reminder of the beauty of the season. Confers no benefit. September 2018 Subscriber Item.",
"headMystery201810Text": "Dark Forest Helm",
- "headMystery201810Notes": "If you find yourself traveling through a spooky place, the glowing red eyes of this helm will surely scare away any enemies in your path. Confers no benefit. October 2018 Subscriber Item.",
+ "headMystery201810Notes": "If you find yourself travelling through a spooky place, the glowing red eyes of this helm will surely scare away any enemies in your path. Confers no benefit. October 2018 Subscriber Item.",
"headMystery201811Text": "Splendid Sorcerer's Hat",
"headMystery201811Notes": "Wear this feathered hat to stand out at even the fanciest wizardly gatherings! Confers no benefit. November 2018 Subscriber Item.",
"headMystery201901Text": "Polaris Helm",
@@ -1181,7 +1181,7 @@
"headArmoireRancherHatText": "Rancher Hat",
"headArmoireRancherHatNotes": "Round up your pets and wrangle your mounts while wearing this magical Rancher Hat! Increases Strength by <%= str %>, Perception by <%= per %>, and Intelligence by <%= int %>. Enchanted Armoire: Rancher Set (Item 1 of 3).",
"headArmoireBlueHairbowText": "Blue Hairbow",
- "headArmoireBlueHairbowNotes": "Become perceptive, tough, and smart while wearing this beautiful Blue Hairbow! Increases Perception by <%= per %>, Constitution by <%= con %>, and Intelligence by <%= int %>. Enchanted Armoire: Independent Item.",
+ "headArmoireBlueHairbowNotes": "Become perceptive, tough, and smart while wearing this beautiful Blue Hairbow! Increases Perception by <%= per %>, Constitution by <%= con %>, and Intelligence by <%= int %>. Enchanted Armoire: Blue Hairbow Set (Item 1 of 2).",
"headArmoireRoyalCrownText": "Royal Crown",
"headArmoireRoyalCrownNotes": "Hooray for the ruler, mighty and strong! Increases Strength by <%= str %>. Enchanted Armoire: Royal Set (Item 1 of 3).",
"headArmoireGoldenLaurelsText": "Golden Laurels",
@@ -1191,7 +1191,7 @@
"headArmoireYellowHairbowText": "Yellow Hairbow",
"headArmoireYellowHairbowNotes": "Become perceptive, strong, and smart while wearing this beautiful Yellow Hairbow! Increases Perception, Strength, and Intelligence by <%= attrs %> each. Enchanted Armoire: Yellow Hairbow Set (Item 1 of 2).",
"headArmoireRedFloppyHatText": "Red Floppy Hat",
- "headArmoireRedFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a radiant red color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Red Loungewear Set (Item 1 of 3).",
+ "headArmoireRedFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a radiant red colour. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Red Loungewear Set (Item 1 of 3).",
"headArmoirePlagueDoctorHatText": "Plague Doctor Hat",
"headArmoirePlagueDoctorHatNotes": "An authentic hat worn by the doctors who battle the Plague of Procrastination! Increases Strength by <%= str %>, Intelligence by <%= int %>, and Constitution by <%= con %>. Enchanted Armoire: Plague Doctor Set (Item 1 of 3).",
"headArmoireBlackCatText": "Black Cat Hat",
@@ -1199,7 +1199,7 @@
"headArmoireOrangeCatText": "Orange Cat Hat",
"headArmoireOrangeCatNotes": "This orange hat is... purring. And twitching its tail. And breathing? Yeah, you just have a sleeping cat on your head. Increases Strength and Constitution by <%= attrs %> each. Enchanted Armoire: Independent Item.",
"headArmoireBlueFloppyHatText": "Blue Floppy Hat",
- "headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Blue Loungewear Set (Item 1 of 3).",
+ "headArmoireBlueFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a brilliant blue colour. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Blue Loungewear Set (Item 1 of 3).",
"headArmoireShepherdHeaddressText": "Shepherd Headdress",
"headArmoireShepherdHeaddressNotes": "Sometimes the gryphons that you herd like to chew on this headdress, but it makes you seem more intelligent nonetheless. Increases Intelligence by <%= int %>. Enchanted Armoire: Shepherd Set (Item 3 of 3).",
"headArmoireCrystalCrescentHatText": "Crystal Crescent Hat",
@@ -1217,7 +1217,7 @@
"headArmoireGraduateCapText": "Mortar Board",
"headArmoireGraduateCapNotes": "Congratulations! Your deep thoughts have earned you this thinking cap. Increases Intelligence by <%= int %>. Enchanted Armoire: Graduate Set (Item 3 of 3).",
"headArmoireGreenFloppyHatText": "Green Floppy Hat",
- "headArmoireGreenFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a gorgeous green color. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Green Loungewear Set (Item 1 of 3).",
+ "headArmoireGreenFloppyHatNotes": "Many spells have been sewn into this simple hat, giving it a gorgeous green colour. Increases Constitution, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Green Loungewear Set (Item 1 of 3).",
"headArmoireCannoneerBandannaText": "Cannoneer Bandanna",
"headArmoireCannoneerBandannaNotes": "'Tis a cannoneer's life for me! Increases Intelligence and Perception by <%= attrs %> each. Enchanted Armoire: Cannoneer Set (Item 3 of 3).",
"headArmoireFalconerCapText": "Falconer Cap",
@@ -1369,7 +1369,7 @@
"shieldSpecialSpring2016RogueText": "Fire Bolas",
"shieldSpecialSpring2016RogueNotes": "You've mastered the ball, the club, and the knife. Now you advance to juggling fire! Woo! Increases Strength <%= str %>. Limited Edition 2016 Spring Gear.",
"shieldSpecialSpring2016WarriorText": "Cheese Wheel",
- "shieldSpecialSpring2016WarriorNotes": "You braved fiendish traps to procure this defense-boosting food. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.",
+ "shieldSpecialSpring2016WarriorNotes": "You braved fiendish traps to procure this defence-boosting food. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.",
"shieldSpecialSpring2016HealerText": "Floral Buckler",
"shieldSpecialSpring2016HealerNotes": "The April Fool claims this little shield will block Shiny Seeds. Don't believe him. Increases Constitution by <%= con %>. Limited Edition 2016 Spring Gear.",
"shieldSpecialSummer2016RogueText": "Electric Rod",
@@ -1763,7 +1763,7 @@
"shieldMystery201902Text": "Cryptic Confetti",
"shieldMystery201902Notes": "This glittery paper forms magic hearts that slowly drift and dance in the air. Confers no benefit. February 2019 Subscriber Item",
"shieldArmoireMightyPizzaText": "Mighty Pizza",
- "shieldArmoireMightyPizzaNotes": "Sure, it's a pretty good shield, but we strongly suggest you eat this fine, fine pizza. Increases Perception by <%= per %>. Enchanted Armoire: Chef Set (Item 4 of 4). ",
+ "shieldArmoireMightyPizzaNotes": "Sure, it's a pretty good shield, but we strongly suggest you eat this fine, fine pizza. Increases Perception by <%= per %>. Enchanted Armoire: Chef Set (Item 4 of 4).",
"eyewearMystery201902Text": "Cryptic Crush Mask",
"eyewearMystery201902Notes": "This mysterious mask hides your identity but not your winning smile. Confers no benefit. February 2019 Subscriber Item.",
"weaponSpecialSummer2019HealerText": "Bubble Wand",
@@ -1780,5 +1780,250 @@
"weaponSpecialSpring2019WarriorNotes": "Bad habits cower before this verdant blade. Increases Strength by <%= str %>. Limited Edition 2019 Spring Gear.",
"weaponSpecialSpring2019WarriorText": "Stem Sword",
"weaponSpecialSpring2019RogueNotes": "These weapons contain the power of the sky and rain. We recommend that you not use them while immersed in water. Increases Strength by <%= str %>. Limited Edition 2019 Spring Gear.",
- "weaponSpecialSpring2019RogueText": "Lightning Bolt"
+ "weaponSpecialSpring2019RogueText": "Lightning Bolt",
+ "shieldSpecialPiDayText": "Pi Shield",
+ "shieldSpecialFall2019WarriorNotes": "The dark sheen of a raven's feather made solid, this shield will frustrate all attacks. Increases Constitution by <%= con %>. Limited Edition 2019 Autumn Gear.",
+ "shieldSpecialFall2019HealerText": "Grotesque Grimoire",
+ "shieldSpecialFall2019HealerNotes": "Harness the dark side of the Healer's arts with this Grimoire! Increases Constitution by <%= con %>. Limited Edition 2019 Autumn Gear.",
+ "shieldSpecialWinter2020WarriorText": "Round Conifer Cone",
+ "shieldSpecialWinter2020WarriorNotes": "Use it as a shield until the seeds drop, and then you can put it on a wreath! Increases Constitution by <%= con %>. Limited Edition 2019-2020 Winter Gear.",
+ "shieldSpecialWinter2020HealerText": "Giant Cinnamon Stick",
+ "shieldSpecialWinter2020HealerNotes": "Do you feel you are too good for this world, too pure? Only this beauty of a spice will do. Increases Constitution by <%= con %>. Limited Edition 2019-2020 Winter Gear.",
+ "shieldArmoireTrustyUmbrellaText": "Trusty Umbrella",
+ "shieldArmoireTrustyUmbrellaNotes": "Mysteries are often accompanied by inclement weather, so be prepared! Increases Intelligence by <%= int %>. Enchanted Armoire: Detective Set (Item 4 of 4).",
+ "shieldArmoirePolishedPocketwatchText": "Polished Pocketwatch",
+ "shieldArmoirePolishedPocketwatchNotes": "You've got the time. And it looks very nice on you. Increases Intelligence by <%= int %>. Enchanted Armoire: Independent Item.",
+ "shieldArmoireMasteredShadowText": "Mastered Shadow",
+ "shieldArmoireMasteredShadowNotes": "Your powers have brought these swirling shadows to your side to do your bidding. Increases Perception and Constitution by <%= attrs %> each. Enchanted Armoire: Shadow Master Set (Item 4 of 4).",
+ "shieldArmoireAlchemistsScaleText": "Alchemist's Scale",
+ "shieldArmoireAlchemistsScaleNotes": "Ensure that your mystical ingredients are properly measured using this fine piece of equipment. Increases Intelligence by <%= int %>. Enchanted Armoire: Alchemist Set (Item 4 of 4).",
+ "shieldArmoireBirthdayBannerText": "Birthday Banner",
+ "shieldArmoireBirthdayBannerNotes": "Celebrate your special day, the special day of someone you love, or break this out for Habitica's Birthday on January 31! Increases Strength by <%= str %>. Enchanted Armoire: Happy Birthday Set (Item 4 of 4).",
+ "backMystery201905Text": "Dazzling Dragon Wings",
+ "backMystery201905Notes": "Fly to untold realms with these iridescent wings. Confers no benefit. May 2019 Subscriber Item.",
+ "backMystery201912Text": "Polar Pixie Wings",
+ "shieldSpecialFall2019WarriorText": "Raven-Dark Shield",
+ "shieldSpecialSummer2019MageNotes": "Sweating in the summer sun? No! Performing a simple elemental conjuration to fill the lily pond. Increases Perception by <%= per %>. Limited Edition 2019 Summer Gear.",
+ "shieldSpecialSummer2019MageText": "Drops of Pure Water",
+ "shieldSpecialSummer2019HealerNotes": "Let those who need help know you're coming with the loud blast of this shell trumpet. Limited Edition 2019 Summer Gear. Increases Constitution by 9. ",
+ "shieldSpecialSummer2019HealerText": "Conch Trumpet",
+ "shieldSpecialSummer2019WarriorNotes": "Turtle up behind this hefty round shield, etched in the pattern of your favourite reptile's back. Increases Constitution by <%= con %>. Limited Edition 2019 Summer Gear.",
+ "shieldSpecialSummer2019WarriorText": "Half-Shell Shield",
+ "shieldSpecialSpring2019HealerNotes": "This bright shield is actually made of candy-coated chocolate. Increases Constitution by <%= con %>. Limited Edition 2019 Spring Gear.",
+ "shieldSpecialSpring2019HealerText": "Eggshell Shield",
+ "shieldSpecialSpring2019WarriorNotes": "Let the power of chlorophyll keep your enemies at bay! Increases Constitution by <%= con %>. Limited Edition 2019 Spring Gear.",
+ "shieldSpecialKS2019Notes": "Sparkling like the shell of a gryphon egg, this magnificent shield shows you how to stand ready to help when your own burdens are light. Increases Perception by <%= per %>.",
+ "shieldSpecialSpring2019WarriorText": "Leafy Shield",
+ "shieldSpecialKS2019Text": "Mythic Gryphon Shield",
+ "shieldSpecialPiDayNotes": "We dare you to calculate the ratio of this shield's circumference to its deliciousness! Confers no benefit.",
+ "headArmoireFrostedHelmNotes": "The perfect headgear for any celebration! Increases Intelligence by <%= int %>. Enchanted Armoire: Happy Birthday Set (Item 1 of 4).",
+ "headArmoireFrostedHelmText": "Frosted Helm",
+ "headArmoireEarflapHatNotes": "If you're looking to keep your head toasty warm, this hat has you covered! Increases Intelligence and Strength by <%= attrs %> each. Enchanted Armoire: Duffle Coat Set (Item 2 of 2).",
+ "headArmoireEarflapHatText": "Earflap Hat",
+ "headArmoireAlchemistsHatNotes": "While hats are not strictly necessary for alchemical practice, looking cool certainly doesn't hurt anything! Increases Perception by <%= per %>. Enchanted Armoire: Alchemist Set (Item 2 of 4).",
+ "headArmoireAlchemistsHatText": "Alchemist's Hat",
+ "headArmoireShadowMastersHoodNotes": "This hood grants you the power to see through even the deepest darkness. It may occasionally require eyedrops, though. Increases Perception and Constitution by <%= attrs %> each. Enchanted Armoire: Shadow Master Set (Item 2 of 4).",
+ "headArmoireShadowMastersHoodText": "Shadow Master's Hood",
+ "headArmoireDeerstalkerCapNotes": "This cap is perfect for rural excursions, but also is acceptable gear for mystery-solving! Increases Intelligence by <%= int %>. Enchanted Armoire: Detective Set (Item 1 of 4).",
+ "headArmoireDeerstalkerCapText": "Deerstalker Cap",
+ "headArmoireAstronomersHatNotes": "A perfect hat for celestial observation or a fancy wizard brunch. Increases Constitution by <%= con %>. Enchanted Armoire: Astronomer Mage Set (Item 2 of 3).",
+ "headArmoireAstronomersHatText": "Astronomer's Hat",
+ "headArmoireBoaterHatNotes": "This straw chapeau is the bee's knees! Increases Strength, Constitution, and Perception by <%= attrs %> each. Enchanted Armoire: Boating Set (Item 2 of 3).",
+ "headArmoireBoaterHatText": "Boater Hat",
+ "headArmoireNephriteHelmNotes": "The carved jade plume atop this helm is enchanted to enhance your aim. Increases Perception by <%= per %> and Intelligence by <%= int %>. Enchanted Armoire: Nephrite Archer Set (Item 2 of 3).",
+ "headArmoireNephriteHelmText": "Nephrite Helm",
+ "headArmoireTricornHatNotes": "Become a revolutionary jokester! Increases Perception by <%= per %>. Enchanted Armoire: Independent Item.",
+ "headArmoireTricornHatText": "Tricorn Hat",
+ "headMystery202001Notes": "Your hearing will be so sharp, you'll hear the stars twinkling and the moon spinning. Confers no benefit. January 2020 Subscriber Item.",
+ "headMystery202001Text": "Fabled Fox Ears",
+ "headMystery201912Notes": "This glittering snowflake grants you resistance to the biting cold no matter how high you fly! Confers no benefit. December 2019 Subscriber Item.",
+ "headMystery201912Text": "Polar Pixie Crown",
+ "headMystery201911Notes": "Each of the crystal points attached to this hat endows you with a special power: mystic clairvoyance, arcane wisdom, and... sorcerous plate spinning? All right then. Confers no benefit. November 2019 Subscriber Item.",
+ "headMystery201911Text": "Charmed Crystal Hat",
+ "headMystery201910Text": "Cryptic Flame",
+ "headMystery201909Text": "Affable Acorn Hat",
+ "headMystery201907Notes": "Nothing says “I'm relaxing here!” like a backwards cap. Confers no benefit. July 2019 Subscriber Item.",
+ "headMystery201907Text": "Backwards Cap",
+ "headMystery201904Text": "Opulent Opal Circlet",
+ "headMystery201903Notes": "Some may call you an egghead, but that's OK because you know how to take a yolk. Confers no benefit. March 2019 Subscriber Item.",
+ "headSpecialWinter2020HealerNotes": "Please remove it from your head before attempting to brew chai or coffee with it. Increases Intelligence by <%= int %>. Limited Edition 2019-2020 Winter Gear.",
+ "headMystery201903Text": "Sunny Side Up Helm",
+ "headSpecialWinter2020HealerText": "Star Anise Emblem",
+ "headSpecialWinter2020MageNotes": "Oh! How the bells / Sweet golden bells / All seem to say, / “Cast ‘Burst of Flames’” Increases Perception by <%= per %>. Limited Edition 2019-2020 Winter Gear.",
+ "headSpecialWinter2020MageText": "Bell Crown",
+ "headSpecialWinter2020WarriorNotes": "A prickly feeling on your scalp is a small price to pay for seasonal magnificence. Increases Strength by <%= str %>. Limited Edition 2019-2020 Winter Gear.",
+ "headSpecialWinter2020WarriorText": "Snow-Dusted Headdress",
+ "headSpecialWinter2020RogueNotes": "A Rogue walks down the street in that hat, people know they're not afraid of anything. Increases Perception by <%= per %>. Limited Edition 2019-2020 Winter Gear.",
+ "headSpecialWinter2020RogueText": "Floofy Stocking Cap",
+ "headSpecialNye2019Text": "Outrageous Party Hat",
+ "headSpecialNye2019Notes": "You've received an Outrageous Party Hat! Wear it with pride while ringing in the New Year! Confers no benefit.",
+ "headSpecialFall2019MageNotes": "Its single baleful eye does inhibit depth perception, but that is a small price to pay for the way it hones your focus to a single, intense point. Increases Perception by <%= per %>. Limited Edition 2019 Autumn Gear.",
+ "headSpecialFall2019MageText": "Cyclops Mask",
+ "headMystery201910Notes": "These flames reveal arcane secrets before your very eyes! Confers no benefit. October 2019 Subscriber Item.",
+ "headMystery201909Notes": "Every acorn needs a hat! Er, cupule, if you want to get technical about it. Confers no benefit. September 2019 Subscriber Item.",
+ "headSpecialFall2019WarriorText": "Obsidian Skull Helmet",
+ "headSpecialFall2019WarriorNotes": "The dark eye-sockets of this skull helmet will daunt the bravest of your enemies. Increases Strength by <%= str %>. Limited Edition 2019 Autumn Gear.",
+ "headSpecialFall2019RogueNotes": "Did you find this headpiece at an auction of possibly-cursed costume pieces, or in the attic of an eccentric grandparent? Whatever its origin, its age and wear add to your air of mystery. Increases Perception by <%= per %>. Limited Edition 2019 Autumn Gear.",
+ "headSpecialSummer2019HealerText": "Conch Crown",
+ "headSpecialFall2019RogueText": "Antique Opera Hat",
+ "headSpecialSummer2019MageNotes": "Contrary to popular belief, your head is not an appropriate place for frogs to perch. Increases Perception by <%= per %>. Limited Edition 2019 Summer Gear.",
+ "headSpecialSummer2019WarriorNotes": "It won't let you pull your head down between your shoulders, but it will protect you if you bonk the bottom of a boat. Increases Strength by <%= str %>. Limited Edition 2019 Summer Gear.",
+ "headSpecialSummer2019MageText": "Lily Pad Hat",
+ "headSpecialSummer2019WarriorText": "Turtle Helm",
+ "headSpecialSummer2019RogueNotes": "This helm gives you a 360 degree view of surrounding waters, which is perfect for sneaking up on unsuspecting red Dailies. Increases Perception by <%= per %>. Limited Edition 2019 Summer Gear.",
+ "headSpecialSummer2019RogueText": "Hammerhead Helm",
+ "headSpecialSpring2019HealerNotes": "Be ready for the first day of spring with this cute beaky helm. Increases Intelligence by <%= int %>. Limited Edition 2019 Spring Gear.",
+ "headSpecialSpring2019HealerText": "Robin Helm",
+ "headSpecialSpring2019MageNotes": "A glowing amber gem grants this hat the power of arcane natural forces. Increases Perception by <%= per %>. Limited Edition 2019 Spring Gear.",
+ "headSpecialSpring2019MageText": "Amber Hat",
+ "headSpecialSpring2019WarriorNotes": "This helm is unbreakable and tough! Also it attracts butterflies. Increases Strength by <%= str %>. Limited Edition 2019 Spring Gear.",
+ "headSpecialSpring2019WarriorText": "Orchid Helm",
+ "headSpecialSpring2019RogueNotes": "No one will notice a cloud quietly drifting toward their stash of Gold, right? Increases Perception by <%= per %>. Limited Edition 2019 Spring Gear.",
+ "headSpecialSpring2019RogueText": "Cloud Helm",
+ "headSpecialKS2019Notes": "Adorned with a gryphon's likeness and plumage, this glorious helmet symbolises the way your skills and bearing stand as an example to others. Increases Intelligence by <%= int %>.",
+ "headSpecialKS2019Text": "Mythic Gryphon Helm",
+ "headSpecialPiDayNotes": "Try to balance this slice of delicious pie on your head while walking in a circle. Or throw it at a red Daily! Or you could just eat it. Your choice! Confers no benefit.",
+ "headSpecialPiDayText": "Pi Hat",
+ "armorArmoireLayerCakeArmorNotes": "It's protective and tasty! Increases Constitution by <%= con %>. Enchanted Armoire: Happy Birthday Set (Item 2 of 4).",
+ "armorArmoireDuffleCoatText": "Duffle Coat",
+ "armorArmoireAlchemistsRobeNotes": "Any number of dangerous elixirs are involved in creating arcane metals and gems, and these heavy robes will protect you from harm and unintended side effects! Increases Constitution by <%= con %> and Perception by <%= per %>. Enchanted Armoire: Alchemist Set (Item 1 of 4).",
+ "armorArmoireAlchemistsRobeText": "Alchemist's Robe",
+ "armorArmoireShadowMastersRobeNotes": "The fabric of this flowy robe is woven from the darkest shadows in the deepest caves of Habitica. Increases Constitution by <%= con %>. Enchanted Armoire: Shadow Master Set (Item 1 of 4).",
+ "armorArmoireShadowMastersRobeText": "Shadow Master's Robe",
+ "armorArmoireInvernessCapeNotes": "This sturdy garment will let you search for clues in any type of weather. Increases Perception and Intelligence by <%= attrs %> each. Enchanted Armoire: Detective Set (Item 2 of 4).",
+ "armorArmoireInvernessCapeText": "Inverness Cape",
+ "armorArmoireAstronomersRobeNotes": "Turns out silk and starlight make a fabric that is not only magical, but very breathable. Increases Perception and Constitution by <%= attrs %> each. Enchanted Armoire: Astronomer Mage Set (Item 1 of 3).",
+ "armorArmoireAstronomersRobeText": "Astronomer's Robe",
+ "armorArmoireBoatingJacketNotes": "Whether you're on a swanky yacht or in a jalopy, you'll be the cat's meow in this jacket and tie. Increases Strength, Intelligence, and Perception by <%= attrs %> each. Enchanted Armoire: Boating Set (Item 1 of 3).",
+ "armorArmoireBoatingJacketText": "Boating Jacket",
+ "armorMystery201909Notes": "Your tough exterior is protective, but it's still best to keep an eye out for squirrels... Confers no benefit. September 2019 Subscriber Item.",
+ "armorMystery201908Notes": "These legs were made for dancing! And that's just what they'll do. Confers no benefit. August 2019 Subscriber Item.",
+ "armorMystery201908Text": "Footloose Faun Costume",
+ "armorMystery201907Notes": "Stay cool and look cool on even the hottest summer day. Confers no benefit. July 2019 Subscriber Item.",
+ "armorMystery201907Text": "Flowery Shirt",
+ "armorMystery201906Notes": "We will spare you a pun about “playing koi.” Oh wait, oops. Confers no benefit. June 2019 Subscriber Item.",
+ "backMystery201912Notes": "Glide silently across sparkling snowfields and shimmering mountains with these icy wings. Confers no benefit. December 2019 Subscriber Item.",
+ "backMystery202001Text": "Five Tails of Fable",
+ "backMystery202001Notes": "These fluffy tails contain celestial power, and also a high level of cuteness! Confers no benefit. January 2020 Subscriber Item.",
+ "headAccessoryMystery201905Text": "Dazzling Dragon Horns",
+ "headAccessoryMystery201905Notes": "These horns are as sharp as they are shimmery. Confers no benefit. May 2019 Subscriber Item.",
+ "headAccessoryMystery201906Text": "Kindly Koi Ears",
+ "headAccessoryMystery201906Notes": "Legend has it these finny ears help merfolk hear the calls and songs of all the denizens of the deep! Confers no benefit. June 2019 Subscriber Item.",
+ "headAccessoryMystery201908Text": "Footloose Faun Horns",
+ "headAccessoryMystery201908Notes": "If wearing horns floats your goat, you're in luck! Confers no benefit. August 2019 Subscriber Item.",
+ "eyewearSpecialBlackHalfMoonText": "Black Half-Moon Eyeglasses",
+ "eyewearSpecialBlackHalfMoonNotes": "Glasses with a black frame and crescent lenses. Confers no benefit.",
+ "eyewearSpecialBlueHalfMoonText": "Blue Half-Moon Eyeglasses",
+ "eyewearSpecialBlueHalfMoonNotes": "Glasses with a blue frame and crescent lenses. Confers no benefit.",
+ "eyewearSpecialGreenHalfMoonText": "Green Half-Moon Eyeglasses",
+ "eyewearSpecialGreenHalfMoonNotes": "Glasses with a green frame and crescent lenses. Confers no benefit.",
+ "eyewearSpecialPinkHalfMoonText": "Pink Half-Moon Eyeglasses",
+ "eyewearSpecialPinkHalfMoonNotes": "Glasses with a pink frame and crescent lenses. Confers no benefit.",
+ "eyewearSpecialRedHalfMoonText": "Red Half-Moon Eyeglasses",
+ "eyewearSpecialRedHalfMoonNotes": "Glasses with a red frame and crescent lenses. Confers no benefit.",
+ "eyewearSpecialWhiteHalfMoonText": "White Half-Moon Eyeglasses",
+ "eyewearSpecialWhiteHalfMoonNotes": "Glasses with a white frame and crescent lenses. Confers no benefit.",
+ "eyewearSpecialYellowHalfMoonText": "Yellow Half-Moon Eyeglasses",
+ "eyewearSpecialYellowHalfMoonNotes": "Glasses with a yellow frame and crescent lenses. Confers no benefit.",
+ "eyewearSpecialKS2019Text": "Mythic Gryphon Visor",
+ "eyewearSpecialKS2019Notes": "Bold as a gryphon's... hmm, gryphons don't have visors. It reminds you to... oh, who are we kidding, it just looks cool! Confers no benefit.",
+ "eyewearSpecialFall2019RogueText": "Bone-White Half Mask",
+ "eyewearSpecialFall2019RogueNotes": "You'd think a full mask would protect your identity better, but people tend to be too awestruck by its stark design to take note of any identifying features left revealed. Confers no benefit. Limited Edition 2019 Autumn Gear.",
+ "eyewearSpecialFall2019HealerText": "Dark Visage",
+ "eyewearSpecialFall2019HealerNotes": "Steel yourself against the toughest foes with this inscrutable mask. Confers no benefit. Limited Edition 2019 Autumn Gear.",
+ "armorMystery201906Text": "Kindly Koi Tail",
+ "armorMystery201904Notes": "This shining garment has opals sewn into the front panel to grant you arcane powers and a fabulous look. Confers no benefit. April 2019 Subscriber Item.",
+ "armorMystery201904Text": "Opalescent Outfit",
+ "armorMystery201903Notes": "People are dye-ing to know where you got this egg-cellent outfit! Confers no benefit. March 2019 Subscriber Item.",
+ "armorSpecialWinter2020HealerNotes": "An opulent gown for those with festive zest! Increases Constitution by <%= con %>. Limited Edition 2019-2020 Winter Gear.",
+ "armorSpecialWinter2020HealerText": "Orange Peel Gown",
+ "armorSpecialWinter2020MageNotes": "Ring in the new year warm, comfy, and buffered against excessive vibration. Increases Intelligence by <%= int %>. Limited Edition 2019-2020 Winter Gear.",
+ "armorSpecialWinter2020MageText": "Curvy Coat",
+ "armorSpecialWinter2020WarriorNotes": "O mighty pine, o towering fir, lend your strength. Or rather, your Constitution! Increases Constitution by <%= con %>. Limited Edition 2019-2020 Winter Gear.",
+ "armorSpecialWinter2020RogueNotes": "While no doubt you can brave storms with the inner warmth of your drive and devotion, it doesn't hurt to dress for the weather. Increases Perception by <%= per %>. Limited Edition 2019-2020 Winter Gear.",
+ "armorSpecialWinter2020RogueText": "Poofy Parka",
+ "armorSpecialFall2019HealerNotes": "It's said these robes are made of pure night. Use the dark power wisely! Increases Constitution by <%= con %>. Limited Edition 2019 Autumn Gear.",
+ "armorSpecialFall2019HealerText": "Robes of Darkness",
+ "armorSpecialFall2019MageNotes": "Its namesake met a terrible fate. But you will not be so easily tricked! Garb yourself in this mantle of legend and nobody will surpass you. Increases Intelligence by <%= int %>. Limited Edition 2019 Autumn Gear.",
+ "armorSpecialFall2019MageText": "Smock of Polyphemus",
+ "armorSpecialFall2019WarriorNotes": "These feathered robes grant the power of flight, allowing you to soar over any battle. Increases Constitution by <%= con %>. Limited Edition 2019 Autumn Gear.",
+ "armorSpecialFall2019WarriorText": "Wings of Night",
+ "armorSpecialFall2019RogueNotes": "This outfit comes complete with white gloves, and is ideal for brooding in your private box above the stage or making startling entrances down grand staircases. Increases Perception by <%= per %>. Limited Edition 2019 Autumn Gear.",
+ "armorSpecialFall2019RogueText": "Caped Opera Coat",
+ "armorSpecialSummer2019HealerNotes": "Glide sleekly through warm coastal waters with this elegant tail. Increases Constitution by <%= con %>. Limited Edition 2019 Summer Gear.",
+ "armorSpecialSummer2019HealerText": "Tropical Tides Tail",
+ "armorSpecialSummer2019MageNotes": "The lilies will know you as one of their own, and will not fear your approach. Increases Intelligence by <%= int %>. Limited Edition 2019 Summer Gear.",
+ "armorSpecialSummer2019MageText": "Floral Frock",
+ "armorSpecialSummer2019RogueNotes": "This sinuous tail is perfect for making tight turns during daring aquatic escapes. Increases Perception by <%= per %>. Limited Edition 2019 Summer Gear.",
+ "armorSpecialSummer2019RogueText": "Hammerhead Tail",
+ "armorSpecialSpring2019HealerNotes": "Your bright feathers will let everyone know that the cold and dark of winter has passed. Increases Constitution by <%= con %>. Limited Edition 2019 Spring Gear.",
+ "armorSpecialSpring2019HealerText": "Robin Costume",
+ "eyewearMystery201907Text": "Sweet Sunglasses",
+ "eyewearMystery201907Notes": "Look awesome while protecting your eyes from harmful UV rays! Confers no benefit. July 2019 Subscriber Item.",
+ "armorSpecialSpring2019MageText": "Amber Robes",
+ "armorSpecialSpring2019RogueNotes": "Some very tuff fluff. Increases Perception by <%= per %>. Limited Edition 2019 Spring Gear.",
+ "weaponArmoireHappyBannerNotes": "Is the “H” for Happy, or Habitica? Your choice! Increases Perception by <%= per %>. Enchanted Armoire: Happy Birthday Set (Item 3 of 4).",
+ "weaponArmoireHappyBannerText": "Happy Banner",
+ "weaponArmoireAlchemistsDistillerNotes": "Purify metals and other magical compounds with this shiny brass instrument. Increases Strength by <%= str %> and Intelligence by <%= int %>. Enchanted Armoire: Alchemist Set (Item 3 of 4).",
+ "weaponArmoireAlchemistsDistillerText": "Alchemist's Distiller",
+ "weaponArmoireShadowMastersMaceNotes": "Creatures of darkness will obey your every command when you wave this glowing mace. Increases Perception by <%= per %>. Enchanted Armoire: Shadow Master Set (Item 3 of 4).",
+ "weaponArmoireShadowMastersMaceText": "Shadow Master's Mace",
+ "weaponArmoireResplendentRapierNotes": "Demonstrate your swordsmanship with this sharply pointed weapon. Increases Perception by <%= per %>. Enchanted Armoire: Independent Item.",
+ "weaponArmoireResplendentRapierText": "Resplendent Rapier",
+ "weaponArmoireFloridFanNotes": "This lovely silk fan folds when not in use. Increases Constitution by <%= con %>. Enchanted Armoire: Independent Item.",
+ "weaponArmoireFloridFanText": "Florid Fan",
+ "weaponArmoireMagnifyingGlassNotes": "Aha! A piece of evidence! Examine it closely with this fine magnifier. Increases Perception by <%= per %>. Enchanted Armoire: Detective Set (Item 3 of 4).",
+ "weaponArmoireMagnifyingGlassText": "Magnifying Glass",
+ "weaponArmoireAstronomersTelescopeNotes": "An instrument that will allow you to observe the stars' ancient dance. Increases Perception by <%= per %>. Enchanted Armoire: Astronomer Mage Set (Item 3 of 3).",
+ "weaponArmoireAstronomersTelescopeText": "Astronomer's Telescope",
+ "weaponArmoireBambooCaneNotes": "Perfect for assisting you in a stroll, or for dancing the Charleston. Increases Intelligence, Perception, and Constitution by <%= attrs %> each. Enchanted Armoire: Boating Set (Item 3 of 3).",
+ "weaponArmoireBambooCaneText": "Bamboo Cane",
+ "weaponArmoireNephriteBowNotes": "This bow shoots special jade-tipped arrows that will take down even your most stubborn bad habits! Increases Intelligence by <%= int %> and Strength by <%= str %>. Enchanted Armoire: Nephrite Archer Set (Item 1 of 3).",
+ "weaponArmoireNephriteBowText": "Nephrite Bow",
+ "weaponArmoireSlingshotText": "Slingshot",
+ "weaponArmoireSlingshotNotes": "Take aim at your red Dailies! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.",
+ "weaponArmoireJugglingBallsNotes": "Habiticans are master multi-taskers, so you should have no trouble keeping all these balls in the air! Increases Intelligence by <%= int %>. Enchanted Armoire: Independent Item.",
+ "weaponArmoireJugglingBallsText": "Juggling Balls",
+ "weaponMystery201911Notes": "The crystal ball atop this staff can show you the future, but beware! Using such dangerous knowledge can change a person in unexpected ways. Confers no benefit. November 2019 Subscriber Item.",
+ "weaponMystery201911Text": "Charmed Crystal Staff",
+ "weaponSpecialWinter2020HealerNotes": "Wave it about, and its aroma will summon your friends and helpers to begin cooking and baking! Increases Intelligence by <%= int %>. Limited Edition 2019-2020 Winter Gear.",
+ "weaponSpecialWinter2020MageNotes": "With practice, you can project this aural magic at any desired frequency: a meditative hum, a festive chime, or a RED TASK OVERDUE ALARM. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2019-2020 Winter Gear.",
+ "headMystery201904Notes": "The opals in this circlet shine in every colour of the rainbow, giving it a variety of magical properties. Confers no benefit. April 2019 Subscriber Item.",
+ "headSpecialFall2019HealerNotes": "Don this dark mitre to harness the powers of the fearsome Lich. Increases Intelligence by <%= int %>. Limited Edition 2019 Autumn Gear.",
+ "headSpecialFall2019HealerText": "Dark Mitre",
+ "headSpecialSummer2019HealerNotes": "The spiralling structure of this shell will help you hear any cry for help across the seven seas. Increases Intelligence by <%= int %>. Limited Edition 2019 Summer Gear.",
+ "armorArmoireDuffleCoatNotes": "Travel frosty realms in style with this cosy wool coat. Increases Constitution and Perception by <%= attrs %> each. Enchanted Armoire: Duffle Coat Set (Item 1 of 2).",
+ "armorSpecialSummer2019WarriorNotes": "Warriors are known for their sturdy defences. Turtles are known for their thick shells. It's a perfect match! Just... try not to fall over backward, ever. Increases Constitution by <%= con %>. Limited Edition 2019 Summer Gear.",
+ "armorSpecialSpring2019MageNotes": "These robes gather power from magic resin embedded in the fibres of ancient bark that compose the cloth. Increases Intelligence by <%= int %>. Limited Edition 2019 Spring Gear.",
+ "armorArmoireLayerCakeArmorText": "Layer Cake Armour",
+ "armorArmoireNephriteArmorNotes": "Made from strong steel rings and decorated with jade, this armour will protect you from procrastination! Increases Strength by <%= str %> and Perception by <%= per %>. Enchanted Armoire: Nephrite Archer Set (Item 3 of 3).",
+ "armorArmoireNephriteArmorText": "Nephrite Armour",
+ "armorMystery201910Notes": "This enigmatic armour will protect you from terrors seen and unseen. Confers no benefit. October 2019 Subscriber Item.",
+ "armorMystery201910Text": "Cryptic Armour",
+ "armorMystery201909Text": "Affable Acorn Armour",
+ "armorMystery201903Text": "Shell-ebration Armour",
+ "armorSpecialWinter2020WarriorText": "Bark Armour",
+ "armorSpecialSummer2019WarriorText": "Carapace Armour",
+ "armorSpecialSpring2019WarriorNotes": "Steely armour of reinforced petals protects your heart and also looks pretty snazzy. Increases Constitution by <%= con %>. Limited Edition 2019 Spring Gear.",
+ "armorSpecialSpring2019WarriorText": "Orchid Armour",
+ "armorSpecialSpring2019RogueText": "Cloud Armour",
+ "armorSpecialKS2019Notes": "Glowing from within like a gryphon's noble heart, this resplendent armour encourages you to take pride in your accomplishments. Increases Constitution by <%= con %>.",
+ "armorSpecialKS2019Text": "Mythic Gryphon Armour",
+ "weaponSpecialWinter2020HealerText": "Clove Sceptre",
+ "weaponSpecialWinter2020MageText": "Rippling Sound Waves",
+ "weaponSpecialWinter2020WarriorNotes": "Back, squirrels! You will take no piece of this! ...But if you all want to hang out and have cocoa, that's cool. Increases Strength by <%= str %>. Limited Edition 2019-2020 Winter Gear.",
+ "weaponSpecialWinter2020WarriorText": "Pointy Conifer Cone",
+ "weaponSpecialWinter2020RogueNotes": "Darkness is a Rogue's element. Who better, then, to light the way in the darkest time of year? Increases Strength by <%= str %>. Limited Edition 2019-2020 Winter Gear.",
+ "weaponSpecialWinter2020RogueText": "Lantern Rod",
+ "weaponSpecialFall2019HealerNotes": "This phylactery can call on the spirits of tasks long slain and use their healing power. Increases Intelligence by <%= int %>. Limited Edition 2019 Autumn Gear.",
+ "weaponSpecialFall2019HealerText": "Fearsome Phylactery",
+ "weaponSpecialFall2019MageNotes": "Be it forging thunderbolts, raising fortifications, or simply striking terror into the hearts of mortals, this staff lends the power of giants to work wonders. Increases Intelligence by <%= int %> and Perception by <%= per %>. Limited Edition 2019 Autumn Gear.",
+ "weaponSpecialFall2019MageText": "One-Eyed Staff",
+ "weaponSpecialFall2019WarriorNotes": "Prepare to rend your foes with the talons of a raven! Increases Strength by <%= str %>. Limited Edition 2019 Autumn Gear.",
+ "weaponSpecialFall2019WarriorText": "Talon Trident",
+ "weaponSpecialFall2019RogueNotes": "Whether you're conducting the orchestra or singing an aria, this helpful device keeps your hands free for dramatic gestures! Increases Strength by <%= str %>. Limited Edition 2019 Autumn Gear.",
+ "weaponSpecialFall2019RogueText": "Music Stand",
+ "weaponSpecialSummer2019HealerNotes": "The bubbles from this wand capture healing energy and ancient oceanic magic. Increases Intelligence by <%= int %>. Limited Edition 2019 Summer Gear.",
+ "weaponSpecialKS2019Notes": "Curved as a gryphon's beak and talons, this ornate polearm reminds you to power through when the task ahead feels daunting. Increases Strength by <%= str %>.",
+ "weaponSpecialKS2019Text": "Mythic Gryphon Glaive"
}
diff --git a/website/common/locales/en_GB/generic.json b/website/common/locales/en_GB/generic.json
index eadf3f2635..c132d8925b 100644
--- a/website/common/locales/en_GB/generic.json
+++ b/website/common/locales/en_GB/generic.json
@@ -61,7 +61,7 @@
"newGroupTitle": "New Group",
"subscriberItem": "Mystery Item",
"newSubscriberItem": "You have new
Mystery Items",
- "subscriberItemText": "Each month, subscribers will receive a mystery item. This is usually released about one week before the end of the month. See the wiki's 'Mystery Item' page for more information.",
+ "subscriberItemText": "Each month, subscribers will receive a mystery item. It becomes available at the beginning of the month. See the wiki's 'Mystery Item' page for more information.",
"all": "All",
"none": "None",
"more": "<%= count %> more",
@@ -79,7 +79,7 @@
"continue": "Continue",
"accept": "Accept",
"reject": "Reject",
- "neverMind": "Never mind",
+ "neverMind": "Nevermind",
"buyMoreGems": "Buy More Gems",
"notEnoughGems": "Not enough Gems",
"alreadyHave": "Whoops! You already have this item. No need to buy it again!",
@@ -276,7 +276,7 @@
"hobbies_occupations": "Hobbies + Occupations",
"location_based": "Location-based",
"mental_health": "Mental Health + Self-Care",
- "getting_organized": "Getting Organized",
+ "getting_organized": "Getting Organised",
"self_improvement": "Self-Improvement",
"spirituality": "Spirituality",
"time_management": "Time-Management + Accountability",
@@ -291,5 +291,10 @@
"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",
- "options": "Options"
+ "options": "Options",
+ "loadEarlierMessages": "Load Earlier Messages",
+ "demo": "Demo",
+ "congratulations": "Congratulations!",
+ "onboardingAchievs": "Onboarding Achievements",
+ "finish": "Finish"
}
diff --git a/website/common/locales/en_GB/groups.json b/website/common/locales/en_GB/groups.json
index edfefbea51..fb85eecb26 100644
--- a/website/common/locales/en_GB/groups.json
+++ b/website/common/locales/en_GB/groups.json
@@ -250,19 +250,19 @@
"onlyGroupLeaderCanEditTasks": "Not authorised to manage tasks!",
"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",
+ "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",
"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?",
"confirmNeedsWork": "Are you sure you want to mark this task as needing work?",
- "userRequestsApproval": "<%= userName %> requests approval",
- "userCountRequestsApproval": "<%= userCount %> members request approval",
+ "userRequestsApproval": "
<%= userName %> requests approval",
+ "userCountRequestsApproval": "
<%= userCount %> members request approval",
"youAreRequestingApproval": "You are requesting approval",
- "chatPrivilegesRevoked": "You cannot do that because your chat privileges have been revoked.",
+ "chatPrivilegesRevoked": "You cannot do this because your chat privileges have been removed. For details or to ask if your privileges can be returned, please email our Community Manager at admin@habitica.com or ask your parent or guardian to email them. Please include your @Username in the email. If a moderator has already told you that your chat ban is temporary, you do not need to send an email.",
"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!",
@@ -277,10 +277,10 @@
"confirmRemoveTag": "Do you really want to remove \"<%= tag %>\"?",
"groupHomeTitle": "Home",
"assignTask": "Assign Task",
- "claim": "Claim",
+ "claim": "Claim Task",
"removeClaim": "Remove Claim",
"onlyGroupLeaderCanManageSubscription": "Only the group leader can manage the group's subscription",
- "yourTaskHasBeenApproved": "Your task
<%= taskText %> has been approved.",
+ "yourTaskHasBeenApproved": "Your task
<%= taskText %> has been approved.",
"taskNeedsWork": "
<%= managerName %> marked
<%= taskText %> as needing additional work.",
"userHasRequestedTaskApproval": "
<%= user %> requests approval for
<%= taskName %>",
"approve": "Approve",
@@ -341,8 +341,8 @@
"leaderCannotLeaveGroupWithActiveGroup": "A leader cannot 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": "Cancelled Group Plan",
+ "confirmCancelGroupPlan": "Are you sure you want to cancel your Group Plan? All Group members will lose their subscription and benefits.",
+ "canceledGroupPlan": "Group Plan Cancelled",
"groupPlanCanceled": "Group Plan will become inactive on",
"purchasedGroupPlanPlanExtraMonths": "You have <%= months %> months of extra group plan credit.",
"addManager": "Assign Manager",
@@ -480,5 +480,9 @@
"recurringCompletion": "None - Group task does not complete",
"singleCompletion": "Single - Completes when any assigned user finishes",
"allAssignedCompletion": "All - Completes when all assigned users finish",
- "pmReported": "Thank you for reporting this message."
+ "pmReported": "Thank you for reporting this message.",
+ "groupActivityNotificationTitle": "<%= user %> posted in <%= group %>",
+ "suggestedGroup": "Suggested because you’re new to Habitica.",
+ "taskClaimed": "<%= userName %> has claimed the task
<%= taskText %>.",
+ "youHaveBeenAssignedTask": "<%= managerName %> has assigned you the task
<%= taskText %>."
}
diff --git a/website/common/locales/en_GB/limited.json b/website/common/locales/en_GB/limited.json
index 7767e191aa..b35d966798 100644
--- a/website/common/locales/en_GB/limited.json
+++ b/website/common/locales/en_GB/limited.json
@@ -143,11 +143,11 @@
"dateEndAugust": "August 31",
"dateEndSeptember": "September 21",
"dateEndOctober": "October 31",
- "dateEndNovember": "December 3",
+ "dateEndNovember": "November 30",
"dateEndJanuary": "January 31",
"dateEndFebruary": "February 28",
"winterPromoGiftHeader": "GIFT A SUBSCRIPTION AND GET ONE FREE!",
- "winterPromoGiftDetails1": "Until January 15th only, when you gift somebody a subscription, you get the same subscription for yourself for free!",
+ "winterPromoGiftDetails1": "Until January 6th 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",
"discountBundle": "bundle",
"g1g1Announcement": "Gift a Subscription, Get a Subscription Free event going on now!",
@@ -155,5 +155,22 @@
"spring2019AmberMageSet": "Amber (Mage)",
"spring2019RobinHealerSet": "Robin (Healer)",
"spring2019OrchidWarriorSet": "Orchid (Warrior)",
- "spring2019CloudRogueSet": "Cloud (Rogue)"
+ "spring2019CloudRogueSet": "Cloud (Rogue)",
+ "september2018": "September 2018",
+ "september2017": "September 2017",
+ "decemberYYYY": "December <%= year %>",
+ "augustYYYY": "August <%= year %>",
+ "eventAvailabilityReturning": "Available for purchase until <%= availableDate(locale) %>. This potion was last available in <%= previousDate(locale) %>.",
+ "winter2020LanternSet": "Lantern (Rogue)",
+ "winter2020WinterSpiceSet": "Winter Spice (Healer)",
+ "winter2020CarolOfTheMageSet": "Carol of the Mage (Mage)",
+ "winter2020EvergreenSet": "Evergreen (Warrior)",
+ "fall2019RavenSet": "Raven (Warrior)",
+ "fall2019LichSet": "Lich (Healer)",
+ "fall2019CyclopsSet": "Cyclops (Mage)",
+ "fall2019OperaticSpecterSet": "Operatic Specter (Rogue)",
+ "summer2019HammerheadRogueSet": "Hammerhead (Rogue)",
+ "summer2019ConchHealerSet": "Conch (Healer)",
+ "summer2019WaterLilyMageSet": "Water Lily (Mage)",
+ "summer2019SeaTurtleWarriorSet": "Sea Turtle (Warrior)"
}
diff --git a/website/common/locales/en_GB/messages.json b/website/common/locales/en_GB/messages.json
index f52d9549b1..dc3509cc11 100644
--- a/website/common/locales/en_GB/messages.json
+++ b/website/common/locales/en_GB/messages.json
@@ -51,7 +51,7 @@
"messageGroupChatFlagAlreadyReported": "You have already reported this message",
"messageGroupChatNotFound": "Message not found!",
"messageGroupChatAdminClearFlagCount": "Only an admin can clear the flag count!",
- "messageCannotFlagSystemMessages": "You cannot flag a system message. If you need to report a violation of the Community Guidelines related to this message, please email a screenshot and explanation to Lemoness at <%= communityManagerEmail %>.",
+ "messageCannotFlagSystemMessages": "You cannot report a system message. If you need to report a violation of the Community Guidelines related to this message, please email a screenshot and explanation to our Community Manager at <%= communityManagerEmail %>.",
"messageGroupChatSpam": "Whoops, looks like you're posting too many messages! Please wait a minute and try again. The Tavern chat only holds 200 messages at a time, so Habitica encourages posting longer, more thoughtful messages and consolidating replies. Can't wait to hear what you have to say. :)",
"messageCannotLeaveWhileQuesting": "You cannot accept this party invitation while you are in a quest. If you'd like to join this party, you must first abort your quest, which you can do from your party screen. You will be given back the quest scroll.",
"messageUserOperationProtected": "path `<%= operation %>` was not saved, as it's a protected path.",
diff --git a/website/common/locales/en_GB/npc.json b/website/common/locales/en_GB/npc.json
index f517483a8a..0054300eef 100644
--- a/website/common/locales/en_GB/npc.json
+++ b/website/common/locales/en_GB/npc.json
@@ -13,15 +13,15 @@
"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!",
"prev": "Prev",
"next": "Next",
- "randomize": "Randomize",
+ "randomize": "Randomise",
"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.",
"welcomeToTavern": "Welcome to The Tavern!",
"sleepDescription": "Need a break? Check into Daniel's Inn to pause some of Habitica's more difficult game mechanics:",
"sleepBullet1": "Missed Dailies won't damage you",
- "sleepBullet2": "Tasks won't lose streaks or decay in color",
- "sleepBullet3": "Bosses won't do damage for your missed Dailies",
+ "sleepBullet2": "Tasks won't lose streaks",
+ "sleepBullet3": "Bosses won't do damage for your own missed Dailies",
"sleepBullet4": "Your boss damage or collection Quest items will stay pending until check-out",
"pauseDailies": "Pause Damage",
"unpauseDailies": "Unpause Damage",
@@ -91,7 +91,7 @@
"unlocked": "Items have been unlocked",
"alreadyUnlocked": "Full set already unlocked.",
"alreadyUnlockedPart": "Full set already partially unlocked.",
- "invalidQuantity": "Quantity to purchase must be a number.",
+ "invalidQuantity": "Quantity to purchase must be a positive whole number.",
"USD": "(USD)",
"newStuff": "New Stuff by Bailey",
"newBaileyUpdate": "New Bailey Update!",
@@ -168,5 +168,7 @@
"welcome5": "Now you'll customise your avatar and set up your tasks...",
"imReady": "Enter Habitica",
"limitedOffer": "Available until <%= date %>",
- "paymentAutoRenew": "This subscription will auto-renew until it is cancelled. If you need to cancel this subscription, you can do so from your settings."
+ "paymentAutoRenew": "This subscription will auto-renew until it is cancelled. If you need to cancel this subscription, you can do so from your settings.",
+ "paymentCanceledDisputes": "We’ve sent a cancellation confirmation to your email. If you don’t see the email, please contact us to prevent future billing disputes.",
+ "cannotUnpinItem": "This item cannot be unpinned."
}
diff --git a/website/common/locales/en_GB/overview.json b/website/common/locales/en_GB/overview.json
index c167837797..532b2b67af 100644
--- a/website/common/locales/en_GB/overview.json
+++ b/website/common/locales/en_GB/overview.json
@@ -1,14 +1,10 @@
{
- "needTips": "Need some tips on how to begin? Here's a straightforward guide!",
-
- "step1": "Step 1: Enter Tasks",
- "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.fandom.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.fandom.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.fandom.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.fandom.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.fandom.com/wiki/Sample_Habits), [Sample Dailies](http://habitica.fandom.com/wiki/Sample_Dailies), [Sample To-Dos](http://habitica.fandom.com/wiki/Sample_To-Dos), and [Sample Rewards](http://habitica.fandom.com/wiki/Sample_Custom_Rewards).",
-
- "step2": "Step 2: Gain Points by Doing Things in Real Life",
- "webStep2Text": "Now, start tackling your goals from the list! As you complete tasks and check them off in Habitica, you will gain [Experience](http://habitica.fandom.com/wiki/Experience_Points), which helps you level up, and [Gold](http://habitica.fandom.com/wiki/Gold_Points), which allows you to purchase Rewards. If you fall into bad habits or miss your Dailies, you will lose [Health](http://habitica.fandom.com/wiki/Health_Points). In that way, the Habitica Experience and Health bars serve as a fun indicator of your progress toward your goals. You'll start seeing your real life improve as your character advances in the game.",
-
- "step3": "Step 3: Customise and Explore Habitica",
- "webStep3Text": "Once you're familiar with the basics, you can get even more out of Habitica with these nifty features:\n * Organize your tasks with [tags](http://habitica.fandom.com/wiki/Tags) (edit a task to add them).\n * Customize your [avatar](http://habitica.fandom.com/wiki/Avatar) by clicking the user icon in the upper-right corner.\n * Buy your [Equipment](http://habitica.fandom.com/wiki/Equipment) under Rewards or from the [Shops](<%= shopUrl %>), and change it under [Inventory > Equipment](<%= equipUrl %>).\n * Connect with other users via the [Tavern](http://habitica.fandom.com/wiki/Tavern).\n * Starting at Level 3, hatch [Pets](http://habitica.fandom.com/wiki/Pets) by collecting [eggs](http://habitica.fandom.com/wiki/Eggs) and [hatching potions](http://habitica.fandom.com/wiki/Hatching_Potions). [Feed](http://habitica.fandom.com/wiki/Food) them to create [Mounts](http://habitica.fandom.com/wiki/Mounts).\n * At level 10: Choose a particular [class](http://habitica.fandom.com/wiki/Class_System) and then use class-specific [skills](http://habitica.fandom.com/wiki/Skills) (levels 11 to 14).\n * Form a party with your friends (by clicking [Party](<%= partyUrl %>) in the navigation bar) to stay accountable and earn a Quest scroll.\n * Defeat monsters and collect objects on [quests](http://habitica.fandom.com/wiki/Quests) (you will be given a quest at level 15).",
-
- "overviewQuestions": "Have questions? Check out the [FAQ](<%= faqUrl %>)! If your question isn't mentioned there, you can ask for further help in the [Habitica Help guild](<%= helpGuildUrl %>).\n\nGood luck with your tasks!"
+ "needTips": "Need some tips on how to begin? Here's a straightforward guide!",
+ "step1": "Step 1: Enter Tasks",
+ "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.fandom.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.fandom.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.fandom.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.fandom.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.fandom.com/wiki/Sample_Habits), [Sample Dailies](http://habitica.fandom.com/wiki/Sample_Dailies), [Sample To-Dos](http://habitica.fandom.com/wiki/Sample_To-Dos), and [Sample Rewards](http://habitica.fandom.com/wiki/Sample_Custom_Rewards).",
+ "step2": "Step 2: Gain Points by Doing Things in Real Life",
+ "webStep2Text": "Now, start tackling your goals from the list! As you complete tasks and check them off in Habitica, you will gain [Experience](http://habitica.fandom.com/wiki/Experience_Points), which helps you level up, and [Gold](http://habitica.fandom.com/wiki/Gold_Points), which allows you to purchase Rewards. If you fall into bad habits or miss your Dailies, you will lose [Health](http://habitica.fandom.com/wiki/Health_Points). In that way, the Habitica Experience and Health bars serve as a fun indicator of your progress toward your goals. You'll start seeing your real life improve as your character advances in the game.",
+ "step3": "Step 3: Customise and Explore Habitica",
+ "webStep3Text": "Once you're familiar with the basics, you can get even more out of Habitica with these nifty features:\n * Organise your tasks with [tags](http://habitica.fandom.com/wiki/Tags) (edit a task to add them).\n * Customise your [avatar](http://habitica.fandom.com/wiki/Avatar) by clicking the user icon in the upper-right corner.\n * Buy your [Equipment](http://habitica.fandom.com/wiki/Equipment) under Rewards or from the [Shops](<%= shopUrl %>), and change it under [Inventory > Equipment](<%= equipUrl %>).\n * Connect with other users via the [Tavern](http://habitica.fandom.com/wiki/Tavern).\n * Starting at Level 3, hatch [Pets](http://habitica.fandom.com/wiki/Pets) by collecting [eggs](http://habitica.fandom.com/wiki/Eggs) and [hatching potions](http://habitica.fandom.com/wiki/Hatching_Potions). [Feed](http://habitica.fandom.com/wiki/Food) them to create [Mounts](http://habitica.fandom.com/wiki/Mounts).\n * At level 10: Choose a particular [class](http://habitica.fandom.com/wiki/Class_System) and then use class-specific [skills](http://habitica.fandom.com/wiki/Skills) (levels 11 to 14).\n * Form a party with your friends (by clicking [Party](<%= partyUrl %>) in the navigation bar) to stay accountable and earn a Quest scroll.\n * Defeat monsters and collect objects on [quests](http://habitica.fandom.com/wiki/Quests) (you will be given a quest at level 15).",
+ "overviewQuestions": "Have questions? Check out the [FAQ](<%= faqUrl %>)! If your question isn't mentioned there, you can ask for further help in the [Habitica Help guild](<%= helpGuildUrl %>).\n\nGood luck with your tasks!"
}
diff --git a/website/common/locales/en_GB/pets.json b/website/common/locales/en_GB/pets.json
index 222d18d549..de3027d27e 100644
--- a/website/common/locales/en_GB/pets.json
+++ b/website/common/locales/en_GB/pets.json
@@ -144,5 +144,6 @@
"notEnoughMounts": "You have not collected enough mounts",
"notEnoughPetsMounts": "You have not collected enough pets and mounts",
"wackyPets": "Wacky Pets",
- "filterByWacky": "Wacky"
+ "filterByWacky": "Wacky",
+ "gryphatrice": "Gryphatrice"
}
diff --git a/website/common/locales/en_GB/quests.json b/website/common/locales/en_GB/quests.json
index b9a19d7873..a4553684c0 100644
--- a/website/common/locales/en_GB/quests.json
+++ b/website/common/locales/en_GB/quests.json
@@ -126,5 +126,16 @@
"bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
"rageAttack": "Rage Attack:",
"bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
- "rageStrikes": "Rage Strikes"
+ "rageStrikes": "Rage Strikes",
+ "tavernBossTired": "<%= bossName %> tries to unleash <%= rageName %> but is too tired.",
+ "chatQuestCancelled": "<%= username %> cancelled the party quest <%= questName %>.",
+ "chatQuestAborted": "<%= username %> aborted the party quest <%= questName %>.",
+ "chatItemQuestFinish": "All items found! Party has received their rewards.",
+ "chatFindItems": "<%= username %> found <%= items %>.",
+ "chatBossDefeated": "You defeated <%= bossName %>! Questing party members receive the rewards of victory.",
+ "chatBossDontAttack": "<%= username %> attacks <%= bossName %> for <%= userDamage %> damage. <%= bossName %> does not attack, because it respects the fact that there are some bugs post-maintenance, and it doesn't want to hurt anyone unfairly. It will continue its rampage soon!",
+ "chatBossDamage": "<%= username %> attacks <%= bossName %> for <%= userDamage %> damage. <%= bossName %> attacks party for <%= bossDamage %> damage.",
+ "chatQuestStarted": "Your quest, <%= questName %>, has started.",
+ "questInvitationNotificationInfo": "You were invited to join a quest",
+ "hatchingPotionQuests": "Magic Hatching Potion Quests"
}
diff --git a/website/common/locales/en_GB/questscontent.json b/website/common/locales/en_GB/questscontent.json
index 3fb32d1b53..e5cbd33795 100644
--- a/website/common/locales/en_GB/questscontent.json
+++ b/website/common/locales/en_GB/questscontent.json
@@ -1,11 +1,11 @@
{
"questEvilSantaText": "Trapper Santa",
- "questEvilSantaNotes": "You hear agonised roars deep in the ice-fields. You follow the growls - punctuated by the sound of cackling - to a clearing in the woods, where you see a fully-grown polar bear. She's caged and shackled, fighting for her life. Dancing atop the cage is a malicious little imp wearing a castaway costume. Vanquish Trapper Santa, and save the beast!",
+ "questEvilSantaNotes": "You hear agonised roars deep in the icefields. You follow the growls - punctuated by the sound of cackling - to a clearing in the woods, where you see a fully-grown polar bear. She's caged and shackled, fighting for her life. Dancing atop the cage is a malicious little imp wearing a castaway costume. Vanquish Trapper Santa, and save the beast!
Note: “Trapper Santa” awards a stackable quest achievement but gives a rare mount that can only be added to your stable once.",
"questEvilSantaCompletion": "Trapper Santa squeals in anger, and bounces off into the night. The grateful she-bear, through roars and growls, tries to tell you something. You take her back to the stables, where Matt Boch the Beast Master listens to her tale with a gasp of horror. She has a cub! He ran off into the ice-fields when mama bear was captured.",
"questEvilSantaBoss": "Trapper Santa",
"questEvilSantaDropBearCubPolarMount": "Polar Bear (Mount)",
"questEvilSanta2Text": "Find The Cub",
- "questEvilSanta2Notes": "When Trapper Santa captured the polar bear mount, her cub ran off into the ice-fields. You hear twig-snaps and snow-crunching through the crystalline sound of the forest. Paw prints! You start racing to follow the trail. Find all the prints and broken twigs, and retrieve the cub!",
+ "questEvilSanta2Notes": "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!
Note: “Find the Cub” awards a stackable quest achievement but gives a rare pet that can only be added to your stable once.",
"questEvilSanta2Completion": "You've found the cub! It will keep you company forever.",
"questEvilSanta2CollectTracks": "Tracks",
"questEvilSanta2CollectBranches": "Broken Twigs",
@@ -15,49 +15,49 @@
"questGryphonCompletion": "Defeated, the mighty beast ashamedly slinks back to its master. \"My word! Well done, adventurers!\"
baconsaur exclaims, \"Please, have some of the gryphon's eggs. I am sure you will raise these young ones well!\"",
"questGryphonBoss": "Fiery Gryphon",
"questGryphonDropGryphonEgg": "Gryphon (Egg)",
- "questGryphonUnlockText": "Unlocks purchasable Gryphon eggs in the Market",
+ "questGryphonUnlockText": "Unlocks Gryphon Eggs for purchase in the Market",
"questHedgehogText": "The Hedgebeast",
"questHedgehogNotes": "Hedgehogs are a funny group of animals. They are some of the most affectionate pets a Habiteer could own. But rumor has it, if you feed them milk after midnight, they grow quite irritable. And fifty times their size. And
InspectorCaracal did just that. Oops.",
"questHedgehogCompletion": "Your party successfully calmed down the hedgehog! After shrinking down to a normal size, she hobbles away to her eggs. She returns squeaking and nudging some of her eggs along towards your party. Hopefully, these hedgehogs like milk better!",
"questHedgehogBoss": "Hedgebeast",
"questHedgehogDropHedgehogEgg": "Hedgehog (Egg)",
- "questHedgehogUnlockText": "Unlocks purchasable Hedgehog eggs in the Market",
+ "questHedgehogUnlockText": "Unlocks Hedgehog Eggs for purchase in the Market",
"questGhostStagText": "The Spirit of Spring",
- "questGhostStagNotes": "Ahh, Spring. The time of year when color once again begins to fill the landscape. Gone are the cold, snowy mounds of winter. Where frost once stood, vibrant plant life takes its place. Luscious green leaves fill in the trees, grass returns to its former vivid hue, a rainbow of flowers rise along the plains, and a white mystical fog covers the land! ... Wait. Mystical fog? \"Oh no,\"
InspectorCaracal says apprehensively, \"It would appear that some kind of spirit is the cause of this fog. Oh, and it is charging right at you.\"",
+ "questGhostStagNotes": "Ahh, Spring. The time of year when colour once again begins to fill the landscape. Gone are the cold, snowy mounds of winter. Where frost once stood, vibrant plant life takes its place. Luscious green leaves fill in the trees, grass returns to its former vivid hue, a rainbow of flowers rise along the plains, and a white mystical fog covers the land! ... Wait. Mystical fog? \"Oh no,\"
InspectorCaracal says apprehensively, \"It would appear that some kind of spirit is the cause of this fog. Oh, and it is charging right at you.\"",
"questGhostStagCompletion": "The spirit, seemingly unwounded, lowers its nose to the ground. A calming voice envelops your party. \"I apologise for my behaviour. I have only just awoken from my slumber, and it would appear my wits have not completely returned to me. Please take these as a token of my apology.\" A cluster of eggs materialise on the grass before the spirit. Without another word, the spirit runs off into the forest with flowers falling in his wake.",
"questGhostStagBoss": "Ghost Stag",
"questGhostStagDropDeerEgg": "Deer (Egg)",
- "questGhostStagUnlockText": "Unlocks purchasable Deer eggs in the Market",
+ "questGhostStagUnlockText": "Unlocks Deer Eggs for purchase in the Market",
"questRatText": "The Rat King",
"questRatNotes": "Rubbish! Massive piles of unchecked Dailies are lying all across Habitica. The problem has become so serious that hordes of rats are now seen everywhere. You notice @Pandah petting one of the beasts lovingly. She explains that rats are gentle creatures that feed on unchecked Dailies. The real problem is that the Dailies have fallen into the sewer, creating a dangerous pit that must be cleared. As you descend into the sewers, a massive rat, with blood red eyes and mangled yellow teeth, attacks you, defending its horde. Will you cower in fear or face the fabled Rat King?",
"questRatCompletion": "Your final strike saps the gargantuan rat's strength, his eyes fading to a dull grey. The beast splits into many tiny rats, which scurry off in fright. You notice @Pandah standing behind you, looking at the once mighty creature. She explains that the citizens of Habitica have been inspired by your courage and are quickly completing all their unchecked Dailies. She warns you that we must be vigilant, for should we let down our guard, the Rat King will return. As payment, @Pandah offers you several rat eggs. Noticing your uneasy expression, she smiles, \"They make wonderful pets.\"",
"questRatBoss": "Rat King",
"questRatDropRatEgg": "Rat (Egg)",
- "questRatUnlockText": "Unlocks purchasable Rat eggs in the Market",
+ "questRatUnlockText": "Unlocks Rat Eggs for purchase in the Market",
"questOctopusText": "The Call of Octothulu",
"questOctopusNotes": "@Urse, a wild-eyed young scribe, has asked for your help exploring a mysterious cave by the sea shore. Among the twilight tidepools stands a massive gate of stalactites and stalagmites. As you near the gate, a dark whirlpool begins to spin at its base. You stare in awe as a squid-like dragon rises through the maw. \"The sticky spawn of the stars has awakened,\" roars @Urse madly. \"After vigintillions of years, the great Octothulu is loose again, and ravening for delight!\"",
"questOctopusCompletion": "With a final blow, the creature slips away into the whirlpool from which it came. You cannot tell if @Urse is happy with your victory or saddened to see the beast go. Wordlessly, your companion points to three slimy, gargantuan eggs in a nearby tide-pool, set in a nest of gold coins. \"Probably just octopus eggs,\" you say nervously. As you return home, @Urse frantically scribbles in a journal and you suspect this is not the last time you will hear of the great Octothulu.",
"questOctopusBoss": "Octothulu",
"questOctopusDropOctopusEgg": "Octopus (Egg)",
- "questOctopusUnlockText": "Unlocks purchasable Octopus eggs in the Market",
+ "questOctopusUnlockText": "Unlocks Octopus Eggs for purchase in the Market",
"questHarpyText": "Help! Harpy!",
"questHarpyNotes": "The brave adventurer @UncommonCriminal has disappeared into the forest, following the trail of a winged monster that was sighted several days ago. You are about to begin a search when a wounded parrot lands on your arm, an ugly scar marring its beautiful plumage. Attached to its leg is a scrawled note explaining that while defending the parrots, @UncommonCriminal was captured by a vicious Harpy, and desperately needs your help to escape. Will you follow the bird, defeat the Harpy, and save @UncommonCriminal?",
"questHarpyCompletion": "A final blow to the Harpy brings it down, feathers flying in all directions. After a quick climb to its nest you find @UncommonCriminal, surrounded by parrot eggs. As a team, you quickly place the eggs back in the nearby nests. The scarred parrot who found you caws loudly, dropping several eggs in your arms. \"The Harpy attack has left some eggs in need of protection,\" explains @UncommonCriminal. \"It seems you have been made an honorary parrot.\"",
"questHarpyBoss": "Harpy",
"questHarpyDropParrotEgg": "Parrot (Egg)",
- "questHarpyUnlockText": "Unlocks purchasable Parrot eggs in the Market",
+ "questHarpyUnlockText": "Unlocks Parrot Eggs for purchase in the Market",
"questRoosterText": "Rooster Rampage",
"questRoosterNotes": "For years the farmer @extrajordinary has used Roosters as an alarm clock. But now a giant Rooster has appeared, crowing louder than any before – and waking up everyone in Habitica! The sleep-deprived Habiticans struggle through their daily tasks. @Pandoro decides the time has come to put a stop to this. \"Please, is there anyone who can teach that Rooster to crow quietly?\" You volunteer, approaching the Rooster early one morning – but it turns, flapping its giant wings and showing its sharp claws, and crows a battle cry.",
"questRoosterCompletion": "With finesse and strength, you have tamed the wild beast. Its ears, once filled with feathers and half-remembered tasks, are now clear as day. It crows at you quietly, snuggling its beak into your shoulder. The next day you’re set to take your leave, but @EmeraldOx runs up to you with a covered basket. “Wait! When I went into the farmhouse this morning, the Rooster had pushed these against the door where you slept. I think he wants you to have them.” You uncover the basket to see three delicate eggs.",
"questRoosterBoss": "Rooster",
"questRoosterDropRoosterEgg": "Rooster (Egg)",
- "questRoosterUnlockText": "Unlocks purchasable Rooster eggs in the Market",
+ "questRoosterUnlockText": "Unlocks Rooster Eggs for purchase in the Market",
"questSpiderText": "The Icy Arachnid",
"questSpiderNotes": "As the weather starts cooling down, delicate frost begins appearing on Habiticans' windowpanes in lacy webs... except for @Arcosine, whose windows are frozen completely shut by the Frost Spider currently taking up residence in his home. Oh dear.",
"questSpiderCompletion": "The Frost Spider collapses, leaving behind a small pile of frost and a few of her enchanted egg sacs. @Arcosine rather hurriedly offers them to you as a reward--perhaps you could raise some non-threatening spiders as pets of your own?",
"questSpiderBoss": "Spider",
"questSpiderDropSpiderEgg": "Spider (Egg)",
- "questSpiderUnlockText": "Unlocks purchasable Spider eggs in the Market",
+ "questSpiderUnlockText": "Unlocks Spider Eggs for purchase in the Market",
"questGroupVice": "Vice the Shadow Wyrm",
"questVice1Text": "Vice, Part 1: Free Yourself of the Dragon's Influence",
"questVice1Notes": "
They say there lies a terrible evil in the caverns of Mt. Habitica. A monster whose presence twists the wills of the strong heroes of the land, turning them towards bad habits and laziness! The beast is a grand dragon of immense power and comprised of the shadows themselves: Vice, the treacherous Shadow Wyrm. Brave Habiteers, stand up and defeat this foul beast once and for all, but only if you believe you can stand against its immense power.
Vice Part 1:
How can you expect to fight the beast if it already has control over you? Don't fall victim to laziness and vice! Work hard to fight against the dragon's dark influence and dispel its hold on you!
",
@@ -102,7 +102,7 @@
"questGoldenknight2Text": "The Golden Knight, Part 2: Gold Knight",
"questGoldenknight2Notes": "Armed with dozens of Habiticans' testimonies, you finally confront the Golden Knight. You begin to recite the Habitcans' complaints to her, one by one. \"And @Pfeffernusse says that your constant bragging-\" The knight raises her hand to silence you and scoffs, \"Please, these people are merely jealous of my success. Instead of complaining, they should simply work as hard as I! Perhaps I shall show you the power you can attain through diligence such as mine!\" She raises her morningstar and prepares to attack you!",
"questGoldenknight2Boss": "Gold Knight",
- "questGoldenknight2Completion": "The Golden Knight lowers her Morningstar in consternation. “I apologize for my rash outburst,” she says. “The truth is, it’s painful to think that I’ve been inadvertently hurting others, and it made me lash out in defense… but perhaps I can still apologize?”",
+ "questGoldenknight2Completion": "The Golden Knight lowers her Morningstar in consternation. “I apologise for my rash outburst,” she says. “The truth is, it’s painful to think that I’ve been inadvertently hurting others, and it made me lash out in defence… but perhaps I can still apologise?”",
"questGoldenknight2DropGoldenknight3Quest": "The Golden Knight Part 3: The Iron Knight (Scroll)",
"questGoldenknight3Text": "The Golden Knight, Part 3: The Iron Knight",
"questGoldenknight3Notes": "@Jon Arinbjorn cries out to you to get your attention. In the aftermath of your battle, a new figure has appeared. A knight coated in stained-black iron slowly approaches you with sword in hand. The Golden Knight shouts to the figure, \"Father, no!\" but the knight shows no signs of stopping. She turns to you and says, \"I am sorry. I have been a fool, with a head too big to see how cruel I have been. But my father is crueler than I could ever be. If he isn't stopped he'll destroy us all. Here, use my morningstar and halt the Iron Knight!\"",
@@ -133,11 +133,11 @@
"questDilatoryBossRageMarket": "`Dread Drag'on Casts NEGLECT STRIKE!`\n\nAhhh!! Alex the Merchant just had his shop smashed to smithereens by the Drag'on's Neglect Strike! But it seems like we're really wearing this beast down. I doubt it has enough energy for another strike.\n\nSo do not waver, Habitica! Let's drive this beast away from our shores!",
"questDilatoryCompletion": "`The Defeat Of The Dread Drag'On Of Dilatory`\n\nWe've done it! With a final last roar, the Dread Drag'on collapses and swims far, far away. Crowds of cheering Habiticans line the shores! We've helped Matt, Daniel, and Alex rebuild their buildings. But what's this?\n\n`The Citizens Return!`\n\nNow that the Drag'on has fled, thousands of sparkling colours are ascending through the sea. It is a rainbow swarm of Mantis Shrimp... and among them, hundreds of merpeople!\n\n\"We are the lost citizens of Dilatory!\" explains their leader, Manta. \"When Dilatory sank, the Mantis Shrimp that lived in these waters used a spell to transform us into merpeople so that we could survive. But in its rage, the Dread Drag'on trapped us all in the dark crevasse. We have been imprisoned there for hundreds of years - but now at last we are free to rebuild our city!\"\n\n\"As a thank you,\" says his friend @Ottl, \"Please accept this Mantis Shrimp pet and Mantis Shrimp mount, as well as XP, gold, and our eternal gratitude.\"\n\n`Rewards`\n * Mantis Shrimp Pet\n * Mantis Shrimp Mount\n * Chocolate, Blue Candyfloss, Pink Candyfloss, Fish, Honey, Meat, Milk, Potato, Rotten Meat, Strawberry",
"questSeahorseText": "The Dilatory Derby",
- "questSeahorseNotes": "It's Derby Day, and Habiticans from all over the continent have traveled to Dilatory to race their pet seahorses! Suddenly, a great splashing and snarling breaks out at the racetrack, and you hear Seahorse Keeper @Kiwibot shouting above the roar of the waves. \"The gathering of seahorses has attracted a fierce Sea Stallion!\" she cries. \"He's smashing through the stables and destroying the ancient track! Can anyone calm him down?\"",
+ "questSeahorseNotes": "It's Derby Day, and Habiticans from all over the continent have travelled to Dilatory to race their pet seahorses! Suddenly, a great splashing and snarling breaks out at the racetrack, and you hear Seahorse Keeper @Kiwibot shouting above the roar of the waves. \"The gathering of seahorses has attracted a fierce Sea Stallion!\" she cries. \"He's smashing through the stables and destroying the ancient track! Can anyone calm him down?\"",
"questSeahorseCompletion": "The now-tame Sea Stallion swims docilely to your side. \"Oh, look!\" Kiwibot says. \"He wants us to take care of his children.\" She gives you three eggs. \"Raise them well,\" she says. \"You're welcome at the Dilatory Derby any day!\"",
"questSeahorseBoss": "Sea Stallion",
"questSeahorseDropSeahorseEgg": "Seahorse (Egg)",
- "questSeahorseUnlockText": "Unlocks purchasable Seahorse eggs in the Market",
+ "questSeahorseUnlockText": "Unlocks Seahorse Eggs for purchase in the Market",
"questGroupAtom": "Attack of the Mundane",
"questAtom1Text": "Attack of the Mundane, Part 1: Dish Disaster!",
"questAtom1Notes": "You reach the shores of Washed-Up Lake for some well-earned relaxation... But the lake is polluted with unwashed dishes! How did this happen? Well, you simply cannot allow the lake to be in this state. There is only one thing you can do: clean the dishes and save your vacation spot! Better find some soap to clean up this mess. A lot of soap...",
@@ -159,13 +159,13 @@
"questOwlCompletion": "The Night-Owl fades before the dawn,
But even so, you feel a yawn.
Perhaps it's time to get some rest?
Then on your bed, you see a nest!
A Night-Owl knows it can be great
To finish work and stay up late,
But your new pets will softly peep
To tell you when it's time to sleep.",
"questOwlBoss": "The Night-Owl",
"questOwlDropOwlEgg": "Owl (Egg)",
- "questOwlUnlockText": "Unlocks purchasable Owl eggs in the Market",
+ "questOwlUnlockText": "Unlocks Owl Eggs for purchase in the Market",
"questPenguinText": "The Fowl Frost",
"questPenguinNotes": "Although it's a hot summer day in the southernmost tip of Habitica, an unnatural chill has fallen upon Lively Lake. Strong, frigid winds rush around as the shore begins to freeze over. Ice spikes jut up from the ground, pushing grass and dirt away. @Melynnrose and @Breadstrings run up to you.
\"Help!\" says @Melynnrose. \"We brought a giant penguin in to freeze the lake so we could all go ice skating, but we ran out of fish to feed him!\"
\"He got angry and is using his freeze breath on everything he sees!\" says @Breadstrings. \"Please, you have to subdue him before all of us are covered in ice!\" Looks like you need this penguin to...
cool down.",
"questPenguinCompletion": "Upon the penguin's defeat, the ice melts away. The giant penguin settles down in the sunshine, slurping up an extra bucket of fish you found. He skates off across the lake, blowing gently downwards to create smooth, sparkling ice. What an odd bird! \"It appears he left behind a few eggs, as well,\" says @Painter de Cluster.
@Rattify laughs. \"Maybe these penguins will be a little more... chill?\"",
"questPenguinBoss": "Frost Penguin",
"questPenguinDropPenguinEgg": "Penguin (Egg)",
- "questPenguinUnlockText": "Unlocks purchasable Penguin eggs in the Market",
+ "questPenguinUnlockText": "Unlocks Penguin Eggs for purchase in the Market",
"questStressbeastText": "The Abominable Stressbeast of the Stoïkalm Steppes",
"questStressbeastNotes": "Complete Dailies and To-Dos to damage the World Boss! Incomplete Dailies fill the Stress Strike Bar. When the Stress Strike bar is full, the World Boss will attack an NPC. A World Boss will never damage individual players or accounts in any way. Only active accounts who are not resting in the inn will have their incomplete Dailies tallied.
~*~
The first thing we hear are the footsteps, slower and more thundering than the stampede. One by one, Habiticans look outside their doors, and words fail us.
We've all seen Stressbeasts before, of course - tiny vicious creatures that attack during difficult times. But this? This towers taller than the buildings, with paws that could crush a dragon with ease. Frost swings from its stinking fur, and as it roars, the icy blast rips the roofs off our houses. A monster of this magnitude has never been mentioned outside of distant legend.
\"Beware, Habiticans!\" SabreCat cries. \"Barricade yourselves indoors - this is the Abominable Stressbeast itself!\"
\"That thing must be made of centuries of stress!\" Kiwibot says, locking the Tavern door tightly and shuttering the windows.
\"The Stoïkalm Steppes,\" Lemoness says, face grim. \"All this time, we thought they were placid and untroubled, but they must have been secretly hiding their stress somewhere. Over generations, it grew into this, and now it's broken free and attacked them - and us!\"
There's only one way to drive away a Stressbeast, Abominable or otherwise, and that's to attack it with completed Dailies and To-Dos! Let's all band together and fight off this fearsome foe - but be sure not to slack on your tasks, or our undone Dailies may enrage it so much that it lashes out...",
"questStressbeastBoss": "The Abominable Stressbeast",
@@ -176,9 +176,9 @@
"questStressbeastBossRageStables": "`Abominable Stressbeast uses STRESS STRIKE!`\n\nThe surge of stress heals Abominable Stressbeast!\n\nOh no! Despite our best efforts, we've let some Dailies get away from us, and their dark-red colour has infuriated the Abominable Stressbeast and caused it to regain some of its health! The horrible creature lunges for the Stables, but Matt the Beast Master heroically leaps into the fray to protect the pets and mounts. The Stressbeast has seized Matt in its vicious grip, but at least it's distracted for the moment. Hurry! Let's keep our Dailies in check and defeat this monster before it attacks again!",
"questStressbeastBossRageBailey": "`Abominable Stressbeast uses STRESS STRIKE!`\n\nThe surge of stress heals Abominable Stressbeast!\n\nAhh!!! Our incomplete Dailies caused the Abominable Stressbeast to become madder than ever and regain some of its health! Bailey the Town Crier was shouting for citizens to get to safety, and now it has seized her in its other hand! Look at her, valiantly reporting on the news as the Stressbeast swings her around viciously... Let's be worthy of her bravery by being as productive as we can to save our NPCs!",
"questStressbeastBossRageGuide": "`Abominable Stressbeast uses STRESS STRIKE!`\n\nThe surge of stress heals Abominable Stressbeast!\n\nLook out! Justin the Guide is trying to distract the Stressbeast by running around its ankles, yelling productivity tips! The Abominable Stressbeast is stomping madly, but it seems like we're really wearing this beast down. I doubt it has enough energy for another strike. Don't give up... we're so close to finishing it off!",
- "questStressbeastDesperation": "`Abominable Stressbeast reaches 500K health! Abominable Stressbeast uses Desperate Defense!`\n\nWe're almost there, Habiticans! With diligence and Dailies, we've whittled the Stressbeast's health down to only 500K! The creature roars and flails in desperation, rage building faster than ever. Bailey and Matt yell in terror as it begins to swing them around at a terrifying pace, raising a blinding snowstorm that makes it harder to hit.\n\nWe'll have to redouble our efforts, but take heart - this is a sign that the Stressbeast knows it is about to be defeated. Don't give up now!",
+ "questStressbeastDesperation": "`Abominable Stressbeast reaches 500K health! Abominable Stressbeast uses Desperate Defence!`\n\nWe're almost there, Habiticans! With diligence and Dailies, we've whittled the Stressbeast's health down to only 500K! The creature roars and flails in desperation, rage building faster than ever. Bailey and Matt yell in terror as it begins to swing them around at a terrifying pace, raising a blinding snowstorm that makes it harder to hit.\n\nWe'll have to redouble our efforts, but take heart - this is a sign that the Stressbeast knows it is about to be defeated. Don't give up now!",
"questStressbeastCompletion": "
The Abominable Stressbeast is DEFEATED!We've done it! With a final bellow, the Abominable Stressbeast dissipates into a cloud of snow. The flakes twinkle down through the air as cheering Habiticans embrace their pets and mounts. Our animals and our NPCs are safe once more!
Stoïkalm is Saved!SabreCat speaks gently to a small sabertooth. \"Please find the citizens of the Stoïkalm Steppes and bring them to us,\" he says. Several hours later, the sabertooth returns, with a herd of mammoth riders following slowly behind. You recognise the head rider as Lady Glaciate, the leader of Stoïkalm.
\"Mighty Habiticans,\" she says, \"My citizens and I owe you the deepest thanks, and the deepest apologies. In an effort to protect our Steppes from turmoil, we began to secretly banish all of our stress into the icy mountains. We had no idea that it would build up over generations into the Stressbeast that you saw! When it broke loose, it trapped all of us in the mountains in its stead and went on a rampage against our beloved animals.\" Her sad gaze follows the falling snow. \"We put everyone at risk with our foolishness. Rest assured that in the future, we will come to you with our problems before our problems come to you.\"
She turns to where @Baconsaur is snuggling with some of the baby mammoths. \"We have brought your animals an offering of food to apologise for frightening them, and as a symbol of trust, we will leave some of our pets and mounts with you. We know that you will all take care good care of them.\"",
- "questStressbeastCompletionChat": "`The Abominable Stressbeast is DEFEATED!`\n\nWe've done it! With a final bellow, the Abominable Stressbeast dissipates into a cloud of snow. The flakes twinkle down through the air as cheering Habiticans embrace their pets and mounts. Our animals and our NPCs are safe once more!\n\n`Stoïkalm is Saved!`\n\nSabreCat speaks gently to a small sabertooth. \"Please find the citizens of the Stoïkalm Steppes and bring them to us,\" he says. Several hours later, the sabertooth returns, with a herd of mammoth riders following slowly behind. You recognize the head rider as Lady Glaciate, the leader of Stoïkalm.\n\n\"Mighty Habiticans,\" she says, \"My citizens and I owe you the deepest thanks, and the deepest apologies. In an effort to protect our Steppes from turmoil, we began to secretly banish all of our stress into the icy mountains. We had no idea that it would build up over generations into the Stressbeast that you saw! When it broke loose, it trapped all of us in the mountains in its stead and went on a rampage against our beloved animals.\" Her sad gaze follows the falling snow. \"We put everyone at risk with our foolishness. Rest assured that in the future, we will come to you with our problems before our problems come to you.\"\n\nShe turns to where @Baconsaur is snuggling with some of the baby mammoths. \"We have brought your animals an offering of food to apologise for frightening them, and as a symbol of trust, we will leave some of our pets and mounts with you. We know that you will all take care good care of them.\"",
+ "questStressbeastCompletionChat": "`The Abominable Stressbeast is DEFEATED!`\n\nWe've done it! With a final bellow, the Abominable Stressbeast dissipates into a cloud of snow. The flakes twinkle down through the air as cheering Habiticans embrace their pets and mounts. Our animals and our NPCs are safe once more!\n\n`Stoïkalm is Saved!`\n\nSabreCat speaks gently to a small sabertooth. \"Please find the citizens of the Stoïkalm Steppes and bring them to us,\" he says. Several hours later, the sabertooth returns, with a herd of mammoth riders following slowly behind. You recognise the head rider as Lady Glaciate, the leader of Stoïkalm.\n\n\"Mighty Habiticans,\" she says, \"My citizens and I owe you the deepest thanks, and the deepest apologies. In an effort to protect our Steppes from turmoil, we began to secretly banish all of our stress into the icy mountains. We had no idea that it would build up over generations into the Stressbeast that you saw! When it broke loose, it trapped all of us in the mountains in its stead and went on a rampage against our beloved animals.\" Her sad gaze follows the falling snow. \"We put everyone at risk with our foolishness. Rest assured that in the future, we will come to you with our problems before our problems come to you.\"\n\nShe turns to where @Baconsaur is snuggling with some of the baby mammoths. \"We have brought your animals an offering of food to apologise for frightening them, and as a symbol of trust, we will leave some of our pets and mounts with you. We know that you will all take care good care of them.\"",
"questTRexText": "King of the Dinosaurs",
"questTRexNotes": "Now that ancient creatures from the Stoïkalm Steppes are roaming throughout all of Habitica, @Urse has decided to adopt a full-grown Tyrannosaur. What could go wrong?
Everything.",
"questTRexCompletion": "The wild dinosaur finally stops its rampage and settles down to make friends with the giant roosters. @Urse beams down at it. \"They're not such terrible pets, after all! They just need a little discipline. Here, take some Tyrannosaur eggs for yourself.\"",
@@ -191,43 +191,43 @@
"questTRexUndeadRageDescription": "This bar fills when you don't complete your Dailies. When it is full, the Skeletal Tyrannosaur will heal 30% of its remaining health!",
"questTRexUndeadRageEffect": "`Skeletal Tyrannosaur uses SKELETON HEALING!`\n\nThe monster lets forth an unearthly roar, and some of its damaged bones knit back together!",
"questTRexDropTRexEgg": "Tyrannosaur (Egg)",
- "questTRexUnlockText": "Unlocks purchasable Tyrannosaur eggs in the Market",
+ "questTRexUnlockText": "Unlocks Tyrannosaur Eggs for purchase in the Market",
"questRockText": "Escape the Cave Creature",
"questRockNotes": "Crossing Habitica's Meandering Mountains with some friends, you make camp one night in a beautiful cave laced with shining minerals. But when you wake up the next morning, the entrance has disappeared and the floor of the cave is shifting underneath you.
\"The mountain's alive!\" shouts your companion @pfeffernusse. \"These aren't crystals—these are teeth!\"
@Painter de Cluster grabs your hand. \"We'll have to find another way out—stay with me and don't get distracted, or we could be trapped in here forever!\"",
"questRockBoss": "Crystal Colossus",
"questRockCompletion": "Your diligence has allowed you to find a safe path through the living mountain. Standing in the sunshine, your friend @intune notices something glinting on the ground by the cave's exit. You stoop to pick it up, and see that it's a small rock with a vein of gold running through it. Beside it are a number of other rocks with rather peculiar shapes. They almost look like... eggs?",
"questRockDropRockEgg": "Rock (Egg)",
- "questRockUnlockText": "Unlocks purchasable Rock eggs in the Market",
+ "questRockUnlockText": "Unlocks Rock Eggs for purchase in the Market",
"questBunnyText": "The Killer Bunny",
"questBunnyNotes": "After many difficult days, you reach the peak of Mount Procrastination and stand before the imposing doors of the Fortress of Neglect. You read the inscription in the stone. \"Inside resides the creature that embodies your greatest fears, the reason for your inaction. Knock and face your demon!\" You tremble, imagining the horror within and feel the urge to flee as you have done so many times before. @Draayder holds you back. \"Steady, my friend! The time has come at last. You must do this!\"
You knock and the doors swing inward. From within the gloom you hear a deafening roar, and you draw your weapon.",
"questBunnyBoss": "Killer Bunny",
"questBunnyCompletion": "With one final blow the killer rabbit sinks to the ground. A sparkly mist rises from her body as she shrinks down into a tiny bunny... nothing like the cruel beast you faced a moment before. Her nose twitches adorably and she hops away, leaving some eggs behind. @Gully laughs. \"Mount Procrastination has a way of making even the smallest challenges seem insurmountable. Let's gather these eggs and head for home.\"",
"questBunnyDropBunnyEgg": "Bunny (Egg)",
- "questBunnyUnlockText": "Unlocks purchasable Bunny eggs in the Market",
+ "questBunnyUnlockText": "Unlocks Bunny Eggs for purchase in the Market",
"questSlimeText": "The Jam Regent",
"questSlimeNotes": "As you work on your tasks, you notice you are moving slower and slower. \"It's like walking through molasses,\" @Leephon grumbles. \"No, like walking through jam!\" @starsystemic says. \"That slimy Jelly Regent has slathered his stuff all over Habitica. It's gumming up the works. Everybody is slowing down.\" You look around. The streets are slowly filling with clear, colourful ooze, and Habiticans are struggling to get anything done. As others flee the area, you grab a mop and prepare for battle!",
"questSlimeBoss": "Jam Regent",
"questSlimeCompletion": "With a final jab, you trap the Jam Regent in an over-sized doughnut, rushed in by @Overomega, @LordDarkly, and @Shaner, the quick-thinking leaders of the pastry club. As everyone is patting you on the back, you feel someone slip something into your pocket. It’s the reward for your sweet success: three Marshmallow Slime eggs.",
"questSlimeDropSlimeEgg": "Marshmallow Slime (Egg)",
- "questSlimeUnlockText": "Unlocks purchasable Slime eggs in the Market",
+ "questSlimeUnlockText": "Unlocks Marshmallow Slime Eggs for purchase in the Market",
"questSheepText": "The Thunder Ram",
"questSheepNotes": "As you wander the rural Taskan countryside with friends, taking a \"quick break\" from your obligations, you find a cosy yarn shop. You are so absorbed in your procrastination that you hardly notice the ominous clouds creep over the horizon. \"I've got a ba-a-a-ad feeling about this weather,\" mutters @Misceo, and you look up. The stormy clouds are swirling together, and they look a lot like a... \"We don't have time for cloud-gazing!\" @starsystemic shouts. \"It's attacking!\" The Thunder Ram hurtles forward, slinging bolts of lightning right at you!",
"questSheepBoss": "Thunder Ram",
"questSheepCompletion": "Impressed by your diligence, the Thunder Ram is drained of its fury. It launches three huge hailstones in your direction, and then fades away with a low rumble. Upon closer inspection, you discover that the hailstones are actually three fluffy eggs. You gather them up, and then stroll home under a blue sky.",
"questSheepDropSheepEgg": "Sheep (Egg)",
- "questSheepUnlockText": "Unlocks purchasable Sheep eggs in the Market",
+ "questSheepUnlockText": "Unlocks Sheep Eggs for purchase in the Market",
"questKrakenText": "The Kraken of Inkomplete",
"questKrakenNotes": "It's a warm, sunny day as you sail across the Inkomplete Bay, but your thoughts are clouded with worries about everything that you still need to do. It seems that as soon as you finish one task, another crops up, and then another...
Suddenly, the boat gives a horrible jolt, and slimy tentacles burst out of the water on all sides! \"We're being attacked by the Kraken of Inkomplete!\" Wolvenhalo cries.
\"Quickly!\" Lemoness calls to you. \"Strike down as many tentacles and tasks as you can, before new ones can rise up to take their place!\"",
"questKrakenBoss": "The Kraken of Inkomplete",
"questKrakenCompletion": "As the Kraken flees, several eggs float to the surface of the water. Lemoness examines them, and her suspicion turns to delight. \"Cuttlefish eggs!\" she says. \"Here, take them as a reward for everything you've completed.\"",
"questKrakenDropCuttlefishEgg": "Cuttlefish (Egg)",
- "questKrakenUnlockText": "Unlocks purchasable Cuttlefish eggs in the Market",
+ "questKrakenUnlockText": "Unlocks Cuttlefish Eggs for purchase in the Market",
"questWhaleText": "Wail of the Whale",
"questWhaleNotes": "You arrive at the Diligent Docks, hoping to take a submarine to watch the Dilatory Derby. Suddenly, a deafening bellow forces you to stop and cover your ears. \"Thar she blows!\" cries Captain @krazjega, pointing to a huge, wailing whale. \"It's not safe to send out the submarines while she's thrashing around!\"
\"Quick,\" calls @UncommonCriminal. \"Help me calm the poor creature so we can figure out why she's making all this noise!\"",
"questWhaleBoss": "Wailing Whale",
"questWhaleCompletion": "After much hard work, the whale finally ceases her thunderous cry. \"Looks like she was drowning in waves of negative habits,\" @zoebeagle explains. \"Thanks to your consistent effort, we were able to turn the tides!\" As you step into the submarine, several whale eggs bob towards you, and you scoop them up.",
"questWhaleDropWhaleEgg": "Whale (Egg)",
- "questWhaleUnlockText": "Unlocks purchasable Whale eggs in the Market",
+ "questWhaleUnlockText": "Unlocks Whale Eggs for purchase in the Market",
"questGroupDilatoryDistress": "Dilatory Distress",
"questDilatoryDistress1Text": "Dilatory Distress, Part 1: Message in a Bottle",
"questDilatoryDistress1Notes": "A message in a bottle arrived from the newly rebuilt city of Dilatory! It reads: \"Dear Habiticans, we need your help once again. Our princess has disappeared and the city is under siege by some unknown watery demons! The mantis shrimps are holding the attackers at bay. Please aid us!\" To make the long journey to the sunken city, one must be able to breathe water. Fortunately, the alchemists @Benga and @hazel can make it all possible! You only have to find the proper ingredients.",
@@ -257,13 +257,13 @@
"questCheetahCompletion": "The new Habitican is breathing heavily after the wild ride, but thanks you and your friends for your help. \"I'm glad that Cheetah won't be able to grab anyone else. It did leave some Cheetah eggs for us, so maybe we can raise them into more trustworthy pets!\"",
"questCheetahBoss": "Cheetah",
"questCheetahDropCheetahEgg": "Cheetah (Egg)",
- "questCheetahUnlockText": "Unlocks purchasable Cheetah eggs in the Market",
+ "questCheetahUnlockText": "Unlocks Cheetah Eggs for purchase in the Market",
"questHorseText": "Ride the Night-Mare",
"questHorseNotes": "While relaxing in the Tavern with @beffymaroo and @JessicaChase, the talk turns to good-natured boasting about your adventuring accomplishments. Proud of your deeds, and perhaps getting a bit carried away, you brag that you can tame any task around. A nearby stranger turns toward you and smiles. One eye twinkles as he invites you to prove your claim by riding his horse.\nAs you all head for the stables, @UncommonCriminal whispers, \"You may have bitten off more than you can chew. That's no horse - that's a Night-Mare!\" Looking at its stamping hooves, you begin to regret your words...",
"questHorseCompletion": "It takes all your skill, but finally the horse stamps a couple of hooves and nuzzles you in the shoulder before allowing you to mount. You ride briefly but proudly around the Tavern grounds while your friends cheer. The stranger breaks into a broad grin.\n\"I can see that was no idle boast! Your determination is truly impressive. Take these eggs to raise horses of your own, and perhaps we'll meet again one day.\" You take the eggs, the stranger tips his hat... and vanishes.",
"questHorseBoss": "Night-Mare",
"questHorseDropHorseEgg": "Horse (Egg)",
- "questHorseUnlockText": "Unlocks purchasable Horse eggs in the Market",
+ "questHorseUnlockText": "Unlocks Horse Eggs for purchase in the Market",
"questBurnoutText": "Burnout and the Exhaust Spirits",
"questBurnoutNotes": "It is well past midnight, still and stiflingly hot, when Redphoenix and scout captain Kiwibot abruptly burst through the city gates. \"We need to evacuate all the wooden buildings!\" Redphoenix shouts. \"Hurry!\"
Kiwibot grips the wall as she catches her breath. \"It's draining people and turning them into Exhaust Spirits! That's why everything was delayed. That's where the missing people have gone. It's been stealing their energy!\"
\"'It'?'\" asks Lemoness.
And then the heat takes form.
It rises from the earth in a billowing, twisting mass, and the air chokes with the scent of smoke and sulphur. Flames lick across the molten ground and contort into limbs, writhing to horrific heights. Smoldering eyes snap open, and the creature lets out a deep and crackling cackle.
Kiwibot whispers a single word.
\"Burnout.\"",
"questBurnoutCompletion": "
Burnout is DEFEATED!With a great, soft sigh, Burnout slowly releases the ardent energy that was fueling its fire. As the monster curls quietly into ashes, its stolen energy shimmers through the air, rejuvenating the Exhaust Spirits and returning them to their true forms.
Ian, Daniel, and the Seasonal Sorceress cheer as Habiticans rush to greet them, and all the missing citizens of the Flourishing Fields embrace their friends and families. The final Exhaust Spirit transforms into the Joyful Reaper herself!
\"Look!\" whispers @Baconsaur, as the ashes begin to glitter. Slowly, they resolve into hundreds of shining phoenixes!
One of the glowing birds alights on the Joyful Reaper's skeletal arm, and she grins at it. \"It has been a long time since I've had the exquisite privilege to behold a phoenix in the Flourishing Fields,\" she says. \"Although given recent occurrences, I must say, this is highly thematically appropriate!\"
Her tone sobers, although (naturally) her grin remains. \"We're known for being hard-working here, but we are also known for our feasts and festivities. Rather ironic, I suppose, that as we strove to plan a spectacular party, we refused to permit ourselves any time for fun. We certainly won't make the same mistake twice!\"
She claps her hands. \"Now - let's celebrate!\"",
@@ -281,41 +281,41 @@
"questFrogCompletion": "The frog cowers back into the muck, defeated. As it slinks away, the blue slime fades, leaving the way ahead clear.
Sitting in the middle of the path are three pristine eggs. \"You can even see the tiny tadpoles through the clear casing!\" @Breadstrings says. \"Here, you should take them.\"",
"questFrogBoss": "Clutter Frog",
"questFrogDropFrogEgg": "Frog (Egg)",
- "questFrogUnlockText": "Unlocks purchasable Frog eggs in the Market",
+ "questFrogUnlockText": "Unlocks Frog Eggs for purchase in the Market",
"questSnakeText": "The Serpent of Distraction",
- "questSnakeNotes": "It takes a hardy soul to live in the Sand Dunes of Distraction. The arid desert is hardly a productive place, and the shimmering dunes have led many a traveler astray. However, something has even the locals spooked. The sands have been shifting and upturning entire villages. Residents claim a monster with an enormous serpentine body lies in wait under the sands, and they have all pooled together a reward for whomever will help them find and stop it. The much-lauded snake charmers @EmeraldOx and @PainterProphet have agreed to help you summon the beast. Can you stop the Serpent of Distraction?",
+ "questSnakeNotes": "It takes a hardy soul to live in the Sand Dunes of Distraction. The arid desert is hardly a productive place, and the shimmering dunes have led many a traveller astray. However, something has even the locals spooked. The sands have been shifting and upturning entire villages. Residents claim a monster with an enormous serpentine body lies in wait under the sands, and they have all pooled together a reward for whomever will help them find and stop it. The much-lauded snake charmers @EmeraldOx and @PainterProphet have agreed to help you summon the beast. Can you stop the Serpent of Distraction?",
"questSnakeCompletion": "With assistance from the charmers, you banish the Serpent of Distraction. Though you were happy to help the inhabitants of the Dunes, you can't help but feel a little sad for your fallen foe. While you contemplate the sights, @LordDarkly approaches you. \"Thank you! It's not much, but I hope this can express our gratitude properly.\" He hands you some Gold and... some Snake eggs! You will see that majestic animal again after all.",
"questSnakeBoss": "Serpent of Distraction",
"questSnakeDropSnakeEgg": "Snake (Egg)",
- "questSnakeUnlockText": "Unlocks purchasable Snake eggs in the Market",
+ "questSnakeUnlockText": "Unlocks Snake Eggs for purchase in the Market",
"questUnicornText": "Convincing the Unicorn Queen",
"questUnicornNotes": "Conquest Creek has become muddied, destroying Habit City's fresh water supply! Luckily, @Lukreja knows an old legend that claims that a unicorn's horn can purify the foulest of waters. Together with your intrepid guide @UncommonCriminal, you hike through the frozen peaks of the Meandering Mountains. Finally, at the icy summit of Mount Habitica itself, you find the Unicorn Queen amid the glittering snows. \"Your pleas are compelling,\" she tells you. \"But first you must prove that you are worthy of my aid!\"",
"questUnicornCompletion": "Impressed by your diligence and strength, the Unicorn Queen at last agrees that your cause is worthy. She allows you to ride on her back as she soars to the source of Conquest Creek. As she lowers her golden horn to the befouled waters, a brilliant blue light rises from the water’s surface. It is so blinding that you are forced to close your eyes. When you open them a moment later, the unicorn is gone. However, @rosiesully lets out a cry of delight: the water is now clear, and three shining eggs rest at the creek’s edge.",
"questUnicornBoss": "The Unicorn Queen",
"questUnicornDropUnicornEgg": "Unicorn (Egg)",
- "questUnicornUnlockText": "Unlocks purchasable Unicorn eggs in the Market",
+ "questUnicornUnlockText": "Unlocks Unicorn Eggs for purchase in the Market",
"questSabretoothText": "The Sabre Cat",
"questSabretoothNotes": "A roaring monster is terrorizing Habitica! The creature stalks through the wilds and woods, then bursts forth to attack before vanishing again. It's been hunting innocent pandas and frightening the flying pigs into fleeing their pens to roost in the trees. @InspectorCaracal and @icefelis explain that the Zombie Sabre Cat was set free while they were excavating in the ancient, untouched ice-fields of the Stoïkalm Steppes. \"It was perfectly friendly at first – I don't know what happened. Please, you have to help us recapture it! Only a champion of Habitica can subdue this prehistoric beast!\"",
"questSabretoothCompletion": "After a long and tiring battle, you wrestle the Zombie Sabre Cat to the ground. As you are finally able to approach, you notice a nasty cavity in one of its sabre teeth. Realising the true cause of the cat's wrath, you're able to get the cavity filled by @Fandekasp, and advise everyone to avoid feeding their friend sweets in future. The Sabre Cat flourishes, and in gratitude, its tamers send you a generous reward – a clutch of sabretooth eggs!",
"questSabretoothBoss": "Zombie Sabre Cat",
"questSabretoothDropSabretoothEgg": "Sabretooth (Egg)",
- "questSabretoothUnlockText": "Unlocks purchasable Sabretooth eggs in the Market",
+ "questSabretoothUnlockText": "Unlocks Sabretooth Eggs for purchase in the Market",
"questMonkeyText": "Monstrous Mandrill and the Mischief Monkeys",
"questMonkeyNotes": "The Sloensteadi Savannah is being torn apart by the Monstrous Mandrill and his Mischief Monkeys! They shriek loudly enough to drown out the sound of approaching deadlines, encouraging everyone to avoid their duties and keep monkeying around. Alas, plenty of people ape this bad behavior. If no one stops these primates, soon everyone's tasks will be as red as the Monstrous Mandrill's face!
\"It will take a dedicated adventurer to resist them,\" says @yamato.
\"Quick, let's get this monkey off everyone's backs!\" @Oneironaut yells, and you charge into battle.",
"questMonkeyCompletion": "You did it! No bananas for those fiends today. Overwhelmed by your diligence, the monkeys flee in panic. \"Look,\" says @Misceo. \"They left a few eggs behind.\"
@Leephon grins. \"Maybe a well-trained pet monkey can help you as much as the wild ones hinder you!\"",
"questMonkeyBoss": "Monstrous Mandrill",
"questMonkeyDropMonkeyEgg": "Monkey (Egg)",
- "questMonkeyUnlockText": "Unlocks purchasable Monkey eggs in the Market",
+ "questMonkeyUnlockText": "Unlocks Monkey Eggs for purchase in the Market",
"questSnailText": "The Snail of Drudgery Sludge",
"questSnailNotes": "You're excited to begin questing in the abandoned Dungeons of Drudgery, but as soon as you enter, you feel the ground under your feet start to suck at your boots. You look up to the path ahead and see Habiticans mired in slime. @Overomega yells, \"They have too many unimportant tasks and dailies, and they're getting stuck on things that don't matter! Pull them out!\"
\"You need to find the source of the ooze,\" @Pfeffernusse agrees, \"or the tasks that they cannot accomplish will drag them down forever!\"
Pulling out your weapon, you wade through the gooey mud.... and encounter the fearsome Snail of Drudgery Sludge.",
"questSnailCompletion": "You bring your weapon down on the great Snail's shell, cracking it in two, releasing a flood of water. The slime is washed away, and the Habiticans around you rejoice. \"Look!\" says @Misceo. \"There's a small group of snail eggs in the remnants of the muck.\"",
"questSnailBoss": "Snail of Drudgery Sludge",
"questSnailDropSnailEgg": "Snail (Egg)",
- "questSnailUnlockText": "Unlocks purchasable Snail eggs in the Market",
+ "questSnailUnlockText": "Unlocks Snail Eggs for purchase in the Market",
"questBewilderText": "The Be-Wilder",
"questBewilderNotes": "The party begins like any other.
The appetisers are excellent, the music is swinging, and even the dancing elephants have become routine. Habiticans laugh and frolic amid the overflowing floral centrepieces, happy to have a distraction from their least-favourite tasks, and the April Fool whirls among them, eagerly providing an amusing trick here and a witty twist there.
As the Mistiflying clock tower strikes midnight, the April Fool leaps onto the stage to give a speech.
“Friends! Enemies! Tolerant acquaintances! Lend me your ears.” The crowd chuckles as animal ears sprout from their heads, and they pose with their new accessories.
“As you know,” the Fool continues, “my confusing illusions usually only last a single day. But I’m pleased to announce that I’ve discovered a shortcut that will guarantee us non-stop fun, without having to deal with the pesky weight of our responsibilities. Charming Habiticans, meet my magical new friend... the Be-Wilder!”
Lemoness pales suddenly, dropping her hors d'oeuvres. “Wait! Don’t trust--”
But suddenly mists are pouring into the room, glittering and thick, and they swirl around the April Fool, coalescing into cloudy feathers and a stretching neck. The crowd is speechless as an monstrous bird unfolds before them, its wings shimmering with illusions. It lets out a horrible screeching laugh.
“Oh, it has been ages since a Habitican has been foolish enough to summon me! How wonderful it feels, to have a tangible form at last.”
Buzzing in terror, the magic bees of Mistiflying flee the floating city, which sags from the sky. One by one, the brilliant spring flowers wither up and wisp away.
“My dearest friends, why so alarmed?” crows the Be-Wilder, beating its wings. “There’s no need to toil for your rewards any more. I’ll just give you all the things that you desire!”
A rain of coins pours from the sky, hammering into the ground with brutal force, and the crowd screams and flees for cover. “Is this a joke?” Baconsaur shouts, as the gold smashes through windows and shatters roof shingles.
PainterProphet ducks as lightning bolts crackle overhead, and fog blots out the sun. “No! This time, I don’t think it is!”
Quickly, Habiticans, don’t let this World Boss distract us from our goals! Stay focused on the tasks that you need to complete so we can rescue Mistiflying -- and hopefully, ourselves.",
- "questBewilderCompletion": "
The Be-Wilder is DEFEATED!We've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.
Mistiflying is saved!The April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”
The crowd mutters. Sodden flowers wash up on pavements. Somewhere in the distance, a roof collapses with a spectacular splash.
“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”
Redphoenix coughs meaningfully.
“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”
Encouraged, the marching band starts up.
It isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.
As Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honour.”",
- "questBewilderCompletionChat": "`The Be-Wilder is DEFEATED!`\n\nWe've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.\n\n`Mistiflying is saved!`\n\nThe April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”\n\nThe crowd mutters. Sodden flowers wash up on pavements. Somewhere in the distance, a roof collapses with a spectacular splash.\n\n“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”\n\nRedphoenix coughs meaningfully.\n\n“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”\n\nEncouraged, the marching band starts up.\n\nIt isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.\n\nAs Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honour.”",
+ "questBewilderCompletion": "
The Be-Wilder is DEFEATED!We've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.
Mistiflying is saved!The April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”
The crowd mutters. Sodden flowers wash up on pavements. Somewhere in the distance, a roof collapses with a spectacular splash.
“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”
Redphoenix coughs meaningfully.
“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”
Encouraged, the marching band starts up.
It isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.
As Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolises the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honour.”",
+ "questBewilderCompletionChat": "`The Be-Wilder is DEFEATED!`\n\nWe've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.\n\n`Mistiflying is saved!`\n\nThe April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”\n\nThe crowd mutters. Sodden flowers wash up on pavements. Somewhere in the distance, a roof collapses with a spectacular splash.\n\n“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”\n\nRedphoenix coughs meaningfully.\n\n“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”\n\nEncouraged, the marching band starts up.\n\nIt isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.\n\nAs Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolises the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honour.”",
"questBewilderBossRageTitle": "Beguilement Strike",
"questBewilderBossRageDescription": "When this gauge fills, The Be-Wilder will unleash its Beguilement Strike on Habitica!",
"questBewilderDropBumblebeePet": "Magical Bee (Pet)",
@@ -328,19 +328,19 @@
"questFalconCompletion": "Having finally triumphed over the Birds of Preycrastination, you settle down to enjoy the view and your well-earned rest.
\"Wow!\" says @Trogdorina. \"You won!\"
@Squish adds, \"Here, take these eggs I found as a reward.\"",
"questFalconBoss": "Birds of Preycrastination",
"questFalconDropFalconEgg": "Falcon (Egg)",
- "questFalconUnlockText": "Unlocks purchasable Falcon eggs in the Market",
+ "questFalconUnlockText": "Unlocks Falcon Eggs for purchase in the Market",
"questTreelingText": "The Tangle Tree",
"questTreelingNotes": "It's the annual Garden Competition, and everyone is talking about the mysterious project which @aurakami has promised to unveil. You join the crowd on the day of the big announcement, and marvel at the introduction of a moving tree. @fuzzytrees explains that the tree will help with garden maintenance, showing how it can mow the lawn, trim the hedge and prune the roses all at the same time – until the tree suddenly goes wild, turning its secateurs on its creator! The crowd panics as everyone tries to flee, but you aren't afraid – you leap forward, ready to do battle.",
"questTreelingCompletion": "You dust yourself off as the last few leaves drift to the floor. In spite of the upset, the Garden Competition is now safe – although the tree you just reduced to a heap of wood chips won't be winning any prizes! \"Still a few kinks to work out there,\" @PainterProphet says. \"Perhaps someone else would do a better job of training the saplings. Do you fancy a go?\"",
"questTreelingBoss": "Tangle Tree",
"questTreelingDropTreelingEgg": "Treeling (Egg)",
- "questTreelingUnlockText": "Unlocks purchasable Treeling eggs in the Market",
+ "questTreelingUnlockText": "Unlocks Treeling Eggs for purchase in the Market",
"questAxolotlText": "The Magical Axolotl",
"questAxolotlNotes": "From the depths of Washed-Up Lake you see rising bubbles and... fire? A little axolotl rises from the murky water spewing streaks of colours. Suddenly it begins to open its mouth and @streak yells, \"Look out!\" as the Magical Axolotl starts to gulp up your willpower!
The Magical Axolotl swells with spells, taunting you. \"Have you heard of my powers of regeneration? You'll tire before I do!\"
\"We can defeat you with the good habits we've built!\" @PainterProphet defiantly shouts. You steel yourself to be productive to defeat the Magical Axolotl and regain your stolen willpower!",
"questAxolotlCompletion": "After defeating the Magical Axolotl, you realise that you regained your willpower all on your own.
\"The willpower? The regeneration? It was all just an illusion?\" @Kiwibot asks.
\"Most magic is,\" the Magical Axolotl replies. \"I'm sorry for tricking you. Please take these eggs as an apology. I trust you to raise them to use their magic for good habits and not evil!\"
You and @hazel40 clutch your new eggs in one hand and wave goodbye with the other as the Magical Axolotl returns to the lake.",
"questAxolotlBoss": "Magical Axolotl",
"questAxolotlDropAxolotlEgg": "Axolotl (Egg)",
- "questAxolotlUnlockText": "Unlocks purchasable Axolotl eggs in the Market",
+ "questAxolotlUnlockText": "Unlocks Axolotl Eggs for purchase in the Market",
"questAxolotlRageTitle": "Axolotl Regeneration",
"questAxolotlRageDescription": "This bar fills when you don't complete your Dailies. When it is full, the Magical Axolotl will heal 30% of its remaining health!",
"questAxolotlRageEffect": "`Magical Axolotl uses AXOLOTL REGENERATION!`\n\n`A curtain of colourful bubbles obscures the monster for a moment, and when it clears, some of its wounds have vanished!`",
@@ -349,25 +349,25 @@
"questTurtleCompletion": "Your valiant work has cleared the waters for our sea turtle to find her beach. You, @Bambin, and @JaizakAripaik watch as she buries her brood of eggs deep in the sand so they can grow and hatch into hundreds of little sea turtles. Ever the lady, she gives you three eggs each, asking that you feed and nurture them so one day they become big sea turtles themselves.",
"questTurtleBoss": "Task Flotsam",
"questTurtleDropTurtleEgg": "Turtle (Egg)",
- "questTurtleUnlockText": "Unlocks purchasable Turtle eggs in the Market",
+ "questTurtleUnlockText": "Unlocks Turtle Eggs for purchase in the Market",
"questArmadilloText": "The Indulgent Armadillo",
"questArmadilloNotes": "It's time to get outside and start your day. You swing open your door only to be met with what looks like a sheet of rock. \"I'm just giving you the day off!\" says a muffled voice through the blocked door. \"Don't be such a bummer, just relax today!\"
Suddenly, @Beffymaroo and @PainterProphet knock on your window. \"Looks like the Indulgent Armadillo has taken a liking to you! C'mon, we'll help you get her out of your way!\"",
"questArmadilloCompletion": "Finally, after a long morning of convincing the Indulgent Armadillo that you do, in fact, want to work, she caves. \"I'm sorry!\" She apologises. \"I just wanted to help. I thought everyone liked lazy days!\"
You smile, and let her know that next time you've earned a day off you'll invite her over. She grins back at you. Passers-by @Tipsy and @krajzega congratulate you on the good work as she rolls away, leaving a few eggs as an apology.",
"questArmadilloBoss": "Indulgent Armadillo",
"questArmadilloDropArmadilloEgg": "Armadillo (Egg)",
- "questArmadilloUnlockText": "Unlocks purchasable Armadillo eggs in the Market",
+ "questArmadilloUnlockText": "Unlocks Armadillo Eggs for purchase in the Market",
"questCowText": "The Mootant Cow",
"questCowNotes": "It’s been a long, hot day at Sparring Farms, and there is nothing more you want than a long sip of water and some sleep. You're standing there daydreaming when @Soloana suddenly screams, \"Everyone run! The prize cow has mootated!\"
@eevachu gulps. \"It must be our bad habits that infected it.\"
\"Quick!\" @Feralem Tau says. \"Let’s do something before the udder cows mootate, too.\"
You’ve herd enough. No more daydreaming -- it's time to get those bad habits under control!",
"questCowCompletion": "You milk your good habits for all they are worth until the cow reverts to its original form. The cow looks over at you with her pretty brown eyes and nudges over three eggs.
@fuzzytrees laughs and hands you the eggs, \"Maybe it still is mootated if there are baby cows in these eggs. But I trust you to stick to your good habits when you raise them!\"",
"questCowBoss": "Mootant Cow",
"questCowDropCowEgg": "Cow (Egg)",
- "questCowUnlockText": "Unlocks purchasable Cow eggs in the Market",
+ "questCowUnlockText": "Unlocks Cow Eggs for purchase in the Market",
"questBeetleText": "The CRITICAL BUG",
"questBeetleNotes": "Something in the domain of Habitica has gone awry. The Blacksmiths' forges have extinguished, and strange errors are appearing everywhere. With an ominous tremor, an insidious foe worms from the earth... a CRITICAL BUG! You brace yourself as it infects the land, and glitches begin to overtake the Habiticans around you. @starsystemic yells, \"We need to help the Blacksmiths get this Bug under control!\" It looks like you'll have to make this programmer's pest your top priority.",
"questBeetleCompletion": "With a final attack, you crush the CRITICAL BUG. @starsystemic and the Blacksmiths rush up to you, overjoyed. \"I can't thank you enough for smashing that bug! Here, take these.\" You are presented with three shiny beetle eggs. Hopefully these little bugs will grow up to help Habitica, not hurt it.",
"questBeetleBoss": "CRITICAL BUG",
"questBeetleDropBeetleEgg": "Beetle (Egg)",
- "questBeetleUnlockText": "Unlocks purchasable Beetle eggs in the Market",
+ "questBeetleUnlockText": "Unlocks Beetle Eggs for purchase in the Market",
"questGroupTaskwoodsTerror": "Terror in the Taskwoods",
"questTaskwoodsTerror1Text": "Terror in the Taskwoods, Part 1: The Blaze in the Taskwoods",
"questTaskwoodsTerror1Notes": "You have never seen the Joyful Reaper so agitated. The ruler of the Flourishing Fields lands her skeleton gryphon mount right in the middle of Productivity Plaza and shouts without dismounting. \"Lovely Habiticans, we need your help! Something is starting fires in the Taskwoods, and we still haven't fully recovered from our battle against Burnout. If it's not halted, the flames could engulf all of our wild orchards and berry bushes!\"
You quickly volunteer, and hasten to the Taskwoods. As you creep into Habitica’s biggest fruit-bearing forest, you suddenly hear clanking and cracking voices from far ahead, and catch the faint smell of smoke. Soon enough, a horde of cackling, flaming skull-creatures flies by you, biting off branches and setting the treetops on fire!",
@@ -397,7 +397,7 @@
"questFerretCompletion": "You defeat the soft-furred swindler and @UncommonCriminal gives the crowd their refunds. There's even a little gold left over for you. Plus, it looks like the Nefarious Ferret dropped some eggs in his hurry to get away!",
"questFerretBoss": "Nefarious Ferret",
"questFerretDropFerretEgg": "Ferret (Egg)",
- "questFerretUnlockText": "Unlocks purchasable Ferret eggs in the Market",
+ "questFerretUnlockText": "Unlocks Ferret Eggs for purchase in the Market",
"questDustBunniesText": "The Feral Dust Bunnies",
"questDustBunniesNotes": "It's been a while since you've done any dusting in here, but you're not too worried—a little dust never hurt anyone, right? It's not until you stick your hand into one of the dustiest corners and feel something bite that you remember @InspectorCaracal's warning: leaving harmless dust sit too long causes it to turn into vicious dust bunnies! You'd better defeat them before they cover all of Habitica in fine particles of dirt!",
"questDustBunniesCompletion": "The dust bunnies vanish into a puff of... well, dust. As it clears, you look around. You'd forgotten how nice this place looks when it's clean. You spy a small pile of gold where the dust used to be. Huh, you'd been wondering where that was!",
@@ -419,17 +419,17 @@
"questMoon3Boss": "Monstrous Moon",
"questMoon3DropWeapon": "Lunar Scythe (Two-Handed Weapon)",
"questSlothText": "The Somnolent Sloth",
- "questSlothNotes": "As you and your party venture through the Somnolent Snowforest, you're relieved to see a glimmering of green among the white snowdrifts... until an enormous sloth emerges from the frosty trees! Green emeralds shimmer hypnotically on its back.
\"Hello, adventurers... why don't you take it slow? You've been walking for a while... so why not... stop? Just lie down, and rest...\"
You feel your eyelids grow heavy, and you realize: It's the Somnolent Sloth! According to @JaizakAripaik, it got its name from the emeralds on its back which are rumored to... send people to... sleep...
You shake yourself awake, fighting drowsiness. In the nick of time, @awakebyjava and @PainterProphet begin to shout spells, forcing your party awake. \"Now's our chance!\" @Kiwibot yells.",
+ "questSlothNotes": "As you and your party venture through the Somnolent Snowforest, you're relieved to see a glimmering of green among the white snowdrifts... until an enormous sloth emerges from the frosty trees! Green emeralds shimmer hypnotically on its back.
\"Hello, adventurers... why don't you take it slow? You've been walking for a while... so why not... stop? Just lie down, and rest...\"
You feel your eyelids grow heavy, and you realise: It's the Somnolent Sloth! According to @JaizakAripaik, it got its name from the emeralds on its back which are rumored to... send people to... sleep...
You shake yourself awake, fighting drowsiness. In the nick of time, @awakebyjava and @PainterProphet begin to shout spells, forcing your party awake. \"Now's our chance!\" @Kiwibot yells.",
"questSlothCompletion": "You did it! As you defeat the Somnolent Sloth, its emeralds break off. \"Thank you for freeing me of my curse,\" says the sloth. \"I can finally sleep well, without those heavy emeralds on my back. Have these eggs as thanks, and you can have the emeralds too.\" The sloth gives you three sloth eggs and heads off for warmer climates.",
"questSlothBoss": "Somnolent Sloth",
"questSlothDropSlothEgg": "Sloth (Egg)",
- "questSlothUnlockText": "Unlocks purchasable Sloth eggs in the Market",
+ "questSlothUnlockText": "Unlocks Sloth Eggs for purchase in the Market",
"questTriceratopsText": "The Trampling Triceratops",
"questTriceratopsNotes": "The snow-capped Stoïkalm Volcanoes are always bustling with hikers and sight-seers. One tourist, @plumilla, calls over a crowd. \"Look! I enchanted the ground to glow so that we can play field games on it for our outdoor activity Dailies!\" Sure enough, the ground is swirling with glowing red patterns. Even some of the prehistoric pets from the area come over to play.
Suddenly, there's a loud snap -- a curious Triceratops has stepped on @plumilla's wand! It's engulfed in a burst of magic energy, and the ground starts shaking and growing hot. The Triceratops' eyes shine red, and it roars and begins to stampede!
\"That's not good,\" calls @McCoyly, pointing in the distance. Each magic-fueled stomp is causing the volcanoes to erupt, and the glowing ground is turning to lava beneath the dinosaur's feet! Quickly, you must hold off the Trampling Triceratops until someone can reverse the spell!",
"questTriceratopsCompletion": "With quick thinking, you herd the creature towards the soothing Stoïkalm Steppes so that @*~Seraphina~* and @PainterProphet can reverse the lava spell without distraction. The calming aura of the Steppes takes effect, and the Triceratops curls up as the volcanoes go dormant once more. @PainterProphet passes you some eggs that were rescued from the lava. \"Without you, we wouldn't have been able to concentrate to stop the eruptions. Give these pets a good home.\"",
"questTriceratopsBoss": "Trampling Triceratops",
"questTriceratopsDropTriceratopsEgg": "Triceratops (Egg)",
- "questTriceratopsUnlockText": "Unlocks purchasable Triceratops eggs in the Market",
+ "questTriceratopsUnlockText": "Unlocks Triceratops Eggs for purchase in the Market",
"questGroupStoikalmCalamity": "Stoïkalm Calamity",
"questStoikalmCalamity1Text": "Stoïkalm Calamity, Part 1: Earthen Enemies",
"questStoikalmCalamity1Notes": "A terse missive arrives from @Kiwibot, and the frost-crusted scroll chills your heart as well as your fingertips. \"Visiting Stoïkalm Steppes -- monsters bursting from earth -- send help!\" You gather your party and ride north, but as soon as you venture down from the mountains, the snow beneath your feet explodes and gruesomely grinning skulls surround you!
Suddenly, a spear sails past, burying itself in a skull that was burrowing through the snow in an attempt to catch you unawares. A tall woman in finely-crafted armour gallops into the fray on the back of a mastodon, her long braid swinging as she yanks the spear unceremoniously from the crushed beast. It's time to fight off these foes with the help of Lady Glaciate, the leader of the Mammoth Riders!",
@@ -458,19 +458,19 @@
"questGuineaPigCompletion": "\"We submit!\" The Guinea Pig Gang Boss waves his paws at you, fluffy head hanging in shame. From underneath his hat falls a list, and @snazzyorange quickly swipes it for evidence. \"Wait a minute,\" you say. \"It's no wonder you've been getting hurt! You've got way too many Dailies. You don't need health potions -- you just need help organising.\"
\"Really?\" squeaks the Guinea Pig Gang Boss. \"We've robbed so many people because of this! Please take our eggs as an apology for our crooked ways.\"",
"questGuineaPigBoss": "Guinea Pig Gang",
"questGuineaPigDropGuineaPigEgg": "Guinea Pig (Egg)",
- "questGuineaPigUnlockText": "Unlocks purchasable Guinea Pig eggs in the Market",
+ "questGuineaPigUnlockText": "Unlocks Guinea Pig Eggs for purchase in the Market",
"questPeacockText": "The Push-and-Pull Peacock",
"questPeacockNotes": "You trek through the Taskwoods, wondering which of the enticing new goals you should pick. As you go deeper into the forest, you realise that you're not alone in your indecision. \"I could learn a new language, or go to the gym...\" @Cecily Perez mutters. \"I could sleep more,\" muses @Lilith of Alfheim, \"or spend time with my friends...\" It looks like @PainterProphet, @Pfeffernusse, and @Draayder are equally paralysed by the overwhelming options.
You realise that these ever-more-demanding feelings aren't really your own... you've stumbled straight into the trap of the pernicious Push-and-Pull Peacock! Before you can run, it leaps from the bushes. With each head pulling you in conflicting directions, you start to feel burnout overcoming you. You can't defeat both foes at once, so you only have one option -- concentrate on the nearest task to fight back!",
"questPeacockCompletion": "The Push-and-Pull Peacock is caught off guard by your sudden conviction. Defeated by your single-minded drive, its heads merge back into one, revealing the most beautiful creature you've ever seen. \"Thank you,\" the peacock says. \"I’ve spent so long pulling myself in different directions that I lost sight of what I truly wanted. Please accept these eggs as a token of my gratitude.\"",
"questPeacockBoss": "Push-and-Pull Peacock",
"questPeacockDropPeacockEgg": "Peacock (Egg)",
- "questPeacockUnlockText": "Unlocks purchasable Peacock eggs in the Market",
+ "questPeacockUnlockText": "Unlocks Peacock Eggs for purchase in the Market",
"questButterflyText": "Bye, Bye, Butterfry",
"questButterflyNotes": "Your gardener friend @Megan sends you an invitation: “These warm days are the perfect time to visit Habitica’s butterfly garden in the Taskan countryside. Come see the butterflies migrate!” When you arrive, however, the garden is in shambles -- little more than scorched grass and dried-out weeds. It’s been so hot that the Habiticans haven’t come out to water the flowers, and the dark-red Dailies have turned it into a dry, sun-baked, fire-hazard. There's only one butterfly there, and there's something odd about it...
“Oh no! This is the perfect hatching ground for the Flaming Butterfry,” cries @Leephon.
“If we don’t catch it, it’ll destroy everything!” gasps @Eevachu.
Time to say bye, bye to Butterfry!",
"questButterflyCompletion": "After a blazing battle, the Flaming Butterfry is captured. “Great job catching the that would-be arsonist,” says @Megan with a sigh of relief. “Still, it’s hard to vilify even the vilest butterfly. We’d better free this Butterfry someplace safe…like the desert.”
One of the other gardeners, @Beffymaroo, comes up to you, singed but smiling. “Will you help raise these foundling chrysalises we found? Perhaps next year we’ll have a greener garden for them.”",
"questButterflyBoss": "Flaming Butterfry",
"questButterflyDropButterflyEgg": "Caterpillar (Egg)",
- "questButterflyUnlockText": "Unlocks purchasable Caterpillar eggs in the Market",
+ "questButterflyUnlockText": "Unlocks Caterpillar Eggs for purchase in the Market",
"questGroupMayhemMistiflying": "Mayhem in Mistiflying",
"questMayhemMistiflying1Text": "Mayhem in Mistiflying, Part 1: In Which Mistiflying Experiences a Dreadful Bother",
"questMayhemMistiflying1Notes": "Although local soothsayers predicted pleasant weather, the afternoon is extremely breezy, so you gratefully follow your friend @Kiwibot into their house to escape the blustery day.
Neither of you expects to find the April Fool lounging at the kitchen table.
“Oh, hello,” he says. “Fancy seeing you here. Please, let me offer you some of this delicious tea.”
“That’s…” @Kiwibot begins. “That’s MY—“
“Yes, yes, of course,” says the April Fool, helping himself to some cookies. “Just thought I’d pop indoors and get a nice reprieve from all the tornado-summoning skulls.” He takes a casual sip from his teacup. “Incidentally, the city of Mistiflying is under attack.”
Horrified, you and your friends race to the Stables and saddle your fastest winged mounts. As you soar towards the floating city, you see that a swarm of chattering, flying skulls are laying siege to the city… and several turn their attentions towards you!",
@@ -490,7 +490,7 @@
"questMayhemMistiflying2CollectGreenMistiflies": "Green Mistiflies",
"questMayhemMistiflying2DropHeadgear": "Roguish Rainbow Messenger Hood (Headgear)",
"questMayhemMistiflying3Text": "Mayhem in Mistiflying, Part 3: In Which a Mailman is Extremely Rude",
- "questMayhemMistiflying3Notes": "The Mistiflies are whirling so thickly through the tornado that it’s hard to see. Squinting, you spot a many-winged silhouette floating at the center of the tremendous storm.
“Oh, dear,” the April Fool sighs, nearly drowned out by the howl of the weather. “Looks like Winny went and got himself possessed. Very relatable problem, that. Could happen to anybody.”
“The Wind-Worker!” @Beffymaroo hollers at you. “He’s Mistiflying’s most talented messenger-mage, since he’s so skilled with weather magic. Normally he’s a very polite mailman!”
As if to counteract this statement, the Wind-Worker lets out a scream of fury, and even with your magic robes, the storm nearly rips you from your mount.
“That gaudy mask is new,” the April Fool remarks. “Perhaps you should relieve him of it?”
It’s a good idea… but the enraged mage isn’t going to give it up without a fight.",
+ "questMayhemMistiflying3Notes": "The Mistiflies are whirling so thickly through the tornado that it’s hard to see. Squinting, you spot a many-winged silhouette floating at the centre of the tremendous storm.
“Oh, dear,” the April Fool sighs, nearly drowned out by the howl of the weather. “Looks like Winny went and got himself possessed. Very relatable problem, that. Could happen to anybody.”
“The Wind-Worker!” @Beffymaroo hollers at you. “He’s Mistiflying’s most talented messenger-mage, since he’s so skilled with weather magic. Normally he’s a very polite mailman!”
As if to counteract this statement, the Wind-Worker lets out a scream of fury, and even with your magic robes, the storm nearly rips you from your mount.
“That gaudy mask is new,” the April Fool remarks. “Perhaps you should relieve him of it?”
It’s a good idea… but the enraged mage isn’t going to give it up without a fight.",
"questMayhemMistiflying3Completion": "Just as you think you can’t withstand the wind any longer, you manage to snatch the mask from the Wind-Worker’s face. Instantly, the tornado is sucked away, leaving only balmy breezes and sunshine. The Wind-Worker looks around in bemusement. “Where did she go?”
“Who?” your friend @khdarkwolf asks.
“That sweet woman who offered to deliver a package for me. Tzina.” As he takes in the wind-swept city below him, his expression darkens. “Then again, maybe she wasn’t so sweet…”
The April Fool pats him on the back, then hands you two shimmering envelopes. “Here. Why don’t you let this distressed fellow rest, and take charge of the mail for a bit? I hear the magic in those envelopes will make them worth your while.”",
"questMayhemMistiflying3Boss": "The Wind-Worker",
"questMayhemMistiflying3DropPinkCottonCandy": "Pink Cotton Candy (Food)",
@@ -498,12 +498,12 @@
"questMayhemMistiflying3DropWeapon": "Roguish Rainbow Message (Main-Hand Item)",
"featheredFriendsText": "Feathered Friends Quest Bundle",
"featheredFriendsNotes": "Contains 'Help! Harpy!,' 'The Night-Owl,' and 'The Birds of Preycrastination.' Available until May 31.",
- "questNudibranchText": "Infestation of the NowDo Nudibranches",
- "questNudibranchNotes": "You finally get around to checking your To-dos on a lazy day in Habitica. Bright against your deepest red tasks are a gaggle of vibrant blue sea slugs. You are entranced! Their sapphire colours make your most intimidating tasks look as easy as your best Habits. In a feverish stupor you get to work, tackling one task after the other in a ceaseless frenzy...
The next thing you know, @LilithofAlfheim is pouring cold water over you. “The NowDo Nudibranches have been stinging you all over! You need to take a break!”
Shocked, you see that your skin is as bright red as your To-Do list was. \"Being productive is one thing,\" @beffymaroo says, \"but you've also got to take care of yourself. Hurry, let's get rid of them!\"",
- "questNudibranchCompletion": "You see the last of the NowDo Nudibranches sliding off of a pile of completed tasks as @amadshade washes them away. One leaves behind a cloth bag, and you open it to reveal some gold and a few little ellipsoids you guess are eggs.",
+ "questNudibranchText": "Infestation of the NowDo Nudibranchs",
+ "questNudibranchNotes": "You finally get around to checking your To-dos on a lazy day in Habitica. Bright against your deepest red tasks are a gaggle of vibrant blue sea slugs. You are entranced! Their sapphire colours make your most intimidating tasks look as easy as your best Habits. In a feverish stupor you get to work, tackling one task after the other in a ceaseless frenzy...
The next thing you know, @LilithofAlfheim is pouring cold water over you. “The NowDo Nudibranchs have been stinging you all over! You need to take a break!”
Shocked, you see that your skin is as bright red as your To-Do list was. \"Being productive is one thing,\" @beffymaroo says, \"but you've also got to take care of yourself. Hurry, let's get rid of them!\"",
+ "questNudibranchCompletion": "You see the last of the NowDo Nudibranchs sliding off of a pile of completed tasks as @amadshade washes them away. One leaves behind a cloth bag, and you open it to reveal some gold and a few little ellipsoids you guess are eggs.",
"questNudibranchBoss": "NowDo Nudibranch",
"questNudibranchDropNudibranchEgg": "Nudibranch (Egg)",
- "questNudibranchUnlockText": "Unlocks purchasable Nudibranch eggs in the Market",
+ "questNudibranchUnlockText": "Unlocks Nudibranch Eggs for purchase in the Market",
"splashyPalsText": "Splashy Pals Quest Bundle",
"splashyPalsNotes": "Contains 'The Dilatory Derby', 'Guide the Turtle', and 'Wail of the Whale'. Available until July 31.",
"questHippoText": "What a Hippo-Crite",
@@ -511,9 +511,9 @@
"questHippoCompletion": "The hippo bows in surrender. “I underestimated you. It seems you weren’t being lazy. My apologies. Truth be told, I may have been projecting a bit. Perhaps I should get some work done myself. Here, take these eggs as a sign of my gratitude.” Grabbing them, you settle down by the water, ready to relax at last.",
"questHippoBoss": "The Hippo-Crite",
"questHippoDropHippoEgg": "Hippo (Egg)",
- "questHippoUnlockText": "Unlocks purchasable Hippo eggs in the Market",
+ "questHippoUnlockText": "Unlocks Hippo Eggs for purchase in the Market",
"farmFriendsText": "Farm Friends Quest Bundle",
- "farmFriendsNotes": "Contains 'The Mootant Cow', 'Ride the Night-Mare', and 'The Thunder Ram'. Available until September 30.",
+ "farmFriendsNotes": "Contains 'The Mootant Cow', 'Ride the Night-Mare', and 'The Thunder Ram'. Available until August 31.",
"witchyFamiliarsText": "Witchy Familiars Quest Bundle",
"witchyFamiliarsNotes": "Contains 'The Rat King', 'The Icy Arachnid', and 'Swamp of the Clutter Frog'. Available until October 31.",
"questGroupLostMasterclasser": "Mystery of the Masterclassers",
@@ -557,25 +557,25 @@
"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)",
- "questYarnUnlockText": "Unlocks purchasable Yarn eggs in the Market",
+ "questYarnUnlockText": "Unlocks Yarn Eggs for purchase in the Market",
"winterQuestsText": "Winter Quest Bundle",
- "winterQuestsNotes": "Contains 'Trapper Santa', 'Find the Cub', and 'The Fowl Frost'. Available until December 31.",
+ "winterQuestsNotes": "Contains 'Trapper Santa', 'Find the Cub', and 'The Fowl Frost'. Available until January 31. Note that Trapper Santa and Find the Cub have stackable quest achievements but give a rare pet and mount that can only be added to your stable once.",
"questPterodactylText": "The Pterror-dactyl",
"questPterodactylNotes": "You're taking a stroll along the peaceful Stoïkalm Cliffs when an evil screech rends the air. You turn to find a hideous creature flying towards you and are overcome by a powerful terror. As you turn to flee, @Lilith of Alfheim grabs you. \"Don't panic! It's just a Pterror-dactyl.\"
@Procyon P nods. \"They nest nearby, but they're attracted to the scent of negative Habits and undone Dailies.\"
\"Don't worry,\" @Katy133 says. \"We just need to be extra productive to defeat it!\" You are filled with a renewed sense of purpose and turn to face your foe.",
"questPterodactylCompletion": "With one last screech the Pterror-dactyl plummets over the side of the cliff. You run forward to watch it soar away over the distant steppes. \"Phew, I'm glad that's over,\" you say. \"Me too,\" replies @GeraldThePixel. \"But look! It's left some eggs behind for us.\" @Edge passes you three eggs, and you vow to raise them in tranquility, surrounded by positive Habits and blue Dailies.",
"questPterodactylBoss": "Pterror-dactyl",
"questPterodactylDropPterodactylEgg": "Pterodactyl (Egg)",
- "questPterodactylUnlockText": "Unlocks purchasable Pterodactyl eggs in the Market",
+ "questPterodactylUnlockText": "Unlocks Pterodactyl Eggs for purchase in the Market",
"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",
"questBadgerDropBadgerEgg": "Badger (Egg)",
- "questBadgerUnlockText": "Unlocks purchasable Badger eggs in the Market",
+ "questBadgerUnlockText": "Unlocks Badger Eggs for purchase in the Market",
"questDysheartenerText": "The Dysheartener",
"questDysheartenerNotes": "The sun is rising on Valentine’s Day when a shocking crash splinters the air. A blaze of sickly pink light lances through all the buildings, and bricks crumble as a deep crack rips through Habit City’s main street. An unearthly shrieking rises through the air, shattering windows as a hulking form slithers forth from the gaping earth.
Mandibles snap and a carapace glitters; legs upon legs unfurl in the air. The crowd begins to scream as the insectoid creature rears up, revealing itself to be none other than that cruelest of creatures: the fearsome Dysheartener itself. It howls in anticipation and lunges forward, hungering to gnaw on the hopes of hard-working Habiticans. With each rasping scrape of its spiny forelegs, you feel a vise of despair tightening in your chest.
“Take heart, everyone!” Lemoness shouts. “It probably thinks that we’re easy targets because so many of us have daunting New Year’s Resolutions, but it’s about to discover that Habiticans know how to stick to their goals!”
AnnDeLune raises her staff. “Let’s tackle our tasks and take this monster down!”",
- "questDysheartenerCompletion": "
The Dysheartener is DEFEATED!Together, everyone in Habitica strikes a final blow to their tasks, and the Dysheartener rears back, shrieking with dismay. “What's wrong, Dysheartener?” AnnDeLune calls, eyes sparkling. “Feeling discouraged?”
Glowing pink fractures crack across the Dysheartener's carapace, and it shatters in a puff of pink smoke. As a renewed sense of vigor and determination sweeps across the land, a flurry of delightful sweets rains down upon everyone.
The crowd cheers wildly, hugging each other as their pets happily chew on the belated Valentine's treats. Suddenly, a joyful chorus of song cascades through the air, and gleaming silhouettes soar across the sky.
Our newly-invigorated optimism has attracted a flock of Hopeful Hippogriffs! The graceful creatures alight upon the ground, ruffling their feathers with interest and prancing about. “It looks like we've made some new friends to help keep our spirits high, even when our tasks are daunting,” Lemoness says.
Beffymaroo already has her arms full with feathered fluffballs. “Maybe they'll help us rebuild the damaged areas of Habitica!”
Crooning and singing, the Hippogriffs lead the way as all the Habitcans work together to restore our beloved home.",
- "questDysheartenerCompletionChat": "`The Dysheartener is DEFEATED!`\n\nTogether, everyone in Habitica strikes a final blow to their tasks, and the Dysheartener rears back, shrieking with dismay. “What's wrong, Dysheartener?” AnnDeLune calls, eyes sparkling. “Feeling discouraged?”\n\nGlowing pink fractures crack across the Dysheartener's carapace, and it shatters in a puff of pink smoke. As a renewed sense of vigor and determination sweeps across the land, a flurry of delightful sweets rains down upon everyone.\n\nThe crowd cheers wildly, hugging each other as their pets happily chew on the belated Valentine's treats. Suddenly, a joyful chorus of song cascades through the air, and gleaming silhouettes soar across the sky.\n\nOur newly-invigorated optimism has attracted a flock of Hopeful Hippogriffs! The graceful creatures alight upon the ground, ruffling their feathers with interest and prancing about. “It looks like we've made some new friends to help keep our spirits high, even when our tasks are daunting,” Lemoness says.\n\nBeffymaroo already has her arms full with feathered fluffballs. “Maybe they'll help us rebuild the damaged areas of Habitica!”\n\nCrooning and singing, the Hippogriffs lead the way as all the Habitcans work together to restore our beloved home.",
+ "questDysheartenerCompletion": "
The Dysheartener is DEFEATED!Together, everyone in Habitica strikes a final blow to their tasks, and the Dysheartener rears back, shrieking with dismay. “What's wrong, Dysheartener?” AnnDeLune calls, eyes sparkling. “Feeling discouraged?”
Glowing pink fractures crack across the Dysheartener's carapace, and it shatters in a puff of pink smoke. As a renewed sense of vigour and determination sweeps across the land, a flurry of delightful sweets rains down upon everyone.
The crowd cheers wildly, hugging each other as their pets happily chew on the belated Valentine's treats. Suddenly, a joyful chorus of song cascades through the air, and gleaming silhouettes soar across the sky.
Our newly-invigorated optimism has attracted a flock of Hopeful Hippogriffs! The graceful creatures alight upon the ground, ruffling their feathers with interest and prancing about. “It looks like we've made some new friends to help keep our spirits high, even when our tasks are daunting,” Lemoness says.
Beffymaroo already has her arms full with feathered fluffballs. “Maybe they'll help us rebuild the damaged areas of Habitica!”
Crooning and singing, the Hippogriffs lead the way as all the Habitcans work together to restore our beloved home.",
+ "questDysheartenerCompletionChat": "`The Dysheartener is DEFEATED!`\n\nTogether, everyone in Habitica strikes a final blow to their tasks, and the Dysheartener rears back, shrieking with dismay. “What's wrong, Dysheartener?” AnnDeLune calls, eyes sparkling. “Feeling discouraged?”\n\nGlowing pink fractures crack across the Dysheartener's carapace, and it shatters in a puff of pink smoke. As a renewed sense of vigour and determination sweeps across the land, a flurry of delightful sweets rains down upon everyone.\n\nThe crowd cheers wildly, hugging each other as their pets happily chew on the belated Valentine's treats. Suddenly, a joyful chorus of song cascades through the air, and gleaming silhouettes soar across the sky.\n\nOur newly-invigorated optimism has attracted a flock of Hopeful Hippogriffs! The graceful creatures alight upon the ground, ruffling their feathers with interest and prancing about. “It looks like we've made some new friends to help keep our spirits high, even when our tasks are daunting,” Lemoness says.\n\nBeffymaroo already has her arms full with feathered fluffballs. “Maybe they'll help us rebuild the damaged areas of Habitica!”\n\nCrooning and singing, the Hippogriffs lead the way as all the Habitcans work together to restore our beloved home.",
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
"questDysheartenerBossRageDescription": "The Rage Attack gauge fills when Habiticans miss their Dailies. If it fills up, the Dysheartener will unleash its Shattering Heartbreak attack on one of Habitica's shopkeepers, so be sure to do your tasks!",
"questDysheartenerBossRageSeasonal": "`The Dysheartener uses SHATTERING HEARTBREAK!`\n\nOh, no! After feasting on our undone Dailies, the Dysheartener has gained the strength to unleash its Shattering Heartbreak attack. With a shrill shriek, it brings its spiny forelegs down upon the pavilion that houses the Seasonal Shop! The concussive blast of magic shreds the wood, and the Seasonal Sorceress is overcome by sorrow at the sight.\n\nQuickly, let's keep doing our Dailies so that the beast won't strike again!",
@@ -596,11 +596,11 @@
"hugabugText": "Hug a Bug Quest Bundle",
"hugabugNotes": "Contains 'The CRITICAL BUG,' 'The Snail of Drudgery Sludge,' and 'Bye, Bye, Butterfry.' Available until March 31.",
"questSquirrelText": "The Sneaky Squirrel",
- "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!",
+ "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 defence 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": "Sneaky Squirrel",
"questSquirrelDropSquirrelEgg": "Squirrel (Egg)",
- "questSquirrelUnlockText": "Unlocks purchasable Squirrel eggs in the Market",
+ "questSquirrelUnlockText": "Unlocks Squirrel Eggs for purchase in the Market",
"cuddleBuddiesText": "Cuddle Buddies Quest Bundle",
"cuddleBuddiesNotes": "Contains 'The Killer Bunny', 'The Nefarious Ferret', and 'The Guinea Pig Gang'. Available until May 31.",
"aquaticAmigosText": "Aquatic Amigos Quest Bundle",
@@ -610,13 +610,13 @@
"questSeaSerpentCompletion": "Battered by your commitment, the sea serpent flees, disappearing into the depths. When you arrive in Dilatory, you breathe a sigh of relief before noticing @*~Seraphina~ approaching with three translucent eggs cradled in her arms. “Here, you should have these,” she says. “You know how to handle a sea serpent!” As you accept the eggs, you vow anew to remain steadfast in completing your tasks to ensure that there’s not a repeat occurrence.",
"questSeaSerpentBoss": "The Mighty Sea Serpent",
"questSeaSerpentDropSeaSerpentEgg": "Sea Serpent (Egg)",
- "questSeaSerpentUnlockText": "Unlocks purchasable Sea Serpent eggs in the Market",
+ "questSeaSerpentUnlockText": "Unlocks Sea Serpent Eggs for purchase in the Market",
"questKangarooText": "Kangaroo Catastrophe",
"questKangarooNotes": "Maybe you should have finished that last task… you know, the one you keep avoiding, even though it always comes back around? But @Mewrose and @LilithofAlfheim invited you and @stefalupagus to see a rare kangaroo troop hopping through the Sloensteadi Savannah; how could you say no?! As the troop comes into view, something hits you on the back of the head with a mighty
whack!Shaking the stars from your vision, you pick up the responsible object--a dark red boomerang, with the very task you continually push back etched into its surface. A quick glance around confirms the rest of your party met a similar fate. One larger kangaroo looks at you with a smug grin, like she’s daring you to face her and that dreaded task once and for all!",
"questKangarooCompletion": "“NOW!” You signal your party to throw the boomerangs back at the kangaroo. The beast hops further away with each hit until she flees, leaving nothing more than a dark red cloud of dust, a few eggs, and some gold coins.
@Mewrose walks forward to where the kangaroo once stood. “Hey, where did the boomerangs go?”
“They probably dissolved into dust, making that dark red cloud, when we finished our respective tasks,” @stefalupagus speculates.
@LilithofAlfheim squints at the horizon. “Is that another kangaroo troop heading our way?”
You all break into a run back to Habit City. Better to face your difficult tasks than take another lump to the back of the head!",
"questKangarooBoss": "Catastrophic Kangaroo",
"questKangarooDropKangarooEgg": "Kangaroo (Egg)",
- "questKangarooUnlockText": "Unlocks purchasable Kangaroo eggs in the Market",
+ "questKangarooUnlockText": "Unlocks Kangaroo Eggs for purchase in the Market",
"forestFriendsText": "Forest Friends Quest Bundle",
"forestFriendsNotes": "Contains 'The Spirit of Spring', 'The Hedgebeast', and 'The Tangle Tree'. Available until September 30.",
"questAlligatorText": "The Insta-Gator",
@@ -624,9 +624,9 @@
"questAlligatorCompletion": "With your attention focused on what’s important and not the Insta-Gator’s distractions, the Insta-Gator flees. Victory! “Are those eggs? They look like gator eggs to me,” asks @mfonda. “If we care for them correctly, they’ll be loyal pets or faithful steeds,” answers @UncommonCriminal, handing you three to care for. Let’s hope so, or else the Insta-Gator might make a return…",
"questAlligatorBoss": "Insta-Gator",
"questAlligatorDropAlligatorEgg": "Alligator (Egg)",
- "questAlligatorUnlockText": "Unlocks purchasable Alligator eggs in the Market",
+ "questAlligatorUnlockText": "Unlocks Alligator Eggs for purchase in the Market",
"oddballsText": "Oddballs Quest Bundle",
- "oddballsNotes": "Contains 'The Jelly Regent,' 'Escape the Cave Creature,' and 'A Tangled Yarn.' Available until December 3.",
+ "oddballsNotes": "Contains 'The Jelly Regent,' 'Escape the Cave Creature,' and 'A Tangled Yarn.' Available until June 30.",
"birdBuddiesText": "Bird Buddies Quest Bundle",
"birdBuddiesNotes": "Contains 'The Fowl Frost,' 'Rooster Rampage,' and 'The Push-and-Pull Peacock.' Available until December 31.",
"questVelociraptorText": "The Veloci-Rapper",
@@ -634,7 +634,46 @@
"questVelociraptorCompletion": "You burst through the grass, confronting the Veloci-Rapper.
See here, rapper, you’re no quitter,
You’re Bad Habits' hardest hitter!
Check off your To-Dos like a boss,
Don’t mourn over one day’s loss!Filled with renewed confidence, it bounds off to freestyle another day, leaving behind three eggs where it sat.",
"questVelociraptorBoss": "Veloci-Rapper",
"questVelociraptorDropVelociraptorEgg": "Velociraptor (Egg)",
- "questVelociraptorUnlockText": "Unlocks purchasable Velociraptor eggs in the Market",
+ "questVelociraptorUnlockText": "Unlocks Velociraptor Eggs for purchase in the Market",
"mythicalMarvelsText": "Mythical Marvels Quest Bundle",
- "mythicalMarvelsNotes": "Contains 'Convincing the Unicorn Queen,' 'The Fiery Gryphon,' and 'Danger in the Depths: Sea Serpent Strike!' Available until February 28."
+ "mythicalMarvelsNotes": "Contains 'Convincing the Unicorn Queen,' 'The Fiery Gryphon,' and 'Danger in the Depths: Sea Serpent Strike!' Available until February 28.",
+ "questSilverDropSilverPotion": "Silver Hatching Potion",
+ "questSilverCollectSilverIngots": "Silver Ingots",
+ "rockingReptilesText": "Rocking Reptiles Quest Bundle",
+ "questRobotUnlockText": "Unlocks purchasable Robot Eggs in the Market",
+ "questRobotDropRobotEgg": "Robot (Egg)",
+ "questRobotCollectSprings": "Springs",
+ "questRobotCollectGears": "Gears",
+ "questRobotCollectBolts": "Bolts",
+ "questRobotCompletion": "As @Rev and the Accountability Buddy place the last bolt in place, the time machine buzzes to life. @FolleMente and @McCoyly jump aboard. “Thanks for the assist! We’ll see you in the future! By the way, these should help you with your next invention!” With that, the time travellers disappear, but left behind in the wreckage of the old Productivity Stabiliser are three clockwork eggs. Perhaps these will be the crucial components for a new production line of Accountability Buddies!",
+ "questRobotNotes": "At Max Capacity labs, @Rev is putting the finishing touches on their newest invention, a robotic Accountability Buddy, when a strange metal vehicle suddenly appears in a plume of smoke, inches from the robot’s Fluctuation Detector! Its occupants, two strange figures dressed in silver, emerge and remove their space helmets, revealing themselves as @FolleMente and @McCoyly.
“I hypothesise that there was an anomaly in our productivity implementation,” @FolleMente says sheepishly.
@McCoyly crosses her arms. “That means they neglected to complete their Dailies, which I postulate led to the disintegration of our Productivity Stabiliser. It’s an essential component to time travel that needs consistency to work properly. Our accomplishments power our movement through time and space! I don’t have time to explain further, @Rev. You’ll discover it in 37 years, or perhaps your allies the Mysterious Time Travellers can fill you in. For now, can you help us fix our time machine?”",
+ "questRobotText": "Mysterious Mechanical Marvels!",
+ "questSilverUnlockText": "Unlocks Silver Hatching Potions for purchase in the Market",
+ "questSilverCollectMoonRunes": "Moon Runes",
+ "questSilverCollectCancerRunes": "Cancer Zodiac Runes",
+ "questSilverCompletion": "You've delved. You've dredged. You've scavenged. At last you emerge from the Dungeons, laden with runes and bars of silver, covered in sludge but exhilarated with success. You journey back to Habit City and set to work in an alchemy lab. You and @starsystemic follow the formulas @QuartzFox found, under the careful supervision of @Edge. Finally, in a great puff of glitter and smoke, your concoction settles into the familiar viscosity of a Hatching Potion!
@Edge scoops the mixture into vials and grins. “Let's give it a try, shall we? Anyone got any Eggs?”
You rush to the Stables, wondering what shining secrets may yet remain undiscovered...",
+ "questSilverNotes": "The recent discovery of Bronze Hatching Potions has all of Habitica talking. Could potions of even brighter metals be possible? You head to Habit City's central Public Library, accompanied by @QuartzFox and @starsystemic, and gather up great armloads of books on alchemy to study.
After hours of eye-straining labour, @QuartzFox lets out a not-quite-library-appropriate shout of triumph. “Aha! I've found it!” You hurry over to see. “A Silver Hatching Potion can be made with runes of the zodiac sign Cancer, dissolved in pure silver melted over flame infused with the power of Moon runes.”
“We'll need a lot of those ingredients,” muses @starsystemic. “In case an attempt goes wrong.”
“There's only one place to find huge quantities of such random crafting materials,” says @Edge, standing in the shadow of the stacks with arms crossed. Have they been there the whole time? “The Dungeons of Drudgery. Let's get going.”",
+ "questSilverText": "The Silver Solution",
+ "questDolphinUnlockText": "Unlocks Dolphin Eggs for purchase in the Market",
+ "questDolphinDropDolphinEgg": "Dolphin (Egg)",
+ "questDolphinCompletion": "Your battle of wills with the dolphin has left you tired but victorious. With your determination and encouragement, @mewrose, @khdarkwolf, and @confusedcicada pick themselves up and shake off the dolphin’s insidious telepathy. The four of you shield yourselves with a sense of accomplishment in your consistent Dailies, strong Habits, and completed To-Dos until it closes its glowing eyes in silent acknowledgment of your successes. With that, it tumbles back into the bay. As you trade high-fives and congratulations, you notice three eggs wash ashore.
“Hm, I wonder what we can do with those,” @khdarkwolf muses.",
+ "questDolphinBoss": "Dolphin of Doubt",
+ "questDolphinNotes": "You walk upon the shores of Inkomplete Bay, pondering the daunting work ahead of you. A splash in the water catches your eye. A magnificent dolphin arcs over the waves. Sunlight glimmers off its fins and tail. But wait...that’s not sunlight, and the dolphin doesn’t dip back into the sea. It fixes its gaze on @khdarkwolf.
“I’ll never finish all these Dailies,” said @khdarkwolf.
“I’m not good enough to reach my goals,” said @confusedcicada as the dolphin turned its glare on them.
“Why did I even bother trying?” asked @mewrose, withering under the stare of the beast.
Its eyes meet yours, and feel your mind begin to sink under the rising tide of doubt. You steel yourself; someone has to defeat this creature, and it’s going to be you!",
+ "questDolphinText": "The Dolphin of Doubt",
+ "questBronzeUnlockText": "Unlocks Bronze Hatching Potions for purchase in the Market",
+ "questBronzeDropBronzePotion": "Bronze Hatching Potion",
+ "questBronzeBoss": "Brazen Beetle",
+ "questBronzeCompletion": "“Well met, warrior!” says the beetle as she settles to the ground. Is she smiling? It's hard to tell from those mandibles. “You've truly earned these potions!”
“Oh wow, we’ve never gotten a reward like this for winning a battle before!” says @UncommonCriminal, turning a shimmering bottle in their hand. “Let's go hatch our new pets!”",
+ "questBronzeNotes": "On a refreshing break between tasks, you and some friends take a stroll through the forest trails of the Taskwoods. You come upon a large hollow log and a sparkle from inside catches your attention.
Why, it's a cache of Magic Hatching Potions! The shimmering bronze liquid swirls gently in the bottles, and @Hachiseiko reaches to pick one up to examine it.
“Halt!” hisses a voice from behind you. It's a gigantic beetle with a carapace of gleaming bronze, raising her clawed feet in a fighting stance. “Those are my potions, and if you wish to earn them, you must prove yourself in a gentlefolks' duel!”",
+ "questBronzeText": "Brazen Beetle Battle",
+ "evilSantaAddlNotes": "Note that Trapper Santa and Find the Cub have stackable quest achievements but give a rare pet and mount that can only be added to your stable once.",
+ "rockingReptilesNotes": "Contains 'The Insta-Gator,' 'The Serpent of Distraction,' and 'The Veloci-Rapper.' Available until September 30.",
+ "delightfulDinosText": "Delightful Dinos Quest Bundle",
+ "delightfulDinosNotes": "Contains 'The Pterror-dactyl,' 'The Trampling Triceratops,' and 'The Dinosaur Unearthed.' Available until November 30.",
+ "questAmberText": "The Amber Alliance",
+ "questAmberNotes": "You’re sitting in the Tavern with @beffymaroo and @-Tyr- when @Vikte bursts through the door and excitedly tells you about the rumors of another type of Magic Hatching Potion hidden in the Taskwoods. Having completed your Dailies, the three of you immediately agree to help @Vikte on their search. After all, what’s the harm in a little adventure?
After walking through the Taskwoods for hours, you’re beginning to regret joining such a wild chase. You’re about to head home, when you hear a surprised yelp and turn to see a huge lizard with shiny amber scales coiled around a tree, clutching @Vikte in her claws. @beffymaroo reaches for her sword.
“Wait!” cries @-Tyr-. “It’s the Trerezin! She’s not dangerous, just dangerously clingy!”",
+ "questAmberCompletion": "“Trerezin?” @-Tyr- says calmly. “Could you let @Vikte go? I don’t think they’re enjoying being so high up.”
The Trerezin’s amber skin blushes crimson and she gently lowers @Vikte to the ground. “My apologies! It’s been so long since I’ve had any guests that I’ve forgotten my manners!” She slithers forward to greet you properly before disappearing into her treehouse, and returning with an armful of Amber Hatching Potions as thank-you gifts!
“Magic Potions!” @Vikte gasps.
“Oh, these old things?” The Trerezin's tongue flickers as she thinks. “How about this? I’ll give you this whole stack if you promise to visit me every so often...”
And so you leave the Taskwoods, excited to tell everyone about the new potions--and your new friend!",
+ "questAmberBoss": "Trerezin",
+ "questAmberDropAmberPotion": "Amber Hatching Potion",
+ "questAmberUnlockText": "Unlocks Amber Hatching Potions for purchase in the Market"
}
diff --git a/website/common/locales/en_GB/rebirth.json b/website/common/locales/en_GB/rebirth.json
index 82fcf7b2ca..dbc73ba2ef 100644
--- a/website/common/locales/en_GB/rebirth.json
+++ b/website/common/locales/en_GB/rebirth.json
@@ -21,9 +21,10 @@
"rebirthOrb": "Used an Orb of Rebirth to start over after attaining Level <%= level %>.",
"rebirthOrb100": "Used an Orb of Rebirth to start over after attaining Level 100 or higher.",
"rebirthOrbNoLevel": "Used an Orb of Rebirth to start over.",
- "rebirthPop": "Instantly restart your character as a Level 1 Warrior, while retaining achievements, collectibles, and equipment. Your tasks and their history will remain but they will be reset to yellow. Your streaks will be removed, except from challenge tasks. Your Gold, Experience, Mana, and the effects of all Skills will be removed. All of this will take effect immediately. For more information, see the wiki's
Orb of Rebirth page.",
+ "rebirthPop": "Instantly restart your character as a Level 1 Warrior while retaining achievements, collectibles, and equipment. Your tasks and their history will remain but they will be reset to yellow. Your streaks will be removed except from tasks belonging to active Challenges and Group Plans. Your Gold, Experience, Mana, and the effects of all Skills will be removed. All of this will take effect immediately. For more information, see the wiki's
Orb of Rebirth page.",
"rebirthName": "Orb of Rebirth",
"reborn": "Reborn, max level <%= reLevel %>",
"confirmReborn": "Are you sure?",
- "rebirthComplete": "You have been reborn!"
-}
\ No newline at end of file
+ "rebirthComplete": "You have been reborn!",
+ "nextFreeRebirth": "
<%= days %> days until
FREE Orb of Rebirth"
+}
diff --git a/website/common/locales/en_GB/settings.json b/website/common/locales/en_GB/settings.json
index 8ff4b2916b..1f8f9c9536 100644
--- a/website/common/locales/en_GB/settings.json
+++ b/website/common/locales/en_GB/settings.json
@@ -119,8 +119,8 @@
"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!",
- "invitedParty": "Invited To Party",
- "invitedGuild": "Invited To Guild",
+ "invitedParty": "You were invited to a Party",
+ "invitedGuild": "You were invited to a Guild",
"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",
@@ -203,6 +203,14 @@
"goToSettings": "Go to Settings",
"usernameVerifiedConfirmation": "Your username, <%= username %>, is confirmed!",
"usernameNotVerified": "Please confirm your username.",
- "changeUsernameDisclaimer": "We will be transitioning login names to unique, public usernames soon. This username will be used for invitations, @mentions in chat, and messaging.",
- "verifyUsernameVeteranPet": "One of these Veteran Pets will be waiting for you after you've finished confirming!"
-}
\ No newline at end of file
+ "changeUsernameDisclaimer": "This username will be used for invitations, @mentions in chat, and messaging.",
+ "verifyUsernameVeteranPet": "One of these Veteran Pets will be waiting for you after you've finished confirming!",
+ "everywhere": "Everywhere",
+ "onlyPrivateSpaces": "Only in private spaces",
+ "suggestMyUsername": "Suggest my username",
+ "mentioning": "Mentioning",
+ "subscriptionReminders": "Subscriptions Reminders",
+ "newPMNotificationTitle": "New Message from <%= name %>",
+ "chatExtensionDesc": "The 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.",
+ "chatExtension": "
Chrome Chat Extension and
Firefox Chat Extension"
+}
diff --git a/website/common/locales/en_GB/spells.json b/website/common/locales/en_GB/spells.json
index 3101607d96..0f7ceb4cea 100644
--- a/website/common/locales/en_GB/spells.json
+++ b/website/common/locales/en_GB/spells.json
@@ -23,7 +23,7 @@
"spellRogueToolsOfTradeText": "Tools of the Trade",
"spellRogueToolsOfTradeNotes": "Your tricky talents buff your whole Party's Perception! (Based on: Unbuffed PER)",
"spellRogueStealthText": "Stealth",
- "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": "With each cast, a few of your undone Dailies won't cause damage tonight. Their streaks and colours won't change. (Based on: PER)",
"spellRogueStealthDaliesAvoided": "<%= originalText %> Number of dailies avoided: <%= number %>.",
"spellRogueStealthMaxedOut": " You have already avoided all your dailies; there's no need to cast this again.",
"spellHealerHealText": "Healing Light",
diff --git a/website/common/locales/en_GB/subscriber.json b/website/common/locales/en_GB/subscriber.json
index 1743a64687..8c67fd1902 100644
--- a/website/common/locales/en_GB/subscriber.json
+++ b/website/common/locales/en_GB/subscriber.json
@@ -215,5 +215,19 @@
"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",
- "mysterySet201902": "Cryptic Crush Set"
+ "mysterySet201902": "Cryptic Crush Set",
+ "mysterySet201908": "Footloose Faun Set",
+ "mysterySet201907": "Beach Buddy Set",
+ "mysterySet201906": "Kindly Koi Set",
+ "mysterySet201905": "Dazzling Dragon Set",
+ "mysterySet201904": "Opulent Opal Set",
+ "mysterySet201903": "Egg-squisite Set",
+ "subWillBecomeInactive": "Will become inactive",
+ "confirmCancelSub": "Are you sure you want to cancel your subscription? You will lose all of your subscription benefits.",
+ "mysterySet201909": "Affable Acorn Set",
+ "mysterySet201910": "Cryptic Flame Set",
+ "mysterySet201911": "Crystal Charmer Set",
+ "mysterySet201912": "Polar Pixie Set",
+ "mysterySet202001": "Fabled Fox Set",
+ "subCanceledTitle": "Subscription Cancelled"
}
diff --git a/website/common/locales/es/achievements.json b/website/common/locales/es/achievements.json
index 5f847862f2..ea464093bc 100644
--- a/website/common/locales/es/achievements.json
+++ b/website/common/locales/es/achievements.json
@@ -2,7 +2,7 @@
"achievement": "Logro",
"share": "Compartir",
"onwards": "¡Adelante!",
- "levelup": "Al cumplir tus objetivos de la vida real, ¡subes de nivel y recuperas la salud!",
+ "levelup": "Al cumplir tus objetivos de la vida real, ¡has subido de nivel y has recuperado toda tu salud!",
"reachedLevel": "Has alcanzado el nivel <%= level %>",
"achievementLostMasterclasser": "Completador de Aventuras: Serie Arquimaestra",
"achievementLostMasterclasserText": "¡Ha completado las dieciséis misiones en la Serie Arquimaestra y resuelto el misterio de la Arquimaestra Perdida!",
@@ -39,5 +39,28 @@
"achievementPearlyProText": "Ha domesticado Todas las Mascotas Blancas.",
"achievementPrimedForPaintingModalText": "¡Has conseguido todas las Mascotas Blancas!",
"achievementPrimedForPaintingText": "Ha conseguido todas las Mascotas Blancas.",
- "achievementPrimedForPainting": "Preparado para pintar"
+ "achievementPrimedForPainting": "Preparado para pintar",
+ "hideAchievements": "Ocultar <%= category %>",
+ "showAllAchievements": "Mostrar todo <%= category %>",
+ "onboardingCompleteDesc": "Has ganado
5 logros y
100 de oro por completar la lista.",
+ "earnedAchievement": "¡Has conseguido un logro!",
+ "viewAchievements": "Mirar logros",
+ "letsGetStarted": "¡Vamos a empezar!",
+ "onboardingProgress": "<%= percentage %> % progreso",
+ "gettingStartedDesc": "Vamos a crear una tarea, complétala y mira tus recompensas. ¡Ganarás
5 logros y
100 de oro cuando hayas terminado!",
+ "achievementCreatedTaskText": "Creaó su primera tarea.",
+ "achievementCreatedTask": "Crea una tarea",
+ "achievementFedPet": "Alimenta a una mascota",
+ "achievementFedPetModalText": "Hay muchos tipos de comida, pero las mascotas pueden ser quisquillosas",
+ "achievementHatchedPetModalText": "Dirígete a tu inventario y prueba a combinar una poción de eclosión y un huevo",
+ "achievementCompletedTaskText": "Has completado tu primera tarea.",
+ "achievementPurchasedEquipmentModalText": "El equipamiento es una forma de personalizar tu avatar y mejorar tus estadísticas",
+ "achievementPurchasedEquipment": "Adquirir equipamiento",
+ "achievementCompletedTaskModalText": "Marca alguna de tus tareas para conseguir recompensas",
+ "achievementCompletedTask": "Completa una tarea",
+ "achievementCreatedTaskModalText": "Añade una tarea para algo que te gustaría cumplir esta semana",
+ "achievementFedPetText": "Alimentó a su primera mascota.",
+ "achievementPurchasedEquipmentText": "Adquirió su primera pieza de equipamiento.",
+ "achievementHatchedPetText": "Eclosionó su primera mascota.",
+ "achievementHatchedPet": "Eclosiona una mascota"
}
diff --git a/website/common/locales/es/content.json b/website/common/locales/es/content.json
index cae001b768..fa47058098 100644
--- a/website/common/locales/es/content.json
+++ b/website/common/locales/es/content.json
@@ -207,7 +207,7 @@
"hatchingPotionFairy": "Hada",
"hatchingPotionStarryNight": "Noche Estrellada",
"hatchingPotionRainbow": "Arco-iris",
- "hatchingPotionGlass": "El Vidrio",
+ "hatchingPotionGlass": "Vidrio",
"hatchingPotionGlow": "que brilla en la oscuridad",
"hatchingPotionFrost": "Escarcha",
"hatchingPotionIcySnow": "Nieve Glacial",
@@ -352,5 +352,6 @@
"questEggRobotMountText": "Robot",
"questEggRobotText": "Robot",
"premiumPotionUnlimitedNotes": "No puede usarse en huevos de Mascotas de Misiones.",
- "hatchingPotionAmber": "Ámbar"
+ "hatchingPotionAmber": "Ámbar",
+ "hatchingPotionAurora": "Aurora"
}
diff --git a/website/common/locales/es/faq.json b/website/common/locales/es/faq.json
index ee1ac8fbaa..fe9c084871 100644
--- a/website/common/locales/es/faq.json
+++ b/website/common/locales/es/faq.json
@@ -1,6 +1,6 @@
{
"frequentlyAskedQuestions": "Preguntas Frecuentes",
- "faqQuestion0": "No entiendo nada, ¿dónde hay un resumen?",
+ "faqQuestion0": "No entiendo nada. ¿Dónde hay un resumen?",
"iosFaqAnswer0": "Primero, tienes que añadir las tareas que quieras realizar en tu día a día. Entonces, a medida que cumplas esas tareas en la vida real y las marques como completadas, ganarás experiencia y oro. El oro sirve para comprar equipos y otros objetos, y para obtener recompensas que puedes personalizar. La experiencia hace que tu personaje suba de nivel y desbloquee contenidos como mascotas, habilidades y misiones. Puedes cambiar el aspecto de tu personaje en Menú > Personalizar personaje.\n\nEstas son las acciones básicas: haz clic en el signo más (+) de la esquina superior derecha para añadir una tarea. Si quieres editar una tarea, pulsa en ella. Para eliminarla, desliza el dedo hacia la izquierda sobre ella. Puedes filtrar las tareas por etiquetas en la esquina superior izquierda, y expandir o contraer listas pulsando en el icono de fracción.",
"androidFaqAnswer0": "Primero, tienes que añadir las tareas que quieras realizar en tu día a día. Entonces, a medida que cumplas esas tareas en la vida real y las marques como completadas, ganarás experiencia y oro. El oro sirve para comprar equipamiento y otros objetos, y para obtener recompensas que puedes personalizar. La experiencia hace que tu personaje suba de nivel y desbloquee contenidos como mascotas, habilidades y misiones. Puedes cambiar el aspecto de tu personaje en Menú > [Inventario >] Personaje.\n\nEstas son las acciones básicas: haz clic en el signo más (+) de la esquina inferior derecha para añadir una tarea. Si quieres editar una tarea, pulsa en ella. Para eliminarla, deslízala hacia la izquierda. Puedes filtrar las tareas por etiquetas en la esquina superior derecha y expandir o contraer listas pulsando en el recuadro que indica el número de elementos de la lista.",
"webFaqAnswer0": "Primero, tienes que añadir las tareas que quieras realizar en tu día a día. Entonces, a medida que cumplas esas tareas en la vida real y las marques como completadas, ganarás experiencia y oro. El oro sirve para comprar equipos y otros objetos, y para obtener recompensas que puedes personalizar. La experiencia hace que tu personaje suba de nivel y desbloquee contenidos como mascotas, habilidades y misiones. Para mas detalles, échale un vistazo a la guía paso por paso del juego en [Ayuda -> Introducción para nuevos usuarios](https://habitica.com/static/overview).",
@@ -27,10 +27,10 @@
"faqQuestion6": "¿Cómo puedo encontrar una mascota o una montura?",
"iosFaqAnswer6": "En el nivel 3, ganas accesso al Sistema de Recompensas. Cada vez que completas una tarea, tienes una oportunidad aleatoria de recibir un huevo, una poción de eclosión o comida. Se almacenará en Menú > Items.\n\nPara que eclosione una Mascota, necesitarás un huevo y una poción de eclosión. Toca el huevo para determinar la especie que quieras eclosionar y selecciona \"Eclosionar Huevo\". Después, elige una poción de eclosión para determinar su color. Ve a Menú > Mascotas para equipar a tu avatar con tu nueva Mascota haciendo click en ella.\n\nTambién puedes convertir tus Mascotas en Monturas alimentándolas en Menú > Mascotas. Toca una Mascota y selecciona \"Alimentar Mascota\". Tendrás que alimentar a la mascota varias veces para que se convierta Montura, pero si consigues averiguar su comida favorita, crecerán más rápido. Usa prueba y error, o [mira las respuestas aquí](https://habitica.fandom.com/es/wiki/Preferencias_de_Comida). Cuando tengas una Montura, ve al Menú > Monturas y haz clic para ponérsela a tu avatar.\n\nTambién puedes conseguir huevos para Mascotas de Misión completando algunas Misiones. (Sigue leyendo para averiguar más sobre las Misiones.)",
"androidFaqAnswer6": "En nivel 3, ganas acceso al Sistema de Botín. Cada vez que completes una tarea, tendrás la oportunidad aleatoria de recibir un huevo, una poción de eclosión, o un pedazo de alimento. Éstos serán guardados en Inventario > Mercado.\n\nPara obtener una mascota, necesitarás un huevo y una poción de eclosión. Haz clic en el huevo para determinar la especie que quieres obtener, y selecciona \"Eclosiona con poción.\" ¡Luego elige una poción de eclosión para definir su color! Ve a Inventario > Mascotas y haz clic en ella para equiparla.\n\nTambién puedes hacer que tus Mascotas crezcan hasta convertirse en Monturas alimentándolas desde Inventario [> Mascotas]. ¡Haz clic en una Mascota y luego selecciona un alimento del menú a la derecha! Tendrás que alimentar a una mascota muchas veces para que pueda convertirse en Montura, pero si descubres cuál es su comida favorita, crecerá más rápido. Utiliza el método de ensayo y error, o [ve los spoilers aquí](https://habitica.fandom.com/es/wiki/Preferencias_de_Comida). Una vez que tengas una Montura, ve a Inventario > Monturas y haz clic en ella para equiparla. \n\nAdemás puedes obtener huevos de Mascotas de Misión al completar ciertas Misiones. (Lee abajo para saber más sobre Misiones.)",
- "webFaqAnswer6": "En el nivel 3, desbloquearás el Sistema de Botín. Cada vez que completes una tarea, tendrás una oportunidad aleatoria de recibir un huevo, una poción de eclosión o un trozo de comida. Estos se almacenarán en el Inventario > Objetos. Para eclosionar una Mascota, necesitarás un huevo y una poción de eclosión. Una vez tengas tanto un huevo como una poción, ve al Inventario > Establo para eclosionar tu mascota haciendo click en su imagen. Una vez hayas eclosionado la mascota, puedes equiparla haciendo click en ella. Puedes también hacer crecer tus Mascotas y que se conviertan en Monturas dándoles de comer en Inventario > Establo. ¡Arrastra una pieza de comida desde la barra de acción en la parte inferior de la pantalla y suéltala sobre la mascota para alimentarla! Tendrás que alimentar una Mascota varias veces para que se convierta en una Montura, pero si puedes averiguar cuál es su comida favorita, crecerá más rápido. Busca por prueba y error, o [mira los spoilers aquí](https://habitica.fandom.com/es/wiki/Preferencias_de_Comida). Una vez tengas una Montura, haz click en ella para equipar a tu avatar. Puedes también conseguir huevos para Mascotas de Misión completando ciertas Misiones. (Mira más abajo para aprender más sobre Misiones).",
+ "webFaqAnswer6": "En el nivel 3, desbloquearás el Sistema de Botín. Cada vez que completes una tarea, tendrás una oportunidad aleatoria de recibir un huevo, una poción de eclosión o un trozo de comida. Estos se almacenarán en el Inventario > Objetos. Para eclosionar una Mascota, necesitarás un huevo y una poción de eclosión. Una vez tengas tanto un huevo como una poción, ve al Inventario > Establo para eclosionar tu mascota haciendo click en su imagen. Una vez hayas eclosionado la mascota, puedes equiparla haciendo click en ella. Puedes también hacer crecer tus Mascotas y que se conviertan en Monturas dándoles de comer en Inventario > Establo. ¡Arrastra una pieza de comida desde la barra de acción en la parte inferior de la pantalla y suéltala sobre la mascota para alimentarla! Tendrás que alimentar una Mascota varias veces para que se convierta en una Montura, pero si puedes averiguar cuál es su comida favorita, crecerá más rápido. Busca por prueba y error, o [mira los spoilers aquí](https://habitica.fandom.com/es/wiki/Preferencias_de_Comida). Una vez tengas una Montura, haz click en ella para equipar a tu avatar. Puedes también conseguir huevos para Mascotas de Misión completando ciertas Misiones. (Mira más abajo para aprender más sobre Misiones.)",
"faqQuestion7": "¿Cómo me convierto en Guerrero, Mago, Pícaro o Sanador?",
"iosFaqAnswer7": "En nivel 10, puedes elegir convertirte en Guerrero, Mago, Pícaro o Sanador. (Todos los jugadores comienzan como Guerreros por defecto). Cada Clase tiene distintas opciones de equipamiento, distintas habilidades que pueden usar a partir del nivel 11, y distintas ventajas. Los guerreros pueden hacerle daño fácilmente a los Jefes, resistir más daño de sus tareas, y ayudar a que su Equipo se haga más fuerte. Los magos también pueden hacerle mucho daño a los Jefes, y subir rápidamente de nivel y restaurar la maná de su equipo. Los Pícaros son los que más oro ganan y más botines encuentran, y pueden ayudar a que su equipo también lo haga. Finalmente, los Sanadores pueden curarse a ellos mismos y a su equipo. \n\nSi no quieres elegir una Clase inmediatamente - por ejemplo, si todavía estás trabajando para comprar todo el equipamiento de tu clase actual - puedes hacer clic en \"Decidir más tarde\" y elegir más tarde en Menú > Elegir Clase.",
- "androidFaqAnswer7": "En nivel 10, puedes elegir convertirte en Guerrero, Mago, Pícaro o Sanador. (Todos los jugadores comienzan como Guerreros por defecto). Cada Clase tiene distintas opciones de equipamiento, distintas habilidades que pueden usar a partir del nivel 11, y distintas ventajas. Los Guerreros pueden hacerle daño fácilmente a los Jefes, resistir más daño de sus tareas, y ayudar a que su Equipo se haga más fuerte. Los Magos también pueden hacerle mucho daño a los Jefes, y subir rápidamente de nivel y restaurar la Maná de su equipo. Los Pícaros son los que más oro ganan y más botines encuentran, y pueden ayudar a que su equipo también lo haga. Finalmente, los Sanadores pueden curarse a ellos mismos y a su equipo. \n\nSi no quieres elegir una Clase inmediatamente - por ejemplo, si todavía estás trabajando para comprar todo el equipamiento de tu clase actual - puedes hacer clic en \"Decidir más tarde\" y elegir más tarde en Menú > Elegir Clase. ",
+ "androidFaqAnswer7": "En nivel 10, puedes elegir convertirte en Guerrero, Mago, Pícaro o Sanador. (Todos los jugadores comienzan como Guerreros por defecto). Cada Clase tiene distintas opciones de equipamiento, distintas habilidades que pueden usar a partir del nivel 11, y distintas ventajas. Los Guerreros pueden hacerle daño fácilmente a los Jefes, resistir más daño de sus tareas, y ayudar a que su Equipo se haga más fuerte. Los Magos también pueden hacerle mucho daño a los Jefes, y subir rápidamente de nivel y restaurar la Maná de su equipo. Los Pícaros son los que más oro ganan y más botines encuentran, y pueden ayudar a que su equipo también lo haga. Finalmente, los Sanadores pueden curarse a ellos mismos y a su equipo. \n\nSi no quieres elegir una Clase inmediatamente - por ejemplo, si todavía estás trabajando para comprar todo el equipamiento de tu clase actual - puedes hacer clic en \"Decidir más tarde\" y elegir más tarde en Menú > Elegir Clase.",
"webFaqAnswer7": "En el nivel 10, puedes elegir si te conviertes en Guerrero, Mago, Pícaro o Sanador. (Todos los jugadores comienzan como Guerreros por defecto). Cada Clase tiene diferentes opciones de equipación, diferentes Habilidades que pueden lanzar a partir del nivel 11 y diferentes ventajas. Los Guerreros pueden hacer daño a los Jefes con facilidad, aguantar más daño de sus tareas y ayudar a hacer más resistente al equipo. Los Magos pueden también dañar a los Jefes con facilidad, así como subir rápidamente de nivel y recuperar Maná para su equipo. Los pícaros ganan más oro y encuentran más objetos de botín, y pueden ayudar a su equipo a hacer lo mismo. Finalmente, los Sanadores pueden curarse a sí mismos y a los miembros de su equipo. Si no quieres elegir una Clase de forma inmediata - por ejemplo, todavía estás comprando todo el equipamiento para tu clase actual - puedes hacer click en \"excluir\" y reabrirlo más tarde en Ajustes.",
"faqQuestion8": "¿Qué es la barra azul que aparece en la cabezera después del nivel 10?",
"iosFaqAnswer8": "La barra azul que apareció cuando llegaste al nivel 10 y elegiste una Clase es tu barra de Maná. A medida que sigas subiendo de nivel, vas a desbloquear Habilidades especiales que requieren Maná para su uso. Cada Clase tiene diferentes Habilidades, las cuales aparecen después del nivel 11 en Menú > Habilidades. A diferencia de tu barra de Salud, tu barra de Maná no se resetea cuando subes de nivel. En lugar de eso, obtienes Maná cuando completas buenos Hábitos, Diarias y Pendientes, y la pierdes cuando sucumbes a los malos Hábitos. También ganas algo de Maná por la noche -- cuantas más Diarias completes, más Maná ganarás.",
@@ -52,7 +52,7 @@
"iosFaqAnswer12": "Los Jefes Mundiales son monstruos especiales que aparecen en la Taberna. Todos los usuarios activos empiezan a luchar con el Jefe automáticamente y sus tareas y Habilidades harán daño al Jefe como habitualmente.\n\nPuedes estar en una misión normal al mismo tiempo. Tus tareas y habilidades contarán tanto para el Jefe Mundial como para las Misiones de Jefe/Recolección de tu Equipo.\n\nUn Jefe Mundial nunca te hará daño en tu cuenta. En vez de eso, tiene una Barra de Ira que se llena cuando los usuarios se saltan tareas Diarias. Si la Barra de Ira se llena, atacará a uno de los Personajes No-Jugadores del sitio, y su imagen cambiará.\n\nPuedes leer más sobre [anteriores Jefes Mundiales](http://habitica.fandom.com/wiki/World_Bosses) en la wiki.",
"androidFaqAnswer12": "Los Jefes Mundiales son monstruos especiales que aparecen en la Taberna. Todos los usuarios activos están automáticamente luchando contra el Jefe en el momento de su aparición, y sus tareas y Habilidades le harán daño como siempre.\n\nPuedes estar al mismo tiempo en una Misión normal al mismo tiempo. Tus tareas y Habilidades contarán tanto para el Jefe Mundial como para la Misión de Jefe/Recolección de tu Equipo.\n\nUn Jefe Mundial nunca va a hacer daño a tu cuenta de ninguna manera. En vez de eso, tiene una Barra de Ira que se llena cuando los usuarios se saltan tareas Diarias. Si esta Barra de Ira se llena, el Jefe atacará a uno de los Personajes No Jugadores de Habitica, y su imagen cambiará.\n\nPuedes leer más acerca de [Jefes Mundiales anteriores](http://habitica.fandom.com/wiki/World_Bosses) en la wiki.",
"webFaqAnswer12": "Los Jefes Mundiales son monstruos especiales que aparecen en la Taberna. Todos los usuarios activos pasan automáticamente a luchar contra el Monstruo, y sus tareas y Habilidades harán daño al Monstruo, como es habitual. Puedes estar al mismo tiempo en una Misión normal. Tus tareas y Habilidades contarán tanto para el Monstruo Mundial como para la Misión de Jefe/Recolección en tu equipo. Un Monstruo Mundial nunca te hará daño en tu cuenta. En vez de eso, tiene una Barra de Ira que se llena cuando los usuarios se saltan tareas Diarias. Si esta barra se llena, atacará a uno de los Personajes No Jugadores de la web, y su imagen cambiará. Puedes leer más sobre [anteriores Jefes de Mundo](http://habitica.fandom.com/wiki/World_Bosses) en la wiki.",
- "iosFaqStillNeedHelp": "Si tienes alguna pregunta que no esté en la lista o en las [preguntas frecuentes de la Wiki](http://habitica.fandom.com/wiki/FAQ), ven a preguntar al chat de la Taberna, en Menu > Social > Taberna. ¡Estaremos encantados de ayudar!",
- "androidFaqStillNeedHelp": "Si tienes alguna pregunta que no esté en la lista o en las [preguntas frecuentes de la Wiki](http://habitica.fandom.com/wiki/FAQ), ven a preguntar al chat de la Taberna, en Social > Taberna. ¡Estaremos encantados de ayudar!",
+ "iosFaqStillNeedHelp": "Si tienes alguna pregunta que no esté en la lista o en las [preguntas frecuentes de la Wiki](http://habitica.fandom.com/wiki/FAQ), ven a preguntar al chat de la Taberna, en Menu > Social > ¡Taberna! Estaremos encantados de ayudar.",
+ "androidFaqStillNeedHelp": "Si tienes alguna pregunta que no esté en la lista o en las [preguntas frecuentes de la Wiki](http://habitica.fandom.com/wiki/FAQ), ven a preguntar al chat de la Taberna, bajo el Menú > ¡Taberna! Estaremos encantados de ayudar.",
"webFaqStillNeedHelp": "Si tienes una pregunta que no está en esta lista o en la [Wiki FAQ](http://habitica.fandom.com/wiki/FAQ), ¡ven a preguntar al `[Gremio de Ayuda de Habitica](https://habitica.com/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a)! Estaremos encantados de ayudar."
}
diff --git a/website/common/locales/es/gear.json b/website/common/locales/es/gear.json
index 5914cac590..8aff96f824 100644
--- a/website/common/locales/es/gear.json
+++ b/website/common/locales/es/gear.json
@@ -279,7 +279,7 @@
"weaponSpecialWinter2019WarriorText": "Alabarda Copo de Nieve",
"weaponSpecialWinter2019WarriorNotes": "Este copo de nieve se hizo crecer, cristal a cristal, hasta convertirlo en una hoja dura como el diamante. Aumenta la Fuerza en <%= str %>. Equipamiento de Invierno Edición Limitada de 2018-2019.",
"weaponSpecialWinter2019MageText": "Vara de Dragón de Fuego",
- "weaponSpecialWinter2019MageNotes": "¡Cuidado! Esta vara explosiva está lista para ayudarte a recibir a cualquiera que venga. Aumenta la Inteligencia en <%= int %> y la Percepción en <%= per %>. Equipamiento Invernal Edición Limitada 2018-2019",
+ "weaponSpecialWinter2019MageNotes": "¡Cuidado! Esta vara explosiva está lista para ayudarte a recibir a cualquiera que venga. Aumenta la Inteligencia en <%= int %> y la Percepción en <%= per %>. Equipamiento Invernal Edición Limitada 2018-2019.",
"weaponSpecialWinter2019HealerText": "Varita Invernal",
"weaponSpecialWinter2019HealerNotes": "El invierno puede ser un tiempo de descanso y curación, y por eso esta varita de magia invernal puede ayudar a calmar la más dolorosa herida. Aumenta la Inteligencia en <%= int %>. Equipamiento Invernal Edición Limitada 2018-2019.",
"weaponMystery201411Text": "Horca de Banquete",
@@ -1816,5 +1816,46 @@
"weaponArmoireNephriteBowText": "Arco de Nerfita",
"armorSpecialKS2019Text": "Armadura Mítica de Grifo",
"weaponMystery201911Notes": "La bola de cristal encima del báculo puede revelarte el futuro, ¡Pero cuidado! Usando esa peligrosa sabiduría puede cambiar una persona de maneras inesperadas. No otorga ningún beneficio Artículo de Suscriptor de noviembre de 2019.",
- "weaponMystery201911Text": "Báculo de cristal atractivo"
+ "weaponMystery201911Text": "Báculo de cristal atractivo",
+ "weaponArmoireFloridFanNotes": "Te encariñan los pliegues de seda cuando no están en uso. Incrementa la Constitución en <%= con %>. Armario Encantado: Objeto Independiente.",
+ "weaponArmoireFloridFanText": "Abanico Florido",
+ "eyewearMystery201907Notes": "¡Luce asombroso mientras proteges tus ojos de los dañinos rayos UV! No confiere beneficios. Equipamiento de suscripción de julio del 2019.",
+ "weaponSpecialWinter2020WarriorNotes": "¡Atrás, ardillas! ¡No os llevaréis ni un poco de esto! ... Pero si todas vosotras queréis pasar el rato y tomar chocolate caliente, está guay. Aumenta la fuerza en <%= str %>. Edición limitada del invierno 2019-2020.",
+ "weaponSpecialWinter2020RogueText": "Varilla de Linterna",
+ "shieldSpecialPiDayText": "Escudo Pi",
+ "headArmoireFrostedHelmText": "Casco Congelado",
+ "headArmoireAlchemistsHatText": "Sombrero de Alquemista",
+ "headArmoireAstronomersHatText": "Sombrero de Astrónomo",
+ "headMystery201911Text": "Sombrero Encantado de Cristal",
+ "headSpecialWinter2020MageText": "Corona de Campana",
+ "headSpecialFall2019MageText": "Máscara de Cíclope",
+ "headSpecialFall2019WarriorText": "Casco de Obsidiana",
+ "headSpecialFall2019RogueText": "Sombrero Antiguo de Ópera",
+ "headSpecialSummer2019WarriorText": "Casco de Tortuga",
+ "headSpecialSummer2019RogueText": "Casco de Martillo",
+ "headSpecialSpring2019MageText": "Casco de Ámbar",
+ "headSpecialSpring2019WarriorText": "Casco de Orquídea",
+ "headSpecialSpring2019RogueText": "Casco de Nube",
+ "headSpecialPiDayText": "Sombrero Pi",
+ "armorArmoireLayerCakeArmorText": "Armadura de Tarta",
+ "armorArmoireAlchemistsRobeText": "Bata de Alquemista",
+ "armorArmoireAstronomersRobeText": "Bata de Astrónomo",
+ "armorMystery201910Text": "Armadura Críptica",
+ "armorMystery201907Text": "Camiseta de Flores",
+ "armorMystery201904Text": "Traje Opalescente",
+ "armorSpecialWinter2020MageText": "Abrigo con Curvas",
+ "armorSpecialWinter2020WarriorText": "Armadura de Corteza",
+ "armorSpecialFall2019WarriorText": "Alas de la Noche",
+ "armorSpecialSummer2019WarriorText": "Armadura de Caparazón",
+ "armorSpecialSpring2019WarriorText": "Armadura de Orquídea",
+ "armorSpecialSpring2019RogueText": "Armadura de Nube",
+ "weaponArmoireShadowMastersMaceText": "Maza del Maestro de las Sombras",
+ "weaponArmoireResplendentRapierNotes": "Demuestra tu habilidad en el manejo de la espada con este arma bien afilada. Aumenta la Percepción por <%= per %>. Armario Encantado: Ítem Independiente.",
+ "weaponArmoireResplendentRapierText": "Espada Resplandeciente",
+ "weaponSpecialWinter2020HealerNotes": "Sacúdelo y su aroma reunirá a tus amigos y ayudantes para que empiecen a cocinar y hornear. Aumenta la Inteligencia por <%= int %>. Edición Limitada Equipamiento de Invierno 2019-2020.",
+ "weaponSpecialWinter2020HealerText": "Cetro de Clavo",
+ "weaponSpecialWinter2020MageNotes": "Con práctica, puedes proyecta tu aura mágica con la frecuencia que quieras: un mantra meditativo, una campanada festiva or una ALARMA DE TAREA SIN FINALIZAR. Aumenta la Inteligencia por <%= int %> y la Percepción por by <%= per %>. Edición Limitada Equipamiento de Invierno 2019-2020.",
+ "weaponSpecialWinter2020MageText": "Ondas de Sonido",
+ "weaponSpecialWinter2020WarriorText": "Cono de Conífera Puntiagudo",
+ "weaponSpecialWinter2020RogueNotes": "La oscuridad es el elemento del Pícaro. ¿Quién mejor que él para iluminar la época más oscura del año? Aumenta la Fuerza por <%= str %>. Edición Limitada. Equipamiento de Invierno 2019-2020."
}
diff --git a/website/common/locales/es/limited.json b/website/common/locales/es/limited.json
index f29438e806..0d77b24ebe 100644
--- a/website/common/locales/es/limited.json
+++ b/website/common/locales/es/limited.json
@@ -1,6 +1,6 @@
{
- "limitedEdition": "Edición Limitada",
- "seasonalEdition": "Edición de Temporada",
+ "limitedEdition": "Edición limitada",
+ "seasonalEdition": "Edición de temporada",
"winterColors": "Colores de Invierno",
"annoyingFriends": "Amigos Molestos",
"annoyingFriendsText": "Tus compañeros de equipo te han lanzado <%= count %> bolas de nieve.",
@@ -61,7 +61,7 @@
"nye2": "¡Feliz Año Nuevo! Que ganes muchos Días Perfectos.",
"nye3": "¡Feliz Año Nuevo! Que tu lista de Pendientes se quede corta y agradable.",
"nye4": "¡Feliz Año Nuevo! Que no te ataque un Hipogrifón furioso.",
- "holidayCard": "Tarjeta de Vacaciones Recibida",
+ "holidayCard": "¡Tarjeta de vacaciones recibida!",
"mightyBunnySet": "Conejo Poderoso (Guerrero)",
"magicMouseSet": "Ratón Mágico (Mago)",
"lovingPupSet": "Cachorro Adorable (Sanador)",
@@ -84,7 +84,7 @@
"reefRenegadeSet": "Arrecife Renegado (Pícaro)",
"scarecrowWarriorSet": "Guerrero Espantapájaros (Guerrero)",
"stitchWitchSet": "Bruja de Cocer (Mago)",
- "potionerSet": "Pocionador (Sanador) ",
+ "potionerSet": "Alquimista (Sanador)",
"battleRogueSet": "Pícaro Bate-talla (Pícaro)",
"springingBunnySet": "Conjito de resorte (Sanador)",
"grandMalkinSet": "Gran Felino (Mago)",
@@ -147,8 +147,8 @@
"dateEndJanuary": "31 de enero",
"dateEndFebruary": "28 de febrero",
"winterPromoGiftHeader": "¡REGALA UNA SUSCRIPCIÓN Y RECIBE OTRA GRATIS!",
- "winterPromoGiftDetails1": "Solo hasta el 15 de enero, cuando regales una suscripción a alguien, ¡obtienes la misma suscripción gratis!",
- "winterPromoGiftDetails2": "Por favor, ten en cuenta que si tú o la persona que recibe el regalo ya tenéis una suscripción recurrente, la suscripción regalada solo empezará después de que esa suscripción sea cancelada o haya expirado. ¡Muchas gracias por tu apoyo!",
+ "winterPromoGiftDetails1": "Solo hasta el 6 de enero, cuando regales una suscripción a alguien, ¡obtienes la misma suscripción gratis!",
+ "winterPromoGiftDetails2": "Por favor, ten en cuenta que si tú o la persona que recibe el regalo ya tenéis una suscripción recurrente, la suscripción regalada solo empezará después de que esa suscripción sea cancelada o haya expirado. ¡Muchas gracias por tu apoyo! <3",
"discountBundle": "Lote",
"g1g1Announcement": "¡El evento Regala una suscripción, Obtiene una suscripción está en marcha ahora!",
"g1g1Details": "¡Regala una suscripción a un/a amigo/a desde su perfil y recibirás la misma suscripción gratis!",
@@ -168,5 +168,10 @@
"summer2019ConchHealerSet": "Caracola (Sanador)",
"summer2019WaterLilyMageSet": "Nenúfar (Mago)",
"summer2019SeaTurtleWarriorSet": "Tortuga Marina (Guerrero)",
- "augustYYYY": "Agosto del <%= year %>"
+ "augustYYYY": "Agosto del <%= year %>",
+ "decemberYYYY": "Diciembre <%= year %>",
+ "winter2020LanternSet": "Linterna (Pícaro)",
+ "winter2020WinterSpiceSet": "Especia de Invierno (Sanador)",
+ "winter2020CarolOfTheMageSet": "Villancico del Mago",
+ "winter2020EvergreenSet": "Siempre Joven (Guerrero)"
}
diff --git a/website/common/locales/es/spells.json b/website/common/locales/es/spells.json
index b34b60a46e..6f1133654a 100644
--- a/website/common/locales/es/spells.json
+++ b/website/common/locales/es/spells.json
@@ -6,15 +6,15 @@
"spellWizardEarthText": "Terremoto",
"spellWizardEarthNotes": "¡Liberas parte de tu fuerza mental haciendo temblar la tierra potenciando la inteligencia de tu Equipo! (Basado en: INT sin potenciar)",
"spellWizardFrostText": "Frío escalofriante",
- "spellWizardFrostNotes": "¡Con una invocación, el hielo congela todas tus rachas para que no bajen a cero mañana!",
- "spellWizardFrostAlreadyCast": "Ya has lanzado este hechizo hoy. Tus rachas se conservarán; no es necesario que vuelvas a lanzarlo.",
+ "spellWizardFrostNotes": "¡Con una invocación, el hielo congela todas tus rachas para que no bajen a cero mañana!· ",
+ "spellWizardFrostAlreadyCast": " ·Ya has lanzado este hechizo hoy. Tus rachas se conservarán; no es necesario que vuelvas a lanzarlo.",
"spellWarriorSmashText": "Golpe Brutal",
"spellWarriorSmashNotes": "¡Vuelves una tarea más azul/menos roja y provocas daño adicional a los Jefes! (Basado en: FUE)",
"spellWarriorDefensiveStanceText": "Postura defensiva",
"spellWarriorDefensiveStanceNotes": "¡Te agachas bien bajo potenciando tu constitución! (Basado en: CON sin potenciar)",
"spellWarriorValorousPresenceText": "Presencia Valerosa",
"spellWarriorValorousPresenceNotes": "¡Tu audacia potencia la Fuerza de todo tu Equipo! (Basado en: FUE sin potenciar)",
- "spellWarriorIntimidateText": "Mirada Intimidante.",
+ "spellWarriorIntimidateText": "Mirada intimidante",
"spellWarriorIntimidateNotes": "¡Tu fiera mirada incrementa la constitución de tu Equipo! (Basado en: CON sin potenciar)",
"spellRoguePickPocketText": "Hurtar",
"spellRoguePickPocketNotes": "¡Le robas a una tarea despistada obteniendo oro! (Basado en: PER)",
@@ -25,7 +25,7 @@
"spellRogueStealthText": "Sigilo",
"spellRogueStealthNotes": "Con cada invocación, algunas de tus tareas diarias no te causarán daño esta noche. Sus rachas y colores no cambiarán. (Basado en: PER)",
"spellRogueStealthDaliesAvoided": "<%= originalText %> Número de tareas diarias evitadas: <%= number %>.",
- "spellRogueStealthMaxedOut": "Ya has evitado todas tus tareas diarias; no hace falta que vuelvas a lanzar este hechizo.",
+ "spellRogueStealthMaxedOut": " ·Ya has evitado todas tus tareas diarias; no hace falta que vuelvas a lanzar este hechizo.",
"spellHealerHealText": "Luz Sanadora",
"spellHealerHealNotes": "¡Una brillante luz restaura tu salud! (Basado en: INT y CON)",
"spellHealerBrightnessText": "Claridad Abrasadora",
@@ -50,7 +50,7 @@
"spellSpecialSeafoamNotes": "¡Transforma a un amigo en una criatura marina!",
"spellSpecialSandText": "Arena",
"spellSpecialSandNotes": "Invierte el hechizo que te transformó en estrella de mar.",
- "partyNotFound": "Equipo no encontrado.",
+ "partyNotFound": "Equipo no encontrado",
"targetIdUUID": "\"targetId\" debe ser un ID de Usuario válido.",
"challengeTasksNoCast": "No se pueden lanzar hechizos sobre tareas de desafíos.",
"groupTasksNoCast": "Las habilidades no se pueden usar con tareas de grupo.",
diff --git a/website/common/locales/es_419/achievements.json b/website/common/locales/es_419/achievements.json
index 57d33adf2e..773d5a7943 100644
--- a/website/common/locales/es_419/achievements.json
+++ b/website/common/locales/es_419/achievements.json
@@ -24,5 +24,44 @@
"achievementAridAuthority": "Autoridad Árida",
"achievementDustDevilModalText": "¡Has coleccionado todas las Mascotas Desierto!",
"achievementDustDevilText": "Ha coleccionado todas las Mascotas Desierto.",
- "achievementDustDevil": "Diablo de Polvo"
+ "achievementDustDevil": "Diablo de Polvo",
+ "hideAchievements": "Ocultar <%= category %>",
+ "showAllAchievements": "Ver todo <%= category %>",
+ "onboardingCompleteDesc": "Obtuviste
5 logros y
100 monedas de oro por completar la lista.",
+ "earnedAchievement": "¡Has completado un logro!",
+ "viewAchievements": "Ver los Logros",
+ "letsGetStarted": "¡Comencemos!",
+ "onboardingProgress": "<%= percentage %>% de progreso",
+ "gettingStartedDesc": "Creemos una tarea, completémosla y luego mira tus recompensas. ¡Completarás
5 logros y ganarás
100 monedas de oro cuando acabes!",
+ "achievementCompletedTaskText": "Completó su primera tarea.",
+ "achievementCompletedTask": "Completa una tarea",
+ "achievementCreatedTaskModalText": "Agrega una tarea por algo que te gustaría lograr esta semana",
+ "achievementCreatedTaskText": "Creó su primera tarea.",
+ "achievementCreatedTask": "Crea una tarea",
+ "achievementUndeadUndertakerModalText": "¡Domesticaste todas las monturas zombis!",
+ "achievementUndeadUndertakerText": "Ha domesticado todas las monturas zombis.",
+ "achievementUndeadUndertaker": "El desenterrador muerto viviente",
+ "achievementMonsterMagusModalText": "¡Coleccionaste todas las mascotas zombis!",
+ "achievementMonsterMagusText": "Ha coleccionado todas las mascotas zombis.",
+ "achievementMonsterMagus": "Mago de los monstruos",
+ "achievementPartyOn": "¡Tu equipo ha crecido a 4 miembros!",
+ "achievementKickstarter2019Text": "Patrocinó el proyecto kickstarter de Pin de 2019",
+ "achievementKickstarter2019": "Patrocinador del kickstarter de Pin",
+ "achievementPartyUp": "¡Te uniste con un miembro de equipo!",
+ "achievementPrimedForPainting": "Listo para pintar",
+ "achievementHatchedPetModalText": "Ve a tu inventario e intenta combinar una poción de eclosión y un huevo",
+ "achievementHatchedPetText": "Eclosionó su primer mascota.",
+ "achievementHatchedPet": "Eclosionar una Mascota",
+ "achievementPearlyProModalText": "¡Tú has domesticado todas las Mascotas blancas!",
+ "achievementPearlyProText": "Has domesticado todas las Mascotas blancas.",
+ "achievementPearlyPro": "Perlado Pro",
+ "achievementPrimedForPaintingModalText": "¡Has recogido todas las Mascotas blancas!",
+ "achievementPrimedForPaintingText": "Recogió todas las Mascotas blancas.",
+ "achievementPurchasedEquipmentModalText": "El equipo es una forma de personalizar tu avatar y mejorar tus estadísticas",
+ "achievementPurchasedEquipmentText": "Compró su primer equipo.",
+ "achievementPurchasedEquipment": "Comprar equipo",
+ "achievementFedPetModalText": "Existen diferentes tipos de alimentos, pero las mascotas pueden ser exigentes",
+ "achievementFedPetText": "Alimentó a su primera mascota.",
+ "achievementFedPet": "Alimentar a una Mascota",
+ "achievementCompletedTaskModalText": "Marque cualquiera de sus tareas para ganar recompensas"
}
diff --git a/website/common/locales/es_419/defaulttasks.json b/website/common/locales/es_419/defaulttasks.json
index 31d19dd012..9899c18091 100644
--- a/website/common/locales/es_419/defaulttasks.json
+++ b/website/common/locales/es_419/defaulttasks.json
@@ -38,5 +38,10 @@
"workTodoProject": "Proyecto de trabajo >> Completa proyecto de trabajo",
"workDailyImportantTaskNotes": "Pincha para especificar tu tarea más importante",
"workDailyImportantTask": "La tarea más importante >> Trabajé en la tarea más importante de hoy",
- "workHabitMail": "Procesa correo electrónico"
+ "workHabitMail": "Procesa correo electrónico",
+ "schoolTodoText": "Terminar la tarea de clase",
+ "schoolDailyNotes": "¡Toque para elegir su horario de tarea!",
+ "schoolDailyText": "Terminar la tarea",
+ "schoolHabit": "Estudiar/Procrastinar",
+ "healthTodoNotes": "Toque para agregar listas de verificación!"
}
diff --git a/website/common/locales/fil/achievements.json b/website/common/locales/fil/achievements.json
index 4f5dcd77c1..b92a1d005e 100755
--- a/website/common/locales/fil/achievements.json
+++ b/website/common/locales/fil/achievements.json
@@ -1,9 +1,17 @@
{
- "achievement": "Achievement",
- "share": "Share",
- "onwards": "Onwards!",
- "levelup": "By accomplishing your real life goals, you leveled up and are now fully healed!",
- "reachedLevel": "You Reached Level <%= level %>",
- "achievementLostMasterclasser": "Quest Completionist: Masterclasser Series",
- "achievementLostMasterclasserText": "Completed all sixteen quests in the Masterclasser Quest Series and solved the mystery of the Lost Masterclasser!"
+ "achievement": "Mga Nakamit",
+ "share": "Ibahagi",
+ "onwards": "Sugod!",
+ "levelup": "Sa pamamagitan ng pagkamit ng iyong mga mithiin sa totoong buhay, naglevel up ka at gumaling nang tuluyan!",
+ "reachedLevel": "Nakamit Mo Ang Level <%= level %>",
+ "achievementLostMasterclasser": "Quest Completionist: Masterclasser Series",
+ "achievementLostMasterclasserText": "Natapos mo ang labing-anim na quests sa Masterclasser Quest Series at nalutas ang misteryo ng Lost Masterclasser!",
+ "achievementMindOverMatter": "Isip Bago Damdamin",
+ "achievementLostMasterclasserModalText": "Natapos mo ang labing-anim na quests sa Masterclasser Quest Series at nalutas ang misteryo ng Lost Masterclasser!",
+ "onboardingCompleteDesc": "Nakatanggap ka ng
5 achievements at
100 ginto para sa pagkumpleto ng listahan.",
+ "earnedAchievement": "Nakatanggap ka ng achievement!",
+ "viewAchievements": "Tignan ang Achievements",
+ "letsGetStarted": "Magsimula na tayo!",
+ "onboardingProgress": "<%= percentage %>% progress",
+ "gettingStartedDesc": "Lumikha ka ng gawain, tapusin mo ito, at tignan mo ang iyong gantimpala. Makakukuha ka ng
5 achievements at
100 ginti pagkatapos mo!"
}
diff --git a/website/common/locales/fr/achievements.json b/website/common/locales/fr/achievements.json
index 6e52bf2f67..9ca1d17092 100644
--- a/website/common/locales/fr/achievements.json
+++ b/website/common/locales/fr/achievements.json
@@ -40,5 +40,28 @@
"achievementPearlyPro": "Une vraie perle",
"achievementPrimedForPaintingModalText": "Vous avez collecté tous les familiers blancs !",
"achievementPrimedForPaintingText": "A collecté tous les familiers blancs.",
- "achievementPrimedForPainting": "Sous-couche de peinture"
+ "achievementPrimedForPainting": "Sous-couche de peinture",
+ "achievementPurchasedEquipmentModalText": "L'équipement est une façon de customiser votre avatar et d'améliorer vos stats",
+ "achievementPurchasedEquipmentText": "A acheté sa première pièce d'équipement.",
+ "achievementPurchasedEquipment": "Achetez de l'équipement",
+ "achievementFedPetModalText": "Il y a plusieurs types de nourriture, mais les familiers peuvent être capricieux",
+ "achievementFedPetText": "A nourri son premier familier.",
+ "achievementFedPet": "Donnez à manger à un familier",
+ "achievementHatchedPetModalText": "Rendez-vous dans votre inventaire et essayez de combiner une potion d'éclosion et un œuf",
+ "achievementHatchedPetText": "A fait éclore son premier familier.",
+ "achievementHatchedPet": "Faites éclore un familier",
+ "achievementCompletedTaskModalText": "Valider n'importe laquelle de vos tâches pour remporter des récompenses",
+ "achievementCompletedTaskText": "A rempli sa première tâche.",
+ "achievementCompletedTask": "Valider une tâche",
+ "achievementCreatedTaskModalText": "Ajouter une tâche pour quelque chose que vous voudriez accomplir cette semaine",
+ "achievementCreatedTaskText": "A créé sa première tâche.",
+ "achievementCreatedTask": "Créer une tâche",
+ "hideAchievements": "Cacher <%= category %>",
+ "showAllAchievements": "Voir tout <%= category %>",
+ "onboardingCompleteDesc": "Vous avec remporté
5 succès et
100 pièces d'or pour avoir complété la liste.",
+ "earnedAchievement": "Vous avez remporté un succès !",
+ "viewAchievements": "Voir les succès",
+ "letsGetStarted": "Commençons !",
+ "onboardingProgress": "<%= percentage %>% de progression",
+ "gettingStartedDesc": "Créons une tâche, pour ensuite la valider et regarder le résultat. Vous gagnerez
5 succès et
100 pièces d'or quand vous aurez fini !"
}
diff --git a/website/common/locales/fr/backgrounds.json b/website/common/locales/fr/backgrounds.json
index 7585652958..843e4af543 100644
--- a/website/common/locales/fr/backgrounds.json
+++ b/website/common/locales/fr/backgrounds.json
@@ -485,5 +485,12 @@
"backgroundHolidayWreathText": "Couronne de Noël",
"backgroundHolidayMarketNotes": "trouvez les cadeaux et les décorations parfaites au marché de Noël.",
"backgroundHolidayMarketText": "Marché de Noël",
- "backgrounds122019": "Ensemble 67 : sorti en décembre 2019"
+ "backgrounds122019": "Ensemble 67 : sorti en décembre 2019",
+ "backgroundSnowglobeNotes": "Secouez une boule à neige et prenez part au microcosme d'un paysage hivernal.",
+ "backgroundSnowglobeText": "Boule à neige",
+ "backgroundDesertWithSnowNotes": "Soyez témoin de la rare et tranquille beauté d'un désert enneigé.",
+ "backgroundDesertWithSnowText": "Désert enneigé",
+ "backgroundBirthdayPartyNotes": "Célébrez la fête d'anniversaire de votre acolyte préféré.",
+ "backgroundBirthdayPartyText": "Fête d'anniversaire",
+ "backgrounds012020": "Ensemble 68 : sorti en janvier 2020"
}
diff --git a/website/common/locales/fr/content.json b/website/common/locales/fr/content.json
index 5d4c49192b..b8a3fb2fe4 100644
--- a/website/common/locales/fr/content.json
+++ b/website/common/locales/fr/content.json
@@ -352,5 +352,6 @@
"questEggRobotText": "Robot",
"hatchingPotionShadow": "d'ombre",
"premiumPotionUnlimitedNotes": "Ne peut pas être utilisé sur des œufs de familiers de quête.",
- "hatchingPotionAmber": "d'ambre"
+ "hatchingPotionAmber": "d'ambre",
+ "hatchingPotionAurora": "Aurore"
}
diff --git a/website/common/locales/fr/front.json b/website/common/locales/fr/front.json
index a629fbe8af..7ea418921d 100644
--- a/website/common/locales/fr/front.json
+++ b/website/common/locales/fr/front.json
@@ -331,5 +331,6 @@
"getStarted": "Commencez !",
"mobileApps": "Applications mobiles",
"learnMore": "En savoir plus",
- "communityInstagram": "Instagram"
+ "communityInstagram": "Instagram",
+ "minPasswordLength": "Le mot de passe doit faire au moins 8 caractères."
}
diff --git a/website/common/locales/fr/gear.json b/website/common/locales/fr/gear.json
index 9a2ce1fc9c..ddb98dd60f 100644
--- a/website/common/locales/fr/gear.json
+++ b/website/common/locales/fr/gear.json
@@ -279,7 +279,7 @@
"weaponSpecialWinter2019WarriorText": "Hallebarde flocon-de-neige",
"weaponSpecialWinter2019WarriorNotes": "Ce flocon de neige a grandit, cristaux de glace par cristaux de glace, en une lame aussi solide que le diamant. Augmente la force de <%= str %>. Équipement en édition limitée de l'hiver 2018-2019.",
"weaponSpecialWinter2019MageText": "Bâton de dragon ardent",
- "weaponSpecialWinter2019MageNotes": "Attention ! Ce bâton explosif est prêt à vous aider à vous occuper de tous les visiteurs. Augmente l'intelligence de <%= int %> et la perception de<%= per %>. Équipement en édition limitée de l'hiver 2018-2019",
+ "weaponSpecialWinter2019MageNotes": "Attention ! Ce bâton explosif est prêt à vous aider à vous occuper de tous les visiteurs. Augmente l'intelligence de <%= int %> et la perception de<%= per %>. Équipement en édition limitée de l'hiver 2018-2019.",
"weaponSpecialWinter2019HealerText": "Baguette d'hiver",
"weaponSpecialWinter2019HealerNotes": "L'hiver peut être un temps de repos et de guérison, et de la même façon, cette baguette de magie hivernale peut aider à apaiser les pires blessures. Augmente l'intelligence de <%= int %>. Équipement en édition limitée de l'hiver 2018-2019.",
"weaponMystery201411Text": "Fourche festive",
@@ -1983,5 +1983,47 @@
"headArmoireEarflapHatNotes": "Si vous cherchez à garder la tête au chaud, ce chapeau vous couvre ! Augmente l'intelligence et la force de <%= attrs %> chacune. Armoire enchantée : ensemble du duffel-coat (objet 2 de 2).",
"headArmoireEarflapHatText": "Chapeau à rabats",
"armorArmoireDuffleCoatNotes": "Voyagez dans des royaumes givrés avec style grâce à ce manteau en laine douillet. Augmente la constitution et la perception de <%= attrs %> chacune. Armoire enchantée : ensemble du duffel-coat (objet 1 de 2).",
- "armorArmoireDuffleCoatText": "Duffel-coat"
+ "armorArmoireDuffleCoatText": "Duffel-coat",
+ "headSpecialWinter2020MageText": "Couronne en cloche",
+ "headSpecialWinter2020WarriorNotes": "Une sensation de picotement sur votre cuir chevelu est un petit prix à payer pour la magnificence saisonnière. Augmente la force de <%= str %>. Équipement en édition limitée de l'hiver 2019-2020.",
+ "headSpecialWinter2020WarriorText": "Coiffure enneigée",
+ "headSpecialWinter2020RogueNotes": "Quand un voleur déambule dans les rue avec ce chapeau, les gens savent qu'il n'a peur de rien. Augmente la perception de <%= per %>. Équipement en édition limitée de l'hiver 2019-2020.",
+ "headSpecialWinter2020RogueText": "Capuchon de bas de laine",
+ "armorSpecialWinter2020HealerNotes": "Une robe opulente, pour les personnes avec un zeste festif ! Augmente la constitution de <%= con %>. Équipement en édition limitée de l'hiver 2019-2020.",
+ "armorSpecialWinter2020HealerText": "Robe en peau d'orange",
+ "armorSpecialWinter2020MageNotes": "Sonnez dans la chaude nouvelle année, confortable et protégé contre les vibrations excessives. Augmente l'intelligence de <%= int %>. Équipement en édition limitée de l'hiver 2019-2020.",
+ "armorSpecialWinter2020MageText": "Pelage soyeux",
+ "armorSpecialWinter2020WarriorNotes": "Ô puissant pin, ô grand sapin, prêtez-moi votre force. Ou plutôt, votre constitution ! Augmente la constitution de <%= con %>. Équipement en édition limitée de l'hiver 2019-2020.",
+ "armorSpecialWinter2020WarriorText": "Armure d'écorce",
+ "armorSpecialWinter2020RogueNotes": "Bien que vous puissiez sans aucun doute braver les tempêtes avec la chaleur intérieure de votre entraînement et de votre dévouement, cela ne fait pas de mal de vous habiller en fonction du temps. Augmente la perception de <%= per %>. Équipement en édition limitée de l'hiver 2019-2020.",
+ "armorSpecialWinter2020RogueText": "Parka bouffante",
+ "weaponSpecialWinter2020HealerNotes": "Secouez-le, et son arôme invoquera vos amis et vos alliés pour commencer à cuisiner et à cuire ! Augmente l'intelligence de <%= int %>. Équipement en édition limitée de l'hiver 2019-2020.",
+ "weaponSpecialWinter2020HealerText": "Sceptre clou de girofle",
+ "weaponSpecialWinter2020MageNotes": "Avec de la pratique, vous pouvez projeter cette aura magique à n'importe quelle fréquence : un bourdonnement méditatif, un carillon festif, ou une ALARME D'ECHEANCE DE TÂCHE ROUGE. Augmente l'intelligence de <%= int %> et la perception de <%= per %>. Équipement en édition limitée de l'hiver 2019-2020.",
+ "weaponSpecialWinter2020WarriorNotes": "Arrière, écureuils ! Vous ne prendrez pas un morceau de ceci ! ... Mais si vous voulez tous vous installer et prendre un chocolat chaud, c'est cool. Augmente la force de <%= str %>. Équipement en édition limitée de l'hiver 2019-2020.",
+ "weaponSpecialWinter2020MageText": "Vagues d'ondes sonores",
+ "weaponSpecialWinter2020WarriorText": "Pomme de pin pointue",
+ "weaponSpecialWinter2020RogueNotes": "L'obscurité est l'élément d'un voleur. Quoi de mieux, alors, pour éclairer le chemin dans la période la plus sombre de l'année ? Augmente la force de <%= str %>. Équipement en édition limitée de l'hiver 2019-2020.",
+ "weaponSpecialWinter2020RogueText": "Bâton lanterne",
+ "shieldSpecialWinter2020HealerNotes": "Vous sentez-vous trop bon pour ce monde, trop pur ? Seule cette beauté d'une épice fera l'affaire. Augmente la constitution de <%= con %>. Équipement en édition limitée de l'hiver 2019-2020.",
+ "shieldSpecialWinter2020HealerText": "Grand bâton de cannelle",
+ "shieldSpecialWinter2020WarriorNotes": "Utilisez la comme bouclier jusqu'à ce que les graines tombent, et alors vous pourrez la mettre sur une couronne ! Augmente la constitution de <%= con %>. Équipement en édition limitée de l'hiver 2019-2020.",
+ "shieldSpecialWinter2020WarriorText": "Pomme de pin ronde",
+ "headSpecialWinter2020HealerNotes": "Veuillez l'enlever de votre tête avant d'infuser du thé ou du café avec. Augmente l'intelligence de <%= int %>. Équipement en édition limitée de l'hiver 2019-2020.",
+ "headSpecialWinter2020HealerText": "Emblème anis étoilé",
+ "headSpecialWinter2020MageNotes": "Oh comme les cloches / De toute leur âme / Semble me dire / “Lance ‘Explosion de flammes’” Augmente la perception de <%= per %>. Équipement en édition limitée de l'hiver 2019-2020.",
+ "headSpecialNye2019Notes": "Vous avez reçu un chapeau de fête outrageux ! Portez-le avec fierté en fêtant la nouvelle année ! Ne confère aucun bonus.",
+ "backMystery202001Notes": "Ces queues touffues contiennent un pouvoir céleste, et aussi un haut niveau de mignonnerie ! Ne confère aucun bonus. Équipement d'abonnement de janvier 2020.",
+ "backMystery202001Text": "Les cinq queues de la légende",
+ "headMystery202001Notes": "Votre ouïe sera si fine que vous entendrez les étoiles scintiller et la lune tourner. Ne confère aucun bonus. Équipement d'abonnement de janvier 2020.",
+ "headMystery202001Text": "Oreilles de renard légendaire",
+ "headSpecialNye2019Text": "Chapeau de fête outrageux",
+ "shieldArmoireBirthdayBannerNotes": "Célébrez votre jour spécial, le jour spécial de quelqu'un que vous aimez, ou sortez la pour l'anniversaire d'Habitica le 31 Janvier ! Augmente la force de <%= str %>. Armoire enchantée : ensemble de joyeux anniversaire (objet 4 de 4).",
+ "shieldArmoireBirthdayBannerText": "Bannière d'anniversaire",
+ "headArmoireFrostedHelmNotes": "Le parfait couvre-chef pour n'importe quelle fête ! Augmente l'intelligence de <%= int %>. Armoire enchantée : ensemble de joyeux anniversaire (objet 1 de 4).",
+ "headArmoireFrostedHelmText": "Casque glaçé",
+ "armorArmoireLayerCakeArmorNotes": "Ça protège et c'est délicieux ! Augmente la constitution de <%= con %>. Armoire enchantée : ensemble de joyeux anniversaire (objet 2 de 4).",
+ "armorArmoireLayerCakeArmorText": "Armure de gâteau en couches",
+ "weaponArmoireHappyBannerNotes": "Est ce que le \"H\" est pour Heureuse, ou Habitica ? A vous de choisir ! Augmente la perception de <%= per %>. Armoire enchantée : ensemble de joyeux anniversaire (objet 3 de 4).",
+ "weaponArmoireHappyBannerText": "Heureuse bannière"
}
diff --git a/website/common/locales/fr/generic.json b/website/common/locales/fr/generic.json
index 441f293a0e..0df94b3e98 100644
--- a/website/common/locales/fr/generic.json
+++ b/website/common/locales/fr/generic.json
@@ -294,5 +294,7 @@
"options": "Options",
"demo": "Démo",
"loadEarlierMessages": "Charger les messages précédents",
- "finish": "Terminer"
+ "finish": "Terminer",
+ "congratulations": "Félicitations !",
+ "onboardingAchievs": "Succès de démarrage"
}
diff --git a/website/common/locales/fr/limited.json b/website/common/locales/fr/limited.json
index b2db24c1be..68657dee35 100644
--- a/website/common/locales/fr/limited.json
+++ b/website/common/locales/fr/limited.json
@@ -147,7 +147,7 @@
"dateEndJanuary": "31 janvier",
"dateEndFebruary": "28 février",
"winterPromoGiftHeader": "OFFREZ UN ABONNEMENT ET OBTENEZ-EN UN GRATUIT !",
- "winterPromoGiftDetails1": "Jusqu'au 15 janvier seulement, lorsque vous offrez un abonnement, vous recevez le même abonnement pour vous gratuitement !",
+ "winterPromoGiftDetails1": "Jusqu'au 6 janvier seulement, lorsque vous offrez un abonnement, vous recevez le même abonnement pour vous gratuitement !",
"winterPromoGiftDetails2": "Merci de noter que si vous, ou la personne à qui vous faites ce cadeau, détenez un abonnement récurrent, l'abonnement offert ne commencera qu'après que cet abonnement sera annulé ou expirera. Merci infiniment pour votre soutien <3",
"discountBundle": "lot",
"g1g1Announcement": "Un événement \"Offrez un abonnement, recevez un abonnement gratuit\" est actuellement en cours !",
@@ -168,5 +168,10 @@
"september2017": "Septembre 2017",
"fall2019LichSet": "Liche (Guérisseur)",
"fall2019OperaticSpecterSet": "Fantôme de l'opéra (Voleur)",
- "augustYYYY": "Août <%= year %>"
+ "augustYYYY": "Août <%= year %>",
+ "winter2020WinterSpiceSet": "Épice hivernale (Guérisseur)",
+ "decemberYYYY": "Décembre <%= year %>",
+ "winter2020LanternSet": "Lanterne (Voleur)",
+ "winter2020CarolOfTheMageSet": "Chant du mage (Mage)",
+ "winter2020EvergreenSet": "Sempervirent (Guerrier)"
}
diff --git a/website/common/locales/fr/npc.json b/website/common/locales/fr/npc.json
index 5a2430d614..4341c4de56 100644
--- a/website/common/locales/fr/npc.json
+++ b/website/common/locales/fr/npc.json
@@ -20,7 +20,7 @@
"welcomeToTavern": "Bienvenue dans la taverne !",
"sleepDescription": "Besoin d'une pause ? Prenez une chambre à l'auberge de Daniel pour mettre en veille les aspects d'Habitica les plus complexes :",
"sleepBullet1": "Les tâches quotidiennes non validées ne feront plus de dommages",
- "sleepBullet2": "Les combos ne seront pas interrompus et leur couleur n'évoluera plus",
+ "sleepBullet2": "Les combos ne seront pas interrompus",
"sleepBullet3": "Les boss ne vous infligeront pas de dégâts pour vos propres tâches quotidiennes manquées",
"sleepBullet4": "Les dommages aux boss et la collecte des objets de quête resteront en instance jusqu'à la sortie de la taverne",
"pauseDailies": "Désactiver les dégâts",
@@ -169,5 +169,6 @@
"imReady": "Entrez dans Habitica",
"limitedOffer": "Disponible jusqu'au <%= date %>",
"paymentAutoRenew": "Cet abonnement se renouvellera automatiquement jusqu'à son annulation. Si vous devez annuler cet abonnement, vous pouvez le faire depuis les paramètres.",
- "paymentCanceledDisputes": "Nous avons envoyé la confirmation d'annulation à votre adresse email. Si vous ne recevez pas cet email, veuillez nous contacter pour éviter de futurs problèmes de facturation."
+ "paymentCanceledDisputes": "Nous avons envoyé la confirmation d'annulation à votre adresse email. Si vous ne recevez pas cet email, veuillez nous contacter pour éviter de futurs problèmes de facturation.",
+ "cannotUnpinItem": "Cet objet ne peut pas être désépinglé."
}
diff --git a/website/common/locales/fr/quests.json b/website/common/locales/fr/quests.json
index f7011b43e1..74fb87c24e 100644
--- a/website/common/locales/fr/quests.json
+++ b/website/common/locales/fr/quests.json
@@ -1,7 +1,7 @@
{
"quests": "Quêtes",
"quest": "quête",
- "whereAreMyQuests": "Les quêtes sont désormais disponibles sur leur propre page ! Cliquer sur l'inventaire -> Quêtes pour les trouver.",
+ "whereAreMyQuests": "Les quêtes sont désormais disponibles sur leur propre page ! Cliquer sur Inventaire -> Quêtes pour les trouver.",
"yourQuests": "Vos quêtes",
"questsForSale": "Quêtes à vendre",
"petQuests": "Quêtes de familiers et montures",
@@ -14,18 +14,18 @@
"completed": "complétée !",
"rewardsAllParticipants": "Récompenses individuelles",
"rewardsQuestOwner": "Récompenses additionnelles pour le ou la responsable de quête",
- "questOwnerReceived": "Le ou la responsable de quête a aussi reçu",
+ "questOwnerReceived": "La personne propriétaire de la quête a aussi reçu",
"youWillReceive": "Vous recevrez",
- "questOwnerWillReceive": "Le ou la responsable de quête recevra aussi",
- "youReceived": "Vous remportez ceci :",
- "dropQuestCongrats": "Bravo pour le gain de ce parchemin de quête ! Vous pouvez inviter votre équipe à commencer la quête maintenant, ou y revenir à n'importe quel moment dans votre Inventaire > Quêtes.",
+ "questOwnerWillReceive": "La personne propriétaire de la quête recevra aussi",
+ "youReceived": "Vous avez reçu :",
+ "dropQuestCongrats": "Félicitations pour avoir reçu ce parchemin de quête ! Vous pouvez inviter votre équipe à commencer la quête maintenant, ou y revenir à n'importe quel moment dans votre Inventaire > Quêtes.",
"questSend": "En cliquant sur \"Inviter\", vous enverrez une invitation aux membres de votre équipe. Lorsque tous les membres auront accepté ou refusé, la quête commencera. Vous pouvez suivre le statut de l'invitation sous Social > Équipe.",
"questSendBroken": "En cliquant sur \"Inviter\", vous enverrez une invitation aux membres de votre équipe. Lorsque tous les membres auront accepté ou refusé, la quête commencera. Vous pouvez suivre le statut de l'invitation dans l'onglet Équipe.",
"inviteParty": "Inviter l’équipe à une quête",
"questInvitation": "Invitation à une quête : ",
"questInvitationTitle": "Invitation à une quête",
"questInvitationInfo": "Invitation à la quête <%= quest %>",
- "invitedToQuest": "On vous invite à rejoindre la quête
<%= quest %>",
+ "invitedToQuest": "Vous avez reçu une invitation à rejoindre la quête
<%= quest %>",
"askLater": "Redemander plus tard",
"questLater": "Faire la quête plus tard",
"buyQuest": "Acheter une quête",
@@ -33,38 +33,38 @@
"declined": "Refusée",
"rejected": "Rejetée",
"pending": "En attente",
- "questStart": "Une fois que tous les membres ont soit accepté, soit refusé de participer, la quête commence. Seuls ceux qui ont cliqué sur \"Accepter\" pourront participer à la quête et recevoir les récompenses. Si certains membres mettent trop de temps à répondre (peut-être sont-ils inactifs ?), le ou la responsable de la quête peut démarrer la quête sans eux en cliquant sur \"Commencer\". Il ou elle peut également annuler la quête, et ainsi récupérer le parchemin de quête, en cliquant sur \"Annuler\".",
- "questStartBroken": "Une fois que tous les membres ont soit accepté, soit refusé de participer, la quête commence. Seuls ceux qui ont cliqué sur « Accepter » pourront participer à la quête et recevoir les récompenses. Si certains membres mettent trop de temps à répondre (peut-être sont-ils inactifs ?), le ou la responsable de la quête peut démarrer la quête sans eux en cliquant sur « Commencer ». Il ou elle peut également annuler la quête, et ainsi récupérer le parchemin de quête, en cliquant sur « Annuler ».",
+ "questStart": "Une fois que tous les membres ont soit accepté, soit refusé de participer, la quête commence. Seuls les personnes qui ont cliqué sur \"Accepter\" pourront participer à la quête et recevoir les récompenses. Si certaines personnes mettent trop de temps à répondre (peut-être sont-ils inactifs ?), la personne propriétaire de la quête peut démarrer la quête sans eux en cliquant sur \"Commencer\". Elle peut également annuler la quête, et ainsi récupérer le parchemin de quête, en cliquant sur \"Annuler\".",
+ "questStartBroken": "Une fois que tous les membres ont soit accepté, soit refusé de participer, la quête commence. Seuls les personnes qui ont cliqué sur \"Accepter\" pourront participer à la quête et recevoir les récompenses. Si certaines personnes mettent trop de temps à répondre (peut-être sont-ils inactifs ?), la personne propriétaire de la quête peut démarrer la quête sans eux en cliquant sur \"Commencer\". Elle peut également annuler la quête, et ainsi récupérer le parchemin de quête, en cliquant sur \"Annuler\".",
"questCollection": "+ <%= val %> objet(s) de quête trouvé(s)",
"questDamage": "+ <%= val %> dégâts au boss",
"begin": "Commencer",
"bossHP": "Santé du boss",
"bossStrength": "Force du boss",
"rage": "Rage",
- "collect": "Collecter",
+ "collect": "Récolter",
"collected": "Récolté",
"collectionItems": "<%= number %> <%= items %>",
"itemsToCollect": "Objets à récupérer",
- "bossDmg1": "Chaque tâche Quotidienne ou À Faire et chaque habitude positive inflige des dommages au boss. Frappez plus fort avec des tâches plus rouges ou avec les sorts \"Frappe brutale\" et \"Explosion de flammes\". Le boss infligera des dommages à chacun des participants de la quête pour chaque Quotidienne que vous aurez manquée (multipliés par la Force du boss) en plus des dommages normaux. Alors protégez votre équipe en effectuant vos Quotidiennes !
Tout dommage causé par vous et par le boss est pris en compte au cron (la réinitialisation de votre journée).",
- "bossDmg2": "Seuls les participants pourront combattre le boss et partager le butin de la quête.",
- "bossDmg1Broken": "Chaque tâche Quotidienne ou À Faire et chaque habitude positive effectuée inflige des dommages au boss... Frappez plus fort avec des tâches plus rouges ou avec les sorts \"Frappe brutale\" et \"Explosion de flammes\"... Le boss infligera des dommages à chacun des participants de la quête pour chaque Quotidienne manquée (multipliés par la Force du boss) en plus des dommages normaux... Alors protégez votre équipe en effectuant vos Quotidiennes...
Tout dommage causé par vous et par le boss est pris en compte au cron (la réinitialisation de votre journée)...",
- "bossDmg2Broken": "Seuls les participants pourront combattre le boss et partager le butin de la quête...",
- "tavernBossInfo": "Achevez vos tâches Quotidiennes et complétez des habitudes positives pour faire des dégâts contre le boss mondial ! Les tâches Quotidiennes non-faites remplissent sa barre de rage. Quand sa barre de rage est remplie, le boss mondial attaquera un PNJ. Un boss mondial n'attaquera en aucun cas un joueur ou un compte en ligne. Seuls les comptes actifs qui ne se reposent pas dans l'auberge auront leurs tâches comptées.",
- "tavernBossInfoBroken": "Effectuez vos tâches Quotidiennes et À Faire et continuez vos habitudes positives pour blesser le boss mondial... Chaque Quotidienne non effectuée remplit la barre de rage... Lorsque la barre de rage est pleine, le boss mondial attaquera un PNJ... Un boss mondial ne blessera jamais des joueurs individuels ou des comptes de quelque façon que ce soit... Seules les tâches des comptes actifs de joueurs qui ne se reposent pas à l'auberge sont prises en compte...",
- "bossColl1": "Pour collectionner des objets, accomplissez vos tâches positives. Vous trouverez les objets de quête exactement comme les objets normaux. Vous pouvez consulter vos butins d'objets de quêtes en survolant l'icône de progrès de quête.",
- "bossColl2": "Seuls les participants peuvent collecter des objets et partager le butin de la quête.",
- "bossColl1Broken": "Pour collectionner des objets, accomplissez vos tâches positives... Vous trouverez les objets de quête exactement comme les objets normaux. Vous pouvez consulter vos butins d'objets de quêtes en survolant l'icône de progrès de quête...",
- "bossColl2Broken": "Seuls les participants peuvent collectionner des objets et partager le butin de la quête...",
+ "bossDmg1": "Chaque tâche quotidienne ou à faire et chaque habitude positive inflige des dommages au boss. Frappez plus fort avec des tâches plus rouges ou avec les sorts \"Frappe brutale\" et \"Explosion de flammes\". Le boss infligera des dommages à chacun des participants de la quête pour chaque quotidienne que vous aurez manquée (multipliés par la force du boss) en plus des dommages normaux. Alors protégez votre équipe en effectuant vos quotidiennes !
Tout dommage causé par vous et par le boss est pris en compte au cron (la réinitialisation de votre journée).",
+ "bossDmg2": "Seuls les personnes participant pourront combattre le boss et partager le butin de la quête.",
+ "bossDmg1Broken": "Chaque tâche quotidienne ou à faire et chaque habitude positive effectuée inflige des dommages au boss... Frappez plus fort avec des tâches plus rouges ou avec les sorts \"Frappe brutale\" et \"Explosion de flammes\"... Le boss infligera des dommages à chacun des participants de la quête pour chaque quotidienne manquée (multipliés par la force du boss) en plus des dommages normaux... Alors protégez votre équipe en effectuant vos quotidiennes...
Tout dommage causé par vous et par le boss est pris en compte au cron (la réinitialisation de votre journée)...",
+ "bossDmg2Broken": "Seuls les personnes participant pourront combattre le boss et partager le butin de la quête...",
+ "tavernBossInfo": "Achevez vos tâches quotidiennes et complétez des habitudes positives pour faire des dégâts contre le boss mondial ! Les tâches quotidiennes non-faites remplissent sa barre de rage. Quand sa barre de rage est remplie, le boss mondial attaquera un PNJ. Un boss mondial n'attaquera en aucun cas un joueur ou un compte. Seuls les comptes actifs qui ne se reposent pas dans l'auberge auront leurs tâches comptées.",
+ "tavernBossInfoBroken": "Effectuez vos tâches quotidiennes et à faire et continuez vos habitudes positives pour blesser le boss mondial... Chaque quotidienne non effectuée remplit la barre de rage... Lorsque la barre de rage est pleine, le boss mondial attaquera un PNJ... Un boss mondial n'attaquera en aucun cas un joueur ou un compte... Seules les comptes actifs qui ne se reposent pas à l'auberge auront leurs tâches comptées...",
+ "bossColl1": "Pour trouver des objets, accomplissez vos tâches positives. Vous trouverez les objets de quête exactement comme les objets normaux. Vous pouvez consulter vos butins d'objets de quêtes en survolant l'icône de progrès de quête.",
+ "bossColl2": "Seuls les participants peuvent trouver des objets et partager le butin de la quête.",
+ "bossColl1Broken": "Pour trouver des objets, accomplissez vos tâches positives... Vous trouverez les objets de quête exactement comme les objets normaux. Vous pouvez consulter vos butins d'objets de quêtes en survolant l'icône de progrès de quête...",
+ "bossColl2Broken": "Seuls les participants peuvent trouver des objets et partager le butin de la quête...",
"abort": "Abandonner",
"leaveQuest": "Quitter la quête",
"sureLeave": "Confirmez-vous vouloir quitter la quête en cours ? Tout votre progrès dans cette quête sera perdu.",
- "questOwner": "Responsable de quête",
- "questTaskDamage": "+ <%= damage %> dommages au boss en instance",
+ "questOwner": "Propriétaire de la quête",
+ "questTaskDamage": "+ <%= damage %> dégats au boss en instance",
"questTaskCollection": "<%= items %> objets ramassés aujourd'hui",
- "questOwnerNotInPendingQuest": "Le responsable de quête a quitté la quête et ne peut plus la débuter. Il vous est recommandé d'abandonner celle-ci. Le responsable de quête reprendra possession du parchemin de quête.",
- "questOwnerNotInRunningQuest": "Le responsable de quête a quitté la quête. Vous pouvez abandonner la quête si vous le désirez, mais vous pouvez aussi décider de la poursuivre, et tous les participants recevront les récompenses de quête lorsque celle-ci sera terminée.",
- "questOwnerNotInPendingQuestParty": "Le responsable de quête a quitté le groupe et ne peut plus lancer la quête. Il vous est recommandé d'abandonner celle-ci. Le lanceur de quête reprendra possession du parchemin de quête.",
- "questOwnerNotInRunningQuestParty": "Le responsable de quête a quitté le groupe. Vous pouvez abandonner la quête si vous le désirez, mais vous pouvez aussi décider de la poursuivre, et tous les participants recevront les récompenses de quête lorsque celle-ci sera terminée.",
+ "questOwnerNotInPendingQuest": "La personne propriétaire de cette quête a quitté la quête et ne peut plus la débuter. Il vous est recommandé d'abandonner celle-ci. La personne propriétaire de la quête reprendra possession du parchemin de quête.",
+ "questOwnerNotInRunningQuest": "La personne propriétaire de cette quête a quitté la quête. Vous pouvez abandonner la quête si vous le désirez, mais vous pouvez aussi décider de la poursuivre, et tous les participants recevront les récompenses de quête lorsque celle-ci sera terminée.",
+ "questOwnerNotInPendingQuestParty": "La personne propriétaire de cette quête a quitté le groupe et ne peut plus lancer la quête. Il vous est recommandé d'abandonner celle-ci. Le parchemin de quête sera restitué à son propriétaire.",
+ "questOwnerNotInRunningQuestParty": "La personne propriétaire de la quête a quitté le groupe. Vous pouvez abandonner la quête si vous le désirez, mais vous pouvez aussi décider de la poursuivre, et tous les participants recevront les récompenses de quête lorsque celle-ci sera terminée.",
"questParticipants": "Participants",
"scrolls": "Parchemins de quête",
"noScrolls": "Vous n'avez pas de parchemin de quête.",
@@ -74,21 +74,21 @@
"alreadyEarnedQuestLevel": "Vous avez déjà gagné cette quête en atteignant le niveau <%= level %>. ",
"alreadyEarnedQuestReward": "Vous avez déjà gagné cette quête en terminant <%= priorQuest %>. ",
"completedQuests": "A accompli les quêtes suivantes",
- "mustComplete": "Vous devez d'abord compléter <%= quest %>.",
+ "mustComplete": "Vous devez d'abord finir <%= quest %>.",
"mustLevel": "Vous devez être au niveau <%= level %> pour lancer cette quête.",
"mustLvlQuest": "Vous devez être au niveau <%= level %> pour acheter cette quête !",
"mustInviteFriend": "Pour gagner cette quête, invitez un ami dans votre équipe. Voulez-vous inviter quelqu'un maintenant ?",
"unlockByQuesting": "Pour débloquer cette quête, complétez <%= title %>.",
- "questConfirm": "Avez-vous bien fait votre choix ? Seuls <%= questmembers %> des <%= totalmembers %> membres de votre équipe ont rejoint cette quête ! Les quêtes démarrent automatiquement quand tous les joueurs ont accepté ou décliné l'invitation.",
- "sureCancel": "Confirmez-vous vouloir annuler cette quête ? Toutes les invitations acceptées seront perdues. Le responsable de quête reprendra possession du parchemin de quête.",
- "sureAbort": "Confirmez-vous vouloir abandonner cette mission ? Elle sera abandonnée pour tous les membres de votre groupe et toute la progression sera perdue. Le responsable de quête reprendra possession du parchemin de quête.",
- "doubleSureAbort": "Confirmez-vous absolument ? Assurez-vous qu'ils ne vont pas vous détester pour le reste de votre vie !",
- "questWarning": "Si de nouveaux joueurs rejoignent le groupe avant que la quête ne soit lancée, il recevront également une invitation. Cependant, une fois la quête débutée aucun nouveau membre du groupe ne pourra rejoindre celle-ci.",
- "questWarningBroken": "Si de nouveaux joueurs rejoignent le groupe avant que la quête ne commence, ils recevront également une invitation... Mais une fois la quête lancée, aucun nouveau membre du groupe ne peut rejoindre la quête.",
+ "questConfirm": "Avez-vous bien fait votre choix ? Seuls <%= questmembers %> des <%= totalmembers %> membres de votre équipe ont rejoint cette quête ! Les quêtes démarrent automatiquement quand tous les membres ont accepté ou décliné l'invitation.",
+ "sureCancel": "Confirmez-vous vouloir annuler cette quête ? Toutes les invitations acceptées seront perdues. La personne propriétaire de la quête reprendra possession du parchemin de quête.",
+ "sureAbort": "Confirmez-vous vouloir abandonner cette mission ? Elle sera abandonnée pour tous les membres de votre équipe et toute la progression sera perdue. La personne propriétaire de la quête reprendra possession du parchemin de quête.",
+ "doubleSureAbort": "Confirmez-vous vraiment ? Assurez-vous que les autres membres ne vont pas vous détester jusqu'à la fin des temps !",
+ "questWarning": "Si de nouvelles personnes rejoignent l'équipe avant que la quête ne soit lancée, elles recevront également une invitation. Mais une fois la quête débutée, aucun nouveau membre ne pourra rejoindre celle-ci.",
+ "questWarningBroken": "Si de nouvelles personnes rejoignent l'équipe avant que la quête ne commence, elles recevront également une invitation... Mais une fois la quête lancée, aucun nouveau membre ne peut rejoindre celle-ci.",
"bossRageTitle": "Rage",
"bossRageDescription": "Quand cette jauge sera remplie, le boss réalisera une attaque spéciale !",
- "startAQuest": "COMMENCER UNE QUÊTE",
- "startQuest": "Commencer la quête",
+ "startAQuest": "DÉMARRER UNE QUÊTE",
+ "startQuest": "Démarrer la quête",
"whichQuestStart": "Quelle quête voulez-vous démarrer ?",
"getMoreQuests": "Obtenez plus de quêtes",
"unlockedAQuest": "Vous avez déverrouillé une quête !",
@@ -103,25 +103,25 @@
"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.",
"noActiveQuestToLeave": "Il n'y a pas de quête active à quitter",
- "questLeaderCannotLeaveQuest": "Le responsable de la quête ne peut quitter la quête",
+ "questLeaderCannotLeaveQuest": "La personne responsable de la quête ne peut quitter la quête",
"notPartOfQuest": "Vous ne participez pas à la quête",
"youAreNotOnQuest": "Vous n'êtes pas en quête",
"noActiveQuestToAbort": "Il n'y a pas de quête active à interrompre.",
- "onlyLeaderAbortQuest": "Seul le responsable du groupe ou de la quête peut interrompre une quête.",
+ "onlyLeaderAbortQuest": "Seul la personne responsable de l'équipe ou de la quête peut interrompre une quête.",
"questAlreadyRejected": "Vous avez déjà rejeté l'invitation à la quête.",
"cantCancelActiveQuest": "Vous ne pouvez pas annuler une quête active, utilisez la fonction \"interrompre\" à la place.",
- "onlyLeaderCancelQuest": "Seul le responsable du groupe ou de la quête peut annuler la quête.",
+ "onlyLeaderCancelQuest": "Seul la personne responsable de l'équipe ou de la quête peut annuler la quête.",
"questNotPending": "Il n'y a aucune quête à commencer.",
- "questOrGroupLeaderOnlyStartQuest": "Seul le responsable du groupe ou de la quête peut forcer le début de la quête",
+ "questOrGroupLeaderOnlyStartQuest": "Seul la personne responsable de l'équipe ou de la quête peut forcer le début de la quête",
"createAccountReward": "Créer un compte",
"loginIncentiveQuest": "Pour débloquer cette quête, connectez-vous à Habitica <%= count %> jours différents !",
"loginIncentiveQuestObtained": "Vous avez gagné cette quête pour vous être connecté sur Habitica <%= count %> jours différents !",
"loginReward": "<%= count %> connexion(s)",
- "createAccountQuest": "Vous avez reçu cette quête en rejoignant Habitica. Si des amis vous rejoignent, ils l'auront aussi.",
+ "createAccountQuest": "Vous avez reçu cette quête en rejoignant Habitica. Si des amis vous rejoignent, ils la recevront aussi.",
"questBundles": "Lots de quêtes à prix réduits",
"buyQuestBundle": "Acheter ce lot de quêtes",
"noQuestToStart": "Vous ne trouvez pas de quête à commencer ? Essayez de vérifier la boutique des quêtes, au marché, pour de nouvelles sorties !",
- "pendingDamage": "<%= damage %> dommages en instance",
+ "pendingDamage": "<%= damage %> dégâts en instance",
"pendingDamageLabel": "dégâts en cours",
"bossHealth": "<%= currentHealth %> / <%= maxHealth %> Santé",
"rageAttack": "Attaque de rage :",
@@ -131,9 +131,9 @@
"chatQuestStarted": "Votre quête, <%= questName %>, a commencé.",
"chatBossDamage": "<%= username %> attaque <%= bossName %> et inflige <%= userDamage %> dégâts. <%= bossName %> attaque l'équipe et inflige <%= bossDamage %> dégâts.",
"chatBossDontAttack": "<%= username %> attaque <%= bossName %> et inflige <%= userDamage %> dégâts. <%= bossName %> n'attaque pas, respectant le fait qu'il reste des erreur post-maintenance, et ne voulant pas blesser indûment qui que ce soit. Le carnage reprendra bientôt !",
- "chatBossDefeated": "Vous avez vaincu <%= bossName %> ! Les personnes ayant participé à la quête en reçoivent les récompenses.",
+ "chatBossDefeated": "Vous avez vaincu <%= bossName %> ! Les personnes ayant participé à la quête en reçoivent maintenant les récompenses.",
"chatFindItems": "<%= username %> a trouvé <%= items %>.",
- "chatItemQuestFinish": "Tout les objets ont été trouvés ! L'équipe reçoit sa récompense.",
+ "chatItemQuestFinish": "Tout les objets ont été trouvés ! L'équipe reçoit la récompense.",
"chatQuestAborted": "<%= username %> a interrompu la quête <%= questName %>.",
"chatQuestCancelled": "<%= username %> a annulé la quête en équipe <%= questName %>.",
"tavernBossTired": "<%= bossName %> essaye de lancer <%= rageName %> mais est trop fatigué pour ça.",
diff --git a/website/common/locales/fr/questscontent.json b/website/common/locales/fr/questscontent.json
index 91a5a32714..463c808d17 100644
--- a/website/common/locales/fr/questscontent.json
+++ b/website/common/locales/fr/questscontent.json
@@ -1,11 +1,11 @@
{
"questEvilSantaText": "Trappeur Noël",
- "questEvilSantaNotes": "Des grondements plaintifs résonnent au loin sur la banquise. Suivant les grognements – étrangement ponctués de gloussements – vous parvenez à une clairière où se trouve une ourse polaire adulte. Enfermée dans une cage, enchaînée, elle essaie désespérément de se libérer. Au-dessus d'elle, un méchant petit lutin attifé d'un costume délabré danse. Vainquez le Trappeur Noël, et sauvez la bête !",
+ "questEvilSantaNotes": "Des grondements plaintifs résonnent au loin sur la banquise. Suivant les grognements – étrangement ponctués de gloussements – vous parvenez à une clairière où se trouve une ourse polaire adulte. Enfermée dans une cage, enchaînée, elle essaie désespérément de se libérer. Au-dessus d'elle, un méchant petit lutin attifé d'un costume délabré danse. Vainquez le Trappeur Noël, et sauvez la bête !
Note : \"Trappeur Noël\" récompense avec un succès de quête cumulatif, mais donne une monture rare que vous ne pouvez ajouter à votre écurie qu'une seule fois.",
"questEvilSantaCompletion": "Le Trappeur Noël glapit de colère et fuit, s'enfonçant dans la nuit. L'ourse est vraiment reconnaissante. Mais voilà qu'elle gronde et grogne, comme si elle cherchait à vous dire quelque chose d'important. Vous la ramenez à l'écurie où Matt Boch, le Maître des bêtes, comprend avec un sursaut d'horreur son problème. Elle a un ourson ! Il a fui vers la banquise lors de la capture de sa mère.",
"questEvilSantaBoss": "Trappeur Noël",
"questEvilSantaDropBearCubPolarMount": "Ours polaire (Monture)",
"questEvilSanta2Text": "Trouvez l'ourson",
- "questEvilSanta2Notes": "L'ourson a fui en direction de la banquise lorsque le Trappeur Noël a capturé l'ourse polaire pour en faire sa monture. La forêt bruisse du son de branchettes soudainement brisées et des craquements de la neige. Des empreintes de pattes ! Vous vous élancez sur leur piste. Trouvez toutes les empreintes, toutes les branches cassées et secourez l'ourson !",
+ "questEvilSanta2Notes": "L'ourson a fui en direction de la banquise lorsque le Trappeur Noël a capturé l'ourse polaire pour en faire sa monture. La forêt bruisse du son de branchettes soudainement brisées et des craquements de la neige. Des empreintes de pattes ! Vous vous élancez sur leur piste. Trouvez toutes les empreintes, toutes les branches cassées et secourez l'ourson !
Note : \"Trouvez l'ourson\" récompense avec un succès de quête cumulatif, mais donne un familier rare que vous ne pouvez ajouter à votre écurie qu'une seule fois.",
"questEvilSanta2Completion": "Vous avez trouvé l'ourson ! Il vous tiendra compagnie pour toujours.",
"questEvilSanta2CollectTracks": "Empreintes",
"questEvilSanta2CollectBranches": "Brindilles brisées",
@@ -559,7 +559,7 @@
"questYarnDropYarnEgg": "Pelote (Œuf)",
"questYarnUnlockText": "Déverrouille l'achat d’œufs de pelote au marché",
"winterQuestsText": "Lot de quêtes hivernales",
- "winterQuestsNotes": "Contient \"Trappeur Noël\", \"Trouvez l'ourson\" et \"Le gorfou glacé\". Disponible jusqu'au 31 décembre.",
+ "winterQuestsNotes": "Contient \"Trappeur Noël\", \"Trouvez l'ourson\" et \"Le gorfou glacé\". Disponible jusqu'au 31 Janvier. Notez que Trappeur Noël et Trouve l'ourson récompense par des succès de quêtes cumulatifs, mais donnent un familier et une monture rare que vous ne pouvez ajouter à votre écurie qu'une seule fois.",
"questPterodactylText": "Le Pterreur-dactyle",
"questPterodactylNotes": "Vous vous promenez le long des paisibles falaises de Stoïcalme lorsqu'un crissement maléfique déchire l'air. Vous vous tournez pour trouver une créature hideuse qui vole vers vous et vous submerge d'une terreur puissante. Alors que vous vous tournez pour fuir, @Lilith d'Alfheim vous attrape. \"Pas de panique, c'est juste un Pterreur-dactyle.\"
@Procyon P acquiesce. \"Ils nichent à proximité, mais ils sont attirés par l'odeur des habitudes négatives et des quotidiennes non réalisées.\"
\"Ne vous inquiétez pas\", dit @Katy133. \"Nous avons juste besoin d'être très productif pour le vaincre !\" Vous vous remplissez d'une détermination renouvelée et vous vous tournez pour faire face à votre ennemi.",
"questPterodactylCompletion": "Avec un dernier cri, le Pterreur-dactyle dégringole du flanc de la falaise. Vous vous précipitez pour le voir s'envoler dans les steppes lointaines. \"Ouf, je suis content que ce soit fini\", dites-vous. \"Moi aussi\", répond @GeraldThePixel. \"Mais regarde, il a laissé quelques œufs pour nous.\" @Edge vous donne trois œufs, et vous promettez de les élever dans la tranquillité, entouré par des habitudes positives et des quotidiennes bleues.",
@@ -674,5 +674,6 @@
"questAmberUnlockText": "Déverrouille l'achat de potions d'éclosion d'ambre au marché",
"questAmberDropAmberPotion": "Potion d'éclosion d'ambre",
"questAmberBoss": "Arbrésine",
- "questAmberCompletion": "\"Arbrésine ?\" dit @-Tyr- calmement. \"Pourriez-vous laisser partir @Vikte ? Je ne pense pas qu'ils apprécient d'être si haut.\"
La peau ambrée de l'arbrésine rougit de pourpre et elle descend doucement @Vikte vers le sol. \"Mes excuses ! Ça fait si longtemps que je n'ai pas eu d'invités que j'ai oublié mes manières !\" Elle se glisse vers l'avant pour vous saluer correctement avant de disparaître dans sa cabane dans l'arbre et de revenir avec une brassée de potions d'éclosion d'ambre en guise de remerciement!
\"Potions magiques !\" @Vikte gasps.
\"Oh, ces vieilles choses ?\" La langue de l'arbrésine scintille comme elle le pense. \"Que penses-tu de ça ? Je vous donnerai toute cette pile si vous promettez de me rendre visite de temps en temps...\"
Et donc vous quittez le bois des tâches, excités de parler des nouvelles potions à tout le monde - et à votre nouvelle amie !"
+ "questAmberCompletion": "\"Arbrésine ?\" dit @-Tyr- calmement. \"Pourriez-vous laisser partir @Vikte ? Je ne pense pas qu'ils apprécient d'être si haut.\"
La peau ambrée de l'arbrésine rougit de pourpre et elle descend doucement @Vikte vers le sol. \"Mes excuses ! Ça fait si longtemps que je n'ai pas eu d'invités que j'ai oublié mes manières !\" Elle se glisse vers l'avant pour vous saluer correctement avant de disparaître dans sa cabane dans l'arbre et de revenir avec une brassée de potions d'éclosion d'ambre en guise de remerciement!
\"Potions magiques !\" @Vikte gasps.
\"Oh, ces vieilles choses ?\" La langue de l'arbrésine scintille comme elle le pense. \"Que penses-tu de ça ? Je vous donnerai toute cette pile si vous promettez de me rendre visite de temps en temps...\"
Et donc vous quittez le bois des tâches, excités de parler des nouvelles potions à tout le monde - et à votre nouvelle amie !",
+ "evilSantaAddlNotes": "Notez que Trappeur Noël et Trouve l'ourson récompense par des succès de quêtes cumulatifs, mais donnent un familier et une monture rare que vous ne pouvez ajouter à votre écurie qu'une seule fois."
}
diff --git a/website/common/locales/fr/settings.json b/website/common/locales/fr/settings.json
index c6d10cf71f..a4c9fd0b4c 100644
--- a/website/common/locales/fr/settings.json
+++ b/website/common/locales/fr/settings.json
@@ -8,8 +8,8 @@
"stickyHeaderPop": "Fixe le bandeau au dessus de l'écran. Si cette case est décochée, il défilera hors de vue.",
"newTaskEdit": "Ouvrir une nouvelle tâche dans le mode modification",
"newTaskEditPop": "Avec cette option cochée, les nouvelles tâches s'ouvriront immédiatement de manière à vous permettre d'ajouter des détails tels que des notes et des étiquettes.",
- "dailyDueDefaultView": "Afficher par défaut les Quotidiennes de l'onglet \"Restantes\"",
- "dailyDueDefaultViewPop": "Lorsque cette option est activée, les Quotidiennes afficheront par défaut l'onglet \"Restantes\" plutôt que l'onglet \"Tous\"",
+ "dailyDueDefaultView": "Afficher par défaut les quotidiennes de l'onglet \"Restantes\"",
+ "dailyDueDefaultViewPop": "Lorsque cette option est activée, les quotidiennes afficheront par défaut l'onglet \"Restantes\" plutôt que l'onglet \"Tous\"",
"reverseChatOrder": "Montrer les messages de la discussion dans l'ordre inverse",
"startAdvCollapsed": "Paramètres avancés des tâches réduits par défaut",
"startAdvCollapsedPop": "Avec cette option cochée, les paramètres avancés seront cachés quand vous modifierez une tâche pour la première fois.",
@@ -23,7 +23,7 @@
"showBailey": "Montrer Bailey",
"showBaileyPop": "Rappelle Bailey la crieuse publique afin que vous puissiez revoir les dernières nouveautés.",
"fixVal": "Corriger les valeurs du personnage",
- "fixValPop": "Changer manuellement les valeurs telles que la Vie, le Niveau et l'Or.",
+ "fixValPop": "Changer manuellement les valeurs telles que la vie, le niveau et l'or.",
"invalidLevel": "Valeur invalide : le niveau doit être de 1 ou plus.",
"enableClass": "Activer le système de classe",
"enableClassPop": "Vous avez désactivé le système de classe. Voulez-vous à présent l'activer ?",
@@ -39,28 +39,28 @@
"habitHistory": "Historique Habitica",
"exportHistory": "Exporter l'Historique :",
"csv": "(CSV)",
- "userData": "Données Utilisateur",
- "exportUserData": "Exporter les Données Utilisateur :",
+ "userData": "Données utilisateur",
+ "exportUserData": "Exporter les données utilisateur :",
"export": "Exporter",
"xml": "(XML)",
"json": "(JSON)",
"customDayStart": "Heure personnalisée de début de journée",
"sureChangeCustomDayStartTime": "Voulez-vous vraiment changer l'heure personnalisée de début de journée ? Vos quotidiennes seront réinitialisées la prochaine fois que vous utiliserez Habitica après <%= time %>. Faites attention à les avoir complétées d'ici là !",
- "changeCustomDayStart": "Changer l'Heure personnalisée de début de journée ?",
+ "changeCustomDayStart": "Changer l'heure personnalisée de début de journée ?",
"sureChangeCustomDayStart": "Confirmez-vous vouloir changer votre heure personnalisée de début de journée ?",
"customDayStartHasChanged": "Votre heure personnalisée de début de journée a été changée.",
- "nextCron": "Vos tâches Quotidiennes seront réinitialisées la prochaine fois que vous utiliserez Habitica après <%= time %>. Faites attention à compléter vos tâches Quotidiennes avant cette heure !",
- "customDayStartInfo1": "Par défaut, Habitica vérifie et réinitialise vos tâches Quotidiennes à minuit dans votre fuseau horaire. Vous pouvez personnaliser cette heure ici.",
+ "nextCron": "Vos tâches quotidiennes seront réinitialisées la prochaine fois que vous utiliserez Habitica après <%= time %>. Faites attention à compléter vos tâches quotidiennes avant cette heure !",
+ "customDayStartInfo1": "Par défaut, Habitica vérifie et réinitialise vos tâches quotidiennes à minuit dans votre fuseau horaire. Vous pouvez personnaliser cette heure ici.",
"misc": "Divers",
"showHeader": "Montrer le bandeau",
"changePass": "Changer le mot de passe",
- "changeUsername": "Changer le nom d'utilisateur",
+ "changeUsername": "Changer le pseudo",
"changeEmail": "Changer votre adresse courriel",
"newEmail": "Nouvelle adresse courriel",
"oldPass": "Ancien mot de passe",
"newPass": "Nouveau mot de passe",
"confirmPass": "Confirmer le nouveau mot de passe",
- "newUsername": "Nouveau nom d'utilisateur",
+ "newUsername": "Nouveau pseudo",
"dangerZone": "Zone de Danger",
"resetText1": "ATTENTION ! Cette action va réinitialiser une grand partie de votre compte. Ceci est fortement déconseillé, mais certaines personnes y trouvent une utilité dans les premiers temps, après une courte utilisation de l'application.",
"resetText2": "Vous perdrez tous vos niveaux, or et points d'expérience. Toutes vos tâches (à l'exception des tâches de défis) seront supprimées de façon permanente et vous perdrez tout l'historique associé aux tâches. Vous perdrez tout votre équipement, mais il vous sera possible de l'acheter à nouveau, y compris les équipements en édition limitée et les objets mystère d'abonné. (Vous devrez cependant être de la classe correspondante pour racheter les équipements de classe.) Vous conserverez votre classe actuelle, ainsi que vos familiers et montures. Peut-être préféreriez-vous utiliser un orbe de renaissance, une option bien plus sûre qui vous permettra de conserver toutes vos tâches et votre équipement.",
@@ -84,7 +84,7 @@
"resetDo": "Allez-y, réinitialisez mon compte !",
"resetComplete": "Réinitialisation terminée !",
"fixValues": "Régler les Valeurs",
- "fixValuesText1": "Si vous avez rencontré un bug ou avez fait une erreur qui a modifié de manière injuste votre personnage (dégâts que n'auriez pas du prendre, Or que vous n'auriez pas du vraiment gagner, etc.), vous pouvez modifier manuellement vos valeurs ici. Oui, ceci permet de tricher : utilisez cette fonctionnalité avec sagesse ou vous saboterez vos propres bonnes habitudes !",
+ "fixValuesText1": "Si vous avez rencontré un bug ou avez fait une erreur qui a modifié de manière injuste votre personnage (dégâts que n'auriez pas du prendre, or que vous n'auriez pas du vraiment gagner, etc.), vous pouvez modifier manuellement vos valeurs ici. Oui, ceci permet de tricher : utilisez cette fonctionnalité avec sagesse ou vous saboterez vos propres bonnes habitudes !",
"fixValuesText2": "Notez que vous ne pouvez pas restaurer les combos sur les tâches individuelles ici. Pour ce faire, éditez la tâche et allez dans les paramètres avancés, où vous trouverez un champ \"Restaurer les combos\".",
"disabledWinterEvent": "Désactivé durant le Winter Wonderland Event Pt.4 (étant donné que les récompenses sont achetables avec de l'or).",
"fix21Streaks": "21 jours d'affilée",
@@ -102,7 +102,7 @@
"detachedSocial": "<%= network %> a été retiré de votre compte avec succès",
"addedLocalAuth": "Authentification locale ajoutée avec succès",
"data": "Données",
- "exportData": "Exporter les Données",
+ "exportData": "Exporter les données",
"usernameOrEmail": "Nom d'utilisateur ou adresse courriel",
"email": "Courriel",
"registerWithSocial": "S'inscrire avec <%= network %>",
@@ -127,10 +127,10 @@
"majorUpdates": "Annonces Importantes",
"questStarted": "Votre quête a commencé",
"invitedQuest": "Invitation à une quête",
- "kickedGroup": "Éjecté·e du groupe",
+ "kickedGroup": "Sorti·e du groupe",
"remindersToLogin": "Rappels de vérification d'Habitica",
- "subscribeUsing": "Abonnez-vous avec",
- "unsubscribedSuccessfully": "Correctement désabonné !",
+ "subscribeUsing": "Inscrivez-vous avec",
+ "unsubscribedSuccessfully": "Désinscription prise en compte !",
"unsubscribedTextUsers": "Vous venez de vous désabonner de tous les courriels d'Habitica avec succès. Vous pouvez activer uniquement les courriels que vous souhaitez recevoir dans Paramètres > > Notifications (nécessite d'être connecté).",
"unsubscribedTextOthers": "Vous ne recevrez plus d'autre courriel de Habitica.",
"unsubscribeAllEmails": "Cocher pour se désabonner des courriels",
@@ -148,15 +148,15 @@
"promoCode": "Code promotionnel",
"promoCodeApplied": "Code promotionnel validé ! Vérifiez votre inventaire",
"promoPlaceholder": "Entrez le Code promotionnel",
- "displayInviteToPartyWhenPartyIs1": "Afficher le bouton Inviter Dans L'équipe lorsque l'équipe a 1 seul membre.",
+ "displayInviteToPartyWhenPartyIs1": "Afficher le bouton Inviter dans l'équipe lorsque l'équipe a 1 seul membre.",
"saveCustomDayStart": "Enregistrer l'heure personnalisée de début de journée",
"registration": "S'enregistrer",
- "addLocalAuth": "Ajouter authentification par email et mot de passe",
+ "addLocalAuth": "Ajouter l'authentification par courriel et mot de passe",
"generateCodes": "Générer Codes",
"generate": "Générer",
"getCodes": "Obtenir les Codes",
"webhooks": "Webhooks",
- "webhooksInfo": "Habitica propose des webhooks afin que lorsque certaines actions se produisent sur votre compte, celles-ci puissent être transmises à un script sur un autre site web. Vous pouvez définir ces scripts ici. Soyez prudent avec cette fonctionnalité, une URL incorrecte pouvant entraîner des erreurs ou des ralentissements sur Habitica. Pour plus d'informations, consultez la page Webhooks de notre wiki.",
+ "webhooksInfo": "Habitica propose des webhooks afin que, lorsque certaines actions se produisent sur votre compte, celles-ci puissent être transmises à un script sur un autre site web. Vous pouvez définir ces scripts ici. Soyez prudent avec cette fonctionnalité, une URL incorrecte pouvant entraîner des erreurs ou des ralentissements sur Habitica. Pour plus d'informations, consultez la page Webhooks de notre wiki.",
"enabled": "Activé",
"webhookURL": "URL du webhook",
"invalidUrl": "URL invalide",
@@ -188,23 +188,23 @@
"amazonPaymentsRecurring": "Cocher la case ci-dessous est nécessaire pour créer votre abonnement. Cela permet à votre compte Amazon d'être utilisé pour les paiements en cours de cet abonnement. Cela n'utilisera pas automatiquement votre compte Amazon pour de futurs achats.",
"timezone": "Fuseau horaire",
"timezoneUTC": "Habitica utilise le fuseau horaire réglé sur votre PC, qui est le suivant : <%= utc %>",
- "timezoneInfo": "Si ce n'est pas le bon fuseau horaire, commencez par actualiser la page en utilisant le bouton Actualiser de votre navigateur pour vous assurer qu'Habitica est à jour. Si ce n'est toujours pas le bon, réglez le fuseau horaire sur votre PC et actualisez cette page à nouveau.
Si vous utilisez Habitica sur d'autres PC ou appareils mobiles, le fuseau horaire doit être le même sur tous. Si vos Quotidiennes continuent d'être réinitialisées à la mauvaise heure, répétez cette vérification sur tous les PCs que vous utilisez et sur le navigateur de vos appareils mobiles.",
+ "timezoneInfo": "Si ce n'est pas le bon fuseau horaire, commencez par actualiser la page en utilisant le bouton Actualiser de votre navigateur, pour vous assurer qu'Habitica est à jour. Si ce n'est toujours pas le bon, réglez le fuseau horaire sur votre PC et actualisez cette page à nouveau.
Si vous utilisez Habitica sur d'autres PC ou appareils mobiles, le fuseau horaire doit être le même sur tous. Si vos quotidiennes continuent d'être réinitialisées à la mauvaise heure, répétez cette vérification sur tous les PCs que vous utilisez et sur le navigateur de vos appareils mobiles.",
"push": "Notification push",
"about": "À propos",
"setUsernameNotificationTitle": "Confirmez votre nom d'utilisateur !",
- "setUsernameNotificationBody": "Nous allons effectuer une transition des noms de connexion à des noms d'utilisateur publics très bientôt. Ce nom d'utilisateur sera utilisé pour les invitations, les @mentions dans les discussion, et les messages.",
- "usernameIssueSlur": "Les noms d'utilisateurs ne doivent pas contenir de mots grossiers.",
- "usernameIssueForbidden": "Les noms d'utilisateurs ne doivent pas contenir de mots interdits.",
- "usernameIssueLength": "Les noms d'utilisateurs doivent contenir entre 1 et 20 caractères.",
- "usernameIssueInvalidCharacters": "Les noms d'utilisateurs ne peuvent contenir que des lettres de a à z, des chiffres de 0 à 9, des tirets et des tirets bas.",
- "currentUsername": "Nom d'utilisateur actuel :",
- "displaynameIssueLength": "Les noms affichés doivent contenir entre 1 et 30 caractères.",
- "displaynameIssueSlur": "Les noms affichés ne doivent pas contenir de langage inapproprié.",
+ "setUsernameNotificationBody": "Nous allons effectuer une transition des noms de connexion à des identifiants publics très bientôt. Cet identifiant sera utilisé pour les invitations, les @mentions dans les discussion, et les messages.",
+ "usernameIssueSlur": "Les identifiants ne doivent pas contenir de mots grossiers.",
+ "usernameIssueForbidden": "Les identifiants ne doivent pas contenir de mots interdits.",
+ "usernameIssueLength": "Les identifiants doivent contenir entre 1 et 20 caractères.",
+ "usernameIssueInvalidCharacters": "Les identifiants ne peuvent contenir que des lettres de a à z, des chiffres de 0 à 9, des tirets et des tirets bas.",
+ "currentUsername": "identifiants actuel :",
+ "displaynameIssueLength": "Les pseudos doivent contenir entre 1 et 30 caractères.",
+ "displaynameIssueSlur": "Les pseudos ne doivent pas contenir de langage inapproprié.",
"goToSettings": "Voir les paramètres",
- "usernameVerifiedConfirmation": "Votre nom d'utilisateur, <%= username %>, est confirmé !",
- "usernameNotVerified": "Veuillez confirmer votre nom d'utilisateur.",
- "changeUsernameDisclaimer": "Ce nom d'utilisateur sera utilisé pour les invitations, les @mentions dans les discussion, et les messages.",
- "verifyUsernameVeteranPet": "Un de ces Familiers Vétéran t'attendra quand tu auras validé !",
+ "usernameVerifiedConfirmation": "Votre identifiant, <%= username %>, est confirmé !",
+ "usernameNotVerified": "Veuillez confirmer votre identifiant.",
+ "changeUsernameDisclaimer": "Cet identifiant sera utilisé pour les invitations, les @mentions dans les discussion, et les messages.",
+ "verifyUsernameVeteranPet": "Un de ces familiers vétérans t'attendra quand tu auras validé !",
"subscriptionReminders": "Rappels d'abonnements",
"newPMNotificationTitle": "Nouveau message de <%= name %>",
"onlyPrivateSpaces": "Seulement sur les espaces privés",
diff --git a/website/common/locales/fr/subscriber.json b/website/common/locales/fr/subscriber.json
index 7aa5024452..f5a331d192 100644
--- a/website/common/locales/fr/subscriber.json
+++ b/website/common/locales/fr/subscriber.json
@@ -228,5 +228,6 @@
"mysterySet201909": "Ensemble du gland affable",
"mysterySet201910": "Ensemble de la flamme cryptique",
"mysterySet201911": "Ensemble de charmeur de cristal",
- "mysterySet201912": "Ensemble de lutine polaire"
+ "mysterySet201912": "Ensemble de lutine polaire",
+ "mysterySet202001": "Ensemble de renard légendaire"
}
diff --git a/website/common/locales/he/achievements.json b/website/common/locales/he/achievements.json
index 243395cb28..84d4a12516 100644
--- a/website/common/locales/he/achievements.json
+++ b/website/common/locales/he/achievements.json
@@ -1,9 +1,11 @@
{
- "achievement": "הישג",
- "share": "שתף",
- "onwards": "הלאה!",
- "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!"
+ "achievement": "הישג",
+ "share": "שתף",
+ "onwards": "הלאה!",
+ "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!",
+ "viewAchievements": "הצג הישגים",
+ "letsGetStarted": "בואו נתחיל!"
}
diff --git a/website/common/locales/ja/achievements.json b/website/common/locales/ja/achievements.json
index b149f80060..c43caeee0a 100644
--- a/website/common/locales/ja/achievements.json
+++ b/website/common/locales/ja/achievements.json
@@ -34,5 +34,34 @@
"achievementKickstarter2019Text": "2019年のPin Kickstarterプロジェクトで支援しました",
"achievementUndeadUndertaker": "不死の葬儀屋",
"achievementUndeadUndertakerModalText": "ゾンビの乗騎をすべて手なずけました!",
- "achievementUndeadUndertakerText": "ゾンビの乗騎をすべて手なずけました。"
+ "achievementUndeadUndertakerText": "ゾンビの乗騎をすべて手なずけました。",
+ "onboardingCompleteDesc": "リストを完了したため5つの実績と100ゴールドを獲得しました。",
+ "viewAchievements": "実績を見る",
+ "letsGetStarted": "はじめましょう!",
+ "onboardingProgress": "<%= percentage %>% 進捗",
+ "gettingStartedDesc": "タスクを作成して、完了して、ごほうびをチェックしましょう。 一度やると5つの実績と100ゴールドを獲得できます!",
+ "earnedAchievement": "実績を獲得しました!",
+ "achievementPrimedForPainting": "下塗り完了",
+ "achievementPearlyPro": "真珠色の玄人",
+ "achievementPearlyProModalText": "白い乗騎をすべて手なずけました!",
+ "achievementPearlyProText": "白い乗騎をすべて手なずけました。",
+ "achievementPrimedForPaintingModalText": "白いペットをすべて集めました!",
+ "achievementPrimedForPaintingText": "白いペットをすべて集めました。",
+ "achievementPurchasedEquipmentModalText": "装備はアバターをカスタマイズして、能力値を上げる手段です",
+ "achievementPurchasedEquipmentText": "最初の装備の1つを買いました。",
+ "achievementPurchasedEquipment": "装備を買う",
+ "achievementFedPetModalText": "たくさんの異なるえさがあり、ペットには好き嫌いがあります",
+ "achievementFedPetText": "最初のペットにえさをやりました。",
+ "achievementFedPet": "ペットにえさをやる",
+ "achievementHatchedPetModalText": "所持品のページへ行って、たまごがえしの薬とたまごを組み合わせることに挑戦しました",
+ "achievementHatchedPetText": "最初のペットをかえしました。",
+ "achievementHatchedPet": "ペットをかえす",
+ "achievementCompletedTaskModalText": "ごほうびをもらうためにいずれかのタスクをチェックしました",
+ "achievementCompletedTaskText": "最初のタスクを完了しました。",
+ "achievementCompletedTask": "タスクを完了する",
+ "achievementCreatedTaskModalText": "今週に達成したいことをタスクとして追加しました",
+ "achievementCreatedTaskText": "最初のタスクを作成しました。",
+ "achievementCreatedTask": "タスクを作成する",
+ "hideAchievements": "<%= category %>をたたむ",
+ "showAllAchievements": "すべての<%= category %>を表示する"
}
diff --git a/website/common/locales/ja/backgrounds.json b/website/common/locales/ja/backgrounds.json
index 8ef13ef2d5..d2f2ca7f4a 100644
--- a/website/common/locales/ja/backgrounds.json
+++ b/website/common/locales/ja/backgrounds.json
@@ -471,5 +471,19 @@
"backgroundAutumnFlowerGardenNotes": "秋の花園の暖かな空気を吸い込みましょう。",
"backgroundAutumnFlowerGardenText": "秋の花園",
"backgrounds092019": "セット64:2019年9月リリース",
- "backgroundMonsterMakersWorkshopNotes": "モンスターメーカーの工房で、疑惑の技術を実験しましょう。"
+ "backgroundMonsterMakersWorkshopNotes": "モンスターメーカーの工房で、疑惑の技術を実験しましょう。",
+ "backgroundHolidayMarketNotes": "祭日の市場で、すばらしい贈り物と飾りを探しましょう。",
+ "backgroundHolidayMarketText": "祭日の市場",
+ "backgroundFlyingInAThunderstormNotes": "思い切ってできる限り近くまで荒々しい雷雨を追いかけましょう。",
+ "backgroundFlyingInAThunderstormText": "荒々しい雷雨",
+ "backgroundFarmersMarketNotes": "農産物直売所でとびきり新鮮な食べ物を買いましょう。",
+ "backgroundFarmersMarketText": "農産物直売所",
+ "backgrounds112019": "セット66:2019年11月リリース",
+ "backgroundHolidayWreathText": "祭日のリース",
+ "backgroundWinterNocturneText": "冬の夜想曲",
+ "backgroundWinterNocturneNotes": "冬の夜想曲の星明かりを浴びましょう。",
+ "backgroundHolidayWreathNotes": "かぐわしい祭日のリースであなたのアバターを飾りましょう。",
+ "backgrounds122019": "セット67:2019年12月リリース",
+ "backgroundPotionShopNotes": "薬屋であらゆる病気の万能薬を探しましょう。",
+ "backgroundPotionShopText": "薬屋"
}
diff --git a/website/common/locales/ja/content.json b/website/common/locales/ja/content.json
index 06a4fff6d3..876170a8b5 100644
--- a/website/common/locales/ja/content.json
+++ b/website/common/locales/ja/content.json
@@ -352,5 +352,6 @@
"questEggRobotAdjective": "未来的な",
"questEggRobotMountText": "ロボット",
"questEggRobotText": "ロボット",
- "hatchingPotionAmber": "琥珀の"
+ "hatchingPotionAmber": "琥珀の",
+ "hatchingPotionAurora": "オーロラの"
}
diff --git a/website/common/locales/ja/front.json b/website/common/locales/ja/front.json
index 84cd5e6b4f..e9f6c75a37 100644
--- a/website/common/locales/ja/front.json
+++ b/website/common/locales/ja/front.json
@@ -331,5 +331,6 @@
"getStarted": "はじめましょう!",
"mobileApps": "モバイルアプリ",
"learnMore": "もっと詳しく知る",
- "communityInstagram": "Instagram"
+ "communityInstagram": "Instagram",
+ "minPasswordLength": "パスワードは8文字以上にする必要があります。"
}
diff --git a/website/common/locales/ja/generic.json b/website/common/locales/ja/generic.json
index 19f03db5a4..fef2ce18e8 100644
--- a/website/common/locales/ja/generic.json
+++ b/website/common/locales/ja/generic.json
@@ -294,5 +294,7 @@
"options": "オプション",
"demo": "デモ",
"loadEarlierMessages": "以前のメッセージを読み込む",
- "finish": "終了"
+ "finish": "終了",
+ "congratulations": "おめでとうございます!",
+ "onboardingAchievs": "初心者入門の実績"
}
diff --git a/website/common/locales/ja/npc.json b/website/common/locales/ja/npc.json
index d1acd5b1d8..0389a589ff 100644
--- a/website/common/locales/ja/npc.json
+++ b/website/common/locales/ja/npc.json
@@ -169,5 +169,6 @@
"imReady": "Habitica をはじめる",
"limitedOffer": "<%= date %>まで購入可能",
"paymentAutoRenew": "この寄付会員はキャンセルするまで自動更新されます。もしこの寄付会員をキャンセルする必要があるときは、設定からキャンセルできます。",
- "paymentCanceledDisputes": "キャンセルの承認のメールをあなたに送りました。もしそのメールが見つからない場合は、今後の請求についての論争を防ぐために、私たちにご連絡をお願いいたします。"
+ "paymentCanceledDisputes": "キャンセルの承認のメールをあなたに送りました。もしそのメールが見つからない場合は、今後の請求についての論争を防ぐために、私たちにご連絡をお願いいたします。",
+ "cannotUnpinItem": "このアイテムはピン留めを外せません。"
}
diff --git a/website/common/locales/ko/achievements.json b/website/common/locales/ko/achievements.json
index 4c2a87f06a..7423a13710 100755
--- a/website/common/locales/ko/achievements.json
+++ b/website/common/locales/ko/achievements.json
@@ -1,7 +1,7 @@
{
"achievement": "업적",
"share": "공유하기",
- "onwards": "앞으로!",
+ "onwards": "야호!",
"levelup": "당신의 실제 삶의 목표들을 달성함으로써 레벨 업 했고 이제 완전히 회복되었어요!",
"reachedLevel": "레벨<%= level %>에 도달했습니다.",
"achievementLostMasterclasser": "퀘스트 완료자: 마스터클래서 시리즈",
@@ -26,5 +26,11 @@
"achievementUndeadUndertaker": "좀비 장의사",
"achievementKickstarter2019": "Pin Kickstarter 후원자",
"achievementAridAuthority": "권세",
- "achievementMindOverMatter": "의지의 문제"
+ "achievementMindOverMatter": "의지의 문제",
+ "gettingStartedDesc": "할 일을 등록하고, 실행한 후, 보상을 가져가세요",
+ "achievementMindOverMatterModalText": "돌멩이, 슬라임, 털실 펫 퀘스트를 완료했습니다!",
+ "hideAchievements": "<%= category %> 숨기기",
+ "earnedAchievement": "업적을 획득했습니다!",
+ "viewAchievements": "업적 보기",
+ "letsGetStarted": "시작합시다!"
}
diff --git a/website/common/locales/ko/communityguidelines.json b/website/common/locales/ko/communityguidelines.json
index 45b4af7b54..ea52279ebb 100755
--- a/website/common/locales/ko/communityguidelines.json
+++ b/website/common/locales/ko/communityguidelines.json
@@ -1,10 +1,10 @@
{
"iAcceptCommunityGuidelines": "커뮤니티 가이드라인에 따를 것을 동의합니다",
"tavernCommunityGuidelinesPlaceholder": "잠시 알려드립니다: 이곳은 전연령 채팅창이니, 사용하시는 언어와 내용을 주의해주세요! 궁금하신 점이 있다면 사이드바의 커뮤니티 가이드라인을 참고해주세요.",
- "lastUpdated": "Last updated:",
+ "lastUpdated": "최종 업데이트:",
"commGuideHeadingWelcome": "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.",
- "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에 오신 것을 환영합니다. 이 곳엔 스스로의 발전을 위해 각자의 방법으로 도움을 주고자 하는 지원자로 가득한 활발한 커뮤니티가 있습니다. 이 곳에서 함께하기 위해, 모든 사람들은 긍정적인 태도와 서로를 존중하는 예의를 지니며, 모두가 다른 능력과 규칙을 갖고 있다는 사실을 알고 있어야 합니다- 물론 당신도요! Habitican은 항상 상대방에게 인내하고 할 수 있는 일이라면 언제든지 도우려 노력합니다.",
+ "commGuidePara002": "모두가 안전하고 행복하게 하며, 커뮤니티 활동이 활발히 이뤄지도록, 저희는 몇 가지 가이드라인을 가지고 있습니다. 친숙하고 가능한 읽기 쉽게 하는 데 주의를 기울여 만들었으니, 시간이 걸리더라도 채팅을 시작하기 전에 꼭 읽어주세요.",
"commGuidePara003": "이곳의 규칙은 Trello, GitHub, Transifex와 Wikia(위키)를 포함한 (그러나 여기에만 한정되지 않은) 모든 커뮤니티 소통 공간에 적용됩니다. 때때로 가이드라인에 언급이 되지 않은 종류의 충돌이 벌어지거나 사악한 네크로맨서가 나타나는 등 예측하지 못한 상황이 벌어지기도 합니다. 그럴 때면 커뮤니티를 새로운 위협에서 안전하게 보호하기 위해 관리자들이 가이드라인을 변경해야 할 수도 있습니다. 하지만 안심하세요: 가이드라인이 변경된다면 베일리가 여러분에게 소식을 알려드릴 것입니다.",
"commGuidePara004": "그럼 필기할 깃펜과 두루마리를 준비하시고 바로 시작해봅시다!",
"commGuideHeadingInteractions": "Interactions in Habitica",
@@ -125,4 +125,4 @@
"commGuideLink06": "The Art Trello: for submitting pixel art.",
"commGuideLink07": "The Quest Trello: for submitting quest writing.",
"commGuidePara069": "본문의 일러스트는 아래의 재능있는 아티스트들의 도움을 받았습니다:"
-}
\ No newline at end of file
+}
diff --git a/website/common/locales/ko/content.json b/website/common/locales/ko/content.json
index c50d9b025e..b07136c76f 100755
--- a/website/common/locales/ko/content.json
+++ b/website/common/locales/ko/content.json
@@ -3,7 +3,7 @@
"potionNotes": "체력 15 회복 (일회용)",
"armoireText": "마법의 장롱",
"armoireNotesFull": "랜덤으로 특별한 장비, 경험치 혹은 펫 먹이를 받으려면 장롱문을 열어주세요! 아직 못찾은 특별장비:",
- "armoireLastItem": "마법의 장롱에서 마지막 남은 희귀 장비를 찾으셨습니다!",
+ "armoireLastItem": "마법의 장롱에서 마지막 남은 레어 장비를 찾았습니다!",
"armoireNotesEmpty": "매달 첫주마다 새로운 장비가 구비될 것입니다. 그 때까지는 경험치와 먹이를 받으러 클릭하세요!",
"dropEggWolfText": "늑대",
"dropEggWolfMountText": "늑대",
@@ -306,5 +306,7 @@
"foodSaddleText": "안장",
"foodSaddleNotes": "즉시 펫 한마리를 탑승펫으로 성장시킵니다.",
"foodSaddleSellWarningNote": "Hey! This is a pretty useful item! Are you familiar with how to use a Saddle with your Pets?",
- "foodNotes": "이것을 펫에게 먹이면 튼튼한 탑승펫으로 성장시킬 수 있습니다."
-}
\ No newline at end of file
+ "foodNotes": "이것을 펫에게 먹이면 튼튼한 탑승펫으로 성장시킬 수 있습니다.",
+ "questEggRobotText": "로봇",
+ "questEggDolphinText": "돌고래"
+}
diff --git a/website/common/locales/ko/front.json b/website/common/locales/ko/front.json
index d2c64a5684..c99681f550 100644
--- a/website/common/locales/ko/front.json
+++ b/website/common/locales/ko/front.json
@@ -1,5 +1,33 @@
{
- "termsAndAgreement": "아래에 있는 버튼을 클릭함으로써, 당신은 당신이 서비스 약관 과 개인정보 정책 을 읽었고 이에 동의했음을 나타냅니다.",
+ "termsAndAgreement": "아래에 있는 버튼을 클릭함으로써, 당신은 당신이 서비스 약관 과 개인정보 정책 을 읽었고 이에 동의했음을 나타냅니다.",
"FAQ": "FAQ",
- "althaireQuote": "정기적으로 퀘스트를 하는건 내가 나의 모든 일일과제를 하도록 동기를 부여해주고 해야 할 일에도 동기를 부여해줘요. 저의 가장 큰 동기부여는 제 파티를 내려놓지 않는 것입니다."
+ "althaireQuote": "정기적으로 퀘스트를 하는건 내가 모든 일일과제와 해야 할 일을 하도록 동기를 부여해줘요. 저의 가장 큰 동기부여는 제 파티의 기대를 저버리지 않도록 하는 것입니다.",
+ "sendLink": "링크 보내기",
+ "forgotPasswordSteps": "Habitica 계정으로 등록할 메일 주소를 입력하세요.",
+ "emailNewPass": "메일로 비밀번호 재설정 링크 보내기",
+ "forgotPassword": "비밀번호를 잊으셨습니까?",
+ "elmiQuote": "매일 아침 저는 일어나면서 골드를 벌 수 있기를 기대해요!",
+ "dreimQuote": "지난 여름 제가 [Habitica]를 발견했을 즈음이, 전체 시험 과목의 반 정도를 불합격했던 때였어요. 일일 과제 덕분에… 저는 스스로 준비하고 단련할 수 있었고, 실제로 몇 달 전 좋은 성적으로 모든 시험을 통과했어요.",
+ "dragonsilverQuote": "얼마나 긴 시간이라 말하긴 어렵지만 저는 수십 년 동안 과제를 정리하는 여러 방법을 시도해 왔어요… [Habitica]는 실제로 제가 과제를 단순히 리스트로 만들었을 때보다 정확히 완료하도록 도운 유일한 방법입니다.",
+ "companyVideos": "동영상",
+ "companyPrivacy": "사생활",
+ "companyDonate": "기부하기",
+ "companyContribute": "기여하기",
+ "companyBlog": "블로그",
+ "companyAbout": "작동하는 원리",
+ "choreSample1": " 빨래바구니에 빨랫감 넣기",
+ "communityInstagram": "인스타그램",
+ "communityFacebook": "페이스북",
+ "chores": "집안일",
+ "choreSample5": "빨랫감 세탁하고 널기",
+ "choreSample4": "방 정리정돈하기",
+ "businessText": "업무 관리에 Habitica를 활용하세요",
+ "businessSample5": "고객과 전화하기/끊기",
+ "businessSample3": "편지함 정렬 및 처리하기",
+ "businessSample1": "인벤토리 1쪽 보기",
+ "alexandraQuote": "제가 마드리드에서 연설하는 동안 절대 [Habitica]에 대해 말하면 안 돼요. 아직 보스가 필요한 프리랜서들을 위해 도구를 지니세요.",
+ "footerCompany": "회사",
+ "featurePetHeading": "펫과 탑승펫",
+ "featurePetByline": "알과 아이템은 과제를 완료했을 때 얻을 수 있습니다. 생산적인 일을 많이 할수록 펫과 탑승펫을 많이 모을 수 있습니다!",
+ "featureEquipHeading": "장비와 여분"
}
diff --git a/website/common/locales/la/achievements.json b/website/common/locales/la/achievements.json
index 20bf974c25..b76cf63772 100755
--- a/website/common/locales/la/achievements.json
+++ b/website/common/locales/la/achievements.json
@@ -40,5 +40,18 @@
"achievementPartyUp": "Te ad socium contubernii adiunxisti!",
"achievementDustDevilModalText": "Omnia animalia coloris deserti collegisti!",
"achievementDustDevilText": "Omnia animalia coloris deserti collegit.",
- "achievementLostMasterclasserModalText": "Sedecim investigationes ad Investigationum Masterclasser Thesaurum pertinentes perfecisti et arcanum Magistrae Ordinum Oblitae solvisti!"
+ "achievementLostMasterclasserModalText": "Sedecim investigationes ad Investigationum Masterclasser Thesaurum pertinentes perfecisti et arcanum Magistrae Ordinum Oblitae solvisti!",
+ "gettingStartedDesc": "Munus crea, quod perficias; tum praemia observa. Merebis 5 res perfectas et 100 nummi auri cum primum finivisti.",
+ "showAllAchievements": "Praebe omnia <%=category %>",
+ "onboardingCompleteDesc": "Album perficiens 5 res perfectas et 100 nummos auri meruisti.",
+ "earnedAchievement": "Rem perfectam meruisti!",
+ "viewAchievements": "Res perfectas inspice",
+ "letsGetStarted": "Proficiamus!",
+ "onboardingProgress": "<%=percentage %>% progressionis",
+ "achievementCompletedTaskText": "Primum munus perfecit.",
+ "achievementCompletedTask": "Munus perfice",
+ "achievementCreatedTaskModalText": "Munus unius rei adde, quam hac hebdomade perficere vis.",
+ "achievementCreatedTaskText": "Munus primum creavit.",
+ "achievementCreatedTask": "Munus crea",
+ "hideAchievements": "Cela genus <%= category %>"
}
diff --git a/website/common/locales/la/backgrounds.json b/website/common/locales/la/backgrounds.json
index e85a9ce7b2..5587be8d28 100755
--- a/website/common/locales/la/backgrounds.json
+++ b/website/common/locales/la/backgrounds.json
@@ -368,47 +368,47 @@
"backgroundTidePoolText": "Lacus Marinus",
"backgroundTidePoolNotes": "Aspicere viva marina prope Lacum Marinum.",
"backgrounds082018": "THESAVRVS 51: Augusto 2018 editus",
- "backgroundTrainingGroundsText": "Training Grounds",
- "backgroundTrainingGroundsNotes": "Spar on the Training Grounds.",
- "backgroundFlyingOverRockyCanyonText": "Faux Saxeua",
- "backgroundFlyingOverRockyCanyonNotes": "Look down into a breathtaking scene as you fly over a Rocky Canyon.",
+ "backgroundTrainingGroundsText": "Terrae Exercitii",
+ "backgroundTrainingGroundsNotes": "Exerce in Terras Exercitii.",
+ "backgroundFlyingOverRockyCanyonText": "Faux Saxea",
+ "backgroundFlyingOverRockyCanyonNotes": "Spece deorsum in scaenam stupentis dum volas super Faucem Saxeam.",
"backgroundBridgeText": "Pons",
- "backgroundBridgeNotes": "Cross a charming Bridge.",
+ "backgroundBridgeNotes": "Transi venustum Pontem.",
"backgrounds092018": "THESAVRVS 52: Septembre 2018 editus",
- "backgroundApplePickingText": "Apple Picking",
- "backgroundApplePickingNotes": "Go Apple Picking and bring home a bushel.",
+ "backgroundApplePickingText": "Mala Electuri",
+ "backgroundApplePickingNotes": "Elegi Mala ut feras domi modium.",
"backgroundGiantBookText": "Liber Magnus",
- "backgroundGiantBookNotes": "Read as you walk through the pages of a Giant Book.",
- "backgroundCozyBarnText": "Cozy Barn",
- "backgroundCozyBarnNotes": "Relax with your pets and mounts in their Cozy Barn.",
+ "backgroundGiantBookNotes": "Lege dum perambulas paginas Libri Magni.",
+ "backgroundCozyBarnText": "Horreum Commodum",
+ "backgroundCozyBarnNotes": "Quiesce cum animalibusque iumentis tuis in Horreo Commodo eorum.",
"backgrounds102018": "THESAVRVS 53: Octobre 2018 editus",
"backgroundBayouText": "Palus",
- "backgroundBayouNotes": "Bask in the fireflies' glow on the misty Bayou.",
+ "backgroundBayouNotes": "Apricare in radiantem lampyridae apud Paludem Nebulosam.",
"backgroundCreepyCastleText": "Castellum Ominosus",
"backgroundCreepyCastleNotes": "Castellum ominosus accedere aude.",
"backgroundDungeonText": "Carcer",
- "backgroundDungeonNotes": "Rescue the prisoners of a spooky Dungeon.",
+ "backgroundDungeonNotes": "Libera captivos ex Carcere formadibili.",
"backgrounds112018": "THESAVRVS 54: Novembre 2018 editus",
- "backgroundBackAlleyText": "Back Alley",
- "backgroundBackAlleyNotes": "Look shady loitering in a Back Alley.",
- "backgroundGlowingMushroomCaveText": "Glowing Mushroom Cave",
- "backgroundGlowingMushroomCaveNotes": "Stare in awe at a Glowing Mushroom Cave.",
- "backgroundCozyBedroomText": "Cozy Bedroom",
- "backgroundCozyBedroomNotes": "Curl up in a Cozy Bedroom.",
+ "backgroundBackAlleyText": "Angiportus Retro",
+ "backgroundBackAlleyNotes": "Videre suspiciosus dum cunctans in Angiportum Retro.",
+ "backgroundGlowingMushroomCaveText": "Caverna Fungi Radiantis",
+ "backgroundGlowingMushroomCaveNotes": "Aspice Cavernam Fungi Radiantis in miratione.",
+ "backgroundCozyBedroomText": "Cubiculum Commodum",
+ "backgroundCozyBedroomNotes": "Recuba in Cubiculum Commodum.",
"backgrounds122018": "THESAVRVS 55: Decembre 2018 editus",
"backgroundFlyingOverSnowyMountainsText": "Montes Nivales",
"backgroundFlyingOverSnowyMountainsNotes": "Super montes nivales sublima nocte.",
- "backgroundFrostyForestText": "Frosty Forest",
- "backgroundFrostyForestNotes": "Bundle up to hike through a Frosty Forest.",
- "backgroundSnowyDayFireplaceText": "Snowy Day Fireplace",
- "backgroundSnowyDayFireplaceNotes": "Snuggle up next to a Fireplace on a Snowy Day.",
+ "backgroundFrostyForestText": "Silva Gelida",
+ "backgroundFrostyForestNotes": "Vestis se ut ambules per Silvam Gelidam.",
+ "backgroundSnowyDayFireplaceText": "Focus pro Die Nivea",
+ "backgroundSnowyDayFireplaceNotes": "Amplectere apud Focum ad Diem Niveam.",
"backgrounds012019": "THESAVRVS 56: Ianuario 2019 editus",
- "backgroundAvalancheText": "Avalanche",
- "backgroundAvalancheNotes": "Flee the thundering might of an Avalanche.",
- "backgroundArchaeologicalDigText": "Archaeological Dig",
- "backgroundArchaeologicalDigNotes": "Unearth secrets of the ancient past at an Archaeological Dig.",
- "backgroundScribesWorkshopText": "Scribe's Workshop",
- "backgroundScribesWorkshopNotes": "Write your next great scroll in a Scribe's Workshop.",
+ "backgroundAvalancheText": "Labina nivis",
+ "backgroundAvalancheNotes": "Fuge vim tonantem labinae nivis.",
+ "backgroundArchaeologicalDigText": "Excavatio Archaeologica",
+ "backgroundArchaeologicalDigNotes": "Excava arcana praeteriti antiqui apud Excavationem Archaeologicam.",
+ "backgroundScribesWorkshopText": "Officina Scribae",
+ "backgroundScribesWorkshopNotes": "Scribe volumenem magnum tuum in Officina Scribae.",
"backgroundDojoText": "Gymnasium Japonicum",
"backgrounds052019": "THESAVRVS 60: Maio 2019 editus",
"backgroundHalflingsHouseNotes": "Sis hospes in blanda domo mediani.",
diff --git a/website/common/locales/la/challenge.json b/website/common/locales/la/challenge.json
index 761642c25a..f164118cb2 100755
--- a/website/common/locales/la/challenge.json
+++ b/website/common/locales/la/challenge.json
@@ -1,6 +1,6 @@
{
"challenge": "Provocatio",
- "challengeDetails": "Challenges are community events in which players compete and earn prizes by completing a group of related tasks.",
+ "challengeDetails": "Provocationes sunt eventus communitati in quibus ludiones per perficiente collectionem munerum affinium colluctuntur et merent praemiis.",
"brokenChaLink": "Ruptus Nexus Provocationis",
"brokenTask": "Ruptus Nexus Provocationis: hoc munus erat pars provocationis, sed de eo sublatum est. Quid vis facere?",
"keepIt": "Tenere",
@@ -78,7 +78,7 @@
"noChallengeOwnerPopover": "Provocatio domini non est quoniam creator provocationis illum conventum delevit.",
"challengeMemberNotFound": "Utens intra gregis sodales provocationis non nactus est",
"onlyGroupLeaderChal": "Solum dux gregis potest creare provocationes",
- "tavChalsMinPrize": "Prize must be at least 1 Gem for Public Challenges.",
+ "tavChalsMinPrize": "Necesse est praemium esse dumtaxat 1 Gemma Provocationi Publicae.",
"cantAfford": "Hoc praemium supplere non potes. Necesse est tibi aut gemmas plures emere aut quantitatem praemii decrescere.",
"challengeIdRequired": "Debere \"challengeId\" UUID licitum esse.",
"winnerIdRequired": "Debere \"winnerId\" UUID licitum esse.",
@@ -97,16 +97,16 @@
"myChallenges": "Meae Provocationes",
"findChallenges": "Inveni Provocationes",
"noChallengeTitle": "Ullas provocationes non habes.",
- "challengeDescription1": "Challenges are community events in which players compete and earn prizes by completing a group of related tasks.",
+ "challengeDescription1": "Provocationes sunt eventus communitati in quibus ludiones perficiente collectionem munerum colluctuntur et merent praemiis.",
"challengeDescription2": "Find recommended Challenges based on your interests, browse Habitica's public Challenges, or create your own Challenges.",
- "noChallengeMatchFilters": "We couldn't find any matching Challenges.",
+ "noChallengeMatchFilters": "Non possunt invenire ullas Provocationes compares.",
"createdBy": "Facta Ab",
"joinChallenge": "Provocationem Adi",
"leaveChallenge": "Abi de provocatione",
"addTask": "Adde Munus",
- "editChallenge": "Edit Challenge",
+ "editChallenge": "Recense Provocationem",
"challengeDescription": "Descriptio Provocationis",
- "selectChallengeWinnersDescription": "Select a winner from the Challenge participants",
+ "selectChallengeWinnersDescription": "Elige victorem de participantibus Provocationis",
"awardWinners": "Victori/Victrici Addice",
"doYouWantedToDeleteChallenge": "Visne hanc Provocationem delere?",
"deleteChallenge": "Dele Provocationem",
@@ -114,16 +114,16 @@
"challengeSummary": "Summarium",
"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",
+ "challengeGuild": "Adde ad",
"challengeMinimum": "Minimum 1 Gem for public Challenges (helps prevent spam, it really does).",
- "participantsTitle": "Participants",
+ "participantsTitle": "Participantes",
"shortName": "Cognomen",
"shortNamePlaceholder": "What short tag should be used to identify your Challenge?",
"updateChallenge": "Update Challenge",
"haveNoChallenges": "This group has no Challenges",
"loadMore": "Plura Lege",
"exportChallengeCsv": "Export Challenge",
- "editingChallenge": "Editing Challenge",
+ "editingChallenge": "Recensens Provocationem",
"nameRequired": "Nomen requiritur",
"tagTooShort": "Nomen appendiculae subter longitudinem requisitam est",
"summaryRequired": "Summarium requiritur",
@@ -133,7 +133,7 @@
"categoiresRequired": "One or more categories must be selected",
"viewProgressOf": "View Progress Of",
"viewProgress": "View Progress",
- "selectMember": "Select Member",
+ "selectMember": "Elige Sodalem",
"confirmKeepChallengeTasks": "Do you want to keep challenge tasks?",
"selectParticipant": "Select a Participant"
}
diff --git a/website/common/locales/la/character.json b/website/common/locales/la/character.json
index e8ddc919eb..9b84200d55 100755
--- a/website/common/locales/la/character.json
+++ b/website/common/locales/la/character.json
@@ -7,9 +7,9 @@
"noPhoto": "Hoc/haec Habitican picturam non addebat.",
"other": "Cetera",
"fullName": "Nomen totum",
- "displayName": "Nomen ostentationi",
- "changeDisplayName": "Change Display Name",
- "newDisplayName": "New Display Name",
+ "displayName": "Nomen ostentatum",
+ "changeDisplayName": "Muta Nomen Ostentatum",
+ "newDisplayName": "Nomen Ostentatum Novum",
"displayPhoto": "Pictura",
"displayBlurb": "Proverbium",
"displayBlurbPlaceholder": "Amabo, adduce te",
@@ -79,8 +79,8 @@
"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.",
"autoEquipPopoverText": "Select this option to automatically equip gear as soon as you purchase it.",
"costumeDisabled": "You have disabled your costume.",
- "gearAchievement": "\"Armamenta Ultima\" rem perfectam meruisti propter tuum progrediendum ad maximam collationem armamentorum pro professione. Has collationes completas obtinuisti:",
- "gearAchievementNotification": "You have earned the \"Ultimate Gear\" Achievement for upgrading to the maximum gear set for a class!",
+ "gearAchievement": "\"Armamenta Ultima\" Rem Perfectam meruisti propter tuum progrediendum ad maximam collationem armamentorum pro professione. Has collationes completas obtinuisti:",
+ "gearAchievementNotification": "\"Armamenta Ultima\" Rem Perfectam meruisti propter tuum progrediendum ad maximam collationem armamentorum pro professione.",
"moreGearAchievements": "To attain more Ultimate Gear badges, change classes on the Settings > Site page and buy your new class's gear!",
"armoireUnlocked": "For more equipment, check out the Enchanted Armoire! Click on the Enchanted Armoire Reward for a random chance at special Equipment! It may also give you random XP or food items.",
"ultimGearName": "Armamentum Ultimum - <%= ultClass %>",
@@ -96,14 +96,14 @@
"mp": "MP",
"xp": "XP",
"health": "Valitudo",
- "allocateStr": "Puncta Viribus distributa:",
- "allocateStrPop": "Add a Point to Strength",
+ "allocateStr": "Puncta Vi distributa:",
+ "allocateStrPop": "Adde Punctum Vi",
"allocateCon": "Puncta Robori distributa:",
- "allocateConPop": "Add a Point to Constitution",
+ "allocateConPop": "Adde Punctum Robori",
"allocatePer": "Puncta Perceptioni distributa:",
- "allocatePerPop": "Add a Point to Perception",
+ "allocatePerPop": "Adde Punctum Perceptioni",
"allocateInt": "Puncta Intelligentiae distributa:",
- "allocateIntPop": "Add a Point to Intelligence",
+ "allocateIntPop": "Adde Punctum Intelligentiae",
"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": "Statisticae",
"achievs": "Res Gestae",
@@ -191,7 +191,7 @@
"unequipCostume": "Habitum Inarmare",
"equip": "Arma",
"unequip": "Inarma",
- "unequipPetMountBackground": "Animal Domesticumque Iumentumque Scaena Inarmare",
+ "unequipPetMountBackground": "Animalque Iumentumque Scaena Inarmare",
"animalSkins": "Cutes Animales",
"chooseClassHeading": "Lege tuam Professionem! Aut noli legere ut postea legas.",
"warriorWiki": "Bellator",
diff --git a/website/common/locales/la/content.json b/website/common/locales/la/content.json
index 40b7d0eb8c..0cc5360b0e 100644
--- a/website/common/locales/la/content.json
+++ b/website/common/locales/la/content.json
@@ -90,15 +90,15 @@
"questEggBadgerText": "Meles",
"questEggPterodactylMountText": "Pterodactylus",
"questEggPterodactylText": "Pterodactylus",
- "questEggNudibranchMountText": "Nudipleura",
- "questEggNudibranchText": "Nudipleura",
+ "questEggNudibranchMountText": "Nudibranchia",
+ "questEggNudibranchText": "Nudibranchia",
"questEggButterflyText": "Cattupelosus",
- "questEggGuineaPigMountText": "Cavia",
- "questEggGuineaPigText": "Cavia",
+ "questEggGuineaPigMountText": "Cavia Porcellus",
+ "questEggGuineaPigText": "Cavia Porcellus",
"questEggTriceratopsMountText": "Triceratops",
"questEggTriceratopsText": "Triceratops",
- "questEggSlothMountText": "Folivora",
- "questEggSlothText": "Folivora",
+ "questEggSlothMountText": "Folivora Tardigrada",
+ "questEggSlothText": "Folivora Tardigrada",
"questEggFerretMountText": "Furritus",
"questEggFerretText": "Furritus",
"questEggBeetleAdjective": "invicta",
@@ -109,8 +109,8 @@
"questEggTurtleMountText": "Testudo Maris Gigans",
"questEggTurtleText": "Testudo Maris",
"questEggAxolotlAdjective": "parvus",
- "questEggAxolotlMountText": "Ambystoma",
- "questEggAxolotlText": "Ambystoma",
+ "questEggAxolotlMountText": "Salimandra Mexicana",
+ "questEggAxolotlText": "Salimandra Mexicana",
"questEggTreelingMountText": "Arborcula",
"questEggTreelingText": "Arborcula",
"questEggFalconAdjective": "rapidus",
@@ -352,5 +352,6 @@
"foodPieBase": "Crustum Mali Basis",
"foodPieSkeletonA": "segmentum Crusti Medullae Ossi in Olla",
"foodPieSkeletonThe": "Crustum Medullae Ossi in Olla",
- "foodPieSkeleton": "Crustum Medullae Ossi in Olla"
+ "foodPieSkeleton": "Crustum Medullae Ossi in Olla",
+ "hatchingPotionAurora": "Coloris Aurorae"
}
diff --git a/website/common/locales/la/faq.json b/website/common/locales/la/faq.json
index af24bd97c5..ef5aaa0aaa 100755
--- a/website/common/locales/la/faq.json
+++ b/website/common/locales/la/faq.json
@@ -24,7 +24,7 @@
"iosFaqAnswer5": "The best way is to invite them to a Party with you! Parties can go on quests, battle monsters, and cast skills to support each other. Go to Menu > Party and click \"Create New Party\" if you don't already have a Party. Then tap on the Members list, and tap Invite in the upper right-hand corner to invite your friends by entering their User ID (a string of numbers and letters that they can find under Settings > Account Details on the app, and Settings > API on the website). On the website, you can also invite friends via email, which we will add to the app in a future update.\n\nOn the website, you and your friends can also join Guilds, which are public chat rooms. Guilds will be added to the app in a future update!",
"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).",
- "faqQuestion6": "Quomodo animal domesticum vel iumentum mihi sint?",
+ "faqQuestion6": "Quomodo animal vel iumentum mihi sint?",
"iosFaqAnswer6": "At level 3, you will unlock the Drop System. Every time you complete a task, you'll have a random chance at receiving an egg, a hatching potion, or a piece of food. They will be stored in Menu > Items.\n\n To hatch a Pet, you'll need an egg and a hatching potion. Tap on the egg to determine the species you want to hatch, and select \"Hatch Egg.\" Then choose a hatching potion to determine its color! Go to Menu > Pets to equip your new Pet to your avatar by clicking on it. \n\n You can also grow your Pets into Mounts by feeding them under Menu > Pets. Tap on a Pet, and then select \"Feed Pet\"! You'll have to feed a pet many times before it becomes a Mount, but if you can figure out its favorite food, it will grow more quickly. Use trial and error, or [see the spoilers here](http://habitica.wikia.com/wiki/Food#Food_Preferences). Once you have a Mount, go to Menu > Mounts and tap on it to equip it to your avatar.\n\n You can also get eggs for Quest Pets by completing certain Quests. (See below to learn more about Quests.)",
"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.)",
diff --git a/website/common/locales/la/gear.json b/website/common/locales/la/gear.json
index a3b38c918b..a0f1bb6e06 100755
--- a/website/common/locales/la/gear.json
+++ b/website/common/locales/la/gear.json
@@ -8,7 +8,7 @@
"featuredset": "Thesaurus favorabilis <%= name %>",
"mysterySets": "Thesauri Arcani",
"gearNotOwned": "Hoc tibi non est.",
- "noGearItemsOfType": "Nullae res tibi sunt",
+ "noGearItemsOfType": "Nullae res tibi sunt.",
"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!",
@@ -872,7 +872,7 @@
"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 %>.",
- "headSpecialLunarWarriorHelmText": "Lunar Warrior Helm",
+ "headSpecialLunarWarriorHelmText": "Cassis Lunaris Bellatoris",
"headSpecialLunarWarriorHelmNotes": "The power of the moon will strengthen you in battle! Increases Strength and Intelligence by <%= attrs %> each.",
"headSpecialMammothRiderHelmText": "Cassis Equitis Mammuthi",
"headSpecialMammothRiderHelmNotes": "Don't let its fluffiness fool you--this hat will grant you piercing powers of perception! Increases Perception by <%= per %>.",
@@ -1076,7 +1076,7 @@
"headSpecialWinter2019MageNotes": "Stand well back and watch the sparks fly! Your tasks cannot stand against this might! Increases Perception by <%= per %>. Limited Edition 2018-2019 Winter Gear.",
"headSpecialWinter2019HealerText": "Starry Crown",
"headSpecialWinter2019HealerNotes": "On the darkest, coldest winter night, one particular star shines its brightest. This crown is made from metal from that star, to help you shine! Increases Intelligence by <%= int %>. Limited Edition 2018-2019 Winter Gear.",
- "headSpecialGaymerxText": "Rainbow Warrior Helm",
+ "headSpecialGaymerxText": "Cassis Arcta Bellatoris",
"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": "Alata Cassis",
"headMystery201402Notes": "This winged circlet imbues the wearer with the speed of the wind! Confers no benefit. February 2014 Subscriber Item.",
@@ -1741,5 +1741,8 @@
"eyewearArmoirePlagueDoctorMaskNotes": "An authentic mask worn by the doctors who battle the Plague of Procrastination. Increases Constitution and Intelligence by <%= attrs %> each. Enchanted Armoire: Plague Doctor Set (Item 2 of 3).",
"eyewearArmoireGoofyGlassesText": "Goofy Glasses",
"eyewearArmoireGoofyGlassesNotes": "Perfect for going incognito or just making your partymates giggle. Increases Perception by <%= per %>. Enchanted Armoire: Independent Item.",
- "twoHandedItem": "Two-handed item."
-}
\ No newline at end of file
+ "twoHandedItem": "Two-handed item.",
+ "shieldSpecialKS2019Text": "Scutum Gryphi Mythicis",
+ "headSpecialKS2019Text": "Cassis Gryphi Mythicis",
+ "armorSpecialKS2019Text": "Arma Gryphi Mythicis"
+}
diff --git a/website/common/locales/la/loadingscreentips.json b/website/common/locales/la/loadingscreentips.json
index 20dd7dcbc4..8cd122ac0f 100755
--- a/website/common/locales/la/loadingscreentips.json
+++ b/website/common/locales/la/loadingscreentips.json
@@ -1,38 +1,38 @@
{
- "tipTitle": "Monitus #<%= tipNumber %>",
- "tip1": "Check tasks on the go with the Habitica mobile apps.",
- "tip2": "Click any equipment to see a preview, or equip it instantly by clicking the star in its upper-left corner!",
- "tip3": "Use emoji to quickly differentiate between your tasks.",
- "tip4": "Use the # sign before a task name to make it really big!",
- "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.",
- "tip10": "You can win gems by competing in Challenges. New ones are added every day!",
- "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!",
- "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.",
- "tip17": "Use the mobile apps to set reminders for your tasks.",
- "tip18": "Habits that are just positive or just negative gradually “fade” and return to yellow.",
- "tip19": "Boost your Intelligence Stat to gain more experience when you complete a task.",
- "tip20": "Boost your Perception Stat to get more drops and gold.",
- "tip21": "Boost your Strength Stat to do more boss damage or get critical hits.",
- "tip22": "Boost your Constitution Stat to lessen the damage from incomplete Dailies.",
- "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!",
- "tip25": "The four seasonal Grand Galas start near the solstices and equinoxes.",
- "tip26": "You can look for a Party or find Party members in the Party Wanted Guild!",
- "tip27": "Did a Daily yesterday, but forgot to check it off? Don't worry! With Record Yesterday's Activity, you'll have a chance to record what you did before starting your new day.",
- "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!",
- "tip30": "You can invite people to Guilds, not just Parties.",
- "tip31": "Check out the pre-made lists in the Library of Tasks and Challenges Guild for example tasks.",
- "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."
+ "tipTitle": "Monitus #<%= tipNumber %>",
+ "tip1": "Observa munera dum iens cum Habitica applicatione mobili.",
+ "tip2": "Deprime quaevis armamenta ut videas exemplum, vel statim id arma deprimente stellam in angulo sinistro supero eius!",
+ "tip3": "Utere emoji ut inter munera tua celeriter distinguas.",
+ "tip4": "Utere signum # ante nominem muneris ut id magnissimum faciat!",
+ "tip5": "Est optimus uti sollertia quae auget in mane ut ea longius maneat.",
+ "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.",
+ "tip10": "Per colluctantem in Provocationibus gemmas potes merere. Novae cotidie adduntur!",
+ "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!",
+ "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.",
+ "tip17": "Use the mobile apps to set reminders for your tasks.",
+ "tip18": "Habits that are just positive or just negative gradually “fade” and return to yellow.",
+ "tip19": "Boost your Intelligence Stat to gain more experience when you complete a task.",
+ "tip20": "Boost your Perception Stat to get more drops and gold.",
+ "tip21": "Boost your Strength Stat to do more boss damage or get critical hits.",
+ "tip22": "Boost your Constitution Stat to lessen the damage from incomplete Dailies.",
+ "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!",
+ "tip25": "The four seasonal Grand Galas start near the solstices and equinoxes.",
+ "tip26": "You can look for a Party or find Party members in the Party Wanted Guild!",
+ "tip27": "Did a Daily yesterday, but forgot to check it off? Don't worry! With Record Yesterday's Activity, you'll have a chance to record what you did before starting your new day.",
+ "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!",
+ "tip30": "You can invite people to Guilds, not just Parties.",
+ "tip31": "Check out the pre-made lists in the Library of Tasks and Challenges Guild for example tasks.",
+ "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."
}
diff --git a/website/common/locales/la/messages.json b/website/common/locales/la/messages.json
index 5fc242458f..65c699b56e 100755
--- a/website/common/locales/la/messages.json
+++ b/website/common/locales/la/messages.json
@@ -3,8 +3,8 @@
"messageTaskNotFound": "Munus non nactum est.",
"messageDuplicateTaskID": "Munus iam cum illo ID existit.",
"messageTagNotFound": "Pittacium non nactum est.",
- "messagePetNotFound": ":pet in user.items.pets non nactum est.",
- "messageFoodNotFound": ":food in user.items.food non nactum est.",
+ "messagePetNotFound": ":pet in user.items.pets non nactum est",
+ "messageFoodNotFound": ":food in user.items.food non nactum est",
"messageNotAvailable": "Ea res nunc emere non suppetit.",
"messageCannotFeedPet": "Hoc animal domesticum non pascas.",
"messageAlreadyMount": "Iam iumentum tibi est. Conare alere aliud animal domesticum.",
@@ -63,4 +63,4 @@
"beginningOfConversation": "This is the beginning of your conversation with <%= userName %>. Remember to be kind, respectful, and follow the Community Guidelines!",
"messageDeletedUser": "Sorry, this user has deleted their account.",
"messageMissingDisplayName": "Missing display name."
-}
\ No newline at end of file
+}
diff --git a/website/common/locales/la/npc.json b/website/common/locales/la/npc.json
index 5cd049b839..84feff8f20 100755
--- a/website/common/locales/la/npc.json
+++ b/website/common/locales/la/npc.json
@@ -10,12 +10,12 @@
"justinIntroMessage3": "Optime! Qua re te in itiniere meliorem facere vis?",
"justinIntroMessageUsername": "Priusquam incipiamus, statuamus quomodo te appellemus. Infra nomen indicans et nomen usoris vides, quae nomina per te creavi. Postquam nomen indicans et nomen usoris elexisti, Avataram creabimus!",
"justinIntroMessageAppearance": "Qua specie esse cupis? Ne timueris! Speciam mutare et posterius potes.",
- "introTour": "Tandem advenimus! Aliqua munera secundum tua studia iam tibi expempla dedi; itaque statim incipere potes. Munus deprime ut id mutes vel alia munera adde, quae tibi idonea esse cogitas.",
+ "introTour": "Tandem advenimus! Aliqua munera secundum tua studia iam tibi expempla dedi; itaque statim incipere potes. Munus deprime ut id mutes vel alia munera adde, quae tibi idonea esse cogitas!",
"prev": "Vade retro",
"next": "Porro",
"randomize": "Casu ordina",
"mattBoch": "Matt Boch",
- "mattShall": "Afferam tuum sonipedem, <%= name %>? Cum satis cibi animali dederis ut sonipedem fiat, hic apparebit. Deprime sonipedem ut ascendas!",
+ "mattShall": "Afferam tuum iumentum, <%= name %>? Cum satis cibi animali dederis ut iumentum fiat, hic apparebit. Deprime iumentum ut ascendas!",
"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.",
"welcomeToTavern": "Welcome to The Tavern!",
"sleepDescription": "Need a break? Check into Daniel's Inn to pause some of Habitica's more difficult game mechanics:",
diff --git a/website/common/locales/la/overview.json b/website/common/locales/la/overview.json
index 7e9880e410..e7faaefa38 100755
--- a/website/common/locales/la/overview.json
+++ b/website/common/locales/la/overview.json
@@ -1,14 +1,10 @@
{
- "needTips": "Aliquasne instructiones incipiente requiris? Ducens simplex hic est!",
-
- "step1": "Gradus 1: Munera Inscribere",
- "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).",
-
- "step2": "Gradus 2: Puncta Facientibus Munera in Vita Naturali Potiri",
- "webStep2Text": "Nunc, tuos scopos ex tuo indice assultare incipe! [Experientiam](http://habitica.wikia.com/wiki/Experience_Points), quae te increscere tuum gradum adiuvat, et [Aurum](http://habitica.wikia.com/wiki/Gold_Points), quo Praemia emas, acquires dum munera comples et notas. Si in habitus malos recedas aut tua cotidiana desis, [Valitudonem](http://habitica.wikia.com/wiki/Health_Points) perdas. Ita Habitica barrae Experientiae Valitudonisque sunt indicatores geniati tui progressui ad tuos scopos. Notabis ut tua vita in meliorem fiet dum tua persona in ludo proficit.",
-
- "step3": "Gradus 3: Habitica Explorare et Adaptare",
- "webStep3Text": "Once you're familiar with the basics, you can get even more out of Habitica with these nifty features:\n * Organize your tasks with [tags](http://habitica.wikia.com/wiki/Tags) (edit a task to add them).\n * Customize your [avatar](http://habitica.wikia.com/wiki/Avatar) by clicking the user icon in the upper-right corner.\n * Buy your [Equipment](http://habitica.wikia.com/wiki/Equipment) under Rewards or from the [Shops](<%= shopUrl %>), and change it under [Inventory > Equipment](<%= equipUrl %>).\n * Connect with other users via the [Tavern](http://habitica.wikia.com/wiki/Tavern).\n * Starting at Level 3, hatch [Pets](http://habitica.wikia.com/wiki/Pets) by collecting [eggs](http://habitica.wikia.com/wiki/Eggs) and [hatching potions](http://habitica.wikia.com/wiki/Hatching_Potions). [Feed](http://habitica.wikia.com/wiki/Food) them to create [Mounts](http://habitica.wikia.com/wiki/Mounts).\n * At level 10: Choose a particular [class](http://habitica.wikia.com/wiki/Class_System) and then use class-specific [skills](http://habitica.wikia.com/wiki/Skills) (levels 11 to 14).\n * Form a party with your friends (by clicking [Party](<%= partyUrl %>) in the navigation bar) to stay accountable and earn a Quest scroll.\n * Defeat monsters and collect objects on [quests](http://habitica.wikia.com/wiki/Quests) (you will be given a quest at level 15).",
-
- "overviewQuestions": "Have questions? Check out the [FAQ](<%= faqUrl %>)! If your question isn't mentioned there, you can ask for further help in the [Habitica Help guild](<%= helpGuildUrl %>).\n\nGood luck with your tasks!"
+ "needTips": "Aliquasne instructiones incipiente requiris? Ducens simplex hic est!",
+ "step1": "Gradus 1: Munera Inscribere",
+ "webStep1Text": "Habitica est nihil sine scopis vita naturalis, inscribe igitur pauca munera. Si plura cogitas, postmodum quae potes addere! Omnia munera deprimente globulum viridem nominatum \"Crea\" potent addere.\n* **Statue [Agenda](http://habitica.wikia.com/wiki/To-Dos):** Inscribe munera semel aut infrequent, in columna Agendis unum ad tempus. Munera potes deprimere ut quae recenseas et alba signorum et dies terminas et plus addas!\n* **Statue [Cotidiana](http://habitica.wikia.com/wiki/Dailies):** Inscribe agenda cotidiana aut in certa diei hebdomada aut mensis aut anni in columna Cotidiana. Deprime munus ut diem terminam recenseas et/aut diem initiantem statuas. Etiam frequentiam diei terminae potes assignare, exempli gratia, quaque tertia die.\n* **Statue [Habitus](http://habitica.wikia.com/wiki/Habits):** Inscribe habitus volentis statuere in columna Habitibus. Habitum potes recensere ut mutes in habitum solum bonum :heavy_plus_sign: aut habitum solum malum :heavy_minus_sign:\n* **Statue [Praemia](http://habitica.wikia.com/wiki/Rewards):** Praeter praemia oblatos intra ludum, adde actiones et libita quos vis uti pro incitamento in columna Praemiis. Est magnus, in moderationem, quiescere aut indulgere!\n* Si inspirationem de quibus muneribus addituris requiris, potes specere paginae wiki de [Habitibus Exemplis](http://habitica.wikia.com/wiki/Sample_Habits), [Cotidianis Exemplis](http://habitica.wikia.com/wiki/Sample_Dailies), [Agendis Exemplis](http://habitica.wikia.com/wiki/Sample_To-Dos), et [Praemiis Exemplis](http://habitica.wikia.com/wiki/Sample_Custom_Rewards).",
+ "step2": "Gradus 2: Puncta Facientibus Munera in Vita Naturali Potiri",
+ "webStep2Text": "Nunc, tuos scopos ex tuo indice assultare incipe! [Experientiam](http://habitica.wikia.com/wiki/Experience_Points), quae te increscere tuum gradum adiuvat, et [Aurum](http://habitica.wikia.com/wiki/Gold_Points), quo Praemia emas, acquires dum munera comples et notas. Si in habitus malos recedas aut tua cotidiana desis, [Valitudonem](http://habitica.wikia.com/wiki/Health_Points) perdas. Ita Habitica barrae Experientiae Valitudonisque sunt indicatores geniati tui progressui ad tuos scopos. Notabis ut tua vita in meliorem fiet dum tua persona in ludo proficit.",
+ "step3": "Gradus 3: Habitica Explorare et Adaptare",
+ "webStep3Text": "Quondam consuescis rudimenta, potes facere usum meliorem de Habitica cum has novis facultatibus:\n * Ordina munera tua cum [notis](http://habitica.wikia.com/wiki/Tags) (recense munus ut addas eas).\n * Fac unicam, tuam [personam](http://habitica.wikia.com/wiki/Avatar) deprimente iconem utentis in angulo superiore dextro.\n * Eme [Armamenta](http://habitica.wikia.com/wiki/Equipment) tua sub Praemiis aut de pagina nominata [Emporia](<%= shopUrl %>), et muta ea sub pagina nominata [Inventarium > Armamenta](<%= equipUrl %>).\n * Loquere cum utentibus aliis in [Caupona](http://habitica.wikia.com/wiki/Tavern).\n * Initians quando pervenis Gradum 3, incuba [Animalia](http://habitica.wikia.com/wiki/Pets) ab colligante [ova](http://habitica.wikia.com/wiki/Eggs) et [potiones incubantes](http://habitica.wikia.com/wiki/Hatching_Potions). [Pasce](http://habitica.wikia.com/wiki/Food) ea ut crees [Sonipedes](http://habitica.wikia.com/wiki/Mounts).\n * Quando pervenis gradum 10: Elige specialem [professionem](http://habitica.wikia.com/wiki/Class_System) et tunc utere [sollertia](http://habitica.wikia.com/wiki/Skills) speciales professionis (gradi 11, 12, 13, et 14).\n * Fac Partes cum amicis tuis (ab deprimente [Partes](<%= partyUrl %>) in vitta navigante) ut maneas fidelitatem et mereas volumen Investigationem. \n * Vince monstra et collige collect res in [investigationibus](http://habitica.wikia.com/wiki/Quests) (quando pervenis gradum 15, investigatio tibi dabitur).",
+ "overviewQuestions": "Habes quaestiones? Ecce [Quaestiones Frequenter Interrogati](<%= faqUrl %>)! Si quaestio tuum ibi non est legitur, potes quaerere auxilium magis in [collegium Auxilium Habitica ](<%= helpGuildUrl %>).\n\nBona fortuna sit tibi et muneribus tuis!"
}
diff --git a/website/common/locales/la/pets.json b/website/common/locales/la/pets.json
index 0b8651d4b3..60e25f6102 100644
--- a/website/common/locales/la/pets.json
+++ b/website/common/locales/la/pets.json
@@ -12,12 +12,12 @@
"veteranTiger": "Tigris Veteranus",
"veteranWolf": "Lupus Veteranus",
"etherealLion": "Leo Aetherius",
- "rareMounts": "Sonipedes Rari",
- "magicMounts": "Sonipedes Magici",
- "questMounts": "Sonipedes Investigationum",
- "mountsTamed": "Sonipedes Domiti",
- "activeMount": "Sonipes Electus",
- "mounts": "Sonipedes",
+ "rareMounts": "Iumenta Rari",
+ "magicMounts": "Iumenta Magici",
+ "questMounts": "Iumenta Investigationum",
+ "mountsTamed": "Iumenta Domiti",
+ "activeMount": "Iumentum Electus",
+ "mounts": "Iumenta",
"wackyPets": "Animalia Peregrina",
"questPets": "Animalia Investigationum",
"rarePets": "Animalia Rara",
@@ -26,16 +26,21 @@
"activePet": "Animal Electum",
"pets": "Animalia",
"stable": "Stabulum",
- "noActiveMount": "Nullus Sonipes Electus",
+ "noActiveMount": "Nullus Iumentum Electus",
"noActivePet": "Nullus Animal Electum",
- "hatchingPotions": "Pōtiōnes Incubantes",
- "potion": "",
- "egg": "",
- "hatchingPotion": "pōtiō incubans",
- "magicHatchingPotions": "Pōtiōnes Incubantes Magicae",
+ "hatchingPotions": "Potiones Incubantes",
+ "potion": "Potio <%= potionType %>",
+ "egg": "Ovum <%= eggType %>",
+ "hatchingPotion": "potio incubans",
+ "magicHatchingPotions": "Potiones Incubantes Magicae",
"royalPurpleJackalope": "Lepus Cornutus Purpureus Regalis",
"royalPurpleGryphon": "Gryphus Purpureus Regius",
- "noEggs": "Nihil ōva non habes.",
- "eggSingular": "ōvum",
- "eggs": "ōva"
+ "noEggs": "Ulla ova non habes.",
+ "eggSingular": "ovum",
+ "eggs": "ova",
+ "mountName": "<%= mount(locale) %> <%= potion(locale) %>",
+ "petName": "<%= egg(locale) %> <%= potion(locale) %>",
+ "hatchedPet": "Incubuisti novum animal nominatum <%= potion %> <%= egg %>!",
+ "hatchAPot": "Incubas novum animal nominatum <%= potion %> <%= egg %>?",
+ "noHatchingPotions": "Ullas potiones incubantes non habes."
}
diff --git a/website/common/locales/la/quests.json b/website/common/locales/la/quests.json
index c749ba4d5d..91ceb7ceb4 100755
--- a/website/common/locales/la/quests.json
+++ b/website/common/locales/la/quests.json
@@ -4,7 +4,7 @@
"whereAreMyQuests": "Quests are now available on their own page! Click on Inventory -> Quests to find them.",
"yourQuests": "Tuae Investigationes",
"questsForSale": "Investigationes Venales",
- "petQuests": "Investigationes Animalium et Sonipedum",
+ "petQuests": "Investigationes Animalium et Iumentorum",
"unlockableQuests": "Investigationes Disserendi",
"goldQuests": "Masterclasser Quest Lines",
"questDetails": "Subtilitates Investigationum",
diff --git a/website/common/locales/la/questscontent.json b/website/common/locales/la/questscontent.json
index d63a04275c..7ce74d42cc 100755
--- a/website/common/locales/la/questscontent.json
+++ b/website/common/locales/la/questscontent.json
@@ -6,16 +6,16 @@
"questEvilSantaDropBearCubPolarMount": "Ursus Polaris (Iumentum)",
"questEvilSanta2Text": "Catulus Inveniendus",
"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": "Catulum invenisti Te in perpetuo sequetur.",
+ "questEvilSanta2Completion": "Catulum invenisti! Te in perpetuo sequetur.",
"questEvilSanta2CollectTracks": "Vestigia",
"questEvilSanta2CollectBranches": "Ramuli Confracti",
"questEvilSanta2DropBearCubPolarPet": "Ursus Polaris (Animal)",
- "questGryphonText": "Gryps Igneus",
+ "questGryphonText": "Gryphus Igneus",
"questGryphonNotes": "The grand beast master, baconsaur, has come to your party seeking help. \"Please, adventurers, you must help me! My prized gryphon has broken free and is terrorizing Habit City! If you can stop her, I could reward you with some of her eggs!\"",
"questGryphonCompletion": "Defeated, the mighty beast ashamedly slinks back to its master. \"My word! Well done, adventurers!\" baconsaur exclaims, \"Please, have some of the gryphon's eggs. I am sure you will raise these young ones well!\"",
- "questGryphonBoss": "Gryps Igneus",
- "questGryphonDropGryphonEgg": "Gryps (Ovum)",
- "questGryphonUnlockText": "Ova venalia Grypis in Foro reserat",
+ "questGryphonBoss": "Gryphus Igneus",
+ "questGryphonDropGryphonEgg": "Gryphus (Ovum)",
+ "questGryphonUnlockText": "Ova venalia Gryphis in Foro reserat",
"questHedgehogText": "Erinabestia",
"questHedgehogNotes": "Hedgehogs are a funny group of animals. They are some of the most affectionate pets a Habiteer could own. But rumor has it, if you feed them milk after midnight, they grow quite irritable. And fifty times their size. And InspectorCaracal did just that. Oops.",
"questHedgehogCompletion": "Your party successfully calmed down the hedgehog! After shrinking down to a normal size, she hobbles away to her eggs. She returns squeaking and nudging some of her eggs along towards your party. Hopefully, these hedgehogs like milk better!",
@@ -33,13 +33,13 @@
"questRatCompletion": "Your final strike saps the gargantuan rat's strength, his eyes fading to a dull grey. The beast splits into many tiny rats, which scurry off in fright. You notice @Pandah standing behind you, looking at the once mighty creature. She explains that the citizens of Habitica have been inspired by your courage and are quickly completing all their unchecked Dailies. She warns you that we must be vigilant, for should we let down our guard, the Rat King will return. As payment, @Pandah offers you several rat eggs. Noticing your uneasy expression, she smiles, \"They make wonderful pets.\"",
"questRatBoss": "Rattus Rex",
"questRatDropRatEgg": "Rattus (Ovum)",
- "questRatUnlockText": "Ova venalia Muris in Foro reserat",
+ "questRatUnlockText": "Ova venalia Rati in Foro reserat",
"questOctopusText": "Vox Octothulu",
"questOctopusNotes": "@Urse, a wild-eyed young scribe, has asked for your help exploring a mysterious cave by the sea shore. Among the twilight tidepools stands a massive gate of stalactites and stalagmites. As you near the gate, a dark whirlpool begins to spin at its base. You stare in awe as a squid-like dragon rises through the maw. \"The sticky spawn of the stars has awakened,\" roars @Urse madly. \"After vigintillions of years, the great Octothulu is loose again, and ravening for delight!\"",
"questOctopusCompletion": "With a final blow, the creature slips away into the whirlpool from which it came. You cannot tell if @Urse is happy with your victory or saddened to see the beast go. Wordlessly, your companion points to three slimy, gargantuan eggs in a nearby tidepool, set in a nest of gold coins. \"Probably just octopus eggs,\" you say nervously. As you return home, @Urse frantically scribbles in a journal and you suspect this is not the last time you will hear of the great Octothulu.",
"questOctopusBoss": "Octothulu",
"questOctopusDropOctopusEgg": "Polypus (Ovum)",
- "questOctopusUnlockText": "Ova venalia Octopodi in Foro reserat",
+ "questOctopusUnlockText": "Ova venalia Octopi in Foro reserat",
"questHarpyText": "Adiuva! Harpyia!",
"questHarpyNotes": "The brave adventurer @UncommonCriminal has disappeared into the forest, following the trail of a winged monster that was sighted several days ago. You are about to begin a search when a wounded parrot lands on your arm, an ugly scar marring its beautiful plumage. Attached to its leg is a scrawled note explaining that while defending the parrots, @UncommonCriminal was captured by a vicious Harpy, and desperately needs your help to escape. Will you follow the bird, defeat the Harpy, and save @UncommonCriminal?",
"questHarpyCompletion": "A final blow to the Harpy brings it down, feathers flying in all directions. After a quick climb to its nest you find @UncommonCriminal, surrounded by parrot eggs. As a team, you quickly place the eggs back in the nearby nests. The scarred parrot who found you caws loudly, dropping several eggs in your arms. \"The Harpy attack has left some eggs in need of protection,\" explains @UncommonCriminal. \"It seems you have been made an honorary parrot.\"",
@@ -159,7 +159,7 @@
"questOwlCompletion": "The Night-Owl fades before the dawn,
But even so, you feel a yawn.
Perhaps it's time to get some rest?
Then on your bed, you see a nest!
A Night-Owl knows it can be great
To finish work and stay up late,
But your new pets will softly peep
To tell you when it's time to sleep.",
"questOwlBoss": "Noctua",
"questOwlDropOwlEgg": "Bubo (Ovum)",
- "questOwlUnlockText": "Ova venalia Bubonis in Foro reserat",
+ "questOwlUnlockText": "Ova venalia Strigis in Foro reserat",
"questPenguinText": "The Fowl Frost",
"questPenguinNotes": "Although it's a hot summer day in the southernmost tip of Habitica, an unnatural chill has fallen upon Lively Lake. Strong, frigid winds rush around as the shore begins to freeze over. Ice spikes jut up from the ground, pushing grass and dirt away. @Melynnrose and @Breadstrings run up to you.
\"Help!\" says @Melynnrose. \"We brought a giant penguin in to freeze the lake so we could all go ice skating, but we ran out of fish to feed him!\"
\"He got angry and is using his freeze breath on everything he sees!\" says @Breadstrings. \"Please, you have to subdue him before all of us are covered in ice!\" Looks like you need this penguin to... cool down.",
"questPenguinCompletion": "Upon the penguin's defeat, the ice melts away. The giant penguin settles down in the sunshine, slurping up an extra bucket of fish you found. He skates off across the lake, blowing gently downwards to create smooth, sparkling ice. What an odd bird! \"It appears he left behind a few eggs, as well,\" says @Painter de Cluster.
@Rattify laughs. \"Maybe these penguins will be a little more... chill?\"",
@@ -221,13 +221,13 @@
"questKrakenBoss": "The Kraken of Inkomplete",
"questKrakenCompletion": "As the Kraken flees, several eggs float to the surface of the water. Lemoness examines them, and her suspicion turns to delight. \"Cuttlefish eggs!\" she says. \"Here, take them as a reward for everything you've completed.\"",
"questKrakenDropCuttlefishEgg": "Loligo (Ovum)",
- "questKrakenUnlockText": "Ova venalia Loligonis in Foro reserat",
+ "questKrakenUnlockText": "Ova venalia Sepiae in Foro reserat",
"questWhaleText": "Lamentatio Balaenae",
"questWhaleNotes": "You arrive at the Diligent Docks, hoping to take a submarine to watch the Dilatory Derby. Suddenly, a deafening bellow forces you to stop and cover your ears. \"Thar she blows!\" cries Captain @krazjega, pointing to a huge, wailing whale. \"It's not safe to send out the submarines while she's thrashing around!\"
\"Quick,\" calls @UncommonCriminal. \"Help me calm the poor creature so we can figure out why she's making all this noise!\"",
"questWhaleBoss": "Balaena Lamentans",
"questWhaleCompletion": "After much hard work, the whale finally ceases her thunderous cry. \"Looks like she was drowning in waves of negative habits,\" @zoebeagle explains. \"Thanks to your consistent effort, we were able to turn the tides!\" As you step into the submarine, several whale eggs bob towards you, and you scoop them up.",
"questWhaleDropWhaleEgg": "Balaena (Ovum)",
- "questWhaleUnlockText": "Ova venalia Balaenae in Foro reserat",
+ "questWhaleUnlockText": "Ova venalia Ceti in Foro reserat",
"questGroupDilatoryDistress": "Dilatory Distress",
"questDilatoryDistress1Text": "Dilatory Distress, Part 1: Message in a Bottle",
"questDilatoryDistress1Notes": "A message in a bottle arrived from the newly rebuilt city of Dilatory! It reads: \"Dear Habiticans, we need your help once again. Our princess has disappeared and the city is under siege by some unknown watery demons! The mantis shrimps are holding the attackers at bay. Please aid us!\" To make the long journey to the sunken city, one must be able to breathe water. Fortunately, the alchemists @Benga and @hazel can make it all possible! You only have to find the proper ingredients.",
@@ -257,7 +257,7 @@
"questCheetahCompletion": "The new Habitican is breathing heavily after the wild ride, but thanks you and your friends for your help. \"I'm glad that Cheetah won't be able to grab anyone else. It did leave some Cheetah eggs for us, so maybe we can raise them into more trustworthy pets!\"",
"questCheetahBoss": "Cheetah",
"questCheetahDropCheetahEgg": "Cheetah (Egg)",
- "questCheetahUnlockText": "Ova venalia Catti Pardi in Foro reserat",
+ "questCheetahUnlockText": "Ova venalia Acinonyx in Foro reserat",
"questHorseText": "Ride the Night-Mare",
"questHorseNotes": "While relaxing in the Tavern with @beffymaroo and @JessicaChase, the talk turns to good-natured boasting about your adventuring accomplishments. Proud of your deeds, and perhaps getting a bit carried away, you brag that you can tame any task around. A nearby stranger turns toward you and smiles. One eye twinkles as he invites you to prove your claim by riding his horse.\nAs you all head for the stables, @UncommonCriminal whispers, \"You may have bitten off more than you can chew. That's no horse - that's a Night-Mare!\" Looking at its stamping hooves, you begin to regret your words...",
"questHorseCompletion": "It takes all your skill, but finally the horse stamps a couple of hooves and nuzzles you in the shoulder before allowing you to mount. You ride briefly but proudly around the Tavern grounds while your friends cheer. The stranger breaks into a broad grin.\n\"I can see that was no idle boast! Your determination is truly impressive. Take these eggs to raise horses of your own, and perhaps we'll meet again one day.\" You take the eggs, the stranger tips his hat... and vanishes.",
@@ -397,7 +397,7 @@
"questFerretCompletion": "You defeat the soft-furred swindler and @UncommonCriminal gives the crowd their refunds. There's even a little gold left over for you. Plus, it looks like the Nefarious Ferret dropped some eggs in his hurry to get away!",
"questFerretBoss": "Viverra Nefaria",
"questFerretDropFerretEgg": "Viverra (Ovum)",
- "questFerretUnlockText": "Ova venalia Viverrae in Foro reserat",
+ "questFerretUnlockText": "Ova venalia Furriti in Foro reserat",
"questDustBunniesText": "The Feral Dust Bunnies",
"questDustBunniesNotes": "It's been a while since you've done any dusting in here, but you're not too worried—a little dust never hurt anyone, right? It's not until you stick your hand into one of the dustiest corners and feel something bite that you remember @InspectorCaracal's warning: leaving harmless dust sit too long causes it to turn into vicious dust bunnies! You'd better defeat them before they cover all of Habitica in fine particles of dirt!",
"questDustBunniesCompletion": "The dust bunnies vanish into a puff of... well, dust. As it clears, you look around. You'd forgotten how nice this place looks when it's clean. You spy a small pile of gold where the dust used to be. Huh, you'd been wondering where that was!",
@@ -634,5 +634,5 @@
"questVelociraptorCompletion": "You burst through the grass, confronting the Veloci-Rapper.
See here, rapper, you’re no quitter,
You’re Bad Habits' hardest hitter!
Check off your To-Dos like a boss,
Don’t mourn over one day’s loss!
Filled with renewed confidence, it bounds off to freestyle another day, leaving behind three eggs where it sat.",
"questVelociraptorBoss": "Veloci-Rapper",
"questVelociraptorDropVelociraptorEgg": "Velociraptor (Ovum)",
- "questVelociraptorUnlockText": "Unlocks purchasable Velociraptor eggs in the Market"
+ "questVelociraptorUnlockText": ""
}
diff --git a/website/common/locales/la/rebirth.json b/website/common/locales/la/rebirth.json
index 51ea997e47..9a9d67d753 100755
--- a/website/common/locales/la/rebirth.json
+++ b/website/common/locales/la/rebirth.json
@@ -1,29 +1,30 @@
{
"rebirthNew": "Renascentia: Iter Novum Suppetitur!",
- "rebirthUnlock": "You've unlocked Rebirth! This special Market item allows you to begin a new game at level 1 while keeping your tasks, achievements, pets, and more. Use it to breathe new life into Habitica if you feel you've achieved it all, or to experience new features with the fresh eyes of a beginning character!",
+ "rebirthUnlock": "Renascientam recluisti! Hoc res specialis Fori te permitte incipere novum ludum ad Gradum 1 donec retines muneraque animalia tua et res perfectas tuas et magis. Ea uti spirare vitam novam in Habitica si sentis quia omnia perfecisti, vel expiri facultates novas cum oculis recentes characteris initii!",
"rebirthBegin": "Renascentia: Iter Novum Incipe",
"rebirthStartOver": "Renascentia personam tuam ex Grado 1 iterum initiat.",
"rebirthAdvList1": "Valitudo plena revenis.",
"rebirthAdvList2": "Experientiam vel Aurum non habes.",
- "rebirthAdvList3": "Habita Cotidianaque Agendaque tua ad flava et series praeter munera provocationis redeunt.",
+ "rebirthAdvList3": "Habitus Cotidianaque Agendaque tua ad flava et series praeter munera provocationis redeunt.",
"rebirthAdvList4": "Professio initialis Belatoris tibi est donec professionem novam meres.",
"rebirthInherit": "Persona nova tua res paucas ab praecursore suo hereditat:",
"rebirthInList1": "Munera et historia et configurationes stant.",
- "rebirthInList2": "Civitas Provocationis et Collegii et Contubernii stant.",
+ "rebirthInList2": "Civitas Provocationis et Collegii et Partium stant.",
"rebirthInList3": "Gemmae et gradus advocati et gradus collatoris stant.",
- "rebirthInList4": "Items obtained from Gems or drops (such as pets and mounts) remain.",
- "rebirthEarnAchievement": "Quoque res perfectam per incipiendum iter novum meres!",
+ "rebirthInList4": "Res obtentae de Gemma vel relictis (exempli gratia, animalia et iumenta) manent.",
+ "rebirthEarnAchievement": "Quoque Res Perfectam per incipiendum iter novum meres!",
"beReborn": "Renasci",
- "rebirthAchievement": "You've begun a new adventure! This is Rebirth <%= number %> for you, and the highest Level you've attained is <%= level %>. To stack this Achievement, begin your next new adventure when you've reached an even higher Level!",
- "rebirthAchievement100": "You've begun a new adventure! This is Rebirth <%= number %> for you, and the highest Level you've attained is 100 or higher. To stack this Achievement, begin your next new adventure when you've reached at least 100!",
+ "rebirthAchievement": "Iter novum incepisti! Ea est Renascienta <%= number %> tibi, et summum Gradum tenuisti est <%= level %>. Ut coacerves hanc Rem Perfectam, incipe iter novum tuum quando superiorem Gradum pervenisti!",
+ "rebirthAchievement100": "Iter novum incepisti! Ea est Renascienta <%= number %> tibi, et summum Gradum tenuisti est 100 vel superior. TUt coacerves hanc Rem Perfectam, incipe iter novum tuum quando 100 vel superiorem pervenisti!",
"rebirthBegan": "Iter Novum inceptum esse",
"rebirthText": "Itinera nova <%= rebirths %> incepta esse",
- "rebirthOrb": "Used an Orb of Rebirth to start over after attaining Level <%= level %>.",
- "rebirthOrb100": "Used an Orb of Rebirth to start over after attaining Level 100 or higher.",
- "rebirthOrbNoLevel": "Used an Orb of Rebirth to start over.",
- "rebirthPop": "Instantly restart your character as a Level 1 Warrior while retaining achievements, collectibles, and equipment. Your tasks and their history will remain but they will be reset to yellow. Your streaks will be removed except from challenge tasks. Your Gold, Experience, Mana, and the effects of all Skills will be removed. All of this will take effect immediately. For more information, see the wiki's Orb of Rebirth page.",
+ "rebirthOrb": "Orbis Renascientae usus est ut incipiat iterum post tenentem Gradum <%= level %>.",
+ "rebirthOrb100": "Orbis Renascientae usus est ut incipiat iterum post tenentem Gradum 100 aut altiorem.",
+ "rebirthOrbNoLevel": "Orbis Renascientae usus est ut incipiat iterum.",
+ "rebirthPop": "Statim characterem tuum ad Gradum 1 Bellatorem incipit iterum donec retines res perfectas, res collectas, et armamenta. Munera tua et historiam eorum manebunt sed ea revertentur ad flava. Series tuae auferentur praeter munera provocationis activae et Ordinationis Tribus. Aurum tuum et Experentiaque Mana tuae, et effectus sollertium omnium auferentur. Omnia haec statim fient. Pro magis informatione, vide paginam wiki de Orbe Renascientae.",
"rebirthName": "Orbis Renascentiae",
"reborn": "Renatus, gradus maximus <%= reLevel %>",
"confirmReborn": "Esne certus?",
- "rebirthComplete": "Renatus/a es!"
-}
\ No newline at end of file
+ "rebirthComplete": "Renatus es!",
+ "nextFreeRebirth": "<%= days %> diei usque ad Orbem Renascientae est GRATUM"
+}
diff --git a/website/common/locales/la/settings.json b/website/common/locales/la/settings.json
index 0648143b74..e623fd9625 100755
--- a/website/common/locales/la/settings.json
+++ b/website/common/locales/la/settings.json
@@ -132,7 +132,7 @@
"subscribeUsing": "Subscribere cum",
"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).",
- "unsubscribedTextOthers": "Alias epistulas electronicas a Habitica non accipies.",
+ "unsubscribedTextOthers": "Ullas epistulas electronicas a Habitica non accipies.",
"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",
diff --git a/website/common/locales/la/spells.json b/website/common/locales/la/spells.json
index 4966f1289a..b70de222aa 100755
--- a/website/common/locales/la/spells.json
+++ b/website/common/locales/la/spells.json
@@ -6,8 +6,8 @@
"spellWizardEarthText": "Chasmatias",
"spellWizardEarthNotes": "Potestas mentalis tua terram tremit et Intelligentiam Partium tuam auget! (Secundum: INT sine augmento)",
"spellWizardFrostText": "Gelu Glaciale",
- "spellWizardFrostNotes": "Cum una incantatione, glacies lineas omnes tuas glaciat ne cras revertant ad nil! ",
- "spellWizardFrostAlreadyCast": " Hanc hodie iam incantavisti. Lineas tuas glaciati sunt, et non necesse est incantare iterum.",
+ "spellWizardFrostNotes": "Cum una incantatione, glacies series omnes tuas glaciat ne cras revertant ad nil! ",
+ "spellWizardFrostAlreadyCast": " Hanc hodie iam incantavisti. Series tuas glaciati sunt, et non necesse est incantare iterum.",
"spellWarriorSmashText": "Saeva Plaga",
"spellWarriorSmashNotes": "Munus plus caerulum / minus rubrum facis et Dominos vulnas! (Secundum: VIS)",
"spellWarriorDefensiveStanceText": "Defensorius Gradus",
@@ -23,7 +23,7 @@
"spellRogueToolsOfTradeText": "Instrumenta Professionis",
"spellRogueToolsOfTradeNotes": "Talenta vafra tua Perceptionem Partium tuam augent! (Secundum: PER sine augmento)",
"spellRogueStealthText": "Furtivus",
- "spellRogueStealthNotes": "Cum quisque incantatione, pauca Cotidiana imperfecta non vulnerabunt hac note. Et lineae tuae et colores tui non mutabunt. (Secundum: PER)",
+ "spellRogueStealthNotes": "Cum quisque incantatione, pauca Cotidiana imperfecta non vulnerabunt hac note. Et series tuae et colores tui non mutabunt. (Secundum: PER)",
"spellRogueStealthDaliesAvoided": "<%= originalText %> Numerus Cotidianorum vitavisti est: <%= number %>.",
"spellRogueStealthMaxedOut": " Tota Cotidiana tua iam vitavisti; non necesse est incantare iterum.",
"spellHealerHealText": "Lux Sanans",
@@ -35,21 +35,21 @@
"spellHealerHealAllText": "Benedictio",
"spellHealerHealAllNotes": "Incantatio relaxans tua valitudinem Partium tuorum totorum restituit! (Secundum: ROB et INT)",
"spellSpecialSnowballAuraText": "Viburnum",
- "spellSpecialSnowballAuraNotes": "Turn a friend into a frosty snowman!",
+ "spellSpecialSnowballAuraNotes": "Unum amicum in virum nivis gelidum mutat!",
"spellSpecialSaltText": "Sal",
- "spellSpecialSaltNotes": "Reverse the spell that made you a snowman.",
+ "spellSpecialSaltNotes": "Incantationem quam te mutavit in virum nivis revertitur.",
"spellSpecialSpookySparklesText": "Scintillationes Formidabiles",
- "spellSpecialSpookySparklesNotes": "Turn your friend into a transparent pal!",
+ "spellSpecialSpookySparklesNotes": "Amicum tuum in perlucidum amicum mutat!",
"spellSpecialOpaquePotionText": "Potio Turbida",
- "spellSpecialOpaquePotionNotes": "Reverse the spell that made you transparent.",
+ "spellSpecialOpaquePotionNotes": "Incantationem quam te mutavit perlucidum revertitur.",
"spellSpecialShinySeedText": "Fulgens Semen",
"spellSpecialShinySeedNotes": "Unum amicum in laetum florem mutat!",
"spellSpecialPetalFreePotionText": "Sine Folio Potio",
- "spellSpecialPetalFreePotionNotes": "Reverse the spell that made you a flower.",
+ "spellSpecialPetalFreePotionNotes": "Incantationem quam te mutavit in florem revertitur.",
"spellSpecialSeafoamText": "Spuma",
- "spellSpecialSeafoamNotes": "Unum Amicum in Maritimum Monstrum Mutat!",
+ "spellSpecialSeafoamNotes": "Unum amicum in maritimum monstrum mutat!",
"spellSpecialSandText": "Pulvis",
- "spellSpecialSandNotes": "Reverse the spell that made you a sea star.",
+ "spellSpecialSandNotes": "Incantationem quam te mutavit in maritimum monstrum revertitur.",
"partyNotFound": "Grex non repertus est",
"targetIdUUID": "Debere \"targetId\" Utentem ID licitum esse.",
"challengeTasksNoCast": "Non licet incantanti in muneribus provocationis.",
diff --git a/website/common/locales/la/tasks.json b/website/common/locales/la/tasks.json
index 144550323b..6f7807fc32 100755
--- a/website/common/locales/la/tasks.json
+++ b/website/common/locales/la/tasks.json
@@ -1,5 +1,5 @@
{
- "clearCompleted": "Perfeci ut res delevissem.",
+ "clearCompleted": "Perfeci ut res delevissem",
"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?",
diff --git a/website/common/locales/pl/achievements.json b/website/common/locales/pl/achievements.json
index 943028941e..8463ef2c20 100644
--- a/website/common/locales/pl/achievements.json
+++ b/website/common/locales/pl/achievements.json
@@ -7,5 +7,25 @@
"achievementLostMasterclasser": "Realizator misji: Mistrzowie Klas",
"achievementLostMasterclasserText": "Wykonano wszystkie szesnaście misji w cyklu Mistrzów Klas i rozwiązano zagadkę Zaginionego Mistrza!",
"achievementAridAuthorityModalText": "Oswoiłeś wszystkie Pustynne Wierzchowce!",
- "achievementLostMasterclasserModalText": "Wykonałeś wszystkie szesnaście misji z serii Mistrzowie Klas i rozwiązałeś zagadkę Zaginionego Mistrza!"
+ "achievementLostMasterclasserModalText": "Wykonałeś wszystkie szesnaście misji z serii Mistrzowie Klas i rozwiązałeś zagadkę Zaginionego Mistrza!",
+ "achievementPurchasedEquipment": "Kup ekwipunek",
+ "achievementFedPetText": "Nakarmiono pierwszego chowańca.",
+ "achievementFedPet": "Nakarm chowańca",
+ "achievementCompletedTaskText": "Wykonano pierwsze zadanie.",
+ "achievementCompletedTask": "Wykonaj zadanie",
+ "achievementCreatedTaskModalText": "Dodaj zadanie, które chciałbyś wykonać w tym tygodniu",
+ "achievementMonsterMagusModalText": "Zebrałeś(-aś) wszystkie chowańce zombie!",
+ "achievementMonsterMagusText": "Zdobyto wszystkie chowańce zombie.",
+ "achievementPartyOn": "Liczba członków w twojej drużynie wzrosła do 4 członków!",
+ "achievementKickstarter2019Text": "Wsparł(a) projekt 2019 Pin na Kickstarterze",
+ "achievementKickstarter2019": "Pin Sponsora w Kickstarterze",
+ "achievementPartyUp": "Stworzyłeś zespół z członkiem drużyny!",
+ "achievementBackToBasicsModalText": "Zebrałeś wszystkie podstawowe chowańce!",
+ "achievementBackToBasicsText": "Zebrano wszystkie podstawowe chowańce.",
+ "achievementBackToBasics": "Powrót do podstaw",
+ "hideAchievements": "Ukryj <%= category %>",
+ "showAllAchievements": "Pokaż wszystkie <%= category %>",
+ "earnedAchievement": "Zdobyłeś osignięcie!",
+ "viewAchievements": "Zobacz osiągnięcia",
+ "letsGetStarted": "Zaczynamy!"
}
diff --git a/website/common/locales/pl/defaulttasks.json b/website/common/locales/pl/defaulttasks.json
index 95ad079a61..c100137868 100644
--- a/website/common/locales/pl/defaulttasks.json
+++ b/website/common/locales/pl/defaulttasks.json
@@ -30,5 +30,12 @@
"selfCareHabit": "Zrób sobie krótką przerwę",
"schoolDailyText": "Skończ zadania domowe",
"exerciseDailyText": "Rozciąganie>>Codzienne ćwiczenia",
- "workHabitMail": "Sprawdź e-mail"
+ "workHabitMail": "Sprawdź e-mail",
+ "defaultHabitNotes": "Lub usuń z widoku edycji",
+ "defaultHabitText": "Kliknij tutaj, by zmienić to w zły nawyk, którego chcesz się pozbyć",
+ "selfCareDailyText": "5 minut spokojengo oddychania",
+ "schoolHabit": "Nauka/Prokrastynacja",
+ "healthHabit": "Jem zdrowo/niezdrowo",
+ "exerciseTodoText": "Ustaw plan ćwiczeń",
+ "exerciseHabit": "10 min cardio >> + 10 minut cardio"
}
diff --git a/website/common/locales/pl/subscriber.json b/website/common/locales/pl/subscriber.json
index a9254a06ae..f7d20f7def 100644
--- a/website/common/locales/pl/subscriber.json
+++ b/website/common/locales/pl/subscriber.json
@@ -225,5 +225,6 @@
"mysterySet201905": "Zestaw Oślepiającego Smoka",
"subCanceledTitle": "Subskrypcja anulowana",
"mysterySet201908": "Zestaw Wyluzowanego Fauna",
- "mysterySet201909": "Zestaw wesołego orzeszka"
+ "mysterySet201909": "Zestaw wesołego orzeszka",
+ "mysterySet202001": "Zestaw Legendarnego Lisa"
}
diff --git a/website/common/locales/pt/groups.json b/website/common/locales/pt/groups.json
index eb440008d3..f355345f55 100644
--- a/website/common/locales/pt/groups.json
+++ b/website/common/locales/pt/groups.json
@@ -23,8 +23,8 @@
"glossary": "Glossário",
"wiki": "Wiki",
"wikiLink": "Wiki",
- "reportAP": "Reportar um Problema",
- "requestAF": "Solicitar uma Funcionalidade",
+ "reportAP": "Reportar um problema",
+ "requestAF": "Solicitar uma funcionalidade",
"community": "Fórum da Comunidade",
"dataTool": "Ferramenta de Exibição de Dados",
"resources": "Recursos",
diff --git a/website/common/locales/pt_BR/achievements.json b/website/common/locales/pt_BR/achievements.json
index e1ff2d40b3..5f2424a1e4 100644
--- a/website/common/locales/pt_BR/achievements.json
+++ b/website/common/locales/pt_BR/achievements.json
@@ -40,5 +40,28 @@
"achievementPearlyPro": "Perolado Pro",
"achievementPrimedForPaintingModalText": "Você coletou todos os Mascotes brancos!",
"achievementPrimedForPaintingText": "Coletou todos os Mascotes brancos.",
- "achievementPrimedForPainting": "Preparado para pintura"
+ "achievementPrimedForPainting": "Preparado para pintura",
+ "achievementPurchasedEquipmentModalText": "Equipamento é um meio de personalizar seu avatar e melhorar suas estatísticas",
+ "achievementPurchasedEquipmentText": "Comprou sua primeira peça de equipamento.",
+ "achievementPurchasedEquipment": "Comprar equipamento",
+ "achievementFedPetModalText": "Há diferentes tipos de comida, mas os mascotes podem ser exigentes",
+ "achievementFedPetText": "Alimentou seu primeiro mascote.",
+ "achievementFedPet": "Alimentar um Mascote",
+ "achievementHatchedPetModalText": "Vá até o seu inventário e tente combinar uma poção de eclosão e um ovo",
+ "achievementHatchedPetText": "Chocou seu primeiro mascote.",
+ "achievementHatchedPet": "Chocar um Mascote",
+ "achievementCompletedTaskModalText": "Marque qualquer uma das suas tarefas para ganhar recompensas",
+ "achievementCompletedTaskText": "Concluiu sua primeira tarefa.",
+ "achievementCompletedTask": "Concluir uma tarefa",
+ "achievementCreatedTaskModalText": "Adicione uma tarefa para algo que você gostaria de realizar esta semana",
+ "achievementCreatedTaskText": "Criou sua primeira tarefa.",
+ "achievementCreatedTask": "Criar uma Tarefa",
+ "hideAchievements": "Ocultar <%= category %>",
+ "showAllAchievements": "Exibir todos(as) <%= category %>",
+ "onboardingCompleteDesc": "Você ganhou 5 conquistas e 100 peças de ouro por completar a lista.",
+ "earnedAchievement": "Você ganhou uma conquista!",
+ "viewAchievements": "Visualizar Conquistas",
+ "letsGetStarted": "Vamos começar!",
+ "onboardingProgress": "<%= percentage %>% concluído",
+ "gettingStartedDesc": "Vamos criar uma tarefa, concluí-la e, então, conferir suas recompensas. Você ganhará 5 conquistas e 100 peças ouro assim que terminar!"
}
diff --git a/website/common/locales/pt_BR/backgrounds.json b/website/common/locales/pt_BR/backgrounds.json
index d7d1247319..bb5db41cf9 100644
--- a/website/common/locales/pt_BR/backgrounds.json
+++ b/website/common/locales/pt_BR/backgrounds.json
@@ -485,5 +485,12 @@
"backgroundWinterNocturneNotes": "Aproveite as luzes das estrelas de uma Noite de Inverno.",
"backgroundWinterNocturneText": "Noite de Inverno",
"backgroundHolidayWreathNotes": "Enfeite seu avatar com uma perfumada Guirlanda Festiva.",
- "backgroundHolidayWreathText": "Guirlanda Festiva"
+ "backgroundHolidayWreathText": "Guirlanda Festiva",
+ "backgroundSnowglobeNotes": "Agite um globo de neve e tome o seu lugar em um microcosmo de uma paisagem de inverno.",
+ "backgroundSnowglobeText": "Globo de neve",
+ "backgroundDesertWithSnowNotes": "Testemunhe a beleza rara e tranquila de um deserto nevado.",
+ "backgroundDesertWithSnowText": "Deserto Nevado",
+ "backgroundBirthdayPartyNotes": "Comemore a festa de aniversário do(a) seu/sua habiticano(a) favorito(a).",
+ "backgroundBirthdayPartyText": "Festa de Aniversário",
+ "backgrounds012020": "Conjunto 68: Lançado em Janeiro de 2020"
}
diff --git a/website/common/locales/pt_BR/challenge.json b/website/common/locales/pt_BR/challenge.json
index 151664b0d5..aca98e4b9c 100644
--- a/website/common/locales/pt_BR/challenge.json
+++ b/website/common/locales/pt_BR/challenge.json
@@ -1,11 +1,11 @@
{
"challenge": "Desafio",
- "challengeDetails": "Os desafios são eventos comunitários em que os jogadores competem e ganham prêmios ao completar um grupo de determinadas tarefas.",
+ "challengeDetails": "Os desafios são eventos comunitários em que os jogadores competem e ganham prêmios ao completar um conjunto de determinadas tarefas.",
"brokenChaLink": "Link de Desafio Quebrado",
"brokenTask": "Link de Desafio Quebrado: essa tarefa era parte de um desafio, mas foi removida dele. O que gostaria de fazer?",
"keepIt": "Mantê-la",
"removeIt": "Removê-la",
- "brokenChallenge": "Link de Desafio Quebrado: essa tarefa era parte de um desafio, mas o desafio (ou grupo) foi deletado. O que deseja fazer com as tarefas do desafio que ficaram?",
+ "brokenChallenge": "Link de Desafio Quebrado: esta tarefa fazia parte de um desafio, mas o desafio (ou grupo) foi excluído. O que deseja fazer com as tarefas do desafio que ficaram?",
"keepThem": "Manter Tarefas",
"removeThem": "Remover Tarefas",
"challengeCompleted": "Esse desafio está encerrado e o vencedor foi <%= user %>! O que deseja fazer com as tarefas do desafio que ficaram?",
@@ -94,7 +94,7 @@
"shortNameTooShort": "O nome da etiqueta deve ter pelo menos 3 caracteres.",
"joinedChallenge": "Entrou em um Desafio",
"joinedChallengeText": "Este usuário testou seus limites ao entrar em um Desafio!",
- "myChallenges": "Meus desafios",
+ "myChallenges": "Meus Desafios",
"findChallenges": "Encontre Desafios",
"noChallengeTitle": "Você não participa de nenhum desafio.",
"challengeDescription1": "Desafios são eventos comunitários em que os jogadores competem e ganham prêmios ao completarem um grupo de tarefas relacionadas a esses desafios.",
diff --git a/website/common/locales/pt_BR/character.json b/website/common/locales/pt_BR/character.json
index 6122604bf3..ab18ead2f0 100644
--- a/website/common/locales/pt_BR/character.json
+++ b/website/common/locales/pt_BR/character.json
@@ -168,8 +168,8 @@
"youDied": "Você Morreu!",
"dieText": "Você perdeu um Nível, todo seu Ouro, e uma peça aleatória de Equipamento. Erga-se, Habiticano, e tente novamente! Acabe com esses Hábitos negativos, esteja atento à realização de suas Diárias, e afaste a morte com uma Poção de Vida se vacilar!",
"sureReset": "Você tem certeza? Isso irá reiniciar a classe do seu personagem e os Pontos de Atributo distribuídos (você receberá eles de volta para redistribuir) e custará 3 gemas.",
- "purchaseFor": "Comprar por <%= cost %> Gemas?",
- "purchaseForHourglasses": "Comprar por <%= cost %> Ampulhetas?",
+ "purchaseFor": "Comprar por <%= cost %> Gema(s)?",
+ "purchaseForHourglasses": "Comprar por <%= cost %> Ampulheta(s)?",
"notEnoughMana": "Mana insuficiente.",
"invalidTarget": "Você não pode utilizar uma habilidade aqui.",
"youCast": "Você lança <%= spell %>.",
@@ -213,8 +213,8 @@
"photo": "Foto",
"info": "Informações",
"joined": "Entrou",
- "totalLogins": "Total de Check Ins",
- "latestCheckin": "Último Check In",
+ "totalLogins": "Total de check-ins",
+ "latestCheckin": "Último check-in",
"editProfile": "Editar perfil",
"challengesWon": "Desafios Vencidos",
"questsCompleted": "Missões Completas",
@@ -225,7 +225,7 @@
"offHand": "Mão Secundária",
"statPoints": "Pontos de Atributo",
"pts": "pts",
- "purchaseForGold": "Comprar por <%= cost %> peças de Ouro?",
+ "purchaseForGold": "Comprar por <%= cost %> peça(s) de Ouro?",
"chatCastSpellParty": "<%= username %> lançou <%= spell %> no Grupo.",
"chatCastSpellUser": "<%= username %> lançou <%= spell %> em <%= target %>.",
"purchasePetItemConfirm": "Essa compra poderia ultrapassar o número de itens que você precisa para chocar todos os possíveis <%= itemText %> animais de estimação. Você tem certeza?"
diff --git a/website/common/locales/pt_BR/communityguidelines.json b/website/common/locales/pt_BR/communityguidelines.json
index 37a969527c..fb5815684e 100644
--- a/website/common/locales/pt_BR/communityguidelines.json
+++ b/website/common/locales/pt_BR/communityguidelines.json
@@ -106,7 +106,7 @@
"commGuideOnGitHub": "<%= gitHubName %> no GitHub",
"commGuidePara010": "Também existem vários Moderadores que ajudam os membros da equipe. Eles foram selecionados cuidadosamente, então, por favor, tratem-os com respeito e escutem suas sugestões.",
"commGuidePara011": "Os Moderadores atuais são (da esquerda para a direita):",
- "commGuidePara011a": "no chat da Taverna",
+ "commGuidePara011a": "no bate-papo da Taverna",
"commGuidePara011b": "no GitHub/Wikia",
"commGuidePara011c": "na Wikia",
"commGuidePara011d": "no GitHub",
diff --git a/website/common/locales/pt_BR/content.json b/website/common/locales/pt_BR/content.json
index c10313d661..0e5c666373 100644
--- a/website/common/locales/pt_BR/content.json
+++ b/website/common/locales/pt_BR/content.json
@@ -235,10 +235,10 @@
"foodRottenMeatThe": "a Carne Estragada",
"foodRottenMeatA": "Carne Estragada",
"foodCottonCandyPink": "Algodão-Doce Rosa",
- "foodCottonCandyPinkThe": "a Bala de Algodão-Doce Rosa",
- "foodCottonCandyPinkA": "Bala de Algodão-Doce Rosa",
- "foodCottonCandyBlue": "Algodão-Doce Azul",
- "foodCottonCandyBlueThe": "a Bala de Algodão-Doce Azul",
+ "foodCottonCandyPinkThe": "a bala de algodão-doce rosa",
+ "foodCottonCandyPinkA": "Bala de algodão-doce rosa",
+ "foodCottonCandyBlue": "Algodão-doce azul",
+ "foodCottonCandyBlueThe": "a bala de algodão-doce azul",
"foodCottonCandyBlueA": "Bala de Algodão-Doce Azul",
"foodHoney": "Mel",
"foodHoneyThe": "o Mel",
@@ -352,5 +352,6 @@
"questEggDolphinMountText": "Golfinho",
"hatchingPotionShadow": "Sombra",
"premiumPotionUnlimitedNotes": "Não utilizável em ovos de mascotes adquiridos em missões.",
- "hatchingPotionAmber": "Âmbar"
+ "hatchingPotionAmber": "Âmbar",
+ "hatchingPotionAurora": "Aurora"
}
diff --git a/website/common/locales/pt_BR/contrib.json b/website/common/locales/pt_BR/contrib.json
index f413524c8f..7e7e5e5e01 100644
--- a/website/common/locales/pt_BR/contrib.json
+++ b/website/common/locales/pt_BR/contrib.json
@@ -11,7 +11,7 @@
"tierStaff": "Equipe (Heroicos)",
"tierNPC": "NPC",
"friend": "Amigo",
- "friendFirst": "Quando sua primeira contribuição for implementada, você receberá a medalha de Contribuidor do Habitica. Seu nome, no chat da Taverna, mostrará orgulhosamente que você é um contribuidor. Como recompensa pelo seu trabalho, você também receberá 3 Gemas.",
+ "friendFirst": "Quando sua primeira contribuição for implementada, você receberá a medalha de Contribuidor do Habitica. Seu nome, no bate-papo da Taverna, mostrará orgulhosamente que você é um contribuidor. Como recompensa pelo seu trabalho, você também receberá 3 Gemas.",
"friendSecond": "Quando sua segunda contribuição for implementada, a Armadura de Cristal ficará disponível para compra na loja de Recompensas. Como recompensa pelo seu trabalho contínuo, você também receberá 3 Gemas.",
"elite": "Elite",
"eliteThird": "Quando sua terceira contribuição for implementada, o Elmo de Cristal ficará disponível para compra na loja de Recompensas. Como recompensa pelo seu trabalho contínuo, você também receberá 3 Gemas.",
diff --git a/website/common/locales/pt_BR/faq.json b/website/common/locales/pt_BR/faq.json
index da0746e78b..05386a3b0c 100644
--- a/website/common/locales/pt_BR/faq.json
+++ b/website/common/locales/pt_BR/faq.json
@@ -21,7 +21,7 @@
"androidFaqAnswer4": "Existem diversas coisas que podem fazer você levar dano. Primeiro, se você deixar uma Diária incompleta até o fim do dia, ela te dará dano. Segundo, se você fizer um mau Hábito, ele te dará dano. Finalmente, se você estiver em uma Missão de Chefão com seu Grupo e um de seus companheiros não tiver completado todas suas Diárias, o Chefão irá te atacar.\n\nO principal modo de se curar é ganhando um nível, que restaura toda a sua vida. Você também pode comprar uma Poção de Vida com ouro na aba de Recompensas. Além disso, após o nível 10, você pode escolher se tornar um Curandeiro e então aprenderá habilidades de cura. Se você está em um grupo com um Curandeiro, ele pode te curar também.",
"webFaqAnswer4": "Existem diversas coisas que podem fazer você levar dano. Primeiro, se você deixar uma Diária incompleta até o fim do dia, ela te dará dano. Segundo, se você fizer um mau Hábito, ele te dará dano. Finalmente, se você estiver em uma Missão de Chefão com seu Grupo e um de seus companheiros não tiver completado todas suas Diárias, o Chefão irá te atacar. O principal modo de se curar é ganhando um nível, que restaura toda sua vida. Você também pode comprar uma Poção de Vida com ouro na coluna de Recompensas. Além disso, após o nível 10, você pode escolher se tornar um Curandeiro e então você aprenderá habilidades de cura. Se você está em um grupo com um Curandeiro, ele pode te curar também. Leia mais clicando em \"Grupo\" na barra de navegação.",
"faqQuestion5": "Como jogo Habitica com meus amigos?",
- "iosFaqAnswer5": "O melhor jeito é convida-los para um Grupo com você! Grupos podem fazer missões, batalhar contra monstros e usar habilidades para ajudar um ao outro. Vá em Menu > Grupo e clique \"Criar Novo Grupo\" se você ainda não tiver um Grupo. Em seguida toque na lista de Membros e toque em Convidar, no canto superior direito, para convidar amigos usando suas IDs de Usuário (uma linha de números e letras que pode ser encontrada em Configurações > Detalhes da Conta no aplicativo, e Configurações > API no site). No site, você também pode convidar amigos via email, que também adicionaremos ao aplicativo em uma atualização futura.\n\nNo site, você e seus amigos também podem se unir a Guildas, que são salas de chat públicas. Guildas serão adicionadas ao aplicativo em uma atualização futura!",
+ "iosFaqAnswer5": "O melhor jeito é convida-los para um Grupo com você! Grupos podem fazer missões, batalhar contra monstros e usar habilidades para ajudar um ao outro. Vá em Menu > Grupo e clique \"Criar Novo Grupo\" se você ainda não tiver um Grupo. Em seguida toque na \"Lista de membros\" e toque em \"Convidar\", no canto superior direito, para convidar amigos usando suas IDs de usuário (uma linha de números e letras que pode ser encontrada em Configurações > Detalhes da conta no aplicativo, e Configurações > API no site). No site, você também pode convidar amigos via e-mail, que também adicionaremos ao aplicativo em uma atualização futura.\n\nNo site, você e seus amigos também podem se unir a Guildas, que são salas públicas de bate-papo. Guildas serão adicionadas ao aplicativo em uma atualização futura!",
"androidFaqAnswer5": "O melhor jeito é convidá-los para um grupo com você! Grupos podem ir em missões, batalhar monstros e lançar habilidades para dar suporte um ao outro. Vá ao [site](https://habitica.com/) para criar um se você ainda não faz parte de um grupo. Vocês também podem juntar-se a guildas (Social > Guildas). Guildas são salas de chats com foco em interesses compartilhados ou na busca de um objetivo em comum, podendo ser públicas ou privadas. Você pode se juntar com quantas guildas quiser, mas somente um grupo.\n\nPara informações mais detalhadas, acesse as páginas da wiki em [Grupos](https://habitica.fandom.com/pt-br/wiki/Party) e [Guildas](https://habitica.fandom.com/pt-br/wiki/Guilds).",
"webFaqAnswer5": "A melhor forma é convidá-los para um Grupo contigo clicando em \"Grupo\" na barra de navegação. Grupos podem fazer missões, lutar contra monstros e lançar habilidades para ajudar uns aos outros. Vocês também podem entrar em guildas juntos (clique em \"Guildas\" na barra de navegação). Guildas são salas de chat focadas em interesses em comum ou na busca de um objetivo mútuo e podem ser públicas ou privadas. Você pode entrar em quantas guildas quiser, mas apenas um grupo. Para mais informações, verifique as páginas da wiki sobre [Grupos](https://habitica.fandom.com/pt-br/wiki/Grupo) e [Guildas](https://habitica.fandom.com/pt-br/wiki/Guildas).",
"faqQuestion6": "Como consigo um Mascote ou Montaria?",
@@ -45,14 +45,14 @@
"androidFaqAnswer10": "Gemas são compradas com dinheiro real ao clicar no ícone de Gema no cabeçalho. Ao comprar gemas, as pessoas ajudam a manter o site funcionando. Ficamos muito felizes com seu apoio!\n\nAlém de comprar Gemas diretamente, existem outras três maneiras em que jogadores podem adquirir Gemas:\n\n* Ganhe um Desafio que tenha sido feito por outro jogador. Vá em Social > Desafios para entrar em alguns.\n* Assine e desboquei a habilidade de comprar uma certa quantidade de Gemas por mês.\n* Contribua pro Habitica com suas habilidades. Veja a página da Wiki [Contribuindo para o Habitica](https://habitica.fandom.com/pt-br/wiki/Contributing_to_Habitica).\n\nLembre-se que itens que são comprados com Gemas não oferecem nenhuma vantagem estatística, de forma que os jogadores ainda poderão usar o app sem elas!",
"webFaqAnswer10": "Gemas são [compradas com dinheiro real](https://habitica.com/#/options/settings/subscription), apesar de que [assinantes](https://habitica.com/#/options/settings/subscription) podem comprá-las usando Ouro. Quando alguém assina o site ou compra Gemas, esta pessoa está nos ajudando a manter o site funcionando. Ficamos muito agradecidos com esse suporte!Além de comprar Gemas diretamente ou se tornar assinante, existem outras duas maneiras de se conseguir Gemas:\n* Vença um Desafio feito por outro jogador em Desafios > Descubra.\n* Contribua com seus talentos para o projeto do Habitica. Veja essa página da wiki para mais detalhes: [Contribuindo com o Habitica](https://habitica.fandom.com/pt-br/wiki/Contributing_to_Habitica). Tenha em mente que itens comprados com Gemas não oferecem nenhuma vantagem de atributos então todos podem utilizar o site sem elas!",
"faqQuestion11": "Como eu relato um bug ou solicito uma funcionalidade?",
- "iosFaqAnswer11": "Você pode relatar um bug, solicitar uma funcionalidade ou enviar sua opinião através do Menu > Sobre > Reportar um Problema e Menu > Sobre > Enviar Opinião! Vamos fazer tudo que pudermos para te ajudar.",
- "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!",
+ "iosFaqAnswer11": "Você pode relatar um bug, solicitar uma funcionalidade ou enviar sua opinião através do Menu > Sobre > Reportar um problema e Menu > Sobre > Enviar Opinião! Vamos fazer tudo que pudermos para te ajudar.",
+ "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 bate-papo. 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](https://habitica.fandom.com/pt-br/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](https://habitica.fandom.com/pt-br/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](https://habitica.fandom.com/pt-br/wiki/World_Bosses) na wiki.",
- "iosFaqStillNeedHelp": "Se você tem uma pergunta que não está no [FAQ da Wiki](https://habitica.fandom.com/pt-br/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](https://habitica.fandom.com/pt-br/wiki/FAQ), venha perguntar no chat da Taverna em Menu > Taverna! Ficamos felizes em ajudar.",
+ "iosFaqStillNeedHelp": "Se você tem uma pergunta que não está no [FAQ da Wiki](https://habitica.fandom.com/pt-br/wiki/FAQ), venha perguntar no bate-papo 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](https://habitica.fandom.com/pt-br/wiki/FAQ), venha perguntar no bate-papo 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](https://habitica.fandom.com/pt-br/wiki/FAQ), pergunte na [Guilda Brasil](https://habitica.com/groups/guild/ac9ff1fd-50fc-46a6-9791-e1833173dab3)! Ficaremos felizes em ajudar."
}
diff --git a/website/common/locales/pt_BR/front.json b/website/common/locales/pt_BR/front.json
index 4ad467287b..b0258624cf 100644
--- a/website/common/locales/pt_BR/front.json
+++ b/website/common/locales/pt_BR/front.json
@@ -23,11 +23,11 @@
"communityBug": "Reportar Bug",
"communityExtensions": "Add-ons e Extensões",
"communityFacebook": "Facebook",
- "communityFeature": "Solicitar Funcionalidade",
+ "communityFeature": "Solicitar funcionalidade",
"communityForum": "Fórum",
"communityKickstarter": "Kickstarter",
"communityReddit": "Reddit",
- "companyAbout": "Como Funciona",
+ "companyAbout": "Como funciona",
"companyBlog": "Blog",
"devBlog": "Blog do Desenvolvedor",
"companyContribute": "Contribua",
@@ -331,5 +331,6 @@
"getStarted": "Comece já!",
"mobileApps": "Aplicativos Móveis",
"learnMore": "Aprenda Mais",
- "communityInstagram": "Instagram"
+ "communityInstagram": "Instagram",
+ "minPasswordLength": "Senhas devem possuir 8 caracteres ou mais."
}
diff --git a/website/common/locales/pt_BR/gear.json b/website/common/locales/pt_BR/gear.json
index 13cec31a5a..adc40a00e5 100644
--- a/website/common/locales/pt_BR/gear.json
+++ b/website/common/locales/pt_BR/gear.json
@@ -2,7 +2,7 @@
"set": "Conjunto",
"equipmentType": "Tipo",
"klass": "Classe",
- "groupBy": "Organizar Por <%= type %>",
+ "groupBy": "Organizar por <%= type %>",
"classBonus": "(Este item foi feito para sua classe, então tem um multiplicador de atributos adicional de 1.5x.)",
"classArmor": "Armadura da Classe",
"featuredset": "Conjunto em Destaque: <%= name %>",
@@ -279,7 +279,7 @@
"weaponSpecialWinter2019WarriorText": "Alabarda de Floco de Neve",
"weaponSpecialWinter2019WarriorNotes": "Este floco de neve cresceu, cristal por cristal, e tornou-se uma lâmina dura de como diamante. Aumenta Força em <%= str %>. Equipamento Edição Limitada de Inverno 2018-2019.",
"weaponSpecialWinter2019MageText": "Cajado do Dragão Ardente",
- "weaponSpecialWinter2019MageNotes": "Cuidado! Este cajado explosivo está pronto para ajudá-lo de todas as formas. Aumenta Inteligência em <%= int %> e Percepção em <%= per %>. Equipamento de Edição Limitada Inverno 2018-2019",
+ "weaponSpecialWinter2019MageNotes": "Cuidado! Este cajado explosivo está pronto para ajudá-lo de todas as formas. Aumenta Inteligência em <%= int %> e Percepção em <%= per %>. Equipamento de Edição Limitada do Inverno de 2018-2019.",
"weaponSpecialWinter2019HealerText": "Varinha Invernal",
"weaponSpecialWinter2019HealerNotes": "O inverno pode ser uma época de descanso e cura, e assim essa varinha invernal mágica pode ajudar a aliviar as mágoas mais graves. Aumenta Inteligência em <%= int %>. Equipamento de Edição Limitada Inverno de 2018-2019.",
"weaponMystery201411Text": "Garfo de Banquete",
@@ -1978,10 +1978,52 @@
"weaponMystery201911Text": "Cajado de cristal encantado",
"backMystery201912Notes": "Deslize silenciosamente pelos campos de neve e montanhas cintilantes com essas asas geladas. Não confere benefícios. Item de Assinante, Dezembro de 2019.",
"backMystery201912Text": "Asas do(a) Duende Polar",
- "headMystery201912Notes": "Este floco de neve cintilante garante resistência ao frio cortante, não importa o quão alto você voe. Não confere benefícios. Item de Assinante, Dezembro de 2019.",
+ "headMystery201912Notes": "Este floco de neve cintilante garante resistência ao frio cortante, não importa o quão alto você voe. Não confere benefícios. Item de assinante, Dezembro de 2019.",
"headMystery201912Text": "Coroa do(a) Duende Polar",
"headArmoireEarflapHatNotes": "Se você deseja manter a cabeça quentinha, este chapéu irá te cobrir! Aumenta tanto a Inteligência quanto a Força em <%= attrs %>. Armário Encantado: Conjunto Casaco de lã (Item 2 de 2).",
"headArmoireEarflapHatText": "Toca com aba",
"armorArmoireDuffleCoatNotes": "Viaje reinos gelados em grande estilo com este aconchegante casaco de lã. Aumenta tanto a Constituição quanto a Percepção em <%= attrs %>. Armário Encantado: Conjunto Casaco de lã (Item 1 de 2).",
- "armorArmoireDuffleCoatText": "Casaco de lã"
+ "armorArmoireDuffleCoatText": "Casaco de lã",
+ "armorSpecialWinter2020RogueNotes": "Embora não haja dúvidas de que você possa enfrentar tempestades com o calor interno de sua motivação e devoção, não faz mal se vestir para o clima. Aumenta Percepção em <%= per %>. Equipamento de Edição Limitada do Inverno de 2019-2020.",
+ "shieldSpecialWinter2020HealerNotes": "Você sente que é bom demais para este mundo tão puro? Somente este belo tempero o fará. Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada do Inverno de 2019-2020.",
+ "shieldSpecialWinter2020HealerText": "Bastão de canela gigante",
+ "shieldSpecialWinter2020WarriorNotes": "Use-o como escudo até as sementes caírem e, então, você poderá colocá-lo em uma coroa de flores! Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada do Inverno de 2019-2020.",
+ "shieldSpecialWinter2020WarriorText": "Cone arredondado de Coníferas",
+ "headSpecialWinter2020HealerNotes": "Por favor, remova isso da sua cabeça antes que tente preparar um chai ou café com ele. Aumenta Inteligência em <%= int %>. Equipamento de Edição Limitada do Inverno 2019-2020.",
+ "headSpecialWinter2020HealerText": "Emblema de Estrela-de-anis",
+ "headSpecialWinter2020MageNotes": "Oh! Como os sinos / Doces sinos dourados / Todos parecem dizer, / \"Lance 'Explosão de chamas'\". Aumenta Percepção em <%= per %>. Equipamento de Edição Limitada do Inverno de 2019-2020.",
+ "headSpecialWinter2020MageText": "Coroa de sino",
+ "headSpecialWinter2020WarriorNotes": "Uma sensação espinhosa no couro cabeludo é um preço pequeno a pagar pela magnificência sazonal. Aumenta Força em <%= str %>. Equipamento de Edição Limitada do Inverno de 2019-2020.",
+ "headSpecialWinter2020WarriorText": "Cocar de poeira de neve",
+ "headSpecialWinter2020RogueNotes": "Quando um(a) Ladino(a) anda pelas ruas com aquele chapéu, as pessoas sabem que ele(a) não tem medo de nada. Aumenta Percepção em <%= per %>. Equipamento de Edição Limitada do Inverno de 2019-2020.",
+ "headSpecialWinter2020RogueText": "Boné de meia fina",
+ "armorSpecialWinter2020HealerNotes": "Um vestido exuberante para aqueles com entusiasmo festivo! Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada do Inverno de 2019-2020.",
+ "armorSpecialWinter2020HealerText": "Vestido de casca de laranja",
+ "armorSpecialWinter2020MageNotes": "Toque no novo ano aquecido, confortável e protegido contra vibrações excessivas. Aumenta Inteligência em <%= int %>. Equipamento de Edição Limitada do Inverno de 2019-2020.",
+ "armorSpecialWinter2020MageText": "Casaco curvo",
+ "armorSpecialWinter2020WarriorNotes": "Ó pinheiro poderoso, ó abeto imponente, empreste sua força. Ou, pelo menos, um pouco da sua Constituição! Aumenta Constituição em <%= con %>. Equipamento de Edição Limitada do Inverno de 2019-2020.",
+ "armorSpecialWinter2020WarriorText": "Armadura de casca",
+ "weaponSpecialWinter2020HealerNotes": "Acene com isto e seu aroma convocará seus amigos e ajudantes para começar a cozinhar! Aumenta Inteligência em <%= int %>. Equipamento de Edição Limitada do Inverno de 2019-2020.",
+ "weaponSpecialWinter2020HealerText": "Cetro de cravo",
+ "weaponSpecialWinter2020MageNotes": "Com a prática, você pode projetar essa mágica auditiva a qualquer frequência desejada: um zumbindo meditativo, uma harmonia festiva ou um ALARME PARA UMA TAREFA VERMELHA. Aumenta Inteligência em <%= int %> e Percepção em <%= per %>. Equipamento de Edição Limitada do Inverno de 2019-2020.",
+ "weaponSpecialWinter2020MageText": "Ondas sonoras vibrantes",
+ "weaponSpecialWinter2020WarriorNotes": "Voltem, esquilos! Vocês não pegarão nada disso!... Mas, se vocês querem tomar um chocolate quente, tudo bem. Aumenta Força em <%= str %>. Equipamento de Edição Limitada do Inverno de 2019-2020.",
+ "weaponSpecialWinter2020WarriorText": "Cone pontudo de coníferas",
+ "weaponSpecialWinter2020RogueNotes": "A escuridão é o elemento de um ladino. Quem melhor, então, para iluminar o caminho na época mais escura do ano? Aumenta Força em <%= str %>. Equipamento de Edição Limitada do Inverno de 2019-2020.",
+ "weaponSpecialWinter2020RogueText": "Haste de lanterna",
+ "armorSpecialWinter2020RogueText": "Jaqueta aerada",
+ "backMystery202001Notes": "Essas caudas macias contêm poderes celestiais e também um alto nível de fofura! Não confere benefícios. Item de assinante, Janeiro de 2020.",
+ "backMystery202001Text": "Cinco caudas de fábula",
+ "headMystery202001Notes": "Sua audição será tão nítida que você ouvirá as estrelas brilhando e a lua girando. Não confere benefícios. Item de assinante, Janeiro de 2020.",
+ "headMystery202001Text": "Orelhas da Raposa Fabulosa",
+ "headSpecialNye2019Notes": "Você recebeu um chapéu de festa escandaloso! Vista isso com orgulho ao tocar no Ano Novo! Não confere benefícios.",
+ "headSpecialNye2019Text": "Chapéu de festa escandaloso",
+ "shieldArmoireBirthdayBannerNotes": "Celebre o seu dia especial, o dia especial de alguém que você ama ou termine isso no aniversário da Habitica no dia 31 de janeiro! Aumenta Força em <%= str %>. Armário Encantado: Conjunto Feliz Aniversário (Item 4 de 4).",
+ "shieldArmoireBirthdayBannerText": "Banner de aniversário",
+ "headArmoireFrostedHelmNotes": "O capacete perfeito para qualquer celebração! Aumenta Inteligência em <%= int %>. Armário Encantado: Conjunto Feliz Aniversário (Item 1 de 4).",
+ "headArmoireFrostedHelmText": "Elmo polvilhado",
+ "armorArmoireLayerCakeArmorNotes": "É protetor e saboroso! Aumenta Constituição em <%= con %>. Armário Encantado: Conjunto Feliz Aniversário (Item 2 de 4).",
+ "armorArmoireLayerCakeArmorText": "Armadura Bolo de Camada",
+ "weaponArmoireHappyBannerNotes": "É um \"H\" para 'Happy' ou 'Habitica'? Você decide! Aumenta Percepção em <%= per %>. Armário Encantado: Conjunto Feliz Aniversário (Item 3 de 4).",
+ "weaponArmoireHappyBannerText": "Banner feliz"
}
diff --git a/website/common/locales/pt_BR/generic.json b/website/common/locales/pt_BR/generic.json
index 55a582c066..e39694058b 100644
--- a/website/common/locales/pt_BR/generic.json
+++ b/website/common/locales/pt_BR/generic.json
@@ -29,8 +29,8 @@
"titleSeasonalShop": "Loja Sazonal",
"titleSettings": "Configurações",
"saveEdits": "Salvar Edição",
- "showMore": "Mostrar Mais",
- "showLess": "Mostrar Menos",
+ "showMore": "Mostrar mais",
+ "showLess": "Mostrar menos",
"expandToolbar": "Expandir Barra de Ferramentas",
"collapseToolbar": "Esconder Barra de Ferramentas",
"markdownHelpLink": "Ajuda sobre formatação Markdown",
@@ -124,10 +124,10 @@
"menu": "Menu",
"notifications": "Notificações",
"noNotifications": "Você está com tudo em dia!",
- "noNotificationsText": "As fadas da notificação lhe deram uma rodada de aplausos barulhentos! Muito bem!",
+ "noNotificationsText": "As fadas das notificações te saúdam com uma calorosa salva de palmas! Muito bem!",
"clear": "Limpar",
"endTour": "Finalizar Tutorial",
- "audioTheme": "Tema de Áudio",
+ "audioTheme": "Tema de áudio",
"audioTheme_off": "Desligar",
"audioTheme_danielTheBard": "Daniel, O Bardo",
"audioTheme_wattsTheme": "Tema de Watts",
@@ -145,11 +145,11 @@
"audioTheme_pizildenTheme": "Tema do Pizilden",
"audioTheme_farvoidTheme": "Tema Farvoid",
"askQuestion": "Fazer uma Pergunta",
- "reportBug": "Reportar um Problema",
+ "reportBug": "Reportar um problema",
"HabiticaWiki": "A Wiki do Habitica",
"HabiticaWikiFrontPage": "http://habitica.fandom.com/pt-br/wiki/Habitica_Wiki",
"contributeToHRPG": "Contribuir com o Habitica",
- "overview": "Visão Geral para Novatos",
+ "overview": "Visão geral para iniciantes",
"January": "Janeiro",
"February": "Fevereiro",
"March": "Março",
@@ -281,7 +281,7 @@
"spirituality": "Espiritualidade",
"time_management": "Gestão de Tempo + Responsabilidade",
"recovery_support_groups": "Grupos de Apoio + Recuperação",
- "dismissAll": "Dispensar Tudo",
+ "dismissAll": "Dispensar tudo",
"messages": "Mensagens",
"emptyMessagesLine1": "Você não tem mensagens",
"emptyMessagesLine2": "Envie uma mensagem para iniciar uma conversa!",
@@ -294,5 +294,7 @@
"options": "Opções",
"demo": "Demonstração",
"loadEarlierMessages": "Carregar mensagens anteriores",
- "finish": "Finalizar"
+ "finish": "Finalizar",
+ "congratulations": "Parabéns!",
+ "onboardingAchievs": "Conquistas de integração"
}
diff --git a/website/common/locales/pt_BR/groups.json b/website/common/locales/pt_BR/groups.json
index 2872a1c009..f702b69fb4 100644
--- a/website/common/locales/pt_BR/groups.json
+++ b/website/common/locales/pt_BR/groups.json
@@ -1,6 +1,6 @@
{
- "tavern": "Chat da Taverna",
- "tavernChat": "Chat da Taverna",
+ "tavern": "Bate-papo da Taverna",
+ "tavernChat": "Bate-papo da Taverna",
"innCheckOut": "Sair da Pousada",
"innCheckIn": "Descansar na Pousada",
"innText": "Você está descansando na Pousada! Durante o check-in, suas Diárias não lhe causarão dano no final do dia, mas elas ainda irão atualizar todos os dias. Fique avisado: se você estiver participando de uma Missão de Chefão, o chefe ainda irá causar dano pelas Diárias perdidas dos membros do seu Grupo, a menos que eles também estejam na Pousada! Além disso, seu próprio dano ao Chefão (ou itens coletados) não será aplicado até que você saia da Pousada.",
@@ -13,8 +13,8 @@
"lookingForGroup": "Procurando Grupo (Pedir Convite)",
"dataDisplayTool": "Ferramenta de Exibição de Dados",
"reportProblem": "Reportar Bug",
- "requestFeature": "Solicitar Funcionalidade",
- "askAQuestion": "Fazer uma Pergunta",
+ "requestFeature": "Solicitar funcionalidade",
+ "askAQuestion": "Fazer uma pergunta",
"askQuestionGuild": "Fazer uma Pergunta (Guilda de Ajuda)",
"contributing": "Contribuindo",
"faq": "Perguntas Frequentes",
@@ -23,8 +23,8 @@
"glossary": "Glossário",
"wiki": "Wiki",
"wikiLink": "Wiki",
- "reportAP": "Reportar um Problema",
- "requestAF": "Solicitar Funcionalidade",
+ "reportAP": "Reportar um problema",
+ "requestAF": "Solicitar funcionalidade",
"community": "Fórum da comunidade",
"dataTool": "Ferramenta de Exibição de Dados",
"resources": "Recursos",
@@ -67,10 +67,10 @@
"partyLoading4": "Sua grupo está se materializando. Por favor, espere...",
"systemMessage": "Mensagem do Sistema",
"newMsgGuild": "<%= name %> tem novas publicações",
- "newMsgParty": "Seu grupo,<%= name %>, tem novas publicações",
- "chat": "Chat",
+ "newMsgParty": "Seu grupo, <%= name %>, tem novas publicações",
+ "chat": "Bate-papo",
"sendChat": "Enviar Mensagem",
- "toolTipMsg": "Atualizar Mensagens",
+ "toolTipMsg": "Atualizar mensagens",
"sendChatToolTip": "Você pode enviar uma mensagem pelo teclado dando tab até o botão \"Enviar Mensagem\" e pressionar Enter ou pressionar Control (Command no Mac) + Enter.",
"syncPartyAndChat": "Atualizar Grupo e Chat",
"guildBankPop1": "Banco da Guilda",
@@ -86,7 +86,7 @@
"logoUrl": "URL do Logo",
"assignLeader": "Nomear Líder do Grupo",
"members": "Membros",
- "memberList": "Lista de Membros",
+ "memberList": "Lista de membros",
"partyList": "Ordem dos membros do grupo no cabeçalho",
"banTip": "Expulsar Membro",
"moreMembers": "mais membros",
@@ -114,7 +114,7 @@
"sortLogin": "Ordenar por Data de Login",
"sortLevel": "Ordenar por Nível",
"sortName": "Ordenar por Nome",
- "sortTier": "Ordernar por Nível de Contribuidor",
+ "sortTier": "Ordenar por Nível de Contribuidor",
"ascendingAbbrev": "Cresc",
"descendingAbbrev": "Decres",
"applySortToHeader": "Aplicar Ordenação para o Cabeçalho do Grupo",
@@ -132,14 +132,14 @@
"possessiveParty": "Grupo de <%= name %>",
"clearAll": "Deletar Todas as Mensagens",
"confirmDeleteAllMessages": "Tem certeza que deseja deletar todas as mensagens na sua caixa de entrada? Outros usuários ainda irão ver as mensagens que você enviou para eles.",
- "PMPlaceholderTitle": "Nada Aqui Ainda",
+ "PMPlaceholderTitle": "Ainda não há nada por aqui",
"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.",
- "PMReceive": "Receba Mensagens Diretas",
- "PMEnabledOptPopoverText": "Mensagens Diretas estão ativas. Usuários podem te contatar por meio do seu perfil.",
- "PMDisabledOptPopoverText": "Mensagens Diretas estão inativas. Ative esta opção para que usuários te contatem por meio do seu perfil.",
- "PMDisabledCaptionTitle": "Mensagens Diretas estão desabilitadas",
+ "PMReceive": "Receber mensagens privadas",
+ "PMEnabledOptPopoverText": "Mensagens privadas estão ativas. Usuários podem te contatar por meio do seu perfil.",
+ "PMDisabledOptPopoverText": "Mensagens privadas estão inativas. Ative esta opção para que usuários te contatem por meio do seu perfil.",
+ "PMDisabledCaptionTitle": "Mensagens privadas estão desabilitadas",
"PMDisabledCaptionText": "Você ainda pode enviar mensagens, mas ninguém pode enviar uma à você.",
"block": "Bloquear",
"unblock": "Desbloquear",
@@ -161,10 +161,10 @@
"abuseFlagModalButton": "Reportar Violação",
"abuseReported": "Obrigado por reportar essa violação. Os moderadores foram notificados.",
"abuseAlreadyReported": "Você já reportou essa mensagem.",
- "whyReportingPost": "Por quê você está denunciando esta publicação?",
+ "whyReportingPost": "Por que você está denunciando esta publicação?",
"whyReportingPostPlaceholder": "Por favor, ajude nossos moderadores explicando qual violação você esta denunciando nesta publicação, como por exemplo: spam, palavrões, profanação religiosa, intolerância, insultos, conteúdo adulto e violência.",
"optional": "Opcional",
- "needsText": "Por favor digite uma mensagem.",
+ "needsText": "Por favor, digite uma mensagem.",
"needsTextPlaceholder": "Digite sua mensagem aqui.",
"copyMessageAsToDo": "Copiar mensagem como Afazer",
"copyAsTodo": "Copiar como Afazer",
@@ -232,12 +232,12 @@
"inviteMissingUuid": "ID do usuário ausente no convite",
"inviteMustNotBeEmpty": "O convite não pode estar vazio.",
"partyMustbePrivate": "Grupos precisam ser privados",
- "userAlreadyInGroup": "ID de Usuário: <%= userId %>, Usuário \"<%= username %>\" já está no grupo.",
+ "userAlreadyInGroup": "ID de usuário: <%= userId %>, usuário \"<%= username %>\" já está no grupo.",
"youAreAlreadyInGroup": "Você já é um membro deste grupo.",
"cannotInviteSelfToGroup": "Você não pode se convidar para um grupo.",
"userAlreadyInvitedToGroup": "ID de Usuário: <%= userId %>, Usuário \"<%= username %>\" já foi convidado para o gupo.",
"userAlreadyPendingInvitation": "ID de Usuário: <%= userId %>, Usuário \"<%= username %>\" está com convite pendente.",
- "userAlreadyInAParty": "ID de Usuário: <%= userId %>, Usuário \"<%= username %>\" já está no grupo. ",
+ "userAlreadyInAParty": "ID de usuário: <%= userId %>, usuário \"<%= username %>\" já está em um grupo. ",
"userWithIDNotFound": "Usuário com id \"<%= userId %>\" não encontrado.",
"userWithUsernameNotFound": "Usuário com o nome de usuário \"<%= username %>\" não encontrado.",
"userHasNoLocalRegistration": "Usuário não tem um registro local (usuário, e-mail, senha).",
@@ -361,7 +361,7 @@
"guildBank": "Banco da Guilda",
"chatPlaceholder": "Digite sua mensagem para os membros da Guilda",
"partyChatPlaceholder": "Digite sua mensagem para os membros do Grupo",
- "fetchRecentMessages": "Atualizar Mensagens",
+ "fetchRecentMessages": "Atualizar mensagens",
"like": "Curtir",
"liked": "Curtido",
"joinGuild": "Entrar na Guilda",
@@ -377,7 +377,7 @@
"memberCount": "Quantidade de Membros",
"recentActivity": "Atividade Recente",
"myGuilds": "Minhas Guildas",
- "guildsDiscovery": "Encontre Guildas",
+ "guildsDiscovery": "Encontrar Guildas",
"role": "Cargo",
"guildOrPartyLeader": "Líder",
"guildLeader": "Líder da Guilda",
@@ -425,7 +425,7 @@
"upgrade": "Aprimorar",
"selectPartyMember": "Selecionar Membro do Grupo",
"areYouSureDeleteMessage": "Tem certeza que quer deletar esta mensagem?",
- "reverseChat": "Chat em Ordem Reversa",
+ "reverseChat": "Bate-papo em ordem reversa",
"invites": "Convites",
"details": "Detalhes",
"participantDesc": "Quando todos os membros tiverem aceitado ou rejeitado, a Missão começa. Somente aqueles que clicaram em \"aceitar\" poderão participar da Missão e receber as recompensas.",
@@ -438,7 +438,7 @@
"managerAdded": "Gestor adicionado com sucesso",
"managerRemoved": "Gestor removido com sucesso",
"leaderChanged": "O líder foi alterado",
- "groupNoNotifications": "Essa Guilda agora está grande demais para suportar notificações! Lembre de verificar todo dia para ver novas mensagens!",
+ "groupNoNotifications": "Essa Guilda agora está grande demais para suportar notificações! Lembre-se de verificá-la com frequência para ver novas mensagens!",
"whatIsWorldBoss": "O que é um Chefão Mundial?",
"worldBossDesc": "Um Chefão Global é um evento especial que une a comunidade do Habitica para derrotar um monstro poderoso com suas tarefas! Todos os usuários do Habitica são recompensados por sua derrota, mesmo aqueles que estavam descansando na Pousada ou não utilizaram o Habitica durante o transcorrer da missão.",
"worldBossLink": "Leia mais sobres os Chefões Globais passados de Habitica na nossa Wiki.",
@@ -451,7 +451,7 @@
"groupPlanDesc": "Gerenciar um time pequeno ou organizar tarefas domésticas? Nosso planos do de Time te dão acesso exclusivo a um quadro para tarefas privadas e uma área de bate-papo dedicado a você e os membros dos seu grupo!",
"billedMonthly": "*cobrado como uma assinatura mensal",
"teamBasedTasksList": "Tarefas de Time",
- "teamBasedTasksListDesc": "Estabeleça uma lista de tarefas compartilhada de fácil visualização para o Time. Atribua tarefas para seus parceiros participantes do Time, ou deixe eles para eles reivindicar suas próprias tarefas para deixar claro que todo mundo está trabalhando!",
+ "teamBasedTasksListDesc": "Estabeleça uma lista de tarefas compartilhada de fácil visualização para o Time. Atribua tarefas para seus parceiros participantes do Time ou deixe-os reivindicarem suas próprias tarefas para deixar claro que todo mundo está trabalhando!",
"groupManagementControls": "Controles de Gestão de Time",
"groupManagementControlsDesc": "Use aprovações de tarefas para confirmar se uma tarefa foi realmente concluída, adicione Gestores de Time para dividir responsabilidades, e aproveite o chat privado do time para falar com todos os membros.",
"inGameBenefits": "Benefícios no jogo",
diff --git a/website/common/locales/pt_BR/limited.json b/website/common/locales/pt_BR/limited.json
index cc1cbed92f..ff3b8ba1e3 100644
--- a/website/common/locales/pt_BR/limited.json
+++ b/website/common/locales/pt_BR/limited.json
@@ -147,8 +147,8 @@
"dateEndJanuary": "31 de Janeiro",
"dateEndFebruary": "28 de fevereiro",
"winterPromoGiftHeader": "Presenteie alguém com uma assinatura e ganhe outra grátis !",
- "winterPromoGiftDetails1": "Apenas até o dia 15 de Janeiro, quando você presentear alguém com uma assinatura, você irá ganhar uma assinatura idêntica gratuitamente!",
- "winterPromoGiftDetails2": "Hey, se você ou a outra pessoa já tiver uma assinatura ativa, a nova somente irá iniciar depois da assinatura atual ser cancelada ou expirar. Muito obrigado por todo o apoio. <3",
+ "winterPromoGiftDetails1": "Apenas até o dia 6 de Janeiro, quando você presentear alguém com uma assinatura, você irá ganhar uma assinatura idêntica gratuitamente!",
+ "winterPromoGiftDetails2": "Por favor, note que se você ou a outra pessoa já tiver uma assinatura ativa, a nova será iniciada somente depois que a assinatura atual tiver sido cancelada ou expirada. Agradecemos seu apoio! <3",
"discountBundle": "pacote",
"g1g1Announcement": "O evento \"Dê uma Assinatura de presente e ganhe outra grátis\" está acontecendo agora!",
"g1g1Details": "Dê de presente uma assinatura para um amigo através do perfil dele e você receberá a mesma assinatura de graça!",
@@ -168,5 +168,10 @@
"fall2019OperaticSpecterSet": "Fantasma da Ópera (Ladino)",
"september2018": "Setembro de 2018",
"september2017": "Setembro de 2017",
- "augustYYYY": "Agosto <%= year %>"
+ "augustYYYY": "Agosto <%= year %>",
+ "decemberYYYY": "Dezembro <%= year %>",
+ "winter2020LanternSet": "Lanterna (Ladino)",
+ "winter2020WinterSpiceSet": "Tempero de inverno (Curandeiro)",
+ "winter2020CarolOfTheMageSet": "Cântico do Mago (Mago)",
+ "winter2020EvergreenSet": "Sempre-viva (Guerreiro)"
}
diff --git a/website/common/locales/pt_BR/loginincentives.json b/website/common/locales/pt_BR/loginincentives.json
index 4586839d97..bce9c9d204 100644
--- a/website/common/locales/pt_BR/loginincentives.json
+++ b/website/common/locales/pt_BR/loginincentives.json
@@ -9,7 +9,7 @@
"totalCheckins": "<%= count %> Check-Ins",
"checkinEarned": "Seu Contador de Check-In aumentou!",
"unlockedCheckInReward": "Você desbloqueou uma recompensa de Check-In!",
- "totalCheckinsTitle": "Total de Check-Ins",
+ "totalCheckinsTitle": "Total de check-ins",
"checkinProgressTitle": "Progresso até o próximo",
"incentiveBackgroundsUnlockedWithCheckins": "Você pode conseguir os Cenários Simples Bloqueados logando diariamente.",
"checkinReceivedAllRewardsMessage": "Você recebeu todos os prêmios de Check-In disponíveis! Parabéns!",
diff --git a/website/common/locales/pt_BR/messages.json b/website/common/locales/pt_BR/messages.json
index eb26980b5d..006f3f4583 100644
--- a/website/common/locales/pt_BR/messages.json
+++ b/website/common/locales/pt_BR/messages.json
@@ -52,14 +52,14 @@
"messageGroupChatNotFound": "Mensagem não encontrada!",
"messageGroupChatAdminClearFlagCount": "Somente um administrador pode remover o contador de denúncias!",
"messageCannotFlagSystemMessages": "Você não pode reportar uma mensagem do sistema. Caso precise relatar uma violação das Diretrizes de Comunidade relacionada a esta mensagem, por favor envie uma captura de tela e a explicação para o nosso Administrador da Comunidade através do e-mail <%= communityManagerEmail %>.",
- "messageGroupChatSpam": "Ops, parece que você está postando mensagens demais! Por favor aguarde um minuto e tente novamente. O chat da Taverna só suporta 200 mensagens por vez, então a Habitica recomenda postar mensagens longas e mais profundas e respostas consolidadoras. Mal posso esperar para ouvir o que você tem a dizer. :)",
+ "messageGroupChatSpam": "Ops, parece que você está postando mensagens demais! Por favor, aguarde um minuto e tente novamente. O bate-papo da Taverna suporta apenas 200 mensagens por vez, então o Habitica recomenda postar mensagens longas e mais profundas e respostas consolidadoras. Mal posso esperar para ouvir o que você tem a dizer. :)",
"messageCannotLeaveWhileQuesting": "Você não pode aceitar o convite deste grupo enquanto está em uma missão. Se você quiser entrar nesse grupo, deve primeiro abortar sua missão. Você poderá fazê-la a partir da página do grupo. Você receberá de volta o pergaminho de missão.",
"messageUserOperationProtected": "caminho `<%= operation %>` não foi salvo, já que é um caminho protegido.",
"messageUserOperationNotFound": "<%= operation %> operação não encontrada",
"messageNotificationNotFound": "Notificação não encontrada.",
"messageNotAbleToBuyInBulk": "Esse item não pode ser adquirido em quantidades maiores que 1.",
"notificationsRequired": "Os IDs de notificação são obrigatórios.",
- "unallocatedStatsPoints": "Você tem <%= points %> Pontos de Atributos não distribuidos",
+ "unallocatedStatsPoints": "Você tem <%= points %> Ponto(s) de Atributos não distribuídos",
"beginningOfConversation": "Este é o começo de sua conversa com <%= userName %>. Lembre-se da gentileza, respeito e de seguir as Diretrizes da Comunidade!",
"messageDeletedUser": "Desculpe, esse usuário deletou sua conta.",
"messageMissingDisplayName": "Faltando nome de exibição.",
diff --git a/website/common/locales/pt_BR/npc.json b/website/common/locales/pt_BR/npc.json
index d8f2a406da..4c02d099d7 100644
--- a/website/common/locales/pt_BR/npc.json
+++ b/website/common/locales/pt_BR/npc.json
@@ -76,7 +76,7 @@
"ianText": "Boas Vindas à Loja de Missões! Aqui você pode usar os Pergaminhos de Missões para lutar contra monstros com seus amigos. Não deixe de verificar nossa refinada lista de Pergaminhos de Missões para comprar à direita!",
"ianTextMobile": "Será que um pergaminho de missão te interessaria? Ative-os para lutar contra monstros com seu Grupo!",
"ianBrokenText": "Boas Vindas à Loja de Missões... Aqui você pode usar Pergaminhos de Missões para enfrentar monstros com seus amigos... Não deixe de dar uma olhada na nossa refinada coleção de Pergaminhos de Missões à venda na direita...",
- "featuredQuests": "Missões em Destaque!",
+ "featuredQuests": "Missões em destaque!",
"cannotBuyItem": "Você não pode comprar este item.",
"mustPurchaseToSet": "É necessário comprar <%= val %> para colocar em <%= key %>.",
"typeRequired": "Tipo é necessário",
@@ -169,5 +169,6 @@
"imReady": "Entre no Habitica",
"limitedOffer": "Disponível até <%= date %>",
"paymentAutoRenew": "Esta assinatura será renovada automaticamente até ser cancelada. Se você precisar cancelar, poderá fazê-lo através da configurações.",
- "paymentCanceledDisputes": "Enviamos uma confirmação de cancelamento para o seu e-mail. Se você não está vendo o e-mail, entre em contato para evitar cobranças futuras."
+ "paymentCanceledDisputes": "Enviamos uma confirmação de cancelamento para o seu e-mail. Se você não está vendo o e-mail, entre em contato para evitar cobranças futuras.",
+ "cannotUnpinItem": "Este item não pode ser desfixado."
}
diff --git a/website/common/locales/pt_BR/quests.json b/website/common/locales/pt_BR/quests.json
index bdb2ad64e0..d4f96a6865 100644
--- a/website/common/locales/pt_BR/quests.json
+++ b/website/common/locales/pt_BR/quests.json
@@ -118,7 +118,7 @@
"loginIncentiveQuestObtained": "Você ganhou essa missão por fazer check-in no Habitica <%= count %> vezes!",
"loginReward": "<%= count %> Check-ins",
"createAccountQuest": "Você recebeu esta missão quando se juntou ao Habitica! Se um amigo se juntar, ele também terá um.",
- "questBundles": "Pacotes de Missões com Desconto",
+ "questBundles": "Pacotes de Missões com cesconto",
"buyQuestBundle": "Comprar Pacote de Missões",
"noQuestToStart": "Não consegue achar uma missão? Experimente visitar a Loja de Missões no Mercado e veja os novos lançamentos!",
"pendingDamage": "<%= damage %> de dano acumulado",
@@ -137,5 +137,5 @@
"chatFindItems": "<%= username %> encontrou <%= items %>.",
"chatBossDefeated": "Você derrotou o(a) <%= bossName %>! Todos os membros do Grupo que participaram desta missão receberam recompensas por esta vitória.",
"chatBossDamage": "<%= username %> ataca <%= bossName %>, causando <%= userDamage %> de dano. <%= bossName %> ataca o Grupo e causa <%= bossDamage %> de dano.",
- "questInvitationNotificationInfo": "Você foi convidado(a) parar participar de uma missão"
+ "questInvitationNotificationInfo": "Você foi convidado(a) para participar de uma missão"
}
diff --git a/website/common/locales/pt_BR/questscontent.json b/website/common/locales/pt_BR/questscontent.json
index 5c7e2af606..2a5e4ae9af 100644
--- a/website/common/locales/pt_BR/questscontent.json
+++ b/website/common/locales/pt_BR/questscontent.json
@@ -1,11 +1,11 @@
{
"questEvilSantaText": "Noel Caçador",
- "questEvilSantaNotes": "Você escuta rugidos de agonia ao fundo dos Campos de Gelo. Você segue os rugidos - pontuados por um som de cacarejo - até uma clareira na floresta, onde você vê uma urso polar adulta. Ela se encontra enjaulada e acorrentada, lutando pela própria vida. Dançando em cima da jaula está um maldoso duende vestido com roupas que alguém não quis mais. Derrote o Noel Caçador e salve a fera!",
+ "questEvilSantaNotes": "Você escuta rugidos de agonia ao fundo dos Campos de Gelo. Você segue os rugidos - pontuados por um som de cacarejo - até uma clareira na floresta, onde você vê uma urso polar adulta. Ela se encontra enjaulada e acorrentada, lutando pela própria vida. Dançando em cima da jaula está um maldoso duende vestido com roupas que alguém não quis mais. Derrote o Noel Caçador e salve a fera!
Nota: “Noel Caçador” concede uma missão de conquista acumulativa, mas oferece uma montaria rara que só pode ser adicionada ao seu estábulo uma única vez.",
"questEvilSantaCompletion": "Noel Caçador guincha de raiva e salta noite adentro. A agradecida ursa, com rugidos e rosnados, tenta te contar algo. Você a leva de volta aos estábulos, onde Matt Boch, o Mestre das Bestas, escuta o que ela diz com uma expressão de horror. Ela tem um filhote! Ele fugiu para os campos de gelo quando a mamãe ursa foi capturada.",
"questEvilSantaBoss": "Noel Caçador",
"questEvilSantaDropBearCubPolarMount": "Urso Polar (Montaria)",
"questEvilSanta2Text": "Encontre a Filhote",
- "questEvilSanta2Notes": "Quando o Noel Caçador capturou a montaria de urso polar, seu filhote fugiu para os campos de gelo. Você ouve galhos quebrando e passos na neve pelo som cristalino da floresta. Pegadas! Você começa a correr para seguir a trilha. Encontre todas as pegadas e galhos quebrados e encontre o filhote!",
+ "questEvilSanta2Notes": "Quando o Noel Caçador capturou a montaria de urso polar, seu filhote fugiu para os campos de gelo. Você ouve galhos quebrando e passos na neve pelo som cristalino da floresta. Pegadas! Você começa a correr para seguir a trilha. Encontre todas as pegadas e galhos quebrados e encontre o filhote!
Nota: “Encontre a Filhote” concede uma conquista de missão acumulativa, mas oferece uma montaria rara que só pode ser adicionada ao seu estábulo uma única vez.",
"questEvilSanta2Completion": "Você encontrou o filhote! Ele te fará companhia para sempre.",
"questEvilSanta2CollectTracks": "Trilhas",
"questEvilSanta2CollectBranches": "Galhos Partidos",
@@ -101,7 +101,7 @@
"questGoldenknight1DropGoldenknight2Quest": "A Cavaleira Dourada, Parte 2: Cavaleira Dourada (Pergaminho)",
"questGoldenknight2Text": "A Cavaleira Dourada, Parte 2: Cavaleira De Ouro",
"questGoldenknight2Notes": "Em posse de centenas de testemunhos de habiticanos, você finalmente confronta a Cavaleira Dourada. Você começa a recitar as reclamações de habiticanos para ela, uma a uma. \"E @Pfeffernusse diz que seu enorme ego-\" A Cavaleira levanta sua mão para te silenciar e zomba, \"Por favor, essas pessoas estão somente com inveja do meu sucesso. Ao invés de reclamar, elas deveriam simplesmente se esforçar tanto quanto eu! Talvez eu deva mostrar-lhes o poder que vocês podem alcançar através de uma dedicação como a minha!\" Ela levanta sua maça e se prepara para te atacar!",
- "questGoldenknight2Boss": "Cavaleira de Ouro",
+ "questGoldenknight2Boss": "Cavaleira Dourada",
"questGoldenknight2Completion": "A Cavaleira Dourada abaixa sua Estrela da Manhã em pavor. \"Eu peço perdão pelo meu ataque precipitado,\" ela diz. \"A verdade, é que é doloroso pensar que eu estive machucando os outros sem perceber, e isso me deixa sem defesa alguma... mas talvez eu ainda possa pedir perdão?\"",
"questGoldenknight2DropGoldenknight3Quest": "A Cavaleira Dourada, Parte 3: O Cavaleiro de Ferro (Pergaminho)",
"questGoldenknight3Text": "A Cavaleira Dourada, Parte 3: O Cavaleiro de Ferro",
@@ -559,7 +559,7 @@
"questYarnDropYarnEgg": "Novelo (Ovo)",
"questYarnUnlockText": "Desbloqueia Ovos de Novelo para compra no Mercado",
"winterQuestsText": "Pacote de Missões de Inverno",
- "winterQuestsNotes": "Contém o 'Noel Caçador', 'Encontre o Cubo' e ' O Galo Congelado' . Disponíveis até 31 de Dezembro.",
+ "winterQuestsNotes": "Contém o 'Noel Caçador', 'Encontre a Filhote' e ' A Abominável Ave das Neves'. Disponíveis até o dia 31 de Janeiro. Note que as missões \"Noel Caçador\" e \"Encontre a Filhote\" concedem uma conquista de missão acumulativa, mas oferecem, respectivamente, uma montaria rara e um mascote raro que só podem ser adicionados ao seu estábulo uma única vez.",
"questPterodactylText": "O Pterror-dáctilo",
"questPterodactylNotes": "Você está caminhando no tranquilo Rochedo de Stoïkalm quando um rugido maligno enevoa o ar. Você se vira para olhar, somente para encontrar uma criatura nefasta voando em sua direção, te paralisando com um poderoso terror. Você se prepara para fugir, mas @Lilith de Alfheim te segura \" Não se preocupe! É somente um Pterror-dáctilo\"
@Procyon P concorda \"O ninho deles deve estar perto, mas eles estão sendo atraídos pelo aroma de Hábitos negativos e Diárias não concluídas \"
\"Não se preocupe\", diz @Katy133. \"Nós somente precisamos de uma produtividade extra para derrotá-lo!\" Cheio de um novo senso de propósito, você se vira para enfrentar o inimigo.",
"questPterodactylCompletion": "Com um último rugido, o Pterror-dáctilo dá uma rasante na borda do rochedo. Você corre na sua direção para o ver fugir derrotado para as estepes distantes. \"Uffa, estou feliz que isso acabou\", você diz. \"Eu também\", responde @GeraldThePixel. \"Mas olhe, ela deixou alguns ovos para nós\". @Edge te entrega três ovos e você os levanta com tranquilidade, em volta de Hábitos positivos e Diárias azuis.",
@@ -635,7 +635,7 @@
"questVelociraptorBoss": "Veloci-Rapper",
"questVelociraptorDropVelociraptorEgg": "Velociraptor (Ovo)",
"questVelociraptorUnlockText": "Desbloqueia Ovos de Velociraptor para compra no Mercado",
- "mythicalMarvelsText": "Pacote Mítico de Maravilhas da Missão",
+ "mythicalMarvelsText": "Pacote de Missões Maravilhas Míticas",
"mythicalMarvelsNotes": "Contém 'Convencer a Rainha do Unicórnio', 'O Grifo Ardente' e 'Perigo nas Profundezas: Ataque à Serpente Marinha!' Disponível até 28 de fevereiro.",
"questBronzeText": "Batalha do Besouro de Bronze",
"questBronzeNotes": "Uma pausa renovadora entre tarefas, você e alguns amigos andam pelas trilhas da Floresta de Tarefas. Você encontra um largo buraco em um tronco e um brilho dentro chama sua atenção.
Por quê? É um esconderijo de Poções Mágicas! O líquido bronzeado cintilante balança dentro da frasco, and @Hachiseiko pega um para examinar.\"Parem!\" uma voz estranha atrás de você. É um gigante besouro com uma carapaça de bronze cintilante, levantando seus pés com garras em uma posição de combate. \"Essas são minhas poções, e se vocês querem elas, terão que provar em um duelo de pessoas finas!\"",
@@ -674,5 +674,6 @@
"questAmberBoss": "Trerezin",
"questAmberCompletion": "“Trerezin?”, diz @-Tyr- calmamente. “Você poderia soltar o @Vikte? Não acho que eles estejam gostando de ficar num lugar tão alto.\" A pele âmbar da Trerezin fica vermelha e ela põe @Vikte no chão, gentilmente. \"Perdão! Faz tanto tempo desde que recebi convidados que esqueci minhas maneiras!\". Ela desliza para frente para cumprimentá-los adequadamente antes de desaparecer em sua casa na árvore e retornar com uma braçada de Poções de Eclosão de Âmbar como presentes de agradecimento!
“Poções Mágicas!”, suspira @Vikte.
\"Oh, essas coisas velhas?\" A língua da Trerezin cintila enquanto ela pensa. \"Que tal agora? Vou lhe dar toda essa pilha se você prometer me visitar de vez em quando... \"
Então vocês deixam Matarefa, excitados em contar para todo mundo sobre as novas poções - e sobre a nova amiga!",
"questAmberNotes": "Você está sentado(a) na Taverna com @beffymaroo e @-Tyr- quando @Vikte@ irrompe pela porta e fala animadamente sobre os rumores de outro tipo de Poção Mágica de Eclosão, escondida em Matarefa. Tendo comprido suas Diárias, vocês três imediatamente concordam em ajudar o @Vikte em sua pesquisa. Afinal, qual é o mal de uma pequena aventura?
Depois de caminhar por Matarefa durante horas, vocês começam a se arrepender terem se juntado a uma perseguição tão selvagem. Vocês estão prestes a voltar para casa, quando ouvem um grito surpreso e se vira para ver um lagarto enorme com escamas de âmbar brilhantes enroladas em torno de uma árvore, segurando @Vikte em suas garras. @beffymaroo pega sua espada.
“Espere!”, grita @ -Tyr-. \"É a Trerezin! Ela não é perigosa, apenas perigosamente pegajosa!\"",
- "questAmberText": "A aliança âmbar"
+ "questAmberText": "A aliança âmbar",
+ "evilSantaAddlNotes": "Note que as missões \"Noel Caçador\" e \"Encontre a Filhote\" concedem uma conquista de missão acumulativa, mas oferece, respectivamente, uma montaria e um mascote raros que só podem ser adicionados ao seu estábulo uma única vez."
}
diff --git a/website/common/locales/pt_BR/settings.json b/website/common/locales/pt_BR/settings.json
index f143ed903d..67a0f8e891 100644
--- a/website/common/locales/pt_BR/settings.json
+++ b/website/common/locales/pt_BR/settings.json
@@ -1,16 +1,16 @@
{
"settings": "Configurações",
"language": "Idioma",
- "americanEnglishGovern": "No caso de uma discrepância nas traduções, a versão em Inglês Americano domina.",
- "helpWithTranslation": "Gostaria de ajudar com a tradução do Habitica? Fantástico! Então visite este cartão do Trello.",
- "showHeaderPop": "Mostra seu avatar, barras de Vida, Experiência e grupo.",
- "stickyHeader": "Cabeçalho Fixo",
+ "americanEnglishGovern": "No caso de uma discrepância nas traduções, a versão em inglês americano irá prevalecer.",
+ "helpWithTranslation": "Gostaria de ajudar com a tradução do Habitica? Fantástico! Então, visite este cartão do Trello.",
+ "showHeaderPop": "Mostra seu avatar, barras de vida e experiência, e grupo.",
+ "stickyHeader": "Cabeçalho fixo",
"stickyHeaderPop": "Fixa o cabeçalho no topo da tela. Desmarcado significa que o cabeçalho ficará oculto quando você rolar as páginas para baixo.",
"newTaskEdit": "Abrir novas tarefas no modo de edição",
"newTaskEditPop": "Ao criar uma nova tarefa com esta opção ativada, a tarefa irá abrir a janela de edição imediatamente para você adicionar detalhes.",
"dailyDueDefaultView": "Abrir Diárias, por padrão, na aba 'Ativas'",
"dailyDueDefaultViewPop": "Com essa opção ativada, a aba 'Ativas' das Diárias irá aparecer por padrão ao invés de 'Todas'",
- "reverseChatOrder": "Mostrar mensagens do chat em ordem reversa",
+ "reverseChatOrder": "Mostrar mensagens do bate-papo em ordem reversa",
"startAdvCollapsed": "Configurações Avançadas das tarefas começam omitidas",
"startAdvCollapsedPop": "Com essa opção ativada, Configurações Avançadas estarão ocultas quando você abrir uma tarefa para edição.",
"dontShowAgain": "Não mostrar novamente",
@@ -22,13 +22,13 @@
"restartTour": "Reiniciar o tutorial inicial de quando você entrou no Habitica.",
"showBailey": "Mostrar Bailey",
"showBaileyPop": "Traga Bailey, a Mensageira, de onde estiver escondida para que você possa ver notícias passadas.",
- "fixVal": "Corrigir Valores do Personagem",
+ "fixVal": "Corrigir valores do personagem",
"fixValPop": "Alterar manualmente os valores como Vida, Nível e Ouro.",
"invalidLevel": "Valor inválido: Nível deve ser 1 ou maior.",
"enableClass": "Habilitar Sistema de Classe",
"enableClassPop": "Você optou por não usar o sistema de classes inicialmente? Deseja habilitar agora?",
"classTourPop": "Mostra o tutorial de como usar o sistema de classes.",
- "resetAccount": "Reiniciar Conta",
+ "resetAccount": "Reiniciar conta",
"resetAccPop": "Comece de novo removendo todos os níveis, ouro, equipamentos, histórico e tarefas.",
"deleteAccount": "Excluir Conta",
"deleteAccPop": "Cancela e remove sua conta do Habitica.",
@@ -50,18 +50,18 @@
"sureChangeCustomDayStart": "Você tem certeza que quer mudar o início de dia personalizado?",
"customDayStartHasChanged": "Seu início de dia personalizado foi modificado.",
"nextCron": "As suas Diárias serão reiniciadas ao utilizar o Habitica depois de <%= time %>. Certifique-se de completar suas Diárias antes deste horário!",
- "customDayStartInfo1": "Por padrão, o Habitica verifica e reinicia as suas Diárias à meia noite de seu fuso horário todos os dias. Você pode personalizar esse horário aqui.",
+ "customDayStartInfo1": "Por padrão, o Habitica verifica e reinicia as suas Diárias à meia-noite de seu fuso horário, diariamente. Você pode personalizar esse horário aqui.",
"misc": "Variados",
"showHeader": "Mostrar Cabeçalho",
"changePass": "Alterar Senha",
- "changeUsername": "Alterar Nome de Usuário",
- "changeEmail": "Alterar Endereço de Email",
- "newEmail": "Novo Endereço de Email",
- "oldPass": "Senha Antiga",
- "newPass": "Senha Nova",
- "confirmPass": "Confirmar Nova Senha",
- "newUsername": "Novo Nome de Usuário",
- "dangerZone": "Zona de Perigo",
+ "changeUsername": "Alterar nome de usuário",
+ "changeEmail": "Alterar endereço de e-mail",
+ "newEmail": "Novo endereço de e-mail",
+ "oldPass": "Senha antiga",
+ "newPass": "Nova senha",
+ "confirmPass": "Confirmar nova senha",
+ "newUsername": "Novo nome de usuário",
+ "dangerZone": "Zona de risco",
"resetText1": "ATENÇÃO! Isto irá reiniciar grande parte da sua conta. Isto é altamente desencorajado, mas algumas pessoas acham útil no início após brincarem com o site por um curto período de tempo.",
"resetText2": "Você irá perder todos seus níveis, Ouro e pontos de experiência. Todas suas tarefas (exceto aquelas de desafios) serão apagadas permanentemente e você perderá todo histórico de informações delas. Você perderá todo seu equipamento, mas será capaz de comprar tudo de volta, incluindo todo equipamento de edição limitada ou de itens Misteriosos de assinante que você já possua (você precisará estar na classe correta para recomprar equipamento específico de classe). Você manterá sua classe atual, seus Mascotes e suas Montarias. Talvez você prefira usar um Orbe de Renascimento, que é uma opção muito mais segura e que preservará suas tarefas e seus equipamentos.",
"deleteLocalAccountText": "Você tem certeza? Isso apagará sua conta para sempre e ela nunca mais poderá ser recuperada! Você precisará registrar uma nova conta para usar o Habitica novamente. Gemas gastas ou armazenadas não serão reembolsadas. Se você tiver certeza absoluta, digite sua senha na caixa de texto abaixo.",
@@ -142,14 +142,14 @@
"benefits": "Benefícios",
"coupon": "Cupom",
"couponPlaceholder": "Inserir Código de Cupom",
- "couponText": "Às vezes temos eventos e distribuímos códigos promocionais para equipamentos especiais. (exemplo, para aqueles que passam nos nossos estandes da Wondercon)",
+ "couponText": "Às vezes temos eventos e distribuímos códigos promocionais para equipamentos especiais (por exemplo: para aqueles que passam nos nossos estandes da Wondercon)",
"apply": "Aplicar",
"resubscribe": "Reassinar",
- "promoCode": "Código Promocional",
- "promoCodeApplied": "Código Promocional Aplicado! Verifique seu inventário",
- "promoPlaceholder": "Insira um Código Promocional",
+ "promoCode": "Código promocional",
+ "promoCodeApplied": "Código promocional aplicado! Verifique seu inventário",
+ "promoPlaceholder": "Insira um código promocional",
"displayInviteToPartyWhenPartyIs1": "Mostrar o botão 'Convidar para o Grupo' quando o grupo tiver 1 membro.",
- "saveCustomDayStart": "Salvar Início de Dia Personalizado",
+ "saveCustomDayStart": "Salvar personalização do início de dia",
"registration": "Registro",
"addLocalAuth": "Adicionar e-mail e senha",
"generateCodes": "Gerar Códigos",
diff --git a/website/common/locales/pt_BR/subscriber.json b/website/common/locales/pt_BR/subscriber.json
index 6b03058463..c889830bd2 100644
--- a/website/common/locales/pt_BR/subscriber.json
+++ b/website/common/locales/pt_BR/subscriber.json
@@ -8,7 +8,7 @@
"mustSubscribeToPurchaseGems": "É necessário ser assinante para comprar gemas com Ouro.",
"reachedGoldToGemCap": "Você atingiu o limite de<%= convCap %> para conversão de Ouro=>Gemas deste mês. Isto serve para prevenir abusos. O limite irá reiniciar dentro dos três primeiros dias do próximo mês.",
"reachedGoldToGemCapQuantity": "Seu pedido de <%= quantity %> gemas ultrapassa o limite de conversão deste mês (<%= convCap %>). Queremos lhe ver sempre produtivo, e que não farme as gemas em 1 mês. O limite é reiniciado nos primeiros 3 dias de cada mês.",
- "retainHistory": "Guardar Itens adicionais no histórico",
+ "retainHistory": "Guardar entradas adicionais no histórico",
"retainHistoryText": "Faz com que o histórico de tarefas e Afazeres completos fiquem disponíveis por mais tempo.",
"doubleDrops": "Capacidade diária de drop duplicada",
"doubleDropsText": "Complete seu estábulo mais rápido!",
@@ -228,5 +228,6 @@
"mysterySet201909": "Conjunto de Bolota Afável",
"mysterySet201910": "Conjunto de Chamas Crípticas",
"mysterySet201911": "Conjunto de cristal encantado",
- "mysterySet201912": "Conjunto do(a) Duende Polar"
+ "mysterySet201912": "Conjunto do(a) Duende Polar",
+ "mysterySet202001": "Conjunto da Raposa Fabulosa"
}
diff --git a/website/common/locales/pt_BR/tasks.json b/website/common/locales/pt_BR/tasks.json
index 1896eb8831..0e013bf171 100644
--- a/website/common/locales/pt_BR/tasks.json
+++ b/website/common/locales/pt_BR/tasks.json
@@ -11,7 +11,7 @@
"editATask": "Editar <%= type %>",
"createTask": "Criar <%= type %>",
"addTaskToUser": "Adicionar Tarefa",
- "scheduled": "Com Data",
+ "scheduled": "Com data",
"theseAreYourTasks": "<%= taskType %> ficam aqui",
"habit": "Hábito",
"habits": "Hábitos",
diff --git a/website/common/locales/ro/communityguidelines.json b/website/common/locales/ro/communityguidelines.json
index 916230f7fd..d6224be347 100644
--- a/website/common/locales/ro/communityguidelines.json
+++ b/website/common/locales/ro/communityguidelines.json
@@ -1,10 +1,10 @@
{
"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.",
+ "tavernCommunityGuidelinesPlaceholder": "Memento prietenesc: acesta este un chat pentru toate vârstele, așa că rugămintea este de a menține conținutul și limbajul adecvate! Consultă Regulile Comunității din bara laterală dacă ai întrebări.",
"lastUpdated": "Ultimul update:",
"commGuideHeadingWelcome": "Bine ai venit în Habitica!",
- "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": "Pentru a ajuta la păstrarea tuturor jucătorilor în siguranță, fericiți și productivi în comunitate, avem totuși câteva reguli. Le-am construit atent ca să le facem cât mai prietenoase și mai ușor de citit. Te rugăm să le acorzi timp pentru a le citi înainte să începi să discuți în chat.",
+ "commGuidePara001": "Salutări, aventurierule! Bun venit în Habitica, tărâmul productiviății, al vieții sănătoase, și al ocazionalului grifon 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! Habiticanii sunt răbdători unii cu ceilalți și încearcă să ajute cu ce pot.",
+ "commGuidePara002": "Pentru a ajuta la păstrarea tuturor jucătorilor în siguranță, fericiți și productivi în comunitate, avem totuși câteva reguli. Le-am construit atent ca să le facem cât mai prietenoase și mai ușor de citit. Te rugăm să acorzi timp pentru a le citi înainte să începi să discuți în chat.",
"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": "Interacțiuni în Habitica",
diff --git a/website/common/locales/ru/achievements.json b/website/common/locales/ru/achievements.json
index c2392ab03d..f89bd121bd 100644
--- a/website/common/locales/ru/achievements.json
+++ b/website/common/locales/ru/achievements.json
@@ -39,5 +39,6 @@
"achievementPearlyProText": "Собраны все белые скакуны.",
"achievementPearlyPro": "Перламутровый профи",
"achievementPrimedForPaintingModalText": "Вы собрали всех белых питомцев!",
- "achievementPrimedForPaintingText": "Собраны все белые питомцы."
+ "achievementPrimedForPaintingText": "Собраны все белые питомцы.",
+ "letsGetStarted": "Приступаем!"
}
diff --git a/website/common/locales/ru/backgrounds.json b/website/common/locales/ru/backgrounds.json
index 0b15096802..c6d41b1542 100644
--- a/website/common/locales/ru/backgrounds.json
+++ b/website/common/locales/ru/backgrounds.json
@@ -485,5 +485,9 @@
"backgrounds122019": "Набор 67: Выпущен в декабре 2019",
"backgroundHolidayWreathNotes": "Украсьте свой аватар ароматным праздничным венком.",
"backgroundHolidayMarketNotes": "Подберите идеальные подарки и украшения на праздничной ярмарке.",
- "backgroundWinterNocturneNotes": "Погрейтесь в лучах зимнего ноктюрна."
+ "backgroundWinterNocturneNotes": "Погрейтесь в лучах зимнего ноктюрна.",
+ "backgroundSnowglobeText": "Снежный шар",
+ "backgroundDesertWithSnowText": "Пустыня в снегу",
+ "backgroundBirthdayPartyText": "Вечеринка в честь дня рождения",
+ "backgrounds012020": "Набор 68: Выпущен в январе 2020"
}
diff --git a/website/common/locales/ru/content.json b/website/common/locales/ru/content.json
index 94dd8faba8..521360fe11 100644
--- a/website/common/locales/ru/content.json
+++ b/website/common/locales/ru/content.json
@@ -352,5 +352,6 @@
"questEggRobotText": "Робот",
"hatchingPotionShadow": "Теневой",
"premiumPotionUnlimitedNotes": "Нельзя применить на квестовых яйцах питомцев.",
- "hatchingPotionAmber": "Янтарный"
+ "hatchingPotionAmber": "Янтарный",
+ "hatchingPotionAurora": "Полярно сияющий"
}
diff --git a/website/common/locales/ru/front.json b/website/common/locales/ru/front.json
index fb155e701d..f7b9d7c544 100644
--- a/website/common/locales/ru/front.json
+++ b/website/common/locales/ru/front.json
@@ -331,5 +331,6 @@
"getStarted": "Начать!",
"mobileApps": "Мобильные приложения",
"learnMore": "Подробнее",
- "communityInstagram": "Instagram"
+ "communityInstagram": "Instagram",
+ "minPasswordLength": "Пароль должен состоять из 8 или более символов."
}
diff --git a/website/common/locales/ru/gear.json b/website/common/locales/ru/gear.json
index e181815c4b..c79c6da682 100644
--- a/website/common/locales/ru/gear.json
+++ b/website/common/locales/ru/gear.json
@@ -279,7 +279,7 @@
"weaponSpecialWinter2019WarriorText": "Алебарда со снежинкой",
"weaponSpecialWinter2019WarriorNotes": "Эта снежинка выросла, кристалл за кристаллом, в алмазно-твердое лезвие! Увеличивает силу на <%= str %>. Ограниченный выпуск зимы 2018-2019.",
"weaponSpecialWinter2019MageText": "Посох огненного дракона",
- "weaponSpecialWinter2019MageNotes": "Осторожно! Этот взрывоопасный посох готов помочь вам справиться со всеми прибывшими. Увеличивает интеллект на <%= int %> и восприятие на <%= per %>. Ограниченный выпуск зимы 2018-2019",
+ "weaponSpecialWinter2019MageNotes": "Осторожно! Этот взрывоопасный посох готов помочь вам справиться со всеми прибывшими. Увеличивает интеллект на <%= int %> и восприятие на <%= per %>. Ограниченный выпуск зимы 2018-2019.",
"weaponSpecialWinter2019HealerText": "Волшебная палочка зимы",
"weaponSpecialWinter2019HealerNotes": "Зима может быть временем для отдыха и исцеления, поэтому эта волшебная палочка зимы поможет справиться с самыми тяжелыми ранами. Увеличивает интеллект на <%= int %>. Ограниченный выпуск зимы 2018-2019.",
"weaponMystery201411Text": "Вилы пиршества",
@@ -1982,5 +1982,14 @@
"headMystery201912Notes": "Эта блестящая снежинка защищает вас от холода вне зависимости от высоты полёта! Бонусов не даёт. Подарок подписчикам декабря 2019.",
"armorArmoireDuffleCoatText": "Дафлкот",
"headArmoireEarflapHatText": "Ушанка",
- "armorArmoireDuffleCoatNotes": "Путешествуйте в морозных областях,надев это шерстяное пальто. Увеличивает Телосложение и Восприятие на <% = attrs%>. Зачарованный Доспех: Набор Дафлкот (Элемент 1 из 2)."
+ "armorArmoireDuffleCoatNotes": "Путешествуйте в морозных областях,надев это шерстяное пальто. Увеличивает Телосложение и Восприятие на <% = attrs%>. Зачарованный Доспех: Набор Дафлкот (Элемент 1 из 2).",
+ "shieldSpecialWinter2020HealerText": "Гигантская трубочка корицы",
+ "headSpecialWinter2020RogueText": "Мягкая вязаная шапка с помпоном",
+ "armorSpecialWinter2020MageText": "Пышное пальто",
+ "armorSpecialWinter2020RogueText": "Пушистый парка",
+ "backMystery202001Text": "Пять потрясающих хвостов",
+ "headMystery202001Text": "Легендарные лисьи уши",
+ "headArmoireFrostedHelmText": "Глазированный шлем",
+ "armorSpecialWinter2020HealerText": "Мантия из апельсинновой кожуры",
+ "armorSpecialWinter2020WarriorText": "Бронь из коры"
}
diff --git a/website/common/locales/ru/generic.json b/website/common/locales/ru/generic.json
index 15adaef894..1321a8572b 100644
--- a/website/common/locales/ru/generic.json
+++ b/website/common/locales/ru/generic.json
@@ -294,5 +294,7 @@
"options": "Настройки",
"demo": "Демо",
"loadEarlierMessages": "Загрузить предыдущие сообщения",
- "finish": "Завершить"
+ "finish": "Завершить",
+ "congratulations": "Поздравляем!",
+ "onboardingAchievs": "Достижения освоения"
}
diff --git a/website/common/locales/ru/limited.json b/website/common/locales/ru/limited.json
index 313b11452e..47bffe197d 100644
--- a/website/common/locales/ru/limited.json
+++ b/website/common/locales/ru/limited.json
@@ -147,7 +147,7 @@
"dateEndJanuary": "31 января",
"dateEndFebruary": "28 февраля",
"winterPromoGiftHeader": "ПОДАРИТЕ ПОДПИСКУ И ПОЛУЧИТЕ ОДНУ БЕСПЛАТНО!",
- "winterPromoGiftDetails1": "Только до 15 января, когда вы дарите кому-то подписку, вы получаете такую же бесплатно!",
+ "winterPromoGiftDetails1": "Только до 16 января, когда вы дарите кому-то подписку, вы получаете такую же бесплатно!",
"winterPromoGiftDetails2": "Обратите внимание, что если у вас или вашего получателя подарка уже есть повторяющаяся Подписка, одаренная Подписка начнется только после того, как эта Подписка будет отменена или истечет срок ее действия. Большое спасибо за вашу поддержку! <3",
"discountBundle": "комплект",
"g1g1Announcement": "Подарите подписку и получите такую же бесплатно!",
@@ -168,5 +168,9 @@
"fall2019RavenSet": "Ворон (Воин)",
"september2018": "Сентябрь 2018",
"september2017": "Сентябрь 2017",
- "augustYYYY": "Август <%= year %>"
+ "augustYYYY": "Август <%= year %>",
+ "decemberYYYY": "Декабрь <%= year %>",
+ "winter2020CarolOfTheMageSet": "Рождественский гимн мага (Маг)",
+ "winter2020EvergreenSet": "Вечнозелёный (Воин)",
+ "winter2020WinterSpiceSet": "Зимние пряности (целитель)"
}
diff --git a/website/common/locales/ru/npc.json b/website/common/locales/ru/npc.json
index ac492b30e5..e5ce647ec2 100644
--- a/website/common/locales/ru/npc.json
+++ b/website/common/locales/ru/npc.json
@@ -169,5 +169,6 @@
"imReady": "Войдите в Habitica",
"limitedOffer": "Доступно до <%= date %>",
"paymentAutoRenew": "Эта подписка будет автоматически продлена, пока не будет отменена. Если вам нужно отменить эту подписку, вы можете сделать это в настройках.",
- "paymentCanceledDisputes": "Мы отправили подтверждение отмены на ваш электронный адрес. Если вы не получили это письмо, пожалуйста, свяжитесь с нами, чтобы предотвратить будущие споры о выставлении счетов."
+ "paymentCanceledDisputes": "Мы отправили подтверждение отмены на ваш электронный адрес. Если вы не получили это письмо, пожалуйста, свяжитесь с нами, чтобы предотвратить будущие споры о выставлении счетов.",
+ "cannotUnpinItem": "Этот предмет нельзя открепить."
}
diff --git a/website/common/locales/ru/settings.json b/website/common/locales/ru/settings.json
index 7e06a2c752..3c103905b2 100644
--- a/website/common/locales/ru/settings.json
+++ b/website/common/locales/ru/settings.json
@@ -120,7 +120,7 @@
"giftedSubscriptionFull": "Привет <%= username %>, <%= sender %> подарил вам <%= monthCount %> месяцев подписки!",
"giftedSubscriptionWinterPromo": "Здравствуйте, <%= username %>, вы получили <%= monthCount %> месяцев подписки!",
"invitedParty": "Вы были приглашены в команду",
- "invitedGuild": "Вы были приглашены в гильдию",
+ "invitedGuild": "Вы были приглашены в гильдию",
"importantAnnouncements": "Напоминания о ежедневном входе для выполнения заданий и получения призов",
"weeklyRecaps": "Обзоры действий с вашего аккаунта за последние недели (Замечание: временно недоступно из-за проблем с производительностью, но мы надеемся, что скоро сможем вернуть все назад и отправлять письма снова!)",
"onboarding": "Руководство о создании вашего аккаунта в Habitica",
diff --git a/website/common/locales/ru/subscriber.json b/website/common/locales/ru/subscriber.json
index 85507fa034..cf8c19d84d 100644
--- a/website/common/locales/ru/subscriber.json
+++ b/website/common/locales/ru/subscriber.json
@@ -228,5 +228,6 @@
"mysterySet201909": "Набор Учтивого желудя",
"mysterySet201910": "Набор Загадочного пламени",
"mysterySet201911": "Набор Хрустального обольстителя",
- "mysterySet201912": "Набор Полярной феи"
+ "mysterySet201912": "Набор Полярной феи",
+ "mysterySet202001": "Набор легендарных лис"
}
diff --git a/website/common/locales/sv/achievements.json b/website/common/locales/sv/achievements.json
index 0e220dea94..e65eb4c3fa 100644
--- a/website/common/locales/sv/achievements.json
+++ b/website/common/locales/sv/achievements.json
@@ -40,5 +40,28 @@
"achievementPearlyPro": "Pärlskimrande Proffs",
"achievementPrimedForPaintingModalText": "Du har samlat alla Vita Husdjur!",
"achievementPrimedForPaintingText": "Har samlat alla Vita Husdjur.",
- "achievementPrimedForPainting": "Grundmålad för Måleri"
+ "achievementPrimedForPainting": "Grundmålad för Måleri",
+ "gettingStartedDesc": "Låt oss skapa en uppgift, slutföra den, och sen spana in dina belöningar. Du kommer tjäna 5 prestationer och 100 guld när du är klar!",
+ "achievementPurchasedEquipmentModalText": "Utrustning är ett sätt att skräddarsy din avatar och förbättra dina egenskaper",
+ "achievementPurchasedEquipmentText": "Köpte sin första utrustningsdel.",
+ "achievementPurchasedEquipment": "Köp Utrustning",
+ "achievementFedPetModalText": "Det finns många olika typer av mat, men husdjur kan vara kräsna",
+ "achievementFedPetText": "Matade sitt första husdjur.",
+ "achievementFedPet": "Mata ett Hudjur",
+ "achievementHatchedPetModalText": "Gå till ditt förråd och testa att kombinera en kläckningsdryck och ett ägg",
+ "achievementHatchedPetText": "Kläckte sitt första husdjur.",
+ "achievementHatchedPet": "Kläck ett Husdjur",
+ "achievementCompletedTaskModalText": "Bocka av en av dina uppgifter för att få belöningar",
+ "achievementCompletedTaskText": "Slutförde sin första uppgift.",
+ "achievementCompletedTask": "Slutför en Uppgift",
+ "achievementCreatedTaskModalText": "Lägg till en uppgift för något som du vill uppnå denna veckan",
+ "achievementCreatedTaskText": "Skapade sin första uppgift.",
+ "achievementCreatedTask": "Skapa en Uppgift",
+ "hideAchievements": "Dölj <%= category %>",
+ "showAllAchievements": "Visa alla <%= category %>",
+ "onboardingCompleteDesc": "Du fick 5 prestationer och 100 guld för att ha slutfört listan.",
+ "earnedAchievement": "Du har fått en prestation!",
+ "viewAchievements": "Visa Prestationer",
+ "letsGetStarted": "Låt oss börja!",
+ "onboardingProgress": "<%= percentage %>% framsteg"
}
diff --git a/website/common/locales/sv/backgrounds.json b/website/common/locales/sv/backgrounds.json
index d1e1011800..3f2b2ad6c5 100644
--- a/website/common/locales/sv/backgrounds.json
+++ b/website/common/locales/sv/backgrounds.json
@@ -448,18 +448,18 @@
"backgroundDojoText": "Dojo",
"backgrounds052019": "SET 60: Släpptes i Maj 2019",
"backgroundTreehouseNotes": "Häng i ditt gömställe bland träden, i ditt enga Trädkoja.",
- "backgroundPotionShopNotes": "Hitta ett elexir för varje sjukdom i Trolldrycksaffären.",
- "backgroundPotionShopText": "Trolldrycksaffär",
- "backgroundFlyingInAThunderstormNotes": "Jaga ett Åskande Åskväder så nära som du vågar.",
- "backgroundFlyingInAThunderstormText": "Åskande Åskväder",
- "backgroundFarmersMarketNotes": "Handla de färskaste matvarorna på en Bondens Marknad.",
- "backgroundFarmersMarketText": "Bondens Marknad",
+ "backgroundPotionShopNotes": "Hitta ett elexir för varje sjukdom i Trolldrycksbutiken.",
+ "backgroundPotionShopText": "Trolldrycksbutik",
+ "backgroundFlyingInAThunderstormNotes": "Jaga ett Stormande Åskväder så nära som du vågar.",
+ "backgroundFlyingInAThunderstormText": "Stormigt Åskväder",
+ "backgroundFarmersMarketNotes": "Handla de färskaste matvarorna på Bondemarknaden.",
+ "backgroundFarmersMarketText": "Bondemarknad",
"backgrounds112019": "Set 66: Släpptes November 2019",
- "backgroundMonsterMakersWorkshopNotes": "Experimentera med misskrediterad forskning i Monster Makarnas Verkstad.",
+ "backgroundMonsterMakersWorkshopNotes": "Experimentera med tvivelaktig vetenskap i Monster Makarnas Verkstad.",
"backgroundMonsterMakersWorkshopText": "Monster Makarnas Verkstad",
- "backgroundPumpkinCarriageNotes": "Res i en magisk Pumpvagn innan klockan slår midnatt.",
- "backgroundPumpkinCarriageText": "Pumpvagn",
- "backgroundFoggyMoorNotes": "Titta var du sätter ner foten i en Dimmig Hed.",
+ "backgroundPumpkinCarriageNotes": "Res i en magisk Pumpavagn innan klockan slår midnatt.",
+ "backgroundPumpkinCarriageText": "Pumpavagn",
+ "backgroundFoggyMoorNotes": "Titta var du sätter ner foten när du passerar Dimmig Hed.",
"backgroundFoggyMoorText": "Dimmig Hed",
"backgrounds102019": "Set 65: Släpptes Oktober 2019",
"backgroundInAClassroomNotes": "Absorbera kunskap från dina mentorer i Klassrummet.",
@@ -485,5 +485,12 @@
"backgroundHolidayWreathText": "Högtidlig Krans",
"backgroundHolidayMarketNotes": "Hitta de perfekta presenterna och dekorationerna på den Högtidiliga Marknaden.",
"backgroundHolidayMarketText": "Högtidlig Marknad",
- "backgrounds122019": "SET 67: Släpptes December 2019"
+ "backgrounds122019": "SET 67: Släpptes December 2019",
+ "backgroundSnowglobeNotes": "Skaka en Snöglob och ta din plats i ett miniatyrland av ett vinterlandskap.",
+ "backgroundSnowglobeText": "Snöglob",
+ "backgroundDesertWithSnowNotes": "Skåda den ovanliga och tysta skönheten av en Snötäckt Öken.",
+ "backgroundDesertWithSnowText": "Snötäckt Öken",
+ "backgroundBirthdayPartyNotes": "Fira din favorit Habiticans Födelsedagsfest.",
+ "backgroundBirthdayPartyText": "Födelsedagsfest",
+ "backgrounds012020": "SET 68: Släpptes Januari 2020"
}
diff --git a/website/common/locales/sv/gear.json b/website/common/locales/sv/gear.json
index 6ed47d6165..a3b5868bf9 100644
--- a/website/common/locales/sv/gear.json
+++ b/website/common/locales/sv/gear.json
@@ -1805,9 +1805,25 @@
"shieldMystery201902Text": "Kryptisk konfetti",
"shieldMystery201902Notes": "Detta glittriga papper bildar magiska hjärtan som långsamt driver och dansar i luften. Ger ingen fördel. Februari 2019 Abonnentföremål",
"shieldArmoireMightyPizzaText": "Mäktig pizza",
- "shieldArmoireMightyPizzaNotes": "Visst, den är en ganska bra sköld, men vi föreslår hellre att du äter denna läckra, läckra pizza. Ökar Uppmärksamhet med <%= per %>. Förtrollat vapenskåp: Kock-set (Föremål 4 av 4). ",
+ "shieldArmoireMightyPizzaNotes": "Visst, det är en ganska bra sköld, men vi föreslår att du äter denna läckra, läckra pizza. Ökar Uppmärksamhet med <%= per %>. Förtrollat vapenskåp: Kock-set (Föremål 4 av 4).",
"eyewearMystery201902Text": "Hemlighetsfull mask",
"eyewearMystery201902Notes": "Denna mystiska mask döljer din identitet men inte ditt vinnande leende. Medför inga ökningar. Februari 2019 Abonnentföremål.",
"headArmoireEarflapHatText": "Öronlapp Hatt",
- "armorArmoireDuffleCoatText": "Duffelrock"
+ "armorArmoireDuffleCoatText": "Duffelrock",
+ "eyewearSpecialKS2019Notes": "Djärv som en grips... hmm, gripar har inte visirer. Det påminner dig att... oh, vem försöker vi lura, det ser bara coolt ut! Ger ingen fördel.",
+ "eyewearSpecialKS2019Text": "Mystisk Grip-Visir",
+ "shieldSpecialKS2019Notes": "Gnistrande som skalet av en grips ägg, visar denna magnifika sköld dig hur man står redo att hjälpa andra när dina egna bördor är lätta. Ökar Uppmärksamhet med <%= per %>.",
+ "shieldSpecialKS2019Text": "Mystisk Grip-Sköld",
+ "headSpecialKS2019Notes": "Prydd med en grips avbildning och fjäderdräkt, symboliserar denna strålande hjälm sättet dina förmågor och uppförande ger ett ledande exempel för andra. Ökar Intelligens med <%= int %>.",
+ "headSpecialKS2019Text": "Mystisk Grip-Hjälm",
+ "armorSpecialKS2019Notes": "Glödande inifrån likt en grips ädla hjärta, uppmuntrar denna glänsande rustning dig till att vara stolt över dina framgångar. Ökar Tålighet med <%= con %>.",
+ "armorSpecialKS2019Text": "Mystisk Grip-Rustning",
+ "weaponSpecialKS2019Notes": "Böjd som en grips näbb och klor, påminner denna utsmyckade polarm om att kämpa vidare när uppgiften framför dig är skrämmande. Ökar Styrka med <%= str %>.",
+ "weaponSpecialKS2019Text": "Mystisk Grip-Galv",
+ "backMystery201912Notes": "Glid tyst genom glittrande snöfält och skimrande berg med dessa isiga vingar. Medför inga ökningar. December 2019 Abonnentföremål.",
+ "headMystery202001Notes": "Din hörsel kommer vara så skarp att du hör stjärnorna gnistra och månen snurra. Medför inga ökningar. Januari 2020 Abonnentföremål.",
+ "headMystery202001Text": "Berömd Räv Öron",
+ "backMystery201912Text": "Poläg Pixie Vingar",
+ "backMystery202001Notes": "Dessa fluffiga svansar innehåller himmelns kraft och har en hög nivå av gullighet! Medför inga ökningar. Januari 2020 Abonnentföremål.",
+ "backMystery202001Text": "Fem Svansar av Berömmelse"
}
diff --git a/website/common/locales/sv/generic.json b/website/common/locales/sv/generic.json
index e537fe550f..84ef9c4470 100644
--- a/website/common/locales/sv/generic.json
+++ b/website/common/locales/sv/generic.json
@@ -61,7 +61,7 @@
"newGroupTitle": "Ny Grupp",
"subscriberItem": "Mystiskt Objekt",
"newSubscriberItem": "Du har nya Mysteriska Objekt",
- "subscriberItemText": "Varje månad får prenumeranter ett mystiskt föremål. Det släpps vanligtvis en vecka före slutet av månaden. Se wikins 'Mystery Item'-sida för mer information.",
+ "subscriberItemText": "Varje månad får prenumeranter ett mystiskt föremål. Det släpps i början på månaden. Se wikins 'Mystery Item'-sida för mer information.",
"all": "Alla",
"none": "Ingen",
"more": "<%= count %> mer",
@@ -71,7 +71,7 @@
"submit": "Skicka",
"close": "Stäng",
"saveAndClose": "Spara & Stäng",
- "saveAndConfirm": "Save & Confirm",
+ "saveAndConfirm": "Spara och Bekräfta",
"cancel": "Avbryt",
"ok": "OK",
"add": "Lägg till",
@@ -123,8 +123,8 @@
"error": "Fel",
"menu": "Meny",
"notifications": "Notiser",
- "noNotifications": "You're all caught up!",
- "noNotificationsText": "The notification fairies give you a raucous round of applause! Well done!",
+ "noNotifications": "Du är helt uppdaterad!",
+ "noNotificationsText": "Meddelande-feerna ger dig en vild applåd! Bra jobbat!",
"clear": "Rensa",
"endTour": "Avbryt rundtur",
"audioTheme": "Ljudtema",
@@ -169,8 +169,8 @@
"achievementBurnoutText": "Hjälpte till att besegra Utbrännaren och återställa Förbruknings-andarna under våren 2015!",
"achievementBewilder": "Mistiflyings Räddare",
"achievementBewilderText": "Hjälpte till att besegra Förvildaren under våren 2016!",
- "achievementDysheartener": "Savior of the Shattered",
- "achievementDysheartenerText": "Helped defeat the Dysheartener during the 2018 Valentine's Event!",
+ "achievementDysheartener": "Shattered's Frälsare",
+ "achievementDysheartenerText": "Hjälpte till att besegra Dysheartener under 2018 Alla hjärtans Dag evenemanget!",
"checkOutProgress": "Kolla mina framsteg i Habitica!",
"cards": "Kort",
"sentCardToUser": "Du skickade ett kort till <%= profileName %>",
@@ -248,7 +248,7 @@
"userIdRequired": "Användar-ID är nödvändigt",
"resetFilters": "Rensa alla filter",
"applyFilters": "Lägg till filter",
- "wantToWorkOn": "I want to work on:",
+ "wantToWorkOn": "Jag vill arbeta på:",
"categories": "Kategorier",
"habiticaOfficial": "Habitica Officiell",
"animals": "Djur",
@@ -290,9 +290,11 @@
"selected": "Valda",
"howManyToBuy": "Hur många vill du köpa?",
"habiticaHasUpdated": "Det finns en ny Habitica uppdatering. Ladda om sidan för att få den senaste versionen!",
- "contactForm": "Contact the Moderation Team",
+ "contactForm": "Kontakta Moderationsteamet",
"loadEarlierMessages": "Ladda tidigare Meddelanden",
"demo": "Demo",
"options": "Alternativ",
- "finish": "Klar"
+ "finish": "Klar",
+ "congratulations": "Grattis!",
+ "onboardingAchievs": "Introducerade Prestationer"
}
diff --git a/website/common/locales/sv/questscontent.json b/website/common/locales/sv/questscontent.json
index d226a9029a..4d1786587d 100644
--- a/website/common/locales/sv/questscontent.json
+++ b/website/common/locales/sv/questscontent.json
@@ -634,5 +634,6 @@
"questVelociraptorCompletion": "You burst through the grass, confronting the Veloci-Rapper.
See here, rapper, you’re no quitter,
You’re Bad Habits' hardest hitter!
Check off your To-Dos like a boss,
Don’t mourn over one day’s loss!
Filled with renewed confidence, it bounds off to freestyle another day, leaving behind three eggs where it sat.",
"questVelociraptorBoss": "Veloci-Rapper",
"questVelociraptorDropVelociraptorEgg": "Velociraptor (Egg)",
- "questVelociraptorUnlockText": "Låser upp Velociraptorägg att köpa på Marknaden"
+ "questVelociraptorUnlockText": "Låser upp Velociraptorägg att köpa på Marknaden",
+ "questAmberText": "Bärnstens Alliansen"
}
diff --git a/website/common/locales/sv/spells.json b/website/common/locales/sv/spells.json
index 0588a15b65..5cb303f6b6 100644
--- a/website/common/locales/sv/spells.json
+++ b/website/common/locales/sv/spells.json
@@ -6,8 +6,8 @@
"spellWizardEarthText": "Jordbävning",
"spellWizardEarthNotes": "Din mentala kraft skakar jorden och förbättrar ditt Sällskaps Intelligens! (Baserat på: oförbättrad INT)",
"spellWizardFrostText": "Isande Köld",
- "spellWizardFrostNotes": "Med ett kast fryser du allt du har gjort i följd så att de inte kommer att återställas till noll imorgon!",
- "spellWizardFrostAlreadyCast": "Du har redan kastat den här idag. Dina följder är frusna, och du behöver int kasta den här igen.",
+ "spellWizardFrostNotes": "Med ett kast fryser du allt du har gjort i följd så att de inte kommer att återställas till noll imorgon! ",
+ "spellWizardFrostAlreadyCast": " Du har redan kastat den här idag. Dina följder är frusna, och du behöver int kasta den här igen.",
"spellWarriorSmashText": "Brutalt Slag",
"spellWarriorSmashNotes": "Du gör en uppgift mer blå/mindre röd och gör extra skada till Bossar! (Baserat på: STY)",
"spellWarriorDefensiveStanceText": "Försvarsställning",
@@ -25,7 +25,7 @@
"spellRogueStealthText": "Smygande",
"spellRogueStealthNotes": "För varje kast av besvärjelsen så kommer några av dina ogjorda Dagliga Uppgifter inte skada dig under natten. Deras färg och följder kommer inte ändras. (Baserat på: UPP)",
"spellRogueStealthDaliesAvoided": "<%= originalText %> Antal Dagliga Utmaningar undvikna: <%= number %>.",
- "spellRogueStealthMaxedOut": "Du har redan undvikit alla dina Dagliga Utmaningar; du behöver inte kasta den här igen.",
+ "spellRogueStealthMaxedOut": " Du har redan undvikit alla dina Dagliga Utmaningar; du behöver inte kasta den här igen.",
"spellHealerHealText": "Helande ljus",
"spellHealerHealNotes": "Ett sken återställer din hälsa! (Baserat på: TÅL och INT)",
"spellHealerBrightnessText": "Brännande Ljussken",
@@ -56,4 +56,4 @@
"groupTasksNoCast": "Det är inte tillåtet att kasta en färdighet på gruppuppgifter.",
"spellNotOwned": "Du äger inte denna färdighet.",
"spellLevelTooHigh": "Du måste vara level <%= level %> för att använda den här färdigheten."
-}
\ No newline at end of file
+}
diff --git a/website/common/locales/sv/subscriber.json b/website/common/locales/sv/subscriber.json
index 626818f8e4..86f9479cb2 100644
--- a/website/common/locales/sv/subscriber.json
+++ b/website/common/locales/sv/subscriber.json
@@ -7,7 +7,7 @@
"buyGemsGoldText": "Köpmannen Alexander kommer att sälja dig Diamanter till kostnaden av 20 Guld per Diamant. Hans månadsvisa transporter är först begränsade till 25 Diamanter per månad, men för varje 3:e månad i följd som du har prenumererat så höjs begränsningen med 5 Diamanter, upp till ett maximalt antal av 50 Diamanter per månad!",
"mustSubscribeToPurchaseGems": "Majoritieten prenumererar för att kunna köpa juveler med guld",
"reachedGoldToGemCap": "Du har nått Guld=>Diamant-omvandlingskapaciteten <%= convCap %> för denna månad. Vi har den för att förhindra missbruk/farmning. Kapaciteten återställs under de tre första dagarna av varje månad.",
- "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": "Det begärda beloppet <%= quantity %> överskrider Guld=>Juvel konverterings-begränsningen <%= convCap %> för denna månaden. Vi har detta för att förebygga missbruk/överanvändning. Begränsningen återställs inom de första tre dagarna för varje månad.",
"retainHistory": "Behåll ytterligare historik över inlägg",
"retainHistoryText": "Gör att färdiga uppgifter och historik över uppgifter är tillgängliga under en längre tid.",
"doubleDrops": "Dagliga fynd begränsning dubblad",
@@ -37,7 +37,7 @@
"individualSub": "Individuellt Abonnemang",
"subscribe": "Abonnera",
"subscribed": "Abonnerat",
- "nowSubscribed": "You are now subscribed to Habitica!",
+ "nowSubscribed": "Du här nu en abonnent för Habitica!",
"manageSub": "Klicka för att hantera abonnemang",
"cancelSub": "Avbryt Abonnemang",
"cancelSubInfoGoogle": "Var god gå till sektionen \"Konto\" > \"Prenumerationer\" i google Play Store appen för att avbryta din prenumeration eller för att se din prenumerations avslutningsdatum om du redan har avbrytit den. Denna skärm kan inte visa dig om din prenumeration har avbrutits eller inte.",
@@ -139,9 +139,9 @@
"mysterySet201709": "Trolldomstudent Set",
"mysterySet201710": "Befallande Imp-set",
"mysterySet201711": "Matt-ryttare Set",
- "mysterySet201712": "Candlemancer Set",
- "mysterySet201801": "Frost Sprite Set",
- "mysterySet201802": "Love Bug Set",
+ "mysterySet201712": "Ljusmagi Set",
+ "mysterySet201801": "Frost Älva Set",
+ "mysterySet201802": "Kärleks Insekt Set",
"mysterySet201803": "Daring Dragonfly Set",
"mysterySet201804": "Spiffy Squirrel Set",
"mysterySet201805": "Phenomenal Peacock Set",
@@ -219,5 +219,15 @@
"mysterySet201903": "Ägg-straordinärt set",
"mysterySet201912": "Polär Pixie Set",
"subWillBecomeInactive": "Kommer att bli innaktiv",
- "confirmCancelSub": "Är du säker på att du vill avsluta ditt abonnemang? Du kommer förlora alla av dina abonnentfördelar."
+ "confirmCancelSub": "Är du säker på att du vill avsluta ditt abonnemang? Du kommer förlora alla av dina abonnentfördelar.",
+ "subCanceledTitle": "Abonnemang Avbrutet",
+ "mysterySet201911": "Charmerande Kristall Set",
+ "mysterySet201910": "Kryptisk Flamma Set",
+ "mysterySet201909": "Älskvärd Ekollon Set",
+ "mysterySet201908": "Fri Faun Set",
+ "mysterySet201907": "Strand-kompis Set",
+ "mysterySet201906": "Vänlig Koi Set",
+ "mysterySet201905": "Bländande Drake Set",
+ "mysterySet201904": "Rik Opal Set",
+ "mysterySet202001": "Berömd Räv Set"
}
diff --git a/website/common/locales/tr/achievements.json b/website/common/locales/tr/achievements.json
index aefb3ff63c..801a991347 100644
--- a/website/common/locales/tr/achievements.json
+++ b/website/common/locales/tr/achievements.json
@@ -7,5 +7,11 @@
"achievementLostMasterclasser": "Görev Tamamlayıcısı: Büyük Usta Serisi",
"achievementLostMasterclasserText": "Büyük Usta görev serisindeki on altı görevin hepsini tamamladı ve kayıp Büyük Usta'nın gizemini çözdü!",
"achievementJustAddWaterText": "Ahtapot, Denizatı, Mürekkep Balığı, Balina, Kaplumbağa, Deniz Tavşanı, Deniz Yılanı ve Yunus evcil hayvan görevlerini tamamladı.",
- "achievementJustAddWater": "Yalnızca Su Ekle"
+ "achievementJustAddWater": "Yalnızca Su Ekle",
+ "achievementMindOverMatterModalText": "Kaya,Balçık ve İplik evcil hayvan görevlerini bitirdin!",
+ "achievementMindOverMatterText": "Kaya,Balçık ve İplik evcil hayvan görevlerini bitirdi.",
+ "achievementMindOverMatter": "Zihin Maddeden Üstündür",
+ "earnedAchievement": "Bir başarı kazandın!",
+ "viewAchievements": "Başarılarını Görüntüle",
+ "letsGetStarted": "Hadi başlayalım!"
}
diff --git a/website/common/locales/tr/backgrounds.json b/website/common/locales/tr/backgrounds.json
index 6571d92382..cef4ae7dc1 100644
--- a/website/common/locales/tr/backgrounds.json
+++ b/website/common/locales/tr/backgrounds.json
@@ -438,5 +438,7 @@
"backgroundRainbowMeadowText": "Gökkuşağı Çayırı",
"backgroundRainbowMeadowNotes": "Gökkuşağının bir çayırda bittiği yerde altın saksısını bulun.",
"backgrounds062019": "SET 61: Haziran 2019'da yayınladı",
- "backgroundSchoolOfFishText": "Balık Okulu"
+ "backgroundSchoolOfFishText": "Balık Sürüsü",
+ "backgroundSchoolOfFishNotes": "Balık Sürüsü arasında yüz.",
+ "backgroundSeasideCliffsText": "Sahil Kayalıkları"
}
diff --git a/website/common/locales/vi/communityguidelines.json b/website/common/locales/vi/communityguidelines.json
index 0ef387c62e..e111b75aff 100755
--- a/website/common/locales/vi/communityguidelines.json
+++ b/website/common/locales/vi/communityguidelines.json
@@ -10,12 +10,12 @@
"commGuideHeadingInteractions": "Những Tương tác trong Habitica",
"commGuidePara015": "Habitica có hai loại không gian cộng đồng: chung và riêng tư. Khu vực chung bao gồm Quán trọ, những Bang hội công khai, GitHub, Trello và Wiki. Khu vực riêng tư bao gồm những Bang hội kín, Tổ độ và Tin nhắn Riêng tư. Tất cả Tên hiển thị phải tuân thủ Nội quy công cộng. Để thay đổi Tên hiển thị của bạn, vào trang web tới Người dùng > Thông tin cá nhân và nhấn vào nút \"Chỉnh sửa\".",
"commGuidePara016": "Khi hoạt động tại những không gian cộng đồng trên Habita, có một vài quy định thông thường để giữ mọi người an toàn và vui vẻ. Những điều này sẽ rất dễ để những nhà thám hiểm như các bạn tuân thủ!",
- "commGuideList02A": " Tôn trọng lẫn nhau. Lịch sự, thân thiện, hòa đồng và luôn giúp đỡ mọi người. Hãy luôn ghi nhớ: Người sử dụng đến từ mọi thành phần với những kinh nghiệm vô cùng phong phú. Điều này khiến cho Habitica rất ngầu! Xây dựng một công đồng nghĩa là tôn trọng và ủng hộ những sự khác biệt cũng như tương đồng của mọi người. Dưới đây là một số cách thể hiện sự tôn trọng:",
+ "commGuideList02A": " Tôn trọng lẫn nhau . Lịch sự, thân thiện, hòa đồng và luôn giúp đỡ mọi người. Hãy luôn ghi nhớ: Các Habitican đến từ mọi thành phần với những trải nghiệm khác nhau. Đây là một phần khiến cho Habitica rất ngầu! Xây dựng một công đồng nghĩa là tôn trọng và ủng hộ sự khác biệt cũng như tương đồng của mọi người. Dưới đây là một số cách đơn giản để thể hiện sự tôn trọng với nhau:",
"commGuideList02B": "Tuân theo tất cả những Điều khoản và Điều kiện.",
- "commGuideList02C": " Không đăng những hình ảnh hay từ ngữ mang tính chất bạo lực, đe dọa hay khiêu gợi, gợi cảm, hay mang tính chất cổ súy sự phân biệt chủng tộc, đức tin, tôn giáo, giới tính, quấy rối hay đe dọa bất cứ cá nhân hoặc nhóm. Thậm chí chỉ là nói đùa. Điều này quy định cho cả những từ ngữ hoặc câu. Không phải ai cũng hiểu được đâu là câu nói đùa, và vì vậy chuyện bạn cho là chuyện đùa lại có thể khiến người khác tổn thương. Hãy tấn công Dallies, không phải tấn công lẫn nhau.",
- "commGuideList02D": "Giữ thảo luận phù hợp với mọi lứa tuổi. Chúng tôi có rất nhiều Habitican trẻ tuổi sử dụng trang web! Không được làm xấu đi bất cứ người bình thường nào hay cản trở bất kỳ Habitica trong mục tiêu của họ.",
- "commGuideList02E": "Tránh nói tục. Việc này bao gồm những lời nói đơn giản về tôn giáo có thể được chấp nhận ở nơi khác. Chúng tôi có mọi người đến từ tất cả tôn giáo và nền văn hóa khác nhau, và chúng tôi muốn chắc chắn rằng tất cả mọi người đều cảm thấy thoải mái ở không gian cộng đồng. Nếu một Điều hành viên hay nhân viên nói với bạn rằng có một cụm từ nào đó không được chấp nhận ở Habitica, kể cả khi đó là một cụm từ bạn nghĩ không có vấn đề gì, thì quyết định của họ là quyết định cuối cùng. Thêm vào đó, nói xấu người khác sẽ bị xử lí nặng, vì chúng đồng thời còn vi phạm Điều khoản Sử dụng dịch vụ.",
- "commGuideList02F": "Tránh mở rộng chủ đề nói chuyện về một vấn đề riêng nào đó trong Quán Trọ và đó là nơi nó sẽ bị lạc đề. Nếu bạn cảm thấy ai đó đã nói điều gì đó thô lỗ hay tổn thương bạn, đừng đáp trả lại họ. Nếu ai đó nhắc tới điều gì đó được cho phép bởi Quy định nhưng lại làm bạn tổn thương, thì bạn có thể lịch sự nói với người đó biết điều đó. Nếu nó vi phạm Quy định hay Điều khoản Sử dụng dịch vụ, bạn nên gắn cờ nó và để cho một Điều hành viên trả lời. Khi nghi ngờ, gắn cờ bài viết.",
+ "commGuideList02C": " Không đăng những hình ảnh hay từ ngữ mang tính chất bạo lực, đe dọa, khiêu gợi, gợi cảm, mang tính chất cổ súy sự phân biệt chủng tộc, đức tin, tôn giáo, giới tính, quấy rối hoặc đe dọa bất cứ cá nhân hay nhóm nào. Thậm chí chỉ là nói đùa. Điều này quy định cho cả những từ ngữ hay câu. Không phải ai cũng có khiếu hài hước nhau nhau, và vì vậy chuyện bạn cho là chuyện đùa lại có thể khiến người khác tổn thương. Hãy tấn công Công việc hằng ngày, không phải công kích lẫn nhau.",
+ "commGuideList02D": "Giữ những cuộc thảo luận phù hợp với mọi lứa tuổi. Chúng ta có rất nhiều Habitican trẻ tuổi sử dụng trang web! Đừng làm xấu đi những đầu óc trong sáng hay ngăn trở bất kì Habitican nào với tới những mục tiêu của họ.",
+ "commGuideList02E": "Tránh nói tục. Việc này bao gồm những lời nói đơn giản về tôn giáo có thể được chấp nhận ở nơi khác. Chúng ta có thành viên đến từ tất cả tôn giáo và nền văn hóa khác nhau, và chúng tôi muốn chắc chắn rằng tất cả mọi người đều cảm thấy thoải mái ở không gian công cộng. Nếu một Điều hành viên hay Quản trị viên nói với bạn rằng có một cụm từ nào đó không được chấp nhận ở Habitica, kể cả khi đó là một cụm từ bạn nghĩ không có vấn đề gì, thì quyết định của họ là quyết định cuối cùng. Thêm vào đó, nói xấu người khác sẽ bị xử lí nặng, vì chúng đồng thời còn vi phạm Điều khoản Sử dụng dịch vụ.",
+ "commGuideList02F": "Tránh mở rộng chủ đề nói chuyện về một vấn đề riêng nào đó trong Quán Trọ và đó là nơi mà nó sẽ bị lạc đề. Nếu bạn cảm thấy ai đó đã nói điều gì thô lỗ hay tổn thương bạn, đừng đáp trả lại họ. Nếu ai đó nhắc tới điều gì đó được cho phép bởi Nội quy nhưng lại làm bạn tổn thương, thì bạn có thể lịch sự nói với người đó biết điều đó. Nếu nó vi phạm Nội quy hay Điều khoản Sử dụng dịch vụ, bạn nên gắn cờ nó và để cho một Điều hành viên trả lời. Khi nghi ngờ, gắn cờ bài viết.",
"commGuideList02G": "Thực hiện ngay lập tức với bất kỳ yêu cầu nào của Điều hành viên. Điều này có thể bao gồm, nhưng không phải là giới hạn, có thể đề nghị bạn giới hạn bài viết của mình trong một không gian cụ thể, chỉnh sửa hồ sơ của bạn để bỏ đi nội dung không thích hợp, yêu cầu bạn di chuyển cuộc thảo luận của mình tới một không gian thích hợp hơn, v..v.",
"commGuideList02H": "Bỏ thời gian ra để nghĩ thay vì trả lời trong cơn nóng giận nếu ai đó bảo với bạn rằng bạn đã nói hay làm gì đấy khiến họ khó chịu. Có một sức mạnh to lớn trong việc có thể chân thành xin lỗi ai đó. Nếu bạn cảm thấy cách họ đáp lại bạn không phù hợp, liên hệ với một điều hành viên thay vì gọi tên họ ra một cách công khai.",
"commGuideList02I": "Những cuộc hội thoại gây chia rẽ/tranh cãi nên được báo cáo với những Điều hành viên bằng cách gắn cờ những tin nhắn liên quan hay sử dụng Biểu mẫu Liên lạc với Điều hành viên. Nếu bạn cảm thấy một cuộc đối thoại đang trở nên nóng dần lên, quá kích động hay gây tổn thương, dừng tham gia cuộc đối thoại. Thay vào đó, báo cáo những bài viết đó để chúng tôi biết về nó. Những điều hành viên sẽ trả lời nhanh nhất có thể. Đó là công việc của chúng tôi để giữ bạn được an toàn. Nếu bạn cảm thấy cần nói thêm, bạn có thể báo cáo vấn đề bằng cách sử dụng Biểu mẫu Liên lạc với Điều hành viên.",
@@ -52,7 +52,7 @@
"commGuideList05D": "Giả danh làm Nhân viên hoặc Người điều tiết",
"commGuideList05E": "Sự lặp lại những vi phạm có mức độ vừa phải",
"commGuideList05F": "Việc tạo ra một tài khoản khác để tránh khỏi hậu quả (ví dụ, tạo một tài khoản mới để trò chuyện sau khi đã bị tước quyền trò chuyện)",
- "commGuideList05G": "Cố tình lừa gạt một Nhân viên hoặc Người điều hành để tránh hậu quả hoặc làm cho người khác gặp rắc rối.",
+ "commGuideList05G": "Cố tình lừa gạt một Nhân viên hoặc Người điều hành để tránh hậu quả hoặc làm cho người khác gặp rắc rối",
"commGuideHeadingModerateInfractions": "Những vi phạm có Mức độ vừa phải",
"commGuidePara054": "Những sự vi phạm vừa phải không làm cho cộng đồng của ta mất an toàn, nhưng chúng khiến cho ta khó chịu. Những sự vi phạm này sẽ có hậu quả vừa phải. Khi kết hợp với nhiều sự vi phạm khác, hậu quả sẽ trở nên nặng nề hơn.",
"commGuidePara055": "Những điều sau là một số ví dụ cho Những sự vi phạm Vừa phải. Đây không phải một danh sách đầy đủ.",
diff --git a/website/common/locales/vi/front.json b/website/common/locales/vi/front.json
index 0967ef424b..7b85002ddd 100644
--- a/website/common/locales/vi/front.json
+++ b/website/common/locales/vi/front.json
@@ -1 +1,13 @@
-{}
+{
+ "communityReddit": "Reddit",
+ "communityKickstarter": "Kickstarter",
+ "communityForum": "Diễn đàn",
+ "communityFeature": "Yêu cầu Tính năng",
+ "communityInstagram": "Instagram",
+ "communityFacebook": "Facebook",
+ "chores": "Việc vặt",
+ "choreSample2": "20 phút làm Việc nhà",
+ "businessSample4": "Chuẩn bị 1 Tài liệu cho Khách hàng",
+ "FAQ": "FAQ",
+ "autumnesquirrelQuote": "Tôi ít xao nhãng công việc và việc nhà hơn và trả các hóa đơn đúng thời hạn."
+}
diff --git a/website/common/locales/vi/merch.json b/website/common/locales/vi/merch.json
index faa4bc74b7..43fe5cf0af 100755
--- a/website/common/locales/vi/merch.json
+++ b/website/common/locales/vi/merch.json
@@ -1,20 +1,14 @@
{
- "merch" : "Hàng hóa",
- "merchandiseDescription": "Bạn đang tìm áo thun, ly cốc hoặc nhãn dán để thể hiện niềm tự hào về Habitica của mình? Nhấn vào đây!",
-
- "merch-teespring-summary" : "Teespring là một nền tảng giúp bạn dễ dàng tạo ra và bán những sản phẩm chất lượng cao mà không phải tốn phí cũng như chịu bất kỳ rủi ro nào.",
- "merch-teespring-goto" : "Mua một chiếc áo thun Habitica",
-
- "merch-teespring-mug-summary" : "Teespring là một nền tảng giúp bạn dễ dàng tạo ra và bán những sản phẩm chất lượng cao mà không phải tốn phí cũng như chịu bất kỳ rủi ro nào.",
- "merch-teespring-mug-goto" : "Mua một chiếc cốc Habitica",
-
- "merch-teespring-eu-summary" : "PHIÊN BẢN CHÂU ÂU: Teespring là một nền tảng giúp bạn dễ dàng tạo ra và bán những sản phẩm chất lượng cao mà không phải tốn phí cũng như chịu bất kỳ rủi ro nào.",
- "merch-teespring-eu-goto" : "Mua một chiếc áo thun Habitica (châu Âu)",
-
- "merch-teespring-mug-eu-summary" : "PHIÊN BẢN CHÂU ÂU: Teespring là một nền tảng giúp bạn dễ dàng tạo ra và bán những sản phẩm chất lượng cao mà không phải tốn phí cũng như chịu bất kỳ rủi ro nào.",
- "merch-teespring-mug-eu-goto" : "Mua một chiếc cốc Habitica (châu Âu)",
-
- "merch-stickermule-summary" : "Hãy dán Melior tự hào ở những nơi mà bạn (hoặc người khác) cần nhắc nhở về các công việc hiện tại và trong tương lai!",
- "merch-stickermule-goto" : "Mua nhãn dán Habitica"
-
+ "merch": "Thương mại",
+ "merchandiseDescription": "Bạn đang tìm áo thun, ly cốc hay nhãn dán để thể hiện niềm tự hào về Habitica của mình? Nhấn vào đây!",
+ "merch-teespring-summary": "Teespring là một nền tảng giúp bất cứ ai dễ dàng tạo ra và bán những sản phẩm chất lượng cao ai cũng thích, không phải tốn phí cũng như chịu bất kỳ rủi ro nào.",
+ "merch-teespring-goto": "Mua một chiếc áo thun Habitica",
+ "merch-teespring-mug-summary": "Teespring là một nền tảng giúp bạn dễ dàng tạo ra và bán những sản phẩm chất lượng cao mà không phải tốn phí cũng như chịu bất kỳ rủi ro nào.",
+ "merch-teespring-mug-goto": "Mua một chiếc cốc Habitica",
+ "merch-teespring-eu-summary": "PHIÊN BẢN CHÂU ÂU: Teespring là một nền tảng giúp bạn dễ dàng tạo ra và bán những sản phẩm chất lượng cao mà không phải tốn phí cũng như chịu bất kỳ rủi ro nào.",
+ "merch-teespring-eu-goto": "Mua một chiếc áo thun Habitica (châu Âu)",
+ "merch-teespring-mug-eu-summary": "PHIÊN BẢN CHÂU ÂU: Teespring là một nền tảng giúp bạn dễ dàng tạo ra và bán những sản phẩm chất lượng cao mà không phải tốn phí cũng như chịu bất kỳ rủi ro nào.",
+ "merch-teespring-mug-eu-goto": "Mua một chiếc cốc Habitica (châu Âu)",
+ "merch-stickermule-summary": "Hãy dán Melior tự hào ở những nơi mà bạn (hoặc người khác) cần nhắc nhở về các công việc hiện tại và trong tương lai!",
+ "merch-stickermule-goto": "Mua nhãn dán Habitica"
}
diff --git a/website/common/locales/vi/pets.json b/website/common/locales/vi/pets.json
index 0967ef424b..51ac2cdf77 100644
--- a/website/common/locales/vi/pets.json
+++ b/website/common/locales/vi/pets.json
@@ -1 +1,13 @@
-{}
+{
+ "questPets": "Thú cưng Nhiệm vụ",
+ "rarePets": "Thú cưng Hiếm",
+ "noActivePet": "Không có Thú cưng Hiện tại",
+ "activePet": "Thú cưng Hiện tại",
+ "pets": "Thú cưng",
+ "stable": "Chuồng thú",
+ "magicMounts": "Thú cưỡi Ma thuật",
+ "questMounts": "Thú cưỡi Nhiệm vụ",
+ "mounts": "Thú cưỡi",
+ "magicPets": "Thú cưng Ma thuật",
+ "petsFound": "Thú cưng Đã có"
+}
diff --git a/website/common/locales/vi/quests.json b/website/common/locales/vi/quests.json
index 6c25644acd..1ca46ba146 100755
--- a/website/common/locales/vi/quests.json
+++ b/website/common/locales/vi/quests.json
@@ -125,6 +125,10 @@
"pendingDamageLabel": "pending damage",
"bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
"rageAttack": "Rage Attack:",
- "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
- "rageStrikes": "Rage Strikes"
-}
\ No newline at end of file
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Cuồng nộ",
+ "rageStrikes": "Rage Strikes",
+ "chatBossDamage": "<%= username %> tấn công <%= bossName %> với <%= userDamage %> sát thương. <%= bossName %> tấn công tổ đội với <%= bossDamage %> sát thương.",
+ "chatQuestStarted": "Nhiệm vụ của bạn, <%= questName %>, đã bắt đầu.",
+ "questInvitationNotificationInfo": "Bạn đã được mời tham gia một Nhiệm vụ",
+ "hatchingPotionQuests": "Nhiệm vụ Lọ thuốc Ấp trứng Ma thuật"
+}
diff --git a/website/common/locales/vi/tasks.json b/website/common/locales/vi/tasks.json
index 0fb86028b2..6796d5b429 100755
--- a/website/common/locales/vi/tasks.json
+++ b/website/common/locales/vi/tasks.json
@@ -1,9 +1,9 @@
{
- "clearCompleted": "Xóa việc đã hoàn thành",
- "clearCompletedDescription": "Những việc cần làm đã hoàn thành sẽ được xóa sau 30 ngày cho người không ủng hộ tiền và 90 ngày cho những người ủng hộ tiền.",
- "clearCompletedConfirm": "Bạn có chắc là muốn xóa những việc cần làm đã hoàn thành của mình không?",
- "sureDeleteCompletedTodos": "Bạn có chắc là muốn xóa những việc cần làm đã hoàn thành của mình không?",
- "lotOfToDos": "30 việc cần làm gần đây nhất của bạn được hiển thị ở đây. Bạn có thể xem việc cần làm cũ hơn từ Dữ liệu > Công cụ hiển thị dữ liệu hoặc Dữ liệu > Xuất dữ liệu > Dữ liệu người dùng.",
+ "clearCompleted": "Xóa Công việc đã hoàn thành",
+ "clearCompletedDescription": "Những Việc cần làm đã hoàn thành sẽ được xóa sau 30 ngày cho người không đăng ký và 90 ngày cho những người đăng ký.",
+ "clearCompletedConfirm": "Có chắc là bạn muốn xóa những Việc cần làm đã hoàn thành của mình không?",
+ "sureDeleteCompletedTodos": "Có chắc là bạn muốn xóa những Việc cần làm đã hoàn thành của mình không?",
+ "lotOfToDos": "30 Việc cần làm đã hoàn thành gần đây nhất của bạn được hiển thị ở đây. Bạn có thể xem việc cần làm đã hoàn thành cũ hơn từ Dữ liệu > Công cụ hiển thị dữ liệu hoặc Dữ liệu > Xuất dữ liệu > Dữ liệu người dùng.",
"deleteToDosExplanation": "Nếu bạn bấm vào nút bên dưới, tất cả những việc cần làm đã hoàn thành và những việc cần làm đã lưu trữ sẽ hoàn toàn bị xóa sổ, ngoại trừ những việc cần làm từ những thử thách còn hoạt động và những kế hoạch nhóm. Xuất chúng ra đầu tiên nếu bạn muốn giữ một bản lưu trữ của chúng.",
"addMultipleTip": "Mẹo: Để thêm nhiều <%= taskType %>, ngăn cách mỗi thứ bằng một cái ngắt dòng (Shift + Enter) và bấm \"Enter\".",
"addsingle": "Thêm một",
@@ -210,4 +210,4 @@
"searchTasks": "Search titles and descriptions...",
"sessionOutdated": "Your session is outdated. Please refresh or sync.",
"errorTemporaryItem": "This item is temporary and cannot be pinned."
-}
\ No newline at end of file
+}
diff --git a/website/common/locales/zh/achievements.json b/website/common/locales/zh/achievements.json
index 581d713086..cd045e136f 100644
--- a/website/common/locales/zh/achievements.json
+++ b/website/common/locales/zh/achievements.json
@@ -4,10 +4,10 @@
"onwards": "继续!",
"levelup": "完成现实生活中的目标之后,你升级了,而且回满了血!",
"reachedLevel": "你升到了第<%= level %>级",
- "achievementLostMasterclasser": "副本征服者:大师鉴别者 任务线",
- "achievementLostMasterclasserText": "完成了“大师鉴别者”任务线的全部16个任务,揭开了失传的大师鉴别者的神秘面纱!",
+ "achievementLostMasterclasser": "副本征服者:大师鉴别者副本线",
+ "achievementLostMasterclasserText": "完成了“大师鉴别者”副本线的全部16个副本,揭开了失传的大师鉴别者的神秘面纱!",
"achievementBackToBasics": "返璞归真",
- "achievementLostMasterclasserModalText": "你已经完成了大师鉴别者的任务线,并解开了失落的大师鉴别者的神秘面纱!",
+ "achievementLostMasterclasserModalText": "你已经完成了大师鉴别者的副本线,并解开了失落的大师鉴别者的神秘面纱!",
"achievementAllYourBaseModalText": "你驯服了所有基础坐骑!",
"achievementAllYourBaseText": "已经驯服了所有基础坐骑。",
"achievementAllYourBase": "你所有的基础坐骑",
@@ -40,5 +40,28 @@
"achievementPearlyPro": "珍珠形专业人士",
"achievementPrimedForPaintingModalText": "你集齐了所有白色宠物!",
"achievementPrimedForPaintingText": "集齐了所有白色宠物。",
- "achievementPrimedForPainting": "上涂底漆"
+ "achievementPrimedForPainting": "上涂底漆",
+ "achievementPurchasedEquipmentModalText": "你可以用装备特别制造你的形象和增值你的属性",
+ "achievementPurchasedEquipmentText": "买了他们头一个装备。",
+ "achievementPurchasedEquipment": "买了装备",
+ "achievementFedPetModalText": "有各种各样的食物,但是宠物可能会挑剔",
+ "achievementFedPetText": "喂了他们头一只宠物。",
+ "achievementFedPet": "喂一只宠物",
+ "achievementHatchedPetModalText": "去你的物品栏来合并及孵化药水和一粒蛋",
+ "achievementHatchedPetText": "孵化了他们头一只宠物。",
+ "achievementHatchedPet": "孵化一只宠物",
+ "achievementCompletedTaskModalText": "你可以清点任务已得到奖励",
+ "achievementCompletedTaskText": "完成了他们头一回任务。",
+ "achievementCompletedTask": "完成一个任务",
+ "achievementCreatedTaskModalText": "把这个星期你想完成的任务加在这里",
+ "achievementCreatedTaskText": "制造了他们头一回任务。",
+ "achievementCreatedTask": "制造一个任务",
+ "hideAchievements": "隐藏<%= category %>",
+ "showAllAchievements": "列出所有<%= category %>",
+ "onboardingCompleteDesc": "完成了任务单以后,你得到了五个成就和一百金币。",
+ "earnedAchievement": "你得到了一个成就!",
+ "viewAchievements": "看成就",
+ "letsGetStarted": "我们开始吧!",
+ "onboardingProgress": "<%= percentage %>% 完成",
+ "gettingStartedDesc": "我们一起制作一个任务,做完它,然后看你的奖励。你会得到五个成就和一百金币!"
}
diff --git a/website/common/locales/zh/backgrounds.json b/website/common/locales/zh/backgrounds.json
index 133eaf9f5e..e92aceba21 100644
--- a/website/common/locales/zh/backgrounds.json
+++ b/website/common/locales/zh/backgrounds.json
@@ -485,5 +485,12 @@
"backgroundHolidayMarketNotes": "在节日市场上找完美的礼物和装饰品。",
"backgroundHolidayWreathText": "节日花环",
"backgroundHolidayMarketText": "节场",
- "backgrounds122019": "第67组:2019年12月推出"
+ "backgrounds122019": "第67组:2019年12月推出",
+ "backgroundSnowglobeNotes": "摇一摇雪球,在冬季风景的缩影中占据一席之地。",
+ "backgroundSnowglobeText": "雪球",
+ "backgroundDesertWithSnowNotes": "观看白雪皑皑的沙漠的稀有与宁静之美。",
+ "backgroundDesertWithSnowText": "白雪皑皑的沙漠",
+ "backgroundBirthdayPartyNotes": "庆祝你最喜欢的Habitica居民的生日派对。",
+ "backgroundBirthdayPartyText": "生日派对",
+ "backgrounds012020": "第68组:2020年1月推出"
}
diff --git a/website/common/locales/zh/character.json b/website/common/locales/zh/character.json
index 25a48c376c..d4d328412d 100644
--- a/website/common/locales/zh/character.json
+++ b/website/common/locales/zh/character.json
@@ -218,9 +218,9 @@
"editProfile": "编辑角色信息",
"challengesWon": "赢得的奖励",
"questsCompleted": "任务完成",
- "headAccess": "头部挂件。",
- "backAccess": "背部挂件。",
- "bodyAccess": "身体挂件。",
+ "headAccess": "头部挂件",
+ "backAccess": "背部挂件",
+ "bodyAccess": "身体挂件",
"mainHand": "主要",
"offHand": "副手",
"statPoints": "属性点",
diff --git a/website/common/locales/zh/communityguidelines.json b/website/common/locales/zh/communityguidelines.json
index 9d44151087..d9567e9b5c 100644
--- a/website/common/locales/zh/communityguidelines.json
+++ b/website/common/locales/zh/communityguidelines.json
@@ -123,6 +123,6 @@
"commGuideLink04": "Trello: 在这里提出新功能的建议。",
"commGuideLink05": "移动端 Trello: 在这里提出关于移动端的建议。",
"commGuideLink06": "艺术 Trello: 在这里提交像素画作品。",
- "commGuideLink07": "探索任务 Trello: 在这里提交新的探索任务剧本。",
+ "commGuideLink07": "探索副本 Trello: 在这里提交新的探索副本剧本。",
"commGuidePara069": "这些插图由以下富有天赋的艺术家贡献:"
}
diff --git a/website/common/locales/zh/content.json b/website/common/locales/zh/content.json
index a7414305f2..04fa6f086d 100644
--- a/website/common/locales/zh/content.json
+++ b/website/common/locales/zh/content.json
@@ -352,5 +352,6 @@
"questEggDolphinText": "海豚",
"hatchingPotionShadow": "阴影",
"premiumPotionUnlimitedNotes": "无法用于副本宠物蛋。",
- "hatchingPotionAmber": "琥珀"
+ "hatchingPotionAmber": "琥珀",
+ "hatchingPotionAurora": "极光"
}
diff --git a/website/common/locales/zh/faq.json b/website/common/locales/zh/faq.json
index 3fc42c075e..ea233c5400 100644
--- a/website/common/locales/zh/faq.json
+++ b/website/common/locales/zh/faq.json
@@ -25,9 +25,9 @@
"androidFaqAnswer5": "最好的办法是邀请他们加入你的队伍!队伍可以接受任务,和怪物作战,通过使用技能来互相帮助。如果你还没有自己的队伍,前往 [网页](https://habitica.com/) 来创建一个队伍。 你们也可以一起加入一个公会(社交 > 公会)。公会是一个基于共同兴趣或者共同目标的聊天室,可以是公开聊天室也可以是私密聊天室。你可以加入很多个公会,但是你只能加入一个队伍。\n\n若想获取更多详细信息,请查看wiki关于[队伍](https://habitica.fandom.com/zh/wiki/队伍) 与关于 [公会](http://habitica.fandom.com/wiki/Guilds)的页面。",
"webFaqAnswer5": "邀请他们加入你队伍最好的方法是点击导航栏中的“队伍”。队伍可以接受任务卷轴,打怪兽,使用技能帮助彼此。你们也可以一起加入公会(点击导航栏中的“公会”)。公会是基于共同兴趣或者共同目标的聊天室,可以是公开或者私密性质。你可以加任意多的公会,但只能加入一个队伍。欲知更多信息,查看wiki页面的 [队伍](https://habitica.fandom.com/zh/队伍)与 [公会](http://habitica.fandom.com/wiki/Guilds)。",
"faqQuestion6": "我要怎样才能得到宠物或是坐骑呢?",
- "iosFaqAnswer6": "当你等级升到3的时候,就会解锁掉落系统。每当你完成任务时,你就会有一定的机率收到宠物蛋、孵化药水,或是喂养宠物的食物。当你收到时系统就会自动存入「选单」>「物品」。 \n \n 想要孵化宠物,你需要同时拥有宠物蛋和孵化药水各一。点选宠物蛋确认你要孵化的种类,接着点击「孵化」,然后选择孵化药水就能够确认宠物的颜色啰!孵化完成后你可以到「选单」>「宠物」将你的宠物装备到角色上。\n \n 你也可以用喂食的方式让宠物进化成坐骑。点选宠物选择「喂食」,你会看到一条绿色的状态列随着你喂食次数而增长,当状态列额满后就会进化成坐骑。这需要花点时间,不过如果你能找到宠物最喜欢的食物,就可以加速宠物进化的速度啰!请多多尝试食物种类或者看这个[剧透](http://habitica.fandom.com/wiki/Food#Food_Preferences)\n当你拥有了一只座骑,你可以到「选单」>「坐骑」将它装备到角色上。 \n \n 当你完成某些任务卷轴时,你也可能收到任务宠物蛋。 (你可以看看下面有一些关于任务卷轴的介绍)",
- "androidFaqAnswer6": "当你等级升到3的时候,就会解锁掉落系统。每当你完成任务时,你就会有一定的机率收到宠物蛋、孵化药水,或是喂养宠物的食物。当你收到时系统就会自动存入「选单」>「物品」。\n\n想要孵化宠物,你需要同时拥有一个宠物蛋和一瓶孵化药水。点选宠物蛋确认你要孵化的宠物,接着点击「孵化」,然后选择孵化药水就能够确认宠物的颜色!孵化完成后你可以到「选单」>[宠物],然后选择“使用”(你的角色形象不会显示变动),将你的宠物装备到角色上。\n\n你也可以用喂食的方式让宠物进化成坐骑。点选宠物选择「喂食」,你会看到一条绿色的状态列随着你喂食次数而增长,当状态列额满后就会进化成坐骑。这需要花点时间,不过如果你能找到宠物最喜欢的食物,就可以加速宠物进化的速度啰!请多多尝试食物种类或者看这个[揭露] (http://habitica.fandom.com/wiki/Food#Food_Preferences).\n\n当你拥有了一只座骑,你可以到「选单」>「坐骑」选项,选择你需要的坐骑,然后选择“使用”(你的角色形象不会显示变动)将它装备到角色上。\n当你完成某些任务卷轴时,你也可能收到任务宠物蛋。 (你可以看看下面有一些关于任务卷轴的介绍)",
- "webFaqAnswer6": "在3级时,你会解锁掉落系统。每当你完成任务时,你就会有一定的机率收到宠物蛋、孵化药水,或是喂养宠物的食物。当你收到物品时,会自动存入「背包」>「市场」。\n\n如果你想要孵化宠物,你需要同时拥有宠物蛋和孵化药水各一个。点击宠物蛋确认你要孵化的种类,然后选择孵化药水就能够确认宠物的颜色喽!孵化完成后你可以到「背包」>「宠物」将你的宠物显示到角色形象上。 \n\n你也可以用喂食的方式让宠物进化成坐骑。点击「背包」>「宠物」后选择宠物,这时画面右方会出现选单,点选食物然后「喂食」就可以了!你会看到一条绿色的状态列随着你喂食次数而增长,当状态列额满后就会进化成坐骑。这需要花点时间,不过如果你能找到宠物最喜欢的食物,就可以加速宠物进化的速度喽!请多多尝试食物种类或者看这个[查看食物种类](http://habitica.fandom.com/wiki/Food#Food_Preferences)。 当你拥有了一只座骑,你可以到「背包」>「坐骑」将它显示到角色形象上。\n\n当你完成某些任务卷轴时,你也可能收到任务宠物蛋。 (你可以看看下面有一些关于任务卷轴的介绍)",
+ "iosFaqAnswer6": "当你等级升到3的时候,就会解锁掉落系统。每当你完成任务时,你就会有一定的机率收到宠物蛋、孵化药水,或是喂养宠物的食物。当你收到时系统就会自动存入「选单」>「物品」。 \n \n 想要孵化宠物,你需要同时拥有宠物蛋和孵化药水各一。点选宠物蛋确认你要孵化的种类,接着点击「孵化」,然后选择孵化药水就能够确认宠物的颜色啰!孵化完成后你可以到「选单」>「宠物」将你的宠物装备到角色上。\n \n 你也可以用喂食的方式让宠物进化成坐骑。点选宠物选择「喂食」,你会看到一条绿色的状态列随着你喂食次数而增长,当状态列额满后就会进化成坐骑。这需要花点时间,不过如果你能找到宠物最喜欢的食物,就可以加速宠物进化的速度啰!请多多尝试食物种类或者看这个[剧透](http://habitica.fandom.com/wiki/Food#Food_Preferences)\n当你拥有了一只座骑,你可以到「选单」>「坐骑」将它装备到角色上。 \n \n 当你完成某些副本卷轴时,你也可能收到副本宠物蛋。 (你可以看看下面有一些关于副本卷轴的介绍)",
+ "androidFaqAnswer6": "当你等级升到3的时候,就会解锁掉落系统。每当你完成任务时,你就会有一定的机率收到宠物蛋、孵化药水,或是喂养宠物的食物。当你收到时系统就会自动存入「选单」>「物品」。\n\n想要孵化宠物,你需要同时拥有一个宠物蛋和一瓶孵化药水。点选宠物蛋确认你要孵化的宠物,接着点击「孵化」,然后选择孵化药水就能够确认宠物的颜色!孵化完成后你可以到「选单」>[宠物],然后选择“使用”(你的角色形象不会显示变动),将你的宠物装备到角色上。\n\n你也可以用喂食的方式让宠物进化成坐骑。点选宠物选择「喂食」,你会看到一条绿色的状态列随着你喂食次数而增长,当状态列额满后就会进化成坐骑。这需要花点时间,不过如果你能找到宠物最喜欢的食物,就可以加速宠物进化的速度啰!请多多尝试食物种类或者看这个[揭露] (http://habitica.fandom.com/wiki/Food#Food_Preferences).\n\n当你拥有了一只座骑,你可以到「选单」>「坐骑」选项,选择你需要的坐骑,然后选择“使用”(你的角色形象不会显示变动)将它装备到角色上。\n\n当你完成某些副本卷轴时,你也可能收到副本宠物蛋。 (你可以看看下面有一些关于副本卷轴的介绍)",
+ "webFaqAnswer6": "在3级时,你会解锁掉落系统。每当你完成任务时,你就会有一定的机率收到宠物蛋、孵化药水,或是喂养宠物的食物。当你收到物品时,会自动存入「背包」>「市场」。\n\n如果你想要孵化宠物,你需要同时拥有宠物蛋和孵化药水各一个。点击宠物蛋确认你要孵化的种类,然后选择孵化药水就能够确认宠物的颜色喽!孵化完成后你可以到「背包」>「宠物」将你的宠物显示到角色形象上。 \n\n你也可以用喂食的方式让宠物进化成坐骑。点击「背包」>「宠物」后选择宠物,这时画面右方会出现选单,点选食物然后「喂食」就可以了!你会看到一条绿色的状态列随着你喂食次数而增长,当状态列额满后就会进化成坐骑。这需要花点时间,不过如果你能找到宠物最喜欢的食物,就可以加速宠物进化的速度喽!请多多尝试食物种类或者看这个[查看食物种类](http://habitica.fandom.com/wiki/Food#Food_Preferences)。 当你拥有了一只座骑,你可以到「背包」>「坐骑」将它显示到角色形象上。\n\n当你完成某些副本卷轴时,你也可能收到副本宠物蛋。 (你可以看看下面有一些关于副本卷轴的介绍)",
"faqQuestion7": "我怎样才能够成为战士、法师、盗贼或是医师?",
"iosFaqAnswer7": "在10级的时候,你可以选择成为战士、法师、盗贼或是医者。 (所有玩家在一开始都会被系统默认为是战士直到你的升到10级) 每种职业都有各自的优点以及不同的装备选择,当你11级时还能够施放职业技能。战士可以很轻松地击退魔王,还能够抵挡来自任务的伤害,同时也是队伍攻击主力。法师也能够给予魔王有效的攻击,等级提升快速且能够帮助队伍的成员补充魔力。盗贼能获得最多金币,也是能捡到最多掉落物品的职业,而这些优点也能回馈给队伍。最后是医师,医师拥有特殊技能可以治愈他们自身以及队伍成员的生命值。\n\n如果你还没能够决定该选择哪种作为职业的话--举例,如果你觉得与其马上选择职业,不如先补足目前所需的装备的话--你可以点选「之后再决定」,等你觉得时机到了就可以到「选单」>「选择职业」。",
"androidFaqAnswer7": "在10级的时候,你可以选择成为战士、法师、盗贼或是医者。 (所有玩家在一开始都会被系统默认为是战士直到你的升到10级) 每种职业都有各自的优点以及不同的装备选择,当你11级时还能够施放职业技能。战士可以很轻松地击退魔王,还能够抵挡来自任务的伤害,同时也是队伍攻击主力。法师也能够给予魔王有效的攻击,等级提升快速且能够帮助队伍的成员补充魔力。盗贼能获得最多金币,也是能捡到最多掉落物品的职业,而这些优点也能回馈给队伍。最后是医师,医师拥有特殊技能可以治愈他们自身以及队伍成员的生命值。\n\n如果你还没能够决定该选择哪种作为职业的话--举例,如果你觉得与其马上选择职业,不如先补足目前所需的装备的话--你可以点选「之后再决定」,等你觉得时机到了就可以到「选单」>「选择职业」。",
@@ -35,11 +35,11 @@
"faqQuestion8": "在10级之后出现在页眉的蓝色星星状态栏是什么?",
"iosFaqAnswer8": "在你达到第10级,选择一个职业之后出现在头像里的蓝条是你的法力条。在你接下来不断升级的过程中,你会解锁各种特殊技能,它们需要耗费魔法才能使用。每个职业都有不同技能,在到达11级以后会在 目录 > 使用技能 下面出现。和你的健康值不同,你的法力条在你升级时不会回复,只有在培养了好的习惯,完成了每日任务和待办事项时才会获取法力。每过一夜你也会回复小部分的法力——完成的日常任务越多,回复的法力也越多。",
"androidFaqAnswer8": "在你达到第10级,选择一个职业之后出现在头像里的蓝条是你的法力条。在你接下来不断升级的过程中,你会解锁各种特殊技能,它们需要耗费魔法才能使用。每个职业都有不同技能,在到达11级以后会在 目录 > 使用技能 下面出现。和你的健康值不同,你的法力条在你升级时不会回复,只有在培养了好的习惯,完成了每日任务和待办事项时才会获取法力。每过一夜你也会回复小部分的法力——完成的日常任务越多,回复的法力也越多。",
- "webFaqAnswer8": "在你达到第10级,选择一个职业之后出现在头像里的蓝条是你的法力条。在你接下来不断升级的过程中,你会解锁各种特殊技能,它们需要耗费魔法才能使用。每个职业都有不同技能,在到达11级以后会在奖励栏的的一块专门区域出现。和你的健康值不同,你的法力条在你升级时不会回复,只有在培养了好的习惯,完成了每日任务和待办事项时才会获取法力。每过一夜你也会回复小部分的法力——完成的日常任务越多,回复的法力也越多。",
+ "webFaqAnswer8": "在你达到第10级,选择一个职业之后出现在头像里的蓝条是你的法力条。在你接下来不断升级的过程中,你会解锁各种特殊技能,它们需要耗费魔法才能使用。每个职业都有不同技能,在到达11级以后会在奖励栏的一块专门区域出现。和你的健康值不同,你的法力条在你升级时不会回复,只有在培养了好的习惯,完成了每日任务和待办事项时才会获取法力。每过一夜你也会回复小部分的法力——完成的日常任务越多,回复的法力也越多。",
"faqQuestion9": "我怎么和怪兽战斗,继续任务?",
- "iosFaqAnswer9": "首先,你需要加入或者成立一个战队 (见上面内容),虽然你可以一个人对抗怪物们,我们还是建议组队作战,因为这样可以让任务变得简单很多。另外,在完成任务时有一个可以鼓励你的朋友也是非常有动力的!\n\n然后,你需要一个任务卷轴,在目录 > 道具 下面可以找到,得到一个任务卷轴有三个办法:\n\n- 在15级的时候,你会得到一条任务线,有三个互相联系的任务,在30,40和60级还会解锁更多任务线\n- 当你邀请朋友加入你的战队,你会被奖励基础卷轴!\n- 在网页版你可以在[这里] (https://habitica.com/#/options/inventory/quests) 用金币和宝石购买任务。(我们会在未来把这项功能加到手机APP上)\n\n要在一项收集任务中击败BOSS收集道具,只需要照常完成你的日常任务,每过一夜,它们会被追踪到对BOSS的伤害值上 (下拉页面刷新就能看见BOSS的生命值在降低)。如果在和BOSS对战时错过了某些日常任务,BOSS会在你和你的队友对BOSS造成伤害的同时反伤你们。\n\n在11级时法师和战士可以学习到能造成更多伤害的技能,所以在第10级选择职业时,如果你想做一个高输出角色,这两个职业是极佳的选择。",
- "androidFaqAnswer9": "首先,你需要加入或者成立一个战队 (见上面内容),虽然你可以一个人对抗怪物们,我们还是建议组队作战,因为这样可以让任务变得简单很多。另外,在完成任务时有一个可以鼓励你的朋友也是非常有动力的!\n\n然后,你需要一个任务卷轴,在目录 > 道具 下面可以找到,得到一个任务卷轴有三个办法:\n\n- 在15级的时候,你会得到一条任务线,有三个互相联系的任务,在30,40和60级还会解锁更多任务线\n- 当你邀请朋友加入你的战队,你会被奖励基础卷轴!\n- 在网页版你可以在[这里] (https://habitica.com/#/options/inventory/quests) 用金币和宝石购买任务。(我们会在未来把这项功能加到手机APP上)\n\n要在一项收集任务中击败BOSS收集道具,只需要照常完成你的日常任务,每过一夜,它们会被追踪到对BOSS的伤害值上 (下拉页面刷新就能看见BOSS的生命值在降低)。如果在和BOSS对战时错过了某些日常任务,BOSS会在你和你的队友对BOSS造成伤害的同时反伤你们。\n\n在11级时法师和战士可以学习到能造成更多伤害的技能,所以在第10级选择职业时,如果你想做一个高输出角色,这两个职业是极佳的选择。",
- "webFaqAnswer9": "首先,你需要在导航栏的“队伍”里,加入或者成立一个队伍。虽然你一个人也可以是一支队伍,我们还是建议组队作战,因为这样可以让任务变得简单很多。另外,在完成任务时有一个可以鼓励你的朋友也是非常有动力的!然后,你需要一个副本卷轴,在【物品栏】→【物品】→【任务】下面可以找到,得到卷轴有三种办法:\n\n* 当你邀请朋友加入你的战队,你会得到“普通的清单魔蛇”卷轴!\n* 在15级的时候,你会得到一条任务线,有三个首尾相连的副本,在30、40和60级还会解锁更多任务线。\n* 你可以在【商店】→【任务】用金币和宝石购买副本。\n\n要击败Boss或者是收集任务物品,只需要照常完成你的日常任务,第二天它们会被结算到Boss身上造成伤害值(刷新就能看见Boss的生命值在降低),或者结算到收集物品的进度上。如果在和Boss对战时错过了某些日常任务,Boss会在你和你的队友对Boss造成伤害的同时打掉你们的生命值。\n\n在11级时法师和战士可以学习到能造成更多伤害的技能,所以在第10级选择职业时,如果你想做一个高输出角色,这两个职业是极佳的选择。",
+ "iosFaqAnswer9": "首先,你需要加入或者成立一个战队 (见上面内容),虽然你可以一个人对抗怪物们,我们还是建议组队作战,因为这样可以让副本变得简单很多。另外,在完成副本时有一个可以鼓励你的朋友也是非常有动力的!\n\n然后,你需要一个副本卷轴,在目录 > 道具 下面可以找到,得到一个副本卷轴有三个办法:\n\n- 在15级的时候,你会得到一条副本线,有三个互相联系的副本,在30,40和60级还会解锁更多副本线\n- 当你邀请朋友加入你的战队,你会被奖励基础卷轴!\n- 在网页版你可以在[这里] (https://habitica.com/#/options/inventory/quests) 用金币和宝石购买副本。(我们会在未来把这项功能加到手机APP上)\n\n要在一项收集副本中击败BOSS收集道具,只需要照常完成你的日常任务,每过一夜,它们会被追踪到对BOSS的伤害值上 (下拉页面刷新就能看见BOSS的生命值在降低)。如果在和BOSS对战时错过了某些日常任务,BOSS会在你和你的队友对BOSS造成伤害的同时反伤你们。\n\n在11级时法师和战士可以学习到能造成更多伤害的技能,所以在第10级选择职业时,如果你想做一个高输出角色,这两个职业是极佳的选择。",
+ "androidFaqAnswer9": "首先,你需要加入或者成立一个战队 (见上面内容),虽然你可以一个人对抗怪物们,我们还是建议组队作战,因为这样可以让副本变得简单很多。另外,在完成副本时有一个可以鼓励你的朋友也是非常有动力的!\n\n然后,你需要一个副本卷轴,在目录 > 道具 下面可以找到,得到一个副本卷轴有三个办法:\n\n- 在15级的时候,你会得到一条副本线,有三个互相联系的副本,在30,40和60级还会解锁更多副本线\n- 当你邀请朋友加入你的战队,你会被奖励基础卷轴!\n- 在网页版你可以在[这里] (https://habitica.com/#/options/inventory/quests) 用金币和宝石购买副本。(我们会在未来把这项功能加到手机APP上)\n\n要在一项收集副本中击败BOSS收集道具,只需要照常完成你的日常任务,每过一夜,它们会被追踪到对BOSS的伤害值上 (下拉页面刷新就能看见BOSS的生命值在降低)。如果在和BOSS对战时错过了某些日常任务,BOSS会在你和你的队友对BOSS造成伤害的同时反伤你们。\n\n在11级时法师和战士可以学习到能造成更多伤害的技能,所以在第10级选择职业时,如果你想做一个高输出角色,这两个职业是极佳的选择。",
+ "webFaqAnswer9": "首先,你需要在导航栏的“队伍”里,加入或者成立一个队伍。虽然你一个人也可以是一支队伍,我们还是建议组队作战,因为这样可以让副本变得简单很多。另外,在完成副本时有一个可以鼓励你的朋友也是非常有动力的!然后,你需要一个副本卷轴,在【物品栏】→【物品】→【副本】下面可以找到,得到卷轴有三种办法:\n\n* 当你邀请朋友加入你的战队,你会得到“普通的清单魔蛇”卷轴!\n* 在15级的时候,你会得到一条副本线,有三个首尾相连的副本,在30、40和60级还会解锁更多副本线。\n* 你可以在【商店】→【副本】用金币和宝石购买副本。\n\n要击败Boss或者是收集副本物品,只需要照常完成你的日常任务,第二天它们会被结算到Boss身上造成伤害值(刷新就能看见Boss的生命值在降低),或者结算到收集物品的进度上。如果在和Boss对战时错过了某些日常任务,Boss会在你和你的队友对Boss造成伤害的同时打掉你们的生命值。\n\n在11级时法师和战士可以学习到能造成更多伤害的技能,所以在第10级选择职业时,如果你想做一个高输出角色,这两个职业是极佳的选择。",
"faqQuestion10": "什么是宝石?我如何获得宝石?",
"iosFaqAnswer10": "宝石需要通过点击标题栏上的宝石图标,用现实中的真钱购买。购买宝石可以帮助我们维护网站的运营,我们对这些支持表示衷心感谢!\n\n除了直接购买宝石以外,还有另外三个办法可以得到宝石:\n\n* 在 [网页版](https://habitica.com) 进入 社交 > 挑战 赢得另一个玩家设立的挑战项目。(我们会将挑战项目在未来加入手机APP)\n\n* 在 [网页版](https://habitica.com/#/options/settings/subscription) 进行订阅,可以解锁每月用金币购买一定数量宝石的权限\n\n* 为Habitica项目做出贡献。在这个维基页面查看更多细节: [为Habitica做贡献](http://habitica.fandom.com/wiki/Contributing_to_Habitica).\n\n请记住,使用宝石购买的道具并不具有额外的优势,所以玩家们完全可以不使用宝石继续使用本程序!",
"androidFaqAnswer10": "宝石需要通过点击标题栏上的宝石图标,用现实中的真钱购买。购买宝石可以帮助我们维护网站的运营,我们对这些支持表示衷心感谢!\n\n除了直接购买宝石以外,还有另外三个办法可以得到宝石:\n\n* 在 [网页版](https://habitica.com) 进入 社交 > 挑战 赢得另一个玩家设立的挑战项目。(我们会将挑战项目在未来加入手机APP)\n\n* 在 [网页版](https://habitica.com/#/options/settings/subscription) 进行订阅,可以解锁每月用金币购买一定数量宝石的权限\n\n* 为Habitica项目做出贡献。在这个维基页面查看更多细节: [为Habitica做贡献](http://habitica.fandom.com/wiki/Contributing_to_Habitica).\n\n请记住,使用宝石购买的道具并不具有额外的优势,所以玩家们完全可以在没有宝石的情况下使用Habitica!",
@@ -49,8 +49,8 @@
"androidFaqAnswer11": "你可以报告一个漏洞,请求一个功能,或者给我们发送反馈通过 关于> 报告漏洞, 或者 关于 > 给我们发送反馈! 我们会尽力协助你。",
"webFaqAnswer11": "想要上报一个Bug,点击[【帮助】→【报告一个Bug】](https://habitica.com/groups/guild/a29da26b-37de-4a71-b0c6-48e72a900dac)并关注你的聊天信息。\n\n如果你不能登录Habitica,提交你登录时的详细状况(不是你的密码!)到[<%= techAssistanceEmail %>](<%= wikiTechAssistanceEmail %>)。不用担心,我们会马上解决问题的!\n\n新功能增添的请求都在Trello中收集,进入[【帮助】→【请求一个新功能】](https://trello.com/c/odmhIqyW/440-read-first-table-of-contents),然后按说明操作。嗒哒!",
"faqQuestion12": "怎么打世界Boss?",
- "iosFaqAnswer12": "世界级首领是出现在酒馆的特殊怪物。所有活跃的玩家都会自动参与首领战,玩家们的完成的任务和技能都会对首领造成伤害。\n\n你可以像平时那样完成探索任务。你完成的任务和技能会被算入世界级首领以及你队伍首领的进度当中。\n\n世界级首领并不会伤害你以及你的账户。它会有一个愤怒值,取决于用户跳过的每日任务。如果愤怒值满了,它会攻击一个NPC并使这个NPC的形象产生永久性改变。\n\n你可以获知更多关于过去的[世界级首领的信息]。\n请参阅(http://habitica.fandom.com/wiki/World_Bosses) 。",
- "androidFaqAnswer12": "世界级首领是出现在酒馆的特殊怪物。所有活跃的玩家都会自动参与首领战,玩家们的完成的任务和技能都会对首领造成伤害。\n\n你可以像平时那样完成探索任务。你完成的任务和技能会被算入世界级首领以及你队伍首领的进度当中。\n\n世界级首领并不会伤害你以及你的账户。它会有一个愤怒值,取决于用户跳过的每日任务。如果愤怒值满了,它会攻击一个NPC并使这个NPC的形象产生永久性改变。\n\n你可以获知更多关于过去的[世界级首领的信息]。\n请参阅(http://habitica.fandom.com/wiki/World_Bosses) 。",
+ "iosFaqAnswer12": "世界级首领是出现在酒馆的特殊怪物。所有活跃的玩家都会自动参与首领战,玩家们的完成的任务和技能都会对首领造成伤害。\n\n你可以像平时那样完成探索副本。你完成的任务和技能会被算入世界级首领以及你队伍首领的进度当中。\n\n世界级首领并不会伤害你以及你的账户。它会有一个愤怒值,取决于用户跳过的每日任务。如果愤怒值满了,它会攻击一个NPC并使这个NPC的形象产生永久性改变。\n\n你可以获知更多关于过去的[世界级首领的信息]。\n请参阅(http://habitica.fandom.com/wiki/World_Bosses) 。",
+ "androidFaqAnswer12": "世界级首领是出现在酒馆的特殊怪物。所有活跃的玩家都会自动参与首领战,玩家们的完成的任务和技能都会对首领造成伤害。\n\n你可以像平时那样完成探索副本。你完成的任务和技能会被算入世界级首领以及你队伍首领的进度当中。\n\n世界级首领并不会伤害你以及你的账户。它会有一个愤怒值,取决于用户跳过的每日任务。如果愤怒值满了,它会攻击一个NPC并使这个NPC的形象产生永久性改变。\n\n你可以获知更多关于过去的[世界级首领的信息]。\n请参阅(http://habitica.fandom.com/wiki/World_Bosses) 。",
"webFaqAnswer12": "世界Boss是出现在酒馆的特殊怪物。所有活跃的玩家都会自动参战,玩家们的完成的任务和技能都会对Boss造成伤害。你可以同时像平时那样开副本。你完成的任务和放的技能会同时被算入世界Boss以及你队伍副本的进度当中。世界Boss并不会对你或者你的号造成伤害。它会有一个怒气值,随着用户没完成的日常任务数量而增加。如果怒气槽满了,它会攻击一个本站的NPC并使这个NPC的形象发生变化。\n\n你可以参阅wiki上的[世界Boss](http://habitica.fandom.com/wiki/World_Bosses),获知更多关于过去的信息。",
"iosFaqStillNeedHelp": "如果你的问题不在 [Wiki FAQ](http://habitica.fandom.com/wiki/FAQ)中,请在Tavern聊天中咨询。进入方式:菜单 > Tavern!很高兴帮助您。",
"androidFaqStillNeedHelp": "如果你的问题不在 [Wiki FAQ](http://habitica.fandom.com/wiki/FAQ)中,请在Tavern聊天中咨询。进入方式:菜单 > Tavern!很高兴帮助您。",
diff --git a/website/common/locales/zh/front.json b/website/common/locales/zh/front.json
index 844b9ad739..ca6af688a4 100644
--- a/website/common/locales/zh/front.json
+++ b/website/common/locales/zh/front.json
@@ -4,7 +4,7 @@
"accept1Terms": "我同意接受",
"accept2Terms": "和",
"alexandraQuote": "忍不住在马德里做演讲时提到了[Habitica],对依然需要一个老板管着的自由职业者来说,这个工具你必须拥有。",
- "althaireQuote": "持续地去完成任务真的能鼓励我去完成我每天要做的事和其他所有待办事项,我最大的动力是我不能辜负我的战友。",
+ "althaireQuote": "持续地去完成副本真的能鼓励我去完成我每天要做的事和其他所有待办事项,我最大的动力是我不能辜负我的战友。",
"andeeliaoQuote": "超赞的东西,前几天刚开始尝试,现在已经让我的生活变得更加充实丰富!",
"autumnesquirrelQuote": "我在工作,做家务,付账的时候已经不会那么拖延了。",
"businessSample1": "确认1页库存清单",
@@ -331,5 +331,6 @@
"getStarted": "现在加入我们!",
"mobileApps": "手机客户端",
"learnMore": "了解更多",
- "communityInstagram": "Instagram"
+ "communityInstagram": "Instagram",
+ "minPasswordLength": "密码至少需要8个字符。"
}
diff --git a/website/common/locales/zh/gear.json b/website/common/locales/zh/gear.json
index 59aa89c565..06e450a6b1 100644
--- a/website/common/locales/zh/gear.json
+++ b/website/common/locales/zh/gear.json
@@ -29,13 +29,13 @@
"weaponWarrior2Text": "斧子",
"weaponWarrior2Notes": "双刃战斧,增加<%= str %>点力量",
"weaponWarrior3Text": "流星锤",
- "weaponWarrior3Notes": "带有野蛮尖刺的沉重棍棒,增加<%= str %>点力量。",
+ "weaponWarrior3Notes": "—带有野蛮尖刺的沉重棍棒。增加<%= str %>点力量。",
"weaponWarrior4Text": "蓝宝石利刃",
"weaponWarrior4Notes": "刀锋如凛冽的北风一般锋利的剑。增加<%= str %>点力量。",
"weaponWarrior5Text": "红宝石利剑",
"weaponWarrior5Notes": "自铸造之日至今,炽燃从未黯淡的武器。增加<%= str %>点力量。",
"weaponWarrior6Text": "黄金利剑",
- "weaponWarrior6Notes": "暗黑生物的克星,增加<%= str %>点力量。",
+ "weaponWarrior6Notes": "暗黑生物的克星。增加<%= str %>点力量。",
"weaponRogue0Text": "匕首",
"weaponRogue0Notes": "盗贼最基本的武器,没有属性加成。",
"weaponRogue1Text": "短剑",
@@ -43,9 +43,9 @@
"weaponRogue2Text": "半月弯刀",
"weaponRogue2Notes": "砍刀,能迅速挥出致命一击。增加<%= str %>点力量。",
"weaponRogue3Text": "尼泊尔军刀",
- "weaponRogue3Notes": "与众不同的的丛林刀,既是求生工具又是武器。增加<%= str %>点力量。",
+ "weaponRogue3Notes": "与众不同的丛林刀,既是求生工具又是武器。增加<%= str %>点力量。",
"weaponRogue4Text": "双截棍",
- "weaponRogue4Notes": "由铁链连接的两只重棒,增加<%= str %>点力量。",
+ "weaponRogue4Notes": "由铁链连接的两只重棒。增加<%= str %>点力量。",
"weaponRogue5Text": "忍者刀",
"weaponRogue5Notes": "如同忍者本身一样致命和狡黠。增加<%= str %>点力量。",
"weaponRogue6Text": "钩剑",
@@ -57,23 +57,23 @@
"weaponWizard2Text": "宝石法杖",
"weaponWizard2Notes": "用珍贵的宝石聚集法力。增加<%= int %>点智力和<%= per %>点感知。",
"weaponWizard3Text": "铁制法杖",
- "weaponWizard3Notes": "镀上金属来传导热量,寒气和闪电。增加<%= int %>点智力和<%= per %>点感知。",
+ "weaponWizard3Notes": "镀上金属来传导热量、寒气和闪电。增加<%= int %>点智力和<%= per %>点感知。",
"weaponWizard4Text": "黄铜法杖",
- "weaponWizard4Notes": "从它沉甸甸的的重量中就能感受到它的强大法力。增加<%= int %>点智力和<%= per %>点感知。",
+ "weaponWizard4Notes": "从它沉甸甸的重量中就能感受到它的强大法力。增加<%= int %>点智力和<%= per %>点感知。",
"weaponWizard5Text": "大法师杖",
"weaponWizard5Notes": "协助施放最复杂的法术。增加<%= int %>点智力和<%= per %>点感知。",
"weaponWizard6Text": "黄金法杖",
"weaponWizard6Notes": "由土星陨石和炼金而成的金打造,稀有且强大。增加<%= int %>点智力和<%= per %>点感知。",
"weaponHealer0Text": "新手棍",
- "weaponHealer0Notes": "治疗者练习用。没有属性加成。",
+ "weaponHealer0Notes": "医者练习用。没有属性加成。",
"weaponHealer1Text": "侍僧棍",
- "weaponHealer1Notes": "为初级治疗师精心打造。增加<%= int %>点智力。",
+ "weaponHealer1Notes": "为初级医者精心打造。增加<%= int %>点智力。",
"weaponHealer2Text": "石英棍",
"weaponHealer2Notes": "顶部的宝石用于支持治疗之力。增加<%= int %>点智力。",
"weaponHealer3Text": "紫水晶棍",
"weaponHealer3Notes": "轻触即可净化毒素。增加<%= int %>点智力。",
"weaponHealer4Text": "医师棍",
- "weaponHealer4Notes": "治疗师的象征。增加<%= int %>点智力。",
+ "weaponHealer4Notes": "医者的象征。增加<%= int %>点智力。",
"weaponHealer5Text": "皇家权杖",
"weaponHealer5Notes": "与君王或首相之手相得益彰。增加<%= int %>点智力。",
"weaponHealer6Text": "金色权杖",
@@ -85,21 +85,21 @@
"weaponSpecial2Text": "Stephen Weber 的巨龙长矛",
"weaponSpecial2Notes": "感受喷薄而出的巨龙神力吧!增加力量和感知各<%= attrs %>点。",
"weaponSpecial3Text": "马斯泰恩的碎石流星锤",
- "weaponSpecial3Notes": "怪物统统捣烂!增加力量,智力,体质各<%= attrs %>点。",
+ "weaponSpecial3Notes": "怪物统统捣烂!增加力量、智力和体质各<%= attrs %>点。",
"weaponSpecialCriticalText": "碾碎臭虫的批判战锤",
"weaponSpecialCriticalNotes": "这位勇士杀死了一个使无数战士陨落的 Github 敌人。这把战锤由臭虫的骨头打造,能造成强大的致命一击。增加力量和感知各<%= attrs %>点。",
"weaponSpecialTakeThisText": "Take This之剑",
- "weaponSpecialTakeThisNotes": "这把剑是通过参与“Take This”赞助的挑战而获得的。祝贺你!所有属性提升<%= attrs %>。",
+ "weaponSpecialTakeThisNotes": "这把剑是通过参与“Take This”赞助的挑战而获得的。祝贺你!增加全属性<%= attrs %>点。",
"weaponSpecialTridentOfCrashingTidesText": "怒潮三叉戟",
- "weaponSpecialTridentOfCrashingTidesNotes": "赐予你给鱼下命令的本领, 还能有力刺激你完成任务。.增加 <%= int %> 点智力。",
+ "weaponSpecialTridentOfCrashingTidesNotes": "赐予你给鱼下命令的本领, 还能有力刺激你完成任务。增加 <%= int %> 点智力。",
"weaponSpecialTaskwoodsLanternText": "任务树林的灯笼",
- "weaponSpecialTaskwoodsLanternNotes": "将破晓之光给予任务树林Taskwood Orchards的幽灵守卫,这盏灯笼可以照亮黑暗深处,也可以鸣唱强大的魔法。分别增加感知和智力<%= attrs %> 点。",
+ "weaponSpecialTaskwoodsLanternNotes": "将破晓之光给予任务树林Taskwood Orchards的幽灵守卫,这盏灯笼可以照亮黑暗深处,也可以鸣唱强大的魔法。增加感知和智力各<%= attrs %>点。",
"weaponSpecialBardInstrumentText": "吟游诗人的谈诗琴",
- "weaponSpecialBardInstrumentNotes": "在这件神奇的琵琶上弹奏欢快的曲调吧!智力和感知属性各增加<%= attrs %>。",
+ "weaponSpecialBardInstrumentNotes": "在这件神奇的琵琶上弹奏欢快的曲调吧!增加智力和感知各<%= attrs %>点。",
"weaponSpecialLunarScytheText": "月镰",
- "weaponSpecialLunarScytheNotes": "定期给这把镰刀打蜡,否则她的力量会减弱。 力量和感知各增加<%= attrs %>。",
+ "weaponSpecialLunarScytheNotes": "定期给这把镰刀打蜡,否则她的力量会减弱。增加力量和感知各<%= attrs %>点。",
"weaponSpecialMammothRiderSpearText": "猛犸骑士矛",
- "weaponSpecialMammothRiderSpearNotes": "这只玫瑰石英尖矛将使你激发出古老咒语的力量。增加智力<%= int %>点。",
+ "weaponSpecialMammothRiderSpearNotes": "这只玫瑰石英尖矛将使你激发出古老咒语的力量。增加<%= int %>点智力。",
"weaponSpecialPageBannerText": "一页旗帜",
"weaponSpecialPageBannerNotes": "挥舞你的旗帜来获得信心!增加<%= str %>点力量。",
"weaponSpecialRoguishRainbowMessageText": "俏皮彩虹信使",
@@ -107,13 +107,13 @@
"weaponSpecialSkeletonKeyText": "骷髅钥匙",
"weaponSpecialSkeletonKeyNotes": "所有最棒的潜行者都会携带一把钥匙来打开任何的锁!增加<%= con %>点体质。",
"weaponSpecialNomadsScimitarText": "牧民的弯刀",
- "weaponSpecialNomadsScimitarNotes": "这把弯刀拥有令人惊叹的完美弧度,你可以坐在坐骑上从背后袭击任务!增加 <%= int %>点智力。",
+ "weaponSpecialNomadsScimitarNotes": "这把弯刀拥有令人惊叹的完美弧度,你可以坐在坐骑上从背后袭击任务!增加<%= int %>点智力。",
"weaponSpecialFencingFoilText": "击剑",
- "weaponSpecialFencingFoilNotes": "如果有人胆敢怀疑你的荣誉,你随时准备好用这把精美的花剑来证明自己!增加 <%= str %>点力量。",
+ "weaponSpecialFencingFoilNotes": "如果有人胆敢怀疑你的荣誉,你随时准备好用这把精美的花剑来证明自己!增加<%= str %>点力量。",
"weaponSpecialTachiText": "日本太刀",
- "weaponSpecialTachiNotes": "这把闪亮的弧形剑会将你的任务撕成碎片!增加 <%= str %>点力量。",
+ "weaponSpecialTachiNotes": "这把闪亮的弧形剑会将你的任务撕成碎片!增加<%= str %>点力量。",
"weaponSpecialAetherCrystalsText": "以太水晶",
- "weaponSpecialAetherCrystalsNotes": "这双护腕和水晶曾经属于迷失的大法师。全属性加成<%= attrs %>点。",
+ "weaponSpecialAetherCrystalsNotes": "这双护腕和水晶曾经属于迷失的大法师。增加全属性<%= attrs %>点。",
"weaponSpecialYetiText": "雪人驯化矛",
"weaponSpecialYetiNotes": "这把长矛赐予使用者指挥雪人的能力。增加<%= str %>点力量。2013-2014冬季限量版装备。",
"weaponSpecialSkiText": "滑雪刺客杖",
@@ -131,7 +131,7 @@
"weaponSpecialSpringHealerText": "可爱的骨头",
"weaponSpecialSpringHealerNotes": "拿来!增加<%= int %>点智力。2014年春季限量版装备。",
"weaponSpecialSummerRogueText": "海盗弯刀",
- "weaponSpecialSummerRogueNotes": "停止吧!你会让那些日常任务自取灭亡!增强力量 <%= str %> 点。限量版2014夏季装备。",
+ "weaponSpecialSummerRogueNotes": "停止吧!你会让那些日常任务自取灭亡!增加 <%= str %> 点力量。限量版2014夏季装备。",
"weaponSpecialSummerWarriorText": "航海片刀",
"weaponSpecialSummerWarriorNotes": "沒有任何待办事项中的任务愿意与这把粗糙的刀纠缠!增加<%= str %>点力量。限量版2014夏季装备。",
"weaponSpecialSummerMageText": "海带捕捉器",
@@ -147,29 +147,29 @@
"weaponSpecialFallHealerText": "圣甲虫魔杖",
"weaponSpecialFallHealerNotes": "这根圣甲虫魔杖会保护和治愈持有者。增加<%= int %>点智力。2014年秋季限量版装备。",
"weaponSpecialWinter2015RogueText": "冰刺",
- "weaponSpecialWinter2015RogueNotes": "你刚刚真的,肯定,绝对是从地上拾取了这件装备。提升力量<%= str %>。2014-2015 冬日限定版装备。",
+ "weaponSpecialWinter2015RogueNotes": "你刚刚真的,肯定,绝对是从地上拾取了这件装备。增加<%= str %>点力量。2014-2015 冬日限定版装备。",
"weaponSpecialWinter2015WarriorText": "橡皮糖剑",
- "weaponSpecialWinter2015WarriorNotes": "这把美味的剑也许的确吸引了怪物……但是你已经准备好接受挑战!提升力量 <%= str %>。2014-2015 冬日限定版装备。",
+ "weaponSpecialWinter2015WarriorNotes": "这把美味的剑也许的确吸引了怪物……但是你已经准备好接受挑战!增加<%= str %>点力量。2014-2015 冬日限定版装备。",
"weaponSpecialWinter2015MageText": "点亮冬日法杖",
- "weaponSpecialWinter2015MageNotes": "这支水晶魔杖发出的光芒使人们心中充满喜悦。提升智力<%= int %> 和感知 <%= per %>。2014-2015 冬日限定版装备。",
+ "weaponSpecialWinter2015MageNotes": "这支水晶魔杖发出的光芒使人们心中充满喜悦。增加<%= int %>点智力和<%= per %>点感知。2014-2015 冬日限定版装备。",
"weaponSpecialWinter2015HealerText": "抚慰权杖",
- "weaponSpecialWinter2015HealerNotes": "这把权杖温暖了酸痛的肌肉并扫除压力。提升智力<%= int %>。2014-2015 冬日限定版装备。",
+ "weaponSpecialWinter2015HealerNotes": "这把权杖温暖了酸痛的肌肉并扫除压力。增加<%= int %>点智力。2014-2015 冬日限定版装备。",
"weaponSpecialSpring2015RogueText": "霹雳爆破管",
- "weaponSpecialSpring2015RogueNotes": "别被它的噼里啪啦声糊弄了——爆炸起来简直厉害。提高 <%= str %>点力量。2015春季限定版装备。",
+ "weaponSpecialSpring2015RogueNotes": "别被它的噼里啪啦声糊弄了——爆炸起来简直厉害。增加<%= str %>点力量。2015春季限定版装备。",
"weaponSpecialSpring2015WarriorText": "骨棒",
- "weaponSpecialSpring2015WarriorNotes": "这是为真正凶猛的狗狗们准备的真正的骨棒,绝对不是那种季节魔女给你的咀嚼玩具!乖狗狗是谁?谁~~~是乖狗狗呀??就是你呀!!你是只乖狗狗哦!!!提高 <%= str %>点力量。2015春季限定版装备。",
+ "weaponSpecialSpring2015WarriorNotes": "这是为真正凶猛的狗狗们准备的真正的骨棒,绝对不是那种季节魔女给你的咀嚼玩具!乖狗狗是谁?谁~~~是乖狗狗呀??就是你呀!!你是只乖狗狗哦!!!增加<%= str %>点力量。2015春季限定版装备。",
"weaponSpecialSpring2015MageText": "魔法师魔杖",
- "weaponSpecialSpring2015MageNotes": "可以用这支魔杖召唤一个属于你自己的迷人胡萝卜。提高 <%= int %> 点智力和 <%= per %> 点感知。2015春季限定版装备。",
+ "weaponSpecialSpring2015MageNotes": "可以用这支魔杖召唤一个属于你自己的迷人胡萝卜。增加<%= int %>点智力和<%= per %>点感知。2015春季限定版装备。",
"weaponSpecialSpring2015HealerText": "猫咪拨浪鼓",
- "weaponSpecialSpring2015HealerNotes": "当你摇动这只拨浪鼓,它会发出叮当声,让所有人保持愉悦好几小时。提高<%= int %>点智力。2015春季限定版装备。",
+ "weaponSpecialSpring2015HealerNotes": "当你摇动这只拨浪鼓,它会发出叮当声,让所有人保持愉悦好几小时。增加<%= int %>点智力。2015春季限定版装备。",
"weaponSpecialSummer2015RogueText": "炽烈珊瑚",
- "weaponSpecialSummer2015RogueNotes": "这个是烈焰珊瑚的分支装备,它拥有在水中散播毒液的能力。提高<%= str %>点力量。2015年夏季限量装备。",
+ "weaponSpecialSummer2015RogueNotes": "这个是烈焰珊瑚的分支装备,它拥有在水中散播毒液的能力。增加<%= str %>点力量。2015年夏季限量装备。",
"weaponSpecialSummer2015WarriorText": "日剑鱼",
- "weaponSpecialSummer2015WarriorNotes": "日光剑鱼是一个可怕的武器,如果能让它不要再扭来扭去的话。增加 <%= str %>点力量。2015年秋季限量版装备。",
+ "weaponSpecialSummer2015WarriorNotes": "日光剑鱼是一个可怕的武器,如果能让它不要再扭来扭去的话。增加<%= str %>点力量。2015年秋季限量版装备。",
"weaponSpecialSummer2015MageText": "轻语者之杖",
- "weaponSpecialSummer2015MageNotes": "在这柄法杖上的宝石里隐隐可见隐藏着的力量在闪耀。增加<%= int %>点智力和 <%= per %>点感知。限量版2015年夏季装备。",
+ "weaponSpecialSummer2015MageNotes": "在这柄法杖上的宝石里隐隐可见隐藏着的力量在闪耀。增加<%= int %>点智力和<%= per %>点感知。限量版2015年夏季装备。",
"weaponSpecialSummer2015HealerText": "涛之魔杖",
- "weaponSpecialSummer2015HealerNotes": "治疗晕船,和船晕!增加 <%= int %> 点智力。2015年夏天限量版装备。",
+ "weaponSpecialSummer2015HealerNotes": "治疗晕船,和船晕!增加<%= int %>点智力。2015年夏天限量版装备。",
"weaponSpecialFall2015RogueText": "战蝠之斧",
"weaponSpecialFall2015RogueNotes": "那些令人生畏的待办事项都在这把神斧的挥砍之下瑟瑟发抖。增加<%= str %>点力量。2015年秋季限量版装备。",
"weaponSpecialFall2015WarriorText": "木板",
@@ -183,21 +183,21 @@
"weaponSpecialWinter2016WarriorText": "坚固的铲子",
"weaponSpecialWinter2016WarriorNotes": "让我们把剩下的任务一股气干完!增加<%= str %>点力量。2015-2016冬季限量版。",
"weaponSpecialWinter2016MageText": "妖术滑雪板",
- "weaponSpecialWinter2016MageNotes": "你的行为就像慢动作一样,这一定是魔法!提升<%= int %>点智力和<%= per %>点感知。2015-1016冬季限定装备。",
+ "weaponSpecialWinter2016MageNotes": "你的行为就像慢动作一样,这一定是魔法!增加<%= int %>点智力和<%= per %>点感知。2015-1016冬季限定装备。",
"weaponSpecialWinter2016HealerText": "彩纸炮",
- "weaponSpecialWinter2016HealerNotes": "爽歪歪!!!!!冬季仙境盛典快乐!!!!\n提升<%= int %>点智力。2015-2016 冬季限量版装备。",
+ "weaponSpecialWinter2016HealerNotes": "爽歪歪!!!!!冬季仙境盛典快乐!!!!增加<%= int %>点智力。2015-2016 冬季限量版装备。",
"weaponSpecialSpring2016RogueText": "烈焰流星锤",
"weaponSpecialSpring2016RogueNotes": "你精通了锤球、棍棒和小刀。现在你提高到杂耍火焰!嗷呜!增加 <%= str %>点力量。2016年春季限定版装备。",
"weaponSpecialSpring2016WarriorText": "奶酪锤",
- "weaponSpecialSpring2016WarriorNotes": "没有人的朋友能比有着柔软的奶酪的老鼠还要多。增加 <%= str %>点力量。2016春季限定版装备。",
+ "weaponSpecialSpring2016WarriorNotes": "没有人的朋友能比有着柔软的奶酪的老鼠还要多。增加<%= str %>点力量。2016春季限定版装备。",
"weaponSpecialSpring2016MageText": "铃杖",
"weaponSpecialSpring2016MageNotes": "阿布拉-卡特-阿布拉!多么耀眼,你可能对自己施放了催眠术!噢...它叮当作响...增加<%= int %>点智力和<%= per %>点感知。2016年春季限定版装备。",
"weaponSpecialSpring2016HealerText": "春花魔杖",
"weaponSpecialSpring2016HealerNotes": "伴随着挥舞和闪烁,你给田地和森林带来了繁荣茂盛!还打击了讨厌老鼠的头。增加<%= int %>点智力。2016年春季限量版装备。",
"weaponSpecialSummer2016RogueText": "电动推杆",
- "weaponSpecialSummer2016RogueNotes": "那些与你战斗的人们将要体验到一次震惊的意外... 提高 <%= str %>点力量。2016夏季限量版装备。",
+ "weaponSpecialSummer2016RogueNotes": "那些与你战斗的人们将要体验到一次震惊的意外... 增加<%= str %>点力量。2016夏季限量版装备。",
"weaponSpecialSummer2016WarriorText": "弯曲的剑",
- "weaponSpecialSummer2016WarriorNotes": "用这把钩剑撕咬那些艰巨的任务吧!增强力量 <%= str %> 点。2016年限定版夏季装备。",
+ "weaponSpecialSummer2016WarriorNotes": "用这把钩剑撕咬那些艰巨的任务吧!增加<%= str %>点力量。2016年限定版夏季装备。",
"weaponSpecialSummer2016MageText": "海泡石之杖",
"weaponSpecialSummer2016MageNotes": "通过这个法杖过滤了所有海洋的力量。增加<%= int %>点智力和 <%= per %>点感知。2016年夏季限量版装备。",
"weaponSpecialSummer2016HealerText": "治愈之三叉戟",
@@ -205,9 +205,9 @@
"weaponSpecialFall2016RogueText": "蛛咬匕首",
"weaponSpecialFall2016RogueNotes": "感受蜘蛛咬伤的刺痛!增加<%= str %>点力量。2016年秋季限量版装备。",
"weaponSpecialFall2016WarriorText": "攻击之根",
- "weaponSpecialFall2016WarriorNotes": "用这些扭曲的树根攻击你的任务吧!增强力量 <%= str %> 点。2016年限定版秋季装备。",
+ "weaponSpecialFall2016WarriorNotes": "用这些扭曲的树根攻击你的任务吧!增加<%= str %>点力量。2016年限定版秋季装备。",
"weaponSpecialFall2016MageText": "不详的宝珠",
- "weaponSpecialFall2016MageNotes": "不要向这颗宝珠寻求你的未来…增加<%= int %>点智力和 <%= per %>点感知。2016年秋季限量版装备。",
+ "weaponSpecialFall2016MageNotes": "不要向这颗宝珠寻求你的未来…增加<%= int %>点智力和<%= per %>点感知。2016年秋季限量版装备。",
"weaponSpecialFall2016HealerText": "毒蛇",
"weaponSpecialFall2016HealerNotes": "一口伤害一口奶。增加<%=int %>点智力。2016年秋季限量装。",
"weaponSpecialWinter2017RogueText": "冰斧",
@@ -223,17 +223,17 @@
"weaponSpecialSpring2017WarriorText": "羽毛鞭",
"weaponSpecialSpring2017WarriorNotes": "这条有力的鞭子能驯服不听话的任务。但是……它也……很有趣而且容易分散注意力!!增加<%= str %>点力量。2017年春季限量版装备。",
"weaponSpecialSpring2017MageText": "魔法孵化杖",
- "weaponSpecialSpring2017MageNotes": "当你没有在念咒语时,可以把它扔出去在捡回来哦!多有趣!增加智力<%= int %>点,感知<%= per %>点。2017年春季限定版装备。",
+ "weaponSpecialSpring2017MageNotes": "当你没有在念咒语时,可以把它扔出去在捡回来哦!多有趣!增加<%= int %>点智力和<%= per %>点感知。2017年春季限定版装备。",
"weaponSpecialSpring2017HealerText": "蛋之魔杖",
"weaponSpecialSpring2017HealerNotes": "这把杖中真正的魔法是一个秘密,一个新的生命正在这五颜六色的壳中。增加<%= int %>点智力。2017年春季限定版装备。",
"weaponSpecialSummer2017RogueText": "海龙鳍",
- "weaponSpecialSummer2017RogueNotes": "这些鳍拥有着锋利的边缘。增加体质<%= str %>点。2017夏季限定。",
+ "weaponSpecialSummer2017RogueNotes": "这些鳍拥有着锋利的边缘。增加<%= str %>点力量。2017夏季限定。",
"weaponSpecialSummer2017WarriorText": "最强大遮阳伞",
- "weaponSpecialSummer2017WarriorNotes": "恐惧之源。增加体质<%= str %>点。2017夏季限定。",
+ "weaponSpecialSummer2017WarriorNotes": "恐惧之源。增加<%= str %>点力量。2017夏季限定。",
"weaponSpecialSummer2017MageText": "Whirlpool的鞭子",
"weaponSpecialSummer2017MageNotes": "召唤一种神奇的沸腾之水来打击你的任务!增加智力<%= int %>点和感知<%= per %>点。2017夏季限定。",
"weaponSpecialSummer2017HealerText": "珍珠魔杖",
- "weaponSpecialSummer2017HealerNotes": "这只珍珠的魔杖一碰就能把所有的伤口都抚平。增加智力<%= int %>点。2017夏季限定。",
+ "weaponSpecialSummer2017HealerNotes": "这只珍珠的魔杖一碰就能把所有的伤口都抚平。增加<%= int %>点智力。2017夏季限定。",
"weaponSpecialFall2017RogueText": "苹果蜜饯权杖",
"weaponSpecialFall2017RogueNotes": "用甜蜜击败你的敌人吧!增加<%= str %>点力量。2017年限定版秋季装备。",
"weaponSpecialFall2017WarriorText": "玉米糖长矛",
@@ -243,7 +243,7 @@
"weaponSpecialFall2017HealerText": "恐惧烛台",
"weaponSpecialFall2017HealerNotes": "这盏灯拥有着驱散了恐惧的力量,能让别人知道你在这里并且帮助你。增加<%= int %>点智力。2017秋季限定装备。",
"weaponSpecialWinter2018RogueText": "薄荷钩",
- "weaponSpecialWinter2018RogueNotes": "这件装备适合用来攀爬墙壁或用上面甜美的糖果分散敌人的注意力。 增加 <%= str %>点力量。限量版2017-2018冬季装备。",
+ "weaponSpecialWinter2018RogueNotes": "这件装备适合用来攀爬墙壁或用上面甜美的糖果分散敌人的注意力。 增加<%= str %>点力量。限量版2017-2018冬季装备。",
"weaponSpecialWinter2018WarriorText": "假日领结锤",
"weaponSpecialWinter2018WarriorNotes": "这个闪亮的武器闪耀的外观会让你的敌人眼花缭乱! 增加<%= str %>点力量。2017-2018冬限定季装备。",
"weaponSpecialWinter2018MageText": "假日的五彩纸屑",
@@ -255,15 +255,15 @@
"weaponSpecialSpring2018WarriorText": "拂晓的斧头",
"weaponSpecialSpring2018WarriorNotes": "由闪亮黄金打造,这把斧头足以攻击颜色最红的任务!增加<%= str %>点力量。 2018年春季限量版装备。",
"weaponSpecialSpring2018MageText": "郁金香法杖",
- "weaponSpecialSpring2018MageNotes": "这朵魔法之花永不枯萎!增加 <%= int %> 点智力和 <%= per %>点感知。2018年春季限量版装备。",
+ "weaponSpecialSpring2018MageNotes": "这朵魔法之花永不枯萎!增加<%= int %>点智力和<%= per %>点感知。2018年春季限量版装备。",
"weaponSpecialSpring2018HealerText": "石榴石杆",
- "weaponSpecialSpring2018HealerNotes": "当你默念治疗咒语时,这杆里的石头能汇聚你的力量!增加 <%= int %>点智力。2018年春季限量版装备。",
+ "weaponSpecialSpring2018HealerNotes": "当你默念治疗咒语时,这杆里的石头能汇聚你的力量!增加<%= int %>点智力。2018年春季限量版装备。",
"weaponSpecialSummer2018RogueText": "钓鱼竿",
- "weaponSpecialSummer2018RogueNotes": "这柄轻巧坚固的钓竿和卷筒可以双重使用,使你的DPS(每个夏天钓到的深海龙鱼)最大化。增加 <%= str %>点力量。2018年夏季限量版装备。",
+ "weaponSpecialSummer2018RogueNotes": "这柄轻巧坚固的钓竿和卷筒可以双重使用,使你的DPS(Dragonfish Per Summer,每个夏天钓到的深海龙鱼)最大化。增加<%= str %>点力量。2018年夏季限量版装备。",
"weaponSpecialSummer2018WarriorText": "斗鱼矛",
- "weaponSpecialSummer2018WarriorNotes": "强大有力能用于战斗,优美雅致可上典礼。这把工艺精美的矛能在任何情况下保护你的家园!增加 <%= str %>点力量。2018年夏季限量版装备。",
+ "weaponSpecialSummer2018WarriorNotes": "强大有力能用于战斗,优美雅致可上典礼。这把工艺精美的矛能在任何情况下保护你的家园!增加<%= str %>点力量。2018年夏季限量版装备。",
"weaponSpecialSummer2018MageText": "狮鱼鳍射线",
- "weaponSpecialSummer2018MageNotes": "水下使用,魔力基于火,冰或电会对操纵它的法师产生伤害。但是,变幻出的毒刺作用出色!增加 <%= int %> 点智力和 <%= per %>点感知。2018年夏季限量版装备。",
+ "weaponSpecialSummer2018MageNotes": "水下使用,魔力基于火,冰或电会对操纵它的法师产生伤害。但是,变幻出的毒刺作用出色!增加<%= int %>点智力和<%= per %>点感知。2018年夏季限量版装备。",
"weaponSpecialSummer2018HealerText": "人鱼王的三叉戟",
"weaponSpecialSummer2018HealerNotes": "你用仁慈的手势指挥着治愈之水的波涛流过你的领土。增加 <%= int %>点智力。2018年夏季限量版装备。",
"weaponSpecialFall2018RogueText": "净瓶",
@@ -277,27 +277,27 @@
"weaponSpecialWinter2019RogueText": "一捧红色花束",
"weaponSpecialWinter2019RogueNotes": "利用这些节庆花束可以进一步伪装自己,或者慷慨地当作礼物送给您的好友让他们开心一整天!增加<%= str %>点力量。2018-2019冬季限定版装备。",
"weaponSpecialWinter2019WarriorText": "雪花戟",
- "weaponSpecialWinter2019WarriorNotes": "這些钻石般坚硬的刀刃是由冰晶一块一块雕刻而成! 增加 <%= str %> 点力量。 2018-2019限定版冬季装备。",
+ "weaponSpecialWinter2019WarriorNotes": "這些钻石般坚硬的刀刃是由冰晶一块一块雕刻而成! 增加<%= str %>点力量。 2018-2019限定版冬季装备。",
"weaponSpecialWinter2019MageText": "炎龙法杖",
- "weaponSpecialWinter2019MageNotes": "当心!这根爆炸威能法杖可以让你无惧来者!增加<%= int %>点智力和<%= per %>点感知。2018-2019冬季限定版装备",
+ "weaponSpecialWinter2019MageNotes": "当心!这根爆炸威能法杖可以让你无惧来者!增加<%= int %>点智力和<%= per %>点感知。2018-2019冬季限定版装备。",
"weaponSpecialWinter2019HealerText": "冬日魔杖",
- "weaponSpecialWinter2019HealerNotes": "冬季是个可以好好休息和疗伤的好时候,所以這根冬日魔杖的魔力可以帮助缓解最剧烈的伤痛。增加 <%= int %> 点智力。 2018-2019 冬季限定版装备。",
+ "weaponSpecialWinter2019HealerNotes": "冬季是个可以好好休息和疗伤的好时候,所以這根冬日魔杖的魔力可以帮助缓解最剧烈的伤痛。增加<%= int %>点智力。 2018-2019 冬季限定版装备。",
"weaponMystery201411Text": "盛宴之叉",
- "weaponMystery201411Notes": "刺伤你的仇敌或是插进你最爱的食物——这把多才多艺的叉子可是无所不能!没有属性加成。2014年11月捐助者物品。",
+ "weaponMystery201411Notes": "刺伤你的仇敌或是插进你最爱的食物——这把多才多艺的叉子可是无所不能!没有属性加成。2014年11月订阅者物品。",
"weaponMystery201502Text": "爱与真理之微光翅膀法杖",
- "weaponMystery201502Notes": "为了翅膀!为了爱!也为了真理!没有属性加成。2015年2月捐赠者物品。",
+ "weaponMystery201502Notes": "为了翅膀!为了爱!也为了真理!没有属性加成。2015年2月订阅者物品。",
"weaponMystery201505Text": "绿色骑士长矛",
"weaponMystery201505Notes": "这柄银绿相间的长枪已经将许多强敌打落马下。没有属性加成。2015年5月网站订阅者物品。",
"weaponMystery201611Text": "多产的丰饶角",
- "weaponMystery201611Notes": "各种美味又健康的食物会从这个角溢出。享受盛宴吧!没有属性加成。2016年11月捐助者礼物。",
+ "weaponMystery201611Notes": "各种美味又健康的食物会从这个角溢出。享受盛宴吧!没有属性加成。2016年11月订阅者物品。",
"weaponMystery201708Text": "熔岩剑",
- "weaponMystery201708Notes": "这把剑的炽热光辉会使即使是深红色的任务也能被迅速完成!没有属性加成。2017年8月捐赠者物品。",
+ "weaponMystery201708Notes": "这把剑的炽热光辉会使即使是深红色的任务也能被迅速完成!没有属性加成。2017年8月订阅者物品。",
"weaponMystery201811Text": "璀璨巫师法杖",
- "weaponMystery201811Notes": "强大程度配得上优雅外表的法杖。没有属性加成。2018年9月会员礼品。",
+ "weaponMystery201811Notes": "强大程度配得上优雅外表的法杖。没有属性加成。2018年9月订阅者物品。",
"weaponMystery301404Text": "蒸汽朋克手杖",
"weaponMystery301404Notes": "特别适合在城里散步。3015年3月订阅者物品。没有属性加成。",
"weaponArmoireBasicCrossbowText": "基本款弩",
- "weaponArmoireBasicCrossbowNotes": "这副十字弓可以在很远的距离刺穿一个任务的盔甲!增加<%= str %>点力量,<%= per %>点感知和<%= con %>点体质。",
+ "weaponArmoireBasicCrossbowNotes": "这副十字弓可以在很远的距离刺穿一个任务的盔甲!增加<%= str %>点力量,<%= per %>点感知和<%= con %>点体质。魔法衣橱:独立装备。",
"weaponArmoireLunarSceptreText": "圆月弯镰",
"weaponArmoireLunarSceptreNotes": "这把魔杖的治愈之力时隐时现。增加<%= con %>点体质和<%= int %>点智力。魔法衣橱:治愈之月套装(3件中的第3件)。",
"weaponArmoireRancherLassoText": "牧场用套索",
@@ -307,9 +307,9 @@
"weaponArmoireIronCrookText": "钢铁手杖",
"weaponArmoireIronCrookNotes": "纯钢打造,力透杖柄。这柄曲柄杖用来放牧效果极好。增加感知和力量各<%= attrs %>点。魔法衣橱:铁角套装(3件中的第3件)。",
"weaponArmoireGoldWingStaffText": "金翅法仗",
- "weaponArmoireGoldWingStaffNotes": "法杖上的翅膀持续颤动旋转。所有属性各增加 <%= attrs %> 点。魔法衣橱:独立装备。",
+ "weaponArmoireGoldWingStaffNotes": "法杖上的翅膀持续颤动旋转。增加全属性<%= attrs %>点。魔法衣橱:独立装备。",
"weaponArmoireBatWandText": "蝙蝠法仗",
- "weaponArmoireBatWandNotes": "这根法杖可以把任何任务都变成一只蝙蝠!挥一挥,让它们飞的远远的。增加 <%= int %>点智力和<%= per %>点感知。魔法衣橱:独立装备。",
+ "weaponArmoireBatWandNotes": "这根法杖可以把任何任务都变成一只蝙蝠!挥一挥,让它们飞的远远的。增加<%= int %>点智力和<%= per %>点感知。魔法衣橱:独立装备。",
"weaponArmoireShepherdsCrookText": "牧羊人之杖",
"weaponArmoireShepherdsCrookNotes": "对放牧狮鹫很有用。增加<%= con %>点体质。魔法衣橱:牧羊人套装(3件中的第1件)。",
"weaponArmoireCrystalCrescentStaffText": "晶月法杖",
@@ -319,15 +319,15 @@
"weaponArmoireGlowingSpearText": "光之矛",
"weaponArmoireGlowingSpearNotes": "这把长毛能把任务催眠,方便你展开攻击。增加<%= str %>点力量。魔法衣橱:独立装备。",
"weaponArmoireBarristerGavelText": "大律师锤",
- "weaponArmoireBarristerGavelNotes": "秩序!增加力量和体质各 <%= attrs %> 点。魔法衣橱:大律师套装(3件中的第3件)。",
+ "weaponArmoireBarristerGavelNotes": "秩序!增加力量和体质各<%= attrs %>点。魔法衣橱:大律师套装(3件中的第3件)。",
"weaponArmoireJesterBatonText": "小丑手杖",
- "weaponArmoireJesterBatonNotes": "挥舞着手杖,妙语连珠,最复杂的情况都会变得清晰起来。增加智力和感知各 <%= attrs %> 点。魔法衣橱:小丑套装(3件中的第3件)。",
+ "weaponArmoireJesterBatonNotes": "挥舞着手杖,妙语连珠,最复杂的情况都会变得清晰起来。增加智力和感知各<%= attrs %>点。魔法衣橱:小丑套装(3件中的第3件)。",
"weaponArmoireMiningPickaxText": "采矿鹤嘴锄",
- "weaponArmoireMiningPickaxNotes": "从你的任务中挖取最大量的金币!增加感知<%= per %>点。魔法衣橱:采矿者套装(3件中的第3件)。",
+ "weaponArmoireMiningPickaxNotes": "从你的任务中挖取最大量的金币!增加<%= per %>点感知。魔法衣橱:采矿者套装(3件中的第3件)。",
"weaponArmoireBasicLongbowText": "基础长弓",
"weaponArmoireBasicLongbowNotes": "一把有用的传下来的弓。增加<%= str %>点力量。魔法衣橱:基础射手套装(3件中的第1件)。",
"weaponArmoireHabiticanDiplomaText": "Habitica村民毕业证书",
- "weaponArmoireHabiticanDiplomaNotes": "重大成就的一个证书 -- 干的好!增加智力 <%= int %>点。魔法衣橱:毕业生套装(3件中的第1件)。",
+ "weaponArmoireHabiticanDiplomaNotes": "重大成就的一个证书 -- 干的好!增加<%= int %>点智力。魔法衣橱:毕业生套装(3件中的第1件)。",
"weaponArmoireSandySpadeText": "沙铲",
"weaponArmoireSandySpadeNotes": "挖掘工具,也能用沙子攻击敌方怪兽的眼睛。增加<%= str %>点力量。魔法衣橱:海滨套装(3件中的第1件)。",
"weaponArmoireCannonText": "大炮",
@@ -335,39 +335,39 @@
"weaponArmoireVermilionArcherBowText": "朱红长弓",
"weaponArmoireVermilionArcherBowNotes": "用这把耀人的朱红长弓,你的箭会像一颗流行那样飞射出去!增加<%= str %>点力量。魔法衣橱:朱红长弓套装(3件中的第1件)。",
"weaponArmoireOgreClubText": "食人魔短棒",
- "weaponArmoireOgreClubNotes": "这跟短棒是从一个真正的食人魔巢穴中打捞出来的。增加力量 <%= str %>点。魔法衣橱:食人魔套装(3件中的第2件)。",
+ "weaponArmoireOgreClubNotes": "这跟短棒是从一个真正的食人魔巢穴中打捞出来的。增加<%= str %>点力量。魔法衣橱:食人魔套装(3件中的第2件)。",
"weaponArmoireWoodElfStaffText": "木精灵法杖",
- "weaponArmoireWoodElfStaffNotes": "用掉落的古树枝干做的,这法杖能让你跟森林居民们交流~增加智力 <%= int %> 点。魔法衣橱:森林精灵套装(3件中的第3件)。",
+ "weaponArmoireWoodElfStaffNotes": "用掉落的古树枝干做的,这法杖能让你跟森林居民们交流~增加<%= int %>点智力。魔法衣橱:森林精灵套装(3件中的第3件)。",
"weaponArmoireWandOfHeartsText": "心之魔杖",
- "weaponArmoireWandOfHeartsNotes": "这把魔杖闪烁着温暖的红光。它会给予你智慧。提升智力<%= int %>点。魔法衣橱:心之女王套装(3件中的第3件)。",
+ "weaponArmoireWandOfHeartsNotes": "这把魔杖闪烁着温暖的红光。它会给予你智慧。增加<%= int %>点智力。魔法衣橱:心之女王套装(3件中的第3件)。",
"weaponArmoireForestFungusStaffText": "林菌法杖",
- "weaponArmoireForestFungusStaffNotes": "使用这根粗糙的法杖施展真菌学的魔术吧!增加 <%= int %> 点智力和 <%= per %> 点感知。魔法衣橱:独立装备。",
+ "weaponArmoireForestFungusStaffNotes": "使用这根粗糙的法杖施展真菌学的魔术吧!增加<%= int %>点智力和<%= per %>点感知。魔法衣橱:独立装备。",
"weaponArmoireFestivalFirecrackerText": "节日爆竹",
"weaponArmoireFestivalFirecrackerNotes": "尽责的享受这令人愉快的烟火。增加<%= per %>点感知。魔法衣橱:节日盛典套装(3件中的第3件)。",
"weaponArmoireMerchantsDisplayTrayText": "商人的展示托盘",
- "weaponArmoireMerchantsDisplayTrayNotes": "用这个漆盘来展示你要出售的精美商品。增加智力<%= int %>点。魔法衣橱:商人套餐(3件中的第3件)。",
+ "weaponArmoireMerchantsDisplayTrayNotes": "用这个漆盘来展示你要出售的精美商品。增加<%= int %>点智力。魔法衣橱:商人套餐(3件中的第3件)。",
"weaponArmoireBattleAxeText": "古代斧子",
- "weaponArmoireBattleAxeNotes": "这种精致的铁斧非常适合与你最凶猛的敌人或你最困难的任务作斗争。增加智力<%= int %>点和体质 <%= con %>点。魔法衣橱:独立装备。",
+ "weaponArmoireBattleAxeNotes": "这种精致的铁斧非常适合与你最凶猛的敌人或你最困难的任务作斗争。增加<%= int %>智力点和<%= con %>点体质。魔法衣橱:独立装备。",
"weaponArmoireHoofClippersText": "蹄钳",
- "weaponArmoireHoofClippersNotes": "给你努力的坐骑们修剪蹄子,让它们在带你冒险时保持健康!增加<%= attrs %>点力量、智力和体质。魔法衣橱:蹄铁工套装(3件中的第1件)。",
+ "weaponArmoireHoofClippersNotes": "给你努力的坐骑们修剪蹄子,让它们在带你冒险时保持健康!增加力量、智力和体质各<%= attrs %>点。魔法衣橱:蹄铁工套装(3件中的第1件)。",
"weaponArmoireWeaversCombText": "织女的梳子",
- "weaponArmoireWeaversCombNotes": "使用这把梳子把你的纬纱捆在一起,做一个紧密的织物。增加感知<%= per %>点和力量<%= str %>点。魔法衣橱:纺织套装(3件中的第2件)。",
+ "weaponArmoireWeaversCombNotes": "使用这把梳子把你的纬纱捆在一起,做一个紧密的织物。增加<%= per %>点感知和<%= str %>点力量。魔法衣橱:纺织套装(3件中的第2件)。",
"weaponArmoireLamplighterText": "点灯者",
- "weaponArmoireLamplighterNotes": "这个长杆的一端有用于点亮的灯芯,另一端有用于熄灭的铁钩。增加 <%= con %> 点体质和 <%= per %> 感知。魔法衣橱:点灯者套装(3件中的第1件)",
+ "weaponArmoireLamplighterNotes": "这个长杆的一端有用于点亮的灯芯,另一端有用于熄灭的铁钩。增加<%= con %>点体质和<%= per %>感知。魔法衣橱:点灯者套装(3件中的第1件)",
"weaponArmoireCoachDriversWhipText": "马车夫之鞭",
- "weaponArmoireCoachDriversWhipNotes": "你的坐骑知道他们在做什么,因此这条鞭子只是装饰(以及整齐的啪嗒声)。增加 <%= int %> 点智力和 <%= str %> 力量。魔法衣橱:马车夫套装(3件中的第3件)。",
+ "weaponArmoireCoachDriversWhipNotes": "你的坐骑知道他们在做什么,因此这条鞭子只是装饰(以及整齐的啪嗒声)。增加<%= int %>点智力和<%= str %>力量。魔法衣橱:马车夫套装(3件中的第3件)。",
"weaponArmoireScepterOfDiamondsText": "钻石权杖",
- "weaponArmoireScepterOfDiamondsNotes": "这把魔杖闪烁着温暖的红光,它会提高你的意志力。增加 <%= str %> 点力量。魔法衣橱:钻石之王套装(3件中的第4件)。",
+ "weaponArmoireScepterOfDiamondsNotes": "这把魔杖闪烁着温暖的红光,它会提高你的意志力。增加<%= str %>点力量。魔法衣橱:钻石之王套装(3件中的第4件)。",
"weaponArmoireFlutteryArmyText": "振翼军团",
- "weaponArmoireFlutteryArmyNotes": "这群好斗的昆虫已经准备好狠狠打击并缓和你最红的任务了!体质、智力和力量各增加 <%= attrs %> 点。魔法衣橱:轻柔连衣裙套装(3件中的第4件)。",
+ "weaponArmoireFlutteryArmyNotes": "这群好斗的昆虫已经准备好狠狠打击并缓和你最红的任务了!增加体质、智力和力量各<%= attrs %>点。魔法衣橱:轻柔连衣裙套装(3件中的第4件)。",
"weaponArmoireCobblersHammerText": "鞋匠之锤",
- "weaponArmoireCobblersHammerNotes": "这个锤子是专用于皮革制品的。但它能在紧要关头对红色的每日任务造成真正的伤害。体质和力量各增加 <%= attrs %> 点。魔法衣橱:鞋匠套装(3件中的第2件)。",
+ "weaponArmoireCobblersHammerNotes": "这个锤子是专用于皮革制品的。但它能在紧要关头对红色的每日任务造成真正的伤害。增加体质和力量各<%= attrs %>点。魔法衣橱:鞋匠套装(3件中的第2件)。",
"weaponArmoireGlassblowersBlowpipeText": "玻璃吹制工的吹管",
- "weaponArmoireGlassblowersBlowpipeNotes": "用这只吹管把融化的玻璃吹成漂亮的花瓶、装饰品和其他的漂亮的东西。增加 <%= str %> 点力量。魔法衣橱:玻璃吹制工套装(3件中的第1件)。",
+ "weaponArmoireGlassblowersBlowpipeNotes": "用这只吹管把融化的玻璃吹成漂亮的花瓶、装饰品和其他的漂亮的东西。增加<%= str %>点力量。魔法衣橱:玻璃吹制工套装(3件中的第1件)。",
"weaponArmoirePoisonedGobletText": "有毒的高脚杯",
- "weaponArmoirePoisonedGobletNotes": "用它来抵抗有毒粉末及其他不可思议的危险毒药。增加 <%= int %>点智力。魔法衣橱:海盗公主套装(3件中的第3件)。",
+ "weaponArmoirePoisonedGobletNotes": "用它来抵抗有毒粉末及其他不可思议的危险毒药。增加<%= int %>点智力。魔法衣橱:海盗公主套装(3件中的第3件)。",
"weaponArmoireJeweledArcherBowText": "弓箭手的宝石弓",
- "weaponArmoireJeweledArcherBowNotes": "这把黄金和宝石制成的弓会以无以伦比的速度将你的箭射向目标。提升智力<%= int %>点。魔法衣橱:宝石弓箭手套装(3件中的第3件)。",
+ "weaponArmoireJeweledArcherBowNotes": "这把黄金和宝石制成的弓会以无以伦比的速度将你的箭射向目标。增加<%= int %>点智力。魔法衣橱:宝石弓箭手套装(3件中的第3件)。",
"weaponArmoireNeedleOfBookbindingText": "装订针",
"weaponArmoireNeedleOfBookbindingNotes": "一本书的坚韧程度可能会吓你一跳。这根针可以刺穿一切杂务的要害。增加<%= str %>点力量。魔法衣橱:订书人套装(3件中的第4件)。",
"weaponArmoireSpearOfSpadesText": "黑桃长矛",
@@ -379,9 +379,9 @@
"armorBase0Text": "普通服装",
"armorBase0Notes": "普通的衣服。 没有属性加成。",
"armorWarrior1Text": "皮甲",
- "armorWarrior1Notes": "煮了的坚固皮革外套。增加<%= con %>体质。",
+ "armorWarrior1Notes": "煮了的坚固皮革外套。增加<%= con %>点体质。",
"armorWarrior2Text": "锁甲",
- "armorWarrior2Notes": "铁环串在一起制成的铠甲。增加<%= con %>点体制。",
+ "armorWarrior2Notes": "铁环串在一起制成的铠甲。增加<%= con %>点体质。",
"armorWarrior3Text": "板甲",
"armorWarrior3Notes": "以一整块钢制成的盔甲,保护全身,是骑士的骄傲。增加<%= con %>点体质。",
"armorWarrior4Text": "红色铠甲",
@@ -389,13 +389,13 @@
"armorWarrior5Text": "黄金甲",
"armorWarrior5Notes": "乍一看,这套黄金甲只是装饰罢了,但能够刺穿它的刀闻所未闻。增加<%= con %>点体质。",
"armorRogue1Text": "油皮甲",
- "armorRogue1Notes": "经处理可以减少动静的皮甲。增加<%= per %>感知。",
+ "armorRogue1Notes": "经处理可以减少动静的皮甲。增加<%= per %>点感知。",
"armorRogue2Text": "黑皮甲",
"armorRogue2Notes": "暗色浸染,融入黑夜。增加<%= per %>点感知。",
"armorRogue3Text": "迷彩背心",
"armorRogue3Notes": "无论是潜入地牢还是探索荒野都同样隐蔽。增加<%= per %>点感知。",
"armorRogue4Text": "半影护甲",
- "armorRogue4Notes": "将穿戴者包裹在暮光的面纱中。增加<%= per %>感知。",
+ "armorRogue4Notes": "将穿戴者包裹在暮光的面纱中。增加<%= per %>点感知。",
"armorRogue5Text": "暗影护甲",
"armorRogue5Notes": "让你即使暴露在光天化日之下也能潜行。增加<%= per %>点感知。",
"armorWizard1Text": "魔法师长袍",
@@ -421,21 +421,21 @@
"armorSpecial0Text": "阴影护甲",
"armorSpecial0Notes": "因为这件护甲能代替穿戴者疼痛,所以当它被击中时会发出尖叫。增加<%= con %>点体质。",
"armorSpecial1Text": "水晶护甲",
- "armorSpecial1Notes": "它永不消减的力量让穿戴者习惯单调的痛苦。所有属性增加 <%= attrs %> 点。",
+ "armorSpecial1Notes": "它永不消减的力量让穿戴者习惯单调的痛苦。增加全属性<%= attrs %>点。",
"armorSpecial2Text": "珍·沙拉德的贵族束腰外衣",
- "armorSpecial2Notes": "让你更加毛茸茸!体质与智力各加<%= attrs %>。",
+ "armorSpecial2Notes": "让你更加毛茸茸!增加体质和智力各<%= attrs %>点。",
"armorSpecialTakeThisText": "Take This之护甲",
- "armorSpecialTakeThisNotes": "这对护甲是通过参与“Take This”赞助的挑战获得的。祝贺你!所有属性提升<%= attrs %>点。",
+ "armorSpecialTakeThisNotes": "这对护甲是通过参与“Take This”赞助的挑战获得的。祝贺你!增加全属性<%= attrs %>点。",
"armorSpecialFinnedOceanicArmorText": "海鳞衣",
"armorSpecialFinnedOceanicArmorNotes": "尽管看上去精致漂亮,这件护甲让你变得像火焰珊瑚一样碰不得。增加<%= str %>点力量。",
"armorSpecialPyromancersRobesText": "烈焰术士长袍",
- "armorSpecialPyromancersRobesNotes": "这些优雅的长袍给予每一次攻击和法术一阵空灵的火。提高<%= con %>点体质。",
+ "armorSpecialPyromancersRobesNotes": "这些优雅的长袍给予每一次攻击和法术一阵空灵的火。增加<%= con %>点体质。",
"armorSpecialBardRobesText": "吟游诗人长袍",
- "armorSpecialBardRobesNotes": "这件五颜六色的长袍可能看起来很突出,但是你可以在任何情况下唱你自己的歌了。提升<%= per %>点感知。",
+ "armorSpecialBardRobesNotes": "这件五颜六色的长袍可能看起来很突出,但是你可以在任何情况下唱你自己的歌了。增加<%= per %>点感知。",
"armorSpecialLunarWarriorArmorText": "月亮战士护甲",
- "armorSpecialLunarWarriorArmorNotes": "这件护甲由月长石和魔法金属制成。增加力量,体质各<%= attrs %>点。",
+ "armorSpecialLunarWarriorArmorNotes": "这件护甲由月长石和魔法金属制成。增加力量和体质各<%= attrs %>点。",
"armorSpecialMammothRiderArmorText": "猛犸骑士甲",
- "armorSpecialMammothRiderArmorNotes": "这毛皮和皮质的套装包括这件嵌着玫瑰色石英钻石的时髦斗篷。当你在极寒地区冒险时,它能在寒风中护住你。增加体质<%= con %>点。",
+ "armorSpecialMammothRiderArmorNotes": "这毛皮和皮质的套装包括这件嵌着玫瑰色石英钻石的时髦斗篷。当你在极寒地区冒险时,它能在寒风中护住你。增加<%= con %>点体质。",
"armorSpecialPageArmorText": "一页护甲",
"armorSpecialPageArmorNotes": "把你认为很棒的东西全部装进你的背包带走吧!增加<%= con %>点体质。",
"armorSpecialRoguishRainbowMessengerRobesText": "俏皮彩虹使者长袍",
@@ -445,9 +445,9 @@
"armorSpecialSnowSovereignRobesText": "雪之主长袍",
"armorSpecialSnowSovereignRobesNotes": "这些长袍很优雅,可以在法庭上穿,但在最冷的冬日里却暖和得很。增加<%= per %>点感知。",
"armorSpecialNomadsCuirassText": "牧民的胸甲",
- "armorSpecialNomadsCuirassNotes": "这种护甲有一个坚固的护胸板来保护你的小心脏!增加 <%= con %>.点体质。",
+ "armorSpecialNomadsCuirassNotes": "这种护甲有一个坚固的护胸板来保护你的小心脏!增加<%= con %>点体质。",
"armorSpecialDandySuitText": "花花公子套装",
- "armorSpecialDandySuitNotes": "你的穿着毋庸置疑地成功!增加 <%= per %>点感知。",
+ "armorSpecialDandySuitNotes": "你的穿着毋庸置疑地成功!增加<%= per %>点感知。",
"armorSpecialSamuraiArmorText": "武士护甲",
"armorSpecialSamuraiArmorNotes": "这是一件坚固的、用优雅的丝线将所有鳞片固定在一起的盔甲。增加<%= per %>点感知。",
"armorSpecialTurkeyArmorBaseText": "火鸡护甲",
@@ -481,7 +481,7 @@
"armorSpecialSpringWarriorText": "四叶草钢护甲",
"armorSpecialSpringWarriorNotes": "柔软如三叶草,坚强如钢!增加<%= con %>点体质。限量版2014年春季装备。",
"armorSpecialSpringMageText": "啮齿长袍",
- "armorSpecialSpringMageNotes": "老鼠就是赞!增加 <%= int %> 点智力。限量版2014年春季装备。",
+ "armorSpecialSpringMageNotes": "老鼠就是赞!增加<%= int %> 点智力。限量版2014年春季装备。",
"armorSpecialSpringHealerText": "模糊小狗长袍",
"armorSpecialSpringHealerNotes": "温暖和舒适,还能保护所有者免受伤害。增加<%= con %>点体质。2014年春季限量版装备。",
"armorSpecialSummerRogueText": "海盗长袍",
@@ -489,37 +489,37 @@
"armorSpecialSummerWarriorText": "剑客长袍",
"armorSpecialSummerWarriorNotes": "以搭扣完成,充满威慑性。增加<%= con %>点体质。限量版2014年夏季装备。",
"armorSpecialSummerMageText": "绿宝石尾巴",
- "armorSpecialSummerMageNotes": "这件有着闪亮鳞片的衣裳可以将它的穿戴者变成一个真正的法师!增加智力<%= int %>。2014年夏季限量版装备。",
+ "armorSpecialSummerMageNotes": "这件有着闪亮鳞片的衣裳可以将它的穿戴者变成一个真正的法师!增加<%= int %>点智力。2014年夏季限量版装备。",
"armorSpecialSummerHealerText": "海洋治疗师的尾巴",
- "armorSpecialSummerHealerNotes": "这件有着闪亮鳞片的衣裳可以将它的穿戴者变成一个真正的海洋治疗师!增加体质<%= con %>。2014年夏季限量版装备。",
+ "armorSpecialSummerHealerNotes": "这件有着闪亮鳞片的衣裳可以将它的穿戴者变成一个真正的海洋治疗师!增加<%= con %>点体质。2014年夏季限量版装备。",
"armorSpecialFallRogueText": "血色长袍",
"armorSpecialFallRogueNotes": "鲜艳的。柔软的。吸血鬼的。增加<%= per %>点感知。限量版2014年秋季装备。",
"armorSpecialFallWarriorText": "实验衣",
"armorSpecialFallWarriorNotes": "保护您免受神秘药水溢出之苦。增加<%= con %>点体质。限量版2014年秋季装备。",
"armorSpecialFallMageText": "精灵女巫长袍",
- "armorSpecialFallMageNotes": "这件长袍有着足够多的口袋来装下多余的水螈的眼睛和青蛙的舌头。增加智力 <%= int %>。2014年秋季限量版装备。",
+ "armorSpecialFallMageNotes": "这件长袍有着足够多的口袋来装下多余的水螈的眼睛和青蛙的舌头。增加<%= int %>点智力。2014年秋季限量版装备。",
"armorSpecialFallHealerText": "轻型装备",
- "armorSpecialFallHealerNotes": "带头进攻甚至提前打了绷带!增加感知<%= con %>。2014年秋季限量版装备。",
+ "armorSpecialFallHealerNotes": "带头进攻甚至提前打了绷带!增加<%= con %>点感知。2014年秋季限量版装备。",
"armorSpecialWinter2015RogueText": "德雷克寒冰护甲",
- "armorSpecialWinter2015RogueNotes": "这件护甲是极寒冰冻的。然而,当你在冰柱龙聚集地的中心发现了无尽的财宝时,它肯定是值得拥有的。不是为了你正在寻找的那些数不清的财宝,而是因为你就是真正的、理所当然的、绝对的真冰柱龙,好吗?别再问问题了!增加 <%= per %>感知。2014-2015冬季限量版装备。",
+ "armorSpecialWinter2015RogueNotes": "这件护甲是极寒冰冻的。然而,当你在冰柱龙聚集地的中心发现了无尽的财宝时,它肯定是值得拥有的。不是为了你正在寻找的那些数不清的财宝,而是因为你就是真正的、理所当然的、绝对的真冰柱龙,好吗?别再问问题了!增加<%= per %>点感知。2014-2015冬季限量版装备。",
"armorSpecialWinter2015WarriorText": "姜饼护甲",
- "armorSpecialWinter2015WarriorNotes": "舒适且温暖,火炉特供哟!增加体质<%= con %>。2014-2015 冬日限定版装备。",
+ "armorSpecialWinter2015WarriorNotes": "舒适且温暖,火炉特供哟!增加<%= con %>点体质。2014-2015 冬日限定版装备。",
"armorSpecialWinter2015MageText": "北部长袍",
- "armorSpecialWinter2015MageNotes": "你可以从这件长袍上看到北方闪亮的光芒。增加智力<%= int %>。2014-2015 冬日限定版装备。",
+ "armorSpecialWinter2015MageNotes": "你可以从这件长袍上看到北方闪亮的光芒。增加<%= int %>点智力。2014-2015 冬日限定版装备。",
"armorSpecialWinter2015HealerText": "溜冰衣",
- "armorSpecialWinter2015HealerNotes": "溜冰可是很放松的,但没有这件保护装你可别轻易尝试,小心冰公冰柱龙的攻击!增加体质<%= con %>。2014-2015 冬日限定版装备。",
+ "armorSpecialWinter2015HealerNotes": "溜冰可是很放松的,但没有这件保护装你可别轻易尝试,小心冰公冰柱龙的攻击!增加<%= con %>点体质。2014-2015 冬日限定版装备。",
"armorSpecialSpring2015RogueText": "霹雳法袍",
- "armorSpecialSpring2015RogueNotes": "毛茸茸,软乎乎,而且绝对不会烧起来。提高<%= per %>点感知。2015春季限定版装备。",
+ "armorSpecialSpring2015RogueNotes": "毛茸茸,软乎乎,而且绝对不会烧起来。增加<%= per %>点感知。2015春季限定版装备。",
"armorSpecialSpring2015WarriorText": "警惕护甲",
- "armorSpecialSpring2015WarriorNotes": "只有最凶猛的狗才有资格这么毛茸茸。提高<%= con %>点体质。2015春季限定版装备。",
+ "armorSpecialSpring2015WarriorNotes": "只有最凶猛的狗才有资格这么毛茸茸。增加<%= con %>点体质。2015春季限定版装备。",
"armorSpecialSpring2015MageText": "魔术师的兔兔套装",
- "armorSpecialSpring2015MageNotes": "你的燕尾服尾巴很配你的棉尾巴哦!提高<%= int %>点智力。2015春季限定版装备。",
+ "armorSpecialSpring2015MageNotes": "你的燕尾服尾巴很配你的棉尾巴哦!增加<%= int %>点智力。2015春季限定版装备。",
"armorSpecialSpring2015HealerText": "抚慰连衣裤",
- "armorSpecialSpring2015HealerNotes": "这条柔软的连衣裤非常舒适,就像薄荷茶一样抚慰人心。提高<%= con %>点体质。2015春季限定版装备。",
+ "armorSpecialSpring2015HealerNotes": "这条柔软的连衣裤非常舒适,就像薄荷茶一样抚慰人心。增加<%= con %>点体质。2015春季限定版装备。",
"armorSpecialSummer2015RogueText": "红宝石尾",
- "armorSpecialSummer2015RogueNotes": "这件有着闪亮鳞片的衣裳可以将它的穿戴者变成一个真正的珊瑚礁背叛者!增加感知<%= per %>点。2015年夏季限量版装备。",
+ "armorSpecialSummer2015RogueNotes": "这件有着闪亮鳞片的衣裳可以将它的穿戴者变成一个真正的珊瑚礁背叛者!增加<%= per %>点感知。2015年夏季限量版装备。",
"armorSpecialSummer2015WarriorText": "黄金尾巴",
- "armorSpecialSummer2015WarriorNotes": "这件有着闪亮鳞片的衣裳可以将它的穿戴者变成一个真正的太阳鱼战士!增加体质<%= con %>。2015年夏季限量版装备。",
+ "armorSpecialSummer2015WarriorNotes": "这件有着闪亮鳞片的衣裳可以将它的穿戴者变成一个真正的太阳鱼战士!增加<%= con %>点体质。2015年夏季限量版装备。",
"armorSpecialSummer2015MageText": "预言家长袍",
"armorSpecialSummer2015MageNotes": "力量从袍袖中悄然流露。增加<%= int %>点智力。2015年夏季限量版装备。",
"armorSpecialSummer2015HealerText": "水手的护甲",
@@ -541,7 +541,7 @@
"armorSpecialWinter2016HealerText": "节日仙女斗篷",
"armorSpecialWinter2016HealerNotes": "节日仙女们会将身体两侧的翅膀把身体围住保护自己,用头上的翅膀在Habitica以100mph的速度逆风飞翔,为每个人带来礼物,抛洒庆祝的彩纸屑。真好玩。增加<%= con %>点体质。2015-2016冬季限量版装备。",
"armorSpecialSpring2016RogueText": "犬迷彩套装",
- "armorSpecialSpring2016RogueNotes": "一个聪明的小狗知道去选择一个鲜丽伪装来隐藏,当所有东西都是绿色和鲜活的。增加<%= per %> 点感知。2016年春季限量版装备。",
+ "armorSpecialSpring2016RogueNotes": "一个聪明的小狗知道去选择一个鲜丽伪装来隐藏,当所有东西都是绿色和鲜活的。增加<%= per %>点感知。2016年春季限量版装备。",
"armorSpecialSpring2016WarriorText": "威武盔甲",
"armorSpecialSpring2016WarriorNotes": "尽管你的存在渺小,但你很勇猛!增加<%= con %>点体质。2016年春季限定版装备。",
"armorSpecialSpring2016MageText": "豪华的猫长袍",
@@ -549,13 +549,13 @@
"armorSpecialSpring2016HealerText": "蓬松的兔马裤",
"armorSpecialSpring2016HealerNotes": "蹦蹦跳跳!从一个山头跳到另一个山头,治疗需要的人。增加<%= con %>点体质。2016年春季限量版装备。",
"armorSpecialSummer2016RogueText": "鳗鱼的尾巴",
- "armorSpecialSummer2016RogueNotes": "这件充电衣服将穿它的人变成一个真正的鳗鱼盗贼!增加感知<%= per %>点。2016年夏季限量版装备。",
+ "armorSpecialSummer2016RogueNotes": "这件充电衣服将穿它的人变成一个真正的鳗鱼盗贼!增加<%= per %>点感知。2016年夏季限量版装备。",
"armorSpecialSummer2016WarriorText": "鲨鱼的尾巴",
- "armorSpecialSummer2016WarriorNotes": "这件粗糙的衣服将穿它的人变成一个真正的鲨鱼战士!增加体质<%= con %>点。2016年夏季限量版装备。",
+ "armorSpecialSummer2016WarriorNotes": "这件粗糙的衣服将穿它的人变成一个真正的鲨鱼战士!增加<%= con %>点体质。2016年夏季限量版装备。",
"armorSpecialSummer2016MageText": "海豚的尾巴",
- "armorSpecialSummer2016MageNotes": "这件光滑的的衣服将穿它的人变成一个真正的海豚法师!增加智力<%= int %>点。2016年夏季限量版装备。",
+ "armorSpecialSummer2016MageNotes": "这件光滑的衣服将穿它的人变成一位真正的海豚法师!增加<%= int %>点智力。2016年夏季限量版装备。",
"armorSpecialSummer2016HealerText": "海马的尾巴",
- "armorSpecialSummer2016HealerNotes": "这件尖长的衣服将穿它的人变成一个真正的海马医师!增加体质<%= con %>点。2016年夏季限量版装备。",
+ "armorSpecialSummer2016HealerNotes": "这件尖长的衣服将穿它的人变成一个真正的海马医师!增加<%= con %>点体质。2016年夏季限量版装备。",
"armorSpecialFall2016RogueText": "黑寡妇护甲",
"armorSpecialFall2016RogueNotes": "这盔甲上的眼睛在不停眨着。增加<%= per %>点感知。2016年秋季限量版装备。",
"armorSpecialFall2016WarriorText": "泥纹护甲",
@@ -571,55 +571,55 @@
"armorSpecialWinter2017MageText": "狼甲",
"armorSpecialWinter2017MageNotes": "以冬天最温暖的羊毛为材料,由神秘的冬季之狼施法编织而成。这样的长袍可以隔绝寒冷并且让你的大脑保持警惕。增加<%= int %>点智力。2016-2017冬季装备限量版。",
"armorSpecialWinter2017HealerText": "微光花瓣护甲",
- "armorSpecialWinter2017HealerNotes": "虽然柔软,但这件花瓣护甲也有着神奇的保护能力。增加体质<%= con %>点。2016-2017冬季限量版装备。",
+ "armorSpecialWinter2017HealerNotes": "虽然柔软,但这件花瓣护甲也有着神奇的保护能力。增加<%= con %>点体质。2016-2017冬季限量版装备。",
"armorSpecialSpring2017RogueText": "鬼祟兔套装",
"armorSpecialSpring2017RogueNotes": "柔软但强大,这套服装能帮助你在花园中隐蔽的移动。增加<%= per %>点感知。2017年春季限定版装备。",
"armorSpecialSpring2017WarriorText": "利爪护甲",
- "armorSpecialSpring2017WarriorNotes": "这件奇特的护甲和你精心修饰的外套一样闪亮,却还能提供额外的防御力。增加体质<%= con %>点。2017年春季限定版装备。",
+ "armorSpecialSpring2017WarriorNotes": "这件奇特的护甲和你精心修饰的外套一样闪亮,却还能提供额外的防御力。增加<%= con %>点体质。2017年春季限定版装备。",
"armorSpecialSpring2017MageText": "卡耐因魔法师长袍",
- "armorSpecialSpring2017MageNotes": "魔幻的设计,精挑细选的松软感觉。增长<%= int %>点智力。2017 春季限定装备。",
+ "armorSpecialSpring2017MageNotes": "魔幻的设计,精挑细选的松软感觉。增加<%= int %>点智力。2017 春季限定装备。",
"armorSpecialSpring2017HealerText": "宁静长袍",
- "armorSpecialSpring2017HealerNotes": "这些长炮的松软触感,不但让任何人都需要你的治疗帮助,还让你舒服之极。增加 <%= con %>点体质。2017 春季限定装备。",
+ "armorSpecialSpring2017HealerNotes": "这些长炮的松软触感,不但让任何人都需要你的治疗帮助,还让你舒服之极。增加<%= con %>点体质。2017 春季限定装备。",
"armorSpecialSummer2017RogueText": "海龙的尾巴",
"armorSpecialSummer2017RogueNotes": "这件色彩斑斓的服装将它的穿着者变成了一条真正的海龙!增加<%= per %>点感知。2017夏季限定。",
"armorSpecialSummer2017WarriorText": "沙之护甲",
- "armorSpecialSummer2017WarriorNotes": "不要被事物的表面所迷惑,这件护甲的硬度堪比金刚。增加 <%= con %>点体质。2017夏季限定。",
+ "armorSpecialSummer2017WarriorNotes": "不要被事物的表面所迷惑,这件护甲的硬度堪比金刚。增加<%= con %>点体质。2017夏季限定。",
"armorSpecialSummer2017MageText": "漩涡长袍",
- "armorSpecialSummer2017MageNotes": "小心别被那些被魔法水弄湿的衣服溅湿了!增加 <%= int %>点智力,2017夏季限定装备。",
+ "armorSpecialSummer2017MageNotes": "小心别被那些被魔法水弄湿的衣服溅湿了!增加<%= int %>点智力,2017夏季限定装备。",
"armorSpecialSummer2017HealerText": "银海之尾",
- "armorSpecialSummer2017HealerNotes": "这套银色鱼鳞服将穿他的人变成一个真正的海洋医师!提高<%= con %>点体质。 2017夏季限量版装备。",
+ "armorSpecialSummer2017HealerNotes": "这套银色鱼鳞服将穿他的人变成一个真正的海洋医师!增加<%= con %>点体质。 2017夏季限量版装备。",
"armorSpecialFall2017RogueText": "南瓜补丁长袍",
"armorSpecialFall2017RogueNotes": "想要玩躲猫猫吗?快蹲在在杰克的灯笼上,这些长袍将会隐藏你!增加<%= per %>点感知。2017秋季限定装备。",
"armorSpecialFall2017WarriorText": "坚固的甜心护甲",
"armorSpecialFall2017WarriorNotes": "这个护甲会像一个美味的糖果壳一样保护你。增加<%= con %>带你体质,2017秋季限定装备。",
"armorSpecialFall2017MageText": "假面舞会长袍",
- "armorSpecialFall2017MageNotes": "如果没有引人注目的大礼服,什么样的化装舞会将是完整的?增加<%= int %>点智力。2017年秋季限定装备。",
+ "armorSpecialFall2017MageNotes": "如果没有引人注目的大礼服,什么样的化装舞会将是完整的?增加<%= int %>点智力。2017年秋季限定装备。",
"armorSpecialFall2017HealerText": "鬼屋护甲",
"armorSpecialFall2017HealerNotes": "你的心宛如一扇敞开的门。你的肩膀是遮风挡雨的瓦片!增加<%= con %>点体质。2017年秋季限定装备。",
"armorSpecialWinter2018RogueText": "驯鹿服装",
- "armorSpecialWinter2018RogueNotes": "你看起毛绒绒的,非常可爱,谁会怀疑你在假日打劫之后呢?增加 <%= per %> 点感知。2017-2018冬季限定装备。",
+ "armorSpecialWinter2018RogueNotes": "你看起毛绒绒的,非常可爱,谁会怀疑你在假日打劫之后呢?增加<%= per %>点感知。2017-2018冬季限定装备。",
"armorSpecialWinter2018WarriorText": "包裝紙护甲",
- "armorSpecialWinter2018WarriorNotes": "别被这护甲的纸一样的触感欺骗。几乎没有什么能将它撕烂!增加 <%= con %> 点体质。2017-2018冬季限定装备。",
+ "armorSpecialWinter2018WarriorNotes": "别被这护甲的纸一样的触感欺骗。几乎没有什么能将它撕烂!增加<%= con %>点体质。2017-2018冬季限定装备。",
"armorSpecialWinter2018MageText": "一闪一闪的西裝",
"armorSpecialWinter2018MageNotes": "终极魔法礼服。增加<%= int %>点智力。2017-2018冬季限量版装备。",
"armorSpecialWinter2018HealerText": "槲寄生长袍",
"armorSpecialWinter2018HealerNotes": "这些羊毛长袍上有欢乐假日的咒语加成。增加<%= con %>点体质。2017-2018冬季限定版装备。",
"armorSpecialSpring2018RogueText": "羽毛礼服",
- "armorSpecialSpring2018RogueNotes": "这件毛茸茸的黄色服装会让敌人误以为你是一只无害的鸭子!增加 <%= per %> 点感知。2018年春季限定装备。",
+ "armorSpecialSpring2018RogueNotes": "这件毛茸茸的黄色服装会让敌人误以为你是一只无害的鸭子!增加<%= per %>点感知。2018年春季限定装备。",
"armorSpecialSpring2018WarriorText": "黎明护甲",
- "armorSpecialSpring2018WarriorNotes": "这个五颜六色的护甲是用日出之火锻造而成。增加 <%= con %> 点体质。2018年春季限定装备。",
+ "armorSpecialSpring2018WarriorNotes": "这个五颜六色的护甲是用日出之火锻造而成。增加<%= con %>点体质。2018年春季限定装备。",
"armorSpecialSpring2018MageText": "郁金香长袍",
- "armorSpecialSpring2018MageNotes": "只有当这些柔软如丝绸的花瓣覆盖时,你的咒语施法才能提升。增加 <%= int %> 点智力。2018春季限定装备。",
+ "armorSpecialSpring2018MageNotes": "只有当这些柔软如丝绸的花瓣覆盖时,你的咒语施法才能提升。增加<%= int %>点智力。2018春季限定装备。",
"armorSpecialSpring2018HealerText": "石榴护甲",
- "armorSpecialSpring2018HealerNotes": "让这耀眼夺目的护甲为你的心灵注入治愈之力吧。增加 <%= con %> 点体质。2018年春季限定装备。",
+ "armorSpecialSpring2018HealerNotes": "让这耀眼夺目的护甲为你的心灵注入治愈之力吧。增加<%= con %>点体质。2018年春季限定装备。",
"armorSpecialSummer2018RogueText": "钓鱼口袋马甲",
- "armorSpecialSummer2018RogueNotes": "浮标?钓钩?备用线?开锁器?烟幕弹?夏日钓鱼度假需要的任何东西,这件夹克都有一个对应的口袋!增加 <%= per %>点感知。2018年夏季限量版装备。",
+ "armorSpecialSummer2018RogueNotes": "浮标?钓钩?备用线?开锁器?烟幕弹?夏日钓鱼度假需要的任何东西,这件夹克都有一个对应的口袋!增加<%= per %>点感知。2018年夏季限量版装备。",
"armorSpecialSummer2018WarriorText": "斗鱼护甲",
- "armorSpecialSummer2018WarriorNotes": "你在水中旋转、冲刺,搅起奇伟瑰丽的漩涡足以令人目眩神迷。有多少敌人胆敢攻击这样的美人?增加 <%= con %>点体质。2018年夏季限量版装备。",
+ "armorSpecialSummer2018WarriorNotes": "你在水中旋转、冲刺,搅起奇伟瑰丽的漩涡足以令人目眩神迷。有多少敌人胆敢攻击这样的美人?增加<%= con %>点体质。2018年夏季限量版装备。",
"armorSpecialSummer2018MageText": "狮鱼鳞锁子甲",
- "armorSpecialSummer2018MageNotes": "毒液魔法素以不易察觉闻名。这个色彩斑斓的护甲并非如此,它向猛兽般的任务传递的信息很明确:当心!增加 <%= int %>点智力。2018年夏季限定装备。",
+ "armorSpecialSummer2018MageNotes": "毒液魔法素以不易察觉闻名。这个色彩斑斓的护甲并非如此,它向猛兽般的任务传递的信息很明确:当心!增加<%= int %>点智力。2018年夏季限定装备。",
"armorSpecialSummer2018HealerText": "人鱼王的长袍",
- "armorSpecialSummer2018HealerNotes": "这些天蓝色的法衣透露着你有可以在陆地上行走的双脚。哪怕是君王也不可能是完美的。增加 <%= con %>点体质。2018年夏季限定装备。",
+ "armorSpecialSummer2018HealerNotes": "这些天蓝色的法衣透露着你有可以在陆地上行走的双脚。哪怕是君王也不可能是完美的。增加<%= con %>点体质。2018年夏季限定装备。",
"armorSpecialFall2018RogueText": "两面派礼服",
"armorSpecialFall2018RogueNotes": "入时的打扮。夜间舒适安全的穿着。增加<%= per %>点感知。2018秋季限时装备。",
"armorSpecialFall2018WarriorText": "牛头人板甲",
@@ -631,7 +631,7 @@
"armorSpecialWinter2019RogueText": "圣诞红盔",
"armorSpecialWinter2019RogueNotes": "随着节日的到来,到处都可以看到绿油油的装饰,所以没有人会注意到这里多出来的一丛灌木丛!你可以轻松地悄悄参加节日聚会。增加<%= per %>点感知。2018-2019冬季限时装备。",
"armorSpecialWinter2019WarriorText": "冰河铠甲",
- "armorSpecialWinter2019WarriorNotes": "在激烈的战斗中,这件盔甲能让你保持凉爽并处于最佳状态。增加 <%= con %> 点体质。 2018-2019冬季限定版装备。",
+ "armorSpecialWinter2019WarriorNotes": "在激烈的战斗中,这件盔甲能让你保持凉爽并处于最佳状态。增加<%= con %>点体质。 2018-2019冬季限定版装备。",
"armorSpecialWinter2019MageText": "燃魂长袍",
"armorSpecialWinter2019MageNotes": "如果你的烟花不幸走火了,这件防火的外套无论如何都能保护你!增加<%= int %>点智力。2018—2019年冬季限定装备。",
"armorSpecialWinter2019HealerText": "午夜长袍",
@@ -645,7 +645,7 @@
"armorMystery201406Text": "章魚长袍",
"armorMystery201406Notes": "这件溜滑的法袍给予他的穿戴者穿过哪怕是最小的裂缝的能力。没有属性加成。2014年6月订阅者物品。",
"armorMystery201407Text": "海底探险服装",
- "armorMystery201407Notes": "要么被说“太厚了”,要么被说“讲真的,有点累赘哦”,这套衣服是每一位无畏的海底探险者最好的朋友。没有属性加成。2014年7月捐赠者物品。",
+ "armorMystery201407Notes": "要么被说“太厚了”,要么被说“讲真的,有点累赘哦”,这套衣服是每一位无畏的海底探险者最好的朋友。没有属性加成。2014年7月订阅者物品。",
"armorMystery201408Text": "太阳长袍",
"armorMystery201408Notes": "这些法袍又阳光和黄金编织而成。没有属性加成。2014年8月订阅者物品。",
"armorMystery201409Text": "战斗背心",
@@ -659,65 +659,65 @@
"armorMystery201503Text": "海蓝护甲",
"armorMystery201503Notes": "海蓝矿石是幸运,快乐和永久的生产力的象征。没有属性加成。2015年3月订阅者物品。",
"armorMystery201504Text": "忙碌的蜜蜂长袍",
- "armorMystery201504Notes": "你会成为生产力作为一个忙碌的蜜蜂在此取长袍!没有属性加成。 2015年4月认购项目。",
+ "armorMystery201504Notes": "你会成为生产力作为一个忙碌的蜜蜂在此取长袍!没有属性加成。 2015年4月订阅者物品。",
"armorMystery201506Text": "潜水衣",
- "armorMystery201506Notes": "一件由色彩鲜艳的珊瑚礁构成的潜水衣!没有属性加成。2015年6越捐赠者物品。",
+ "armorMystery201506Notes": "一件由色彩鲜艳的珊瑚礁构成的潜水衣!没有属性加成。2015年6月订阅者物品。",
"armorMystery201508Text": "猎豹服装",
"armorMystery201508Notes": "穿着蓬松的猎豹服装快速奔跑!没有属性加成。2015年8月订阅者物品。",
"armorMystery201509Text": "狼人服装",
- "armorMystery201509Notes": "这真的是一件衣服么?没有属性加成。2015年9月捐赠者物品。",
+ "armorMystery201509Notes": "这真的是一件衣服么?没有属性加成。2015年9月订阅者物品。",
"armorMystery201511Text": "木制铠甲",
- "armorMystery201511Notes": "这件铠甲是直接用魔法木材雕刻的,令人惊讶的舒适。没有属性加成。2015年11月捐助者物品。",
+ "armorMystery201511Notes": "这件铠甲是直接用魔法木材雕刻的,令人惊讶的舒适。没有属性加成。2015年11月订阅者物品。",
"armorMystery201512Text": "冷之焰盔甲",
"armorMystery201512Notes": "召唤冰冷的冬之焰!没有属性加成。2015年12月订阅者物品。",
"armorMystery201603Text": "幸运衣",
- "armorMystery201603Notes": "这件衣服是成千上万的四叶草缝成的!没有属性加成。2016年3月捐赠者物品。",
+ "armorMystery201603Notes": "这件衣服是成千上万的四叶草缝成的!没有属性加成。2016年3月订阅者物品。",
"armorMystery201604Text": "叶子护甲",
- "armorMystery201604Notes": "你的身周喷发着许多小但是可怕的叶子。没有属性加成。2016年4月捐赠者物品。",
+ "armorMystery201604Notes": "你的身周喷发着许多小但是可怕的叶子。没有属性加成。2016年4月订阅者物品。",
"armorMystery201605Text": "吟游诗人制服",
- "armorMystery201605Notes": "不像传统的吟游诗人参加冒险派对,参加Habitic村民游行乐队的吟游诗人因宏大的游行而不是因地牢突击被众所周知。没有属性加成。2016年5月捐赠者物品。",
+ "armorMystery201605Notes": "不像传统的吟游诗人参加冒险派对,参加Habitic村民游行乐队的吟游诗人因宏大的游行而不是因地牢突击被众所周知。没有属性加成。2016年5月订阅者物品。",
"armorMystery201606Text": "海豹的尾巴",
- "armorMystery201606Notes": "这条有力的尾巴闪闪发光,就像大海的泡沫撞碎在岸上。没有属性加成。2016年6月捐赠者物品。",
+ "armorMystery201606Notes": "这条有力的尾巴闪闪发光,就像大海的泡沫撞碎在岸上。没有属性加成。2016年6月订阅者物品。",
"armorMystery201607Text": "海底盗贼护甲",
- "armorMystery201607Notes": "用这套隐身盔甲融入海底。没有属性加成。 2016年7月捐赠者物品。",
+ "armorMystery201607Notes": "用这套隐身盔甲融入海底。没有属性加成。 2016年7月订阅者物品。",
"armorMystery201609Text": "奶牛护甲",
- "armorMystery201609Notes": "穿上这套舒适的护甲和牛群一起休憩吧!没有属性加成。 2016年9月捐赠者物品。",
+ "armorMystery201609Notes": "穿上这套舒适的护甲和牛群一起休憩吧!没有属性加成。 2016年9月订阅者物品。",
"armorMystery201610Text": "幽灵护甲",
- "armorMystery201610Notes": "能使你像幽灵一样漂浮的神秘护甲。没有属性加成。2016年10月捐赠者物品。",
+ "armorMystery201610Notes": "能使你像幽灵一样漂浮的神秘护甲。没有属性加成。2016年10月订阅者物品。",
"armorMystery201612Text": "胡桃夹子护甲",
- "armorMystery201612Notes": "在这个盛大的节日里用这样有型的方式开坚果,小心不要夹到你的手指!没有属性加成。2016年12月份捐赠者套装。",
+ "armorMystery201612Notes": "在这个盛大的节日里用这样有型的方式开坚果,小心不要夹到你的手指!没有属性加成。2016年12月订阅者物品。",
"armorMystery201703Text": "微光护甲",
- "armorMystery201703Notes": "虽然这件护甲的颜色让人想起春天的花瓣,但它却是比钢铁还要坚硬!没有属性加成。2017年3月捐赠者礼品。",
+ "armorMystery201703Notes": "虽然这件护甲的颜色让人想起春天的花瓣,但它却是比钢铁还要坚硬!没有属性加成。2017年3月订阅者物品。",
"armorMystery201704Text": "童话护甲",
- "armorMystery201704Notes": "妖精们从晨露中精心制作了这一铠甲,用来捕捉清晨的第一抹阳光。没有属性加成。2017年4月捐赠者物品。",
+ "armorMystery201704Notes": "妖精们从晨露中精心制作了这一铠甲,用来捕捉清晨的第一抹阳光。没有属性加成。2017年4月订阅者物品。",
"armorMystery201707Text": "Jellymancer的护甲",
- "armorMystery201707Notes": "当你进行海底任务和冒险时,这种盔甲将帮助你悄无声息的混入海洋生物中。(。ò ∀ ó。)没有属性加成。2017年7月捐赠者物品。",
+ "armorMystery201707Notes": "当你进行海底任务和冒险时,这种盔甲将帮助你悄无声息的混入海洋生物中。(。ò ∀ ó。)没有属性加成。2017年7月订阅者物品。",
"armorMystery201710Text": "傲慢小鬼着装",
"armorMystery201710Notes": "有鳞片的,有光泽的,坚固的!没有属性加成。2017年10月订阅者物品。",
"armorMystery201711Text": "飞毯驾驶员的装备",
- "armorMystery201711Notes": "这件舒服的毛衣会让你穿梭在天空时保持温暖!没有属性加成。2017年11月订阅者专享。",
+ "armorMystery201711Notes": "这件舒服的毛衣会让你穿梭在天空时保持温暖!没有属性加成。2017年11月订阅者物品。",
"armorMystery201712Text": "蜡烛术士护甲",
- "armorMystery201712Notes": "這個魔法护甲产生的光和熱力會在不燒傷你的皮膚的條件下為你的心保持温暖。没有属性加成。2017年十二月捐赠者物品。",
+ "armorMystery201712Notes": "這個魔法护甲产生的光和熱力會在不燒傷你的皮膚的條件下為你的心保持温暖。没有属性加成。2017年12月订阅者物品。",
"armorMystery201802Text": "爱虫护甲",
- "armorMystery201802Notes": "这闪亮的护甲反射出你心灵的力量并将之注入附近每一个需要鼓励的Habitican的心中。没有属性加成。2018年二月订阅者物品。",
+ "armorMystery201802Notes": "这闪亮的护甲反射出你心灵的力量并将之注入附近每一个需要鼓励的Habitican的心中。没有属性加成。2018年2月订阅者物品。",
"armorMystery201806Text": "安康鱼尾",
- "armorMystery201806Notes": "这条弯曲的尾巴上有发光点,可以照亮您穿过深渊的路。 没有属性加成。 2018年6月捐赠者物品。",
+ "armorMystery201806Notes": "这条弯曲的尾巴上有发光点,可以照亮您穿过深渊的路。 没有属性加成。 2018年6月订阅者物品。",
"armorMystery201807Text": "海蛇尾巴",
- "armorMystery201807Notes": "这条有力的尾巴产生的推力足以使你以不可思议的速度穿梭深海。没有属性加成,2018年7月会员赠品。",
+ "armorMystery201807Notes": "这条有力的尾巴产生的推力足以使你以不可思议的速度穿梭深海。没有属性加成。2018年7月订阅者物品。",
"armorMystery201808Text": "熔岩巨龙铠甲",
- "armorMystery201808Notes": "由神龙不见首尾的熔岩巨龙掉落的鳞片制成,特别暖和。没有属性加成,2018年8月会员赠品。",
+ "armorMystery201808Notes": "由神龙不见首尾的熔岩巨龙掉落的鳞片制成,特别暖和。没有属性加成。2018年8月订阅者物品。",
"armorMystery201809Text": "秋叶铠甲",
- "armorMystery201809Notes": "你不仅是一阵小小的而又令人心生物哀的秋风落叶,而且也把这个季节最绮丽的色彩穿在了身上!没有属性加成,2018年9月会员赠品。",
+ "armorMystery201809Notes": "你不仅是一阵小小的而又令人心生物哀的秋风落叶,而且也把这个季节最绮丽的色彩穿在了身上!没有属性加成。2018年9月订阅者物品。",
"armorMystery201810Text": "黑暗森林长袍",
- "armorMystery201810Notes": "行走于幽冥国度的阴寒中,这件长袍的将以格外的温暖加护于你。没有属性加成。2018年10月会员赠品。",
+ "armorMystery201810Notes": "行走于幽冥国度的阴寒中,这件长袍的将以格外的温暖加护于你。没有属性加成。2018年10月订阅者物品。",
"armorMystery301404Text": "蒸汽朋克套装",
"armorMystery301404Notes": "整洁又精神,真聪明!没有属性加成。3015年2月订阅者物品。",
"armorMystery301703Text": "蒸汽朋克孔雀装礼服",
- "armorMystery301703Notes": "这件优雅礼服极其适合最奢华的节庆!没有属性加成。3017年3月捐赠者礼品。",
+ "armorMystery301703Notes": "这件优雅礼服极其适合最奢华的节庆!没有属性加成。3017年3月订阅者物品。",
"armorMystery301704Text": "朋克鸡仔礼服",
- "armorMystery301704Notes": "这个出色的装备非常适合节庆夜晚和在小工具工作间的一天!没有属性加成。3017年4月捐赠者礼品。",
+ "armorMystery301704Notes": "这个出色的装备非常适合节庆夜晚和在小工具工作间的一天!没有属性加成。3017年4月订阅者物品。",
"armorArmoireLunarArmorText": "静月护甲",
- "armorArmoireLunarArmorNotes": "月光使你更加强壮和聪慧。增加力量<%= str %>点和智力 <%= int %>点。魔法衣橱:静月套装(3件中的第2件)。",
+ "armorArmoireLunarArmorNotes": "月光使你更加强壮和聪慧。增加力量<%= str %>点和智力<%= int %>点。魔法衣橱:静月套装(3件中的第2件)。",
"armorArmoireGladiatorArmorText": "角斗士盔甲",
"armorArmoireGladiatorArmorNotes": "成为一个角斗士不仅要敏捷,还要强壮…增加感知<%= per %>点和力量<%= str %>点。魔法衣橱:角斗士套装(3件中的第2件)。",
"armorArmoireRancherRobesText": "牧场主长袍",
@@ -731,27 +731,27 @@
"armorArmoireShepherdRobesText": "牧羊人长袍",
"armorArmoireShepherdRobesNotes": "轻薄凉爽透气,在沙漠中放牧狮鹫的时候穿上最完美了。增加力量和感知各<%= attrs %>点。魔法衣橱:牧羊人套装(3件中的第2件)。",
"armorArmoireRoyalRobesText": "皇家长袍",
- "armorArmoireRoyalRobesNotes": "伟大的统治者,吾王万岁!提升体质,智力和感知各<%= attrs %>点。魔法衣橱:皇家套装(3件中的第3件)。",
+ "armorArmoireRoyalRobesNotes": "伟大的统治者,吾王万岁!增加体质、智力和感知各<%= attrs %>点。魔法衣橱:皇家套装(3件中的第3件)。",
"armorArmoireCrystalCrescentRobesText": "晶月长袍",
- "armorArmoireCrystalCrescentRobesNotes": "这种魔法长袍在晚上会发出荧光。增加体质和感知各<%= attrs %> 点。魔法衣橱:晶月套装(3件中的第2件)。",
+ "armorArmoireCrystalCrescentRobesNotes": "这种魔法长袍在晚上会发出荧光。增加体质和感知各<%= attrs %>点。魔法衣橱:晶月套装(3件中的第2件)。",
"armorArmoireDragonTamerArmorText": "驯龙甲",
"armorArmoireDragonTamerArmorNotes": "这件坚硬的护甲可以抵挡火焰。增加<%= con %>点体质。魔法衣橱:驯龙套装(3件中的第3件)。",
"armorArmoireBarristerRobesText": "大律师袍",
"armorArmoireBarristerRobesNotes": "严肃!庄严!增加体质 <%= con %> 点。魔法衣橱:大律师套装(3件中的第2件)。",
"armorArmoireJesterCostumeText": "小丑服",
- "armorArmoireJesterCostumeNotes": "哒啦啦啦!尽管衣服看起来呵呵,你不是一个傻瓜。增加智力 <%= int %> 点。魔法衣橱:小丑套装(3件中的第2件)。",
+ "armorArmoireJesterCostumeNotes": "哒啦啦啦!尽管衣服看起来呵呵,你不是一个傻瓜。增加<%= int %>点智力。魔法衣橱:小丑套装(3件中的第2件)。",
"armorArmoireMinerOverallsText": "采矿者工作裤",
- "armorArmoireMinerOverallsNotes": "它们看起来破旧,但他们被施了魔法抵御灰尘。增加体质<%= con %>点。魔法衣橱:采矿者套装(3件中的第2件)。",
+ "armorArmoireMinerOverallsNotes": "它们看起来破旧,但他们被施了魔法抵御灰尘。增加<%= con %>点体质。魔法衣橱:采矿者套装(3件中的第2件)。",
"armorArmoireBasicArcherArmorText": "基础射手皮甲",
"armorArmoireBasicArcherArmorNotes": "这件伪装的背心使你在通过森林式不被注意。增加<%= per %>点感知。魔法衣橱:基础射手套装(3件中的第2件)。",
"armorArmoireGraduateRobeText": "毕业生法袍",
- "armorArmoireGraduateRobeNotes": "恭喜恭喜!这件沉重的法袍承载着你所积累的大量知识。增加智力<%= int %>点。魔法衣橱:毕业生套装(3件中的第2件)。",
+ "armorArmoireGraduateRobeNotes": "恭喜恭喜!这件沉重的法袍承载着你所积累的大量知识。增加<%= int %>点智力。魔法衣橱:毕业生套装(3件中的第2件)。",
"armorArmoireStripedSwimsuitText": "条纹泳衣",
- "armorArmoireStripedSwimsuitNotes": "有什么能比在海滩上和海洋怪兽战斗还有趣呢?增加体质<%= con %>点。魔法衣橱:海滨套装(3件中的第2件)。",
+ "armorArmoireStripedSwimsuitNotes": "有什么能比在海滩上和海洋怪兽战斗还有趣呢?增加<%= con %>点体质。魔法衣橱:海滨套装(3件中的第2件)。",
"armorArmoireCannoneerRagsText": "炮手服",
- "armorArmoireCannoneerRagsNotes": "这些破旧的衣服比看起来结实多了。增加体质<%= con %>点。魔法衣橱:炮手套装(3件中的第2件)。",
+ "armorArmoireCannoneerRagsNotes": "这些破旧的衣服比看起来结实多了。增加<%= con %>点体质。魔法衣橱:炮手套装(3件中的第2件)。",
"armorArmoireFalconerArmorText": "猎鹰者护甲",
- "armorArmoireFalconerArmorNotes": "用这坚硬的护甲远离鹰爪的攻击!提升体质<%= con %>点。魔法衣橱:猎鹰者套装(3件中的第1件)。",
+ "armorArmoireFalconerArmorNotes": "用这坚硬的护甲远离鹰爪的攻击!提升<%= con %>点体质。魔法衣橱:猎鹰者套装(3件中的第1件)。",
"armorArmoireVermilionArcherArmorText": "朱红射手皮甲",
"armorArmoireVermilionArcherArmorNotes": "这件护甲用特别的魔法红色金属制成,它将给你提供最大的保护,最小的限制和最大的天赋!增加<%= per %>点感知。魔法衣橱:朱红射手套装(3件中的第2件)。",
"armorArmoireOgreArmorText": "食人魔护甲",
@@ -759,21 +759,21 @@
"armorArmoireIronBlueArcherArmorText": "蓝铁弓箭手护甲",
"armorArmoireIronBlueArcherArmorNotes": "这幅护甲可以在战场中保护你免受飞来弓箭带来的伤害。增加<%= str %>点力量。魔法衣橱:钢铁弓箭手套装(3件中的第2件)。",
"armorArmoireRedPartyDressText": "红队装扮",
- "armorArmoireRedPartyDressNotes": "你很强壮,坚韧,聪明,而且时尚!增加力量,体质和智力各<%= attrs %>点。魔法衣橱:红色蝴蝶结发饰套装(2件中的第2件)。",
+ "armorArmoireRedPartyDressNotes": "你很强壮,坚韧,聪明,而且时尚!增加力量、体质和智力各<%= attrs %>点。魔法衣橱:红色蝴蝶结发饰套装(2件中的第2件)。",
"armorArmoireWoodElfArmorText": "木精灵护甲",
"armorArmoireWoodElfArmorNotes": "这种树皮和树叶的护甲将为你在森林中提供持久的伪装。增加<%= per %>点感知。魔法衣橱:森林精灵(3件中的第2件)。",
"armorArmoireRamFleeceRobesText": "公羊长袍",
- "armorArmoireRamFleeceRobesNotes": "这些长袍能让你在最猛烈的暴风雪中保持温暖。增加<%= con %> 点体质和 <%= str %>点力量。魔法衣橱:野蛮公羊套装(3件中的第2件)。",
+ "armorArmoireRamFleeceRobesNotes": "这些长袍能让你在最猛烈的暴风雪中保持温暖。增加<%= con %>点体质和<%= str %>点力量。魔法衣橱:野蛮公羊套装(3件中的第2件)。",
"armorArmoireGownOfHeartsText": "心之长袍",
- "armorArmoireGownOfHeartsNotes": "这件礼服上所有的边沿都使用了百褶设计!此外,它也会增加你的内心的坚韧。增加体质<%= con %>点。魔法衣橱:心之女王套装(3件中的第2件)。",
+ "armorArmoireGownOfHeartsNotes": "这件礼服上所有的边沿都使用了百褶设计!此外,它也会增加你的内心的坚韧。增加<%= con %>点体质。魔法衣橱:心之女王套装(3件中的第2件)。",
"armorArmoireMushroomDruidArmorText": "德鲁伊蘑菇护甲",
- "armorArmoireMushroomDruidArmorNotes": "这件长着蘑菇的棕色木护甲能够让你听见森林生命的低语。增加 <%= con %> 点体质和 <%= per %> 点感知。魔法衣橱:德鲁伊蘑菇套装(3件中的第2件)。",
+ "armorArmoireMushroomDruidArmorNotes": "这件长着蘑菇的棕色木护甲能够让你听见森林生命的低语。增加<%= con %>点体质和<%= per %>点感知。魔法衣橱:德鲁伊蘑菇套装(3件中的第2件)。",
"armorArmoireGreenFestivalYukataText": "绿色盛典浴衣",
- "armorArmoireGreenFestivalYukataNotes": "这种轻盈的浴衣会让你享受任何节日场合时保持凉爽。增加体质和感知各<%= attrs %> 点。魔法衣橱:节日盛典套装(3件中的第1件)。",
+ "armorArmoireGreenFestivalYukataNotes": "这种轻盈的浴衣会让你享受任何节日场合时保持凉爽。增加体质和感知各<%= attrs %>点。魔法衣橱:节日盛典套装(3件中的第1件)。",
"armorArmoireMerchantTunicText": "商人的外衣",
- "armorArmoireMerchantTunicNotes": "这束腰外衣的大袖子是完美的,可以把你赚到的金币藏在里面!增加 <%= per %>点感知。魔法衣橱:商人套餐(3件中的第2件)。",
+ "armorArmoireMerchantTunicNotes": "这束腰外衣的大袖子是完美的,可以把你赚到的金币藏在里面!增加<%= per %>点感知。魔法衣橱:商人套餐(3件中的第2件)。",
"armorArmoireVikingTunicText": "维京束腰外衣",
- "armorArmoireVikingTunicNotes": "这种温暖的羊毛上衣包括一件外套,即使是在海洋里,也会有额外的舒适。增加<%= con %> 点体质,和<%= str %>点的力量。魔法衣橱:维京人套装(3件中的第1件)。",
+ "armorArmoireVikingTunicNotes": "这种温暖的羊毛上衣包括一件外套,即使是在海洋里,也会有额外的舒适。增加<%= con %>点体质和<%= str %>点力量。魔法衣橱:维京人套装(3件中的第1件)。",
"armorArmoireSwanDancerTutuText": "天鹅舞者图图",
"armorArmoireSwanDancerTutuNotes": "当你旋转挥舞这华丽羽毛之时,你将会同风起扶摇直上九万里!增加智力和力量各 <%= attrs %> 点。魔法衣橱:天鹅舞者(3件中的第2件)。",
"armorArmoireAntiProcrastinationArmorText": "反拖延症护甲",
@@ -785,21 +785,21 @@
"armorArmoireCandlestickMakerOutfitText": "烛台制造者套装",
"armorArmoireCandlestickMakerOutfitNotes": "这一套结实的衣服可以保护你不受热蜡的影响。增加<%= con %>点的体质。魔法衣橱:烛台制造者(3件中的第1件)。",
"armorArmoireWovenRobesText": "编织的长袍",
- "armorArmoireWovenRobesNotes": "穿着这件多彩的长袍,骄傲地展示你的编织作品吧! 提升体质 <%= con %> 和智力 <%= int %>。附魔衣橱:编织者套装(3件中的第1件)。",
+ "armorArmoireWovenRobesNotes": "穿着这件多彩的长袍,骄傲地展示你的编织作品吧!增加<%= con %>点体质和<%= int %>点智力。魔法衣橱:编织者套装(3件中的第1件)。",
"armorArmoireLamplightersGreatcoatText": "点灯者的厚大衣",
- "armorArmoireLamplightersGreatcoatNotes": "这件羊毛大衣能抵抗最严寒的冬夜!增加 <%= per %> 点感知。魔法衣橱:点灯者套装(4件中的第2件)。",
+ "armorArmoireLamplightersGreatcoatNotes": "这件羊毛大衣能抵抗最严寒的冬夜!增加<%= per %>点感知。魔法衣橱:点灯者套装(4件中的第2件)。",
"armorArmoireCoachDriverLiveryText": "马车夫制服",
- "armorArmoireCoachDriverLiveryNotes": "这件厚外套能保护你在驾车中免受天气的干扰。而且,它看起来非常华丽!增加 <%= str %> 点力量。魔法衣橱:马车夫套装(3件中的第1件)。",
+ "armorArmoireCoachDriverLiveryNotes": "这件厚外套能保护你在驾车中免受天气的干扰。而且,它看起来非常华丽!增加<%= str %>点力量。魔法衣橱:马车夫套装(3件中的第1件)。",
"armorArmoireRobeOfDiamondsText": "钻石长袍",
- "armorArmoireRobeOfDiamondsNotes": "这些皇家长袍不仅使你显得高贵,它们还能让你看到其他人的高尚品质。增加 <%= per %> 点感知。魔法衣橱:钻石之王套装(4件中的第1件)。",
+ "armorArmoireRobeOfDiamondsNotes": "这些皇家长袍不仅使你显得高贵,它们还能让你看到其他人的高尚品质。增加<%= per %>点感知。魔法衣橱:钻石之王套装(4件中的第1件)。",
"armorArmoireFlutteryFrockText": "轻柔连衣裙",
- "armorArmoireFlutteryFrockNotes": "这条轻柔通风的长裙有宽大的裙摆,蝴蝶可能会把它误以为是巨大的花朵!体质、感知和力量各增加 <%= attrs %> 点。魔法衣橱:轻柔连衣裙套装(4件中的第1件)。",
+ "armorArmoireFlutteryFrockNotes": "这条轻柔通风的长裙有宽大的裙摆,蝴蝶可能会把它误以为是巨大的花朵!增加体质、感知和力量各<%= attrs %>点。魔法衣橱:轻柔连衣裙套装(4件中的第1件)。",
"armorArmoireCobblersCoverallsText": "鞋匠的连体工作服",
- "armorArmoireCobblersCoverallsNotes": "这些结实的连体工作服有很多口袋,可以装工具、皮革废料和其他有用的东西!感知和力量各提升 <%= attrs %> 点。魔法衣橱:鞋匠套装(3件中的第1件)。",
+ "armorArmoireCobblersCoverallsNotes": "这些结实的连体工作服有很多口袋,可以装工具、皮革废料和其他有用的东西!增加感知和力量各<%= attrs %>点。魔法衣橱:鞋匠套装(3件中的第1件)。",
"armorArmoireGlassblowersCoverallsText": "玻璃吹制工的连体工作服",
- "armorArmoireGlassblowersCoverallsNotes": "当你在用融化的热玻璃创造杰作时,这些连体工作服会保护你。增加 <%= con %> 点体质。魔法衣橱:玻璃吹制工套装(4件中的第2件)。",
+ "armorArmoireGlassblowersCoverallsNotes": "当你在用融化的热玻璃创造杰作时,这些连体工作服会保护你。增加<%= con %>点体质。魔法衣橱:玻璃吹制工套装(4件中的第2件)。",
"armorArmoireBluePartyDressText": "蓝色派对裙",
- "armorArmoireBluePartyDressNotes": "你感觉灵敏、坚韧、聪明,并且非常时尚!增加感知、力量和体质各 <%= attrs %> 点。魔法衣橱:蓝色蝴蝶结发饰品套装(4件中的第2件)。",
+ "armorArmoireBluePartyDressNotes": "你感觉灵敏、坚韧、聪明,并且非常时尚!增加感知、力量和体质各<%= attrs %>点。魔法衣橱:蓝色蝴蝶结发饰品套装(4件中的第2件)。",
"armorArmoirePiraticalPrincessGownText": "海盗公主裙",
"armorArmoirePiraticalPrincessGownNotes": "藏了很多暗兜的华丽服装,便于带武器和战利品!增加<%= per %>点感知。魔法衣橱:海盗公主(4件中的第2件)。",
"armorArmoireJeweledArcherArmorText": "宝石弓手铠甲",
@@ -809,13 +809,13 @@
"armorArmoireRobeOfSpadesText": "黑桃长袍",
"armorArmoireRobeOfSpadesNotes": "这种华丽长袍,有能藏宝贝和武器的暗兜——您的最佳选择!增加<%= str %>点力量。魔法衣橱:黑桃王牌(3件中的第2件)。",
"armorArmoireSoftBlueSuitText": "柔软的蓝色套装",
- "armorArmoireSoftBlueSuitNotes": "蓝色是一种令人心静的颜色。太静心了,有些人甚至穿着这套柔软的衣服就睡着了……zZz。增加<%= int %>点智力。魔法衣橱:蓝家居服(3件中的第2件)。",
+ "armorArmoireSoftBlueSuitNotes": "蓝色是一种令人心静的颜色。太静心了,有些人甚至穿着这套柔软的衣服就睡着了……zZz。增加<%= int %>点智力和<%= per %>点感知。魔法衣橱:蓝家居服(3件中的第2件)。",
"armorArmoireSoftGreenSuitText": "柔软的绿色套装",
- "armorArmoireSoftGreenSuitNotes": "绿色是最让人心清气爽的颜色!很适合放松一下疲劳的双眼……emm,或者干脆小睡一下……增加智力和体质各<%= attrs %>点。魔法衣橱:绿居家服(3件中的第2件)。",
+ "armorArmoireSoftGreenSuitNotes": "绿色是最让人心清气爽的颜色!很适合放松一下疲劳的双眼……emm,或者干脆小睡一下……增加体质和智力各<%= attrs %>点。魔法衣橱:绿居家服(3件中的第2件)。",
"armorArmoireSoftRedSuitText": "柔软的红色套装",
"armorArmoireSoftRedSuitNotes": "红色是超级振奋人心的颜色。如果你需要早早起床清醒,这套就是完美的睡衣了……增加<%= int %>点智力和<%= str %>点力量。魔法衣橱:红家居服(3件中的第2件)。",
"armorArmoireScribesRobeText": "书吏长袍",
- "armorArmoireScribesRobeNotes": "用灵感与激励的魔法编织而成的天鹅绒长袍。感知和智力各加<%= attrs %>。魔法衣橱:书吏套装(3件中的第1件)。",
+ "armorArmoireScribesRobeNotes": "用灵感与激励的魔法编织而成的天鹅绒长袍。增加感知和智力各<%= attrs %>点。魔法衣橱:书吏套装(3件中的第1件)。",
"headgear": "头饰",
"headgearCapitalized": "头饰",
"headBase0Text": "没有头盔",
@@ -827,9 +827,9 @@
"headWarrior3Text": "板甲头盔",
"headWarrior3Notes": "厚的钢头盔, 抵御任何打击。 增加<%= str %>点力量。",
"headWarrior4Text": "红甲头盔",
- "headWarrior4Notes": "镶嵌红宝石来追求力量,当穿戴者发怒时宝石会绽放光芒。增加力量 <%= str %>。",
+ "headWarrior4Notes": "镶嵌红宝石来追求力量,当穿戴者发怒时宝石会绽放光芒。增加<%= str %>点力量。",
"headWarrior5Text": "黄金甲头盔",
- "headWarrior5Notes": "皇冠注定闪亮护甲。增加力量 <%= str %>。",
+ "headWarrior5Notes": "皇冠注定闪亮护甲。增加<%= str %>点力量。",
"headRogue1Text": "皮革头罩",
"headRogue1Notes": "基本的头罩。增加<%= per %>点感知。",
"headRogue2Text": "黑皮革头罩",
@@ -837,53 +837,53 @@
"headRogue3Text": "迷彩头罩",
"headRogue3Notes": "耐用,却不阻碍听力。增加<%= per %>点感知。",
"headRogue4Text": "半影头罩",
- "headRogue4Notes": "即使周围一片漆黑,使用者的视觉仍不受影响。增加 <%= per %>点感知。",
+ "headRogue4Notes": "即使周围一片漆黑,使用者的视觉仍不受影响。增加<%= per %>点感知。",
"headRogue5Text": "暗影头罩",
- "headRogue5Notes": "在那些探测你的人手下藏匿,甚至你的思想。增加感知 <%= per %>。",
+ "headRogue5Notes": "在那些探测你的人手下藏匿,甚至你的思想。增加<%= per %>点感知。",
"headWizard1Text": "魔法师帽子",
- "headWizard1Notes": "简单,舒服,时尚。增加 <%= per %>点感知。",
+ "headWizard1Notes": "简单,舒服,时尚。增加<%= per %>点感知。",
"headWizard2Text": "洞察帽",
- "headWizard2Notes": "流浪巫师的传统头饰。增加感知 <%= per %>。",
+ "headWizard2Notes": "流浪巫师的传统头饰。增加<%= per %>点感知。",
"headWizard3Text": "占星家帽子",
- "headWizard3Notes": "有土星之环装饰。增加感知 <%= per %>。",
+ "headWizard3Notes": "有土星之环装饰。增加<%= per %>点感知。",
"headWizard4Text": "大法师帽子",
"headWizard4Notes": "集中精神專注施法。增加<%= per %>点感知。",
"headWizard5Text": "皇家大法师帽子",
- "headWizard5Notes": "对财富,天气,甚至较弱的法师显示权威。增加感知 <%= per %>。",
+ "headWizard5Notes": "对财富,天气,甚至较弱的法师显示权威。增加<%= per %>点感知。",
"headHealer1Text": "石英头饰",
- "headHealer1Notes": "宝石头饰,用来专注于手上的任务。增加智力<%= int %>。",
+ "headHealer1Notes": "宝石头饰,用来专注于手上的任务。增加<%= int %>点智力。",
"headHealer2Text": "紫水晶头饰",
- "headHealer2Notes": "对谦虚职业的奢华品味。增加智力<%= int %>。",
+ "headHealer2Notes": "对谦虚职业的奢华品味。增加<%= int %>点智力。",
"headHealer3Text": "蓝宝石头饰",
- "headHealer3Notes": "发光,让受难者知道他们的救赎即将到来。增加智力<%= int %>。",
+ "headHealer3Notes": "发光,让受难者知道他们的救赎即将到来。增加<%= int %>点智力。",
"headHealer4Text": "绿宝石王冠",
- "headHealer4Notes": "散发出生命和成长的氛围。增加智力<%= int %>。",
+ "headHealer4Notes": "散发出生命和成长的氛围。增加<%= int %>点智力。",
"headHealer5Text": "皇家王冠",
"headHealer5Notes": "为国王,王后,或奇迹创造者打造。增加<%= int %>点智力。",
"headSpecial0Text": "黑影头盔",
- "headSpecial0Notes": "血液和灰尘,熔岩和黑曜岩给予头盔意象与力量。增加智力<%= int %>。",
+ "headSpecial0Notes": "血液和灰尘,熔岩和黑曜岩给予头盔意象与力量。增加<%= int %>点智力。",
"headSpecial1Text": "水晶头盔",
- "headSpecial1Notes": "以身作则的人喜欢的皇冠。所有属性增加 <%= attrs %> 点。",
+ "headSpecial1Notes": "以身作则的人喜欢的皇冠。增加全属性<%= attrs %>点。",
"headSpecial2Text": "无名头盔",
- "headSpecial2Notes": "不求回报之人对自己许下的圣约。提高智力和力量各 <%= attrs %> 点。",
+ "headSpecial2Notes": "不求回报之人对自己许下的圣约。增加智力和力量各<%= attrs %>点。",
"headSpecialTakeThisText": "Take This之头盔",
- "headSpecialTakeThisNotes": "这个头盔是通过参与“Take This”赞助的挑战获得的。祝贺你!所有属性提升 <%= attrs %> 点。",
+ "headSpecialTakeThisNotes": "这个头盔是通过参与“Take This”赞助的挑战获得的。祝贺你!增加全属性<%= attrs %>点。",
"headSpecialFireCoralCircletText": "火珊瑚头饰",
- "headSpecialFireCoralCircletNotes": "这个由炼金术士设计的头饰,能够让你在水中呼吸并潜水寻找宝藏。提升<%= per %>点感知。",
+ "headSpecialFireCoralCircletNotes": "这个由炼金术士设计的头饰,能够让你在水中呼吸并潜水寻找宝藏。增加<%= per %>点感知。",
"headSpecialPyromancersTurbanText": "烈焰术士头巾",
- "headSpecialPyromancersTurbanNotes": "这个神奇的头巾能帮助你呼吸,甚至在浓密的烟雾中!并且它非常舒适!提升 <%= str %>点力量。",
+ "headSpecialPyromancersTurbanNotes": "这个神奇的头巾能帮助你呼吸,甚至在浓密的烟雾中!并且它非常舒适!增加<%= str %>点力量。",
"headSpecialBardHatText": "吟游诗人的帽子",
- "headSpecialBardHatNotes": "在你的帽子上插一根羽毛,称之为“生产力”!增加 <%= int %>点智力。",
+ "headSpecialBardHatNotes": "在你的帽子上插一根羽毛,称之为“生产力”!增加<%= int %>点智力。",
"headSpecialLunarWarriorHelmText": "月亮战士头盔",
- "headSpecialLunarWarriorHelmNotes": "月光会在战斗中赐予你力量!增加力量和智力各<%= attrs %> 点。",
+ "headSpecialLunarWarriorHelmNotes": "月光会在战斗中赐予你力量!增加力量和智力各<%= attrs %>点。",
"headSpecialMammothRiderHelmText": "猛犸骑士盔",
- "headSpecialMammothRiderHelmNotes": "可别被它的松软外表给骗了——这顶帽子会赋予你敏锐的感知!增加感知<%= per %>点。",
+ "headSpecialMammothRiderHelmNotes": "可别被它的松软外表给骗了——这顶帽子会赋予你敏锐的感知!增加<%= per %>点感知。",
"headSpecialPageHelmText": "一页头盔",
- "headSpecialPageHelmNotes": "锁子甲:为了时尚和实用。增加感知 <%= per %>。",
+ "headSpecialPageHelmNotes": "锁子甲:为了时尚和实用。增加<%= per %>点感知。",
"headSpecialRoguishRainbowMessengerHoodText": "俏皮彩虹信使兜帽",
- "headSpecialRoguishRainbowMessengerHoodNotes": "这个明亮的兜帽散发出一种鲜艳的光芒,可以保护你不受恶劣天气的影响。增加 <%= con %>点体质。",
+ "headSpecialRoguishRainbowMessengerHoodNotes": "这个明亮的兜帽散发出一种鲜艳的光芒,可以保护你不受恶劣天气的影响。增加<%= con %>点体质。",
"headSpecialClandestineCowlText": "神秘斗篷",
- "headSpecialClandestineCowlNotes": "当你从人物中抢夺金子和战利品时,小心地隐藏你的脸!增加 <%= per %>点感知。",
+ "headSpecialClandestineCowlNotes": "当你从人物中抢夺金子和战利品时,小心地隐藏你的脸!增加<%= per %>点感知。",
"headSpecialSnowSovereignCrownText": "冰雪大帝的皇冠",
"headSpecialSnowSovereignCrownNotes": "王冠上的宝石闪耀着新落的雪花。增加<%= con %>点体质。",
"headSpecialSpikedHelmText": "长钉头盔",
@@ -898,160 +898,160 @@
"headSpecialTurkeyHelmBaseNotes": "当你带上这顶鸟嘴头盔你的火鸡造型才算完整!没有属性加成。",
"headSpecialTurkeyHelmGildedText": "镀金火鸡头盔",
"headSpecialTurkeyHelmGildedNotes": "咕咕咕!Bling Bling!没有属性加成。",
- "headSpecialNyeText": "可笑的派对帽子",
- "headSpecialNyeNotes": "你收到了一顶可笑的派对帽子!当新年钟声响起时,自豪地戴上这顶帽子吧!没有属性加成。",
+ "headSpecialNyeText": "滑稽的派对帽子",
+ "headSpecialNyeNotes": "你收到了一顶滑稽的派对帽子!当新年钟声响起时,自豪地戴上这顶帽子吧!没有属性加成。",
"headSpecialYetiText": "雪人驯化头盔",
- "headSpecialYetiNotes": "一顶可爱又可怕的帽子。提高 <%= str %>点力量。2013-2014冬季限量版装备。",
+ "headSpecialYetiNotes": "一顶可爱又可怕的帽子。增加<%= str %>点力量。2013-2014冬季限量版装备。",
"headSpecialSkiText": "滑雪刺客头盔",
- "headSpecialSkiNotes": "为穿戴者的身份保密……也为穿戴者的脸部保暖。提高<%= per %>点感知。2013-2014冬季限量版装备。",
+ "headSpecialSkiNotes": "为穿戴者的身份保密……也为穿戴者的脸部保暖。增加<%= per %>点感知。2013-2014冬季限量版装备。",
"headSpecialCandycaneText": "糖晶手杖帽子",
- "headSpecialCandycaneNotes": "这是世界上最美味的帽子,并因来无影去无踪闻名于世。提高 <%= per %>点感知。2013-2014冬季限量版装备。",
+ "headSpecialCandycaneNotes": "这是世界上最美味的帽子,并因来无影去无踪闻名于世。增加<%= per %>点感知。2013-2014冬季限量版装备。",
"headSpecialSnowflakeText": "雪花王冠",
- "headSpecialSnowflakeNotes": "戴上这顶王冠的人寒气不侵。提高 <%= int %>点智力。2013-2014冬季限量版装备。",
+ "headSpecialSnowflakeNotes": "戴上这顶王冠的人寒气不侵。增加<%= int %>点智力。2013-2014冬季限量版装备。",
"headSpecialSpringRogueText": "隐秘猫咪面具",
- "headSpecialSpringRogueNotes": "永远不会有人猜到你是一个身手矫健的飞贼!提高<%= per %>感知。2014春季限量版装备。",
+ "headSpecialSpringRogueNotes": "永远不会有人猜到你是一个身手矫健的飞贼!增加<%= per %>点感知。2014春季限量版装备。",
"headSpecialSpringWarriorText": "三叶草钢头盔",
- "headSpecialSpringWarriorNotes": "这顶由红三叶草焊制的头盔可以抵挡最强大的打击。提高<%= str %>点力量。2014春季限量版。",
+ "headSpecialSpringWarriorNotes": "这顶由红三叶草焊制的头盔可以抵挡最强大的打击。增加<%= str %>点力量。2014春季限量版。",
"headSpecialSpringMageText": "瑞士奶酪帽子",
- "headSpecialSpringMageNotes": "这顶帽子蕴藏着强大的魔法!尽量不要啃它。提高<%= per %>点感知。2014春季限量版装备。",
+ "headSpecialSpringMageNotes": "这顶帽子蕴藏着强大的魔法!尽量不要啃它。增加<%= per %>点感知。2014春季限量版装备。",
"headSpecialSpringHealerText": "友谊之冠",
- "headSpecialSpringHealerNotes": "这顶王冠象征着忠诚与友谊。狗终究是冒险者最好的朋友!提高 <%= int %>点智力。2014春季限量版装备。",
+ "headSpecialSpringHealerNotes": "这顶王冠象征着忠诚与友谊。狗终究是冒险者最好的朋友!增加<%= int %>点智力。2014春季限量版装备。",
"headSpecialSummerRogueText": "海盗帽",
- "headSpecialSummerRogueNotes": "只有收获最多的海盗能佩戴这顶好帽子。提高 <%= per %>点感知。2014夏季限量版装备。",
+ "headSpecialSummerRogueNotes": "只有收获最多的海盗能佩戴这顶好帽子。增加<%= per %>点感知。2014夏季限量版装备。",
"headSpecialSummerWarriorText": "侠盗头巾",
- "headSpecialSummerWarriorNotes": "这块柔软的、咸咸的布让佩戴者充满力量。提高 <%= str %>点力量。2014夏季限量版装备。",
+ "headSpecialSummerWarriorNotes": "这块柔软的、咸咸的布让佩戴者充满力量。增加<%= str %>点力量。2014夏季限量版装备。",
"headSpecialSummerMageText": "海带包裹帽子",
- "headSpecialSummerMageNotes": "有什么能比一顶被海带包裹的帽子更神奇呢?提高<%= per %>点感知。2014夏季限量版装备。",
+ "headSpecialSummerMageNotes": "有什么能比一顶被海带包裹的帽子更神奇呢?增加<%= per %>点感知。2014夏季限量版装备。",
"headSpecialSummerHealerText": "珊瑚皇冠",
- "headSpecialSummerHealerNotes": "使其佩戴者能够修复受损的暗礁。提高<%= int %>点智力。2014夏季限量版装备。",
+ "headSpecialSummerHealerNotes": "使其佩戴者能够修复受损的暗礁。增加<%= int %>点智力。2014夏季限量版装备。",
"headSpecialFallRogueText": "血色兜帽",
- "headSpecialFallRogueNotes": "吸血鬼歼灭者的身份总是要隐藏的。提高<%= per %>点感知。2014秋季限量版装备。",
+ "headSpecialFallRogueNotes": "吸血鬼歼灭者的身份总是要隐藏的。增加<%= per %>点感知。2014秋季限量版装备。",
"headSpecialFallWarriorText": "科学怪物的头皮",
- "headSpecialFallWarriorNotes": "移植这顶头盔吧!它几乎没有用过。提高 <%= str %>点力量。2014秋季限量版装备。",
+ "headSpecialFallWarriorNotes": "移植这顶头盔吧!它几乎没有用过。增加<%= str %>点力量。2014秋季限量版装备。",
"headSpecialFallMageText": "尖帽",
- "headSpecialFallMageNotes": "这顶帽子是由魔法一针一线织就的。提高<%= per %>点感知。2014秋季限量版装备。",
+ "headSpecialFallMageNotes": "这顶帽子是由魔法一针一线织就的。增加<%= per %>点感知。2014秋季限量版装备。",
"headSpecialFallHealerText": "头部绷带",
- "headSpecialFallHealerNotes": "高度杀菌,非常时尚。提高<%= int %>点智力。2014秋季限量版装备。",
- "headSpecialNye2014Text": "傻气派对帽子",
- "headSpecialNye2014Notes": "你收到了一顶傻气的派对帽子!新年钟声响起时,自豪地戴上它吧!没有属性加成。",
+ "headSpecialFallHealerNotes": "高度杀菌,非常时尚。增加<%= int %>点智力。2014秋季限量版装备。",
+ "headSpecialNye2014Text": "傻气的派对帽子",
+ "headSpecialNye2014Notes": "你收到了一顶傻气的派对帽子!当新年钟声响起时,自豪地戴上这顶帽子吧!没有属性加成。",
"headSpecialWinter2015RogueText": "灞波儿奔面罩",
- "headSpecialWinter2015RogueNotes": "你真的、肯定、绝对是一只真正的灞波儿奔。你没有渗透进灞波儿奔的老巢。你对传说中躺在寒冷隧道里的巨额财富也毫无兴趣。嗷。提高<%= per %>点感知。2014-2015冬季限定版装备。",
+ "headSpecialWinter2015RogueNotes": "你真的、肯定、绝对是一只真正的灞波儿奔。你没有渗透进灞波儿奔的老巢。你对传说中躺在寒冷隧道里的巨额财富也毫无兴趣。嗷。增加<%= per %>点感知。2014-2015冬季限定版装备。",
"headSpecialWinter2015WarriorText": "姜饼头盔",
- "headSpecialWinter2015WarriorNotes": "思考,思考,竭尽全力地思考。提高<%= str %>点力量。2014-2015冬季装备。",
+ "headSpecialWinter2015WarriorNotes": "思考,思考,竭尽全力地思考。增加<%= str %>点力量。2014-2015冬季装备。",
"headSpecialWinter2015MageText": "曙光之帽",
- "headSpecialWinter2015MageNotes": "佩戴者学习时,这顶帽子的织物会变形和发光。提高<%= per %>点感知。2014-2015冬季限定版装备。",
+ "headSpecialWinter2015MageNotes": "佩戴者学习时,这顶帽子的织物会变形和发光。增加<%= per %>点感知。2014-2015冬季限定版装备。",
"headSpecialWinter2015HealerText": "温暖的耳套",
- "headSpecialWinter2015HealerNotes": "这些温暖的耳套能防寒降噪。增加智力<%= int %>。2014-2015 冬日限定版装备。",
+ "headSpecialWinter2015HealerNotes": "这些温暖的耳套能防寒降噪。增加<%= int %>点智力。2014-2015 冬日限定版装备。",
"headSpecialSpring2015RogueText": "防火头盔",
- "headSpecialSpring2015RogueNotes": "火?哈!面对着火焰,你发出猛烈的噼里啪啦声!提高<%= per %>点感知。2015春季限定版装备。",
+ "headSpecialSpring2015RogueNotes": "火?哈!面对着火焰,你发出猛烈的噼里啪啦声!增加<%= per %>点感知。2015春季限定版装备。",
"headSpecialSpring2015WarriorText": "警惕头盔",
- "headSpecialSpring2015WarriorNotes": "当心这顶头盔!只有最凶猛的狗狗才能戴上它。不要笑好吗。提高 <%= str %>点力量。2015春季限定版装备。",
+ "headSpecialSpring2015WarriorNotes": "当心这顶头盔!只有最凶猛的狗狗才能戴上它。不要笑好吗。增加<%= str %>点力量。2015春季限定版装备。",
"headSpecialSpring2015MageText": "演出法师帽",
- "headSpecialSpring2015MageNotes": "究竟是先有兔兔还是帽子呢?提高<%= per %>点感知。2015春季限定版装备。",
+ "headSpecialSpring2015MageNotes": "究竟是先有兔兔还是帽子呢?增加<%= per %>点感知。2015春季限定版装备。",
"headSpecialSpring2015HealerText": "抚慰王冠",
- "headSpecialSpring2015HealerNotes": "王冠中央的珍珠能镇定并安抚其周围的人。提高<%= int %>点智力。2015春季限定版装备。",
+ "headSpecialSpring2015HealerNotes": "王冠中央的珍珠能镇定并安抚其周围的人。增加<%= int %>点智力。2015春季限定版装备。",
"headSpecialSummer2015RogueText": "叛徒的帽子",
- "headSpecialSummer2015RogueNotes": "海盗帽落入海中,并被些许火珊瑚装饰着。提升 <%= per %>点感知。2015夏季限量款装备。",
+ "headSpecialSummer2015RogueNotes": "海盗帽落入海中,并被些许火珊瑚装饰着。增加<%= per %>点感知。2015夏季限量款装备。",
"headSpecialSummer2015WarriorText": "宝石海洋头盔",
"headSpecialSummer2015WarriorNotes": "由拖延之国的工匠使用深海金属雕琢而成的头盔,兼容结实且帅气的特质。提升<%= str %>点力量。2015年夏季限量版装备。",
"headSpecialSummer2015MageText": "预言家的围巾",
- "headSpecialSummer2015MageNotes": "在这条丝巾的细线中隐隐的闪耀着力量的光芒。提升 <%= per %>点感知。2015夏季限量版装备。",
+ "headSpecialSummer2015MageNotes": "在这条丝巾的细线中隐隐的闪耀着力量的光芒。增加<%= per %>点感知。2015夏季限量版装备。",
"headSpecialSummer2015HealerText": "水手帽",
"headSpecialSummer2015HealerNotes": "戴紧你的水手帽,你将可以在最为波涛汹涌的海面上航行!增加<%= int %>点智力。2015夏季限量版装备。",
"headSpecialFall2015RogueText": "战蝠之翼",
- "headSpecialFall2015RogueNotes": "这款超强功能的头盔可以通过回声定位你的敌人的位置!提高 <%= per %>点感知,2015年秋季限量版装备。",
+ "headSpecialFall2015RogueNotes": "这款超强功能的头盔可以通过回声定位你的敌人的位置!增加<%= per %>点感知。2015年秋季限量版装备。",
"headSpecialFall2015WarriorText": "稻草人的帽子",
- "headSpecialFall2015WarriorNotes": "聪明人都希望获得这顶帽子。提升 <%= str %>点力量。2015年秋季限量版装备。",
+ "headSpecialFall2015WarriorNotes": "聪明人都希望获得这顶帽子。增加<%= str %>点力量。2015年秋季限量版装备。",
"headSpecialFall2015MageText": "缝纫女巫之帽子",
"headSpecialFall2015MageNotes": "每一个针脚都闪耀魔咒的光辉。增加<%= per %>点感知。2015年秋季限量版装备。",
"headSpecialFall2015HealerText": "青蛙帽子",
- "headSpecialFall2015HealerNotes": "这是一顶巨大的帽子只有最出色的药剂师才配得上它。提高<%= int %>点智力。2015秋季限量款装备。",
- "headSpecialNye2015Text": "可笑的派对帽子",
- "headSpecialNye2015Notes": "你收到了一顶好笑的派对帽子!在新年钟声响起时,自豪地戴上它吧!没有属性加成。",
+ "headSpecialFall2015HealerNotes": "这是一顶巨大的帽子只有最出色的药剂师才配得上它。增加<%= int %>点智力。2015秋季限量款装备。",
+ "headSpecialNye2015Text": "荒谬的派对帽子",
+ "headSpecialNye2015Notes": "你收到了一顶荒谬的派对帽子!当新年钟声响起时,自豪地戴上这顶帽子吧!没有属性加成。",
"headSpecialWinter2016RogueText": "可可头盔",
- "headSpecialWinter2016RogueNotes": "在这个舒适的头盔上还有一条可以保护你的围巾,可以拿掉它来小口喝冬季饮品哦!增加 <%= per %>点感知。2015-2016冬季限量版装备。",
+ "headSpecialWinter2016RogueNotes": "在这个舒适的头盔上还有一条可以保护你的围巾,可以拿掉它来小口喝冬季饮品哦!增加<%= per %>点感知。2015-2016冬季限量版装备。",
"headSpecialWinter2016WarriorText": "雪人帽",
"headSpecialWinter2016WarriorNotes": "额啊!这果然是个强大的头盔!!在它化掉……之前……一直很强大!增加<%= str %>点力量。2015-2016冬季限量版装备。",
"headSpecialWinter2016MageText": "雪板头罩",
- "headSpecialWinter2016MageNotes": "在你施法时,保证双眼不会被雪挡住。提高<%= per %>点感知。2015-2016冬季限量版装备。",
+ "headSpecialWinter2016MageNotes": "在你施法时,保证双眼不会被雪挡住。增加<%= per %>点感知。2015-2016冬季限量版装备。",
"headSpecialWinter2016HealerText": "仙女翅膀头盔",
- "headSpecialWinter2016HealerNotes": "那些翅膀飞行的太快,导致他们的视线都模糊了!提升 <%= int %>点智力。2015-2016冬季限量版装备。",
+ "headSpecialWinter2016HealerNotes": "那些翅膀飞行的太快,导致他们的视线都模糊了!增加<%= int %>点智力。2015-2016冬季限量版装备。",
"headSpecialSpring2016RogueText": "善良小狗面具",
- "headSpecialSpring2016RogueNotes": "啊呜,好一只可爱的小狗!到这儿来,让我摸摸头...嘿,我所有的的金币去哪儿了?增加<%= per %> 点感知。2016年春季限量版装备。",
+ "headSpecialSpring2016RogueNotes": "啊呜,好一只可爱的小狗!到这儿来,让我摸摸头...嘿,我所有的金币去哪儿了?增加<%= per %> 点感知。2016年春季限量版装备。",
"headSpecialSpring2016WarriorText": "鼠小兵头盔",
- "headSpecialSpring2016WarriorNotes": "再也不会被敲打头部了!让他们试试!增加 <%= str %>点力量。2016年春季限定版装备。",
+ "headSpecialSpring2016WarriorNotes": "再也不会被敲打头部了!让他们试试!增加<%= str %>点力量。2016年春季限定版装备。",
"headSpecialSpring2016MageText": "豪华的猫帽",
"headSpecialSpring2016MageNotes": "穿上它让你超越了世界上那些巷弄法师。增加<%= per %>点感知。2016年春季限定版装备。",
"headSpecialSpring2016HealerText": "花开王冠",
"headSpecialSpring2016HealerNotes": "它带着准备向前爆发的新生潜能迅速地闪烁。增加<%= int %>点智力。2016年春季限定版装备。",
"headSpecialSummer2016RogueText": "鳗鱼头盔",
- "headSpecialSummer2016RogueNotes": "当带着这个隐秘的头盔,从岩石的缝隙中向外偷看。提高 <%= per %>点感知。2016夏季限量版装备。",
+ "headSpecialSummer2016RogueNotes": "当带着这个隐秘的头盔,从岩石的缝隙中向外偷看。增加<%= per %>点感知。2016夏季限量版装备。",
"headSpecialSummer2016WarriorText": "鲨鱼头盔",
- "headSpecialSummer2016WarriorNotes": "用这顶吓人的头盔撕咬那些艰巨的任务吧!增加力量 <%= str %> 点。2016年限定版夏季装备。",
+ "headSpecialSummer2016WarriorNotes": "用这顶吓人的头盔撕咬那些艰巨的任务吧!增加<%= str %>点力量。2016年限定版夏季装备。",
"headSpecialSummer2016MageText": "喷射帽",
- "headSpecialSummer2016MageNotes": "魔法水不停从这顶帽子喷出来。增加感知<%= per %>点。限量版2016年夏季装备。",
+ "headSpecialSummer2016MageNotes": "魔法水不停从这顶帽子喷出来。增加<%= per %>点感知。限量版2016年夏季装备。",
"headSpecialSummer2016HealerText": "海马头盔",
- "headSpecialSummer2016HealerNotes": "这顶头盔表明戴它的人是由魔法治疗拖延海马所训练的!增加智力<%= int %>点。2016年夏季限量版装备。",
+ "headSpecialSummer2016HealerNotes": "这顶头盔表明戴它的人是由魔法治疗拖延海马所训练的!增加<%= int %>点智力。2016年夏季限量版装备。",
"headSpecialFall2016RogueText": "黑寡妇头盔",
- "headSpecialFall2016RogueNotes": "头盔上的腿还在抽搐着……增加 <%= per %> 点感知,2016年秋季限量装。",
+ "headSpecialFall2016RogueNotes": "头盔上的腿还在抽搐着……增加<%= per %>点感知。2016年秋季限量装。",
"headSpecialFall2016WarriorText": "粗糙的树皮头盔",
"headSpecialFall2016WarriorNotes": "这个黏糊糊的沼泽头盔上还留着一点沼泽泥。增加<%= str %>点力量。2016年秋季限量装。",
"headSpecialFall2016MageText": "罪恶之罩",
- "headSpecialFall2016MageNotes": "把你的策划隐藏在这阴暗的罩下。提高 <%= per %>点感知,2016年秋季限量版装备。",
+ "headSpecialFall2016MageNotes": "把你的策划隐藏在这阴暗的罩下。增加<%= per %>点感知。2016年秋季限量版装备。",
"headSpecialFall2016HealerText": "美杜莎的王冠",
"headSpecialFall2016HealerNotes": "那些看着你的眼睛的人有祸了…增加<%= int %>点智力。2016年秋季限量版装备。",
"headSpecialNye2016Text": "怪诞的派对帽子",
- "headSpecialNye2016Notes": "你获得了怪诞的派对帽子!在新年钟声敲响的时候自豪的戴上它吧!没有属性加成。",
+ "headSpecialNye2016Notes": "你收到了一顶怪诞的派对帽子!当新年钟声响起时,自豪地戴上这顶帽子吧!没有属性加成。",
"headSpecialWinter2017RogueText": "寒霜头盔",
- "headSpecialWinter2017RogueNotes": "由冰晶体制作,这件头盔能帮助你悄无声息地通过冰雪地形。增加感知<%= per %>。2016-2017冬季限量版装备。",
+ "headSpecialWinter2017RogueNotes": "由冰晶体制作,这件头盔能帮助你悄无声息地通过冰雪地形。增加<%= per %>点感知。2016-2017冬季限量版装备。",
"headSpecialWinter2017WarriorText": "曲棍球头盔",
- "headSpecialWinter2017WarriorNotes": "这是一件坚固耐用的头盔!制造来抵御冰雪的冲击,甚至抵御深红的任务怪!增加力量<%= str %>点。2016-2017冬季限量版装备。",
+ "headSpecialWinter2017WarriorNotes": "这是一件坚固耐用的头盔!制造来抵御冰雪的冲击,甚至抵御深红的任务怪!增加<%= str %>点力量。2016-2017冬季限量版装备。",
"headSpecialWinter2017MageText": "冬狼头盔",
- "headSpecialWinter2017MageNotes": "这件头盔,以传奇的冬季之狼为原型塑造,它将让你的头部保持温暖并增强你的视力。增加感知<%= per %>点。2016-2017冬季限量版装备。",
+ "headSpecialWinter2017MageNotes": "这件头盔,以传奇的冬季之狼为原型塑造,它将让你的头部保持温暖并增强你的视力。增加<%= per %>点感知。2016-2017冬季限量版装备。",
"headSpecialWinter2017HealerText": "灿烂繁花头盔",
- "headSpecialWinter2017HealerNotes": "这些闪闪发光的花瓣让你集中脑力!增加智力<%= int %>点。2016-2017年冬季限量版装备。",
+ "headSpecialWinter2017HealerNotes": "这些闪闪发光的花瓣让你集中脑力!增加<%= int %>点智力。2016-2017年冬季限量版装备。",
"headSpecialSpring2017RogueText": "鬼祟兔头盔",
- "headSpecialSpring2017RogueNotes": "在你偷偷接近日常小怪(或者追求奢华舒适生活)的时候,这个面具可以让你保持精明和机灵!增加 <%= per %>点感知。2017年春季限定装备。",
+ "headSpecialSpring2017RogueNotes": "在你偷偷接近日常小怪(或者追求奢华舒适生活)的时候,这个面具可以让你保持精明和机灵!增加<%= per %>点感知。2017年春季限定装备。",
"headSpecialSpring2017WarriorText": "猫科头盔",
- "headSpecialSpring2017WarriorNotes": "这只头盔可以保护你可爱讨喜又迷糊的脑袋。增加 <%= str %>点力量。2017年春季限定装备。",
+ "headSpecialSpring2017WarriorNotes": "这只头盔可以保护你可爱讨喜又迷糊的脑袋。增加<%= str %>点力量。2017年春季限定装备。",
"headSpecialSpring2017MageText": "卡耐因魔法帽",
"headSpecialSpring2017MageNotes": "这只帽子可以帮助你释放强力的法术...或者你干脆用它召唤网球得了。反正由你做选择。增加<%= per %>点感知。2017春季限定装备。",
"headSpecialSpring2017HealerText": "花瓣头饰",
"headSpecialSpring2017HealerNotes": "这个精致的皇冠散发着春初那令人安心的味道。增加<%= int %>点智力。2017年春季限定装备。",
"headSpecialSummer2017RogueText": "海龙头盔",
- "headSpecialSummer2017RogueNotes": "这款头盔可以改变颜色,帮助你悄无声息的融入周围的环境。增加知觉<%= per %>点。2017夏季限量装备。",
+ "headSpecialSummer2017RogueNotes": "这款头盔可以改变颜色,帮助你悄无声息的融入周围的环境。增加<%= per %>点感知。2017夏季限量装备。",
"headSpecialSummer2017WarriorText": "沙堡头盔",
"headSpecialSummer2017WarriorNotes": "任何人心目中想戴的最棒的头盔……至少,在潮汐漫上来之前。增加<%= str %>点力量。2017年夏季限定装备。",
"headSpecialSummer2017MageText": "Whirlpool 的帽子",
- "headSpecialSummer2017MageNotes": "这是一个完全由旋涡组成的一个涡流帽子!增加感知<%= per %>点。2017夏季限定装备。",
+ "headSpecialSummer2017MageNotes": "这是一个完全由旋涡组成的一个涡流帽子!增加<%= per %>点感知。2017夏季限定装备。",
"headSpecialSummer2017HealerText": "海洋生物王冠",
"headSpecialSummer2017HealerNotes": "这顶帽子是由友善的海洋生物朋友们组成的,她们暂时在你的头上小憩,同时会给你提供一些明智的建议。增加智力<%= int %>点。2017夏季限定装备。",
"headSpecialFall2017RogueText": "杰克的南瓜灯头盔",
- "headSpecialFall2017RogueNotes": "准备好款待了吗? 是时侯穿上这个有节日气息的善良头盔了!提升感知<%= per %>。2017秋季限量装备。",
+ "headSpecialFall2017RogueNotes": "准备好款待了吗? 是时侯穿上这个有节日气息的善良头盔了!增加<%= per %>点感知。2017秋季限量装备。",
"headSpecialFall2017WarriorText": "玉米糖头盔",
- "headSpecialFall2017WarriorNotes": "戴着这个头盔简直像是一种享受,但任性的它们任务不会觉得如此甜蜜!\n增加<%= str %>点力量。2017秋季限定装备。",
+ "headSpecialFall2017WarriorNotes": "戴着这个头盔简直像是一种享受,但任性的它们任务不会觉得如此甜蜜!增加<%= str %>点力量。2017秋季限定装备。",
"headSpecialFall2017MageText": "假面舞会礼帽",
"headSpecialFall2017MageNotes": "当你戴着这顶羽毛帽子出现之时,每个人都会猜测房间里那个神奇的陌生人的身份。增加<%= per %>点感知。2017秋季限定装备。",
"headSpecialFall2017HealerText": "鬼屋头盔",
"headSpecialFall2017HealerNotes": "邀请幽灵般的灵魂和友好的生物来一起探寻你的疗愈能力!增加<%= int %>点智力。2017秋季限定装备。",
- "headSpecialNye2017Text": "梦幻派对帽子",
- "headSpecialNye2017Notes": "你获得了一顶梦幻派对帽子!新年的钟声响起时,自豪地戴上它吧!没有属性加成。",
+ "headSpecialNye2017Text": "梦幻的派对帽子",
+ "headSpecialNye2017Notes": "你收到了一顶梦幻的派对帽子!当新年钟声响起时,自豪地戴上这顶帽子吧!没有属性加成。",
"headSpecialWinter2018RogueText": "驯鹿头盔",
- "headSpecialWinter2018RogueNotes": "有一个内置的头灯,完美的假日伪装!增加 <%= per %> 点感知。2017-2018冬季限定装备。",
+ "headSpecialWinter2018RogueNotes": "有一个内置的头灯,完美的假日伪装!增加<%= per %>点感知。2017-2018冬季限定装备。",
"headSpecialWinter2018WarriorText": "禮盒头盔",
- "headSpecialWinter2018WarriorNotes": "这个活泼的盒顶和蝴蝶结不仅适合于节日,还非常结实。增加 <%= str %> 点力量。2017-2018冬季限定装备。",
+ "headSpecialWinter2018WarriorNotes": "这个活泼的盒顶和蝴蝶结不仅适合于节日,还非常结实。增加<%= str %>点力量。2017-2018冬季限定装备。",
"headSpecialWinter2018MageText": "一閃一閃的高帽",
- "headSpecialWinter2018MageNotes": "准备好迎接一些额外的特殊魔法了吗?这个闪亮的帽子一定会增强你所有的咒语!增加 <%= per %> 点感知。2017-2018冬季限定装备。",
+ "headSpecialWinter2018MageNotes": "准备好迎接一些额外的特殊魔法了吗?这个闪亮的帽子一定会增强你所有的咒语!增加<%= per %>点感知。2017-2018冬季限定装备。",
"headSpecialWinter2018HealerText": "槲寄生兜帽",
- "headSpecialWinter2018HealerNotes": "这个花哨的兜帽将让你在愉快的节日感受享受温暖!增加<%= int %> 点智力。 2017-2018冬季限量版装备。",
+ "headSpecialWinter2018HealerNotes": "这个花哨的兜帽将让你在愉快的节日感受享受温暖!增加<%= int %>点智力。 2017-2018冬季限量版装备。",
"headSpecialSpring2018RogueText": "鸭嘴头盔",
- "headSpecialSpring2018RogueNotes": "嘎嘎!你的可爱隐藏了你的聪明和狡猾的本性。 增加<%= per %> 点感知。2018年春季限量版装备。",
+ "headSpecialSpring2018RogueNotes": "嘎嘎!你的可爱隐藏了你的聪明和狡猾的本性。 增加<%= per %>点感知。2018年春季限量版装备。",
"headSpecialSpring2018WarriorText": "光芒万丈头盔",
- "headSpecialSpring2018WarriorNotes": "这个头盔的亮度会闪晕附近的任何敌人! 增加<%= str %> 点力量。 2018年春季限量版装备。",
+ "headSpecialSpring2018WarriorNotes": "这个头盔的亮度会闪晕附近的任何敌人! 增加<%= str %>点力量。 2018年春季限量版装备。",
"headSpecialSpring2018MageText": "郁金香头盔",
- "headSpecialSpring2018MageNotes": "这个头盔上的漂亮的花瓣将授予你特殊的春天魔法。 增加<%= per %> 点感知。 2018年春季限量版装备。",
+ "headSpecialSpring2018MageNotes": "这个头盔上的漂亮的花瓣将授予你特殊的春天魔法。 增加<%= per %>点感知。 2018年春季限量版装备。",
"headSpecialSpring2018HealerText": "石榴石头饰",
- "headSpecialSpring2018HealerNotes": "这个头饰上的精美宝石会增强你的精神能量。 增加<%= int %> 点智力。 2018年春季限量版装备。",
+ "headSpecialSpring2018HealerNotes": "这个头饰上的精美宝石会增强你的精神能量。 增加<%= int %>点智力。 2018年春季限量版装备。",
"headSpecialSummer2018RogueText": "垂钓用遮阳帽",
"headSpecialSummer2018RogueNotes": "在水上烈日暴晒的环境里免于晒伤,为你带来舒适。尤其是如果你平时习惯于待在阴凉地方!增加<%= per %>点感知。2018年夏季限定装备。",
"headSpecialSummer2018WarriorText": "斗鱼开面盔",
@@ -1059,7 +1059,7 @@
"headSpecialSummer2018MageText": "狮子鱼脊冠",
"headSpecialSummer2018MageNotes": "向任何敢说你看起来“很好吃”的人投以哀怨的目光。增加<%= per %>点感知。2018年夏季限定装备。",
"headSpecialSummer2018HealerText": "人鱼帝王皇冠",
- "headSpecialSummer2018HealerNotes": "这顶带鳍的王冕以海蓝宝石点缀,象征著拥有人类、鱼类,还有兼具两者的生物的统治权!增加 <%= int %> 点智力。 2018年夏季限定版装备。",
+ "headSpecialSummer2018HealerNotes": "这顶带鳍的王冕以海蓝宝石点缀,象征著拥有人类、鱼类,还有兼具两者的生物的统治权!增加<%= int %>点智力。 2018年夏季限定版装备。",
"headSpecialFall2018RogueText": "两面派",
"headSpecialFall2018RogueNotes": "大多数人的内心挣扎都是不动声色。这张面具即是“一念成佛,一念成魔”之象征。还有一顶可爱的礼帽!增加<%= per %>点感知。2018年秋季限时装备。",
"headSpecialFall2018WarriorText": "牛头人面具",
@@ -1067,11 +1067,11 @@
"headSpecialFall2018MageText": "糖果商人的帽子",
"headSpecialFall2018MageNotes": "灌注过超强甜蜜魔法的尖尖帽。小心点,如果它湿了的话会变黏的!增加<%= per %>点感知。2018秋季限时装备。",
"headSpecialFall2018HealerText": "狼吞虎咽头盔",
- "headSpecialFall2018HealerNotes": "这顶头盔是由一种食肉植物所制成,它以能够制造僵尸和麻烦而闻名。要小心不要让它在您头上咀嚼。增加 <%= int %> 点智力。 2018年秋季限定版装备。",
- "headSpecialNye2018Text": "怪异派对帽",
- "headSpecialNye2018Notes": "恭喜您收到一顶怪异的派对庆生帽! 当新年钟声响起时,就自豪地戴上它吧! 没有属性加成。",
+ "headSpecialFall2018HealerNotes": "这顶头盔是由一种食肉植物所制成,它以能够制造僵尸和麻烦而闻名。要小心不要让它在您头上咀嚼。增加<%= int %>点智力。 2018年秋季限定版装备。",
+ "headSpecialNye2018Text": "怪异的派对帽子",
+ "headSpecialNye2018Notes": "你收到了一顶怪异的派对帽子!当新年钟声响起时,自豪地戴上这顶帽子吧!没有属性加成。",
"headSpecialWinter2019RogueText": "一品红圣诞头盔",
- "headSpecialWinter2019RogueNotes": "这顶枝繁叶茂的头盔将在冬季最黑暗的日子里带来最闪亮的红色,帮助您融入节庆的气氛! 增加 <%= per %> 点感知。 2018-2019冬季限定版装备。",
+ "headSpecialWinter2019RogueNotes": "这顶枝繁叶茂的头盔将在冬季最黑暗的日子里带来最闪亮的红色,帮助您融入节庆的气氛! 增加<%= per %>点感知。 2018-2019冬季限定版装备。",
"headSpecialWinter2019WarriorText": "冰河头盔",
"headSpecialWinter2019WarriorNotes": "战斗中时刻保持头脑冷静是非常重要的!这顶冰凉的盔能在任何敌人挑衅你的时候,保护你不被气昏头。增加<%= str %>点力量。2018—2019年冬季限定装备。",
"headSpecialWinter2019MageText": "烟花焰火",
@@ -1081,103 +1081,103 @@
"headSpecialGaymerxText": "彩虹战士头盔",
"headSpecialGaymerxNotes": "GaymerX是一个所有人都能参加的声援LGBTQIA人群的游戏集会,为了庆祝GaymerX大会的胜利举行,现推出这顶特别的彩虹头盔!",
"headMystery201402Text": "翼盔",
- "headMystery201402Notes": "这顶带翅膀的饰环使佩戴者风驰电掣!没有属性加成。2014年2月捐赠者物品。",
+ "headMystery201402Notes": "这顶带翅膀的饰环使佩戴者风驰电掣!没有属性加成。2014年2月订阅者物品。",
"headMystery201405Text": "精神之焰",
- "headMystery201405Notes": "烧掉拖延症!没有属性加成。2014年5月捐赠者物品。",
+ "headMystery201405Notes": "烧掉拖延症!没有属性加成。2014年5月订阅者物品。",
"headMystery201406Text": "触手王冠",
- "headMystery201406Notes": "这顶头盔的触手能从水中聚集魔力。没有属性加成。2014年6月捐赠者物品。",
+ "headMystery201406Notes": "这顶头盔的触手能从水中聚集魔力。没有属性加成。2014年6月订阅者物品。",
"headMystery201407Text": "海底探险家头盔",
- "headMystery201407Notes": "这顶头盔让探索海地变得易如反掌!同时它也让你看起来有点像瞪大了眼睛的鱼。非常复古哦!没有属性加成。2014年7月捐赠者物品。",
+ "headMystery201407Notes": "这顶头盔让探索海地变得易如反掌!同时它也让你看起来有点像瞪大了眼睛的鱼。非常复古哦!没有属性加成。2014年7月订阅者物品。",
"headMystery201408Text": "太阳王冠",
- "headMystery201408Notes": "这顶闪耀的王冠给它的佩戴者带来强大的意志力。没有属性加成。2014年8月捐赠者物品。",
+ "headMystery201408Notes": "这顶闪耀的王冠给它的佩戴者带来强大的意志力。没有属性加成。2014年8月订阅者物品。",
"headMystery201411Text": "运动铁盔",
- "headMystery201411Notes": "这顶传统帽子是在备受欢迎的Habitican运动的平衡球项目中佩戴的,这个项目的内容包括全副武装的你承诺保持工作和生活之间的平衡……在被角鹰兽追逐的时候!没有属性加成。2014年11月捐赠者物品。",
+ "headMystery201411Notes": "这顶传统帽子是在备受欢迎的Habitican运动的平衡球项目中佩戴的,这个项目的内容包括全副武装的你承诺保持工作和生活之间的平衡……在被角鹰兽追逐的时候!没有属性加成。2014年11月订阅者物品。",
"headMystery201412Text": "企鹅帽子",
"headMystery201412Notes": "谁是企鹅?没有属性加成。2014年12月订阅者物品。",
"headMystery201501Text": "繁星头盔",
- "headMystery201501Notes": "头盔上闪烁摇曳的星座指引着佩戴者的思绪向目标前进。没有属性加成。2015年1月捐赠者物品。",
+ "headMystery201501Notes": "头盔上闪烁摇曳的星座指引着佩戴者的思绪向目标前进。没有属性加成。2015年1月订阅者物品。",
"headMystery201505Text": "绿色骑士头盔",
"headMystery201505Notes": "铁盔上的羽饰骄傲地飘动着。没有属性加成。2015年5月网站订阅者物品。",
"headMystery201508Text": "猎豹款帽子",
- "headMystery201508Notes": "这个舒适的猎豹帽子看起来毛茸茸的!没有属性加成。2015年8月捐赠者专属物品。",
+ "headMystery201508Notes": "这个舒适的猎豹帽子看起来毛茸茸的!没有属性加成。2015年8月订阅者物品。",
"headMystery201509Text": "狼人面具",
- "headMystery201509Notes": "这是个面具吧?没有属性加成。2015年9月捐赠者的物品。",
+ "headMystery201509Notes": "这是个面具吧?没有属性加成。2015年9月订阅者物品。",
"headMystery201511Text": "树木王冠",
- "headMystery201511Notes": "数数这顶王冠上有多少个年轮。没有属性加成。2015年11月捐助者物品。",
+ "headMystery201511Notes": "数数这顶王冠上有多少个年轮。没有属性加成。2015年11月订阅者物品。",
"headMystery201512Text": "冬季火焰",
"headMystery201512Notes": "冰冷的火焰中透出最直白的智慧。没有属性加成。2015年12月订阅者物品。",
"headMystery201601Text": "决心之头盔",
"headMystery201601Notes": "保持坚定,勇敢的冠军!没有属性加成。2016年1月订阅者物品。",
"headMystery201602Text": "负心人头巾",
- "headMystery201602Notes": "对所有你的爱慕者隐藏你的身份。没有属性加成。2016年2月捐赠者物品。",
+ "headMystery201602Notes": "对所有你的爱慕者隐藏你的身份。没有属性加成。2016年2月订阅者物品。",
"headMystery201603Text": "幸运帽",
- "headMystery201603Notes": "这顶大礼帽有着神奇的好运魔力。没有属性加成。2016年3月捐赠者物品。",
+ "headMystery201603Notes": "这顶大礼帽有着神奇的好运魔力。没有属性加成。2016年3月订阅者物品。",
"headMystery201604Text": "鲜花王冠",
- "headMystery201604Notes": "这些编织的鲜花造就了惊人强大的头盔!没有属性加成。2016年4月捐赠者物品。",
+ "headMystery201604Notes": "这些编织的鲜花造就了惊人强大的头盔!没有属性加成。2016年4月订阅者物品。",
"headMystery201605Text": "吟游诗人帽子",
- "headMystery201605Notes": "七十六只龙领头大游行,一百一十只狮鹫近在眼前!没有属性加成。2016年5月捐赠者物品。",
+ "headMystery201605Notes": "七十六只龙领头大游行,一百一十只狮鹫近在眼前!没有属性加成。2016年5月订阅者物品。",
"headMystery201606Text": "海豹帽",
- "headMystery201606Notes": "当你融入嬉戏的海豹中,哼着海洋的曲调!没有属性加成。2016年6月捐赠者物品。",
+ "headMystery201606Notes": "当你融入嬉戏的海豹中,哼着海洋的曲调!没有属性加成。2016年6月订阅者物品。",
"headMystery201607Text": "海底盗贼头盔",
- "headMystery201607Notes": "从这个头盔中生长的海带有助于进行伪装。没有属性加成。2016年7月捐献者物品。",
+ "headMystery201607Notes": "从这个头盔中生长的海带有助于进行伪装。没有属性加成。2016年7月订阅者物品。",
"headMystery201608Text": "闪电头盔",
- "headMystery201608Notes": "这个噼啪作响的头盔导电!没有属性加成。2016年8月捐赠者物品。",
+ "headMystery201608Notes": "这个噼啪作响的头盔导电!没有属性加成。2016年8月订阅者物品。",
"headMystery201609Text": "奶牛帽",
- "headMystery201609Notes": "你再也不会想摘下这顶奶牛帽了。没有属性加成。2016年9月捐赠者物品。",
+ "headMystery201609Notes": "你再也不会想摘下这顶奶牛帽了。没有属性加成。2016年9月订阅者物品。",
"headMystery201610Text": "幽灵火焰",
- "headMystery201610Notes": "这些火焰将唤醒你灵魂的力量。没有属性加成。2016年10月捐赠者物品。",
+ "headMystery201610Notes": "这些火焰将唤醒你灵魂的力量。没有属性加成。2016年10月订阅者物品。",
"headMystery201611Text": "豪华盛宴帽",
- "headMystery201611Notes": "有了这顶羽毛装饰的帽子,你绝对是这次盛宴上最美之人。没有属性加成。2016年11月捐赠者物品。",
+ "headMystery201611Notes": "有了这顶羽毛装饰的帽子,你绝对是这次盛宴上最美之人。没有属性加成。2016年11月订阅者物品。",
"headMystery201612Text": "胡桃夹子头盔",
- "headMystery201612Notes": "这个即高又辉煌的头盔增加了魔法元素到你的假日服装!!没有属性加成。2016年12月捐赠者物品。",
+ "headMystery201612Notes": "这个即高又辉煌的头盔增加了魔法元素到你的假日服装!!没有属性加成。2016年12月订阅者物品。",
"headMystery201702Text": "负心人头巾",
- "headMystery201702Notes": "尽管这个面具会隐藏你的脸,但是这只会增加你的魅力!。没有属性加成。2017年2月捐赠者物品。",
+ "headMystery201702Notes": "尽管这个面具会隐藏你的脸,但是这只会增加你的魅力!。没有属性加成。2017年2月订阅者物品。",
"headMystery201703Text": "微光头盔",
- "headMystery201703Notes": "从角状头盔上反射来的柔和微光,能使最暴怒的敌人平静下来。没有属性加成。2017年3月捐赠者礼品。",
+ "headMystery201703Notes": "从角状头盔上反射来的柔和微光,能使最暴怒的敌人平静下来。没有属性加成。2017年3月订阅者物品。",
"headMystery201705Text": "羽毛斗士头盔",
- "headMystery201705Notes": "Habitica因为其威猛、生产力强的狮鹫战士而闻名天下!戴上这顶羽毛头盔,加入到这个受人尊敬的行列之中吧。没有属性加成。2017年5月捐赠者物品。",
+ "headMystery201705Notes": "Habitica因为其威猛、生产力强的狮鹫战士而闻名天下!戴上这顶羽毛头盔,加入到这个受人尊敬的行列之中吧。没有属性加成。2017年5月订阅者物品。",
"headMystery201707Text": "水母曼瑟头盔",
- "headMystery201707Notes": "对于任务,你需要额外的援助之手吗?这顶半透明水母头盔所带的触手恰好可以帮你一把!没有属性加成。2017年7月捐赠者物品。",
+ "headMystery201707Notes": "对于任务,你需要额外的援助之手吗?这顶半透明水母头盔所带的触手恰好可以帮你一把!没有属性加成。2017年7月订阅者物品。",
"headMystery201710Text": "英雄无敌头盔",
- "headMystery201710Notes": "这个头盔让你看起来很吓人。。。但他不会对你的深度感知有任何加成! 没有属性加成。2017年十月订阅者专享。",
+ "headMystery201710Notes": "这个头盔让你看起来很吓人。。。但他不会对你的深度感知有任何加成! 没有属性加成。2017年10月订阅者物品。",
"headMystery201712Text": "蜡烛术士王冠",
- "headMystery201712Notes": "這個王冠能夠為最黑的寒冬夜晚帶來光明和溫暖。没有属性加成。2017年十二月捐赠者物品。",
+ "headMystery201712Notes": "這個王冠能夠為最黑的寒冬夜晚帶來光明和溫暖。没有属性加成。2017年12月订阅者物品。",
"headMystery201802Text": "爱虫头盔",
- "headMystery201802Notes": "这顶头盔上的触须作为可爱的探测杆,探测附近的爱和支持的感受。没有属性加成。 2018年2月捐赠者物品。",
+ "headMystery201802Notes": "这顶头盔上的触须作为可爱的探测杆,探测附近的爱和支持的感受。没有属性加成。 2018年2月订阅者物品。",
"headMystery201803Text": "勇敢蜻蜓头饰",
- "headMystery201803Notes": "虽然它的外观非常具有装饰性,但你可以把翅膀放在这个头饰上以获得额外的升力!没有属性加成。2018年3月捐赠者物品。",
+ "headMystery201803Notes": "虽然它的外观非常具有装饰性,但你可以把翅膀放在这个头饰上以获得额外的升力!没有属性加成。2018年3月订阅者物品。",
"headMystery201805Text": "华丽孔雀头盔",
- "headMystery201805Notes": "这顶头盔将让你成为镇上最自豪最漂亮的(也可能是最吵闹的)的鸟。没有属性加成。 2018年5月捐赠者物品。",
+ "headMystery201805Notes": "这顶头盔将让你成为镇上最自豪最漂亮的(也可能是最吵闹的)的鸟。没有属性加成。 2018年5月订阅者物品。",
"headMystery201806Text": "安康鱼盔",
- "headMystery201806Notes": "盔顶上的小灯有催眠作用,能让所有海洋生物围绕在你身边。我们强烈呼吁你以善良的方式使用发光吸引生物的能力!没有属性加成。2018年6月会员赠品。",
+ "headMystery201806Notes": "盔顶上的小灯有催眠作用,能让所有海洋生物围绕在你身边。我们强烈呼吁你以善良的方式使用发光吸引生物的能力!没有属性加成。2018年6月订阅者物品。",
"headMystery201807Text": "大海蛇头盔",
- "headMystery201807Notes": "这顶头盔上坚韧的鱼鳞能保护您免于受到任何海洋中敌人的攻击。没有属性加成。 2018年7月订阅者专属装备。",
+ "headMystery201807Notes": "这顶头盔上坚韧的鱼鳞能保护您免于受到任何海洋中敌人的攻击。没有属性加成。 2018年7月订阅者物品。",
"headMystery201808Text": "熔岩巨龙披风",
- "headMystery201808Notes": "披风上那闪闪发亮的龙角能够在地底的洞穴中照亮您的路。没有属性加成。 2018年8月订阅者专属装备。",
+ "headMystery201808Notes": "披风上那闪闪发亮的龙角能够在地底的洞穴中照亮您的路。没有属性加成。 2018年8月订阅者物品。",
"headMystery201809Text": "秋季花朵皇冠",
- "headMystery201809Notes": "来自秋季温暖日子中的最后一朵花正是纪念此季节中的美丽事物之最佳信物。没有属性加成。 2018年9月订阅者专属装备。",
+ "headMystery201809Notes": "来自秋季温暖日子中的最后一朵花正是纪念此季节中的美丽事物之最佳信物。没有属性加成。 2018年9月订阅者物品。",
"headMystery201810Text": "黑暗森林头盔",
- "headMystery201810Notes": "如果您正在穿越一个幽灵般的地方,这顶头盔上发红光的眼睛一定能吓跑沿路中的敌人。没有属性加成。 2018年10月订阅者专属装备。",
+ "headMystery201810Notes": "如果您正在穿越一个幽灵般的地方,这顶头盔上发红光的眼睛一定能吓跑沿路中的敌人。没有属性加成。 2018年10月订阅者物品。",
"headMystery201811Text": "璀璨法师帽子",
- "headMystery201811Notes": "戴上这顶有羽毛的帽子后就算是在最华丽的巫师聚会中也能脱颖而出! 没有属性加成。 2018年11月订阅者专属装备。",
+ "headMystery201811Notes": "戴上这顶有羽毛的帽子后就算是在最华丽的巫师聚会中也能脱颖而出! 没有属性加成。 2018年11月订阅者物品。",
"headMystery201901Text": "北极星头盔",
- "headMystery201901Notes": "这头盔上闪闪发亮的钻石拥有从冬季极光中捕获到的神奇光线。没有属性加成。 2019年1月订阅者专属装备。",
+ "headMystery201901Notes": "这头盔上闪闪发亮的钻石拥有从冬季极光中捕获到的神奇光线。没有属性加成。 2019年1月订阅者物品。",
"headMystery301404Text": "华丽礼帽",
- "headMystery301404Notes": "上流社会佼佼者的华丽礼帽!3015年1月捐赠者物品。没有属性加成。",
+ "headMystery301404Notes": "上流社会佼佼者的华丽礼帽!3015年1月订阅者物品。没有属性加成。",
"headMystery301405Text": "基础礼帽",
- "headMystery301405Notes": "一顶基础礼帽,渴望能与华丽的头饰搭配。没有属性加成。3015年5月捐赠者物品。",
+ "headMystery301405Notes": "一顶基础礼帽,渴望能与华丽的头饰搭配。没有属性加成。3015年5月订阅者物品。",
"headMystery301703Text": "豪华盛宴帽",
- "headMystery301703Notes": "这顶帽子的羽毛是由普理女士精修学校为花式孔雀捐赠的。骄傲地带着它们吧!没有属性加成。3017年三月捐赠者礼品。",
+ "headMystery301703Notes": "这顶帽子的羽毛是由普理女士精修学校为花式孔雀捐赠的。骄傲地带着它们吧!没有属性加成。3017年3月订阅者物品。",
"headMystery301704Text": "鸡仔羽帽",
- "headMystery301704Notes": "有什么能比获得一跟鸡仔羽毛更让人开心的呢?没有属性加成。3017年4月捐赠者礼品。",
+ "headMystery301704Notes": "有什么能比获得一跟鸡仔羽毛更让人开心的呢?没有属性加成。3017年4月订阅者物品。",
"headArmoireLunarCrownText": "静月王冠",
- "headArmoireLunarCrownNotes": "这个王冠会增强你的生命力和感知能力,在满月时效果尤其明显。增加<%= con %>点体质以及<%= per %>点感知。魔法衣橱:治愈之月套装(3件中的第1件)。",
+ "headArmoireLunarCrownNotes": "这个王冠会增强你的生命力和感知能力,在满月时效果尤其明显。增加<%= con %>点体质和<%= per %>点感知。魔法衣橱:治愈之月套装(3件中的第1件)。",
"headArmoireRedHairbowText": "红色的蝴蝶结头饰",
"headArmoireRedHairbowNotes": "戴上这款红色蝴蝶结发饰,你将更有力,坚韧,还会变聪明哦!增加<%= str %>点力量,<%= con %>点体质,以及<%= int %>点智力。魔法衣橱:红色蝴蝶结发饰套装(2件中的第1件)。",
"headArmoireVioletFloppyHatText": "蓝紫色软盘帽",
"headArmoireVioletFloppyHatNotes": "这顶简单的帽子绣着许多咒语,使它拥有了愉快的紫色。增加感知<%= per %>点,智力<%= int %>点,还有体质<%= con %>点。魔法衣橱:独立装备。",
"headArmoireGladiatorHelmText": "角斗士头盔",
- "headArmoireGladiatorHelmNotes": "成为一个角斗士不仅要强壮,还要敏捷…增加<%= int %>点智力以及<%= per %>点感知。魔法衣橱:角斗士套装(3件中的第1件)。",
+ "headArmoireGladiatorHelmNotes": "成为一个角斗士不仅要强壮,还要敏捷…增加<%= int %>点智力和<%= per %>点感知。魔法衣橱:角斗士套装(3件中的第1件)。",
"headArmoireRancherHatText": "牧场主帽子",
"headArmoireRancherHatNotes": "戴上这顶神奇的帽子,拴住你的坐骑,套住你的宠物!增加<%= str %>点力量,<%= per %>点感知,<%= int %>点智力。魔法衣橱:牧场套装(3件中的第1件)。",
"headArmoireBlueHairbowText": "蓝色蝴蝶结发饰",
@@ -1189,13 +1189,13 @@
"headArmoireHornedIronHelmText": "铁角头盔",
"headArmoireHornedIronHelmNotes": "纯钢打造,坚不可摧。这件铁角头盔几乎无法被打破。增加<%= con %>点体质和<%= str %>点力量。魔法衣橱:铁角套装(3件中的第1件)。",
"headArmoireYellowHairbowText": "黄色蝴蝶结发饰",
- "headArmoireYellowHairbowNotes": "戴上这款黄色蝴蝶结头饰,你将变得敏锐、坚强以及聪明。提升感知,力量和智力各<%= attrs %>点。魔法衣橱:黄色蝴蝶结发饰套装(2件中的第1件)。",
+ "headArmoireYellowHairbowNotes": "戴上这款黄色蝴蝶结头饰,你将变得敏锐、坚强以及聪明。增加感知、力量和智力各<%= attrs %>点。魔法衣橱:黄色蝴蝶结发饰套装(2件中的第1件)。",
"headArmoireRedFloppyHatText": "松软的红帽子",
- "headArmoireRedFloppyHatNotes": "许多咒术缝进了这顶简约的帽子里,让它呈现出闪闪发亮的红色。增加体质、智力、感知各 <%= attrs %> 点。 来自魔法衣橱:红家居服(3件中的第1件)。",
+ "headArmoireRedFloppyHatNotes": "许多咒术缝进了这顶简约的帽子里,让它呈现出闪闪发亮的红色。增加体质、智力和感知各<%= attrs %>点。 来自魔法衣橱:红家居服(3件中的第1件)。",
"headArmoirePlagueDoctorHatText": "瘟疫医生帽",
"headArmoirePlagueDoctorHatNotes": "瘟疫拖延症主治医生所穿的帽子。增加<%= str %>点力量,<%= int %>点智力,还有<%= con %>点体质。魔法衣橱:瘟疫医生系列(3件中的第1件)。",
"headArmoireBlackCatText": "黑猫帽子",
- "headArmoireBlackCatNotes": "这顶黑帽子在……不仅发出呼噜声,还在翘尾巴,而且还呼吸?对,你的头上顶了一只熟睡的猫咪。增加<%= attrs %>点智力和体质。魔法衣橱:独立装备。",
+ "headArmoireBlackCatNotes": "这顶黑帽子在……不仅发出呼噜声,还在翘尾巴,而且还呼吸?对,你的头上顶了一只熟睡的猫咪。增加智力和感知各<%= attrs %>点。魔法衣橱:独立装备。",
"headArmoireOrangeCatText": "橙猫帽子",
"headArmoireOrangeCatNotes": "这顶橙色帽子在……发出呼噜声,还在翘尾巴,还在呼吸?对,你的头上顶了一只熟睡的猫咪。增加力量和体质各 <%= attrs %>点。魔法衣橱:独立装备。",
"headArmoireBlueFloppyHatText": "松软的蓝帽子",
@@ -1203,25 +1203,25 @@
"headArmoireShepherdHeaddressText": "牧羊人头饰",
"headArmoireShepherdHeaddressNotes": "你的狮鹫有时喜欢咀嚼这个头饰,它让你看起来更聪明。增加智力 <%= int %> 点。魔法衣橱:牧羊人套装(3件中的第3件)。",
"headArmoireCrystalCrescentHatText": "晶月帽",
- "headArmoireCrystalCrescentHatNotes": "这个帽子随着月之盈亏变大变小。增加智力和感知各 <%= attrs %> 点。魔法衣橱:晶月套装(3件中的第1件)。",
+ "headArmoireCrystalCrescentHatNotes": "这个帽子随着月之盈亏变大变小。增加智力和感知各<%= attrs %>点。魔法衣橱:晶月套装(3件中的第1件)。",
"headArmoireDragonTamerHelmText": "驯龙头盔",
"headArmoireDragonTamerHelmNotes": "你看起来就是一只龙。完美的伪装…增加<%= int %>点智力。魔法衣橱:驯龙套装(3件中的第1件)。",
"headArmoireBarristerWigText": "大律师假发",
"headArmoireBarristerWigNotes": "有弹性的假发能吓退最凶猛的敌人!增加力量 <%= str %>点。魔法衣橱:大律师套装(3件中的第1件)。",
"headArmoireJesterCapText": "小丑帽",
- "headArmoireJesterCapNotes": "帽子上的铃铛让对手分心,它仅帮你集中注意力。增加感知 <%= per %> 点。魔法衣橱:小丑套装(3件中的第1件)。",
+ "headArmoireJesterCapNotes": "帽子上的铃铛让对手分心,它仅帮你集中注意力。增加<%= per %>点感知。魔法衣橱:小丑套装(3件中的第1件)。",
"headArmoireMinerHelmetText": "采矿者头盔",
- "headArmoireMinerHelmetNotes": "保护你的头不被掉下的任务砸伤!增加智力 <%= int %>点。魔法衣橱:采矿者套装(3件中的第1件)。",
+ "headArmoireMinerHelmetNotes": "保护你的头不被掉下的任务砸伤!增加<%= int %>点智力。魔法衣橱:采矿者套装(3件中的第1件)。",
"headArmoireBasicArcherCapText": "基础射手帽",
"headArmoireBasicArcherCapNotes": "只有有了一个活泼的帽子,一个射手才是完整的!增加<%= per %>点感知。魔法衣橱:基础射手套装(3件中的第3件)。",
"headArmoireGraduateCapText": "毕业生帽子",
- "headArmoireGraduateCapNotes": "恭喜恭喜!你深邃的思想为你赢得了这顶思考帽。增加智力<%= int %> 点。魔法衣橱:毕业生套装(3件中的第3件)。",
+ "headArmoireGraduateCapNotes": "恭喜恭喜!你深邃的思想为你赢得了这顶思考帽。增加<%= int %>点智力。魔法衣橱:毕业生套装(3件中的第3件)。",
"headArmoireGreenFloppyHatText": "松软的绿色帽子",
- "headArmoireGreenFloppyHatNotes": "很多咒术被织进了这顶简约的帽子里,让它呈现出华丽的绿色。增加体质、智力、感知各 <%= attrs %> 点。魔法衣橱:绿家居服(3件中的第1件)。",
+ "headArmoireGreenFloppyHatNotes": "很多咒术被织进了这顶简约的帽子里,让它呈现出华丽的绿色。增加体质、智力和感知各<%= attrs %>点。魔法衣橱:绿家居服(3件中的第1件)。",
"headArmoireCannoneerBandannaText": "炮手头巾",
- "headArmoireCannoneerBandannaNotes": "它对一个炮手来说如同生命!提升智力和感知各<%= attrs %>点。魔法衣橱:炮手套装(3件中的第3件)。",
+ "headArmoireCannoneerBandannaNotes": "它对一个炮手来说如同生命!增加智力和感知各<%= attrs %>点。魔法衣橱:炮手套装(3件中的第3件)。",
"headArmoireFalconerCapText": "猎鹰者帽",
- "headArmoireFalconerCapNotes": "这顶时髦的帽子让你更好地理解鸟的捕猎习性。提升智力<%= int %>点。魔法衣橱:猎鹰者套装(3件中的第2件)。",
+ "headArmoireFalconerCapNotes": "这顶时髦的帽子让你更好地理解鸟的捕猎习性。增加<%= int %>点智力。魔法衣橱:猎鹰者套装(3件中的第2件)。",
"headArmoireVermilionArcherHelmText": "朱红射手头盔",
"headArmoireVermilionArcherHelmNotes": "头盔中的魔法红宝石能够让你使用激光聚焦轻易地瞄准!增加<%= per %>点感知。魔法衣橱:朱红射手套装(3件中的第3件)。",
"headArmoireOgreMaskText": "食人魔面具",
@@ -1229,21 +1229,21 @@
"headArmoireIronBlueArcherHelmText": "蓝铁弓箭手头盔",
"headArmoireIronBlueArcherHelmNotes": "觉得自己太固执?不,只是对你的保护太到位了。增加<%= con %>点体质。魔法衣橱:钢铁弓箭手套装(3件中的第1件)。",
"headArmoireWoodElfHelmText": "木精灵头盔",
- "headArmoireWoodElfHelmNotes": "这件叶子做的头盔也许看着纤弱,但它是可以在恶劣天气和危险的敌人面前保护你的!真的!!增加 <%= con %> 点体质。魔法衣橱:森林精灵套装(3件中的第1件)。",
+ "headArmoireWoodElfHelmNotes": "这件叶子做的头盔也许看着纤弱,但它是可以在恶劣天气和危险的敌人面前保护你的!真的!!增加<%= con %>点体质。魔法衣橱:森林精灵套装(3件中的第1件)。",
"headArmoireRamHeaddressText": "公羊头饰",
"headArmoireRamHeaddressNotes": "这顶精美的头盔被塑造成了公羊头的模样。增加<%= con %>点体质和<%= per %>点感知。魔法衣橱:野蛮公羊套装(3件中的第1件)。",
"headArmoireCrownOfHeartsText": "心之王冠",
- "headArmoireCrownOfHeartsNotes": "这顶玫瑰红的王冠不只是吸引眼球!它还会在你面对困难的任务时坚定你的心。增加力量 <%= str %>点。魔法衣橱:心之女王套装(3件中的第1件)。",
+ "headArmoireCrownOfHeartsNotes": "这顶玫瑰红的王冠不只是吸引眼球!它还会在你面对困难的任务时坚定你的心。增加<%= str %>点力量。魔法衣橱:心之女王套装(3件中的第1件)。",
"headArmoireMushroomDruidCapText": "德鲁伊蘑菇帽",
- "headArmoireMushroomDruidCapNotes": "这顶在迷雾森林深处获得的帽子能够让穿戴者了解关于药用植物的知识。增加 <%= int %> 点智力和 <%= str %> 点力量。魔法衣橱:德鲁伊蘑菇套装(3件中的第1件)。",
+ "headArmoireMushroomDruidCapNotes": "这顶在迷雾森林深处获得的帽子能够让穿戴者了解关于药用植物的知识。增加<%= int %>点智力和<%= str %>点力量。魔法衣橱:德鲁伊蘑菇套装(3件中的第1件)。",
"headArmoireMerchantChaperonText": "商人伴侣",
"headArmoireMerchantChaperonNotes": "这顶多功能羊毛皮面帽绝对会让你成为市场中最时髦的商人!增加感知和智力各<%= attrs %>点。魔法衣橱:商人套装(3件中的第1件物品)。",
"headArmoireVikingHelmText": "维京头盔",
- "headArmoireVikingHelmNotes": "这件头盔上没有飞翼或犄角装饰:因为那样太容易被敌人抓住了!增加力量<%= str %>点,感知<%= per %>点。魔法衣橱:维京套装(3件中的第2件)。",
+ "headArmoireVikingHelmNotes": "这件头盔上没有飞翼或犄角装饰:因为那样太容易被敌人抓住了!增加<%= str %>点力量和<%= per %>点感知。魔法衣橱:维京套装(3件中的第2件)。",
"headArmoireSwanFeatherCrownText": "天鹅毛皇冠",
- "headArmoireSwanFeatherCrownNotes": "这件头冠既可爱又轻巧,仿佛似天鹅的羽毛!增加智力<%= int %>点。魔法衣橱:天鹅舞者套装(3件中的第1件)。",
+ "headArmoireSwanFeatherCrownNotes": "这件头冠既可爱又轻巧,仿佛似天鹅的羽毛!增加<%= int %>点智力。魔法衣橱:天鹅舞者套装(3件中的第1件)。",
"headArmoireAntiProcrastinationHelmText": "抗拖延症头盔",
- "headArmoireAntiProcrastinationHelmNotes": "这件强韧的铁制头盔能让你在战斗中保持健康、快乐以及高生产力!增加感知<%= per %>点。魔法衣橱:抗拖延症套装(3件中的第1件)。",
+ "headArmoireAntiProcrastinationHelmNotes": "这件强韧的铁制头盔能让你在战斗中保持健康、快乐以及高生产力!增加<%= per %>点感知。魔法衣橱:抗拖延症套装(3件中的第1件)。",
"headArmoireCandlestickMakerHatText": "烛台制造者帽子",
"headArmoireCandlestickMakerHatNotes": "一顶漂亮的帽子使每一份工作都更有趣,而烛光也不例外!增加感知和智力各<%= attrs %>点。魔法衣橱:烛台制造者套装(3件中的第2件)。",
"headArmoireLamplightersTopHatText": "燃燈者的高顶礼帽",
@@ -1265,59 +1265,59 @@
"headArmoirePiraticalPrincessHeaddressText": "海盗公主头饰",
"headArmoirePiraticalPrincessHeaddressNotes": "自古以来经验老到的海盗皆是以拥有高档的头饰而闻名的!增加感知、智力各 <%= attrs %> 点。魔法衣橱:海盗公主(4件中的第1件)。",
"headArmoireJeweledArcherHelmText": "宝石弓手头盔",
- "headArmoireJeweledArcherHelmNotes": "这顶头盔不仅看起来非常华丽,它还格外地轻盈和坚固。增加 <%= int %> 点智力。魔法衣橱:宝石弓手(3件中的第1件)。",
+ "headArmoireJeweledArcherHelmNotes": "这顶头盔不仅看起来非常华丽,它还格外地轻盈和坚固。增加<%= int %>点智力。魔法衣橱:宝石弓手(3件中的第1件)。",
"headArmoireVeilOfSpadesText": "黑桃面纱",
- "headArmoireVeilOfSpadesNotes": "一件朦胧而神秘的面纱,可以增加您的潜行能力。增加 <%= per %> 点感知。魔法衣橱:黑桃王牌(3件中的第1件)。",
+ "headArmoireVeilOfSpadesNotes": "一件朦胧而神秘的面纱,可以增加您的潜行能力。增加<%= per %>点感知。魔法衣橱:黑桃王牌(3件中的第1件)。",
"offhand": "副手物品",
"offhandCapitalized": "副手物品",
"shieldBase0Text": "没有副手装备",
"shieldBase0Notes": "没有盾牌或副手武器。",
"shieldWarrior1Text": "木盾",
- "shieldWarrior1Notes": "厚木头制的圆盾。增加<%= con %>体质。",
+ "shieldWarrior1Notes": "厚木头制的圆盾。增加<%= con %>点体质。",
"shieldWarrior2Text": "圆盾",
- "shieldWarrior2Notes": "轻便而坚实,能立刻用于防护。提高<%= con %>点体质。",
+ "shieldWarrior2Notes": "轻便而坚实,能立刻用于防护。增加<%= con %>点体质。",
"shieldWarrior3Text": "强化盾",
- "shieldWarrior3Notes": "木制,以金属带辅之。提高<%= con %>点体质。",
+ "shieldWarrior3Notes": "木制,以金属带辅之。增加<%= con %>点体质。",
"shieldWarrior4Text": "红盾",
- "shieldWarrior4Notes": "来自突发火焰的责难。提高<%= con %>点体质。",
+ "shieldWarrior4Notes": "来自突发火焰的责难。增加<%= con %>点体质。",
"shieldWarrior5Text": "金盾",
- "shieldWarrior5Notes": "先锋的闪耀徽章。提高<%= con %>点体质。",
+ "shieldWarrior5Notes": "先锋的闪耀徽章。增加<%= con %>点体质。",
"shieldHealer1Text": "医疗圆盾",
- "shieldHealer1Notes": "便于解除并腾出一只手包扎。提高<%= con %>点体质。",
+ "shieldHealer1Notes": "便于解除并腾出一只手包扎。增加<%= con %>点体质。",
"shieldHealer2Text": "鸢盾",
- "shieldHealer2Notes": "带有治疗标志的锥形盾牌。提高<%= con %>点体质。",
+ "shieldHealer2Notes": "带有治疗标志的锥形盾牌。增加<%= con %>点体质。",
"shieldHealer3Text": "防护者盾",
- "shieldHealer3Notes": "防护骑士的传统盾牌。提高<%= con %>点体质。",
+ "shieldHealer3Notes": "防护骑士的传统盾牌。增加<%= con %>点体质。",
"shieldHealer4Text": "救世主之盾",
- "shieldHealer4Notes": "能制止针对周遭无辜民众的攻击,也能阻挡针对自己的攻击。提高<%= con %>点体质。",
+ "shieldHealer4Notes": "能制止针对周遭无辜民众的攻击,也能阻挡针对自己的攻击。增加<%= con %>点体质。",
"shieldHealer5Text": "皇家盾牌",
- "shieldHealer5Notes": "授予对保家卫国做出最大贡献的人们。提高<%= con %>点体质。",
+ "shieldHealer5Notes": "授予对保家卫国做出最大贡献的人们。增加<%= con %>点体质。",
"shieldSpecial0Text": "苦难之颅",
- "shieldSpecial0Notes": "看透死亡的面纱,以阴间的惨象使敌人战栗。提高 <%= per %>点感知。",
+ "shieldSpecial0Notes": "看透死亡的面纱,以阴间的惨象使敌人战栗。增加<%= per %>点感知。",
"shieldSpecial1Text": "水晶盾",
- "shieldSpecial1Notes": "既能粉碎利箭,也能偏转中伤者的信口雌黄。所有属性提高<%= attrs %>。",
+ "shieldSpecial1Notes": "既能粉碎利箭,也能偏转中伤者的信口雌黄。增加全属性<%= attrs %>点。",
"shieldSpecialTakeThisText": "Take This之盾",
- "shieldSpecialTakeThisNotes": "这面盾是通过参与“Take This”赞助的挑战而获得的。祝贺你!所有属性提升<%= attrs %>。",
+ "shieldSpecialTakeThisNotes": "这面盾是通过参与“Take This”赞助的挑战而获得的。祝贺你!增加全属性<%= attrs %>点。",
"shieldSpecialGoldenknightText": "马斯泰因的碎石流星锤",
"shieldSpecialGoldenknightNotes": "怪物统统捣烂!增加体质和感知各<%= attrs %>点。",
"shieldSpecialMoonpearlShieldText": "玉轮明珠盾",
"shieldSpecialMoonpearlShieldNotes": "专为快速游泳,以及一些防御工作设计。增加<%= con %>点体质。",
"shieldSpecialMammothRiderHornText": "猛犸骑士角",
- "shieldSpecialMammothRiderHornNotes": "每次触碰这巨大的玫瑰石英角,你都会获得,强大的,魔法般的,力量!增加力量<%= str %>点。",
+ "shieldSpecialMammothRiderHornNotes": "每次触碰这巨大的玫瑰石英角,你都会获得,强大的,魔法般的,力量!增加<%= str %>点力量。",
"shieldSpecialDiamondStaveText": "钻石棍",
- "shieldSpecialDiamondStaveNotes": "这根价值连城的棍子有神奇的力量!增加智力<%= int %>点。",
+ "shieldSpecialDiamondStaveNotes": "这根价值连城的棍子有神奇的力量!增加<%= int %>点智力。",
"shieldSpecialRoguishRainbowMessageText": "俏皮彩虹信使兜帽",
- "shieldSpecialRoguishRainbowMessageNotes": "这个闪亮的信封承载了Habitica居民的鼓励,以及能帮你加速完成任务的一点魔法力量!增加智力<%= int %>点。",
+ "shieldSpecialRoguishRainbowMessageNotes": "这个闪亮的信封承载了Habitica居民的鼓励,以及能帮你加速完成任务的一点魔法力量!增加<%= int %>点智力。",
"shieldSpecialLootBagText": "战利品包",
- "shieldSpecialLootBagNotes": "这个背包是储藏你从大家意想不到的任务中顺来的赃物的绝佳选择!增加力量<%= str %>点。",
+ "shieldSpecialLootBagNotes": "这个背包是储藏你从大家意想不到的任务中顺来的赃物的绝佳选择!增加<%= str %>点力量。",
"shieldSpecialWintryMirrorText": "冬天的镜子",
"shieldSpecialWintryMirrorNotes": "还有更好的方法能欣赏你冬日的妆容?提高<%= int %>点智力。",
"shieldSpecialWakizashiText": "胁差",
"shieldSpecialWakizashiNotes": "这把短剑是你与每日任务近战的完美之选,增加<%= con %>点体质。",
"shieldSpecialYetiText": "雪人驯化盾",
- "shieldSpecialYetiNotes": "这块盾牌映射着雪光。提高 <%= con %>点体质。2013-2014冬季限定版装备。",
+ "shieldSpecialYetiNotes": "这块盾牌映射着雪光。增加<%= con %>点体质。2013-2014冬季限定版装备。",
"shieldSpecialSnowflakeText": "雪花之盾",
- "shieldSpecialSnowflakeNotes": "每一块盾牌都是独一无二的。提高 <%= con %>点体质。2013-2014冬季限定版装备。",
+ "shieldSpecialSnowflakeNotes": "每一块盾牌都是独一无二的。增加<%= con %>点体质。2013-2014冬季限定版装备。",
"shieldSpecialSpringRogueText": "钩爪",
"shieldSpecialSpringRogueNotes": "用来攀爬高楼的装备,当然也可以用来抓烂地毯。增加<%= str %>点力量。2014年春季限量版装备。",
"shieldSpecialSpringWarriorText": "蛋壳盾",
@@ -1325,9 +1325,9 @@
"shieldSpecialSpringHealerText": "终极保护的吱吱球",
"shieldSpecialSpringHealerNotes": "在战斗中释放出令人讨厌的持续不断的吱吱声来驱赶敌人。增加<%= con %>点体质。2014年春季限定版装备。",
"shieldSpecialSummerRogueText": "海盗弯刀",
- "shieldSpecialSummerRogueNotes": "退散吧!你将让那些日常任务自取灭亡 !增强力量<%= str %>点。限量版2014夏季装备。",
+ "shieldSpecialSummerRogueNotes": "退散吧!你将让那些日常任务自取灭亡 !增加<%= str %>点力量。限量版2014夏季装备。",
"shieldSpecialSummerWarriorText": "浮木盾",
- "shieldSpecialSummerWarriorNotes": "由沉船的木头制成,就算最困难的日常任务也能克服。提升体质 <%= con %>。2014年夏季限量版装备。",
+ "shieldSpecialSummerWarriorNotes": "由沉船的木头制成,就算最困难的日常任务也能克服。增加<%= con %>点体质。2014年夏季限量版装备。",
"shieldSpecialSummerHealerText": "浅滩盾",
"shieldSpecialSummerHealerNotes": "面对这块闪亮的盾牌,没人敢攻击珊瑚礁!增加<%= con %>点体质。2014年夏季限定版装备。",
"shieldSpecialFallRogueText": "银质十字架",
@@ -1337,19 +1337,19 @@
"shieldSpecialFallHealerText": "宝石盾",
"shieldSpecialFallHealerNotes": "这块闪亮的盾牌被发掘自一座古墓。增加<%= con %>点体质。2014秋季限定版装备。",
"shieldSpecialWinter2015RogueText": "冰刺",
- "shieldSpecialWinter2015RogueNotes": "你刚刚真的,肯定,绝对从地上拾取了这些装备。提升力量<%= str %>。2014-2015 冬日限定版装备。",
+ "shieldSpecialWinter2015RogueNotes": "你刚刚真的,肯定,绝对从地上拾取了这些装备。增加<%= str %>点力量。2014-2015 冬日限定版装备。",
"shieldSpecialWinter2015WarriorText": "橡皮糖盾",
"shieldSpecialWinter2015WarriorNotes": "这块看起来甜蜜蜜的盾牌其实是由富有营养的凝胶蔬菜制成的。增加<%= con %>点体质。2014-2015冬季限定版装备。",
"shieldSpecialWinter2015HealerText": "抚慰之盾",
"shieldSpecialWinter2015HealerNotes": "这块盾牌偏转了刺骨的寒风。增加<%= con %>点体质。2014-2015限定版装备。",
"shieldSpecialSpring2015RogueText": "霹雳爆破管",
- "shieldSpecialSpring2015RogueNotes": "别让这些声音愚弄你 - 这些炸药威力巨大。 增加力量 <%= str %> 点。2015年限量版弹簧装置套装。",
+ "shieldSpecialSpring2015RogueNotes": "别让这些声音愚弄你 - 这些炸药威力巨大。 增加<%= str %>点力量。2015年限量版弹簧装置套装。",
"shieldSpecialSpring2015WarriorText": "菜盘子铁饼",
- "shieldSpecialSpring2015WarriorNotes": "向你的敌人掷去……或者只是单纯地拿着它,因为到了晚饭时间它就会装满好吃的粗磨粉狗粮啦。提高<%= con %>点体质。2015春季限定版装备。",
+ "shieldSpecialSpring2015WarriorNotes": "向你的敌人掷去……或者只是单纯地拿着它,因为到了晚饭时间它就会装满好吃的粗磨粉狗粮啦。增加<%= con %>点体质。2015春季限定版装备。",
"shieldSpecialSpring2015HealerText": "印花枕头",
- "shieldSpecialSpring2015HealerNotes": "你可以把头靠在这个软软的枕头上,也可以用你可怕的爪子和它玩摔跤。嗷呜!提高<%= con %>点体质。2015春季限定版装备。",
+ "shieldSpecialSpring2015HealerNotes": "你可以把头靠在这个软软的枕头上,也可以用你可怕的爪子和它玩摔跤。嗷呜!增加<%= con %>点体质。2015春季限定版装备。",
"shieldSpecialSummer2015RogueText": "炽烈珊瑚",
- "shieldSpecialSummer2015RogueNotes": "这个是烈焰珊瑚的分支装备,它拥有在水中散播毒液的能力。提高<%= str %>点力量。2015年夏季限量装备。",
+ "shieldSpecialSummer2015RogueNotes": "这个是烈焰珊瑚的分支装备,它拥有在水中散播毒液的能力。增加<%= str %>点力量。2015年夏季限量装备。",
"shieldSpecialSummer2015WarriorText": "太阳鱼盾",
"shieldSpecialSummer2015WarriorNotes": "拖延之国的工匠们使用深海金属雕琢而成,这面盾牌看上去像沙滩和大海一样闪光。增加<%= con %>点体质。2015年夏季限量版装备。",
"shieldSpecialSummer2015HealerText": "胶面盾",
@@ -1367,15 +1367,15 @@
"shieldSpecialWinter2016HealerText": "像素礼物",
"shieldSpecialWinter2016HealerNotes": "快拆开它快拆开它快拆开他!重要的事情说三遍!增加<%= con %>点体质。2015-2016冬季限定版装备。",
"shieldSpecialSpring2016RogueText": "烈焰流星锤",
- "shieldSpecialSpring2016RogueNotes": "你精通了锤球、棍棒和小刀。现在你提高到杂耍火焰!嗷呜!增加 <%= str %>点力量。2016年春季限定版装备。",
+ "shieldSpecialSpring2016RogueNotes": "你精通了锤球、棍棒和小刀。现在你提高到杂耍火焰!嗷呜!增加<%= str %>点力量。2016年春季限定版装备。",
"shieldSpecialSpring2016WarriorText": "奶酪轮",
"shieldSpecialSpring2016WarriorNotes": "你顶着恶魔的圈套得到了这个增加防御的食物。增加<%= con %>点体质。2016年春季限量版装备。",
"shieldSpecialSpring2016HealerText": "花盾",
"shieldSpecialSpring2016HealerNotes": "愚人节宣告这个小盾将阻挡闪亮的种子。不要相信他。增加<%= con %>点体质。2016年春季限定版装备。",
"shieldSpecialSummer2016RogueText": "电动推杆",
- "shieldSpecialSummer2016RogueNotes": "那些与你战斗的人们将要体验到一次震惊的意外... 提高 <%= str %>点力量。2016夏季限量版装备。",
+ "shieldSpecialSummer2016RogueNotes": "那些与你战斗的人们将要体验到一次震惊的意外... 增加<%= str %>点力量。2016夏季限量版装备。",
"shieldSpecialSummer2016WarriorText": "鲨鱼的牙齿",
- "shieldSpecialSummer2016WarriorNotes": "用这件齿盾撕咬那些艰巨的任务吧!增强体质 <%= con %>点。2016年限定版夏季装备。",
+ "shieldSpecialSummer2016WarriorNotes": "用这件齿盾撕咬那些艰巨的任务吧!增加<%= con %>点体质。2016年限定版夏季装备。",
"shieldSpecialSummer2016HealerText": "海星盾",
"shieldSpecialSummer2016HealerNotes": "有时错误的呼唤一个海星盾。增加<%= con %>点体质。2016年夏季限量版装备。",
"shieldSpecialFall2016RogueText": "蛛咬匕首",
@@ -1385,11 +1385,11 @@
"shieldSpecialFall2016HealerText": "美杜莎之盾",
"shieldSpecialFall2016HealerNotes": "不要欣赏你自己的倒影。增加<%= con %>点体质。限量版2016年秋季装备。",
"shieldSpecialWinter2017RogueText": "冰斧",
- "shieldSpecialWinter2017RogueNotes": "这是一件攻防兼具,甚至能抵挡雪崩的斧头!增加力量<%= str %>点。2016-2017冬季限量版装备。",
+ "shieldSpecialWinter2017RogueNotes": "这是一件攻防兼具,甚至能抵挡雪崩的斧头!增加<%= str %>点力量。2016-2017冬季限量版装备。",
"shieldSpecialWinter2017WarriorText": "冰球盾",
- "shieldSpecialWinter2017WarriorNotes": "用巨大的雪球做成,这盾牌真能经得起相当大的打击。增加体质<%= con %>点。2016-2017冬季限量版装备。",
+ "shieldSpecialWinter2017WarriorNotes": "用巨大的雪球做成,这盾牌真能经得起相当大的打击。增加<%= con %>点体质。2016-2017冬季限量版装备。",
"shieldSpecialWinter2017HealerText": "糖果盾",
- "shieldSpecialWinter2017HealerNotes": "这件纤维装备能帮你抵挡甚至脾气最坏的任务怪物!增加体质<%= con %>点。2016-2017冬季限量版装备。",
+ "shieldSpecialWinter2017HealerNotes": "这件纤维装备能帮你抵挡甚至脾气最坏的任务怪物!增加<%= con %>点体质。2016-2017冬季限量版装备。",
"shieldSpecialSpring2017RogueText": "萝卜刀",
"shieldSpecialSpring2017RogueNotes": "这把利刃不仅能快速完成任务工作,而且也能非常方便地切菜!真好吃!增加<%= str %>点力量。2017年春季限定装备。",
"shieldSpecialSpring2017WarriorText": "纺纱护盾",
@@ -1397,79 +1397,79 @@
"shieldSpecialSpring2017HealerText": "编篮护盾",
"shieldSpecialSpring2017HealerNotes": "既能提供保护,也很方便让你存放许多恢复药剂和装备。增加<%= con %>点体质。2017年春季限定装备。",
"shieldSpecialSummer2017RogueText": "海龙鳍",
- "shieldSpecialSummer2017RogueNotes": "这些鳍拥有着锋利的边缘。增加体质<%= str %>点。2017夏季限定装备。",
+ "shieldSpecialSummer2017RogueNotes": "这些鳍拥有着锋利的边缘。增加<%= str %>点力量。2017夏季限定装备。",
"shieldSpecialSummer2017WarriorText": "贝壳盾",
"shieldSpecialSummer2017WarriorNotes": "你刚刚发现的这个盾牌既美观又具有防御性!增加<%= con %>点体质。2017夏季限定装备。",
"shieldSpecialSummer2017HealerText": "牡蛎盾",
- "shieldSpecialSummer2017HealerNotes": "这只神奇的牡蛎不停为你带来珍珠和保护。提升体质<%= con %>。2017夏季限量装备。",
+ "shieldSpecialSummer2017HealerNotes": "这只神奇的牡蛎不停为你带来珍珠和保护。增加<%= con %>点体质。2017夏季限量装备。",
"shieldSpecialFall2017RogueText": "苹果蜜饯权杖",
- "shieldSpecialFall2017RogueNotes": "用甜蜜击败你的敌人吧!增加<%= str %>力量。2017秋季限定装备。",
+ "shieldSpecialFall2017RogueNotes": "用甜蜜击败你的敌人吧!增加<%= str %>点力量。2017秋季限定装备。",
"shieldSpecialFall2017WarriorText": "玉米糖盾",
- "shieldSpecialFall2017WarriorNotes": "这个糖果护盾有强大的保护力量,所以可不要因为嘴馋而去咬它哦!\n增加<%= con %>点体质。2017秋季限定装备。",
+ "shieldSpecialFall2017WarriorNotes": "这个糖果护盾有强大的保护力量,所以可不要因为嘴馋而去咬它哦!增加<%= con %>点体质。2017秋季限定装备。",
"shieldSpecialFall2017HealerText": "闹鬼的小球",
"shieldSpecialFall2017HealerNotes": "这个可爱的小球偶尔会发出尖叫声。我们深表歉意因为我们也没办法调查处切确原因。但它看起来确实很漂亮!增加<%= con %>体质。2017秋季限定装备。",
"shieldSpecialWinter2018RogueText": "薄荷钩",
- "shieldSpecialWinter2018RogueNotes": "此装备极为适合用于攀爬围墙或利用挂钩上甜美多汁的糖果来分散敌人的注意力。增加 <%= str %> 点力量。 2017-2018冬季限定版装备。",
+ "shieldSpecialWinter2018RogueNotes": "此装备极为适合用于攀爬围墙或利用挂钩上甜美多汁的糖果来分散敌人的注意力。增加<%= str %>点力量。 2017-2018冬季限定版装备。",
"shieldSpecialWinter2018WarriorText": "魔法礼物包",
- "shieldSpecialWinter2018WarriorNotes": "任何您想要的实用物品都可以在这个麻袋里找到,只要您知道该轻声念出什么咒语才对。增加 <%= con %> 点体质。 2017-2018冬季限定版装备。",
+ "shieldSpecialWinter2018WarriorNotes": "任何您想要的实用物品都可以在这个麻袋里找到,只要您知道该轻声念出什么咒语才对。增加<%= con %>点体质。 2017-2018冬季限定版装备。",
"shieldSpecialWinter2018HealerText": "槲寄生上的铃铛",
- "shieldSpecialWinter2018HealerNotes": "那是什么声音? 就是那所有人都能听见的暖心欢呼声! 增加 <%= con %> 点体质。 2017-2018冬季限定版装备。",
+ "shieldSpecialWinter2018HealerNotes": "那是什么声音? 就是那所有人都能听见的暖心欢呼声! 增加<%= con %>点体质。 2017-2018冬季限定版装备。",
"shieldSpecialSpring2018WarriorText": "早晨护盾",
- "shieldSpecialSpring2018WarriorNotes": "这面坚固的护盾能与辉煌的第一道曙光一同发光发热。增加 <%= con %> 点体质。 2018年春季限定版装备。",
+ "shieldSpecialSpring2018WarriorNotes": "这面坚固的护盾能与辉煌的第一道曙光一同发光发热。增加<%= con %>点体质。 2018年春季限定版装备。",
"shieldSpecialSpring2018HealerText": "石榴石护盾",
- "shieldSpecialSpring2018HealerNotes": "这面护盾不但拥有华丽的外表,还非常耐用呢! 增加 <%= con %> 点体质。 2018年春季限定版装备。",
+ "shieldSpecialSpring2018HealerNotes": "这面护盾不但拥有华丽的外表,还非常耐用呢! 增加<%= con %>点体质。 2018年春季限定版装备。",
"shieldSpecialSummer2018WarriorText": "斗鱼骨护盾",
- "shieldSpecialSummer2018WarriorNotes": "以石头塑成,这面吓人的鱼骨护盾能在与骸骨宠物和坐骑们齐聚一堂时,让所有鱼类敌人都深感畏惧。增加 <%= con %> 点体质。 2018年夏季限量版装备。",
+ "shieldSpecialSummer2018WarriorNotes": "以石头塑成,这面吓人的鱼骨护盾能在与骸骨宠物和坐骑们齐聚一堂时,让所有鱼类敌人都深感畏惧。增加<%= con %>点体质。 2018年夏季限量版装备。",
"shieldSpecialSummer2018HealerText": "人鱼帝王纹章",
- "shieldSpecialSummer2018HealerNotes": "这面盾牌能够制造出充满空气的球状空间,以利来自陆地上的访客拜访您的水中王国时能够呼吸。增加 <%= con %> 点体质。2018年夏季限量版装备。",
+ "shieldSpecialSummer2018HealerNotes": "这面盾牌能够制造出充满空气的球状空间,以利来自陆地上的访客拜访您的水中王国时能够呼吸。增加<%= con %>点体质。2018年夏季限量版装备。",
"shieldSpecialFall2018RogueText": "迷惑药水瓶",
- "shieldSpecialFall2018RogueNotes": "这瓶子代表了所有让您分心或让您不能成为最佳自我的杂事! 请忍住! 我们为您欢呼! 增加 <%= str %> 点力量。 2018年秋季限定版装备。",
+ "shieldSpecialFall2018RogueNotes": "这瓶子代表了所有让您分心或让您不能成为最佳自我的杂事! 请忍住! 我们为您欢呼! 增加<%= str %>点力量。 2018年秋季限定版装备。",
"shieldSpecialFall2018WarriorText": "辉煌护盾",
- "shieldSpecialFall2018WarriorNotes": "像黄金般地闪耀以阻止烦人的蛇发女妖不再跟您玩躲猫猫! 增加 <%= con %> 点体质。 2018年秋季限定版装备。",
+ "shieldSpecialFall2018WarriorNotes": "像黄金般地闪耀以阻止烦人的蛇发女妖不再跟您玩躲猫猫! 增加<%= con %>点体质。 2018年秋季限定版装备。",
"shieldSpecialFall2018HealerText": "饥饿护盾",
"shieldSpecialFall2018HealerNotes": "这面护盾上有一张巨口,能够吸收敌人所有的轰炸。增加<%= con %>点体质,2018年秋季限定装备。",
"shieldSpecialWinter2019WarriorText": "冰霜护盾",
- "shieldSpecialWinter2019WarriorNotes": "这面盾牌是使用来自Stoïkalm草原中最古老的冰川的冰块所制成的。增加体质 <%= con %> 点。 2018-2019冬季限定版装备。",
+ "shieldSpecialWinter2019WarriorNotes": "这面盾牌是使用来自Stoïkalm草原中最古老的冰川的冰块所制成的。增加<%= con %>点体质。 2018-2019冬季限定版装备。",
"shieldSpecialWinter2019HealerText": "附魔冰晶",
- "shieldSpecialWinter2019HealerNotes": "这细薄的冰可能很脆弱,但这完美的冰晶会在它掉落前自动回避掉落。增加 <%= con %> 点体质。 2018-2019冬季限定版装备。",
+ "shieldSpecialWinter2019HealerNotes": "这细薄的冰可能很脆弱,但这完美的冰晶会在它掉落前自动回避掉落。增加<%= con %>点体质。 2018-2019冬季限定版装备。",
"shieldMystery201601Text": "决心屠戮者",
"shieldMystery201601Notes": "这把剑能挡开所有的干扰。没有属性加成。2016年1月订阅者物品。",
"shieldMystery201701Text": "冻结时间之盾",
- "shieldMystery201701Notes": "把时间冻结在它应有的轨迹上,征服你的任务吧!没有属性加成。2017年1月捐赠者物品。",
+ "shieldMystery201701Notes": "把时间冻结在它应有的轨迹上,征服你的任务吧!没有属性加成。2017年1月订阅者物品。",
"shieldMystery201708Text": "熔岩护盾",
- "shieldMystery201708Notes": "这顶坚固的熔岩护盾可以保护你不受坏习惯的伤害,抵挡伤害的时候甚至不会让你的手受到冲击。没有属性加成。2017年8月捐赠者物品。",
+ "shieldMystery201708Notes": "这顶坚固的熔岩护盾可以保护你不受坏习惯的伤害,抵挡伤害的时候甚至不会让你的手受到冲击。没有属性加成。2017年8月订阅者物品。",
"shieldMystery201709Text": "《魔法入门手册》",
- "shieldMystery201709Notes": "这本书将引导你初次接触魔法的奥秘。没有属性加成。2017年9月捐赠者物品。",
+ "shieldMystery201709Notes": "这本书将引导你初次接触魔法的奥秘。没有属性加成。2017年9月订阅者物品。",
"shieldMystery201802Text": "我爱bug护盾",
- "shieldMystery201802Notes": "这面护盾虽然看起来很像是颗易碎的糖果,但它甚至可以抵挡能让人犯心脏病的心碎一击!没有属性加成。2018年2月订阅者专属装备。",
+ "shieldMystery201802Notes": "这面护盾虽然看起来很像是颗易碎的糖果,但它甚至可以抵挡能让人犯心脏病的心碎一击!没有属性加成。2018年2月订阅者物品。",
"shieldMystery301405Text": "时钟之盾",
- "shieldMystery301405Notes": "拥有这块高耸的时钟之盾,时间与你同在!没有属性加成。3015年6月捐赠者物品。",
+ "shieldMystery301405Notes": "拥有这块高耸的时钟之盾,时间与你同在!没有属性加成。3015年6月订阅者物品。",
"shieldMystery301704Text": "轻柔扇子",
- "shieldMystery301704Notes": "这把精致的扇子会让你感到凉爽,并且看起来非常美丽!没有属性加成。3017年四月捐赠者礼品。",
+ "shieldMystery301704Notes": "这把精致的扇子会让你感到凉爽,并且看起来非常美丽!没有属性加成。3017年4月订阅者物品。",
"shieldArmoireGladiatorShieldText": "角斗士之盾",
"shieldArmoireGladiatorShieldNotes": "作为一名角斗士,你必须……呃,管他了,就用你的盾砸他们就好了。增加<%= con %>点体质和<%= str %>点力量。魔法衣橱:角斗士套装(3件中的第3件)。",
"shieldArmoireMidnightShieldText": "午夜之盾",
"shieldArmoireMidnightShieldNotes": "在午夜到来时,这块盾牌的威力就会达到极致!增加<%= con %>点体质和<%= str %>点力量。魔法衣橱:独立装备。",
"shieldArmoireRoyalCaneText": "皇家手杖",
- "shieldArmoireRoyalCaneNotes": "赞歌颂唱,山呼吾王!增加体质,智力和感知各<%= attrs %>点。魔法衣橱:皇家套装(3件中的第2件)。",
+ "shieldArmoireRoyalCaneNotes": "赞歌颂唱,山呼吾王!增加体质、智力和感知各<%= attrs %>点。魔法衣橱:皇家套装(3件中的第2件)。",
"shieldArmoireDragonTamerShieldText": "驯龙盾",
"shieldArmoireDragonTamerShieldNotes": "用这件龙形的盾牌扰乱敌人吧。增加<%= per %>点感知。魔法衣橱:驯龙套装(3件中的第2件)。",
"shieldArmoireMysticLampText": "神秘的灯",
- "shieldArmoireMysticLampNotes": "用神秘的灯照亮黑暗的洞穴!增加感知<%= per %>点。魔法衣橱:独立装备。",
+ "shieldArmoireMysticLampNotes": "用神秘的灯照亮黑暗的洞穴!增加<%= per %>点感知。魔法衣橱:独立装备。",
"shieldArmoireFloralBouquetText": "鲜花束",
- "shieldArmoireFloralBouquetNotes": "在战斗中没有什么用处。但是它们很漂亮,不是吗?提升<%= con %>点体质。魔法衣橱:独立装备。",
+ "shieldArmoireFloralBouquetNotes": "在战斗中没有什么用处。但是它们很漂亮,不是吗?增加<%= con %>点体质。魔法衣橱:独立装备。",
"shieldArmoireSandyBucketText": "沙桶",
- "shieldArmoireSandyBucketNotes": "能很好的保存你将从完成的任务中获得的所有金币。增加感知<%= per %>点。魔法衣橱:采海滨套装(3件中的第3件)。",
+ "shieldArmoireSandyBucketNotes": "能很好的保存你将从完成的任务中获得的所有金币。增加<%= per %>点感知。魔法衣橱:采海滨套装(3件中的第3件)。",
"shieldArmoirePerchingFalconText": "栖息的鹰",
- "shieldArmoirePerchingFalconNotes": "一只老鹰朋友栖息在你的手臂上,准备猛扑向你的敌人。提升力量<%= str %>点。魔法衣橱:猎鹰者套装(3件中的第3件)。",
+ "shieldArmoirePerchingFalconNotes": "一只老鹰朋友栖息在你的手臂上,准备猛扑向你的敌人。增加<%= str %>点力量。魔法衣橱:猎鹰者套装(3件中的第3件)。",
"shieldArmoireRamHornShieldText": "公羊角盾",
- "shieldArmoireRamHornShieldNotes": "带上这个盾牌冲撞每日任务吧!增加力量和体质各 <%= attrs %> 点。魔法衣橱:野蛮公羊套装(3件中的第3件)。",
+ "shieldArmoireRamHornShieldNotes": "带上这个盾牌冲撞每日任务吧!增加力量和体质各<%= attrs %>点。魔法衣橱:野蛮公羊套装(3件中的第3件)。",
"shieldArmoireRedRoseText": "红玫瑰",
- "shieldArmoireRedRoseNotes": "这深红玫瑰闻着迷人。它将会提高你的理解力。增加感知<%= per %>点。魔法衣橱:独立装备。",
+ "shieldArmoireRedRoseNotes": "这深红玫瑰闻着迷人。它将会提高你的理解力。增加<%= per %>点感知。魔法衣橱:独立装备。",
"shieldArmoireMushroomDruidShieldText": "德鲁伊蘑菇盾",
- "shieldArmoireMushroomDruidShieldNotes": "尽管是由蘑菇打造而成的,却坚硬无比!增加 <%= con %> 点体质和<%= str %>点力量。魔法衣橱:德鲁伊蘑菇套装(3件中的第3件)。",
+ "shieldArmoireMushroomDruidShieldNotes": "尽管是由蘑菇打造而成的,却坚硬无比!增加<%= con %>点体质和<%= str %>点力量。魔法衣橱:德鲁伊蘑菇套装(3件中的第3件)。",
"shieldArmoireFestivalParasolText": "节日阳伞",
- "shieldArmoireFestivalParasolNotes": "这把轻盈的太阳伞能够帮你抵御强光--无论它是来自太阳还是暗红色的每日任务!增加体质<%= con %>点。魔法衣橱:节日盛典套装(3件中的第2件)。",
+ "shieldArmoireFestivalParasolNotes": "这把轻盈的太阳伞能够帮你抵御强光--无论它是来自太阳还是暗红色的每日任务!增加<%= con %>点体质。魔法衣橱:节日盛典套装(3件中的第2件)。",
"shieldArmoireVikingShieldText": "维京海盗盾",
"shieldArmoireVikingShieldNotes": "这一面由坚固的木头和兽皮制成的盾牌可以对抗最令人生畏的敌人。增加<%= per %>点感知和<%= int %>点智力。魔法衣橱:维京人套装(3件中的第3件)。",
"shieldArmoireSwanFeatherFanText": "鹅毛扇",
@@ -1483,25 +1483,25 @@
"shieldArmoireHandmadeCandlestickText": "手工制作的烛台",
"shieldArmoireHandmadeCandlestickNotes": "你的精美的蜡制品为心怀感激的Habitica居民们提供了光明和温暖!增加<%= str %>点力量。魔法衣橱:烛台制造者(3件中的第3件)。",
"shieldArmoireWeaversShuttleText": "编织者之梭",
- "shieldArmoireWeaversShuttleNotes": "这件工具在你的经纬线之间穿梭,做成一块布!提升智力<%= int %>和感知<%= per %>。魔法衣橱:织布工(3件中的第3件)。",
+ "shieldArmoireWeaversShuttleNotes": "这件工具在你的经纬线之间穿梭,做成一块布!增加<%= int %>点智力和<%= per %>点感知。魔法衣橱:织布工(3件中的第3件)。",
"shieldArmoireShieldOfDiamondsText": "钻石护盾",
- "shieldArmoireShieldOfDiamondsNotes": "这面闪耀的护盾不但能提供保护,还能赐予您耐力!增加 <%= con %> 点体质。魔法衣橱:钻石之王(4件中的第4件)。",
+ "shieldArmoireShieldOfDiamondsNotes": "这面闪耀的护盾不但能提供保护,还能赐予您耐力!增加<%= con %> 点体质。魔法衣橱:钻石之王(4件中的第4件)。",
"shieldArmoireFlutteryFanText": "翩翩飞舞纸扇",
- "shieldArmoireFlutteryFanNotes": "炎炎夏日中,除了它,没有任何东西能同时让您看起来和感觉起来更清爽。 增加体质、智力、感知各 <%= attrs %> 点。魔法衣橱:飘逸连衣裙(4件中的第4件)。",
+ "shieldArmoireFlutteryFanNotes": "炎炎夏日中,除了它,没有任何东西能同时让您看起来和感觉起来更清爽。 增加体质、智力和感知各<%= attrs %>点。魔法衣橱:飘逸连衣裙(4件中的第4件)。",
"shieldArmoireFancyShoeText": "奢华的鞋",
- "shieldArmoireFancyShoeNotes": "一双你正在制作中的非常特别的鞋,它是为皇家量身定制的!增加智力、感知各<%= attrs %>点。魔法衣橱:鞋匠(3件中的第3件)。",
+ "shieldArmoireFancyShoeNotes": "一双你正在制作中的非常特别的鞋,它是为皇家量身定制的!增加智力和感知各<%= attrs %>点。魔法衣橱:鞋匠(3件中的第3件)。",
"shieldArmoireFancyBlownGlassVaseText": "华丽吹制玻璃花瓶",
- "shieldArmoireFancyBlownGlassVaseNotes": "您做出来了一件多棒的花瓶啊!您想用来放什么东西在里面呢?增加 <%= int %> 点智力。魔法衣橱:玻璃吹制工(4件中的第4件)。",
+ "shieldArmoireFancyBlownGlassVaseNotes": "您做出来了一件多棒的花瓶啊!您想用来放什么东西在里面呢?增加<%= int %>点智力。魔法衣橱:玻璃吹制工(4件中的第4件)。",
"shieldArmoirePiraticalSkullShieldText": "海盗骷髅护盾",
- "shieldArmoirePiraticalSkullShieldNotes": "这面附魔过的护盾会小声告诉你敌人的秘密藏宝地——请仔细聆听!增加感知、智力各 <%= attrs %> 点。魔法衣橱:海盗公主(4件中的第4件)。",
+ "shieldArmoirePiraticalSkullShieldNotes": "这面附魔过的护盾会小声告诉你敌人的秘密藏宝地——请仔细聆听!增加感知和智力各<%= attrs %>点。魔法衣橱:海盗公主(4件中的第4件)。",
"shieldArmoireUnfinishedTomeText": "未完成的巨著",
"shieldArmoireUnfinishedTomeNotes": "当你拿着这本书时,你感觉自己一会儿都不能拖了!装订工作必须尽快完成,这样才能让人们早点读到这本旷世之作!增加<%= int %>点智力。魔法衣橱:订书人套装(4件中的第4件)。",
"shieldArmoireSoftBluePillowText": "柔软蓝枕头",
- "shieldArmoireSoftBluePillowNotes": "明智的战士都会在远征时多准备一个枕头。可以保护自己免于被锋利的任务伤害……甚至是您正在小睡的时候。增加 <%= con %> 点体质。魔法衣橱:蓝家居服(3件中的第3件)。",
+ "shieldArmoireSoftBluePillowNotes": "明智的战士都会在远征时多准备一个枕头。可以保护自己免于被锋利的任务伤害……甚至是您正在小睡的时候。增加<%= con %>点体质。魔法衣橱:蓝家居服(3件中的第3件)。",
"shieldArmoireSoftRedPillowText": "柔软红枕头",
- "shieldArmoireSoftRedPillowNotes": "已做好万全准备的战士都会在远征前准备一块枕头。这块枕头能保护您不受艰难任务的伤害……甚至是在您小睡的时候。增加体质、力量各 <%= attrs %> 点。 来自魔法衣橱:红居家服(3件中的第3件)。",
+ "shieldArmoireSoftRedPillowNotes": "已做好万全准备的战士都会在远征前准备一块枕头。这块枕头能保护您不受艰难任务的伤害……甚至是在您小睡的时候。增加体质和力量各<%= attrs %>点。 来自魔法衣橱:红居家服(3件中的第3件)。",
"shieldArmoireSoftGreenPillowText": "柔软绿枕头",
- "shieldArmoireSoftGreenPillowNotes": "有经验的战士都会在远征前准备一块枕头。这块枕头能驱散那些讨厌的杂事……甚至是在您小睡的时候。增加体质 <%= con %> 点和智力 <%= int %> 点。 来自魔法衣橱:绿家居服(3件中的第3件)。",
+ "shieldArmoireSoftGreenPillowNotes": "有经验的战士都会在远征前准备一块枕头。这块枕头能驱散那些讨厌的杂事……甚至是在您小睡的时候。增加<%= con %>点体质和<%= int %>点智力。 来自魔法衣橱:绿家居服(3件中的第3件)。",
"shieldArmoireMightyQuillText": "笔力千钧",
"shieldArmoireMightyQuillNotes": "谚语有言:笔诛胜于剑伐。增加<%= per %>点感知。魔法衣橱:书吏套装(3件中的第2件)。",
"back": "背部挂件",
@@ -1510,49 +1510,49 @@
"backBase0Notes": "没有背部挂件。",
"animalTails": "动物尾巴",
"backMystery201402Text": "黄金之翼",
- "backMystery201402Notes": "这双耀眼的翅膀上的羽毛在阳光下闪闪发光!没有属性加成。2014年2月捐赠者物品。",
+ "backMystery201402Notes": "这双耀眼的翅膀上的羽毛在阳光下闪闪发光!没有属性加成。2014年2月订阅者物品。",
"backMystery201404Text": "薄暮蝶翼",
- "backMystery201404Notes": "化蝶,翩飞!没有属性加成。2014年4月捐赠者物品。",
+ "backMystery201404Notes": "化蝶,翩飞!没有属性加成。2014年4月订阅者物品。",
"backMystery201410Text": "地精之翼",
- "backMystery201410Notes": "夜晚,以这双强壮的翅膀俯冲。没有属性加成。2014年10月捐赠者物品。",
+ "backMystery201410Notes": "夜晚,以这双强壮的翅膀俯冲。没有属性加成。2014年10月订阅者物品。",
"backMystery201504Text": "忙碌的蜜蜂翅膀",
- "backMystery201504Notes": "嗡嗡嗡嗡嗡嗡声!从掠过任务任务。没有属性加成。 2015年4月认购项目。",
+ "backMystery201504Notes": "嗡嗡嗡嗡嗡嗡声!从掠过任务任务。没有属性加成。 2015年4月订阅者物品。",
"backMystery201507Text": "超爽冲浪板",
- "backMystery201507Notes": "在未完成之湾优雅穿行于雅致的岩石,踏浪飞驰!没有属性加成。2015年7月捐赠者物品。",
+ "backMystery201507Notes": "在未完成之湾优雅穿行于雅致的岩石,踏浪飞驰!没有属性加成。2015年7月订阅者物品。",
"backMystery201510Text": "地精尾巴",
"backMystery201510Notes": "绕来抓去,强而有力!没有属性加成。2015年10月订阅者物品。",
"backMystery201602Text": "负心人披肩",
- "backMystery201602Notes": "扬起斗篷嗖的一声,你的敌人落在了你的后面!没有属性加成。2016年2月捐赠者物品。",
+ "backMystery201602Notes": "扬起斗篷嗖的一声,你的敌人落在了你的后面!没有属性加成。2016年2月订阅者物品。",
"backMystery201608Text": "雷电斗篷",
- "backMystery201608Notes": "用这个翻卷的斗篷飞跃暴风雨!没有属性加成。2016年8月捐赠者物品。",
+ "backMystery201608Notes": "用这个翻卷的斗篷飞跃暴风雨!没有属性加成。2016年8月订阅者物品。",
"backMystery201702Text": "负心人披肩",
- "backMystery201702Notes": "这个斗篷的旋风让你的魅力横扫全场!没有属性加成。2017年2月捐赠者物品。",
+ "backMystery201702Notes": "这个斗篷的旋风让你的魅力横扫全场!没有属性加成。2017年2月订阅者物品。",
"backMystery201704Text": "天使的翅膀",
- "backMystery201704Notes": "这双闪亮的翅膀将带你到任何地方,甚至是由魔法生物所统治的隐蔽王国。\n没有属性加成。2017年4月捐赠者物品。",
+ "backMystery201704Notes": "这双闪亮的翅膀将带你到任何地方,甚至是由魔法生物所统治的隐蔽王国。没有属性加成。2017年4月订阅者物品。",
"backMystery201706Text": "破烂的海盗的旗帜",
- "backMystery201706Notes": "这面印着“快乐”的快乐旗帜能让所有的待办事项恐惧无比!没有属性加成。2017年6月捐赠者物品。",
+ "backMystery201706Notes": "这面印着“快乐”的快乐旗帜能让所有的待办事项恐惧无比!没有属性加成。2017年6月订阅者物品。",
"backMystery201709Text": "一摞魔法书籍",
- "backMystery201709Notes": "学习魔法需要大量的阅读,但你的确很享受这个学习过程!没有属性加成。2017年9月捐赠者物品。",
+ "backMystery201709Notes": "学习魔法需要大量的阅读,但你的确很享受这个学习过程!没有属性加成。2017年9月订阅者物品。",
"backMystery201801Text": "冰霜精灵之翼",
- "backMystery201801Notes": "这双附魔翅膀或许看起来就像雪片那样脆弱,但它可以带您到任何您想去的地方!没有属性加成。2018年1月订阅者专属装备。",
+ "backMystery201801Notes": "这双附魔翅膀或许看起来就像雪片那样脆弱,但它可以带您到任何您想去的地方!没有属性加成。2018年1月订阅者物品。",
"backMystery201803Text": "勇猛蜻蜓之翼",
- "backMystery201803Notes": "这双亮丽的翅膀将带您穿过柔和的春风,并越过一洼又一洼的睡莲池。没有属性加成。 2018年3月订阅者专属装备。",
+ "backMystery201803Notes": "这双亮丽的翅膀将带您穿过柔和的春风,并越过一洼又一洼的睡莲池。没有属性加成。 2018年3月订阅者物品。",
"backMystery201804Text": "松鼠尾巴",
- "backMystery201804Notes": "的确,它能帮助您在树枝间跳跃时保持平衡,但更重要的是那蓬松的绒毛。没有属性加成。 2018年4月订阅者专属装备。",
+ "backMystery201804Notes": "的确,它能帮助您在树枝间跳跃时保持平衡,但更重要的是那蓬松的绒毛。没有属性加成。 2018年4月订阅者物品。",
"backMystery201812Text": "北极狐狸尾",
- "backMystery201812Notes": "您这奢华稀有的尾巴就像冰柱一样闪闪发光。当您轻轻地座在雪堆上时,它就会愉悦地摆动。没有属性加成。 2018年12月订阅者专属装备。",
+ "backMystery201812Notes": "您这奢华稀有的尾巴就像冰柱一样闪闪发光。当您轻轻地座在雪堆上时,它就会愉悦地摆动。没有属性加成。 2018年12月订阅者物品。",
"backMystery201805Text": "华丽孔雀尾巴",
- "backMystery201805Notes": "这款华丽的羽毛尾巴非常适合在美丽的花园小径上奔跑! 没有属性加成。 2018年5月捐赠者物品。",
+ "backMystery201805Notes": "这款华丽的羽毛尾巴非常适合在美丽的花园小径上奔跑! 没有属性加成。 2018年5月订阅者物品。",
"backSpecialWonderconRedText": "威武斗篷",
"backSpecialWonderconRedNotes": "力量与美貌在刷刷作响。没有属性加成。特别版参与者物品。",
"backSpecialWonderconBlackText": "潜行斗篷",
"backSpecialWonderconBlackNotes": "由暗影与低语织就。没有属性加成。特别版参与者物品。",
"backSpecialTakeThisText": "Take This之翼",
- "backSpecialTakeThisNotes": "这对翅膀是通过参与“Take This”赞助的挑战而获得的。祝贺你!所有属性提升<%= attrs %>。",
+ "backSpecialTakeThisNotes": "这对翅膀是通过参与“Take This”赞助的挑战而获得的。祝贺你!增加全属性<%= attrs %>点。",
"backSpecialSnowdriftVeilText": "雪堆面纱",
"backSpecialSnowdriftVeilNotes": "这半透明的面纱让你看起来像是被一场优雅的雪所包围!没有属性加成。",
"backSpecialAetherCloakText": "以太斗篷",
- "backSpecialAetherCloakNotes": "这件斗篷曾经属于迷失的大师鉴别者。增加感知<%= per %>点。",
+ "backSpecialAetherCloakNotes": "这件斗篷曾经属于迷失的大师鉴别者。增加<%= per %>点感知。",
"backSpecialTurkeyTailBaseText": "火鸡之尾",
"backSpecialTurkeyTailBaseNotes": "在庆祝时记得穿上这条高贵的火鸡尾巴! 没有属性加成。",
"backSpecialTurkeyTailGildedText": "镀金火鸡尾",
@@ -1584,7 +1584,7 @@
"bodySpecialWonderconBlackText": "乌木领子",
"bodySpecialWonderconBlackNotes": "一个迷人的乌木领子!没有属性加成。特殊版本参与者物品。",
"bodySpecialTakeThisText": "Take This之护肩",
- "bodySpecialTakeThisNotes": "这对护肩是通过参与“Take This”赞助的挑战而获得的。祝贺你!所有属性提升<%= attrs %>。",
+ "bodySpecialTakeThisNotes": "这对护肩是通过参与“Take This”赞助的挑战而获得的。祝贺你!增加全属性<%= attrs %>点。",
"bodySpecialAetherAmuletText": "以太护符",
"bodySpecialAetherAmuletNotes": "这个护符曾有一段神秘的历史。增加体质和力量各<%= attrs %>点。",
"bodySpecialSummerMageText": "闪耀披肩",
@@ -1602,15 +1602,15 @@
"bodySpecialNamingDay2018Text": "紫御狮鹫披风",
"bodySpecialNamingDay2018Notes": "命名节快乐! 快戴上这件典雅又柔软的披风一同前来为 Habitica 欢庆吧!没有属性加成。",
"bodyMystery201705Text": "斗士的折叠翅膀",
- "bodyMystery201705Notes": "这些折叠的翅膀不只是看起来时髦:它们会给你一个狮鹫的速度和敏捷性!没有属性加成。2017年5月捐赠者物品。",
+ "bodyMystery201705Notes": "这些折叠的翅膀不只是看起来时髦:它们会给你一个狮鹫的速度和敏捷性!没有属性加成。2017年5月订阅者物品。",
"bodyMystery201706Text": "衣衫褴褛的海盗船的斗篷",
- "bodyMystery201706Notes": "这件斗篷有秘密的口袋,可以把你从任务中掠夺的金子藏起来。没有属性加成。2017年6月捐赠者物品。",
+ "bodyMystery201706Notes": "这件斗篷有秘密的口袋,可以把你从任务中掠夺的金子藏起来。没有属性加成。2017年6月订阅者物品。",
"bodyMystery201711Text": "飞毯驾驶员的围巾",
- "bodyMystery201711Notes": "这个柔软的针织围巾在风中看起来相当雄伟。没有属性加成。2017年11月订阅者专享。",
+ "bodyMystery201711Notes": "这个柔软的针织围巾在风中看起来相当雄伟。没有属性加成。2017年11月订阅者物品。",
"bodyMystery201901Text": "北极星护肩",
- "bodyMystery201901Notes": "这套闪闪发光的护肩非常坚固,但却可以像一缕缕跳舞的光束一样轻盈地靠在您的肩膀上。没有属性加成。 2019年1月订阅者专属装备。",
+ "bodyMystery201901Notes": "这套闪闪发光的护肩非常坚固,但却可以像一缕缕跳舞的光束一样轻盈地靠在您的肩膀上。没有属性加成。 2019年1月订阅者物品。",
"bodyArmoireCozyScarfText": "舒適溫暖的領巾",
- "bodyArmoireCozyScarfNotes": "这条上等的围巾能让您在寒冷环境下工作时,还能保持温暖。增加体质、感知各 <%= attrs %> 点。魔法衣橱:点灯人套装(4件中的第4件)。",
+ "bodyArmoireCozyScarfNotes": "这条上等的围巾能让您在寒冷环境下工作时,还能保持温暖。增加体质和感知各<%= attrs %>点。魔法衣橱:点灯人套装(4件中的第4件)。",
"headAccessory": "头部配件",
"headAccessoryCapitalized": "头部配件",
"accessories": "附属道具",
@@ -1680,25 +1680,25 @@
"headAccessoryYellowHeadbandText": "黄色发带",
"headAccessoryYellowHeadbandNotes": "一个款式简单的黄色发带。没有属性加成。",
"headAccessoryMystery201403Text": "森林行者鹿角",
- "headAccessoryMystery201403Notes": "这对鹿角上的苔藓和地衣闪烁着微光。没有属性加成。2014年3月捐赠者物品。",
+ "headAccessoryMystery201403Notes": "这对鹿角上的苔藓和地衣闪烁着微光。没有属性加成。2014年3月订阅者物品。",
"headAccessoryMystery201404Text": "薄暮蝴蝶的触角",
- "headAccessoryMystery201404Notes": "这对触角能帮助佩戴者察觉到危险的干扰!没有属性加成。2014年4月捐赠者物品。",
+ "headAccessoryMystery201404Notes": "这对触角能帮助佩戴者察觉到危险的干扰!没有属性加成。2014年4月订阅者物品。",
"headAccessoryMystery201409Text": "秋季鹿角",
- "headAccessoryMystery201409Notes": "这对强大的鹿角会随着树叶一起改变颜色。没有属性加成。2014年9月捐赠者物品。",
+ "headAccessoryMystery201409Notes": "这对强大的鹿角会随着树叶一起改变颜色。没有属性加成。2014年9月订阅者物品。",
"headAccessoryMystery201502Text": "思绪之翼",
- "headAccessoryMystery201502Notes": "放飞你的想象力!没有属性加成。2015年2月捐赠者物品。",
+ "headAccessoryMystery201502Notes": "放飞你的想象力!没有属性加成。2015年2月订阅者物品。",
"headAccessoryMystery201510Text": "地精角",
- "headAccessoryMystery201510Notes": "这些吓人的角滑溜溜的。没有属性加成。2015年10月捐赠者物品。",
+ "headAccessoryMystery201510Notes": "这些吓人的角滑溜溜的。没有属性加成。2015年10月订阅者物品。",
"headAccessoryMystery201801Text": "冰霜精灵之角",
- "headAccessoryMystery201801Notes": "这对冰晶鹿角随着冬季极光的闪烁而闪闪发光。没有属性加成。 2018年1月订阅者专属装备。",
+ "headAccessoryMystery201801Notes": "这对冰晶鹿角随着冬季极光的闪烁而闪闪发光。没有属性加成。 2018年1月订阅者物品。",
"headAccessoryMystery201804Text": "松鼠耳",
- "headAccessoryMystery201804Notes": "这对毛茸茸的声音捕捉器能确保您永远不会错过叶子的沙沙声或橡子的掉落声!没有属性加成。 2018年4月订阅者专属装备。",
+ "headAccessoryMystery201804Notes": "这对毛茸茸的声音捕捉器能确保您永远不会错过叶子的沙沙声或橡子的掉落声!没有属性加成。 2018年4月订阅者物品。",
"headAccessoryMystery201812Text": "北极狐狸耳",
- "headAccessoryMystery201812Notes": "您将可以听到雪花飘落在景观上微妙的声音。没有属性加成。 2018年12月订阅者专属装备。",
+ "headAccessoryMystery201812Notes": "您将可以听到雪花飘落在景观上微妙的声音。没有属性加成。 2018年12月订阅者物品。",
"headAccessoryMystery301405Text": "头戴护目镜",
- "headAccessoryMystery301405Notes": "“护目镜是戴在眼睛上的,”人们说。“没有人会想要一副只能戴在头上的护目镜。”人们说。哈!你果然让他们长见识了!没有属性加成。3015年8月捐赠者物品。",
+ "headAccessoryMystery301405Notes": "“护目镜是戴在眼睛上的,”人们说。“没有人会想要一副只能戴在头上的护目镜。”人们说。哈!你果然让他们长见识了!没有属性加成。3015年8月订阅者物品。",
"headAccessoryArmoireComicalArrowText": "滑稽的箭",
- "headAccessoryArmoireComicalArrowNotes": "这个异想天开的东西一定能引人发笑!增加力量<%= str %>点。魔法衣橱:独立装备。",
+ "headAccessoryArmoireComicalArrowNotes": "这个异想天开的东西一定能引人发笑!增加<%= str %>点力量。魔法衣橱:独立装备。",
"headAccessoryArmoireGogglesOfBookbindingText": "装订工的眼镜",
"headAccessoryArmoireGogglesOfBookbindingNotes": "这副护目镜帮你集中精力,对付大大小小的任务!增加<%= per %>点感知。魔法衣橱:订书人套装(4件中的第1件)。",
"eyewear": "眼镜",
@@ -1730,43 +1730,43 @@
"eyewearSpecialWonderconBlackText": "潜行面罩",
"eyewearSpecialWonderconBlackNotes": "你的动机绝对合法。没有属性加成。特别版参与者物品。",
"eyewearMystery201503Text": "海蓝护目镜",
- "eyewearMystery201503Notes": "别被这些璀璨的宝石闪瞎了!没有属性加成。2015年三月捐赠者物品。",
+ "eyewearMystery201503Notes": "别被这些璀璨的宝石闪瞎了!没有属性加成。2015年3月订阅者物品。",
"eyewearMystery201506Text": "霓虹潜水镜",
- "eyewearMystery201506Notes": "这件霓虹的潜水镜能让佩戴者看清楚水下的状况,没有属性加成。2015年6越捐赠者物品。",
+ "eyewearMystery201506Notes": "这件霓虹的潜水镜能让佩戴者看清楚水下的状况,没有属性加成。2015年6月订阅者物品。",
"eyewearMystery201507Text": "酷的太阳镜",
- "eyewearMystery201507Notes": "天气热的时候,这副太阳镜能帮你保持冷静。 没有属性加成。2015年7月捐赠者物品。",
+ "eyewearMystery201507Notes": "天气热的时候,这副太阳镜能帮你保持冷静。 没有属性加成。2015年7月订阅者物品。",
"eyewearMystery201701Text": "永恒的阴影",
- "eyewearMystery201701Notes": "这副太阳镜会从有害的射线中保护你的眼睛,并且让你不管什么时候看起来都很时髦。没有属性加成。2017年1月捐赠者物品。",
+ "eyewearMystery201701Notes": "这副太阳镜会从有害的射线中保护你的眼睛,并且让你不管什么时候看起来都很时髦。没有属性加成。2017年1月订阅者物品。",
"eyewearMystery301404Text": "眼戴护目镜",
- "eyewearMystery301404Notes": "没有什么小饰品能比一副护目镜更炫了——可能,除了单片眼镜。没有属性加成。3015年3月捐赠者物品。",
+ "eyewearMystery301404Notes": "没有什么小饰品能比一副护目镜更炫了——可能,除了单片眼镜。没有属性加成。3015年3月订阅者物品。",
"eyewearMystery301405Text": "单片眼镜",
"eyewearMystery301405Notes": "没有什么饰品能比单片眼镜更炫——可能,除了护目镜。没有属性加成。3015年7月订阅者物品。",
"eyewearMystery301703Text": "孔雀化妆舞会面具",
- "eyewearMystery301703Notes": "完美适配美妙的化妆舞会,或者静悄悄地穿过那些特别讲究穿着的人群。没有属性加成。3017年三月捐赠者礼品。",
+ "eyewearMystery301703Notes": "完美适配美妙的化妆舞会,或者静悄悄地穿过那些特别讲究穿着的人群。没有属性加成。3017年3月订阅者物品。",
"eyewearArmoirePlagueDoctorMaskText": "瘟疫医生面具",
- "eyewearArmoirePlagueDoctorMaskNotes": "一个可靠的面具,医生们戴着它对抗拖延症瘟疫。增加体质和智力<%= attrs %>点。魔法衣橱:瘟疫医生系列(3件中的第2件)。",
+ "eyewearArmoirePlagueDoctorMaskNotes": "一个可靠的面具,医生们戴着它对抗拖延症瘟疫。增加体质和智力各<%= attrs %>点。魔法衣橱:瘟疫医生系列(3件中的第2件)。",
"eyewearArmoireGoofyGlassesText": "滑稽的眼镜",
"eyewearArmoireGoofyGlassesNotes": "戴着这玩意出席化装派对的主意真是绝了,你的小伙伴们肯定会咯咯笑个不停的。增加<%= per %>点感知。魔法衣橱:独立物品。",
"twoHandedItem": "双手物品。",
"weaponArmoireChefsSpoonText": "厨师的大勺",
- "weaponArmoireChefsSpoonNotes": "高喊出战斗口号:“汤勺!!”同时举起它。增加了<%= int %>的智力。魔法衣橱:厨师套装(3件中的第4件)。",
+ "weaponArmoireChefsSpoonNotes": "高喊出战斗口号:“汤勺!!”同时举起它。增加<%= int %>点智力。魔法衣橱:厨师套装(3件中的第4件)。",
"weaponArmoireVernalTaperText": "春之烛芯",
"weaponArmoireVernalTaperNotes": "日子一天天过去,但这只蜡烛会帮助你在日出前找到出路。增加<%= con %>点体质。魔法衣橱:春之外套(3件中的第3件)。",
"armorArmoireChefsJacketText": "厨师的夹克",
- "armorArmoireChefsJacketNotes": "这件厚夹克有着双重排扣,可以保护你免受液体泼溅(还具有便捷反穿设计)。智力上升了<%= int %>。魔法衣橱:厨师套装(4件中的第2件)。",
+ "armorArmoireChefsJacketNotes": "这件厚夹克有着双重排扣,可以保护你免受液体泼溅(还具有便捷反穿设计)。增加<%= int %>点智力。魔法衣橱:厨师套装(4件中的第2件)。",
"armorArmoireVernalVestmentText": "春之外套",
- "armorArmoireVernalVestmentNotes": "这件丝滑外套是享受温和春天的完美选择。力量和智力都上升了<%= attrs %>。魔法衣橱:春之外套(3件中的第2件)。",
+ "armorArmoireVernalVestmentNotes": "这件丝滑外套是享受温和春天的完美选择。增加力量和智力各<%= attrs %>点。魔法衣橱:春之外套(3件中的第2件)。",
"headArmoireToqueBlancheText": "厨师帽",
"headArmoireToqueBlancheNotes": "传说,这顶帽子有几道褶代表你熟练掌握几种煮鸡蛋的方法!真的假的?增加<%= per%>点感知。 魔法衣橱:厨师(4件中的第1件)。",
"headArmoireVernalHenninText": "春之尖顶高帽",
- "headArmoireVernalHenninNotes": "这个锥形的帽子不但相当好看,而且还能塞进一张卷起来的待办事项清单。增加了<%= per %>的感知。魔法衣橱:春之祭司(3件中的第1件)。",
+ "headArmoireVernalHenninNotes": "这个锥形的帽子不但相当好看,而且还能塞进一张卷起来的待办事项清单。增加<%= per %>点感知。魔法衣橱:春之祭司(3件中的第1件)。",
"shieldMystery201902Text": "神秘的五彩纸屑",
- "shieldMystery201902Notes": "这张来自魔法之心的闪光纸片悬在空中缓慢地舞蹈着。没有属性加成。2019年2月会员赠品。",
+ "shieldMystery201902Notes": "这张来自魔法之心的闪光纸片悬在空中缓慢地舞蹈着。没有属性加成。2019年2月订阅者物品。",
"shieldArmoireMightyPizzaText": "巨无霸披萨",
"shieldArmoireMightyPizzaNotes": "当然,这可以是一个相当不错的盾牌,但我们还是强烈建议你吃掉这个非常、非常好的披萨。增加<%= per %>点感知。魔法衣橱:厨师套装(4件中的第4件)。",
"eyewearMystery201902Text": "神秘芳心纵火犯",
- "eyewearMystery201902Notes": "这个神秘面具让人认不出你,大家只能看到属于胜者的微笑。没有属性加成。2019年2月 订阅者 奖励物品。",
- "weaponSpecialSpring2019WarriorNotes": "翠绿的刀刃前,坏习惯退隐。增加 <%= str %>点力量。2019春季限定版。",
+ "eyewearMystery201902Notes": "这个神秘面具让人认不出你,大家只能看到属于胜者的微笑。没有属性加成。2019年2月订阅者物品。",
+ "weaponSpecialSpring2019WarriorNotes": "翠绿的刀刃前,坏习惯退隐。增加<%= str %>点力量。2019春季限定版。",
"weaponSpecialSpring2019RogueNotes": "这些武器有着天和雨的力量。我们不推荐你在水中的时候用它们。增加<%= str %>点力量。2019春季限定装备。",
"weaponSpecialSpring2019WarriorText": "树茎剑",
"weaponSpecialSpring2019RogueText": "闪电箭",
@@ -1783,23 +1783,23 @@
"weaponSpecialSummer2019RogueText": "老式锚",
"weaponSpecialSpring2019HealerNotes": "你所唱的花雨之歌会抚慰所有听到的人的精神。增加<%= int%>点智力。2019年春季限定装备。",
"weaponSpecialSpring2019HealerText": "春日赞歌",
- "weaponSpecialSpring2019MageNotes": "法杖末端的琥珀里包裹了一只蚊子!不知道有没有Dino基因。增加<%= int %>点智力和<%= per %>点感知。2019年春季限定装备。",
+ "weaponSpecialSpring2019MageNotes": "法杖末端的琥珀里包裹了一只蚊子!不知道有没有恐龙基因。增加<%= int %>点智力和<%= per %>点感知。2019年春季限定装备。",
"weaponSpecialSpring2019MageText": "琥珀法杖",
- "eyewearMystery201907Notes": "看起来很棒,同时保护您的眼睛免受有害紫外线的伤害!没有属性加成。 2019年7月订阅赠品。",
+ "eyewearMystery201907Notes": "看起来很棒,同时保护您的眼睛免受有害紫外线的伤害!没有属性加成。 2019年7月订阅者物品。",
"eyewearMystery201907Text": "甜美太阳镜",
"weaponArmoireAstronomersTelescopeNotes": "一种可以让你观察星星古老舞蹈的乐器。增加<%= per%>点感知。魔法衣橱:天文学家法师套装(3件中的第3件)。",
"weaponArmoireAstronomersTelescopeText": "天文学家的望远镜",
- "weaponArmoireBambooCaneNotes": "非常适合协助您漫步或跳查尔斯顿舞。增加<%= attrs %>点智力、感知和力量。魔法衣橱:划船套装(3件中的第3件)。",
+ "weaponArmoireBambooCaneNotes": "非常适合协助您漫步或跳查尔斯顿舞。增加智力、感知和体质各<%= attrs %>点。魔法衣橱:划船套装(3件中的第3件)。",
"weaponArmoireBambooCaneText": "竹藤",
- "weaponArmoireNephriteBowNotes": "这个弓射出特殊的玉石箭,即使是最顽固的坏习惯也会消失!增加<%= int%>点智力,增加<%= str%>点力量。魔法衣橱:和田玉弓箭手(3件中的第1件)。",
+ "weaponArmoireNephriteBowNotes": "这个弓射出特殊的玉石箭,即使是最顽固的坏习惯也会消失!增加<%= int%>点智力和<%= str%>点力量。魔法衣橱:和田玉弓箭手(3件中的第1件)。",
"weaponArmoireNephriteBowText": "和田弓",
"weaponArmoireSlingshotNotes": "瞄准你的红色日常任务!增加<%= str%>点力量。魔法衣橱:独立物品。",
"backMystery201905Text": "悦目龙翅膀",
"weaponArmoireMagnifyingGlassText": "放大镜",
"armorMystery201906Text": "和蔼可亲的锦鲤尾巴",
- "armorMystery201904Notes": "这件闪亮的衣服正前面缝着蛋白石,赋予你神秘的力量和神奇的外观。没有属性加成。2019年4月订阅赠品。",
+ "armorMystery201904Notes": "这件闪亮的衣服正前面缝着蛋白石,赋予你神秘的力量和神奇的外观。没有属性加成。2019年4月订阅者物品。",
"armorMystery201904Text": "乳白色服装",
- "armorMystery201903Notes": "人们非常想知道你在哪里买到这种鸡蛋装!没有属性加成。2019年3月订阅赠品。",
+ "armorMystery201903Notes": "人们非常想知道你在哪里买到这种鸡蛋装!没有属性加成。2019年3月订阅者物品。",
"armorMystery201903Text": "贝壳铠甲",
"armorSpecialSpring2019HealerNotes": "你明亮的羽毛会让每个人都知道冬天的寒冷和黑暗已经过去了。增加<%= con%>点体质。2019年春季限量版装备。",
"armorSpecialSpring2019HealerText": "罗宾装扮",
@@ -1811,7 +1811,7 @@
"armorSpecialSpring2019RogueNotes": "一些非常凝重的绒毛。增加<%= per %>点感知。2019年春季限定装备。",
"armorSpecialSpring2019RogueText": "云盔甲",
"armorSpecialSummer2019HealerText": "热带潮汐之尾",
- "armorSpecialSummer2019MageNotes": "百合花会知晓你是他们的其中之一,故不会害怕你的接近。增加 <%= int %>点智力。2019年夏季限定装备。",
+ "armorSpecialSummer2019MageNotes": "百合花会知晓你是他们的其中之一,故不会害怕你的接近。增加<%= int %>点智力。2019年夏季限定装备。",
"armorSpecialSummer2019MageText": "碎花连衣裙",
"armorSpecialSummer2019WarriorNotes": "勇士队以其坚固的防守而闻名。海龟因其厚厚的甲壳而闻名。这是一场完美的比赛!只是......尽量不要落后。增加<%= con%>点体质。2019年夏季限量版装备。",
"armorSpecialSummer2019WarriorText": "甲壳盔甲",
@@ -1823,15 +1823,15 @@
"weaponArmoireFloridFanText": "炫彩扇子",
"weaponArmoireMagnifyingGlassNotes": "啊哈!一个证据!用这个精细的放大镜仔细检查它。增加<%= per%>点感知。魔法衣橱:侦探套装(4件中的第3件)。",
"armorArmoireAstronomersRobeText": "天文学家的长袍",
- "armorArmoireBoatingJacketNotes": "无论你是在一艘时髦的游艇上,还是在一辆破车上,穿着这件夹克、戴着领带的你都将惹人注目。力量智力和感知各增加 <%= attrs %>点。魔法衣柜:划船套装(3件中的第1件)。",
+ "armorArmoireBoatingJacketNotes": "无论你是在一艘时髦的游艇上,还是在一辆破车上,穿着这件夹克、戴着领带的你都将惹人注目。增加力量、智力和感知各<%= attrs %>点。魔法衣橱:划船套装(3件中的第1件)。",
"armorArmoireBoatingJacketText": "划船夹克",
- "armorArmoireNephriteArmorNotes": "这款盔甲由坚固的钢环制成,饰有玉石,可保护您免受拖延!增加<%= str %>点力量和<%= per %>点感知。魔法衣柜:软玉射手套装(3件中的第3件)。",
+ "armorArmoireNephriteArmorNotes": "这款盔甲由坚固的钢环制成,饰有玉石,可保护您免受拖延!增加<%= str %>点力量和<%= per %>点感知。魔法衣橱:软玉射手套装(3件中的第3件)。",
"armorArmoireNephriteArmorText": "软玉盔甲",
- "armorMystery201908Notes": "这些腿是用来跳舞的!而这正是他们要做的。没有属性加成。2019年8月订阅赠品。",
+ "armorMystery201908Notes": "这些腿是用来跳舞的!而这正是他们要做的。没有属性加成。2019年8月订阅者物品。",
"armorMystery201908Text": "自由自在的牧神装扮",
- "armorMystery201907Notes": "即使在最热的夏天,也保持酷,看起来酷。没有属性加成。2019 年 7 月订阅赠品。",
+ "armorMystery201907Notes": "即使在最热的夏天,也保持酷,看起来酷。没有属性加成。2019 年 7 月订阅者物品。",
"armorMystery201907Text": "花花衬衫",
- "armorMystery201906Notes": "我们这次就饶了你,不讲“鱼蠢”这种谐音梗了。哦,等等,哎呀。没有属性加成。2019年6月订阅赠品。",
+ "armorMystery201906Notes": "我们这次就饶了你,不讲“鱼蠢”这种谐音梗了。哦,等等,哎呀。没有属性加成。2019年6月订阅者物品。",
"headSpecialSummer2019HealerNotes": "这个贝壳的螺旋结构将帮助你听到七个海域的任何呼救声。增加<%= int%>点智力。2019夏季限量版装备。",
"headSpecialSummer2019HealerText": "海螺王冠",
"headSpecialSummer2019MageNotes": "与流行的看法相反,你的头不适合青蛙栖息。增加<%= per%>点感知。2019年夏季限量版装备。",
@@ -1850,53 +1850,53 @@
"headSpecialSpring2019RogueText": "云朵头盔",
"headSpecialPiDayNotes": "在走圈圈时,尝试保持这块儿美味的派的平衡。或者把它扔到红色的每日任务里!或者你可以直接吃掉它。任你选择!没有属性加成。",
"headSpecialPiDayText": "圆周率帽子",
- "armorArmoireInvernessCapeNotes": "这款坚固的服装可以让你在任何类型的天气中寻找线索。感知和智力各增加<%= attrs%>点。魔法衣橱:侦探套装(4件中的第2件)。",
+ "armorArmoireInvernessCapeNotes": "这款坚固的服装可以让你在任何类型的天气中寻找线索。增加感知和智力各<%= attrs %>点。魔法衣橱:侦探套装(4件中的第2件)。",
"armorArmoireInvernessCapeText": "斗篷披肩",
- "armorArmoireAstronomersRobeNotes": "事实证明丝绸和星光织成的纤维不仅神奇,而且非常透气。感知和体质分别增加<%= attrs%>点。魔法衣橱:天文学家法师套装(3件中的第1件)。",
+ "armorArmoireAstronomersRobeNotes": "事实证明丝绸和星光织成的纤维不仅神奇,而且非常透气。增加感知和体质各<%= attrs %>点。魔法衣橱:天文学家法师套装(3件中的第1件)。",
"shieldSpecialSummer2019HealerNotes": "贝壳小号的大噪音让那些需要帮助的人知道你来了。 2019夏季限量版装备。 增加9体质。 ",
"shieldSpecialSummer2019HealerText": "海螺小号",
- "shieldSpecialSummer2019WarriorNotes": "龟缩在这个巨大的圆形盾牌后面,就像躲在你最喜欢的爬行动物的背后。 增加<%= con%体质。2019夏季 限量版装备。",
+ "shieldSpecialSummer2019WarriorNotes": "龟缩在这个巨大的圆形盾牌后面,就像躲在你最喜欢的爬行动物的背后。 增加<%= con %>点体质。2019夏季 限量版装备。",
"shieldSpecialSummer2019WarriorText": "半壳盾",
- "shieldSpecialSpring2019HealerNotes": "这个明亮的盾牌实际上是由涂有糖果的巧克力制成的。 增加<%= con%>体力。2019年春季 限量版装备。",
+ "shieldSpecialSpring2019HealerNotes": "这个明亮的盾牌实际上是由涂有糖果的巧克力制成的。 增加<%= con%>点体质。2019年春季 限量版装备。",
"shieldSpecialSpring2019HealerText": "蛋壳盾",
- "shieldSpecialSpring2019WarriorNotes": "叶绿素的力量让你的敌人躲避! 增加<%= con%>体力。 2019年春季限量版装备。",
+ "shieldSpecialSpring2019WarriorNotes": "叶绿素的力量让你的敌人躲避! 增加<%= con%>点体质。 2019年春季限量版装备。",
"shieldSpecialSpring2019WarriorText": "绿叶盾",
"shieldSpecialPiDayNotes": "看你敢计算这个盾牌周长与美味的比例! 没有属性加成。",
"shieldSpecialPiDayText": "π盾",
- "headArmoireDeerstalkerCapNotes": "这个帽子非常适合乡村游览,但也可以用于解决谜题! 增加<%= int %>智力。 魔法衣橱:侦探集(4件中的第1件)。",
+ "headArmoireDeerstalkerCapNotes": "这个帽子非常适合乡村游览,但也可以用于解决谜题! 增加<%= int %>点智力。 魔法衣橱:侦探集(4件中的第1件)。",
"headArmoireDeerstalkerCapText": "猎鹿帽",
- "headArmoireAstronomersHatNotes": "一个完美的帽子,用于天体观察或花式精灵早午餐。 增加体质<%= con%>。 魔法衣橱:天文学家法师套装(3件中的第2件)。",
+ "headArmoireAstronomersHatNotes": "一个完美的帽子,用于天体观察或花式精灵早午餐。 增加<%= con%>点体质。 魔法衣橱:天文学家法师套装(3件中的第2件)。",
"headArmoireAstronomersHatText": "天文学家帽",
- "headArmoireBoaterHatNotes": "这个稻草帽是最棒的! 力量,体质和感知都可以增加<%= attrs%>。 魔法衣橱:划船套装(3件中的第2件)。",
+ "headArmoireBoaterHatNotes": "这个稻草帽是最棒的! 增加力量、体质和感知各<%= attrs %>点。 魔法衣橱:划船套装(3件中的第2件)。",
"headArmoireBoaterHatText": "船帽",
"headArmoireNephriteHelmNotes": "在这个头盔上雕刻的魔法玉石羽毛可以提高您的目标。 增加<%= int%>感知和<%= per%>智力。 魔法衣橱:玉弓箭手(3件中的第2件)。",
"headArmoireNephriteHelmText": "绿玉帽子",
- "headArmoireTricornHatNotes": "成为一个革命性的开玩笑者! 增加<%= per %>感知。魔法衣橱:独立物品。",
+ "headArmoireTricornHatNotes": "成为一个革命性的开玩笑者! 增加<%= per %>点感知。魔法衣橱:独立物品。",
"headArmoireTricornHatText": "三角帽",
- "headMystery201907Notes": "没有什么说“我在这里放松!”就像一个向后的帽子。 没有属性加成。 2019年7月订户项目。",
+ "headMystery201907Notes": "没有什么说“我在这里放松!”就像一个向后的帽子。 没有属性加成。 2019年7月订阅者物品。",
"headMystery201907Text": "向后箭",
- "headMystery201904Notes": "这个圆圈中的蛋白石闪耀着彩虹的每一种颜色,赋予它各种神奇的属性。没有属性加成。 2019年4月订户项目。",
+ "headMystery201904Notes": "这个圆圈中的蛋白石闪耀着彩虹的每一种颜色,赋予它各种神奇的属性。没有属性加成。 2019年4月订阅者物品。",
"headMystery201904Text": "华丽的蛋白石圆环",
"headMystery201903Text": "头盔上金灿灿的部分",
"headAccessoryMystery201905Text": "耀眼的龙角",
- "backMystery201905Notes": "凭借这些彩虹色的翅膀飞向未知领域。没有属性加成。 2019年5月订阅赠品。",
- "shieldArmoirePolishedPocketwatchNotes": "你获得了时间。而且你戴着它很好看。增加<%= int %>点智力。魔法衣橱:独立物品。",
+ "backMystery201905Notes": "凭借这些彩虹色的翅膀飞向未知领域。没有属性加成。 2019年5月订阅者物品。",
+ "shieldArmoirePolishedPocketwatchNotes": "你获得了时间。而且你戴着它很好看。增加<%= int %>点智力。魔法衣橱:独立物品。",
"shieldArmoirePolishedPocketwatchText": "抛光怀表",
- "shieldArmoireTrustyUmbrellaNotes": "神秘事故往往伴随着恶劣的天气,所以要做好准备!增加<%= int%>点智力。魔法衣橱:侦探集(4件中的第4件)。",
+ "shieldArmoireTrustyUmbrellaNotes": "神秘事故往往伴随着恶劣的天气,所以要做好准备!增加<%= int %>点智力。魔法衣橱:侦探集(4件中的第4件)。",
"shieldArmoireTrustyUmbrellaText": "值得信赖的雨伞",
"shieldSpecialSummer2019MageNotes": "在夏日的阳光下出汗?没有!进行简单的元素召唤以填充百合池塘。增加<%= per %>点感知。2019夏季限量版装备。",
"shieldSpecialSummer2019MageText": "纯净水滴",
- "headMystery201903Notes": "有些人可能会称你为蛋头,但这没关系,因为你知道如何服用蛋黄。没有属性加成。 2019年3月订阅赠品。",
+ "headMystery201903Notes": "有些人可能会称你为蛋头,但这没关系,因为你知道如何服用蛋黄。没有属性加成。 2019年3月订阅者物品。",
"eyewearSpecialGreenHalfMoonText": "绿色半月形眼镜",
"eyewearSpecialBlueHalfMoonNotes": "带有蓝色镜框和月牙形镜片的眼镜。没有属性加成。",
"eyewearSpecialBlueHalfMoonText": "蓝色半月形眼镜",
"eyewearSpecialBlackHalfMoonNotes": "黑色镜框和月牙形镜片的眼镜。没有属性加成。",
"eyewearSpecialBlackHalfMoonText": "黑色半月形眼镜",
- "headAccessoryMystery201908Notes": "如果戴牛角使您的山羊飘浮,那您真幸运!没有属性加成。 2019年8月订阅赠品。",
+ "headAccessoryMystery201908Notes": "如果戴牛角使您的山羊飘浮,那您真幸运!没有属性加成。 2019年8月订阅者物品。",
"headAccessoryMystery201908Text": "自由牧神角",
- "headAccessoryMystery201906Notes": "传说,这些细腻的耳朵可以帮助人鱼听到深海所有居民的呼唤和歌曲!没有属性加成。 2019年6月的订阅赠品。",
+ "headAccessoryMystery201906Notes": "传说,这些细腻的耳朵可以帮助人鱼听到深海所有居民的呼唤和歌曲!没有属性加成。 2019年6月订阅者物品。",
"headAccessoryMystery201906Text": "和蔼可亲的锦鲤耳朵",
- "headAccessoryMystery201905Notes": "这些角像闪闪发光一样尖锐。没有属性加成。 2019年5月的订阅赠品。",
+ "headAccessoryMystery201905Notes": "这些角像闪闪发光一样尖锐。没有属性加成。 2019年5月订阅者物品。",
"eyewearSpecialYellowHalfMoonNotes": "黄色镜框和月牙形镜片的眼镜。没有属性加成。",
"eyewearSpecialYellowHalfMoonText": "黄色半月形眼镜",
"eyewearSpecialWhiteHalfMoonNotes": "带有白色镜架和月牙形镜片的眼镜。没有属性加成。",
@@ -1908,9 +1908,9 @@
"eyewearSpecialGreenHalfMoonNotes": "带绿色镜框和月牙形镜片的眼镜。没有属性加成。",
"weaponSpecialFall2019RogueNotes": "无论您是指挥乐队还是演唱咏叹调,这款有用的设备都可以使您的双手腾出来,做出生动的手势!增加<%= str%>点力量。 2019年秋季限量版装备。",
"weaponSpecialFall2019RogueText": "乐谱架",
- "weaponSpecialFall2019HealerNotes": "这种系统可以唤起人们长期杀戮的精神,并利用其治愈能力。\n智力提高<%= int%>点。 \n2019年秋季限量版装备。",
+ "weaponSpecialFall2019HealerNotes": "这种系统可以唤起人们长期杀戮的精神,并利用其治愈能力。增加<%= int%>点智力。 2019年秋季限量版装备。",
"weaponSpecialFall2019HealerText": "可怕的文字",
- "weaponSpecialFall2019MageNotes": "无论是制造雷电,制造工事,还是只是将恐怖袭击到凡人的心中,这只魔杖都赋予了巨人创造奇迹的力量。\n智力提高<%= int%>点,感知提高<%= per%>点。 \n2019年秋季限量版装备。",
+ "weaponSpecialFall2019MageNotes": "无论是制造雷电,制造工事,还是只是将恐怖袭击到凡人的心中,这只魔杖都赋予了巨人创造奇迹的力量。增加<%= int %>点智力和<%= per %>点感知。 2019年秋季限量版装备。",
"weaponSpecialFall2019MageText": "独眼魔杖",
"weaponSpecialFall2019WarriorNotes": "准备用渡鸦的爪子杀死敌人!增加<%= str%>点力量。 2019年秋季限量版装备。",
"weaponSpecialFall2019WarriorText": "三叉脚爪",
@@ -1918,29 +1918,29 @@
"weaponSpecialKS2019Notes": "这件长柄武器有着狮鹫的喙和爪一般的弧度,当前方的任务令人望而生畏,它能令你重振旗鼓。增加<%= str %>点力量。",
"eyewearSpecialFall2019RogueNotes": "你以为一个盖住整脸的面罩会比较能保护你的身份,可是大家会被它的特出的设计感到惊奇。他们不会注意到突出的特征!没有属性加成。2019年秋季限量版装备。",
"eyewearSpecialFall2019RogueText": "白如骨的半面罩",
- "armorSpecialFall2019WarriorNotes": "这些羽毛长袍赋予你飞行的能力,让你能在任何战斗中翱翔。增加 <%= con %>点体质。2019年秋季限定装备。",
- "armorSpecialFall2019HealerNotes": "据说这些长袍是由纯净的黑夜制成的。明智地使用黑暗之力!增加 <%= con %>点体质。2019年秋季限定装备。",
+ "armorSpecialFall2019WarriorNotes": "这些羽毛长袍赋予你飞行的能力,让你能在任何战斗中翱翔。增加<%= con %>点体质。2019年秋季限定装备。",
+ "armorSpecialFall2019HealerNotes": "据说这些长袍是由纯净的黑夜制成的。明智地使用黑暗之力!增加<%= con %>点体质。2019年秋季限定装备。",
"armorSpecialFall2019HealerText": "黑暗长袍",
"armorSpecialFall2019WarriorText": "暗夜之翼",
- "armorSpecialKS2019Notes": "这个在内部像狮鹫高贵的内心一样闪闪发光的护甲,鼓励你为获得的成就而感到自豪。增加 <%= con %>点体质。",
+ "armorSpecialKS2019Notes": "这个在内部像狮鹫高贵的内心一样闪闪发光的护甲,鼓励你为获得的成就而感到自豪。增加<%= con %>点体质。",
"armorSpecialKS2019Text": "史诗狮鹫护甲",
"weaponArmoireShadowMastersMaceNotes": "当你挥舞这个发光的权杖时,黑暗生物将服从你的每一个指令。增加<%= per %>点感知。魔法衣橱:暗影大师套装(4件中的第3件)。",
"weaponArmoireShadowMastersMaceText": "暗影大师的权杖",
"armorSpecialFall2019MageText": "波吕斐摩斯的罩衫",
"armorMystery201910Text": "隐秘的护甲",
- "armorMystery201909Notes": "你的强硬的外壳会保护你,可是你还应该留意松鼠... 没有属性加成。2019 年 9 月订阅赠品。",
+ "armorMystery201909Notes": "你的强硬的外壳会保护你,可是你还应该留意松鼠... 没有属性加成。2019 年 9 月订阅者物品。",
"armorMystery201909Text": "友好的橡子护甲",
- "armorSpecialFall2019MageNotes": "它的同名遇到一个悲惨的结果。但是,你不会这么容易被骗!带了这个传奇的罩衫,没人会超过你。增加 <%= int %>点体质。2019年秋季限定装备。",
+ "armorSpecialFall2019MageNotes": "它的同名遇到一个悲惨的结果。但是,你不会这么容易被骗!带了这个传奇的罩衫,没人会超过你。增加<%= int %>点体质。2019年秋季限定装备。",
"eyewearSpecialKS2019Text": "神话狮鹫面罩",
- "armorMystery201910Notes": "这个隐秘的护甲上刀山下火海,无所不能地保护你。没有属性加成。2019 年 10 月订阅赠品。",
- "armorSpecialFall2019RogueNotes": "这套衣服配有白手套,非常适合在剧院私人套间中沉思,或在宏伟的楼梯出现时让人诧异。增加 <%= per %>点感知。2019年秋季限定装备。",
+ "armorMystery201910Notes": "这个隐秘的护甲上刀山下火海,无所不能地保护你。没有属性加成。2019 年 10 月订阅者物品。",
+ "armorSpecialFall2019RogueNotes": "这套衣服配有白手套,非常适合在剧院私人套间中沉思,或在宏伟的楼梯出现时让人诧异。增加<%= per %>点感知。2019年秋季限定装备。",
"armorSpecialFall2019RogueText": "歌剧外套",
"weaponArmoireAlchemistsDistillerNotes": "用这个光亮铜管仪器净化铁和别的神奇化合物。增加<%= str %>点力量和<%= int %>点智力。魔法衣橱:炼金术士套装(4件中的第3件)。",
"shieldArmoireAlchemistsScaleText": "炼金术士的测量规模",
"headArmoireAlchemistsHatText": "炼金术士的帽子",
"armorArmoireAlchemistsRobeText": "炼金术士的披肩",
"weaponArmoireAlchemistsDistillerText": "炼金术士的蒸馏器",
- "weaponMystery201911Notes": "这个法杖的水晶球可以让你看到前程,但你必须小心!用这么危险的知识会出乎意料地改变一个人。没有属性加成。2019年11月捐赠者物品。",
+ "weaponMystery201911Notes": "这个法杖的水晶球可以让你看到前程,但你必须小心!用这么危险的知识会出乎意料地改变一个人。没有属性加成。2019年11月订阅者物品。",
"weaponMystery201911Text": "神奇水晶法杖",
"shieldArmoireMasteredShadowNotes": "你的法力已将这些漩涡状的暗影带到你的身边进行投标。增加感知和体质各<%= attrs %>点。魔法衣橱:暗影大师套装(4件中的第4件)。",
"headArmoireShadowMastersHoodNotes": "这个头罩让你在最暗的地方看得清。但是,你可能需要眼药水。增加感知和体质各<%= attrs %>点。魔法衣橱:暗影大师套装(4件中的第2件)。",
@@ -1949,16 +1949,16 @@
"armorArmoireShadowMastersRobeText": "暗影大师的长袍",
"headSpecialFall2019RogueText": "古董歌剧帽",
"eyewearSpecialKS2019Notes": "和狮鹫的... 嗯... 狮鹫没有面罩。它提醒你... 哦,你在开玩笑吧?它看起来很酷!没有属性加成。",
- "shieldSpecialKS2019Notes": "像狮鹫蛋一样闪闪发光,这个宏伟的盾展示如何在你自己负担小的时候、怎么样帮助别人。增加 <%= per %>点感知。",
- "headSpecialKS2019Notes": "有了狮鹫的相似和羽毛,这个辉煌的头盔代表你的能力、可以成为模范。增加 <%= int %>点智力。",
+ "shieldSpecialKS2019Notes": "像狮鹫蛋一样闪闪发光,这个宏伟的盾展示如何在你自己负担小的时候、怎么样帮助别人。增加<%= per %>点感知。",
+ "headSpecialKS2019Notes": "有了狮鹫的相似和羽毛,这个辉煌的头盔代表你的能力、可以成为模范。增加<%= int %>点智力。",
"shieldSpecialKS2019Text": "神话狮鹫盾",
"headSpecialKS2019Text": "神话狮鹫头盔",
"armorArmoireAlchemistsRobeNotes": "做神奇的铁或者砖石需要强烈的药水、可能有意料之外的副作用。这个披肩会保护你。增加<%= con %>点体质和<%= per %>点感知。魔法衣橱:炼金术士套装(4件中的第1件)。",
"eyewearSpecialFall2019HealerNotes": "用这个难以辨认的面具坚决抵抗最艰难的敌人。没有属性加成。2019年秋季限量版装备。",
"eyewearSpecialFall2019HealerText": "暗面具",
- "backMystery201912Notes": "用这双冰冷的翅膀默默地飞过闪闪发光的雪原和雪山。没有属性加成。 2019年12月订阅赠品。",
+ "backMystery201912Notes": "用这双冰冷的翅膀默默地飞过闪闪发光的雪原和雪山。没有属性加成。 2019年12月订阅者物品。",
"backMystery201912Text": "极地精灵翅膀",
- "shieldArmoireAlchemistsScaleNotes": "确保使用正确地仪器和精密地测量此神秘成分。增加<%= int %>点智力。魔法衣橱:炼金术士套装(4件中的第4件)。",
+ "shieldArmoireAlchemistsScaleNotes": "确保使用正确地仪器和精密地测量此神秘成分。增加<%= int %>点智力。魔法衣橱:炼金术士套装(4件中的第4件)。",
"shieldArmoireMasteredShadowText": "掌握到的暗影",
"shieldSpecialFall2019HealerNotes": "用这个魔咒,抵制医师的黑暗魔术!增加<%= con %>点体质。2019秋季限量版装备。",
"shieldSpecialFall2019HealerText": "怪诞的魔咒",
@@ -1966,14 +1966,14 @@
"shieldSpecialFall2019WarriorText": "渡鸦暗盾",
"headArmoireEarflapHatText": "耳罩帽",
"headArmoireEarflapHatNotes": "如果你想保持头部的温暖,可以戴上这顶帽子!增加智力和力量各<%= attrs %>点。魔法衣橱:风衣套装(2件中的第2件)。",
- "headArmoireAlchemistsHatNotes": "虽然帽子并不是炼金术中必不可少的元素,但酷的装扮的确不会伤害任何东西!增加<%= per %>感知。 魔法衣橱:炼金术士套装(4件中的第2件)。",
- "headMystery201912Notes": "无论你飞得多高,这片闪闪发光的雪花都能使您抵抗刺骨的寒冷!没有属性加成。2019年12月订户项目。",
+ "headArmoireAlchemistsHatNotes": "虽然帽子并不是炼金术中必不可少的元素,但酷的装扮的确不会伤害任何东西!增加<%= per %>点感知。 魔法衣橱:炼金术士套装(4件中的第2件)。",
+ "headMystery201912Notes": "无论你飞得多高,这片闪闪发光的雪花都能使您抵抗刺骨的寒冷!没有属性加成。2019年12月订阅者物品。",
"headMystery201912Text": "极地精灵冠",
- "headMystery201911Notes": "这顶帽子上的每个水晶点都赋予你一种特殊的能力:神秘的千里眼,神奇的智慧和... 板极的旋转? 那好吧。没有属性加成。2019年11月订户项目。",
+ "headMystery201911Notes": "这顶帽子上的每个水晶点都赋予你一种特殊的能力:神秘的千里眼,神奇的智慧和... 板极的旋转? 那好吧。没有属性加成。2019年11月订阅者物品。",
"headMystery201911Text": "神奇水晶帽子",
- "headMystery201910Notes": "这些火焰在你眼前揭示了奥秘的秘密!没有属性加成。 2019年10月订户项目。",
+ "headMystery201910Notes": "这些火焰在你眼前揭示了奥秘的秘密!没有属性加成。 2019年10月订阅者物品。",
"headMystery201910Text": "隐秘火焰",
- "headMystery201909Notes": "每个橡子需要戴帽子!呃,吸盘,如果你想了解它的技术。没有属性加成。 2019年9月订户项目。",
+ "headMystery201909Notes": "每个橡子需要戴帽子!呃,吸盘,如果你想了解它的技术。没有属性加成。 2019年9月订阅者物品。",
"headSpecialFall2019HealerNotes": "戴这个黑暗礼冠利用可怕的巫妖的力量。增加<%= int %>点智力。2019秋季限量版装备。",
"headMystery201909Text": "可爱的橡子帽",
"headSpecialFall2019HealerText": "黑暗礼冠",
@@ -1983,5 +1983,47 @@
"headSpecialFall2019WarriorText": "黑曜石骷髅头盔",
"headSpecialFall2019RogueNotes": "你是在可能被诅咒的服装拍卖中或者是在古怪的祖父母的阁楼中找到这个头饰的?不管你在哪里找它,这个头饰的年龄和磨损都会增加你的神秘感。增加<%= per %>点智力。2019夏季限量版装备。",
"armorArmoireDuffleCoatNotes": "穿这个舒适时尚羊毛大衣带你进入霜冻境界。增加体质和感知各<%= attrs %>点。魔法衣橱:风衣套装(2件中的第1件)。",
- "armorArmoireDuffleCoatText": "风衣"
+ "armorArmoireDuffleCoatText": "风衣",
+ "shieldSpecialWinter2020HealerNotes": "你是否觉得自己对这个世界来说,你太好了,太单纯了? 只有这种美丽的香料才能发挥作用。增加<%= con %>点体质。2019-2020冬季限量版装备。",
+ "shieldSpecialWinter2020WarriorNotes": "将其用作盾,直到种子掉落,然后可以将其放在花圈上!增加<%= con %>点体质。2019-2020冬季限量版装备。",
+ "headSpecialWinter2020HealerNotes": "请把它从你的头脱掉以后才用它煮茶或咖啡。增加<%= int %>点智力。2019-2020冬季限量版装备。",
+ "headSpecialWinter2020MageNotes": "哦! 这些铃铛/甜美的金铃铛/似乎都在说,/“用‘火焰爆轰’”增加<%= per %>点感知。2019-2020冬季限量版装备。",
+ "headSpecialWinter2020WarriorNotes": "头皮上的刺感是为了季节性宏伟所付出的代价。增加<%= str %>点力量。2019-2020冬季限量版装备。",
+ "headSpecialWinter2020RogueNotes": "一个盗贼戴着那顶帽子走在街上,人们就知道他什么都不怕。增加<%= per %>点感知。2019-2020冬季限量版装备。",
+ "armorSpecialWinter2020HealerNotes": "喜庆者的华丽礼服!增加<%= con %>点体质。2019-2020冬季限量版装备。",
+ "armorSpecialWinter2020MageNotes": "穿这个外套,在新的一年中,你可以温软地,舒服地,防止过度振动地欢迎新的一年。增加<%= int %>点智力。2019-2020冬季限量版装备。",
+ "headSpecialWinter2020MageText": "钟冠",
+ "headSpecialWinter2020HealerText": "八角茴香标志",
+ "shieldSpecialWinter2020WarriorText": "圆形针叶树锥",
+ "shieldSpecialWinter2020HealerText": "巨大的肉桂棒",
+ "headSpecialWinter2020WarriorText": "雪尘头饰",
+ "headSpecialWinter2020RogueText": "蓬松的长袜帽",
+ "armorSpecialWinter2020HealerText": "橙色果皮礼服",
+ "armorSpecialWinter2020MageText": "弯曲的外套",
+ "armorSpecialWinter2020WarriorNotes": "威武的松树,参天的冷杉,借我您的力量。 更确切地说,借我您的体质!增加<%= con %>点体质。2019-2020冬季限量版装备。",
+ "armorSpecialWinter2020WarriorText": "树皮护甲",
+ "armorSpecialWinter2020RogueNotes": "虽然你可以用自己内心的热情和专注来抵御暴风雨,但为天气穿适合的衣服并没有坏处。增加<%= per %>点感知。2019-2020冬季限量版装备。",
+ "armorSpecialWinter2020RogueText": "蓬松的派克大衣",
+ "weaponSpecialWinter2020HealerNotes": "把它挥舞一下以后,它的香气会召唤你的朋友和助手,让他们来烹饪和烘烤!增加<%= int %>点智力。2019-2020冬季限量版装备。",
+ "weaponSpecialWinter2020HealerText": "丁香权杖",
+ "weaponSpecialWinter2020MageNotes": "通过练习,你可以以任何所需的频率投射这种音乐魔术:沉思的嗡嗡声,喜庆的铃声或红色任务过期的警报!增加<%= int %>点智力和<%= per %>点感知。2019-2020冬季限量版装备。",
+ "weaponSpecialWinter2020MageText": "荡漾的声波",
+ "weaponSpecialWinter2020WarriorNotes": "后退,松鼠!你们将一无所获!...但是,如果你们要去玩并喝可可,那就太酷了。增加<%= str %>点力量。2019-2020冬季限量版装备。",
+ "weaponSpecialWinter2020WarriorText": "尖尖的针叶树锥",
+ "weaponSpecialWinter2020RogueNotes": "黑暗是盗贼的元素。那么,谁能更好地在一年中最黑暗的时间点亮路呢?增加<%= str %>点力量。2019-2020冬季限量版装备。",
+ "weaponSpecialWinter2020RogueText": "灯笼杆",
+ "backMystery202001Notes": "这些蓬松的尾巴有天体的力量,还有很高的可爱度!没有属性加成。2020年1月订阅者物品。",
+ "backMystery202001Text": "寓言的五个尾巴",
+ "headMystery202001Notes": "你的听力会听力会这么敏锐,你会听到星星的闪烁和月亮的旋转。没有属性加成。2020年1月订阅者物品。",
+ "headMystery202001Text": "寓言的狐狸耳朵",
+ "headSpecialNye2019Text": "古怪的派对帽子",
+ "headSpecialNye2019Notes": "你收到了一顶古怪的派对帽子!当新年钟声响起时,自豪地戴上这顶帽子吧!没有属性加成。",
+ "shieldArmoireBirthdayBannerNotes": "庆祝你的特殊日子,一个你爱的人的特殊日子,或者在1月31日庆祝Habitica的生日!增加<%= str %>点力量。魔法衣橱:生日快乐套装(4件中的第4件)。",
+ "shieldArmoireBirthdayBannerText": "生日横幅",
+ "headArmoireFrostedHelmNotes": "这个完美的头盔适合任何庆祝活动!增加<%= int %>点智力。 魔法衣橱:生日快乐套装(4件中的第1件)。",
+ "headArmoireFrostedHelmText": "糖衣头盔",
+ "armorArmoireLayerCakeArmorNotes": "它又有保护作用又好吃!增加<%= con %>点体质。魔法衣橱:生日快乐套装(4件中的第2件)。",
+ "armorArmoireLayerCakeArmorText": "千层蛋糕盔甲",
+ "weaponArmoireHappyBannerNotes": "“H”代表Happy,或者Habitica?这是你的选择!增加<%= per %>点感知。魔法衣橱:生日快乐套装(4件中的第3件)。",
+ "weaponArmoireHappyBannerText": "Happy旗帜"
}
diff --git a/website/common/locales/zh/generic.json b/website/common/locales/zh/generic.json
index 91f1bdd68d..1ae9a38c3e 100644
--- a/website/common/locales/zh/generic.json
+++ b/website/common/locales/zh/generic.json
@@ -27,7 +27,7 @@
"titleEquipment": "装备",
"titleTimeTravelers": "时空穿越者",
"titleSeasonalShop": "季度商店",
- "titleSettings": "设置",
+ "titleSettings": "设定",
"saveEdits": "保存编辑",
"showMore": "显示更多",
"showLess": "收起",
@@ -234,7 +234,7 @@
"dontBreakStreak": "太厉害了,不要停!",
"dontStop": "加油!别停!",
"levelUpShare": "通过养成好习惯,我在Habitica升级了!",
- "questUnlockShare": "我在Habitica解锁了一个新任务!",
+ "questUnlockShare": "我在Habitica解锁了一个新副本!",
"hatchPetShare": "我完成了我的任务,孵出了一个新宠物!",
"raisePetShare": "我完成了我的任务,培养了一匹新坐骑!",
"wonChallengeShare": "我在Habitica赢了一个挑战!",
@@ -292,7 +292,9 @@
"habiticaHasUpdated": "有一個新的Habitica更新。刷新以獲取最新版本!",
"contactForm": "联系管理员小组",
"options": "选项",
- "demo": "样本",
+ "demo": "演示",
"loadEarlierMessages": "载入早期信息",
- "finish": "完成"
+ "finish": "完成",
+ "congratulations": "恭喜你!",
+ "onboardingAchievs": "到职成就"
}
diff --git a/website/common/locales/zh/groups.json b/website/common/locales/zh/groups.json
index d259ac8293..6217144b51 100644
--- a/website/common/locales/zh/groups.json
+++ b/website/common/locales/zh/groups.json
@@ -3,8 +3,8 @@
"tavernChat": "酒馆",
"innCheckOut": "离开客栈",
"innCheckIn": "在客栈休息",
- "innText": "你正在酒馆中休息!当你在酒馆中时,你没完成的每日任务不会在一天结束时对你造成伤害,但是它们仍然会每天刷新。注意:如果你正在参与一个Boss战任务,你仍然会因为队友未完成的每日任务受到boss的伤害!同样,你对Boss的伤害(或者收集的道具)在你离开客栈之前不会结算。",
- "innTextBroken": "我想……你正在客酒馆中休息。入住酒馆以后,你的每日任务不会在每天结束时因为没完成而减少你的生命值,但它们仍然会每天刷新。但如果你正在参与一场BOSS战,怪物仍然会因为你所在队伍中的队友没完成每日任务而攻击到你,除非你的队友也在酒馆中休息。同样,你对怪物的伤害(或是收集的道具)在从客栈离开前页不会结算。唉好累啊……",
+ "innText": "你正在酒馆中休息!当你在酒馆中时,你没完成的每日任务不会在一天结束时对你造成伤害,但是它们仍然会每天刷新。注意:如果你正在参与一个Boss战副本,你仍然会因为队友未完成的每日任务受到Boss的伤害!同样,你对Boss的伤害(或者收集的道具)在你离开客栈之前不会结算。",
+ "innTextBroken": "我想……你正在客酒馆中休息。入住酒馆以后,你的每日任务不会在每天结束时因为没完成而减少你的生命值,但它们仍然会每天刷新。但如果你正在参与一场Boss战,怪物仍然会因为你所在队伍中的队友没完成每日任务而攻击到你,除非你的队友也在酒馆中休息。同样,你对怪物的伤害(或是收集的道具)在从客栈离开前页不会结算。唉好累啊……",
"innCheckOutBanner": "您目前已入住客栈。 你的每日任务不会对你造成伤害,你也不会在任务中取得进度。",
"innCheckOutBannerShort": "你现在入住了酒馆。",
"resumeDamage": "继续伤害",
@@ -46,7 +46,7 @@
"wantExistingParty": "想加入一个队伍吗? 点击 <%= linkStart %>Party Wanted Guild<%= linkEnd %> 把这个用户ID填上:",
"joinExistingParty": "加入别人的队伍",
"usernameCopied": "用户名已经复制到剪贴板。",
- "needPartyToStartQuest": "哇哦!在你开始一个任务之前,你需要创建或加入一个队伍!",
+ "needPartyToStartQuest": "哇哦!在你开始一个副本之前,你需要创建或加入一个队伍!",
"createGroupPlan": "建立",
"create": "建立",
"userId": "用户ID",
@@ -206,7 +206,7 @@
"likePost": "如果你喜欢这个公告请点击!",
"partyExplanation1": "和朋友们一起玩Habitica ,互相监督!",
"partyExplanation2": "与怪兽作战或者创建挑战!",
- "partyExplanation3": "现在,邀请朋友来获取探索任务卷轴!",
+ "partyExplanation3": "现在,邀请朋友来获取探索副本卷轴!",
"wantToStartParty": "你想创建一支队伍吗?",
"exclusiveQuestScroll": "邀请朋友加入队伍,你将获得独家副本卷轴,与他们一起挑战基础列表!",
"nameYourParty": "为你的队伍命名!",
@@ -220,8 +220,8 @@
"partyOnText": "加入了一个至少有四人的队伍!享受你增强的责任感,和伙伴们并肩作战,打倒敌人吧!",
"groupNotFound": "没有找到这个小组,或者你没有权限。",
"groupTypesRequired": "你必须提供一个有效的\"type\"查询字符串。",
- "questLeaderCannotLeaveGroup": "需要放弃已开始的探索任务才能退出团队。",
- "cannotLeaveWhileActiveQuest": "你不能在进行探索任务期间离开队伍。请先退出探索任务。",
+ "questLeaderCannotLeaveGroup": "需要放弃已开始的探索副本才能退出团队。",
+ "cannotLeaveWhileActiveQuest": "你不能在进行探索副本期间离开队伍。请先退出探索副本。",
"onlyLeaderCanRemoveMember": "只有小组长能移除一个成员!",
"cannotRemoveCurrentLeader": "你不能移除小组的组长。请先选出一个新组长。",
"memberCannotRemoveYourself": "你不能移除自己!",
@@ -418,9 +418,9 @@
"wantToJoinPartyTitle": "想要参加队伍吗?",
"wantToJoinPartyDescription": "将你的用户名发送给已有公会的朋友,或者到Party Wanted Guild遇到潜在的伙伴!",
"copy": "复制",
- "inviteToPartyOrQuest": "邀请队伍参加探索任务",
- "inviteInformation": "点击\"邀请\" 向队友发送一封邀请函。当所有队友都回应接受或拒绝,任务就会开始。",
- "questOwnerRewards": "任务拥有者奖励",
+ "inviteToPartyOrQuest": "邀请队伍参加探索副本",
+ "inviteInformation": "点击\"邀请\" 向队友发送一封邀请函。当所有队友都回应接受或拒绝,副本就会开始。",
+ "questOwnerRewards": "副本拥有者奖励",
"updateParty": "更新团队",
"upgrade": "升级",
"selectPartyMember": "选择一个队伍成员",
@@ -428,7 +428,7 @@
"reverseChat": "倒序查看消息",
"invites": "邀请",
"details": "详情",
- "participantDesc": "一旦所有成员都接受或拒绝,探索任务就会开始。 但只有点击“接受”的成员才能够参加探索任务并获得奖励。",
+ "participantDesc": "一旦所有成员都接受或拒绝,探索副本就会开始。 但只有点击“接受”的成员才能够参加探索副本并获得奖励。",
"groupGems": "小组宝石",
"groupGemsDesc": "公会宝石可以被用来发起挑战!在未来,你可以向公会添加更多宝石。",
"groupTaskBoard": "任务板",
@@ -444,7 +444,7 @@
"worldBossLink": "在Wiki上阅读更多关于以前的世界怪物的内容。",
"worldBossBullet1": "完成任务来攻击世界怪物",
"worldBossBullet2": "世界怪物不会因为你未完成的任务而伤害你,但它的怒气值会上升。 如果怒气值满了,怪物会攻击Habitica的店主之一!",
- "worldBossBullet3": "你可以继续进行日常怪物任务,伤害对双方都有效",
+ "worldBossBullet3": "你可以继续进行日常怪物副本,伤害对双方都有效",
"worldBossBullet4": "时常到酒馆来,看世界级大怪进度和疯狂战斗",
"worldBoss": "世界级怪物",
"groupPlanTitle": "需要更多的成员?",
diff --git a/website/common/locales/zh/limited.json b/website/common/locales/zh/limited.json
index e4c38f4317..9cc04f1608 100644
--- a/website/common/locales/zh/limited.json
+++ b/website/common/locales/zh/limited.json
@@ -60,80 +60,80 @@
"nye1": "新年快乐! 愿你收获很多的奖励。",
"nye2": "新年快乐! 愿你拥有很多完美日。",
"nye3": "新年快乐! 愿你的待办列表永远简短而甜蜜。",
- "nye4": "新年快乐! 但愿你别被暴怒的河马狮鹫攻击。",
- "holidayCard": "收到一封节日贺卡!",
- "mightyBunnySet": "强力兔(战士)",
- "magicMouseSet": "魔力鼠(法师)",
- "lovingPupSet": "可爱犬(医师)",
- "stealthyKittySet": "偷盗猫(盗贼)",
- "daringSwashbucklerSet": "无畏侠盗(战士)",
- "emeraldMermageSet": "绿宝石人鱼法师(法师)",
- "reefSeahealerSet": "暗礁海洋医师(医师)",
- "roguishPirateSet": "流浪海盗(盗贼)",
- "monsterOfScienceSet": "科学怪人(战士)",
- "witchyWizardSet": "怪异巫师(法师)",
- "mummyMedicSet": "木乃伊医师(医师)",
- "vampireSmiterSet": "吸血重击者(盗贼)",
- "bewareDogSet": "警惕犬(战士)",
- "magicianBunnySet": "魔术师的兔子(法师)",
- "comfortingKittySet": "抚慰小猫(医者)",
- "sneakySqueakerSet": "霹雳鼠(盗贼)",
- "sunfishWarriorSet": "翻车鱼战士(战士)",
- "shipSoothsayerSet": "船上预言者(法师)",
- "strappingSailorSet": "魁梧的水手(医师)",
- "reefRenegadeSet": "珊瑚礁的叛徒(盗贼)",
- "scarecrowWarriorSet": "稻草人战士(战士)",
- "stitchWitchSet": "缝纫巫师(法师)",
- "potionerSet": "制药医者(医师)",
- "battleRogueSet": "战-斗 盗贼 (盗贼)",
- "springingBunnySet": "春之兔(医师)",
+ "nye4": "新年快乐!但愿你别被暴怒的河马狮鹫攻击。",
+ "holidayCard": "收到一封节日贺卡!",
+ "mightyBunnySet": "强力兔(战士)",
+ "magicMouseSet": "魔力鼠(法师)",
+ "lovingPupSet": "可爱犬(医师)",
+ "stealthyKittySet": "偷盗猫(盗贼)",
+ "daringSwashbucklerSet": "无畏侠盗(战士)",
+ "emeraldMermageSet": "绿宝石人鱼法师(法师)",
+ "reefSeahealerSet": "暗礁海洋医师(医师)",
+ "roguishPirateSet": "流浪海盗(盗贼)",
+ "monsterOfScienceSet": "科学怪人(战士)",
+ "witchyWizardSet": "怪异巫师(法师)",
+ "mummyMedicSet": "木乃伊医师(医师)",
+ "vampireSmiterSet": "吸血重击者(盗贼)",
+ "bewareDogSet": "警惕犬(战士)",
+ "magicianBunnySet": "魔术师的兔子(法师)",
+ "comfortingKittySet": "抚慰小猫(医者)",
+ "sneakySqueakerSet": "霹雳鼠(盗贼)",
+ "sunfishWarriorSet": "翻车鱼战士(战士)",
+ "shipSoothsayerSet": "船上预言者(法师)",
+ "strappingSailorSet": "魁梧的水手(医师)",
+ "reefRenegadeSet": "珊瑚礁的叛徒(盗贼)",
+ "scarecrowWarriorSet": "稻草人战士(战士)",
+ "stitchWitchSet": "缝纫巫师(法师)",
+ "potionerSet": "制药医者(医师)",
+ "battleRogueSet": "战-斗盗贼(盗贼)",
+ "springingBunnySet": "春之兔(医师)",
"grandMalkinSet": "豪华的猫(法师)",
- "cleverDogSet": "灵巧的狗 (盗贼)",
- "braveMouseSet": "勇敢的鼠(战士)",
+ "cleverDogSet": "灵巧的狗(盗贼)",
+ "braveMouseSet": "勇敢的鼠(战士)",
"summer2016SharkWarriorSet": "鲨鱼战士(战士)",
- "summer2016DolphinMageSet": "海豚法师(法师)",
+ "summer2016DolphinMageSet": "海豚法师(法师)",
"summer2016SeahorseHealerSet": "海马医师(医师)",
"summer2016EelSet": "鳗鱼盗贼(盗贼)",
- "fall2016SwampThingSet": "沼泽怪物(战士)",
- "fall2016WickedSorcererSet": "邪恶巫师(法师)",
- "fall2016GorgonHealerSet": "蛇发女妖医师(医师)",
- "fall2016BlackWidowSet": "黑寡妇盗贼(盗贼)",
- "winter2017IceHockeySet": "冰上曲棍(战士)",
- "winter2017WinterWolfSet": "冬狼(法师)",
- "winter2017SugarPlumSet": "糖果医师(医师)",
- "winter2017FrostyRogueSet": "严霜盗贼(盗贼)",
- "spring2017FelineWarriorSet": "猫武士(战士)",
- "spring2017CanineConjurorSet": "狗狗魔术师(法师)",
- "spring2017FloralMouseSet": "花老鼠(医师)",
- "spring2017SneakyBunnySet": "鬼祟兔(盗贼)",
+ "fall2016SwampThingSet": "沼泽怪物(战士)",
+ "fall2016WickedSorcererSet": "邪恶巫师(法师)",
+ "fall2016GorgonHealerSet": "蛇发女妖医师(医师)",
+ "fall2016BlackWidowSet": "黑寡妇盗贼(盗贼)",
+ "winter2017IceHockeySet": "冰上曲棍(战士)",
+ "winter2017WinterWolfSet": "冬狼(法师)",
+ "winter2017SugarPlumSet": "糖果医师(医师)",
+ "winter2017FrostyRogueSet": "严霜盗贼(盗贼)",
+ "spring2017FelineWarriorSet": "猫武士(战士)",
+ "spring2017CanineConjurorSet": "狗狗魔术师(法师)",
+ "spring2017FloralMouseSet": "花老鼠(医师)",
+ "spring2017SneakyBunnySet": "鬼祟兔(盗贼)",
"summer2017SandcastleWarriorSet": "沙堡战士(战士)",
"summer2017WhirlpoolMageSet": "漩涡法师(法师)",
"summer2017SeashellSeahealerSet": "贝壳海洋医师(医师)",
"summer2017SeaDragonSet": "海龙(盗贼)",
- "fall2017HabitoweenSet": "万圣兔勇士(战士)",
- "fall2017MasqueradeSet": "假面舞会法师(法师)",
- "fall2017HauntedHouseSet": "鬼屋医师(医师)",
- "fall2017TrickOrTreatSet": "捣蛋盗贼(盗贼)",
- "winter2018ConfettiSet": "五彩纸屑法师 (法师)",
- "winter2018GiftWrappedSet": "被包裝紙包住的战士 (战士)",
- "winter2018MistletoeSet": "槲寄生医师 (医师)",
- "winter2018ReindeerSet": "驯鹿盗贼 (盗贼)",
- "spring2018SunriseWarriorSet": "晨曦战士(战士)",
- "spring2018TulipMageSet": "郁金香法师(法师)",
- "spring2018GarnetHealerSet": "石榴石医师(医师)",
- "spring2018DucklingRogueSet": "小鸭盗贼(盗贼)",
+ "fall2017HabitoweenSet": "万圣兔勇士(战士)",
+ "fall2017MasqueradeSet": "假面舞会法师(法师)",
+ "fall2017HauntedHouseSet": "鬼屋医师(医师)",
+ "fall2017TrickOrTreatSet": "捣蛋盗贼(盗贼)",
+ "winter2018ConfettiSet": "五彩纸屑法师(法师)",
+ "winter2018GiftWrappedSet": "被包裝紙包住的战士(战士)",
+ "winter2018MistletoeSet": "槲寄生医师(医师)",
+ "winter2018ReindeerSet": "驯鹿盗贼(盗贼)",
+ "spring2018SunriseWarriorSet": "晨曦战士(战士)",
+ "spring2018TulipMageSet": "郁金香法师(法师)",
+ "spring2018GarnetHealerSet": "石榴石医师(医师)",
+ "spring2018DucklingRogueSet": "小鸭盗贼(盗贼)",
"summer2018BettaFishWarriorSet": "斗鱼战士(战士)",
"summer2018LionfishMageSet": "狮子鱼法师(法师)",
"summer2018MerfolkMonarchSet": "人鱼王(医师)",
"summer2018FisherRogueSet": "渔夫盗贼(盗贼)",
- "fall2018MinotaurWarriorSet": "牛头怪(战士)",
- "fall2018CandymancerMageSet": "糖果巫师(法师)",
- "fall2018CarnivorousPlantSet": "食人花(医师)",
- "fall2018AlterEgoSet": "双面人(盗贼)",
- "winter2019BlizzardSet": "寒冰战士(战士)",
- "winter2019PyrotechnicSet": "烟火法师(法师)",
- "winter2019WinterStarSet": "冬夜闪耀(医师)",
- "winter2019PoinsettiaSet": "热情似火的圣诞花(盗贼)",
+ "fall2018MinotaurWarriorSet": "牛头怪(战士)",
+ "fall2018CandymancerMageSet": "糖果巫师(法师)",
+ "fall2018CarnivorousPlantSet": "食人花(医师)",
+ "fall2018AlterEgoSet": "双面人(盗贼)",
+ "winter2019BlizzardSet": "寒冰战士(战士)",
+ "winter2019PyrotechnicSet": "烟火法师(法师)",
+ "winter2019WinterStarSet": "冬夜闪耀(医师)",
+ "winter2019PoinsettiaSet": "热情似火的圣诞花(盗贼)",
"eventAvailability": "在<%= date(locale) %>前可购买。",
"dateEndMarch": "4月30日",
"dateEndApril": "4月19日",
@@ -147,7 +147,7 @@
"dateEndJanuary": "1月31日",
"dateEndFebruary": "2月28日",
"winterPromoGiftHeader": "赠送其他用户订阅服务的同时,您自己也能免费得到订阅者身份!",
- "winterPromoGiftDetails1": "本活动持续到1月15日,当你送给你的朋友一份订阅时,你可以免费得到相同的订阅时长!",
+ "winterPromoGiftDetails1": "本活动持续到1月6日,当你送给你的朋友一份订阅时,你可以免费得到相同的订阅时长!",
"winterPromoGiftDetails2": "请注意,如果您或您的礼物收件人已经有一个订阅了,作为礼物的订阅只会在原来的订阅取消后或者过期后开始生效。非常感谢你的支持!(*^_^*)",
"discountBundle": "一批",
"g1g1Announcement": "赠送他人一份订阅,免费享受一份相同订阅,活动正在进行中!",
@@ -168,5 +168,10 @@
"fall2019OperaticSpecterSet": "歌剧幽灵(盗贼)",
"september2018": "2018年9月",
"september2017": "2017年9月",
- "augustYYYY": "8月<%= year %>年"
+ "augustYYYY": "8月<%= year %>年",
+ "decemberYYYY": "12月<%= year %>年",
+ "winter2020LanternSet": "灯笼(盗贼)",
+ "winter2020WinterSpiceSet": "冬季香料(医者)",
+ "winter2020CarolOfTheMageSet": "法师的颂歌(法师)",
+ "winter2020EvergreenSet": "常绿(战士)"
}
diff --git a/website/common/locales/zh/loadingscreentips.json b/website/common/locales/zh/loadingscreentips.json
index a5fe233a3f..79bd7ec6dc 100644
--- a/website/common/locales/zh/loadingscreentips.json
+++ b/website/common/locales/zh/loadingscreentips.json
@@ -6,7 +6,7 @@
"tip4": "在一个任务名前使用#号能使任务名变的很大!",
"tip5": "最好在早上施放增益魔法,那样持续时间会更长久。",
"tip6": "悬停在一个任务上,然后单击这些圆点,可以访问高级任务控件,例如可以将任务推到列表顶部/底部。",
- "tip7": "如果队伍的成员使用了相同的背景的话,有些背景可以完美的连接起来。比如:高山湖泊,宝塔,起伏的山丘。",
+ "tip7": "如果队伍的成员使用了相同的背景的话,有些背景可以完美的连接起来。比如:高山湖泊,宝塔,起伏的山丘。",
"tip8": "通过在聊天中单击他们的名字,然后在他们的个人信息的顶部点击信封图标,来发送私信给某人!",
"tip9": "在物品栏、商店、公会和挑战中使用过滤器和搜索,可以快速找到你想要的东西。",
"tip10": "你可以通过挑战赢得钻石。每一天都有会新的挑战!",
diff --git a/website/common/locales/zh/loginincentives.json b/website/common/locales/zh/loginincentives.json
index 32ae0ee3af..bf006e72f3 100644
--- a/website/common/locales/zh/loginincentives.json
+++ b/website/common/locales/zh/loginincentives.json
@@ -1,5 +1,5 @@
{
- "unlockedReward": "你收到了 <%= reward %>",
+ "unlockedReward": "你收到了<%= reward %>",
"earnedRewardForDevotion": "因为努力地改善自己的生活,你赢得了一个<%= reward %>。",
"nextRewardUnlocksIn": "继续签到直到获得下次战利品吧!剩余签到数:<%= numberOfCheckinsLeft %>",
"awesome": "哟嚯!!",
diff --git a/website/common/locales/zh/maintenance.json b/website/common/locales/zh/maintenance.json
index d338f45054..284157e88e 100644
--- a/website/common/locales/zh/maintenance.json
+++ b/website/common/locales/zh/maintenance.json
@@ -21,7 +21,7 @@
"maintenanceInfoHowLong": "维护持续多久?",
"maintenanceInfoHowLongText": "我们必须移动所有一百三十万Habitica用户的任务和数据 -- 这不是一个容易的任务!我们预期将发生在大约太平洋时间下午1点 (8pm UTC)到太平洋时间晚10点 (5am UTC)。请放心,我们会竭尽所能使维护更快!你能关注我们Twitter上的更新。",
"maintenanceInfoStatsAffected": "我的每日任务,连击数,增益魔法和探索任务将受到怎样的影响?",
- "maintenanceInfoStatsAffectedText1": "你将“不会”在这个周末受到任何伤害或丢失任何连击数,但是另外的,你的天数会正常复位!你打卡的每日任务将会变成未打卡状态,增益魔法将重置,等等。如果你在一个采集任务中,你仍然会找到物品。如果你在BOSS战中,你仍然对BOSS造成伤害,但BOSS不能伤害你。(甚至怪物也需要打个小盹!)",
+ "maintenanceInfoStatsAffectedText1": "你将“不会”在这个周末受到任何伤害或丢失任何连击数,但是另外的,你的天数会正常复位!你打卡的每日任务将会变成未打卡状态,增益魔法将重置,等等。如果你在一个采集副本中,你仍然会找到物品。如果你在BOSS战中,你仍然对BOSS造成伤害,但BOSS不能伤害你。(甚至怪物也需要打个小盹!)",
"maintenanceInfoStatsAffectedText2": "在思索了很多之后,我们团队得出结论,对于维护期间很多用户不能正常打卡的事,这是最公平的处理方法了。我们对此带来的不便感到非常抱歉!",
"maintenanceInfoSeeTasks": "在当前状况下我是否需要去看我的任务列表?",
"maintenanceInfoSeeTasksText": "你是否知道你需要在周六检视你的任务列表来提醒自己要做什么,我们建议在维护开始前这样做,对你的任务截图以便于能用来做参考。",
diff --git a/website/common/locales/zh/messages.json b/website/common/locales/zh/messages.json
index 128b75a382..c25d28a44b 100644
--- a/website/common/locales/zh/messages.json
+++ b/website/common/locales/zh/messages.json
@@ -24,9 +24,9 @@
"messageDropFood": "你发现了<%= dropText %>!",
"messageDropEgg": "你找到了一个 <%= dropText %>蛋!",
"messageDropPotion": "你找到了一瓶<%= dropText %>孵化药水!",
- "messageDropQuest": "你找到一个任务!",
+ "messageDropQuest": "你找到一个副本!",
"messageDropMysteryItem": "你打开了盒子,得到了<%= dropText %>!",
- "messageFoundQuest": "你找到了新剧情任务\"<%= questText %>\"!",
+ "messageFoundQuest": "你找到了新剧情副本\"<%= questText %>\"!",
"messageAlreadyPurchasedGear": "你之前已经购买了这件装备,但现在它已经不属于你了。你可以重新在任务页面的奖励栏里购买它。",
"messageAlreadyOwnGear": "你已经拥有了这个道具,可以在装备页面上装配它。",
"previousGearNotOwned": "在这之前你需要购买一个较低级的装备。",
@@ -53,7 +53,7 @@
"messageGroupChatAdminClearFlagCount": "只有管理员可以去除标记计数!",
"messageCannotFlagSystemMessages": "你无法举报系统信息。如果你要举报与此信息相关的违反社区守则的行为,请将相关截图和解释说明发送给我们的社区管理员:<%= communityManagerEmail %>。",
"messageGroupChatSpam": "嚯呀,看上去你发布太多信息了!请稍等一下再试一次。酒馆的聊天记录一次只能保存200条,所以Habitica鼓励更长的发帖间隔时间、更考虑周到的消息和更全面的回复。迫不及待想知道你要说什么。:)",
- "messageCannotLeaveWhileQuesting": "你不能一边做任务卷轴一边接受这个队伍邀请。如果你想加入这个队伍,你先要放弃你的任务卷轴,这在你的队伍界面上可以操作。你会拿到退回的任务卷轴。",
+ "messageCannotLeaveWhileQuesting": "你不能一边做副本卷轴一边接受这个队伍邀请。如果你想加入这个队伍,你先要放弃你的副本卷轴,这在你的队伍界面上可以操作。你会拿到退回的副本卷轴。",
"messageUserOperationProtected": "路径 `<%= operation %>`因受到保护未保存。",
"messageUserOperationNotFound": "无法找到操作:<%= operation %>",
"messageNotificationNotFound": "找不到消息。",
diff --git a/website/common/locales/zh/npc.json b/website/common/locales/zh/npc.json
index f0c7607513..8a7daa903f 100644
--- a/website/common/locales/zh/npc.json
+++ b/website/common/locales/zh/npc.json
@@ -73,10 +73,10 @@
"cannotUnpinArmoirPotion": "治疗药水和魔法衣橱不能被取消固定。",
"purchasedItem": "您购买了<%= itemName %>",
"ian": "岚",
- "ianText": "欢迎来到副本商店!在这里你可以购买任务卷轴,和你的朋友一起与怪物战斗。快在右边挑选一个任务带走吧!",
- "ianTextMobile": "我可以向你推荐一些任务卷轴吗?和你的队伍一起,激活他们与怪物战斗吧!",
- "ianBrokenText": "欢迎来到任务商店……这里你可以使用任务卷轴来同你的朋友一起与怪物战斗……请一定要到右边栏来看看我们为您精心准备的任务卷轴……",
- "featuredQuests": "特色任务!",
+ "ianText": "欢迎来到副本商店!在这里你可以购买副本卷轴,和你的朋友一起与怪物战斗。快在右边挑选一个副本带走吧!",
+ "ianTextMobile": "我可以向你推荐一些副本卷轴吗?和你的队伍一起,激活他们与怪物战斗吧!",
+ "ianBrokenText": "欢迎来到副本商店……这里你可以使用副本卷轴来同你的朋友一起与怪物战斗……请一定要到右边栏来看看我们为您精心准备的副本卷轴……",
+ "featuredQuests": "特色副本!",
"cannotBuyItem": "你不能购买这个物品。",
"mustPurchaseToSet": "必须购买 <%= val %>来把它使用在<%= key %>上。",
"typeRequired": "需要Type",
@@ -113,7 +113,7 @@
"paymentSubBilling": "您的订阅费用为每<%= months %>月<%= amount %> 美元 。",
"success": "成功!",
"classGear": "职业装备",
- "classGearText": "祝贺你选了一个职业!我已经将你的的基本武器放到物品栏了。看看下面来装备它吧!",
+ "classGearText": "祝贺你选了一个职业!我已经将你的基本武器放到物品栏了。看看下面来装备它吧!",
"classStats": "这是你职业的属性点:它们会影响游戏的操作和过程。每次升级时,你将获得一点自由分配点,用来给某一特定属性加成。将鼠标悬停在每个属性上来查看更多信息。",
"autoAllocate": "自动分配",
"autoAllocateText": "如果“自动分配”被选中,你的人物会自动根据你的任务的属性获得属性点,你可以在任务>编辑>高级设置>属性分配中找到它。例如,如果你经常点健身房任务,并且你的“健身房”每日任务设置为“力量”,你就会自动获得力量点数。",
@@ -169,5 +169,6 @@
"imReady": "进入Habitica",
"limitedOffer": "有效期至<%= date %>",
"paymentCanceledDisputes": "我们已为您的电子邮件发送了取消确认。如果您没有看到电子邮件,请联系我们,以防止将来发生账单纠纷。",
- "paymentAutoRenew": "此订阅在被取消前会自动续订。你可以在设置里取消订阅。"
+ "paymentAutoRenew": "此订阅在被取消前会自动续订。你可以在设置里取消订阅。",
+ "cannotUnpinItem": "您不能取消这个物品的固定。"
}
diff --git a/website/common/locales/zh/overview.json b/website/common/locales/zh/overview.json
index a8ba3ce94a..cc48c5e7d8 100644
--- a/website/common/locales/zh/overview.json
+++ b/website/common/locales/zh/overview.json
@@ -5,6 +5,6 @@
"step2": "第二步:完成现实生活中的任务以获取经验值",
"webStep2Text": "现在,开始解决你列表中的目标!你在Habitica中完成了任务后会获得能让你升级的[经验](http://habitica.fandom.com/wiki/Experience_Points),和能让你购买奖励的[金币](http://habitica.fandom.com/wiki/Gold_Points)。如果你有了坏习惯或者没有完成每日任务,你会失去 [生命](http://habitica.fandom.com/wiki/Health_Points)。以这种方式,Habitica的经验条和生命条就会像指示器一样显示出你完成目标的进度。你就能通过你的游戏角色看见你在现实生活中的提升。",
"step3": "第三步:自定义和探索 Habitica",
- "webStep3Text": "当你熟悉了基本使用方法后, 你就可以在下面完成进阶目标:\n * 给你的任务标上 [tags](http://habitica.fandom.com/wiki/Tags) (编辑一个任务来添加)。\n * 自定义你的角色形象 [avatar](http://habitica.fandom.com/wiki/Avatar) ,点击最顶上右边的用户图标。\n * 在奖励区购买你的 [装备](http://habitica.fandom.com/wiki/Equipment) 或者在 [商店](<%= shopUrl %>)也行, 在这里装备上 [Inventory > Equipment](<%= equipUrl %>).\n * 和其他玩家在 [酒馆](http://habitica.fandom.com/wiki/Tavern)聊天。\n * Level 3级后, 就可以孵化 [宠物](http://habitica.fandom.com/wiki/Pets) 通过收集[宠物蛋](http://habitica.fandom.com/wiki/Eggs) 以及 [hatching potions](http://habitica.fandom.com/wiki/Hatching_Potions). [喂](http://habitica.fandom.com/wiki/Food) 你的宠物食物来让他们成为 [坐骑](http://habitica.fandom.com/wiki/Mounts).\n * 达到等级10后: 选择一个角色职业[class](http://habitica.fandom.com/wiki/Class_System) 并且使用职业专属[技能](http://habitica.fandom.com/wiki/Skills) (等级11-14).\n * 和朋友一起创建队伍 (点击 [队伍](<%= partyUrl %>) 在顶上的导航栏)来保持联系和赢得奖励。\n * 击败怪物并且收集掉落物 在 [任务](http://habitica.fandom.com/wiki/Quests) (15级后你就会被给与一个任务).",
+ "webStep3Text": "当你熟悉了基本使用方法后, 你就可以在下面完成进阶目标:\n * 给你的任务标上 [tags](http://habitica.fandom.com/wiki/Tags) (编辑一个任务来添加)。\n * 自定义你的角色形象 [avatar](http://habitica.fandom.com/wiki/Avatar) ,点击最顶上右边的用户图标。\n * 在奖励区购买你的 [装备](http://habitica.fandom.com/wiki/Equipment) 或者在 [商店](<%= shopUrl %>)也行, 在这里装备上 [Inventory > Equipment](<%= equipUrl %>).\n * 和其他玩家在 [酒馆](http://habitica.fandom.com/wiki/Tavern)聊天。\n * Level 3级后, 就可以孵化 [宠物](http://habitica.fandom.com/wiki/Pets) 通过收集[宠物蛋](http://habitica.fandom.com/wiki/Eggs) 以及 [hatching potions](http://habitica.fandom.com/wiki/Hatching_Potions). [喂](http://habitica.fandom.com/wiki/Food) 你的宠物食物来让他们成为 [坐骑](http://habitica.fandom.com/wiki/Mounts).\n * 达到等级10后: 选择一个角色职业[class](http://habitica.fandom.com/wiki/Class_System) 并且使用职业专属[技能](http://habitica.fandom.com/wiki/Skills) (等级11-14).\n * 和朋友一起创建队伍 (点击 [队伍](<%= partyUrl %>) 在顶上的导航栏)来保持联系和赢得奖励。\n * 击败怪物并且收集掉落物在 [副本](http://habitica.fandom.com/wiki/Quests) (15级后你就会被给与一个副本).",
"overviewQuestions": "如有任何疑问,请查看我们的[FAQ](<%= faqUrl %>)! 如果您的问题没有被列出,您可以在[Habitica Help Guild](<%= helpGuildUrl %>)中寻求帮助。\n\n祝您好运!"
}
diff --git a/website/common/locales/zh/pets.json b/website/common/locales/zh/pets.json
index 40a47fccf3..36ed894ba6 100644
--- a/website/common/locales/zh/pets.json
+++ b/website/common/locales/zh/pets.json
@@ -28,8 +28,8 @@
"royalPurpleGryphon": "紫御狮鹫",
"phoenix": "凤凰",
"magicalBee": "魔法蜜蜂",
- "hopefulHippogriffPet": "充满希望的鹰头马",
- "hopefulHippogriffMount": "充满希望的鹰头马",
+ "hopefulHippogriffPet": "希望天马",
+ "hopefulHippogriffMount": "希望天马",
"royalPurpleJackalope": "紫御鹿角兔",
"invisibleAether": "隐形以太",
"rarePetPop1": "按按金色的爪印查看怎么通过为Habitica贡献来获得这只稀有宠物!",
@@ -145,5 +145,5 @@
"notEnoughPetsMounts": "您还没有收集足够的宠物和坐骑",
"filterByWacky": "古怪",
"wackyPets": "古怪宠物",
- "gryphatrice": "狮鹫"
+ "gryphatrice": "狮鹫蛇"
}
diff --git a/website/common/locales/zh/quests.json b/website/common/locales/zh/quests.json
index e183300d71..d44ec49a11 100644
--- a/website/common/locales/zh/quests.json
+++ b/website/common/locales/zh/quests.json
@@ -1,41 +1,41 @@
{
- "quests": "任务",
- "quest": "任务",
- "whereAreMyQuests": "现在你能在单独的页面上查看任务了!点击物品栏->任务查看任务。",
- "yourQuests": "你的任务",
- "questsForSale": "购买任务",
- "petQuests": "宠物和坐骑任务",
- "unlockableQuests": "未解锁的任务",
- "goldQuests": "大师鉴别者任务线",
- "questDetails": "任务详情",
- "questDetailsTitle": "任务详情",
- "questDescription": "任务允许玩家们与他们的队伍成员关注在游戏中长期的目标。",
+ "quests": "副本",
+ "quest": "副本",
+ "whereAreMyQuests": "现在你能在单独的页面上查看副本了!点击物品栏->副本查看副本。",
+ "yourQuests": "你的副本",
+ "questsForSale": "购买副本",
+ "petQuests": "宠物和坐骑副本",
+ "unlockableQuests": "未解锁的副本",
+ "goldQuests": "大师鉴别者副本线",
+ "questDetails": "副本详情",
+ "questDetailsTitle": "副本详情",
+ "questDescription": "副本允许玩家们与他们的队伍成员关注在游戏中长期的目标。",
"invitations": "邀请",
"completed": "完成了!",
- "rewardsAllParticipants": "任务参与者的奖励",
- "rewardsQuestOwner": "探索任务拥有者的额外奖励",
- "questOwnerReceived": "探索任务拥有者已经收到",
+ "rewardsAllParticipants": "副本参与者的奖励",
+ "rewardsQuestOwner": "探索副本拥有者的额外奖励",
+ "questOwnerReceived": "探索副本拥有者已经收到",
"youWillReceive": "你将得到",
- "questOwnerWillReceive": "探索任务的拥有者也会收到",
+ "questOwnerWillReceive": "探索副本的拥有者也会收到",
"youReceived": "你收到了",
- "dropQuestCongrats": "恭喜得到探索任务卷轴!你可以现在立即邀请队伍并开始任务,或以后再从你的物品栏>任务里开始该任务。",
- "questSend": "点击\"邀请\" 向队友发送一封邀请函。当所有队友都回应接受或拒绝,任务就会开始。在社交>队伍查看详细。",
- "questSendBroken": "点击\"邀请\" 向队友发送一封邀请函。当所有队友都回应接受或拒绝,任务就会开始。在社交>队伍查看详细。",
- "inviteParty": "邀请队伍参加探索任务",
- "questInvitation": "任务邀请: ",
- "questInvitationTitle": "任务邀请",
+ "dropQuestCongrats": "恭喜得到探索副本卷轴!你可以现在立即邀请队伍并开始副本,或以后再从你的物品栏>副本里开始该副本。",
+ "questSend": "点击\"邀请\" 向队友发送一封邀请函。当所有队友都回应接受或拒绝,副本就会开始。在社交>队伍查看详细。",
+ "questSendBroken": "点击\"邀请\" 向队友发送一封邀请函。当所有队友都回应接受或拒绝,副本就会开始。在社交>队伍查看详细。",
+ "inviteParty": "邀请队伍参加探索副本",
+ "questInvitation": "副本邀请: ",
+ "questInvitationTitle": "副本邀请",
"questInvitationInfo": "探索任务邀请<%= quest %>",
- "invitedToQuest": "你被邀请加入任务<%= quest %>",
+ "invitedToQuest": "你被邀请加入副本<%= quest %>",
"askLater": "稍后再问",
- "questLater": "后续任务",
- "buyQuest": "购买任务",
+ "questLater": "后续副本",
+ "buyQuest": "购买副本",
"accepted": "接受了",
"declined": "拒绝",
"rejected": "拒绝的",
- "pending": "悬停中",
- "questStart": "一旦所有成员都接受或拒绝,任务就开始了。只有那些点击“接受”者可以参加任务并取得掉落物。如果成员回应时间太长(无活动?),任务拥有者可以透过点击“开始”,略过他们启动任务。任务拥有者还可以透过点击“取消”取消任务,并恢复任务卷轴。",
- "questStartBroken": "一旦所有成员都接受或拒绝,任务就开始了。只有那些点击“接受”者可以参加任务并取得掉落物。如果成员回应时间太长(无活动?),任务拥有者可以透过点击“开始”,略过他们启动任务。任务拥有者还可以透过点击“取消”取消任务,并恢复任务卷轴。",
- "questCollection": "即将寻找到+<%= val %>个任务探索物品",
+ "pending": "等待中",
+ "questStart": "一旦所有成员都接受或拒绝,副本就开始了。只有那些点击“接受”者可以参加副本并取得掉落物。如果有队员很久都处于“等待中”(不活跃?),副本发起人可以点击“开始”,启动副本,而忽略那些队员。副本发起人还可以点击“取消”取消副本,副本卷轴会还给发起人。",
+ "questStartBroken": "一旦所有成员都接受或拒绝,副本就开始了。只有那些点击“接受”者可以参加副本并取得掉落物。如果成员回应时间太长(无活动?),副本拥有者可以透过点击“开始”,略过他们启动副本。副本拥有者还可以透过点击“取消”取消副本,并恢复副本卷轴。",
+ "questCollection": "即将寻找到+<%= val %>个副本探索物品",
"questDamage": "即将对Boss造成+<%= val %>点伤害",
"begin": "开始",
"bossHP": "Boss 血量",
@@ -46,81 +46,81 @@
"collectionItems": "<%= number %> <%= items %>",
"itemsToCollect": "需要收集的道具",
"bossDmg1": "每一个完成的每日任务和待办事项,或是每培养一次好习惯都能攻击到BOSS。完成更加红色的任务或使用碎裂一击及火球术能给BOSS造成更多伤害。除了你自己的日常任务外,一旦队伍中的任何一人错过了自己的每日任务,你都会从BOSS那里受到额外的伤害值 (按BOSS的力量值成倍增加)! 所有对BOSS和来自BOSS的伤害会在重置时间进行结算 (你的日常重置时间)",
- "bossDmg2": "只有参与者才能与boss战斗并共享任务掉落。",
+ "bossDmg2": "只有参与者才能与boss战斗并共享副本掉落。",
"bossDmg1Broken": "每一个完成的每日任务和待办事项,或是每培养一次好习惯都能攻击到BOSS。完成深红色的任务或使用碎裂一击及火球术能给BOSS造成更多伤害。除了你自己的日常任务外,一旦队伍中的任何一人未完成自己的每日任务,你都会从BOSS那里受到额外的伤害值 (按BOSS的力量值成倍增加)! 所有对BOSS和来自BOSS的伤害会在重置时间进行结算 (你的日常重置时间)",
- "bossDmg2Broken": "只有参与者才能跟boss战斗并共享任务掉落。",
- "tavernBossInfo": "通过完成每日任务、待办事项或点击好习惯来伤害世界Boss!未完成的每日任务会填充BOSS的怒气条。当它怒气条满的时候会攻击1个NPC。世界Boss不会攻击个人或账户。只有不在客栈的玩家才能做这个任务。",
- "tavernBossInfoBroken": "通过完成每日任务、待办事项或记录好习惯来打败世界Boss!未完成的每日任务会填充BOSS的颓废值,当它颓废值满的时候会攻击1个NPC。世界Boss不会攻击个人或账户。另外,只有不在客栈的玩家才能做这个任务。",
+ "bossDmg2Broken": "只有参与者才能跟boss战斗并共享副本掉落。",
+ "tavernBossInfo": "通过完成每日任务、待办事项或点击好习惯来伤害世界Boss!未完成的每日任务会填充BOSS的怒气条。当它怒气条满的时候会攻击1个NPC。世界Boss不会攻击个人或账户。只有不在客栈的玩家才能做这个副本。",
+ "tavernBossInfoBroken": "通过完成每日任务、待办事项或记录好习惯来打败世界Boss!未完成的每日任务会填充BOSS的颓废值,当它颓废值满的时候会攻击1个NPC。世界Boss不会攻击个人或账户。另外,只有不在客栈的玩家才能做这个副本。",
"bossColl1": "你可以做积极的任务来收集物品。探索的物品会像普通物品一样掉落;你能通过将鼠标悬停在探索进度图标上查看这些掉落。",
- "bossColl2": "只有参与者才能收集物品并共享任务掉落。",
+ "bossColl2": "只有参与者才能收集物品并共享副本掉落。",
"bossColl1Broken": "你可以做积极的任务来收集物品……探索的物品会像普通物品一样掉落;你能通过将鼠标悬停在探索进度图标上查看这些掉落……",
- "bossColl2Broken": "只有参与者才能收集物品并共享任务掉落。",
+ "bossColl2Broken": "只有参与者才能收集物品并共享副本掉落。",
"abort": "舍弃",
- "leaveQuest": "放弃任务",
- "sureLeave": "你确定你要舍弃这个任务吗?这样做会消除所有进度。",
- "questOwner": "任务业主",
+ "leaveQuest": "放弃副本",
+ "sureLeave": "你确定你要舍弃这个副本吗?这样做会消除所有进度。",
+ "questOwner": "副本业主",
"questTaskDamage": "即将对Boss造成+<%= damage %>点伤害",
"questTaskCollection": "今天收集到了<%= items %> 个物品",
- "questOwnerNotInPendingQuest": "任务拥有者已经离开这个队伍,无法再启动这个任务。我们建议您现在取消它。任务拥有者将保留持有的任务卷轴。",
- "questOwnerNotInRunningQuest": "任务拥有者已经离开这个任务。如果你必须退出,你可以退出这个任务。你也可以繼續執行這個任务,其余所有参与者将会在完成任务时获得任务奖励。",
- "questOwnerNotInPendingQuestParty": "任务拥有者已经离开这个队伍,无法再启动这个任务。我们建议您现在取消它。任务卷轴将会回到任务拥有者处。",
- "questOwnerNotInRunningQuestParty": "任务拥有者已经离开这个队伍。如果你必须退出,你可以退出这个任务,但你也可以继续执行任务,其余所有参与者将会在完成任务时获得任务奖励。",
+ "questOwnerNotInPendingQuest": "副本拥有者已经离开这个队伍,无法再启动这个副本。我们建议您现在取消它。副本拥有者将保留持有的副本卷轴。",
+ "questOwnerNotInRunningQuest": "副本拥有者已经离开这个副本。如果你必须退出,你可以退出这个副本。你也可以繼續執行這個副本,其余所有参与者将会在完成副本时获得副本奖励。",
+ "questOwnerNotInPendingQuestParty": "副本拥有者已经离开这个队伍,无法再启动这个副本。我们建议您现在取消它。副本卷轴将会回到副本拥有者处。",
+ "questOwnerNotInRunningQuestParty": "副本拥有者已经离开这个队伍。如果你必须退出,你可以退出这个副本,但你也可以继续执行副本,其余所有参与者将会在完成副本时获得副本奖励。",
"questParticipants": "参与者",
- "scrolls": "任务卷轴",
- "noScrolls": "你没有任何任务卷轴。",
- "scrollsText1": "任务需要团队去完成。如果你想单独做任务,",
+ "scrolls": "副本卷轴",
+ "noScrolls": "你没有任何副本卷轴。",
+ "scrollsText1": "副本需要团队去完成。如果你想单独做副本,",
"scrollsText2": "你可以建立一个空团队",
- "scrollsPre": "你还没有解锁这项任务!",
- "alreadyEarnedQuestLevel": "你由于升到<%= level %>级,获得了这个任务。 ",
- "alreadyEarnedQuestReward": "由于你完成<%= priorQuest %>,而获得了这个任务 。 ",
- "completedQuests": "已完成任务",
+ "scrollsPre": "你还没有解锁这项副本!",
+ "alreadyEarnedQuestLevel": "你由于升到<%= level %>级,获得了这个副本。 ",
+ "alreadyEarnedQuestReward": "由于你完成<%= priorQuest %>,而获得了这个副本。 ",
+ "completedQuests": "已完成副本",
"mustComplete": "你要先完成<%= quest %>。",
- "mustLevel": "要开始这个任务,你需要达到等级<%= level %> 。",
- "mustLvlQuest": "你需要达到第<%= level %>级才能买这个任务!",
- "mustInviteFriend": "要完成这个任务,你需要邀请一个朋友加入你的队伍。现在就发出邀请吗?",
- "unlockByQuesting": "为了解锁这个任务,请先完成<%= title %>。",
- "questConfirm": "你肯定吗?你的 <%= totalmembers %> 个队伍成员中只有<%= questmembers %>个参加了这个探索任务!当所有的成员都参加或拒绝了探索任务,探索任务将会自动开启。",
- "sureCancel": "你是否确定要放弃这个探索任务?这将会失去所有已接受的邀请。探索任务拥有者将拿回探索任务卷轴。",
- "sureAbort": "你是否确定要放弃这个任务?这样做会让你的所有队员都退出这个任务,并且消除所有进度。任务卷轴将会回到任务拥有者手上。",
+ "mustLevel": "要开始这个副本,你需要达到等级<%= level %> 。",
+ "mustLvlQuest": "你需要达到第<%= level %>级才能买这个副本!",
+ "mustInviteFriend": "要完成这个副本,你需要邀请一个朋友加入你的队伍。现在就发出邀请吗?",
+ "unlockByQuesting": "为了解锁这个副本,请先完成<%= title %>。",
+ "questConfirm": "你肯定吗?你的 <%= totalmembers %> 个队伍成员中只有<%= questmembers %>个参加了这个探索副本!当所有的成员都参加或拒绝了探索副本,探索副本将会自动开启。",
+ "sureCancel": "你是否确定要放弃这个探索副本?这将会失去所有已接受的邀请。探索副本拥有者将拿回探索副本卷轴。",
+ "sureAbort": "你是否确定要放弃这个副本?这样做会让你的所有队员都退出这个副本,并且消除所有进度。副本卷轴将会回到副本拥有者手上。",
"doubleSureAbort": "你真的真的要这样做吗?要确保他们不会讨厌你一辈子哟!",
- "questWarning": "如果一个新的小队成员在任务开始前加入,他们会收到一个邀请。但是一旦任务开始了,新成员就无法再加入这个任务了。",
- "questWarningBroken": "如果一个新的小队成员在任务开始前加入,他们会收到一个邀请。但是一旦任务开始了,新成员就无法再加入这个任务了……",
+ "questWarning": "如果一个新的小队成员在副本开始前加入,他们会收到一个邀请。但是一旦副本开始了,新成员就无法再加入这个副本了。",
+ "questWarningBroken": "如果一个新的小队成员在副本开始前加入,他们会收到一个邀请。但是一旦副本开始了,新成员就无法再加入这个副本了……",
"bossRageTitle": "怒气值",
"bossRageDescription": "当这个条满的时候,boss会释放一个特殊攻击!",
- "startAQuest": "开始一个探索任务",
- "startQuest": "开始探索任务",
- "whichQuestStart": "你想要开始哪个探索任务?",
- "getMoreQuests": "获取更多探索任务",
- "unlockedAQuest": "你解锁了一个任务!",
- "leveledUpReceivedQuest": "你达到了 第 <%= level %> 级 ,并且收到了一个任务卷轴!",
- "questInvitationDoesNotExist": "还没有发出任何探索任务邀请。",
- "questInviteNotFound": "找不到探索任务邀请。",
- "guildQuestsNotSupported": "公会不能被邀请参加探索任务。",
- "questNotOwned": "你还没拥有那个探索任务卷轴。",
- "questNotGoldPurchasable": "探索任务\"<%= key %>\"不能用金币购买。",
- "questNotGemPurchasable": "任务“<%= key %>\"不可用宝石进行购买。",
- "questLevelTooHigh": "你必须达到等级<%= level %>来开始这个探索任务。",
- "questAlreadyUnderway": "你的队伍已经开始一个探索任务。当前探索任务结束后请再试一次。",
- "questAlreadyAccepted": "你已经接收探索任务邀请。",
- "noActiveQuestToLeave": "没有正进行的探索任务来退出",
- "questLeaderCannotLeaveQuest": "探索任务发起者不能离开探索任务",
- "notPartOfQuest": "您没有参加这个任务",
- "youAreNotOnQuest": "您没有参加这个任务",
- "noActiveQuestToAbort": "没有正进行的探索任务来放弃。",
- "onlyLeaderAbortQuest": "仅有小组长或任务发起者能放弃一个任务。",
- "questAlreadyRejected": "您已经拒绝了任务邀请。",
- "cantCancelActiveQuest": "你不能取消一个正进行的探索任务,请放弃任务。",
- "onlyLeaderCancelQuest": "仅有小组长或任务发起者能取消一个任务。",
- "questNotPending": "现在没有开始的探索任务。",
- "questOrGroupLeaderOnlyStartQuest": "仅有小组长或任务发起者能强制开始一个任务",
+ "startAQuest": "开始一个探索副本",
+ "startQuest": "开始探索副本",
+ "whichQuestStart": "你想要开始哪个探索副本?",
+ "getMoreQuests": "获取更多探索副本",
+ "unlockedAQuest": "你解锁了一个副本!",
+ "leveledUpReceivedQuest": "你达到了 第 <%= level %> 级 ,并且收到了一个副本卷轴!",
+ "questInvitationDoesNotExist": "还没有发出任何探索副本邀请。",
+ "questInviteNotFound": "找不到探索副本邀请。",
+ "guildQuestsNotSupported": "公会不能被邀请参加探索副本。",
+ "questNotOwned": "你还没拥有那个探索副本卷轴。",
+ "questNotGoldPurchasable": "探索副本\"<%= key %>\"不能用金币购买。",
+ "questNotGemPurchasable": "副本“<%= key %>\"不可用宝石进行购买。",
+ "questLevelTooHigh": "你必须达到等级<%= level %>来开始这个探索副本。",
+ "questAlreadyUnderway": "你的队伍已经开始一个探索副本。当前探索副本结束后请再试一次。",
+ "questAlreadyAccepted": "你已经接收探索副本邀请。",
+ "noActiveQuestToLeave": "没有正进行的探索副本来退出",
+ "questLeaderCannotLeaveQuest": "探索副本发起者不能离开探索副本",
+ "notPartOfQuest": "您没有参加这个副本",
+ "youAreNotOnQuest": "您没有参加这个副本",
+ "noActiveQuestToAbort": "没有正进行的探索副本来放弃。",
+ "onlyLeaderAbortQuest": "仅有小组长或副本发起者能放弃一个副本。",
+ "questAlreadyRejected": "您已经拒绝了副本邀请。",
+ "cantCancelActiveQuest": "你不能取消一个正进行的探索副本,请放弃副本。",
+ "onlyLeaderCancelQuest": "仅有小组长或副本发起者能取消一个副本。",
+ "questNotPending": "现在没有开始的探索副本。",
+ "questOrGroupLeaderOnlyStartQuest": "仅有小组长或副本发起者能强制开始一个副本",
"createAccountReward": "创建账户",
- "loginIncentiveQuest": "想得到这个探索任务?你还需要在Habitica历练 <%= count %> 天才有资格哦!",
- "loginIncentiveQuestObtained": "因为有了在Habitica历练 <%= count %> 天的经验,你可以去挑战这个探索任务啦!!",
+ "loginIncentiveQuest": "想得到这个探索副本?你还需要在Habitica历练 <%= count %> 天才有资格哦!",
+ "loginIncentiveQuestObtained": "因为有了在Habitica历练 <%= count %> 天的经验,你可以去挑战这个探索副本啦!!",
"loginReward": "<%= count %> 次签到",
- "createAccountQuest": "当你加人Habitica的时候,你会收到这个任务!如果你的朋友加入,他们也会得到一个。",
- "questBundles": "打折的任务包",
- "buyQuestBundle": "购买任务包",
- "noQuestToStart": "找不到一个可以开始的任务? 尝试查看市场上新版本的任务商店!",
+ "createAccountQuest": "当你加人Habitica的时候,你会收到这个副本!如果你的朋友加入,他们也会得到一个。",
+ "questBundles": "打折的副本包",
+ "buyQuestBundle": "购买副本包",
+ "noQuestToStart": "找不到一个可以开始的副本? 尝试查看市场上新版本的副本商店!",
"pendingDamage": "即将对Boss造成<%= damage %>点伤害",
"pendingDamageLabel": "即将造成的伤害",
"bossHealth": "<%= currentHealth %>/ <%= maxHealth %> 生命值",
@@ -131,11 +131,11 @@
"chatQuestCancelled": "<%= username %>取消了队伍副本<%= questName %>.",
"chatQuestAborted": "<%= username %>放弃了队伍副本<%= questName %>。",
"chatItemQuestFinish": "所有的物品都被找到啦!队伍因此获得了奖励。",
- "chatFindItems": "<%= username %>找到了<%= items %>.",
+ "chatFindItems": "<%= username %>找到了<%= items %>。",
"chatBossDefeated": "你们打败了<%= bossName %>!参与副本的成员获得了战利品。",
"chatBossDontAttack": "<%= username %>对<%= bossName %>造成了<%= userDamage %>点伤害。<%= bossName %>没有反击,因为它考虑到目前有些需要修复的错误,而不想不公平地伤害到任何人。但很快它将继续横冲直撞!",
"chatBossDamage": "<%= username %>对<%= bossName %>造成了<%= userDamage %>点伤害。<%= bossName %>对队伍造成了<%= bossDamage %>点伤害。",
- "chatQuestStarted": "你们的任务<%= questName %>已经开始啦。",
- "hatchingPotionQuests": "魔法孵化药水副本",
+ "chatQuestStarted": "你们的副本<%= questName %>已经开始啦。",
+ "hatchingPotionQuests": "魔法孵化药水任务",
"questInvitationNotificationInfo": "您受邀参与副本"
}
diff --git a/website/common/locales/zh/questscontent.json b/website/common/locales/zh/questscontent.json
index a663da2864..d52d9f3a90 100644
--- a/website/common/locales/zh/questscontent.json
+++ b/website/common/locales/zh/questscontent.json
@@ -1,63 +1,63 @@
{
"questEvilSantaText": "圣诞陷阱猎手",
- "questEvilSantaNotes": "冰原深处传来声声痛苦的嘶吼,其中夹杂着刺耳的咯咯笑声。你循声来到了一片林中空地,发现了一头成年北极熊。它被镣铐锁在笼子里,挣扎着想要逃出生天。一个妖精身穿破烂的圣诞装,正踩在笼子顶上开心地手舞足蹈。你决定战胜圣诞陷阱猎手,救出这头北极熊!",
+ "questEvilSantaNotes": "冰原深处传来声声痛苦的嘶吼,其中夹杂着刺耳的咯咯笑声。你循声来到了一片林中空地,发现了一头成年北极熊。它被镣铐锁在笼子里,挣扎着想要逃出生天。一个妖精身穿破烂的圣诞装,正踩在笼子顶上开心地手舞足蹈。你决定战胜圣诞陷阱猎手,救出这头北极熊!
注意:“圣诞陷阱猎手”奖励可堆叠的副本成就,但会奖励的稀有坐骑只能添加到你的马厩一次。",
"questEvilSantaCompletion": "圣诞陷阱猎手气得尖叫起来,纵身跃入夜幕之中。母熊低沉的吼声中充满了感激,似乎在诉说着什么。你把她带回马厩,驯兽师Matt Boch聆听着她带着恐惧的喘息讲述的故事。她还有个熊宝宝!小熊在母熊被陷阱抓住的时候跑入了冰原。",
"questEvilSantaBoss": "圣诞陷阱猎手",
- "questEvilSantaDropBearCubPolarMount": "北极熊 (坐骑)",
+ "questEvilSantaDropBearCubPolarMount": "北极熊(坐骑)",
"questEvilSanta2Text": "找熊崽",
- "questEvilSanta2Notes": "在北极熊坐骑被圣诞陷阱猎手抓住的时候,她的宝宝跑进了冰原。树枝咔嚓折断,踏雪嘎吱作响,清脆的声音回荡在森林中。这儿有爪印!你们开始追踪着这些足迹前进。只要不漏掉这些爪印和踩断的树枝,应该能找回北极熊的崽!",
+ "questEvilSanta2Notes": "在北极熊坐骑被圣诞陷阱猎手抓住的时候,她的宝宝跑进了冰原。树枝咔嚓折断,踏雪嘎吱作响,清脆的声音回荡在森林中。这儿有爪印!你们开始追踪着这些足迹前进。只要不漏掉这些爪印和踩断的树枝,应该能找回北极熊的崽!
注意:“找熊崽”奖励可堆叠的副本成就,但会奖励的稀有宠物只能添加到你的马厩一次。",
"questEvilSanta2Completion": "恭喜你找到了熊崽!它将永远陪着你。",
"questEvilSanta2CollectTracks": "爪印",
"questEvilSanta2CollectBranches": "踩断的树枝",
- "questEvilSanta2DropBearCubPolarPet": "北极熊 (宠物)",
+ "questEvilSanta2DropBearCubPolarPet": "北极熊(宠物)",
"questGryphonText": "火红的狮鹫",
"questGryphonNotes": "伟大的驯兽师,baconsaur,来到你的队伍寻求帮助。“冒险者们,求你们帮帮我!我珍贵的狮鹫跑掉了,她会威胁到Habitica大陆的安全!如果你能阻止她,我可以送你几个狮鹫蛋作报酬!”",
"questGryphonCompletion": "吃了败仗的强大猛兽灰溜溜地回到她主人那里。“干得好,冒险者们!我说话算话!”baconsaur大声说道,“请拿一些狮鹫蛋吧,我知道你会把它们好好养大!”",
"questGryphonBoss": "火红的狮鹫",
- "questGryphonDropGryphonEgg": "狮鹫 (宠物蛋)",
- "questGryphonUnlockText": "在市场上解锁狮鹫蛋以购买",
+ "questGryphonDropGryphonEgg": "狮鹫(宠物蛋)",
+ "questGryphonUnlockText": "在市场中解锁狮鹫蛋以购买",
"questHedgehogText": "巨型刺猬",
"questHedgehogNotes": "刺猬是一种有趣的动物,它们是Habitica居民最爱的宠物之一。但是有谣言称,如果你在午夜零点后喂它们牛奶,他们就会变得越来越暴躁,并且变大50倍。我的天,检查员InspectorCaracal刚刚就这么做了。",
"questHedgehogCompletion": "你们队伍成功地平定了巨型刺猬!她缩回原来的大小后,蹒跚着爬向她的蛋。她吱吱叫着把一些她的蛋推向你的队伍。但愿这些刺猬能更喜欢牛奶!",
"questHedgehogBoss": "巨型刺猬",
- "questHedgehogDropHedgehogEgg": "刺猬 (宠物蛋)",
- "questHedgehogUnlockText": "在市场上解锁刺猬蛋以购买",
+ "questHedgehogDropHedgehogEgg": "刺猬(宠物蛋)",
+ "questHedgehogUnlockText": "在市场中解锁刺猬蛋以购买",
"questGhostStagText": "春之幽灵",
"questGhostStagNotes": "啊,春天!春色又一次铺满大地。冬季的积雪早已融化,青翠的植物取代了寒冷的冰霜。树木舒展着嫩绿的树叶,草地恢复了往日的色彩。平原之上,艳丽的花儿竞相开放,神秘的白雾覆盖着这片大地……等等,为什么会有雾?“糟了,”检查员InspectorCaracal担忧地说,“看来是什么幽灵带来了这场大雾。天啊,它朝这里冲过来了!”",
"questGhostStagCompletion": "似乎毫发无伤的幽灵低下了头颅,用鼻子亲吻地面。平静的声音笼罩着你的队伍:“请接受我的道歉。我刚刚从沉睡中苏醒,我的意识显然还不太清醒。请收下这份礼物作为补偿。” 几颗蛋出现在幽灵的脚下。它即刻消失在了森林深处,在身后留下了点点飘落的花瓣。",
"questGhostStagBoss": "牡鹿幽灵",
- "questGhostStagDropDeerEgg": "鹿 (宠物蛋)",
- "questGhostStagUnlockText": "在市场上上解锁鹿蛋以购买",
+ "questGhostStagDropDeerEgg": "鹿(宠物蛋)",
+ "questGhostStagUnlockText": "在市场中解锁鹿蛋以购买",
"questRatText": "鼠王",
"questRatNotes": "垃圾!一大堆未完成的每日任务遍布整个Habitica,问题已严重得开始导致到处都是成群的老鼠了。你注意到@Pandah 正关爱地抚摸着一只老鼠,她向你解释道,老鼠是以未完成的每日任务为食的一种温和的动物。真正的问题在于,每日任务掉入了下水道,制造成了一个危险的、必须被清除的巨坑。当你下到下水道,一只有血红色的眼睛和不整齐的黄板牙的巨大老鼠向你攻过来,捍卫自己的地盘。你要当一个被吓跑的懦夫,还是面对传说中的鼠王?",
"questRatCompletion": "你的最后一击耗尽了这只巨鼠的力量,他的眼睛褪回了暗灰色。这只大老鼠分裂成了很多只惊慌逃窜的小老鼠。你注意到@Pandah 站在你的背后,目光落在这只曾经强大的生物身上。她告诉你,你的勇敢给了Habitica居民们勇气,大家正在抓紧时间完成他们没做完的日常任务。她提醒你必须时刻警惕,因为一旦放松,鼠王还会回来的。作为回报,@Pandah 给了你一些老鼠蛋。看到你一脸的不安,她笑着说:“它们会是很棒的宠物的。”",
"questRatBoss": "鼠王",
- "questRatDropRatEgg": "老鼠 (宠物蛋)",
- "questRatUnlockText": "在市场上解锁老鼠蛋以购买",
+ "questRatDropRatEgg": "老鼠(宠物蛋)",
+ "questRatUnlockText": "在市场中解锁老鼠蛋以购买",
"questOctopusText": "章鱼克苏鲁的呼唤",
"questOctopusNotes": "@Urse,一个为人荒唐的书吏,请求你帮他去一个海边的神秘洞穴探险。在黄昏的潮汐湖中,耸立着一座由钟乳石和石笋构成的魁伟大门。当你靠近它的时候,一股黑色的漩涡从大门的根基处蔓延出来。你目瞪口呆地看着一头长得像乌贼一样的龙从漩涡中浮了起来。“黏糊糊的星辰之卵终于苏醒,”@Urse 疯狂地呐喊着,“在沉睡了千万亿亿亿亿亿亿亿年之后,无上我主章鱼克苏鲁终于再次自由了,在狂喜中尽情掠夺吧!”",
"questOctopusCompletion": "一顿迎头痛击之后,怪物溜回了它现身的漩涡中。你不知道@Urse 是会为你的胜利而高兴,还是会为克苏鲁的离开而难过。无言的沉默中,你的同伴指着附近的潮汐湖,里面有三个的黏滑巨大的蛋,躺在用金币堆成的窝里。你紧张地安慰自己:“也许这只是章鱼蛋而已。”你们回家之后,@Urse 兴奋地将这次经历一挥而就写成游记,而你怀疑自己应该不会是最后一次跟伟大的“章鱼克苏鲁”扯上关系。",
"questOctopusBoss": "章鱼克苏鲁",
- "questOctopusDropOctopusEgg": "章鱼 (宠物蛋)",
- "questOctopusUnlockText": "在市场上解锁章鱼蛋以购买",
+ "questOctopusDropOctopusEgg": "章鱼(宠物蛋)",
+ "questOctopusUnlockText": "在市场中解锁章鱼蛋以购买",
"questHarpyText": "救命!是鹰身女妖!",
"questHarpyNotes": "勇敢的冒险家@UncommonCriminal 在森林里失踪了,几天前最后一次被目击的时候,他正在追踪一个生有羽翼的怪物。正当你要开始搜救时,一只受伤的鹦鹉停在了你的肩膀上。它美丽的羽毛上有一道难看的伤疤,腿上附着一张字迹潦草的纸条,上面写着:为了保护鹦鹉,@UncommonCriminal 被一只狂暴的鹰身女妖抓走了,并迫切地需要你帮忙逃脱。你会跟着这只鸟,揍一顿哈皮,救出@UncommonCriminal 吗?",
"questHarpyCompletion": "你一顿乱披风锤法把鹰身女妖从天上打了下来,羽毛四散飞舞。你快速攀爬到它的巢里,发现了窝在一堆鹦鹉蛋中间的@UncommonCriminal。你们同心协力,迅速地将宠物蛋放到旁边的鸟巢中。那只此前跟你鱼雁传书的受伤鹦鹉对你大叫道:“在鹰身女妖袭击后,留下了这些需要保护的宠物蛋。”@UncommonCriminal 向你解释:“似乎你已经成为了一只荣誉鹦鹉成员。”",
"questHarpyBoss": "哈皮(鹰身女妖)",
- "questHarpyDropParrotEgg": "鹦鹉 (宠物蛋)",
- "questHarpyUnlockText": "在市场上解锁鹦鹉蛋以购买",
+ "questHarpyDropParrotEgg": "鹦鹉(宠物蛋)",
+ "questHarpyUnlockText": "在市场中解锁鹦鹉蛋以购买",
"questRoosterText": "狂暴公鸡",
"questRoosterNotes": "很多年来,农民@extrajordanary 一直拿公鸡当闹钟用。但是现在一只巨型公鸡出现了,打鸣的声音比以往都要响亮——吵醒了所有Habitica居民!缺觉的Habitica居民们做每日任务的时候变得又困又累,痛苦不堪。@Pandoro 觉得是时候结束这一切了。“求求你们,有没有人能去教教那只公鸡打鸣的时候小点声?”你们一队志愿者在一天清晨找到了这只公鸡——但是它转过身来,拍打着巨大的翅膀,露出锋利的爪子,发出了战斗的鸣叫声。",
"questRoosterCompletion": "你靠着计谋和力量驯服了这只野鸡。原来是因为它的耳朵里塞满了羽毛和半途而废的任务,现在已经清理干净了。它小声的对你鸣叫,将它的喙依偎在你的肩膀上。隔天,你正准备要启程回家的时候,@EmeraldOx 带着一个篮子跑向你。“等等!今天早上我去农舍的时候,公鸡留了这些蛋在你住的客房门外,我想他是想要你带走。”你打开篮子,看到3个薄壳的鸡蛋。",
"questRoosterBoss": "公鸡",
- "questRoosterDropRoosterEgg": "公鸡 (宠物蛋)",
- "questRoosterUnlockText": "解锁公鸡蛋购买功能",
+ "questRoosterDropRoosterEgg": "公鸡(宠物蛋)",
+ "questRoosterUnlockText": "在市场中解锁公鸡蛋以购买",
"questSpiderText": "寒霜蜘蛛",
"questSpiderNotes": "随着气候慢慢变冷,精致的冰窗花像美丽的蕾丝网纱一样凝在了Habitica居民家中的窗玻璃上……除了@Arcosine,寒霜蜘蛛住他家里了,而且把他家的窗户完全冻住打不开了。我的老天爷呐。",
"questSpiderCompletion": "寒霜蜘蛛彻底瓦解了,只留下一小堆霜和一些她附过魔的卵囊。@Arcosine 立刻将这些卵囊作为奖励送给了你——说不定你能养育出一些没有危害的蜘蛛当宠物?",
"questSpiderBoss": "蜘蛛",
- "questSpiderDropSpiderEgg": "蜘蛛 (蛋)",
- "questSpiderUnlockText": "解锁蜘蛛蛋购买功能",
+ "questSpiderDropSpiderEgg": "蜘蛛(宠物蛋)",
+ "questSpiderUnlockText": "在市场中解锁蜘蛛蛋以购买",
"questGroupVice": "恶习之龙",
"questVice1Text": "恶习之龙,第1部:逃出恶习之龙的控制",
"questVice1Notes": "传说中Habitica山里有一个可怕的恶魔,它的现身即会扭曲这片土地上英雄的意志,使他们染上恶习,变得懒惰!这个怪兽有着强大的力量,由恶习的暗影组成,并化身为一条奸诈的暗影巨龙——恶习之龙。勇敢的Habitica居民,一起站出来,彻彻底底地击败这个邪恶的怪物。但是,只有你相信自己能抵抗积习那强大的业力,才能做到。
恶习之龙,第1部:
如果你落入它的控制,你还怎么和他战斗?不要成为懒惰和恶习的牺牲品!努力与巨龙战斗吧,克服他黑暗之力的影响,祓除他加诸于你的控制!
",
@@ -68,13 +68,13 @@
"questVice2Notes": "带着必胜的信念,你的队伍又一次充满自信的踏上了前往Habitica山的路。你们在山洞的入口停了下来。从洞里不断涌出漆黑的暗影,像雾一样笼罩着洞口。洞里漆黑一片,伸手不见五指。从灯笼里发出的光根本无法触及暗影笼罩的区域。据说只有用魔力点亮的光可以渗入巨龙的阴霾中。如果能找到足够多的神光水晶,你就可以找到去巨龙那里的路了。",
"questVice2CollectLightCrystal": "神光水晶",
"questVice2Completion": "当你把神光水晶高高举起,阴影被驱散了,你前进的道路变得清晰起来。随着心跳的加速,你向前走进洞穴。",
- "questVice2DropVice3Quest": "恶习之龙,第3部 (卷轴)",
+ "questVice2DropVice3Quest": "恶习之龙,第3部(卷轴)",
"questVice3Text": "恶习之龙,第3部:恶习缓醒",
"questVice3Notes": "在不断的努力之下,你的队伍终于发现了恶习之龙的巢穴。这个庞大的怪物用厌恶的眼神盯着你的队伍。黑暗的漩涡围绕着你们,一个声音在你们的脑海中耳语:“又有更多愚蠢的Habitica居民来阻止我了吗?有意思,你们会后悔来到这里的。”这只长满鳞片的巨龙拱起头颅,以一种准备攻击的姿态蓄势待发。你们的机会来了!尽你们所能,斩草除根地击败恶习吧!",
"questVice3Completion": "阴影从洞穴中消散,钢铁般的寂静降临。我们一言为定过的,你做到了!你战胜了恶习!你和你的队伍终于松了一口气。享受胜利吧,勇敢的habitica居民,但要带着你从这场与恶习的战斗中学到的教训继续前进。你还有一些想养成的习惯可以去多做几次,也许还会有更糟糕的妖魔鬼怪要去战胜!",
"questVice3Boss": "恶习之龙",
"questVice3DropWeaponSpecial2": "Stephen Weber 的巨龙长矛",
- "questVice3DropDragonEgg": "龙 (宠物蛋)",
+ "questVice3DropDragonEgg": "龙(宠物蛋)",
"questVice3DropShadeHatchingPotion": "暗影孵化药水",
"questGroupMoonstone": "故态复萌",
"questMoonstone1Text": "故态复萌,第1部:月长石链",
@@ -126,8 +126,8 @@
"questDilatoryBoss": "恐怖的拖延巨龙",
"questDilatoryBossRageTitle": "忽视打击",
"questDilatoryBossRageDescription": "当充能条被填满,恐怖的拖延巨龙会在Habitica的疆域释放出巨大的浩劫",
- "questDilatoryDropMantisShrimpPet": "雀尾螳螂虾 (宠物)",
- "questDilatoryDropMantisShrimpMount": "雀尾螳螂虾 (坐骑)",
+ "questDilatoryDropMantisShrimpPet": "雀尾螳螂虾(宠物)",
+ "questDilatoryDropMantisShrimpMount": "雀尾螳螂虾(坐骑)",
"questDilatoryBossRageTavern": "恐怖的巨龙施放\"忽略击\"!\n\n惨了!虽然我们努力,但是我们忽略了一些日常任务!它们的暗红色的色调吸引了恐怖的巨龙的注意!他用了\"忽略击\"来销毁酒馆!幸好我们在一座附近的城市里建了一所客栈,所以你們還可以聊天... 但是可怜的酒馆老板丹尼尔刚看到他亲爱的酒馆崩溃!\n\n我希望這野兽不会再攻打我们!",
"questDilatoryBossRageStables": "`恐怖的巨龙施放了忽略击!`\n\n哎呀!我们再次留下了太多样日常任务没做。龙已发动了它的忽略击!宠物已经往四面八方逃离。幸运的是,似乎你们全都是安全的!\n\n可怜的Habitica!我希望这不会再发生。动作快,做全部的任务!",
"questDilatoryBossRageMarket": "`恐怖的巨龙施放了忽略击!`\n\n啊啊! !商人Alex 的店铺刚刚被巨龙的忽略击砸成碎片!但我们似乎真的拖垮这只怪兽了。我怀疑他还有能量可以进行任何的攻击。\n\n所以,不要动摇,Habitica!让我们把此兽赶离我们的海岸!",
@@ -136,12 +136,12 @@
"questSeahorseNotes": "今天是拖拉比赛日,五湖四海的玩家们都涌入拖拉城参加宠物海马赛跑!突然之间,赛场上水花四溅人仰马翻,你听到海马保育员@Kiwibot 在混乱之中的声音。“聚集起来的海马吸引了一头强大的公海马!”她喊道,“他就要碾过马厩摧毁我们古老的赛道了!有人能让他平静下来吗?”",
"questSeahorseCompletion": "现在平静下来的公海马温顺地游到你的身边。“看啊!”Kiwibot说,“他想让我们照顾他的孩子们。”她给了你三个蛋。“好好抚养它们,”她说,“随时欢迎你参加拖拉比赛!”",
"questSeahorseBoss": "公海马",
- "questSeahorseDropSeahorseEgg": "海马 (宠物蛋)",
- "questSeahorseUnlockText": "解锁海马蛋购买功能",
+ "questSeahorseDropSeahorseEgg": "海马(宠物蛋)",
+ "questSeahorseUnlockText": "在市场中解锁海马蛋以购买",
"questGroupAtom": "平凡世界的攻势",
"questAtom1Text": "平凡世界的攻势,第1部:碗碟大灾难!",
"questAtom1Notes": "一番劳动之后,你来到净湖的岸边,想要好好休息一下……但是净湖被一堆没洗的盘子污染了!怎么回事?呃,你当然不能让湖就这个样子。你唯一能做的事情就是:洗掉这些盘子,拯救你的度假胜地!最好找些肥皂来清洗这团糟,要好多肥皂……",
- "questAtom1CollectSoapBars": "捡肥皂",
+ "questAtom1CollectSoapBars": "肥皂",
"questAtom1Drop": "平凡世界的攻势,第2部:好吃懒做怪(卷轴)",
"questAtom1Completion": "经过彻底的擦洗后,所有的盘子都安全地堆放在岸边!你站起来,骄傲地看着你的辛勤工作的成果。",
"questAtom2Text": "平凡世界的攻势,第2部:好吃懒做怪",
@@ -158,21 +158,21 @@
"questOwlNotes": "酒馆的灯光彻夜明亮
直到一天晚上灯光不见了!
这让我们怎么看见通宵工作的人呢?
@Twitching 大喊道,\"我需要一些战士!
看到那只暗夜猫头鹰了吗, 就是那满身星星的敌人?
赶快战斗不要懈怠!
将它的黑影赶出门去,
让这夜晚再次被照得明亮!\"",
"questOwlCompletion": "暗夜猫头鹰在黎明前消失了,
即便如此, 你依然会打一个哈欠.
也许现在应该是休息的时候了?
这时,你发现你的床上有个窝!
对于暗夜猫头鹰来说那是最棒的了
你为了完成目标而彻夜不眠,
但是你的新宠物会悦耳的鸣叫
来告诉你应该去睡觉了.",
"questOwlBoss": "暗夜猫头鹰",
- "questOwlDropOwlEgg": "猫头鹰(宠物蛋)",
- "questOwlUnlockText": "解锁猫头鹰蛋购买功能",
+ "questOwlDropOwlEgg": "猫头鹰(宠物蛋)",
+ "questOwlUnlockText": "在市场中解锁猫头鹰蛋以购买",
"questPenguinText": "冰霜禽类",
"questPenguinNotes": "虽然这只是Habitica最南端平常而炎热的一天,一股异常的寒气降临到生机湖上。凛风呼啸,湖岸开始结冰。冰刺从地面突出,分开了野草和泥土。@Melynnrose 和@Breadstrings 向你跑来。
“帮帮我们!”@Melynnrose 喊道。“我们带了一只巨型企鹅,我们以为用他来冰冻住湖面,我们就可以滑冰了,但我们准备的喂他的鱼不够多!”
“现在他发怒了,要用冰息冻结住所有看得到的东西!”@Breadstrings 说道。“麻烦你快镇住他,否则我们都得被冰雪覆盖!”看来你得让这只企鹅……冷静一下。",
"questPenguinCompletion": "当你打败这只企鹅时,冰雪都融化了。他在阳光下平息下来,开始饕餮你发现的另外一桶鱼。接着,他划过湖面,激起轻柔而又闪亮的冰晶。这是只多奇怪的鸟啊!“看起来他好像丢下了一些蛋,”@Painter de Cluster 说道。
@Rattify 笑道:“可能这些企鹅想要更……放松一下?”",
"questPenguinBoss": "冰霜企鹅",
- "questPenguinDropPenguinEgg": "企鹅 (宠物蛋)",
- "questPenguinUnlockText": "解锁企鹅蛋购买功能",
+ "questPenguinDropPenguinEgg": "企鹅(宠物蛋)",
+ "questPenguinUnlockText": "在市场中解锁企鹅蛋以购买",
"questStressbeastText": "Stoïkalm草原的可恶压力兽",
"questStressbeastNotes": "完成每日任务和待办事项来攻击世界怪兽!未完成的每日任务会填充压力打击条。当压力打击条被填满,这个世界怪兽会攻击一个NPC。世界怪物不会攻击单一玩家或账户。只有没在酒馆休息的活跃账户才会被他们的未完成任务拖累.
~*~
我们首先听到的是脚步声,缓慢,却势如千军。玩家们一个一个走出门外去看,吓得连话都说不出来。
我们以前都见过压力兽,当然是那种在困难时刻才出现的恶毒的小东西。但这一个?这一个比大楼还高,一爪子能轻易撕碎巨龙。冰霜从它恶臭的皮毛上落下,而它嘶吼,冰爆把我们的屋顶都掀翻了。除了在古老的传说里,我们从没听说过这样可怕的怪物。
“注意了,玩家们!”剑齿虎大喊,“注意在屋内隐蔽!这是可恶压力兽!”
“这肯定是几百年累积的压力形成的怪物!”Kiwibot说,紧闭酒馆的门窗。\"
“是冷静平原,”Lemoness面色严峻,“那时我们觉得他们温和无害,但这些家伙肯定偷偷把他们的压力藏在什么地方了。一代一代演化成这个怪物。现在这个怪物重获自由,去袭击他们……还有我们!”
只有一个办法能赶跑一个压力兽,无论是可恶压力兽还是其他,那就是完成每日任务和待办事项去攻击它!让我们团聚在一起达到这个可怕的敌人——不过千万不要懈怠,否则未完成的每日任务可能会激怒它,而它会……",
"questStressbeastBoss": "可恶压力兽",
"questStressbeastBossRageTitle": "压力打击",
"questStressbeastBossRageDescription": "当容量满了,可恶压力兽会对玩家进行压力打击!",
- "questStressbeastDropMammothPet": "猛犸象 (宠物)",
- "questStressbeastDropMammothMount": "猛犸象 (坐骑)",
+ "questStressbeastDropMammothPet": "猛犸象(宠物)",
+ "questStressbeastDropMammothMount": "猛犸象(坐骑)",
"questStressbeastBossRageStables": "可恶压力兽使用了压力攻击!\n\n源源不断的压力治愈了可恶压力兽!\n\n噢,不!尽管我们竭尽所能,让一部分的日常远离了我们,但它们暗红色的体表激怒了可恶压力兽并恢复了它的一些生命!这个可怕的生物在马厩里横行肆虐,但驯兽师马特为了保护宠物与坐骑英勇地扑进了战斗中。压力兽用邪恶之握抓住了马特,但此刻正是他分心的时候,赶快啊!让我们在压力兽的下一次攻击到来之前控制好我们的日常!",
"questStressbeastBossRageBailey": "可恶压力兽使用了压力攻击!\n\n源源不断的压力治愈了可恶压力兽!\n\n噢,不!我们未能完成的日常任务让可恶压力兽变得前所未有的疯狂,并恢复了它的一些生命!街头公告员贝雷正在呼叫市民们钱去避难,然而这个怪物却抓住了她!看看她吧,一边承受着压力兽疯狂的甩晃一边勇敢地继续呼喊……让我们对得起她的勇敢,提高我们的效率,拯救我们的NPC!",
"questStressbeastBossRageGuide": "可恶压力兽使用了压力攻击!\n\n源源不断的压力治愈了可恶压力兽!\n\n 当心!向导Justin正在试图绕着压力兽的脚来回跑,好吸引它的注意力,高喊着一些提高工作效率的点子!可恶压力兽疯狂地跺脚,但似乎我们真的已经开始让它精疲力竭了。我怀疑它还有没有力气进行下一次的攻击。不要放弃……我们就快要干掉它了!",
@@ -190,44 +190,44 @@
"questTRexUndeadRageTitle": "骷髅治疗",
"questTRexUndeadRageDescription": "如果你没有完成每日任务,这个进度条的进度就会增加。当进度条达到百分百的时候骷髅霸王龙就会回复剩余生命值的30%!",
"questTRexUndeadRageEffect": "`骷髅霸王龙使用了骷髅治疗!`\n\n那个怪兽发出了一声怪异的咆哮,然后它破损的骨架修复了一部分!",
- "questTRexDropTRexEgg": "霸王龙 (宠物蛋)",
- "questTRexUnlockText": "解锁霸王龙蛋购买功能",
+ "questTRexDropTRexEgg": "霸王龙(宠物蛋)",
+ "questTRexUnlockText": "在市场中解锁霸王龙蛋以购买",
"questRockText": "逃离山洞生物",
"questRockNotes": "你正在和朋友们一起穿越Habitica绵延山。一天晚上,你在一个闪烁着矿石光辉的岩洞里扎了营,但第二天早上醒来时,入口已经不见了,而脚下的地面正在提升。
“大山活了!”你的同伴@pfeffernusse 喊道,“这不是晶石,这是牙齿!”
@Painter de Cluster 抓住了你的手:“我们得另找一条路出去——跟着我,不要分心,不然我们会永远被困在这里!”",
"questRockBoss": "水晶巨像",
"questRockCompletion": "你的勤勉让你在这座活山里找到了一条安全的通路。站在阳光之下,你的朋友@intune 注意到有东西正在山洞出口附近的地上滚动。你走了过去并捡起了一个,发现那是一块透着一点金色矿脉的小石头,旁边还有许多带着特定斑点的石头。它们看上去很像……蛋?",
- "questRockDropRockEgg": "岩石(蛋)",
- "questRockUnlockText": "在市场上解锁岩石蛋以购买",
+ "questRockDropRockEgg": "岩石(宠物蛋)",
+ "questRockUnlockText": "在市场中解锁岩石蛋以购买",
"questBunnyText": "杀人兔",
"questBunnyNotes": "历经艰辛,你终于到达了拖延山顶峰,站在疏忽堡垒那壮观的大门之前。你读了石上铭文。“里面居住的生物是你恐惧的化身,是你无所作为的根源。敲开门,直面你心底的恶魔!”你浑身战栗,想象里面会是多么可怕。逃跑的冲动在你耳边轻语,反正之前你也退缩过多次。@Draayder 把你拉了回来。“冷静点,我的朋友!这个时机终于到来!你必须得上!”
你敲了敲门,门就向内打开。昏暗之中,你听到整耳欲聋的吼叫,你拿起了武器。",
"questBunnyBoss": "杀人兔",
"questBunnyCompletion": "随着你的最后一击,杀人兔缓缓沉入地面。一阵闪闪发光的迷雾从她身上升起,她变回了一只小兔子……而非你之前看到那残暴的野兽。她的小鼻子可爱地动了动,随后就跳走了,留下了几个蛋。@Gully 大笑道:“拖延山就是会让小小的挑战都看上去高不可攀。让我们拿上这些蛋回家吧。”",
- "questBunnyDropBunnyEgg": "兔(宠物蛋)",
- "questBunnyUnlockText": "解锁兔子蛋以在市场上购买",
+ "questBunnyDropBunnyEgg": "兔(宠物蛋)",
+ "questBunnyUnlockText": "在市场中解锁兔蛋以购买",
"questSlimeText": "果冻摄政王",
- "questSlimeNotes": "正当你在努力完成你的任务时,你注意到你移动得越来越慢了。”就像是走在糖浆里一样,“@Leephon抱怨道。”不,像是在果冻里穿行!”@starsystemic说:”那黏糊糊的果冻摄政王已经彻底到达Habitica了。它扰乱了我们的工作,每个人都在越来越慢。“你环顾四周。街道正慢慢地被五颜六色、炫彩夺目的软泥填充着,Habiticans做任何事情都变得艰难起来。当其他人逃离该地区的时候,你抓起了一个拖把,准备战斗!",
+ "questSlimeNotes": "正当你在努力完成你的任务时,你注意到你移动得越来越慢了。“就像是走在糖浆里一样,”@Leephon抱怨道。“不,像是在果冻里穿行!”@starsystemic说:“那黏糊糊的果冻摄政王已经彻底到达Habitica了。它扰乱了我们的工作,每个人都在越来越慢。”你环顾四周。街道正慢慢地被五颜六色、炫彩夺目的软泥填充着,Habitica居民们做任何事情都变得艰难起来。当其他人逃离该地区的时候,你抓起了一个拖把,准备战斗!",
"questSlimeBoss": "果冻摄政王",
"questSlimeCompletion": "伴随着最后一戳,你将果冻摄政王引进了你的超大甜甜圈陷阱里,糕点俱乐部的三个思维敏捷的领导者@overomega,@LordDarkly,和@Shaner 冲了进来。每个人都拍着你的背,你觉得有人将什么东西滑进了你的口袋里。这是对你这次甜蜜胜利的奖励:三个棉花糖史莱姆蛋。",
- "questSlimeDropSlimeEgg": "棉花糖史莱姆(蛋)",
- "questSlimeUnlockText": "解锁史莱姆蛋以在市场上购买",
+ "questSlimeDropSlimeEgg": "棉花糖史莱姆(宠物蛋)",
+ "questSlimeUnlockText": "在市场中解锁棉花糖史莱姆蛋以购买",
"questSheepText": "雷霆公羊",
"questSheepNotes": "在你和朋友一起到任务汗国的乡村郊外散步时,你打算花很短的时间开个小差,于是发现了一间毛纺店,于是你陷入了拖延症不可自拔,都没有发现天际出现了不祥的乌云。“我有个天气要不……不……不好的感觉。” @Misceo 喃喃的说,你抬起了头,雷雨云正聚在一起翻滚,而且看起来很像一群……“我们没空看云瞎想了!” @starsystemic 喊道,“它要打过来了!”雷霆公羊向前撞去,向你甩去一道一道的闪电!",
"questSheepBoss": "雷霆公羊",
"questSheepCompletion": "雷霆公羊被你的勤奋震撼了,它的愤怒已经耗尽,最终它向你甩来三个巨大的冰雹,然后随着低沉的轰隆声逐渐消失。仔细观察以后你发现这些冰雹其实是三个毛茸茸的蛋。你把他们收了起来,在碧蓝的天空下向家走去。",
- "questSheepDropSheepEgg": "羊(蛋)",
- "questSheepUnlockText": "解锁绵羊蛋以在市场上购买",
+ "questSheepDropSheepEgg": "羊(宠物蛋)",
+ "questSheepUnlockText": "在市场中解锁羊蛋以购买",
"questKrakenText": "未完成海妖",
"questKrakenNotes": "这是一个温暖充满阳光的日子,你正在未完成海湾驾船穿行,脑子里充满了对那些你还没能去做完的事情的忧虑,好像你做完一个,就会出现另外一个……
突然间,船底一阵猛震,湿滑的触手破海而出,从船两边爬了上来!“我们被攻击了!是未完成海妖!”Wolvenhalo喊道。
“快!”Lemoness呼唤着你,“尽你所能打退触手和任务,不然新的就会再升上来填补它们的空缺!”",
"questKrakenBoss": "象征着未完成的北海巨妖",
"questKrakenCompletion": "海妖逃之夭夭了,留下几枚蛋在海面上漂浮着。Lemoness检查了一下,她的疑问转为欣喜。“是墨鱼蛋!”她说,“这儿,拿几个作为你完成的任务的奖励吧。”",
- "questKrakenDropCuttlefishEgg": "墨鱼(蛋)",
- "questKrakenUnlockText": "解锁乌贼蛋以在市场上购买",
+ "questKrakenDropCuttlefishEgg": "墨鱼(宠物蛋)",
+ "questKrakenUnlockText": "在市场中解锁墨鱼蛋以购买",
"questWhaleText": "鲸之哀嚎",
"questWhaleNotes": "你来到了勤勉码头,希望能搭上一艘潜水艇去观看拖拉大赛。突然,一阵震耳欲聋的声音袭来,迫使你停下捂住耳朵。“她在那儿!”@krazjega 船长叫道,指向一只哀嚎着的巨鲸,“她在那撒野的时候派出潜艇不安全!”
“快!”@UncommonCriminal 喊道,”帮我让这可怜的家伙安静下来,我们才能知道是什么让她变成这样!“",
"questWhaleBoss": "哀嚎的鲸鱼",
"questWhaleCompletion": "经过一番辛苦努力,鲸鱼终于停下了她如雷的哭叫,“看上去她要被坏习惯造成的波浪淹死了。”@zoebeagle 解释道,“谢谢你的不断努力,我们才能扭转一切!”你踏进潜水艇时,几枚鲸鱼蛋向你扭动着游来,你一把捞起了它们。",
- "questWhaleDropWhaleEgg": "鲸鱼(蛋)",
- "questWhaleUnlockText": "解锁鲸鱼蛋以在市场上购买",
+ "questWhaleDropWhaleEgg": "鲸鱼(宠物蛋)",
+ "questWhaleUnlockText": "在市场中解锁鲸鱼蛋以购买",
"questGroupDilatoryDistress": "拖拉灾难",
"questDilatoryDistress1Text": "拖拉灾难,第1部:漂流瓶中的信",
"questDilatoryDistress1Notes": "你发现一只来自拖拉城新区的漂流瓶!上面写道:“亲爱的Habitica居民,我们再一次需要你的帮助。我们的公主失踪了,我们的城市被一群未知的水怪围城!那些螳螂虾正在海岸上抵挡侵略者,请帮帮我们!”要跨越这一段漫长的旅途到达这座沉没水底的城市,需要学会在水下呼吸。幸运的是,@Benga 和@hazel 两位炼金术师能让这点成为可能!你只需要找到合适的药水材料。",
@@ -256,14 +256,14 @@
"questCheetahNotes": "你正和朋友@PainterProphet, @tivaquinn, @Unruly Hyena 和@Crawford 在坚定稀树草原上漫步,你看到一只经过的猎豹,叼着一个Habitica新人路过。在这只猎豹的利爪之下,所有的任务都蒸发殆尽,即使是根本没能完成的那些也一样!那个Habitica居民看见了你,并向你喊道:“救救我!这只猎豹让我升级得太快了,但我什么事都没来得及做。我想慢下来享受游戏,求你让它停下来!”你想起了自己打拼的日子,明白你必须帮帮这个新手,让猎豹停下!",
"questCheetahCompletion": "那个Habitica新人经过了这一番狂野颠簸,大声喘着气,但她还是感谢你和朋友们给他的帮助。“我很高兴猎豹以后不会再带走什么了,还留下了一些猎豹蛋给我们,也许我们能把它们培养成更可靠的宠物!”",
"questCheetahBoss": "猎豹",
- "questCheetahDropCheetahEgg": "猎豹(蛋)",
- "questCheetahUnlockText": "解锁猎豹蛋以在市场上购买",
+ "questCheetahDropCheetahEgg": "猎豹(宠物蛋)",
+ "questCheetahUnlockText": "在市场中解锁猎豹蛋以购买",
"questHorseText": "驾驭噩梦",
"questHorseNotes": "和@beffymaroo 和@JessicaChase 在酒馆休息时,话题愉快地转向了各种旅途见闻和丰功伟绩的吹牛。你对你的坐骑非常自豪,微醉的气氛让你吹道说你能降伏周围的任何任务。一边的一个陌生人转向了你,发出了微笑,他的一只眼睛向你眨了一眨,就好像在邀请你骑上他的马,来证明你的话。\n大家来到了马棚。@UncommonCriminal 悄声说:“你话好像说的太满了。那可不是一匹马——那是夜魇!”看着它踩向地面的蹄子,你觉得开始后悔了……",
"questHorseCompletion": "你使尽了浑身解数,但终于它敲了几下地面,用鼻子拱了拱你的肩膀,让你骑上了自己。在朋友们的欢呼声中,你简单但是满怀骄傲地骑着马绕着酒馆走了几圈。陌生人咧开了嘴,笑得很开心。\n“我现在看见了那不是什么自吹自擂,你的决心确实让我印象深刻。带走这些蛋,去培养你自己的一匹马吧。也许有一天,我们还会再见的。”你收起了蛋,陌生人抬了抬他的帽子……随后消失。",
"questHorseBoss": "夜魇",
- "questHorseDropHorseEgg": "马(蛋)",
- "questHorseUnlockText": "解锁马蛋以在市场上购买",
+ "questHorseDropHorseEgg": "马(宠物蛋)",
+ "questHorseUnlockText": "在市场中解锁马蛋以购买",
"questBurnoutText": "湮灭怪和被耗尽的灵魂",
"questBurnoutNotes": "红凤凰和队长猕猴桃人粗暴的闯入城门的时候,早已过了午夜。空气还是热的让人发闷。“我们得清空所有的木制建筑!”红凤凰大喊,“快啊!”
\n猕猴桃人靠着墙调整着呼吸,“它正在榨干那些人,耗尽他们的力气!怪不得所有事情都推迟了。怪不得我们不知道失踪的人去了哪里。它正在偷他们的精力!”
\n“它?”柠檬人问。
\n话音未落,热气开始成形。
\n它卷着巨大的热浪从地面升起,翻滚着,扭动着。空气中弥漫着呛人的烟味和硫磺味。火舌掠过灼热的地表,分化出肢体,快速向上伸展着,高的吓人。当大家可以看到它怒火熊熊的双眼的时候,那家伙发出了一声低沉的爆裂声。
\n猕猴桃人喃喃的说:
\n“火焰怪。”",
"questBurnoutCompletion": "湮灭怪被击败了!
伴随着一个美妙的、柔软的叹息,湮灭怪慢慢地释放了曾被它用来助长了火灾的热情能量。当怪兽静静地蜷缩最终化为灰烬时,其偷来的能量在空中闪闪发光,使被耗尽的精力们恢复了活力,回到了他们真实的模样。
岚,丹尼尔,和季节女巫与冲过去迎接他们的Habiticans一起欢庆着,所有全盛田野失踪的百姓都回来了,他们拥抱着自己的朋友和家人。最后耗尽的灵魂变为了“快乐收割者”!
“瞧!”@Baconsaur低语,灰烬开始闪烁,慢慢地,他们分解成数百闪闪发光的凤凰!
一只发光的小鸟栖落在了快乐收割者纤细的手臂上,她露出了洁白的牙齿笑道:“距离上一次我有幸在全盛田野看见凤凰已经有很长世间了,”她说:“但是最近发生的这些事,我必须说,这正是恰如其分再好不过!”
她的语调平静,虽然(自然而然)她的笑容依旧:”我们在这片土地上因为辛勤劳作而享有盛名,但是我们也曾因节日和庆祝活动而为世人所知。当我们努力去计划一个盛大的宴会时,我想,这太讽刺了。曾经我们拒绝让自己有任何玩乐的时间。现在,我们当然不会再一次犯同样的错误!”
她拍着她的双手:“现在——让我们来庆祝吧!”",
@@ -271,55 +271,55 @@
"questBurnoutBoss": "湮灭怪",
"questBurnoutBossRageTitle": "湮灭攻击",
"questBurnoutBossRageDescription": "当这个量槽被填满,湮灭怪就会在Habitica释放他的湮灭攻击!",
- "questBurnoutDropPhoenixPet": "凤凰(宠物)",
- "questBurnoutDropPhoenixMount": "凤凰(坐骑)",
- "questBurnoutBossRageQuests": "`倦怠使用了疲劳打击!`\n\n噢,不!尽管我们尽了最大努力,我们仍然让一些每日任务离开了我们,现在,倦怠充满了能量熊熊燃烧!伴随着噼啪的咆哮声,它涌起幽灵之火吞噬了任务大师岚。落下的任务卷轴燃烧着,烟雾散去,你发现岚已经被抽光了能量,变成了漂浮着的疲劳精神体!\n\n唯有战胜倦怠才能制止法术,才能复原我们珍爱的任务大师。让我们保持按时完成每日任务吧,在怪物再次攻击前战胜它!",
+ "questBurnoutDropPhoenixPet": "凤凰(宠物)",
+ "questBurnoutDropPhoenixMount": "凤凰(坐骑)",
+ "questBurnoutBossRageQuests": "`倦怠使用了疲劳打击!`\n\n噢,不!尽管我们尽了最大努力,我们仍然让一些每日任务离开了我们,现在,倦怠充满了能量熊熊燃烧!伴随着噼啪的咆哮声,它涌起幽灵之火吞噬了副本大师岚。落下的副本卷轴燃烧着,烟雾散去,你发现岚已经被抽光了能量,变成了漂浮着的疲劳精神体!\n\n唯有战胜倦怠才能制止法术,才能复原我们珍爱的副本大师。让我们保持按时完成每日任务吧,在怪物再次攻击前战胜它!",
"questBurnoutBossRageSeasonalShop": "`倦怠使用了疲劳打击!`\n\n啊啊啊!我们未完成的每日任务给倦怠之火提供了能量,现在,它有足够的能量再次攻击了!它释放了一团幽灵之火灼烧着季节商店。你惊骇地发现,愉快的季节女巫已经变为无力的疲劳精神体。\n\n你必须营救我们的NPC们!快,Habitic村民们,完成你的任务吧,在怪物第三次攻击前战胜它!",
"questBurnoutBossRageTavern": "`倦怠使用了疲劳打击!`\n\n很多Habitic村民已经躲避倦怠进入了客栈,但是坚持不了太长时间了!伴随着刺耳的嚎叫,倦怠用它那白热的爪子犁过酒馆。酒馆的客人全跑了,Daniel 被倦怠抓住,就在你面前变成了疲劳精神体!\n\n极度恐慌已经持续了太长的时间。不要放弃...我们已经如此接近战胜倦怠了,一劳永逸!",
"questFrogText": "蛙泽",
"questFrogNotes": "你和朋友正在拖沓沼泽艰难前行,@starsystemic 指向一个大标记。“不要离开小路——如果能做到的话”。
“这又不难!”@RosemonkeyCT 说,“路面又宽又干净。”
但随着你们继续前行,你注意到路面开始渐渐被沼泽覆盖,间杂着奇怪的蓝色碎块杂物,直到无法再继续向前走。
你环顾四周,想搞明白这是怎么一回事,@Jon Arjinborn 喊道:“小心!”一只愤怒的青蛙从淤泥中一跃而出,身披脏衣服,还烧着蓝色的火焰,你必须战胜这只有毒的凌乱蛙才能前进!",
"questFrogCompletion": "青蛙被打败后畏缩地回到了淤泥中。它悄悄地溜走了,蓝色的粘液消失,干净的路面重新出现在前方。
路中间有三个蛙卵。“你甚至可以透过外壳看见里面的小蝌蚪!”@Breadstrings 说道。“拿着,你应该带他们回去。”",
"questFrogBoss": "凌乱蛙",
- "questFrogDropFrogEgg": "青蛙 (宠物蛋)",
- "questFrogUnlockText": "解锁青蛙蛋以在市场上购买",
+ "questFrogDropFrogEgg": "青蛙(宠物蛋)",
+ "questFrogUnlockText": "在市场中解锁青蛙蛋以购买",
"questSnakeText": "分心蛇",
"questSnakeNotes": "生活在分心沙丘的人得有坚强的精神。干旱的沙漠几乎无法产出任何东西,闪耀的沙丘让很多旅行者误入歧途。然而,有什么东西甚至吓跑了当地人。沙子扭动着翻卷了整个村庄,村民都说有着一个庞大身躯的蛇形怪物藏在沙下。他们凑了些赏金,发出悬赏让人帮助他们找到并阻止这个怪物。负有盛名的弄蛇人@EmeraldOx 和@PainterProphet 同意帮助你降伏野兽。你能阻止分心蛇吗?",
"questSnakeCompletion": "在大佬们的帮助下, 你消灭掉了分心蛇。虽然你很高兴你帮助了住在沙丘里的人们,但还是不禁为你倒下的对手而难过。在你凝视着眼前的一切时,@LordDarkly 向你走来。“谢谢你!这不是什么厚礼,但我希望能表示一下我们的感激之情。”他递给你一些金币和……一些蛇蛋!毕竟,你还有机会再见见那雄伟的动物。",
"questSnakeBoss": "分心蛇",
- "questSnakeDropSnakeEgg": "蛇(宠物蛋)",
- "questSnakeUnlockText": "解锁蛇蛋以在市场上购买",
+ "questSnakeDropSnakeEgg": "蛇(宠物蛋)",
+ "questSnakeUnlockText": "在市场中解锁蛇蛋以购买",
"questUnicornText": "说服独角兽女王",
- "questUnicornNotes": "征服溪流变浑浊了,Habit市的供水系统受到了巨大威胁!幸运的是,@Lukreja 知道一个古老的传说,用一只独角兽的角,再污浊的水也能被净化。你和英勇无畏的向导@UncommonCriminal 一起翻过蜿蜒山脉的冰封山尖,终于白雪皑皑的Habitica山顶找到了站在雪里的独角兽女王。“你的请求让人无法拒绝,“她说,”但是首先,你需要证明你值得我帮助!“",
+ "questUnicornNotes": "征服溪流变浑浊了,Habit市的供水系统受到了巨大威胁!幸运的是,@Lukreja 知道一个古老的传说,用一只独角兽的角,再污浊的水也能被净化。你和英勇无畏的向导@UncommonCriminal 一起翻过蜿蜒山脉的冰封山尖,终于白雪皑皑的Habitica山顶找到了站在雪里的独角兽女王。“你的请求让人无法拒绝,“她说,”但是首先,你需要证明你值得我帮助!”",
"questUnicornCompletion": "独角兽女王被你的优雅和力量打动了,她最终承认了你的要求值得帮助。她让你骑在她背上,驰向征服溪流的源头。在她低下头,将她金色的额独角伸向被污染的溪水时,水面泛起一层耀眼的蓝光,那么明亮,你不得不闭上眼睛,过了一会,当你再睁开双眼,独角兽女王已经不见了,不过,@rosiesully 发出了一声快乐的呼喊:水又变得干净了,还有三只闪亮的蛋静静躺在小溪边。",
"questUnicornBoss": "独角兽女王",
- "questUnicornDropUnicornEgg": "独角兽(宠物蛋)",
- "questUnicornUnlockText": "解锁独角兽蛋以在市场上购买",
+ "questUnicornDropUnicornEgg": "独角兽(宠物蛋)",
+ "questUnicornUnlockText": "在市场中解锁独角兽蛋以购买",
"questSabretoothText": "剑齿猫",
"questSabretoothNotes": "咆哮的怪兽让Habitica颤抖!怪兽昂首阔步地走过荒野和森林,在再次消失前爆发出攻击。它在狩猎无辜的熊猫,吓得飞猪逃离它们树上的栖息围栏。 @InspectorCaracal 和@icefelis 交待他们在古代的Stoikalm草原的冰原挖掘的时候释放了僵尸剑齿猫。“最初,它非常友好,我不知道发生了什么。请你一定要帮帮我们再次抓到它!只有Habitica的冠军能征服这个史前野兽!”",
"questSabretoothCompletion": "长时间艰苦的战斗后,你和僵尸剑齿猫扭打到了地上。在你最终接近的时候,你发现它的剑齿上有一个讨厌的洞。突然你意识到什么导致了猫的愤怒,你终于能够让@Fandekasp 补上洞,然后建议每一个人不要在以后给他们的朋友甜食了。剑齿猫恢复了健康,出于感激,它的驯兽师送给你一份慷慨的奖赏——剑齿虎蛋!",
"questSabretoothBoss": "僵尸剑齿猫",
- "questSabretoothDropSabretoothEgg": "剑齿虎(蛋)",
- "questSabretoothUnlockText": "解锁剑齿虎蛋以在市场上购买",
+ "questSabretoothDropSabretoothEgg": "剑齿虎(宠物蛋)",
+ "questSabretoothUnlockText": "在市场中解锁剑齿虎蛋以购买",
"questMonkeyText": "巨大的山魈和淘气的猴子",
"questMonkeyNotes": "坚定稀树草原快被巨大的山魈和顽皮的猴子撕碎了!他们大声尖叫,压过了截止日期快到的声音,让所有人容易忘掉他们的责任天天闲混。唉,大量的人们模仿这个坏行为。如果没人阻止这些猴子,每个人的任务将会很快变的和猴屁股一样红!
@yamato 说:“我们需要敬业的冒险者来阻止他们。”
@Oneironaut 大叫着:“快,让我们把猴子从每个人的背上拉下来!” 你冲向了战斗。",
"questMonkeyCompletion": "你做到了!那些朋友今天没有香蕉了。被你的勤奋吓到,猴子惊慌的逃掉。“看,” @Misceo 说,“他们留下了一些蛋。”
@Leephon grins 说:“野生猴子有多碍事,训练有素的宠物猴子就能帮你多少。”",
"questMonkeyBoss": "巨大的山魈",
- "questMonkeyDropMonkeyEgg": "猴子 (蛋)",
- "questMonkeyUnlockText": "解锁猴子蛋以在市场上购买",
+ "questMonkeyDropMonkeyEgg": "猴子(宠物蛋)",
+ "questMonkeyUnlockText": "在市场中解锁猴子蛋以购买",
"questSnailText": "苦差事淤泥蜗牛",
"questSnailNotes": "一开始,你对于要探索苦差事地下城遗迹这事很兴奋。但是当你一进去,你就感受到你脚下的地面在吸你的靴子。你看着前面的小路,看到Habitica居民陷入了淤泥。@Overomega 大叫,“他们有太多不重要的任务和每日任务,他们正被不要紧的事情卡住!把他们拉出来!”
“你需要找到渗出的源头,”@Pfeffernusse 赞同着说,“不然他们不能完成的任务会把他们永远拖下去!”
拿出你的武器,你艰难地通过黏黏的泥……突然遇上了可怕的苦差事淤泥蜗牛。",
"questSnailCompletion": "你把你的武器砸在巨大的蜗牛壳上,壳裂成两半,涌出了大量的水。粘液被冲走,Habitica居民在你身边欢呼。“看!” @Misceo 说,“在残留的淤泥中,有一小群的蜗牛蛋。”",
"questSnailBoss": "苦差事淤泥蜗牛",
- "questSnailDropSnailEgg": "蜗牛(蛋)",
- "questSnailUnlockText": "在市场上解锁蜗牛蛋以购买",
+ "questSnailDropSnailEgg": "蜗牛(宠物蛋)",
+ "questSnailUnlockText": "在市场中解锁蜗牛蛋以购买",
"questBewilderText": "迷失怪",
"questBewilderNotes": "派对开始的时候和任何一场没什么不同。
开胃菜棒极了,音乐让人摇摆,甚至跳舞的大象都是保留节目。Habitica居民们在中央的花海中大笑嬉闹,不用去想最不喜欢的任务可真逍遥,愚者在他们中间回转,急切地到处展示着有趣的恶作剧和诙谐的动作。
随着Misti飞城的钟塔在午夜响起,愚者跳上舞台开始演讲。
“朋友们!敌人们!心胸宽广的老熟人们!听我说两句。”人们轻笑着,竖起了耳朵,用新的配饰装扮自己,摆起了姿势。
“如你们所知,”愚者继续说着,“我那摸不着头脑的幻觉仅仅持续了一天。但是,我很开心的宣布,我已经发现一个捷径,可以保证我们的快乐不会停止,不需要去处理责任的重压。可爱的Habitica居民们,见见我新的魔法朋友吧……“迷茫”!”
Lemoness突然脸色苍白,丢下她的餐前甜点。“等等!不要相信——”
但是,突然迷雾灌进了房间,闪闪发光,逐渐变浓,它们绕着愚者打着旋儿,凝聚成云朵般的羽翼和抻长的脖子。人群说不出话来,一只巨大的怪鸟在他们面前显露出来,它的翅膀闪烁着幻觉。它发出恐怖刺耳的笑声。
“噢,已经很多很多年了,一个有够愚蠢的Habitica居民召唤了我!多么美妙啊,终于有一个实体了。”
Misti飞城的魔法蜜蜂惊恐嗡嗡的逃离了这座浮空城,浮空城开始从天空下落。灿烂的春之花一个接一个枯萎了。
“我最亲爱的朋友,为何如此惊恐?”迷茫啼叫着,扇动着它的翅膀,“没必要再幸苦赢得奖励了。我会给你们所有你们想要的东西!”
金币雨从空中倾泻下来,猛力地敲打在地面,人们尖叫着奔跑着寻找遮蔽物。“这是在开玩笑吗?”Baconsaur大叫,金币砸穿了窗户,打破了屋顶的瓦片。
画家Prophet闪避着,空中出现了闪电裂纹,雾遮挡了太阳。“不!这次我想不是了!”
快,Habitica居民们,不要让这个世界Boss使我们从目标上分心!保持注意力,关注你需要完成的任务,这样我们才能拯救Misti飞城——还有,充满希望的我们自己。",
"questBewilderCompletion": "“迷茫”被打!败!了!
我们做到了!迷茫在空中扭曲,悲恸大叫,羽毛飘下来就像是雨点。渐渐地,它被卷入一团闪亮的雾中。一缕缕阳光穿透了迷雾,驱散了它,咳嗽着的不幸之幸的人们得以重见天日,其中有Bailey, Matt, Alex...和愚者自己。
Misti飞城被拯救了!
愚者看起来有点局促不安。“噢,嗯,”他说,“我可能有点....忘乎所以了。”
人们在喃喃低语,湿漉漉的花朵被冲上人行道,在远处还能看到坍塌的屋顶溅起的壮观水花。
“额,好,”愚者说,“也就是说…我想说的是,很抱歉。”他长叹道,“这毕竟可不是什么好玩的游戏,偶尔当心点不会有坏处的。也许我还是会带头开始下一年的恶作剧。”
浴火凤凰故意咳了一声。
“我的意思是,带头开始今年的春季大扫除!”愚者说,“不用担心,我会很快将Habitica修回原样。幸好在双持扫把上没人比我厉害。”
仪仗队开始演奏,鼓舞大家。
用不了多久Habitica的一切就会回归正轨。此外,现在迷茫已经消失了,魔法蜜蜂回到了Misti飞城开始了忙碌的工作,不久后,城市又一次淹没在了花海中。
Habitica居民拥抱了魔法绒绒蜜蜂,愚者的眼睛瞬间亮了起来,“噢,我有了一个想法!为什么你们都不养一些绒绒蜜蜂当宠物和坐骑呢?如果我要让你感到无聊和有寓意的话,这是一个很好的礼物,它完美的代表了辛勤工作和甜蜜的回报的结合。”他眨了眨眼,“另外,它们没有毒刺!愚者向你致敬。”",
"questBewilderCompletionChat": "`“迷茫”被打!败!了!`\n\n我们做到了!迷茫在空中扭曲,悲恸大叫,羽毛飘下来就像是雨点。渐渐地,它被卷入一团闪亮的雾中。一缕缕阳光穿透了迷雾,驱散了它,咳嗽着的不幸之幸的人们得以重见天日,其中有Bailey, Matt, Alex...和愚者自己。\n\n`Misti飞城被拯救了!`\n\n愚者看起来有点局促不安。“噢,嗯,”他说,“我可能有点....忘乎所以了。”\n\n人们在喃喃低语,湿漉漉的花朵被冲上人行道,在远处还能看到坍塌的屋顶溅起的壮观水花。\n\n“额,好,”愚者说,“也就是说…我想说的是,很抱歉。”他长叹道,“这毕竟可不是什么好玩的游戏,偶尔当心点不会有坏处的。也许我还是会带头开始下一年的恶作剧。”\n\n浴火凤凰故意咳了一声。\n\n“我的意思是,带头开始今年的春季大扫除!”愚者说,“不用担心,我会很快将Habitica修回原样。幸好在双持扫把上没人比我厉害。”\n\n仪仗队开始演奏,鼓舞大家。\n\n用不了多久Habitica的一切就会回归正轨。此外,现在迷茫已经消失了,魔法蜜蜂回到了Misti飞城开始了忙碌的工作,不久后,城市又一次淹没在了花海中。\n\nHabitica居民拥抱了魔法绒绒蜜蜂,愚者的眼睛瞬间亮了起来,“噢,我有了一个想法!为什么你们都不养一些绒绒蜜蜂当宠物和坐骑呢?如果我要让你感到无聊和有寓意的话,这是一个很好的礼物,它完美的代表了辛勤工作和甜蜜的回报的结合。”他眨了眨眼,“另外,它们没有毒刺!愚者向你致敬。”",
"questBewilderBossRageTitle": "欺骗打击",
"questBewilderBossRageDescription": "当这个量槽被填满,迷失怪就会在Habitica释放他的欺骗攻击!",
- "questBewilderDropBumblebeePet": "魔法蜜蜂(宠物)",
- "questBewilderDropBumblebeeMount": "魔法蜜蜂(坐骑)",
+ "questBewilderDropBumblebeePet": "魔法蜜蜂(宠物)",
+ "questBewilderDropBumblebeeMount": "魔法蜜蜂(坐骑)",
"questBewilderBossRageMarket": "`迷失怪运用了 欺骗打击!`\n\n噢不!尽管我们努力了,我们迷失怪迷人的幻觉还是让我们分心,忘掉了一些每日任务!伴随着咯咯的叫喊声,华丽的鸟儿扇动着翅膀,扇起了一大团薄雾围绕着商人Alex。当雾消失,他已经着魔了!“有一些免费的样品!”他兴高采烈地喊着,开始丢出爆炸的蛋和药水朝向逃跑的Habitica村民。诚然,不是最优惠的销售。\n\n快!让我们保持关注我们的每日任务在它占据其他人之前打败这个怪物。",
"questBewilderBossRageStables": "`迷失怪运用了 欺骗打击!` \n \n啊!!!迷失怪再次让我们目眩神迷以至于忽视了我们的每日任务,现在它已经攻击了驯兽师马特!一阵烟雾后,马特竟然变成了可怕的飞行怪兽,所有的宠物和坐骑都在兽栏中痛苦地嚎叫。快!专注于你的每日任务来打败这个卑鄙的怪物!",
"questBewilderBossRageBailey": "`迷失怪运用了 欺骗打击!`\n\n小心!在报导新闻中,公告员贝利已经被迷失怪占据了!她放出了一个恶魔,她随意的大叫声升上了天空。现在我们该怎么办?\n\n不要放弃...我们就快要击败这个讨厌的大鸟了,一劳永逸!",
@@ -327,20 +327,20 @@
"questFalconNotes": "赫然耸现的堆成山的待办事项令Habitica山蒙上了阴影。被忽视的任务增长失控前,它曾是野餐和享受完成的感觉的地方。现在,他变成了掠食明天之鸟的巢穴,掠食明天之鸟是一种邪恶的生物,阻止Habitica居民完成他们的任务!
“太难了!”它们朝着@JonArinbjorn 和@Onheiron 发出叫声,“现在完成花太多的时间了!等到明天做一点关系都没有!为什么现在不去做一些有趣的事情呢?”
你发誓再也不这样了。你将攀登你自己的待办事项山脉,打败掠食明天之鸟!",
"questFalconCompletion": "最后,你战胜了掠食明天之鸟,安下心来享受风景和你应得的休息时间。
“哇噢!”@Trogdorina 说,“你赢了!”
@Squish 接着说道:“嘿,拿上这些我找到的蛋作为你的奖励。”",
"questFalconBoss": "掠食明天之鸟",
- "questFalconDropFalconEgg": "猎鹰(宠物蛋)",
- "questFalconUnlockText": "在市场上解锁猎鹰蛋以购买",
+ "questFalconDropFalconEgg": "猎鹰(宠物蛋)",
+ "questFalconUnlockText": "在市场中解锁猎鹰蛋以购买",
"questTreelingText": "纠结树",
"questTreelingNotes": "这是一年一度的花园大赛!大家都在谈论 @aurakami 即将宣布的神秘项目。您在宣布当天也加入了人潮,对刚推出的移动树木赞叹不已。@fuzzytrees 解释,这棵树会对花园的维修和照顾有很大的贡献,然后让它演示同时割草坪、修剪矮灌木和玫瑰花。突然!它发了疯!把手中的树枝修剪器挥了过来!观众一阵惊呼后开始逃跑。但你不怕!反而跳上前,准备战斗。",
"questTreelingCompletion": "看着最后几片树叶飘落到地上,你掸了掸身上的灰尘。尽管有些失望,但花园竞赛现在已经安全了——至少刚才那棵被你变成一堆木片的树没法再获奖了!“不过,还有一些工作要做”,@PainterProphet 说道, “需要一些人手来更好地培育树苗。你愿意一起来做吗?”",
"questTreelingBoss": "纠结树",
- "questTreelingDropTreelingEgg": "树芽(蛋)",
- "questTreelingUnlockText": "在市场上解锁树芽蛋以购买",
+ "questTreelingDropTreelingEgg": "树芽(宠物蛋)",
+ "questTreelingUnlockText": "在市场中解锁树芽蛋以购买",
"questAxolotlText": "魔法蝾螈",
"questAxolotlNotes": "从净湖的深处,你看到了不断上升的泡沫和……火?一只小蝾螈从浑浊的水中显现出条纹的颜色。突然它张开嘴,@streak 大叫,“当心!”魔法蝾螈开始吞噬你的意志力!
魔法蝾螈因咒语变得膨胀,它在嘲笑你。“你听说过我的再生能力吗?在我再生之前你就会疲劳的!”
“我们可以打败你的,我们已经建立了良好的习惯!”@PainterProphet 挑衅地大喊。坚强些,高效地打败魔法蝾螈,并夺回你被偷走的意志力!",
"questAxolotlCompletion": "在打败魔法蝾螈之后,你体会到你靠自己夺回了意志力。
@Kiwibot 问道:“意志力?再生?那些只是错觉?”
“大部分魔法都是这样,”魔法蝾螈回答道,“我很抱歉欺骗了你。请收下这些蛋作为我的道歉。我相信你们会提升他们的能力,让他们使用魔法以获得好习惯,还有别作恶!”
你和@hazel40 用一只手抓起你们的新蛋,和其他人挥手告别,魔法蝾螈也回到湖中去了。",
"questAxolotlBoss": "魔法蝾螈",
- "questAxolotlDropAxolotlEgg": "蝾螈 (宠物蛋)",
- "questAxolotlUnlockText": "在市场上解锁蝾螈蛋以购买",
+ "questAxolotlDropAxolotlEgg": "蝾螈(宠物蛋)",
+ "questAxolotlUnlockText": "在市场中解锁蝾螈蛋以购买",
"questAxolotlRageTitle": "蝾螈再生",
"questAxolotlRageDescription": "如果你没有完成每日任务,这个进度条的进度就会前进。当它填满的时候魔法蝾螈会回复它剩余生命值的30%!",
"questAxolotlRageEffect": "`魔法蝾螈使用了蝾螈再生!`\n\n`七彩泡泡遮住了怪物,当它们消失时,魔法蝾螈的伤口也愈合了!`",
@@ -348,26 +348,26 @@
"questTurtleNotes": "救命啊!这只巨大的海龟找不到回到她造巢的海滩的路了。她每年都回到这里下蛋,但是今年未完成海滩充满了由红色每日任务和未完成的待办事项构成的有毒的任务漂浮物。@JessicaChase 说道:“她在恐慌中瑟瑟发抖!”
@UncommonCriminal 嘟哝道:“这是因为她的方向感变得不清晰和混乱。”
@Scarabsi 钩住了你的手臂:“你能帮忙清除这些阻挡了她路线的任务漂浮物吗?这可能是有危险的,但是我们必须帮助她!”",
"questTurtleCompletion": "你英勇地清理了水体,海龟能找到她的海滩了。你、@Bambin 和@JaizakAripaik 看着她把一窝的蛋埋在沙中,他们会成长并孵化出成百上千个小海龟。海龟小姐,她给了你三个蛋,请求你喂养并且教育他们,直到他们自己成为大海龟的那一天。",
"questTurtleBoss": "任务漂浮物",
- "questTurtleDropTurtleEgg": "海龟(宠物蛋)",
- "questTurtleUnlockText": "在市场上解锁海龟蛋以购买",
+ "questTurtleDropTurtleEgg": "海龟(宠物蛋)",
+ "questTurtleUnlockText": "在市场中解锁海龟蛋以购买",
"questArmadilloText": "放纵的犰狳",
"questArmadilloNotes": "是时候走出去开始新的一天了。你摇晃着打开门,却看到了一个看上去像石板一样的东西\"我只给你一天时间休假!\"被堵住的门后传来朦胧的声音。\"不要成为一个大懒汉,但是今天就好好休息吧\"
突然之间,@Beffymaroo 和 @PainterProphet 敲打着你的窗户。\"看上去放纵的犰狳已经带给你了一个嗜好!来吧,我们让她摆脱你的!\"",
"questArmadilloCompletion": "最终,本想去工作的你,用了一整个早晨的时间来劝说放纵的犰狳,她最终知错了。“真对不起!”她说,“我本来是想帮忙的. 我以为所有人都喜欢懒散度日!”
你笑了,并告诉她如果哪天你能休息的话一定会请她过来玩。她咧开嘴笑了。路人 @Tipsy 和 @krajzega 祝贺你做了这么棒的一件事情,这时犰狳滚动着离开了,留下了一些蛋作为赔偿。",
"questArmadilloBoss": "放纵的犰狳",
- "questArmadilloDropArmadilloEgg": "犰狳(蛋)",
- "questArmadilloUnlockText": "在市场上解锁犰狳蛋以购买",
+ "questArmadilloDropArmadilloEgg": "犰狳(宠物蛋)",
+ "questArmadilloUnlockText": "在市场中解锁犰狳蛋以购买",
"questCowText": "变异奶牛",
"questCowNotes": "那是在斯巴英农场中又热又长的一天,除了痛快地喝口水后去睡觉,你再也不想做什么别的了。正当你呆在那里做白日梦的时候,@Soloana突然尖叫起来,“所有人快跑!被捕获的奶牛开始暴动了!”
@eevachu 吞了一口唾沫,“它一定是被我们的坏习惯感染了。”
“快点!”Feralem Tau喊道,“在变异奶牛来临前行动起来!”
你对自己的放羊时间已经够长了,不要再做白日梦了,是时候获取那些坏习惯的控制权了!",
"questCowCompletion": "当你的好习惯奶牛一直保持有价值的时候,你从中挤出牛奶, 直到好习惯奶牛回复成它原来的样子。奶牛用它的棕色漂亮的眼睛看着你,并产出三个蛋。
@fuzzytrees 一边笑着将这些蛋交给你,”如果蛋里面有牛宝宝,也许它仍然是变异的。但是我相信你抚养它们的时候,会坚持你的好习惯!”",
"questCowBoss": "变异奶牛",
- "questCowDropCowEgg": "奶牛 (宠物蛋)",
- "questCowUnlockText": "在市场上解锁奶牛蛋以购买",
+ "questCowDropCowEgg": "奶牛(宠物蛋)",
+ "questCowUnlockText": "在市场中解锁奶牛蛋以购买",
"questBeetleText": "严重的BUG",
"questBeetleNotes": "Habitica域里的好多东西出了岔子。铁匠的熔炉熄灭了,到处都在出稀奇古怪的玄学BUG。伴随着一场不祥的地震,一个家伙悄无声息地从地下蠕动了上来……一条巨大的虫子!一个严重的BUG!看到它在感染这片大陆,你打起精神,发现身边的Habitica居民们身上开始发生故障。@starsystemic 喊道:“我们需要帮助铁匠解决这个BUG!”看起来你必须得把对付程序员不喜欢的这个玩意作为最高优先级了。",
"questBeetleCompletion": "最后一击,你粉碎了这个严重的BUG。@starsystemic 和铁匠欢呼雀跃着来到你面前:“我都不知道该如何感谢你消灭了这个BUG!这些给你。”他送给了你三个闪闪发光的甲壳虫蛋。希望这些小虫子们长大后能有益于Habitica,而不是伤害它。",
"questBeetleBoss": "严重的BUG",
- "questBeetleDropBeetleEgg": "甲虫(蛋)",
- "questBeetleUnlockText": "在市场上解锁甲虫蛋以购买",
+ "questBeetleDropBeetleEgg": "甲虫(宠物蛋)",
+ "questBeetleUnlockText": "在市场中解锁甲虫蛋以购买",
"questGroupTaskwoodsTerror": "恐怖的任务森林",
"questTaskwoodsTerror1Text": "恐怖的任务森林,第1部:任务树林中的大火",
"questTaskwoodsTerror1Notes": "你从未见过快乐收割者如此不安。繁荣土地的主人乘坐她的骷髅狮鹫降落在生产力广场中央,来不及下坐骑便开始呼喊。“可爱的habitica居民们,我们需要你们的帮忙!有些东西正开始在任务树林中燃烧,而我们还没有完全从战斗的劳累中恢复。如果火焰不停止,它会吞噬我们所有的野生果树和浆果!”
你马上答应帮忙,并加速到达了任务树林。当你进入habitica最大的果林时,突然听到叮当声和破裂声从前方的远处传来,还嗅到了淡淡的烟味。很快,一群咯咯叫、燃烧着的头骨怪物飞过你,咬断树枝并把树梢扔到了火焰上!",
@@ -378,7 +378,7 @@
"questTaskwoodsTerror1RageEffect": "`火骷髅群使用了骨群重生!`\n\n受到胜利的激励,更多的骸骨从火焰中冲了出来,壮大队伍!",
"questTaskwoodsTerror1DropSkeletonPotion": "骷髅孵化药水",
"questTaskwoodsTerror1DropRedPotion": "红色孵化药水",
- "questTaskwoodsTerror1DropHeadgear": "烈焰术士头巾(头饰)",
+ "questTaskwoodsTerror1DropHeadgear": "烈焰术士头巾(头饰)",
"questTaskwoodsTerror2Text": "恐怖的任务森林,第2部:找到丰收精灵",
"questTaskwoodsTerror2Notes": "在与火骷髅群的战斗之后,你在森林的边缘遇到了一大群逃难的农民。“他们的村庄被叛变的秋天精灵烧毁了,”一个熟悉的声音说道,是@Kiwibot,传奇的追踪者!“我已经把难民们都聚集到了这里,但是却没有找到帮助森林里的野生水果生长的丰收精灵的踪迹,你得帮我救救他们!”",
"questTaskwoodsTerror2Completion": "你尝试着定位最后的树妖并且引导她远离怪物。当你回到逃难的农夫那里时,你被充满感激的妖精们迎接,他们用闪光魔法和丝绸为你编织了一件长袍。突然,一阵隆隆的回声从树中传出,震动地表。“那一定是叛变的精灵,”快乐的收获者说。“快!”",
@@ -391,13 +391,13 @@
"questTaskwoodsTerror3Completion": "一番争斗之后,你看准时机打落了Jacko携带的那个灯笼!里面的晶体被砸碎了!Jacko突然恢复了理智,流下发光的泪水。“哦,我美丽的森林!我做了什么?!”他痛哭着。他的眼泪熄灭了余火,救下了苹果树和野生浆果。
在你让他平静下来之后,他解释说:“我遇见了一个很有魅力的女士,叫Tzina,她给了我这个发光的晶体,作为礼物。在她的催促下,我把它放进我的灯笼……这是我能回忆起的最后一件事。”他金黄色的脑袋转向你微笑着说:“也许在我帮助野生果园重建的时候,你可以保管着它。”",
"questTaskwoodsTerror3Boss": "杰克南瓜灯",
"questTaskwoodsTerror3DropStrawberry": "草莓(食物)",
- "questTaskwoodsTerror3DropWeapon": "任务森林的灯笼(双手武器)",
+ "questTaskwoodsTerror3DropWeapon": "任务森林的灯笼(双手武器)",
"questFerretText": "那恶毒的雪貂",
"questFerretNotes": "你正走过习惯城市,突然看到一群不开心的人围着一只穿红色长袍的雪貂。
“你卖给我的生产力药水没用!” @Beffymaroo控诉。”我昨晚看了三小时的电视,而不是做家务!”
“是的!”@Pandah大叫。“而且今天我花了一个小时整理我的书,而不是读它们!”
那恶毒的雪貂无辜地摊开手。”那你们看电视和整理书的时间比平常多了呀~不是吗?”
人群中爆发出了愤怒。
“不!退!钱!”恶毒的雪貂洋洋得意地大叫着。他发射了一束魔法到人群中,准备在烟雾中逃离。
“拜托了!Habitican!”@Faye抓住你的胳膊说。”打败那只雪貂!让他把不诚实的收益还回来!”",
"questFerretCompletion": "你击败了软毛的骗子,并且@UncommonCriminal 给了你丰厚的报酬,甚至还有你的一小堆黄金。另外,看起来邪恶的雪貂匆忙逃走时落下了一些蛋!",
"questFerretBoss": "恶毒的雪貂",
"questFerretDropFerretEgg": "雪貂(宠物蛋)",
- "questFerretUnlockText": "在市场上解锁雪貂蛋以购买",
+ "questFerretUnlockText": "在市场中解锁雪貂蛋以购买",
"questDustBunniesText": "野生的灰尘兔子",
"questDustBunniesNotes": "距离你上次打扫这里已经有一会儿了,但你不是很担心——一点灰尘不会怎么样的,对吧?等你把手伸进其中一个灰尘最多的角落,感受到被什么东西咬了之后,你才想起@InspectorCaracal的警告:在你家寄养的小灰尘兔子感受不到你的关爱,就会变成野生灰尘兔到处乱窜。你最好在所有灰尘兔子野化之前温柔地再次驯养它们!",
"questDustBunniesCompletion": "灰尘兔子们消失在……唔,灰尘中。这里干净了,你环顾四周。你一度遗忘这里在干净的时候是多么美好。你在之前灰尘所处的角落找到了一小堆金子。好吧,你都忘了这里之前是放金子的地方!",
@@ -407,29 +407,29 @@
"questMoon1Notes": "Habitica居民被一些奇怪的事情分心了:扭曲的石头碎片出现在地面。出于担心,@Starsystemic 先知召唤你去她的塔。她说,“我一直在研读有关这些碎片的预警征兆,这些碎片已经使大地被破坏,使努力的habitica居民分心。我可以追查它们的源头,但首先我需要研究那些碎片。你能给我捡些碎片来吗?”",
"questMoon1Completion": "@Starsystemic 进入她的塔楼研究你得到的碎片。“这也许比我们担心的更复杂” @Beffymaroo,她信任的助手说。“找到原因还需要一些时间,继续完成你的每日任务,我们了解更多后会寄给你下一个副本卷轴。”",
"questMoon1CollectShards": "月之碎片",
- "questMoon1DropHeadgear": "月亮战士头盔(头部装备)",
+ "questMoon1DropHeadgear": "月亮战士头盔(头部装备)",
"questMoon2Text": "月亮战争,第2部:驱逐遮天蔽日的压力",
"questMoon2Notes": "研究了这些碎片后,@Starsystemic 先知有一些坏消息。“一只远古时的怪物正在接近Habitica,它正在让公民心中产生“压力”的阴影。我可以把人们心中的阴影拖出来,放到塔中,但你得尽快打败它,避免它再次逃脱。”你点点头,于是先知开始咏唱……舞动的影子充满房间,被推着挤在一起。冷风打着旋,黑暗渐深。遮天蔽日的压力从地面上升起,笑得仿佛噩梦成真……它开始攻击了!",
"questMoon2Completion": "阴影在一团黑气中爆炸了,房间变得明亮,你也稍稍可以放松了。覆盖着Habitica的压力减少了,你终于可以大松一口气。但看向天空时,你知道一切并没有结束:那个怪物知道有人摧毁了它的阴影。“我们会继续小心观察几周,”@Starsystemic 说,“等怪物再有动静,会继续给你副本卷轴的。”",
"questMoon2Boss": "遮天蔽日的压力",
- "questMoon2DropArmor": "月亮战士护甲(护甲)",
+ "questMoon2DropArmor": "月亮战士护甲(护甲)",
"questMoon3Text": "月亮战争,第3部:巨大的月亮",
"questMoon3Notes": "在午夜钟声敲响的时候,你得到@Starsystemic 的紧急卷轴,于是飞奔到她的塔。“怪物正试图利用满月跨越到我们的地带,”她说。“如果成功了,压力的冲击波将势不可挡!”
你正焦急时,看到怪物事实上是利用月亮来显化的。一个发光的眼睛在岩石表面打开,一条长长的舌头从一个张开的布满尖牙的口里卷着出来。你绝对不能让它完全显形!",
- "questMoon3Completion": "新兴的的怪物匆匆躲回阴影,月亮变成银色昭示着危险已经过去。龙群再次开始吟唱,星星闪烁柔和的光。@Starsystemic 先知弯腰捡起一片月球碎片。它闪耀着银光在她的手中变成华丽的水晶镰。",
+ "questMoon3Completion": "新兴的怪物匆匆躲回阴影,月亮变成银色昭示着危险已经过去。龙群再次开始吟唱,星星闪烁柔和的光。@Starsystemic 先知弯腰捡起一片月球碎片。它闪耀着银光在她的手中变成华丽的水晶镰。",
"questMoon3Boss": "怪化的月亮",
"questMoon3DropWeapon": "月镰(双手武器)",
"questSlothText": "昏昏欲睡的树獭",
"questSlothNotes": "你和你的队伍行走在昏睡雪林中,看着白色雪地中泛出的微弱绿光,你松了一口气…直到一个巨大的懒惰怪突然出现在结霜的树丛中!它背上的绿宝石闪烁着催眠的光芒。
“你们好,冒险者……为什么你们不慢点走?你们已经走了太久了…为什么不…停下来呢?只需要躺下,然后闭上眼睛休息…”
你感觉到你的眼皮变重了,你忽然意识到它是昏睡的懒惰怪!据@JaizakAripaik说,传说它由于背上有散发出令人产生睡意的绿宝石得名.
你摇摇头使自己清醒,对抗着倦意。就在这时,@awakebyjava 和@PainterProphet 开始吟唱咒语,使整个队伍清醒过来。“现在轮到我们了!”@Kiwibot 怒吼到。",
"questSlothCompletion": "你成功了!你击败了昏睡的懒惰怪,它的绿宝石掉落在地。“谢谢你解除了我的诅咒”,懒惰怪如是说。“我终于可以摆脱这些沉重的宝石好好的睡觉了。作为酬谢这些蛋给你,你也可以拿走那些绿宝石”。懒惰怪给你三个懒惰蛋然后转身去寻找更温暖的地方。",
"questSlothBoss": "昏昏欲睡的树獭",
- "questSlothDropSlothEgg": "树獭(蛋)",
- "questSlothUnlockText": "在市场上解锁树獭蛋以购买",
+ "questSlothDropSlothEgg": "树獭(宠物蛋)",
+ "questSlothUnlockText": "在市场中解锁树獭蛋以购买",
"questTriceratopsText": "那只跺脚的三角龙",
"questTriceratopsNotes": "白雪皑皑的冷静火山总是熙攘着旅者与观光客。@plumilla,一个旅行者,突然在人群中叫喊:“看啊!我使用魔法让地面发光了,这样我们就能在上面玩游戏完成我们的户外每日活动了!”果然,地面旋转着炽热的红色图案。甚至一些史前宠物也出来凑热闹了。
突然,喀嚓一声——一只好奇的三角龙正站在@plumilla 的魔杖上!!它被一股神奇的能量所吞噬,大地开始颤抖,并变得越来越热。那只三角龙的眼里开始泛起红光,它吼叫着开始蹬地。
“……这可不好,”@McCoyly 说,他指了指远方。每一次魔法驱动的跺脚,都在引起火山的喷发,而发光的土地在恐龙足下也开始变成了熔岩!快,你必须控制住那只在跺脚的三角龙,直到有人可以逆转法术!",
"questTriceratopsCompletion": "快速的想了想,你把它驱赶向冷静平原,让@*~Seraphina~* 和 @PainterProphet 能不受干扰地逆转那个熔岩法术。草原的平静气氛起了作用,三角龙绕圈跑的时候火山重新入睡。@PainterProphet 给了你一些从熔岩中救出的蛋。“没有你,我们就不能专注地阻止火山爆发。给这些孩子一个好的家吧。”",
"questTriceratopsBoss": "跺脚的三角龙",
- "questTriceratopsDropTriceratopsEgg": "三角龙 (宠物蛋)",
- "questTriceratopsUnlockText": "在市场解锁三角龙蛋以购买",
+ "questTriceratopsDropTriceratopsEgg": "三角龙(宠物蛋)",
+ "questTriceratopsUnlockText": "在市场中解锁三角龙蛋以购买",
"questGroupStoikalmCalamity": "Stoïkalm灾难",
"questStoikalmCalamity1Text": "Stoïkalm灾难,第1部:地上的敌人",
"questStoikalmCalamity1Notes": "@Kiwibot 寄来了一封简短的信件,看着结了霜的卷轴,你的心和你的指尖一样寒冷。“来Stoïkalm大草原——怪物爆发——救命啊!”你集合了队伍向北骑行,但刚刚硬着头皮从山上下冲来,脚下的雪就炸开了,可怖的骷髅群笑嘻嘻地围住了你!
突然,一只矛掠过,穿过令你惊慌无措的漫天白雪,刺中了一只想要偷袭的骷髅。一名穿着精制护甲的高大女子骑着长毛象杀入战场,她的长辫随着挥舞长矛的动作活泼地甩动,只留下碎了一地的骷髅尸体。该反击了,habitica居民们!跟上冰川夫人——猛犸骑士团的首领!",
@@ -445,32 +445,32 @@
"questStoikalmCalamity2Notes": "庄严的猛犸骑士厅是座一丝不苟的建筑杰作,但它现在却完全是空荡荡的。这里没有家具,看不到武器,甚至柱子里镶嵌的装饰也不见了。
“那些骷髅强盗洗劫了这里,”冰川夫人开口,语气中仿佛酝酿着暴雪。“太丢人了!谁都不许把这事告诉愚者,否则我不会对他善罢甘休的。”
“不可思议!”@Beffymaroo 也说着。“不过它们在哪儿——”
“灞波儿奔的大洞穴里。”冰川夫人指着厅外的雪地,一些闪烁着的硬币还没完全被雪掩埋。“麻痹大意。”
“但灞波儿奔们不是很注重他们的名声吗?而且他们有自己的宝库啊!”@Beffymaroo 还有疑问。“他们怎么可能——”
“精神控制,”冰川夫人打断了他的话,“或者其它差不多的耸人听闻的麻烦东西。”她开始大步离开大厅。“杵在那愣着干嘛?”
快,跟上那些冰凌硬币!",
"questStoikalmCalamity2Completion": "冰凌硬币直接把你带到了一个被巧妙隐藏的地下洞穴入口。虽然外面的天气平静而可爱,阳光照在茫茫的雪地上,这里却仍有一股严冬的风在呼啸。冰川夫人面露厌恶,并给了你一个巨大的骑士头盔。“戴上这个,”她说,“你需要它。”",
"questStoikalmCalamity2CollectIcicleCoins": "寒冰硬币",
- "questStoikalmCalamity2DropHeadgear": "猛犸骑士盔(头部装备)",
+ "questStoikalmCalamity2DropHeadgear": "猛犸骑士盔(头部装备)",
"questStoikalmCalamity3Text": "Stoïkalm灾难,第3部:灞波儿奔地震",
"questStoikalmCalamity3Notes": "灞波儿奔洞里,弯曲交错的隧道闪烁着冰霜的微光……和无法描述的金银珠宝的光芒。你目瞪口呆,但冰川夫人大步走过,吝予一瞥。“过于浮华。”她说,“不管是从可敬的受雇打工还是从谨慎的银行投资得到这些,都是令人钦佩的。但你再往前看看。”你眯起眼睛,看到了阴暗角落里堆成塔的赃物。
当你靠近时,一个嘶嘶的声音响起。“我美味的宝藏!你们不能把它从我这里偷回去!”一个盘曲的身体从那堆财宝上滑下:是灞波儿奔女王本人!在她发出震动你周身地面的巨吼之前,你只来得及看到她手腕上闪烁的奇怪手镯,和眼里的野蛮凶光。",
"questStoikalmCalamity3Completion": "你制住了灞波儿奔女王,使冰川夫人来得及将那发光的手镯打碎。那位女王在明显的羞愧下不自在起来,然后马上换上了一副傲慢的姿态。“尽管把这些不相干的东西带走吧,”她说。“我想它们实在是不适合我们这里的布置。”
“喂,那是你偷来的,”@Beffymaroo 步步紧逼,“你从大地中召唤来了怪物。”
灞波儿奔女王看起来恼羞成怒了:“那得算在卖给我这垃圾手镯的女售货员头上,Tzina才是你要找的人。我跟她完全不是一伙的。”
冰川夫人拍了拍你的肩膀说:“干得不错。”她从那堆东西里拿了一把长矛和一只角给你:“感到自豪吧。”",
"questStoikalmCalamity3Boss": "灞波儿奔女王",
- "questStoikalmCalamity3DropBlueCottonCandy": "蓝色棉花糖(食物)",
- "questStoikalmCalamity3DropShield": "猛犸骑士角(副手装备)",
- "questStoikalmCalamity3DropWeapon": "猛犸骑士矛(武器装备)",
+ "questStoikalmCalamity3DropBlueCottonCandy": "蓝色棉花糖(食物)",
+ "questStoikalmCalamity3DropShield": "猛犸骑士角(副手装备)",
+ "questStoikalmCalamity3DropWeapon": "猛犸骑士矛(武器装备)",
"questGuineaPigText": "豚鼠团伙",
"questGuineaPigNotes": "当 @Pandah 挥手叫你的时候,你正在 Habit 城里有名的市场中漫步 。“嘿,看看这些东西!”他们举起你从未见过的棕色和米色的蛋。
商人亚历山大对此皱起了眉头。“我不记得我拿出了它们。我想知道这些是从哪里——”一只小爪子打断了他的话。
“交出你所有的金币,商人!”吱吱叫的充满了邪恶的声音响起。
“噢不,这些蛋裂开了!”@mewrose 惊呼道。“这是顽固的,贪婪的豚鼠团伙!它们从来不做每日任务,所以他们时不时的窃取金币来购买治疗药水。”
“抢劫市场?”@emmavig 问道。“不要呆在我们的手表上!”不远处呼喊道,你急忙飞跑过去帮助亚历山大。",
"questGuineaPigCompletion": "\"我们认输啦!\"豚鼠头目向你挥舞着爪子,毛茸茸的脑袋羞愧低垂。从豚鼠头目的帽子掉落了一份清单,@snazzyorange迅速扒走做为证据。\"等一下,\"你说。\"难怪你已经受伤了!你的每日任务太多了。你不需要治疗药水──你只需要帮忙组织整理。\"
\"真的吗?\"豚鼠头目吱吱道。\"我们就为了这个抢了那麽多人! 作为我们不当行径的道歉,请拿些我们的蛋吧。\"",
"questGuineaPigBoss": "豚鼠团伙",
- "questGuineaPigDropGuineaPigEgg": "豚鼠(宠物蛋)",
+ "questGuineaPigDropGuineaPigEgg": "豚鼠(宠物蛋)",
"questGuineaPigUnlockText": "在市场中解锁豚鼠蛋以购买",
"questPeacockText": "拖拉孔雀",
"questPeacockNotes": "你正跋涉在任务森林中,思考着该选择哪一个诱人的任务。在深入森林腹地后你意识到你并不是唯一一个在踌躇的人。“我可以去学一门新语言,或者去健身房。”,@Cecily Perez咕哝着。“我想多一些睡眠时间,但和朋友聚一聚也不错”,@Lilith of Alfheim陷入了沉思。@PainterProphet, @Pfeffernusse, 和@Draayder也处于选择困难的境地之中。
你意识到这种越来越吃力的感觉并不是来自自己内心,让你失足蹒跚的是拖拉孔雀的致命陷阱。你正要逃跑,它就从灌木丛里鱼跃而出,两颗头一起咬住你,要将你从中撕开。你开始感觉力不从心,无法同时招架两颗头的攻势。你只有一个选择,集中精力在最近的一个任务上,然后开始反击!",
"questPeacockCompletion": "拖拉孔雀被你坚定的信念打了个措手不及,被你对当前任务的一心一意所击败。它的两颗头融合在一起,这是你见过的最美丽的生物。“谢谢你”,孔雀说,“我一直把自己拖拽向不同的方向,以至于不再知道自己真正想要的是什么。请接受这些蛋作为谢礼吧。”",
"questPeacockBoss": "拖拉孔雀",
- "questPeacockDropPeacockEgg": "孔雀(宠物蛋)",
- "questPeacockUnlockText": "在市场解锁孔雀蛋以购买",
+ "questPeacockDropPeacockEgg": "孔雀(宠物蛋)",
+ "questPeacockUnlockText": "在市场中解锁孔雀蛋以购买",
"questButterflyText": "再见啦,蝴蝶",
"questButterflyNotes": "你的园丁朋友@Megan 向你发来邀请:“现在这样和煦的日子,是参观位于任务汗国农村的Habitica蝴蝶公园的绝佳机会,来看看蝴蝶的大迁徙吧!”但当你到达后,公园内的景象却已混乱一片——徒留了被烧焦的地坪和枯槁的杂草。环境如此炙热以至于Habitica居民还没来得及洒水救火,暗红色的每日任务栏就已经把这里变成了一个烈日灼人,火光四起的地狱!现在这儿只有一只蝴蝶,而且看着有些不对劲。
“糟了!现在这种环境最适宜孵化火焰蝶了!”@Leephon惊呼道。
“如果我们不抓住它,那它将会摧毁一切!”@Eevachu倒吸了一口气。
是时候说再见了,蝴蝶,再见了!",
"questButterflyCompletion": "经过炽烈的打斗,火焰蝶被抓到了。“干得好,我们抓到了这个作案未遂的纵火犯,”@Megan 松了口气说道,“但是它不该受到惩罚,即便它真的很可恶。我们最好将它放生到合适的地方······比如沙漠!”
另一个园丁@Beffymaroo 跟了过来,虽然被轻微烧伤了,还是笑着说:“我们发现了一些被遗弃的蝶蛹,可以请你抚养它们吗?也许明年它们会见到更繁盛的花园。”",
"questButterflyBoss": "火蝴蝶",
- "questButterflyDropButterflyEgg": "毛毛虫(宠物蛋)",
- "questButterflyUnlockText": "在市场解锁毛毛虫蛋以购买",
+ "questButterflyDropButterflyEgg": "毛毛虫(宠物蛋)",
+ "questButterflyUnlockText": "在市场中解锁毛毛虫蛋以购买",
"questGroupMayhemMistiflying": "Misti飞城的混乱",
"questMayhemMistiflying1Text": "Misti飞城的混乱,第1部:Misti飞城遇到可怕的麻烦",
"questMayhemMistiflying1Notes": "虽然本地的预言家预计天气将会不错,但这天下午却异常风大,所以你跟随着你的朋友@Kiwibot 去了她的家中,来躲避这场大风。
但没有意料到的是,愚者正懒洋洋地躺在餐桌上呢。
“哦,你好,”他说,“你们怎么来了,那么,给我来点好茶吧。”
“但……”@Kiwibot说道,“那是我的——”
“那是,那是当然”,愚者一边说道,一边把曲奇饼干往嘴边送,“你只要想着,我突然出现在你家,只是为了缓解下这阵骷髅旋风对我的惊吓。”他随意了嘬了口茶,又说,“顺便提一句,Misti飞城正在遭受攻击。”
你和你的朋友有些惊慌失措,于是飞奔到马厩,骑上了那匹速度最快的飞马,奔向那座流动的城市。正如你所见,一大群在空中旋转着的、发出哒哒声响的骷髅,正包围着整个城市……同时,一些骷髅也将注意力转向了你们!",
@@ -481,43 +481,43 @@
"questMayhemMistiflying1RageEffect": "空中骷髅群使用了骨群重生!\n\n受到胜利的激励,更多的骷髅回旋于天空!",
"questMayhemMistiflying1DropSkeletonPotion": "骷髅孵化药水",
"questMayhemMistiflying1DropWhitePotion": "白色孵化药水",
- "questMayhemMistiflying1DropArmor": "俏皮彩虹信使长袍(护甲)",
+ "questMayhemMistiflying1DropArmor": "俏皮彩虹信使长袍(护甲)",
"questMayhemMistiflying2Text": "Misti飞城的混乱,第2部:疾风更盛",
"questMayhemMistiflying2Notes": "Misti飞城起伏翻滚着,因为令这座城漂浮着的魔法蜜蜂们被暴风疯狂地拍打。在一通不顾一切地寻找之后,你发现愚者在一间小屋里,漫不经心地和一只被五花大绑的、气愤的骷髅头打牌。
@Katy133 高声盖过狂风的呼啸大喊着问:“怎么回事?我们打败了骷髅,但是更糟糕了!”
“那可麻烦了,”愚者赞同道,“拜托你们当个好人,别跟冰川夫人提这事。她总是威胁要不喜欢我了,因为我是个‘灾难性地不负责任’的家伙,现在这状况我怕她误会。”他一边洗牌,一边回答:“也许你们可以跟着Misti蝴蝶?它们是无实体的,所以狂风吹不走它们,而且它们趋于一窝蜂涌向威胁。”他向窗外点点头,这座城的一些守护神在那边正飞向东方。“现在我要认真打牌了——我的对手可顶着张扑克脸在玩牌呐。”",
"questMayhemMistiflying2Completion": "你跟着Misti蝴蝶进来到了风暴眼,可是风太大了,你无法冲进去。
“这个有用,”一个声音在你耳中响起,你差点从坐骑上摔下来。愚者不知怎么的坐在你背后的一截马鞍上。“我听说信使兜帽会放射光环,在恶劣天气下提供保护——非常有用,能避免飞来飞去的时候弄丢信件。来试试?”",
"questMayhemMistiflying2CollectRedMistiflies": "红色Misti蝴蝶",
"questMayhemMistiflying2CollectBlueMistiflies": "蓝色Misti蝴蝶",
"questMayhemMistiflying2CollectGreenMistiflies": "绿色Misti蝴蝶",
- "questMayhemMistiflying2DropHeadgear": "俏皮彩虹信使兜帽(头盔)",
+ "questMayhemMistiflying2DropHeadgear": "俏皮彩虹信使兜帽(头盔)",
"questMayhemMistiflying3Text": "Misti飞城的混乱,第3部:粗鲁的邮递员",
"questMayhemMistiflying3Notes": "Misti蝴蝶群在龙卷风密密麻麻地飞速旋转,难以看清。你眯着眼睛,发现一个多翼的影子漂浮在这巨大风暴的中心。
“噢,天哪,”愚者叹息着,声音几乎被暴风的呼啸淹没了。“看来是小风在那,并且陷入了疯狂。这是个很像回事的问题,可能发生在任何人身上。”
“乘风者!”@Beffymaroo 朝你喊道,“他是 Misti飞城最有天赋的信使法师,他对天气魔法非常熟练。平常他是个很有礼貌的邮递员!”
好象为了反对这个评价,乘风者发出了一声愤怒的尖叫,即使你穿着魔法袍,风暴也几乎把你从坐骑上刮下来。”
“那个花哨的面具是新的,”愚者说道,“也许你应该把它摘下来?”
这是个好主意……但是不来一场战斗的话,这位愤怒的法师不会取下它的。",
"questMayhemMistiflying3Completion": "就在你认为你再也经受不住风的时候,你设法从乘风者的脸上摘下了面具。顿时,龙卷风被吸走,只留下温和的微风和阳光。乘风者困惑地四处张望。“她去哪儿了?”
“谁?”你的朋友@khdarkwolf 问道。
“那个可爱的女人Tzina,她主动说要帮我送一个包裹。”当他看到下方被风横扫过的城市时,他的表情变得黯然。“那么,也许她不那么可爱……”
愚者拍了拍他的背,然后递给你两个闪闪发光的信封。“嘿。你为什么不让这个苦恼的家伙休息一下,你来负责送一点邮件呢?我听说这些信封里的魔法会值得你这么做的。”",
"questMayhemMistiflying3Boss": "乘风者",
- "questMayhemMistiflying3DropPinkCottonCandy": "粉色棉花糖(食物)",
- "questMayhemMistiflying3DropShield": "俏皮彩虹信使的信件(副手装备)",
- "questMayhemMistiflying3DropWeapon": "俏皮彩虹信使的信件(主要装备)",
+ "questMayhemMistiflying3DropPinkCottonCandy": "粉色棉花糖(食物)",
+ "questMayhemMistiflying3DropShield": "俏皮彩虹信使的信件(副手装备)",
+ "questMayhemMistiflying3DropWeapon": "俏皮彩虹信使的信件(主要装备)",
"featheredFriendsText": "“生有羽翼”副本集",
"featheredFriendsNotes": "包括‘救命!哈耳庇厄!’,‘暗夜猫头鹰’,‘掠食明天之鸟’,5月31日之前可购买。",
"questNudibranchText": "NowDo海兔的侵袭",
"questNudibranchNotes": "在Habitica度过懒散一天的你,总算是说服自己检查一下你的待办事项。紧挨着你那深红的任务的,是一群明亮鲜艳的蓝色海兔。你简直入了迷!那蔚蓝的颜色使你最吓人的任务看起来也像最习以为常一样简单。你在一种狂热的恍惚状态中开始了工作,不眠不休地解决掉一个又一个任务……
直到@LilithofAlfheim 朝你泼了一桶冷水,你才醒了过来。“NowDo海兔把你浑身上下都蜇伤了!你得休息一下!”
你惊讶地发现,自己的皮肤红得和待办列表一样。“高产是一方面,”@beffymaroo 说,“但是你也得照顾自己的身体,赶紧的,弄走这些海兔!”",
"questNudibranchCompletion": "你看见最后一只NowDo海兔随着@amadshade 的冲洗从一桩已完成的任务上滑走。它们留下了一个布袋,你打开之后发现里面有一些金币和看起来是蛋的小椭球。",
"questNudibranchBoss": "NowDo海兔",
- "questNudibranchDropNudibranchEgg": "海兔 (宠物蛋)",
- "questNudibranchUnlockText": "解锁:从市场中购买海兔宠物蛋",
+ "questNudibranchDropNudibranchEgg": "海兔(宠物蛋)",
+ "questNudibranchUnlockText": "在市场中解锁海兔蛋以购买",
"splashyPalsText": "“水花飞溅”副本集",
"splashyPalsNotes": "包含“拖拉比赛”,“引导海龟”和“鲸之哀嚎”。7月31日前可购买。",
"questHippoText": "好一个伪君子",
"questHippoNotes": "你和@awesomekitty 筋疲力尽地倒在棕榈树的树荫下。阳光在坚定稀树草原上洒下,炙烤着下方的地面。度过了高产的一天,征服了每日任务,这片绿洲看起来是个休息和放松的好地方。你在水边弯下腰来喝些水时,一只河马突然爬了起来,吓得你跌跌撞撞地退了几步。“这么快就休息了?别这么懒,快去工作。”你试着抗议说你一直在工作,现在需要休息,但河马听不进去。
@khdarkwolf 对你耳语道:“它可一整天都在闲逛,哪来的勇气说你懒?可真是个伪君子!”
你的朋友@jumorales 点了点头。“咱们就让他看看啥叫努力工作!”",
"questHippoCompletion": "河马俯首投降:“是我小瞧你了。似乎你没有在偷懒,我道歉。说句实话,我一直有在计划当中。也许我应该自己做些工作。来,拿着这些蛋,这是我的谢礼。”接过这些蛋,你在水边安顿下来,终于能好好休息了。",
"questHippoBoss": "河马怪",
- "questHippoDropHippoEgg": "河马(宠物蛋)",
- "questHippoUnlockText": "解锁:从市场中购买河马蛋",
+ "questHippoDropHippoEgg": "河马(宠物蛋)",
+ "questHippoUnlockText": "在市场中解锁河马蛋以购买",
"farmFriendsText": "“农场好友”副本集",
"farmFriendsNotes": "包含“变异奶牛”、“驾驭噩梦”、“雷霆公羊”。8月31日前可购买。",
"witchyFamiliarsText": "“巫师亲信”副本集",
"witchyFamiliarsNotes": "包括“鼠王”、“寒霜蜘蛛”、“蛙泽”,10月31日前可购买。",
"questGroupLostMasterclasser": "大师鉴别者的秘密",
- "questUnlockLostMasterclasser": "解锁这个任务,需完成以下任务线的最终任务:“拖拉灾难”,“Misti飞城的混乱”,“Stoïkalm灾难”,“恐怖的任务森林”。",
+ "questUnlockLostMasterclasser": "解锁这个副本,需完成以下副本线的最终副本:“拖拉灾难”,“Misti飞城的混乱”,“Stoïkalm灾难”,“恐怖的任务森林”。",
"questLostMasterclasser1Text": "大师鉴别者的秘密,第1部:字里行间",
"questLostMasterclasser1Notes": "@beffymaroo 和@Lemoness 突然把你叫到习惯大厅,你惊讶地发现Habitica的4个大师鉴别者全员居然在暗淡的晨光中等着你。即使是“快乐收割者”也挂着一副严峻的表情。
“哦豁,你来了,”愚者说。“现在,要不是真的发生了这么可怕的事情,我们也不会打扰你休息的——”
“帮我们调查一下这阵子恶灵附身的事件吧,”冰川夫人打断了他,“所有的受害者都说是个叫Tzina的人干的。”
很明显,这么简单粗暴的总结冒犯到了愚者:“切,我还想演讲一通呢。”
“咱现在赶时间,”冰川夫人回怼道,“而且我的猛犸象还被你没完没了的小实验浇了个湿透。”
“恐怕那位战士大师说的是对的,”魟鱼国王说道,“时间宝贵。你能帮助我们吗?”
你点了点头,他挥挥手便开启了一个传送阵,一间水下的屋子展露于眼前。“和我一起向着拖拉城游过去,我们来找遍我的图书馆看看能不能从文献里得到点线索。”看到你一脸懵,他解释说:“别担心,早在拖拉城下沉之前,书卷就附过魔了。那些书一点都不会被水给弄糊。”他挤了挤眼:“不像冰川夫人的猛犸象。”
“魟鱼,我听见你在背后说我坏话了。”
你跟在法师大师身后潜下水底,双腿神奇地变成了鱼鳍。虽然你的身躯灵活轻快,但看到成千上万的书架之后,你的心不由得沉了下去。趁早开工为妙……",
"questLostMasterclasser1Completion": "连续查阅了几小时书籍后,你仍然没有找到任何有用的信息。
“这简直是不可能完成的任务,我们连一点相关的内容都找不到,”图书管理员@Tuqjoi说道。Ta的助手@stefalupagus挫败地点了点头。
魟鱼国王眯了眯眼。“不可能……”他说。“有意为之。”他手上的水发起微光,几本书抖动起来。“有什么东西在隐藏信息,”他说。“不是静态的咒语,而是某种有自己意愿的东西。某种……活着的东西。”他从桌子上游起来。“快乐收割者必须知道这件事。准备好路上的饭吧。”",
@@ -528,7 +528,7 @@
"questLostMasterclasser2Notes": "快乐收割者用她细瘦的手指敲着你借来的书。“哦,亲爱的,”这位医者大师说。“考虑到这些骚乱中都有苏生的骷髅在进行攻击,我猜是某种邪恶的生命本质作祟。”她的助手@tricksy.fox 搬来一个箱子,你看到@beffymaroo 拿出的东西后吃了一惊:竟然和神秘的Tzina用来对人下恶咒的东西一模一样。
“我要放个共鸣治愈术让这家伙显形,”快乐收割者说,你才想起他“骨子”里是个天马行空的医者。“你得把一会儿显现的信息快速读取出来,以免它们散佚掉。”
当她集中注意力,开始从书中抽取蜿蜒的迷雾萦绕在法器周围。很快,你翻阅着书页,试着阅读一行行新写入眼前的文字。你只跟上了几个片段:“浪费时间之沙”——“巨大灾难”——“分裂成4部分”——“永远被侵蚀”——然后你的视线被一个名字吸引了:Zinnya。
突然,书页扭动着从你的指尖挣脱而且撕碎了它们自己,形成了一个膨胀着、咆哮着的生物,聚集在这些被附灵的物品上。
“这是逃避者!”快乐收割者大喊道,甩出一道守护咒。“它们是混乱无明的古老生物。如果Tzina能控制它,她肯定对生命魔法有吓人的掌控力。快点,在它钻进书本逃掉之前打败它!”",
"questLostMasterclasser2Completion": "逃避者最终溃散了,你把读到的片段告诉大家。
“就算是我这么老的人,对你提到的事情也没有一件听起来耳熟,”快乐收割者说,“除了……浪费时间是一个地处Habitica环境最恶劣的边缘地带的遥远沙漠。传送阵在那附近总是失效,但迅捷的坐骑能让你飞快到达。冰川夫人会乐意帮忙的。”她调皮地上扬了语调:“也就是说那位被迷倒了的盗贼大师毫无疑问也会跟去的。”她递给你一副闪光的面具。“也许你该循着这些物品上残留的魔法痕迹去追溯源头。我去为你的旅途收割点食粮。”",
"questLostMasterclasser2Boss": "逃避者",
- "questLostMasterclasser2DropEyewear": "以太面具(眼镜)",
+ "questLostMasterclasser2DropEyewear": "以太面具(眼镜)",
"questLostMasterclasser3Text": "大师鉴别者的秘密,第3部:黄沙掩埋的城市",
"questLostMasterclasser3Notes": "当夜幕降临于灼热的浪费时间沙漠上时,你的向导@AnnDeLune、@Kiwibot 和@Katy133 引你前行。几座褪色的石柱伫立在阴影中的沙丘上,随着你接近它们,一阵奇怪的滑行声回响在这片似乎废弃多时的广场上。
“隐形生物!”愚者毫不掩饰他虎视眈眈的样子,“哦嚯!想象一下这种可能性:这肯定是个鬼鬼祟祟的盗贼所为。”
“一个有可能盯着咱们的盗贼,”冰川夫人跳下坐骑,扬起长矛,“如果要正面打一架的话,尽量别激怒敌人。我可不想重蹈火山那时候的覆辙。”
愚者冲她粲然一笑,说:“但那是你最辉煌的营救行动之一。”
听到这句恭维,冰川夫人颊上竟然泛起些许绯红,你为此小小的惊讶了一下。她匆忙噔噔地跑去检查这片遗迹。
“看上去像古城的残骸,”@AnnDeLune 说,“我想知道……”
她还来不及说完话,一个传送阵咆哮着出现在天空中。这片地方不是说魔法在这不灵的吗?隐形动物蹄声雷动,四散奔逃,你却在铺天盖地的嘶叫着的骷髅潮涌面前稳住了身形。",
"questLostMasterclasser3Completion": "愚者用喷沙大法给最后一个骷髅来了个惊喜,那骷髅朝后一躲正撞上冰川夫人的长矛,立刻被搅得粉碎。你喘了口气,仰望天空,看到某人的轮廓在徐徐关闭的传送阵彼端一闪而过。心念电转,你从那一箱被恶灵附过的东西里夺过护身符,并且非常确定,它指引向那个看不清的家伙。无视了冰川夫人和愚者的大喊和警告,你蹭在传送阵关闭前跳了过去,坠入漆黑无物的狭间。",
@@ -544,34 +544,34 @@
"questLostMasterclasser3DropZombiePotion": "僵尸孵化药水",
"questLostMasterclasser4Text": "大师鉴别者的秘密,第4部:迷失的大师鉴别者",
"questLostMasterclasser4Notes": "你浮出传送阵的表面,但你仍然悬浮在一个奇怪的、变幻莫测的幽冥空间中。“好大的胆子,”一个冷酷的声音响起,“我得承认,我的计划里此前没有当面对峙这项。”一个女人从翻腾的漩涡中升起。“欢迎来到虚空领域。”
你拼命忍住一阵反胃呕吐的感觉。“你就是Zinnya?”你问她。
“一个年轻的理想主义者的曾用名,”她答道,撇了撇嘴,世界在你们下方痛苦地扭曲着,“我并不是。如果非得扯上点关系的话,你应该叫现在的我Zinnya的反对者,Anti’zinnya(Tzina),鉴于我的所作所为和还没来及做的一切。”
传送阵突然在你身后重新开启,并且把4位大师鉴别者在你面前甩了出来。Anti’zinnya的双眼闪着仇恨的光芒。“我看到我那些可怜的替代品们竟然跟着你来了。”
你盯着她问道:“替代品?”
“作为大师级的以太术士,我曾是第一位大师鉴别者——也是唯一的大师鉴别者。这4个人充其量算拙劣的模仿者,他们每个人只有我曾拥有的力量的一点零碎!我能够调遣一切咒语,也学过任何一种技能。你们因我心血来潮的创世造物而存在,直到力量背叛了我,以太因无法承受我的才华,以及我完美而合理的愿景之重而崩溃。我在此间被困千年,制造虚空,逐渐康复。想象一下当我知道我遗落世间的才学被玷污时那恶心的心情吧。”她疯狂地大笑,笑声在这诡异的空间中回响。“我的计划是在毁灭他们之前先毁灭他们的领地,但现在我觉得顺序也无关紧要了。”迸发出不可思议之力的同时,她冲上前来,整个虚空领域爆裂成一片混乱。",
- "questLostMasterclasser4Completion": "在你的猛攻之下,迷失的大师鉴别者发出了充满挫败感的哀嚎,她的身形摇曳闪烁着变成了半透明状。像鞭子一样猛烈抽打着一切的虚空仍然环绕在跌落的她周围,然而刹那之后,她的存在发生了变化。她变成了更年轻、冷静、脸上浮现出平静表情的样子……然后,一切都悄无声息地消散了,你又一次跪倒在沙漠的沙地上。
“看来咱们对自己的历史有很多要去了解的啊。”魟鱼国王凝视着残破的废墟,“在以太术士大师被自己的能力压垮而失去控制之后,倾盆而出的空虚肯定让整片大陆生灵涂炭了。可能一切都变成了像这样的沙漠。”
“难怪建立Habitica的祖先们一再强调要保持生产力和健康的平衡,”快乐收割者低声说,“想想重建世界那么重的任务足以使人望而却步了,但他们也曾想避免这种天灾人祸再次发生。”
“哦嚯,看看这些恶灵附过的东西!”愚者说。显然,在你让Anti’zinnya的亡灵得以安息时,这些装备沾最后一阵以太爆发的光,变成了影影绰绰的半透明质,闪着苍白的光芒。“真是令人眼花缭乱的效果,我得把这些记录下来。”
“也许此地的动物能隐形也是因为残存的以太凝聚在这里。”冰川夫人把手伸向耳后,抓了一把空气。你感觉到有个看不见的毛茸茸的小脑袋在蹭你的手,这下等回头到家,你得跟马厩里的其他坐骑好好解释一通了。你最后再看了一眼这片废墟,发现史上第一的那位大师鉴别者最终唯一留下来的东西:她那件明灭闪烁的斗篷。你将它披在肩上,回头向Habit城走去,回味着你刚刚经历的一切。",
+ "questLostMasterclasser4Completion": "在你的猛攻之下,迷失的大师鉴别者发出了充满挫败感的哀嚎,她的身形摇曳闪烁着变成了半透明状。像鞭子一样猛烈抽打着一切的虚空仍然环绕在跌落的她周围,然而刹那之后,她的存在发生了变化。她变成了更年轻、冷静、脸上浮现出平静表情的样子……然后,一切都悄无声息地消散了,你又一次跪倒在沙漠的沙地上。
“看来咱们对自己的历史有很多要去了解的啊。”魟鱼国王凝视着残破的废墟,“在以太术士大师被自己的能力压垮而失去控制之后,倾盆而出的空虚肯定让整片大陆生灵涂炭了。可能一切都变成了像这样的沙漠。”
“难怪建立Habitica的祖先们一再强调要保持生产力和健康的平衡,”快乐收割者低声说,“想想重建世界那么重的任务足以使人望而却步了,但他们也曾想避免这种天灾人祸再次发生。”
“哦嚯,看看这些恶灵附过的东西!”愚者说。显然,在你让Anti’zinnya的亡灵得以安息时,这些装备沾最后一阵以太爆发的光,变成了影影绰绰的半透明质,闪着苍白的光芒。“真是令人眼花缭乱的效果,我得把这些记录下来。”
“也许此地的动物能隐形也是因为残存的以太凝聚在这里。”冰川夫人把手伸向耳后,抓了一把空气。你感觉到有个看不见的毛茸茸的小脑袋在蹭你的手,这下等回头到家,你得跟马厩里的其他坐骑好好解释一通了。你最后再看了一眼这片废墟,发现史上第一的那位大师鉴别者最终唯一留下来的东西:她那件明灭闪烁的斗篷。你将它披在肩上,回头向Habit城走去,回味着你刚刚经历的一切。
",
"questLostMasterclasser4Boss": "Anti'zinnya",
"questLostMasterclasser4RageTitle": "虚空抽取",
"questLostMasterclasser4RageDescription": "虚空抽取:当你没完成每日任务时,Boss的怒气值会增加。当怒气槽满时,Anti'zinnya将会抽空全队的魔法值!",
"questLostMasterclasser4RageEffect": "`Anti'zinnya 使用了 虚 空 抽 取!`在一阵澎湃灵泉的反向咒术中,你感到魔法被无尽的黑暗抽干了!",
- "questLostMasterclasser4DropBackAccessory": "以太斗篷 (背部挂件)",
- "questLostMasterclasser4DropWeapon": "以太水晶 (双手武器)",
+ "questLostMasterclasser4DropBackAccessory": "以太斗篷(背部挂件)",
+ "questLostMasterclasser4DropWeapon": "以太水晶(双手武器)",
"questLostMasterclasser4DropMount": "隐形以太坐骑",
"questYarnText": "一条缠绕的毛线",
"questYarnNotes": "今天天气真好,适合去任务汗国的郊外散步。你路过一家有名的毛线商店时,一声惨叫刺破长空,惊飞了鸟儿,吓跑了蝴蝶。你向声源跑去,看见@Arcosine 迎面向你跑来。一团巨大的毛线,上面插着大大小小的毛衣针、大头针,叮咣作响地撵在他屁股后面穷追不舍。
毛线店的店主也追了出来,@stefalupagus 一把抓住了你的胳膊,上气不接下气地说:“看看这一堆没完成的计划吧,呼……哈……它们让毛线商店里的线团变形了,嘶……呼……成了这么一大团缠绕的毛线!”
“有时候,生活当中会出现一些困难,计划执行不下去了,结果事情就变得很让人纠结和迷茫,”@khdarkwolf 说,“这种迷茫甚至可能会影响其他方面的工作,最后就成了疲于应付一大堆半途而废的工作,没有一件是好好做完的!”
必须当机立断:完成你陷入停滞的计划……或者重新梳理一下,重定计划。不管你选哪个,你都得赶紧提高效率了,赶在这一大团缠绕的毛线把迷茫和矛盾心态传播到Habitica的其他地方之前解决掉它!",
"questYarnCompletion": "大线团无力地用针线包抡了最后一下,发出虚弱的嘶吼,终于被拆成一大堆小毛线球。
“照顾好这些毛线,”毛线店店主@JinjooHat 把它们递给了你,“如果你好好喂养照顾它们,它们会长成新意满满、激动人心的项目,能让你平步青云,一飞冲天……”",
"questYarnBoss": "可怕的大团毛线",
- "questYarnDropYarnEgg": "毛线(宠物蛋)",
- "questYarnUnlockText": "在市场上解锁毛线蛋以购买",
+ "questYarnDropYarnEgg": "毛线(宠物蛋)",
+ "questYarnUnlockText": "在市场中解锁毛线蛋以购买",
"winterQuestsText": "“冬天”副本集",
- "winterQuestsNotes": "包括“圣诞陷阱猎手”、“找熊仔”和“冰霜禽类”。12月31日前可购买。",
+ "winterQuestsNotes": "包括“圣诞陷阱猎手”、“找熊仔”和“冰霜禽类”。1月31日前可购买。注意,圣诞陷阱猎手和找熊崽奖励可堆叠的副本成就,但会奖励的稀有宠物和坐骑只能添加到你的马厩一次。",
"questPterodactylText": "翼龙",
"questPterodactylNotes": "你在Stoïkalm悬崖边散步时,一声邪恶的尖啸划破长空。你转过头来,看到一只丑陋的生物向着你从天而降,你立刻为巨大的恐惧所支配。当你扭头想逃跑时,@Lilith of Alfheim 一把抓住了你,说道:“别害怕!那只是一只翼龙。”
@Procyon P 点头赞同道:“它们的巢在附近,翼龙会被坏习惯和完不成的每日任务的气味吸引过来。”
“不用担心,”@Katy133 说,“我们只要提高效率多干活,就能战胜它!”你重新充满了决心,摆出了接敌的架势。",
"questPterodactylCompletion": "伴随着翼龙的最后一声惨叫,它从悬崖边上跌了下去。你跑到悬崖边向下看去,看见翼龙展翅重新飞上天空,掠过广袤的大草原。你松了口气:“嚯,可算是完事了。”@GeraldThePixel 回了句话:“我也这么觉得。”@Edge 递给你3个蛋:“看!它给咱们留下了几个蛋。”在好习惯和蓝色的每日任务的围绕下,你发誓要把它们平安养大。",
"questPterodactylBoss": "翼龙",
- "questPterodactylDropPterodactylEgg": "翼龙(宠物蛋)",
- "questPterodactylUnlockText": "解锁翼龙蛋购买功能",
+ "questPterodactylDropPterodactylEgg": "翼龙(宠物蛋)",
+ "questPterodactylUnlockText": "在市场中解锁翼龙蛋以购买",
"questBadgerText": "快别缠着我了!",
"questBadgerNotes": "啊,寒冬的任务森林。柔软的雪落下,树枝上闪着霜华,丰收精灵……还没有沉睡?
“他们怎么还醒着啊?”@LilithofAlfheim 发出了一声哀嚎,“如果他们不冬眠的话,来年播种季节的时候会无精打采的!”
你和@Willow the Witty 赶紧开展了调查,一个毛茸茸的脑袋从地里探出头来。在你尖叫出声之前,@Willow the Witty 提醒你:“是纠缠不休的獾!”它抢走了精灵们“冬眠”这项待办,丢出来了一大列讨厌的任务,然后溜回它的洞穴!
@plumilla 说:“这些精灵一直被这样打扰的话,难怪他们没办法休息。”你能撵走这只獾,守护任务森林的来年丰收吗?",
"questBadgerCompletion": "你终于赶走了纠缠不休的獾,它匆忙逃回了自己的洞穴。在隧道的尽头,你发现了一堆精灵们的“冬眠”待办。这个巢穴看上去已经废弃了,除了3个看起来可以孵的宠物蛋。",
"questBadgerBoss": "纠缠不休的獾",
- "questBadgerDropBadgerEgg": "獾(宠物蛋)",
- "questBadgerUnlockText": "解锁獾蛋购买功能",
+ "questBadgerDropBadgerEgg": "獾(宠物蛋)",
+ "questBadgerUnlockText": "在市场中解锁獾蛋以购买",
"questDysheartenerText": "失恋怪",
"questDysheartenerNotes": "在情人节的早上,大家突然听到震惊的摔声。遍及所有建筑物,都看到了令人作呕的粉红光。当深深的裂缝穿过Habit市的大街,砖块崩溃了。一个怪异的尖叫升起,把窗口粉碎。从地上的裂口,一个巨大的生物向前走。
下颌骨咬合,甲壳闪闪发光;腿在空中松开。人群开始大叫时,这个类虫生物起立,展现自己就是最残酷的生物:令人恐惧的失恋怪。它期待中的叫,向前冲,想吃勤劳的Habitica居民的希望。
“大家振作起来!” Lemoness叫。“因为很多人有艰巨的新年决议,它可能以为我们是降服的猎物。但是,它会发现Habitica居民知道如何坚持的目标!”
AnnDeLune抬她的员工。“我们开始做完我们的任务,杀死这个魔鬼吧!”",
"questDysheartenerCompletion": "失恋怪打败了!
大家一起对任务产生了最后的打击,让失恋怪后退和沮丧地尖叫。“怎么了,失恋怪?” AnnDeLune叫,她的眼睛闪闪发光。“觉得灰心吗?”
发亮的粉红色裂缝横穿失恋怪的甲壳,把魔鬼在粉红色的烟雾中破碎。当新的活力和决心席卷整个土地时,一连串甜蜜降落在每个人身上。
人群疯狂地欢呼时,他们的宠物开心地享受迟来的情人节礼物。突然间,欢乐的歌声在空中飞舞和亮晶晶轮廓在天空中飞。
我们刚充满活力的乐观情绪吸引了一群希望天马!优雅的生物落在地上,饶有兴致地挥舞着羽毛,跃跃欲试。“我们好像交了许多新朋友,它们帮助大家保持精神振奋,甚至于在任务难的时候。”Lemoness解释。
Beffymaroo的手臂已经满是蓬松的宠物。“它们可能会帮我们重建Habitica被破损的地方!”
唱歌的希望天马引领着所有Habitica居民共同努力恢复心爱的家园。",
@@ -585,9 +585,9 @@
"marketRageStrikeHeader": "市场被攻击了!",
"marketRageStrikeLead": "Alex 心碎了!",
"marketRageStrikeRecap": "2月28日,我们的神秘商人Alex因为失恋怪对市场的攻击而陷入了深深的恐惧。快,完成你的任务,打败怪物,帮助重建!",
- "questsRageStrikeHeader": "任务商店被攻击了!",
+ "questsRageStrikeHeader": "副本商店被攻击了!",
"questsRageStrikeLead": "Ian 心碎了!",
- "questsRageStrikeRecap": "3月6日,我们的副本商人Ian因为失恋怪对副本商店的攻击而受了深深的惊吓。快,完成你的任务,打败怪物,帮助重建!",
+ "questsRageStrikeRecap": "3月6日,我们的探索副本向导Ian因为失恋怪对副本商店的攻击而受了深深的惊吓。快,完成你的任务,打败怪物,帮助重建!",
"questDysheartenerBossRageMarket": "`沮丧鬼用心碎攻击!`\n\n啊!沮丧鬼吃了我们又没有做完每日任务后,又用了心碎攻击,把市场的墙壁和地板弄碎!石头下落时,商人Alex看着自己被粉碎的商品哭泣。\n\n我们不能让这种情况再次发生!做完你的每日任务,避免沮丧鬼使用其最后的打击。",
"questDysheartenerBossRageQuests": "`沮丧鬼用心碎攻击!`\n\n啊!我们又没有做完每日任务,给沮丧鬼聚集力量给我们心爱店主最后一击。Ian周围的农村被震惊心碎攻击撕开,让Ian惊吓过度。我们几乎击败这个怪物.... 快点!现在不要停止!",
"questDysheartenerDropHippogriffPet": "希望天马(宠物)",
@@ -600,7 +600,7 @@
"questSquirrelCompletion": "你们用比较温柔的方式,建议松鼠来一把交易,念了些安抚性的咒术,成功把松鼠从囤积的东西上面哄走了,将它领回马厩,那边@Shtut 刚好把锁里的坚果搞出来。他们在旁边的工作台上放了几个橡子。“这几个是松鼠蛋!也许你能养几只不会老是玩自己吃的的松鼠。”",
"questSquirrelBoss": "狡猾的松鼠",
"questSquirrelDropSquirrelEgg": "松鼠(宠物蛋)",
- "questSquirrelUnlockText": "解锁松鼠蛋购买功能",
+ "questSquirrelUnlockText": "在市场中解锁松鼠蛋以购买",
"cuddleBuddiesText": "“拥抱朋友”副本集",
"cuddleBuddiesNotes": "包括“杀人兔”、“那恶毒的雪貂”和“豚鼠团伙”。5月31日前可购买。",
"aquaticAmigosText": "“水生生物”副本集",
@@ -610,21 +610,21 @@
"questSeaSerpentCompletion": "你全力地用完成的任务糊了海蛇一脸,它终于撤退了,消失在深渊当中。你终于到达了拖拉城,不由得松了口气,然后就注意到@*~Seraphina~ 拿着3个半透明的蛋走了过来。“这是你应得的,”她说,“你懂得怎么处理海蛇!”你接过宠物蛋,对天发誓你要保持完成任务的决心,保证不会再陷入这种境地了。",
"questSeaSerpentBoss": "强大的海蛇",
"questSeaSerpentDropSeaSerpentEgg": "海蛇(宠物蛋)",
- "questSeaSerpentUnlockText": "解锁海蛇蛋购买功能",
+ "questSeaSerpentUnlockText": "在市场中解锁海蛇蛋以购买",
"questKangarooText": "袋鼠大灾变",
"questKangarooNotes": "好像你真的得做剩到最后的那个任务了……你也很清楚自己一直在逃避的那个任务,即使它总会在你面前晃。但是@Mewrose、@LilithofAlfheim 请你和@stefalupagus 去看个稀罕,一队袋鼠跳过坚定稀树草原,这谁顶得住啊?!当一队袋鼠出现在你眼前时,你感到后脑勺上狠狠挨了一下!
甩甩脑袋从一阵眼冒金星当中缓过来,你捡起了袭击你的凶器——一只深红色的回力镖,上面刻着你一直拖着的那个任务。你环顾四周,发现全队都中了一样的招数。一只大袋鼠冲你得意地咧嘴笑着,仿佛她在嘲讽你敢不敢一鼓作气地面对她,还有你一直害怕的那个任务!",
"questKangarooCompletion": "“就是现在!”你示意全队朝着袋鼠甩出回力镖。袋鼠每挨一下就后跳一步,直到她彻底逃跑,绝尘而去。只留下几个蛋和一些金币。
@Mewrose 朝着袋鼠逃跑的方向走去,问道:“嘿,那些回力镖哪去了?”
@stefalupagus 推测说:“它们可能随着咱们完成各自的任务而化作烟尘了,难怪我看袋鼠逃跑的时候那一溜烟的烟好像有点红。”
@LilithofAlfheim 眯着眼睛,看向远方的地平线:“那是……又一队袋鼠冲着咱们过来了吗?”
你们立刻头也不回地往Habit市区跑。还是在挨当头棒喝之前就干完困难的任务比较好!",
"questKangarooBoss": "灾变袋鼠",
"questKangarooDropKangarooEgg": "袋鼠(宠物蛋)",
- "questKangarooUnlockText": "解锁袋鼠蛋购买功能",
+ "questKangarooUnlockText": "在市场中解锁袋鼠蛋以购买",
"forestFriendsText": "“林深时见”副本集",
"forestFriendsNotes": "包括“春之幽灵”、“巨型刺猬”和“纠结树”。9月30日前可购买。",
"questAlligatorText": "鳄鱼的煽动:此刻更要紧的事",
"questAlligatorNotes": "“当心!”@gully 大喊道,“这里是短吻鳄的自然栖息地,咱们附近就有一头!小心点,它会用此时此刻似乎很要紧的事情让它的猎物分心,然后以因此完不成的每日任务为食。”你不敢吱声,以免吸引鳄鱼的注意,但毫无用处。那头鳄鱼发现了你,朝你冲了过来!整个淤塞之沼的上空都回响着让你分心的声音,吸引着你的注意力:“刷动态!那谁发的图真有意思!群聊里搞了个大新闻!”你努力地抵抗并反击着,完成每日任务,加强自己的好习惯,和短吻鳄的煽动作斗争。",
"questAlligatorCompletion": "当你的注意力集中在真正重要的事情上,置短吻鳄的引诱于不顾的境地,那头鳄鱼就逃跑了。胜利啦!@mfonda 问:“这些是蛋吗?我觉得看起来像鳄鱼蛋。”@UncommonCriminal 答:“如果咱们好好照顾它们,它们能长成忠于我们的宠物,或者可靠的坐骑。”他递给你3个让你来养的蛋。但愿如此吧,否则养不好的话可能又要变成煽动人分心的鳄鱼了……",
"questAlligatorBoss": "即刻教唆犯",
- "questAlligatorDropAlligatorEgg": "鳄鱼(宠物蛋)",
- "questAlligatorUnlockText": "解锁鳄鱼蛋购买功能",
+ "questAlligatorDropAlligatorEgg": "鳄鱼(宠物蛋)",
+ "questAlligatorUnlockText": "在市场中解锁鳄鱼蛋以购买",
"oddballsText": "“神奇小球”副本集",
"oddballsNotes": "包括“果冻摄政王”、“逃离山洞生物”和“一团缠绕的毛线”。2月3日前可购买。",
"birdBuddiesText": "“禽鸟”副本集",
@@ -633,30 +633,30 @@
"questVelociraptorNotes": "你正和@*~Seraphina~*、@Procyon P 还有@Lilith of Alfheim 在Stoïkalm大草原的湖边吃蜂蜜蛋糕。突然,一个悲哀的声音打断了你们的野餐。
我的习惯给我成吨打击,
我完不成每天的任务集,
感觉自己就像个哈皮,
沉迷颓废人生自我怀疑,
只有打起网游才感觉不那么垃圾,
一回现实生活就只会让任务拖过期。
@*~Seraphina~* 从草丛里探头看了一眼:“那是个光速rap龙,它看起来……很沮丧?”
你握紧拳头,充满了决心:“看来只有比比谁的舌头更溜了——Rap battle time!”",
"questVelociraptorCompletion": "你从草丛里跳出来,站在光速rap龙面前。
看这儿,rapper,你才不能退缩,
你要坚持让坏习惯全部变成泡沫!
像个大佬完成todo任务各个击破,
不要在这儿唉声叹气简直像个怂货!
rap龙重新充满了信心,蹦蹦跳跳地开始了新一天的freestyle创作,留下了3个蛋作为给你们的谢礼。",
"questVelociraptorBoss": "光速rap迅猛龙",
- "questVelociraptorDropVelociraptorEgg": "迅猛龙(宠物蛋)",
- "questVelociraptorUnlockText": "解锁迅猛龙蛋购买功能",
+ "questVelociraptorDropVelociraptorEgg": "迅猛龙(宠物蛋)",
+ "questVelociraptorUnlockText": "在市场中解锁迅猛龙蛋以购买",
"mythicalMarvelsNotes": "包含“说服独角兽女王”、“火红的狮鹫”、“深度危险:海蛇冲撞!”,有效期到2月28日。",
"mythicalMarvelsText": "“神话传说”副本集",
"rockingReptilesNotes": "包含“The Insta-Gator”,“分心蛇”,以及“The Veloci-Rapper”副本。9月30日前有效。",
- "rockingReptilesText": "摇摆的爬行动物副本集",
+ "rockingReptilesText": "“摇摆的爬行动物”副本集",
"questRobotCollectSprings": "弹簧",
"questRobotCollectBolts": "螺栓",
"questRobotCollectGears": "齿轮",
"questRobotUnlockText": "在市场上解锁机器人蛋以购买",
- "questRobotDropRobotEgg": "机器人 (宠物蛋)",
+ "questRobotDropRobotEgg": "机器人(宠物蛋)",
"questSilverCollectSilverIngots": "银锭",
- "questDolphinUnlockText": "在市场上解锁海豚蛋以购买",
- "questDolphinDropDolphinEgg": "海豚 (宠物蛋)",
+ "questDolphinUnlockText": "在市场中解锁海豚蛋以购买",
+ "questDolphinDropDolphinEgg": "海豚(宠物蛋)",
"questSilverCollectCancerRunes": "巨蟹座卢恩",
"questSilverCollectMoonRunes": "月亮卢恩",
- "questSilverUnlockText": "在市场上解锁银孵化药水以购买",
+ "questSilverUnlockText": "在市场中解锁银孵化药水以购买",
"questSilverDropSilverPotion": "银孵化药水",
- "delightfulDinosText": "愉快的恐龙副本集",
+ "delightfulDinosText": "“愉快的恐龙”副本集",
"delightfulDinosNotes": "包含“翼龙”,“那只跺脚的三角龙”,以及“出土恐龙化石”副本。11月30日前有效。",
"questRobotText": "神奇的机械奇迹!",
"questAmberText": "琥珀联盟",
"questAmberDropAmberPotion": "琥珀孵化药水",
- "questAmberUnlockText": "在市场上解锁琥珀孵化药水以购买",
+ "questAmberUnlockText": "在市场中解锁琥珀孵化药水以购买",
"questAmberCompletion": "“琥珀蜥蜴?”@-Tyr-平心静气的说。“你能放手@Vikte吗?我不认为他们喜欢高高在上。”
琥珀蜥蜴的琥珀色的皮肤变红色。她轻轻将@Vikte降到地面。“对不起!我很久没有客人,我已经忘记注意我的举止!”她滑行向前向你打招呼,然后消失在树屋里,并带着几个琥珀孵化药水作为礼物送给你!
“孵化药水!”@Vikte倒吸了一口气。
“哦,这些旧东西?” 琥珀蜥蜴的舌头如她所想的那样颤悠。“这个怎么样? 如果您答应经常拜访我,我将为您提供全部的孵化药水...”
因此,你离开任务森林,兴奋地向所有人介绍新药水-和你的新朋友!",
"questAmberNotes": "当@Vikte冲进门,兴奋地告诉你有关任务森林中隐藏的另一种魔术孵化药水的谣言时,你正与@beffymaroo和@ -Tyr-坐在酒馆。 完成每日任务后,你们三个立即同意帮助@Vikte进行搜索。
毕竟,在一次小小的冒险中会有什么害处?你任务森林走了很多小时后,你开始后悔加入这么愚蠢的追逐。你将要回家,但是你听到一声惊讶叫声。你转身看到一只巨大的蜥蜴,上面闪闪发光的琥珀色鳞片缠绕在树上,用爪子抓着@Vikte。@beffymaroo伸手去拿剑。
“等等!” @-Tyr-喊叫。 “是琥珀蜥蜴!她并不危险,只是爱缠人!”",
"questRobotCompletion": "@Rev和“问责好友”将最后一个螺栓固定到位时,时间机器嗡嗡作响。@FolleMente和@McCoyly跳上船。“感谢你的协助!我们将来会见!这些应该可以帮助你进行下一个发明!”这样,时空穿越者消失了,但是在旧的生产力稳定器的残骸中,他们留下了三个发条装置蛋。也许这将是新的“问责好友”生产线的关键组成部分!",
@@ -671,8 +671,9 @@
"questSilverText": "银溶液",
"questAmberBoss": "琥珀蜥蜴",
"questBronzeNotes": "在任务之间的休息时,你和一些朋友在任务森林小径上漫步。你遇到一个大的有空心木,里面的发光吸引了你的注意。
哦!这是孵化药水的储藏!当闪闪发光的青铜液体在瓶子中轻轻旋转,@Hachiseiko伸手拿起瓶子对它进行检查。
“停止!” 嘶嘶声从你身后传来。这是一只巨大的甲虫,有着闪闪发光的青铜甲壳,以战斗的姿势抬起爪状的脚。 “那些是我的魔药,如果你想赚钱,就必须在战斗证明自己!”",
- "questBronzeUnlockText": "在市场上解锁青铜孵化药水以购买",
+ "questBronzeUnlockText": "在市场中解锁青铜孵化药水以购买",
"questBronzeDropBronzePotion": "青铜孵化药水",
"questBronzeBoss": "青铜甲虫",
- "questBronzeText": "青铜甲虫战斗"
+ "questBronzeText": "青铜甲虫战斗",
+ "evilSantaAddlNotes": "注意,圣诞陷阱猎手和找熊崽奖励可堆叠的副本成就,但会奖励的稀有宠物和坐骑只能添加到你的马厩一次。"
}
diff --git a/website/common/locales/zh/settings.json b/website/common/locales/zh/settings.json
index 606fc5a21c..8c615f8d7e 100644
--- a/website/common/locales/zh/settings.json
+++ b/website/common/locales/zh/settings.json
@@ -115,7 +115,7 @@
"giftedGems": "赠送的宝石",
"giftedGemsInfo": "<%= name %> 送给你 <%= amount %> 个宝石",
"giftedGemsFull": "你好 <%= username %>,<%= sender %> 赠送给你 <%= gemAmount %> 颗宝石!",
- "giftedSubscription": "赠送的订阅",
+ "giftedSubscription": "订阅奖励",
"giftedSubscriptionInfo": "<%= name %> 送给你 <%= months %> 个月的订阅",
"giftedSubscriptionFull": "你好 <%= username %>,<%= sender %> 赠送给你 <%= monthCount %> 个月的订阅!",
"giftedSubscriptionWinterPromo": "<%= username %>您好,您已收到了<%= monthCount %>个月的订阅,作为我们“赠人玫瑰”假期促销活动的礼物!",
@@ -125,9 +125,9 @@
"weeklyRecaps": "过去一周内您的账号活动总结(注意:由于性能的问题,当前不可用,但我们希望能把它做为一个后备计划,并在不久的将来再次上线!)",
"onboarding": "设置你的Habitica账户",
"majorUpdates": "重要通告",
- "questStarted": "你的任务已经开始",
- "invitedQuest": "任务邀请",
- "kickedGroup": "从小组踢出",
+ "questStarted": "你的副本已经开始",
+ "invitedQuest": "收到任务邀请",
+ "kickedGroup": "已被小组踢出",
"remindersToLogin": "Habitica签到提醒",
"subscribeUsing": "用 ____ 订阅",
"unsubscribedSuccessfully": "取消订阅成功!",
@@ -210,5 +210,7 @@
"suggestMyUsername": "建议您的登录名",
"onlyPrivateSpaces": "只在私人空间",
"everywhere": "每个地方",
- "mentioning": "回复"
+ "mentioning": "回复",
+ "chatExtensionDesc": "Habitica 的聊天扩展程序为所有 habitica.com 添加了直观的聊天框。 它允许用户在酒馆,他们的聚会以及他们所在的任何行会中聊天。",
+ "chatExtension": "Chrome 聊天扩展 and Firefox 聊天扩展"
}
diff --git a/website/common/locales/zh/subscriber.json b/website/common/locales/zh/subscriber.json
index 982d7326f6..35a04e0193 100644
--- a/website/common/locales/zh/subscriber.json
+++ b/website/common/locales/zh/subscriber.json
@@ -228,5 +228,6 @@
"mysterySet201909": "和蔼橡子套装",
"mysterySet201910": "秘匿火焰套装",
"mysterySet201911": "水晶魔术师套装",
- "mysterySet201912": "北极小精灵套装"
+ "mysterySet201912": "北极小精灵套装",
+ "mysterySet202001": "寓言的狐狸套装"
}
diff --git a/website/common/locales/zh_TW/achievements.json b/website/common/locales/zh_TW/achievements.json
index a448195027..cba2fd61d3 100644
--- a/website/common/locales/zh_TW/achievements.json
+++ b/website/common/locales/zh_TW/achievements.json
@@ -8,5 +8,60 @@
"achievementLostMasterclasserText": "已完成大師鑑別者副本系列的 6 個副本,並解開了失傳的大師鑑別者的神秘面紗!",
"achievementJustAddWater": "只需加水",
"achievementLostMasterclasserModalText": "你完成了所有大師級任務系列的十六個任務,並解開了失傳的大師的奧秘!",
- "achievementMindOverMatter": "精神高於物質"
+ "achievementMindOverMatter": "精神高於物質",
+ "achievementPearlyProText": "馴服了所有白色坐騎。",
+ "achievementPearlyProModalText": "你馴服了所有白色坐騎!",
+ "achievementPartyOn": "你的隊伍達到了4人!",
+ "achievementKickstarter2019Text": "參與了2019年Kickstarter的眾籌活動",
+ "achievementKickstarter2019": "Kickstarter徽章出資人",
+ "achievementAridAuthorityModalText": "你馴服了所有的沙漠坐騎!",
+ "achievementAridAuthorityText": "已經馴服了所有的沙漠坐騎。",
+ "achievementAridAuthority": "乾旱管理局",
+ "achievementPartyUp": "你和一名隊友合作愉快!",
+ "achievementDustDevilModalText": "你集齊了所有沙漠寵物!",
+ "achievementDustDevilText": "已經集齊所有的沙漠寵物。",
+ "achievementDustDevil": "沙塵惡魔",
+ "achievementAllYourBaseModalText": "你馴服了所有基礎坐騎!",
+ "achievementAllYourBaseText": "已經馴服了所有基礎坐騎。",
+ "achievementAllYourBase": "你所有的基礎坐騎",
+ "achievementBackToBasicsModalText": "你集齊了所有基礎寵物!",
+ "achievementBackToBasicsText": "已經集齊所有基礎寵物。",
+ "achievementBackToBasics": "返璞歸真",
+ "achievementJustAddWaterModalText": "你完成了章魚、海馬、墨魚、鯨魚、海龜、海兔、海蛇和海豚的寵物任務!",
+ "achievementJustAddWaterText": "已完成章魚、海馬、墨魚、鯨魚、海龜、海兔、海蛇和海豚的寵物任務。",
+ "achievementMindOverMatterModalText": "你完成了岩石,萊姆和毛線寵物任務!",
+ "achievementMindOverMatterText": "已完成岩石,萊姆和毛線寵物任務。",
+ "hideAchievements": "隱藏<%= category %>",
+ "showAllAchievements": "列出所有<%= category %>",
+ "onboardingCompleteDesc": "完成了任務單以後,你得到了五個成就和一百金幣。",
+ "earnedAchievement": "你得到了一個成就!",
+ "viewAchievements": "看成就",
+ "letsGetStarted": "我們開始吧!",
+ "onboardingProgress": "<%= percentage %>% 完成",
+ "gettingStartedDesc": "我們一起製作一個任務,做完它,然後看你的獎勵。你會得到五個成就和一百金幣!",
+ "achievementHatchedPetText": "孵化了他們頭一隻寵物。",
+ "achievementHatchedPetModalText": "去你的物品欄來合併及孵化藥水和一粒蛋",
+ "achievementFedPet": "餵一隻寵物",
+ "achievementFedPetText": "餵了他們頭一隻寵物。",
+ "achievementFedPetModalText": "有各種各樣的食物,但是寵物可能會挑剔",
+ "achievementPurchasedEquipment": "買了裝備",
+ "achievementPurchasedEquipmentText": "買了他們頭一個裝備。",
+ "achievementPurchasedEquipmentModalText": "你可以用裝備特別製造你的形象和增值你的屬性",
+ "achievementPrimedForPainting": "上塗底漆",
+ "achievementPrimedForPaintingText": "集齊了所有白色寵物。",
+ "achievementPrimedForPaintingModalText": "你集齊了所有白色寵物!",
+ "achievementPearlyPro": "珍珠形專業人士",
+ "achievementMonsterMagus": "怪物術士",
+ "achievementMonsterMagusText": "集齊所有殭屍寵物。",
+ "achievementMonsterMagusModalText": "你集齊了所有殭屍寵物!",
+ "achievementUndeadUndertaker": "不死葬儀師",
+ "achievementUndeadUndertakerText": "馴服了所有殭屍坐騎。",
+ "achievementUndeadUndertakerModalText": "你馴服了所有殭屍坐騎!",
+ "achievementCreatedTask": "製造一個任務",
+ "achievementCreatedTaskText": "製造了他們頭一回任務。",
+ "achievementCreatedTaskModalText": "把這個星期你想完成的任務加在這裡",
+ "achievementCompletedTask": "完成一個任務",
+ "achievementCompletedTaskText": "完成了他們頭一回任務。",
+ "achievementCompletedTaskModalText": "你可以清點任務已得到獎勵",
+ "achievementHatchedPet": "孵化一隻寵物"
}
diff --git a/website/common/locales/zh_TW/backgrounds.json b/website/common/locales/zh_TW/backgrounds.json
index d682d9e273..891e45ccb6 100644
--- a/website/common/locales/zh_TW/backgrounds.json
+++ b/website/common/locales/zh_TW/backgrounds.json
@@ -172,14 +172,14 @@
"backgroundGazeboNotes": "與涼亭搏鬥。",
"backgroundTreeRootsText": "樹之根",
"backgroundTreeRootsNotes": "樹根中的探險。",
- "backgrounds062016": "第25組:2016年6月推出",
+ "backgrounds062016": "第 25 組:2016 年 6 月推出",
"backgroundLighthouseShoreText": "燈塔的岸邊",
"backgroundLighthouseShoreNotes": "漫步於燈塔的岸邊。",
"backgroundLilypadText": "荷葉",
"backgroundLilypadNotes": "跳上荷葉。",
"backgroundWaterfallRockText": "瀑布中的石頭",
"backgroundWaterfallRockNotes": "濺到瀑布的石頭。",
- "backgrounds072016": "第26組:2016年7月推出",
+ "backgrounds072016": "第 26 組:2016 年 7 月推出",
"backgroundAquariumText": "水族館",
"backgroundAquariumNotes": "在水族箱中漂遊。",
"backgroundDeepSeaText": "深海",
@@ -227,7 +227,7 @@
"backgroundRedNotes": "一個特殊的紅色背景。",
"backgroundYellowText": "黃色",
"backgroundYellowNotes": "一個美味的黃色背景。",
- "backgrounds122016": "第 31 組:2016年12月推出",
+ "backgrounds122016": "第 31 組:2016 年 12 月推出",
"backgroundShimmeringIcePrismText": "螢光冰晶簇",
"backgroundShimmeringIcePrismNotes": "舞過螢光冰晶簇。",
"backgroundWinterFireworksText": "冬季煙火",
@@ -241,63 +241,63 @@
"backgroundSparklingSnowflakeNotes": "在閃閃發亮的雪花上滑行。",
"backgroundStoikalmVolcanoesText": "Stoïkalm火山",
"backgroundStoikalmVolcanoesNotes": "探索Stoïkalm火山。",
- "backgrounds022017": "第33組:2017 年 2 月推出",
+ "backgrounds022017": "第 33 組:2017 年 2 月推出",
"backgroundBellTowerText": "鐘樓",
"backgroundBellTowerNotes": "爬到鐘塔的頂端。",
"backgroundTreasureRoomText": "藏寶庫",
"backgroundTreasureRoomNotes": "在藏寶庫中閃閃發光。",
"backgroundWeddingArchText": "鮮花拱門",
"backgroundWeddingArchNotes": "在鮮花拱門下擺個 Pose。",
- "backgrounds032017": "第34組: 2017 年 3 月推出",
+ "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 年 5 月推出",
+ "backgrounds052017": "第 36 組:2017 年 5 月推出",
"backgroundGuardianStatuesText": "護衛石像",
"backgroundGuardianStatuesNotes": "在護衛石像前守夜。",
"backgroundHabitCityStreetsText": "習慣城市的街道",
"backgroundHabitCityStreetsNotes": "探索習慣城市的街道。",
"backgroundOnATreeBranchText": "在樹的分支上",
"backgroundOnATreeBranchNotes": "棲息在樹枝上。",
- "backgrounds062017": "第 37 組: 2017 年 6 月推出",
+ "backgrounds062017": "第 37 組:2017 年 6 月推出",
"backgroundBuriedTreasureText": "埋藏的珍寶",
"backgroundBuriedTreasureNotes": "挖掘被埋藏的珍寶。",
"backgroundOceanSunriseText": "海洋日出",
"backgroundOceanSunriseNotes": "欣賞海洋日出。",
"backgroundSandcastleText": "沙堡",
"backgroundSandcastleNotes": "統治一座沙堡。",
- "backgrounds072017": "第 38 組: 2017 年 7 月推出",
+ "backgrounds072017": "第 38 組:2017 年 7 月推出",
"backgroundGiantSeashellText": "巨大的貝殼",
"backgroundGiantSeashellNotes": "在巨大的貝殼裡面閒逛。",
"backgroundKelpForestText": "海草森林",
"backgroundKelpForestNotes": "在海草森林之間悠遊。",
"backgroundMidnightLakeText": "午夜湖畔",
"backgroundMidnightLakeNotes": "在午夜湖畔旁小憩。",
- "backgrounds082017": "第 39 組: 2017 年 8 月推出",
+ "backgrounds082017": "第 39 組:2017 年 8 月推出",
"backgroundBackOfGiantBeastText": "巨獸背脊",
"backgroundBackOfGiantBeastNotes": "騎乘在巨獸背脊上。",
"backgroundDesertDunesText": "沙漠之丘",
"backgroundDesertDunesNotes": "在沙漠之丘無畏探索。",
"backgroundSummerFireworksText": "夏季煙火",
"backgroundSummerFireworksNotes": "利用夏日煙火來歡慶 Habitica 命名節!",
- "backgrounds092017": "第 40 組: 2017 年 9 月推出",
+ "backgrounds092017": "第 40 組:2017 年 9 月推出",
"backgroundBesideWellText": "在古井邊",
"backgroundBesideWellNotes": "在古井邊散步。",
"backgroundGardenShedText": "園藝小棚",
"backgroundGardenShedNotes": "在園藝小棚內工作。",
"backgroundPixelistsWorkshopText": "畫作工作室",
"backgroundPixelistsWorkshopNotes": "在畫作工作室裡創造曠世巨作。",
- "backgrounds102017": "第 41 組: 2017 年 10 月推出",
+ "backgrounds102017": "第 41 組:2017 年 10 月推出",
"backgroundMagicalCandlesText": "神秘蠟燭",
"backgroundMagicalCandlesNotes": "在一閃一閃的神祕蠟燭中取暖。",
"backgroundSpookyHotelText": "驚魂旅社",
@@ -367,14 +367,14 @@
"backgroundDilatoryCityNotes": "漫步在海底中的慢吞吞城市。",
"backgroundTidePoolText": "潮汐池",
"backgroundTidePoolNotes": "在潮汐池邊發現了許許多多的海洋生物。",
- "backgrounds082018": "第 51 組: 2018 年 8 月推出",
+ "backgrounds082018": "第 51 組:2018 年 8 月推出",
"backgroundTrainingGroundsText": "訓練廣場",
"backgroundTrainingGroundsNotes": "訓練廣場上的鬥爭。",
"backgroundFlyingOverRockyCanyonText": "巨石峽谷",
"backgroundFlyingOverRockyCanyonNotes": "當您飛越巨石峽谷,別忘了低頭看那令人屏息的美景。",
"backgroundBridgeText": "橋樑",
"backgroundBridgeNotes": "穿過一座美麗的小橋。",
- "backgrounds092018": "第 52 組: 2018 年 9 月推出",
+ "backgrounds092018": "第 52 組:2018 年 9 月推出",
"backgroundApplePickingText": "採集蘋果",
"backgroundApplePickingNotes": "採集蘋果並抱走一大箱蘋果回家。",
"backgroundGiantBookText": "巨大書籍",
@@ -388,7 +388,7 @@
"backgroundCreepyCastleNotes": "勇敢地進入毛骨悚然的城堡。",
"backgroundDungeonText": "地牢",
"backgroundDungeonNotes": "在幽靈地牢中協助囚犯越獄。",
- "backgrounds112018": "第 54 組: 2018 年 11月推出",
+ "backgrounds112018": "第 54 組:2018 年 11月推出",
"backgroundBackAlleyText": "陋巷",
"backgroundBackAlleyNotes": "暗影再陋巷中陰魂不散。",
"backgroundGlowingMushroomCaveText": "發光蘑菇洞穴",
@@ -464,5 +464,33 @@
"backgroundGiantDandelionsText": "巨型蒲公英",
"backgroundAmidAncientRuinsNotes": "懷著敬畏之心地站在神秘古代遺跡之中。",
"backgroundAmidAncientRuinsText": "古代遺跡",
- "backgrounds082019": "第 63 組:2019 年 8 月推出"
+ "backgrounds082019": "第 63 組:2019 年 8 月推出",
+ "backgroundBirthdayPartyNotes": "慶祝你最喜歡的Habitica居民的生日派對。",
+ "backgroundDesertWithSnowText": "白雪皚皚的沙漠",
+ "backgroundDesertWithSnowNotes": "觀看白雪皚皚的沙漠的稀有與寧靜之美。",
+ "backgroundSnowglobeText": "雪球",
+ "backgroundSnowglobeNotes": "搖一搖雪球,在冬季風景的縮影中佔據一席之地。",
+ "backgroundBirthdayPartyText": "生日派對",
+ "backgroundWinterNocturneNotes": "沐浴在冬季夜景畫的星光下。",
+ "backgroundWinterNocturneText": "冬季夜景畫",
+ "backgroundHolidayWreathNotes": "用芬芳的節日花環裝飾你的角色形象。",
+ "backgroundHolidayWreathText": "節日花環",
+ "backgroundHolidayMarketNotes": "在節日市場上找完美的禮物和裝飾品。",
+ "backgroundHolidayMarketText": "節場",
+ "backgroundPotionShopNotes": "在藥水店找靈藥解任何病。",
+ "backgroundPotionShopText": "藥水店",
+ "backgroundFlyingInAThunderstormNotes": "如果你有膽,緊緊的追逐雷雨。",
+ "backgroundFlyingInAThunderstormText": "陣陣雷雨",
+ "backgroundFarmersMarketNotes": "在農貿集市買最新鮮的食物。",
+ "backgroundFarmersMarketText": "農貿集市",
+ "backgroundMonsterMakersWorkshopNotes": "在魔鬼製造者的工作室,用非主流的科學進行實驗。",
+ "backgroundMonsterMakersWorkshopText": "魔鬼製造者的工作室",
+ "backgroundPumpkinCarriageNotes": "半夜之前騎南瓜轎子。",
+ "backgroundPumpkinCarriageText": "南瓜轎子",
+ "backgroundFoggyMoorNotes": "在霧泊中小心行走。",
+ "backgroundFoggyMoorText": "霧泊",
+ "backgrounds012020": "第 68 組:2020 年 1 月推出",
+ "backgrounds122019": "第 67 組:2019 年 12 月推出",
+ "backgrounds112019": "第 66 組:2019 年 11 月推出",
+ "backgrounds102019": "第 65 組:2019 年 10 月推出"
}
diff --git a/website/common/locales/zh_TW/character.json b/website/common/locales/zh_TW/character.json
index 5b6b211f54..8e5adacf83 100644
--- a/website/common/locales/zh_TW/character.json
+++ b/website/common/locales/zh_TW/character.json
@@ -104,7 +104,7 @@
"allocatePerPop": "增加一點至感知屬性",
"allocateInt": "分配給智力的屬性點:",
"allocateIntPop": "增加一點至智力屬性",
- "noMoreAllocate": "現在您已達到 100 等,您將不會再得到任何的屬性點。您可以繼續升級,或者使用重生球回到 1 等並開始另一個新的旅程。現在您可以到市場裡免費購買重生球。",
+ "noMoreAllocate": "現在您已達到 100 等,您將不會再得到任何的屬性點。您可以繼續升級,或者使用重生球回到 1 等並開始另一個新的旅程!",
"stats": "統計",
"achievs": "成就",
"strength": "力量",
diff --git a/website/common/locales/zh_TW/content.json b/website/common/locales/zh_TW/content.json
index 5fac124f0c..22dfeb9cc9 100644
--- a/website/common/locales/zh_TW/content.json
+++ b/website/common/locales/zh_TW/content.json
@@ -351,5 +351,7 @@
"questEggRobotMountText": "機器人",
"questEggRobotText": "機器人",
"hatchingPotionShadow": "陰影",
- "premiumPotionUnlimitedNotes": "無法用於副本寵物蛋。"
+ "premiumPotionUnlimitedNotes": "無法用於副本寵物蛋。",
+ "hatchingPotionAurora": "極光",
+ "hatchingPotionAmber": "琥珀"
}
diff --git a/website/common/locales/zh_TW/front.json b/website/common/locales/zh_TW/front.json
index 5afa5d2eea..549a7cf404 100644
--- a/website/common/locales/zh_TW/front.json
+++ b/website/common/locales/zh_TW/front.json
@@ -331,5 +331,6 @@
"getStarted": "現在就加入我們!",
"mobileApps": "行動版 APP",
"learnMore": "了解更多",
- "communityInstagram": "Instagram"
+ "communityInstagram": "Instagram",
+ "minPasswordLength": "密碼至少需要8個字符。"
}
diff --git a/website/common/locales/zh_TW/gear.json b/website/common/locales/zh_TW/gear.json
index eb89d6daf8..7ab9a2d4e8 100644
--- a/website/common/locales/zh_TW/gear.json
+++ b/website/common/locales/zh_TW/gear.json
@@ -83,9 +83,9 @@
"weaponSpecial1Text": "水晶利刃",
"weaponSpecial1Notes": "閃耀的晶面宛如正訴說著一位英雄的傳說。增加所有屬性各 <%= attrs %> 點。",
"weaponSpecial2Text": "史蒂芬‧韋伯的巨龍長矛",
- "weaponSpecial2Notes": "(Stephen Weber's Shaft of the Dragon) 內部散發著龍的洶湧之力!增加力量、感知各 <%= attrs %> 點。",
+ "weaponSpecial2Notes": "內部散發著龍的洶湧之力!增加力量、感知各 <%= attrs %> 點。",
"weaponSpecial3Text": "馬斯泰恩的碎石流星錘",
- "weaponSpecial3Notes": "(Mustaine's Milestone Mashing Morning Star) 看到怪物統統搗爛!增加力量、智力、體質各 <%= attrs %> 點。",
+ "weaponSpecial3Notes": "看到怪物統統搗爛!增加力量、智力、體質各 <%= attrs %> 點。",
"weaponSpecialCriticalText": "碾蟲大師強力戰鎚",
"weaponSpecialCriticalNotes": "這位勇者殺死了一個讓無數戰士殞落的 Gitthub敵人。這把戰鎚由臭蟲的骨頭打造,能給敵人帶來強大的致命一擊。增加力量、感知各 <%= attrs %>點。",
"weaponSpecialTakeThisText": "Take This 劍",
@@ -115,93 +115,93 @@
"weaponSpecialAetherCrystalsText": "以太紫水晶護碗",
"weaponSpecialAetherCrystalsNotes": "這雙水晶護碗曾屬於迷失的職業統治大師(Lost Masterclasser)。增加所有屬性各 <%= attrs %> 點。",
"weaponSpecialYetiText": "雪怪馴化師長矛",
- "weaponSpecialYetiNotes": "這把長矛賜予使用者指揮雪怪的權力。增加 <%= str %> 點力量。 2013-2014冬季限定版裝備",
+ "weaponSpecialYetiNotes": "這把長矛賜予使用者指揮雪怪的權力。增加 <%= str %> 點力量。 2013-2014冬季限定版裝備。",
"weaponSpecialSkiText": "滑雪刺客手杖",
- "weaponSpecialSkiNotes": "一把能消滅大群敵人的武器!同時,它還能幫助玩家很華麗地進行併腿轉向。增加 <%= str %> 點力量。 2013-2014冬季限定版裝備",
+ "weaponSpecialSkiNotes": "一把能消滅大群敵人的武器!同時,它還能幫助玩家很華麗地進行併腿轉向。增加 <%= str %> 點力量。 2013-2014冬季限量版裝備。",
"weaponSpecialCandycaneText": "糖果手法杖",
- "weaponSpecialCandycaneNotes": "一個非常強大的魔導士法杖。我的意思是 非! 常! 美! 味! 增加 <%= int %> 點智力和 <%= per %> 點感知。 2013-2014冬季限定版裝備",
+ "weaponSpecialCandycaneNotes": "一個非常強大的魔導士法杖。我的意思是 非! 常! 美! 味! 增加 <%= int %> 點智力和 <%= per %> 點感知。 2013-2014冬季限定版裝備。",
"weaponSpecialSnowflakeText": "雪花魔杖",
- "weaponSpecialSnowflakeNotes": "這把魔杖閃耀著無限的治療之力。增加 <%= int %> 點智力。 2013-2014冬季限定版裝備",
+ "weaponSpecialSnowflakeNotes": "這把魔杖閃耀著無限的治療之力。增加 <%= int %> 點智力。 2013-2014冬季限定版裝備。",
"weaponSpecialSpringRogueText": "鉤爪",
- "weaponSpecialSpringRogueNotes": "非常適合用來攀爬高樓,當然也可以用來抓爛地毯。增加 <%= str %> 點力量。 2014年春季限定版裝備",
+ "weaponSpecialSpringRogueNotes": "非常適合用來攀爬高樓,當然也可以用來抓爛地毯。增加 <%= str %> 點力量。 2014年春季限定版裝備。",
"weaponSpecialSpringWarriorText": "胡蘿蔔寶劍",
- "weaponSpecialSpringWarriorNotes": "這把威武的寶劍可以不費吹灰之力把敵人切成碎片!要是在戰場上餓了,還能把它當作零食吃掉。增加 <%= str %> 點力量。 2014年春季限定版裝備",
+ "weaponSpecialSpringWarriorNotes": "這把威武的寶劍可以不費吹灰之力把敵人切成碎片!要是在戰場上餓了,還能把它當作零食吃掉。增加 <%= str %> 點力量。 2014年春季限定版裝備。",
"weaponSpecialSpringMageText": "瑞士乳酪法杖",
- "weaponSpecialSpringMageNotes": "只有最強大的囓齒動物才能夠戰勝他們的渴望,控制這個而有力的法杖。增加 <%= int %> 點智力和 <%= per %> 點感知。 2014年春季限定版裝備",
+ "weaponSpecialSpringMageNotes": "只有最強大的囓齒動物才能夠戰勝他們的渴望,控制這個而有力的法杖。增加 <%= int %> 點智力和 <%= per %> 點感知。 2014年春季限定版裝備。",
"weaponSpecialSpringHealerText": "可愛的骨頭",
- "weaponSpecialSpringHealerNotes": "給我拿來!增加 <%= int %> 點智力。2014年春季限定版裝備",
+ "weaponSpecialSpringHealerNotes": "給我拿來!增加 <%= int %> 點智力。2014年春季限定版裝備。",
"weaponSpecialSummerRogueText": "海盜彎刀",
- "weaponSpecialSummerRogueNotes": "停!!您這樣子會讓那些每日任務走上跳板一去不復返!增加 <%= str %> 點力量。 2014年夏季限定版裝備",
+ "weaponSpecialSummerRogueNotes": "停!!您這樣子會讓那些每日任務走上跳板一去不復返!增加 <%= str %> 點力量。 2014年夏季限定版裝備。",
"weaponSpecialSummerWarriorText": "航海切片刀",
- "weaponSpecialSummerWarriorNotes": "沒有任何待辦事項中的任務願意與這把粗糙的刀糾纏在一起!增加 <%= str %> 點力量。 2014年夏季限定版裝備",
+ "weaponSpecialSummerWarriorNotes": "沒有任何待辦事項中的任務願意與這把粗糙的刀糾纏在一起!增加 <%= str %> 點力量。 2014年夏季限定版裝備。",
"weaponSpecialSummerMageText": "海帶捕捉器",
- "weaponSpecialSummerMageNotes": "這把三叉戟能有效地戳起海帶,還能有額外的收穫!增加 <%= int %> 點智力和 <%= per %> 點感知。 2014年夏季限定版裝備",
+ "weaponSpecialSummerMageNotes": "這把三叉戟能有效地戳起海帶,還能有額外的收穫!增加 <%= int %> 點智力和 <%= per %> 點感知。 2014年夏季限定版裝備。",
"weaponSpecialSummerHealerText": "淺灘魔杖",
- "weaponSpecialSummerHealerNotes": "這把魔杖由海藍寶石和活珊瑚製成,它對魚群非常有吸引力。增加 <%= int %> 點智力。 2014年夏季限定版裝備",
+ "weaponSpecialSummerHealerNotes": "這把魔杖由海藍寶石和活珊瑚製成,它對魚群非常有吸引力。增加 <%= int %> 點智力。 2014年夏季限定版裝備。",
"weaponSpecialFallRogueText": "銀製鐵樁",
- "weaponSpecialFallRogueNotes": "可以驅走亡靈,同時也能有效抵禦狼人,因為您應謹記凡事小心為上。增加 <%= str %> 點力量。 2014年秋季限定版裝備",
+ "weaponSpecialFallRogueNotes": "可以驅走亡靈,同時也能有效抵禦狼人,因為您應謹記凡事小心為上。增加 <%= str %> 點力量。 2014年秋季限定版裝備。",
"weaponSpecialFallWarriorText": "科學利鉗",
- "weaponSpecialFallWarriorNotes": "這把咬得很緊的鉗子代表著現代科技的尖端。增加 <%= str %> 點力量。 2014年秋季限定版裝備",
+ "weaponSpecialFallWarriorNotes": "這把咬得很緊的鉗子代表著現代科技的尖端。增加 <%= str %> 點力量。 2014年秋季限定版裝備。",
"weaponSpecialFallMageText": "魔法掃帚",
- "weaponSpecialFallMageNotes": "這隻附魔的掃帚飛得比龍還要快!增加 <%= int %> 點智力和 <%= per %> 點感知。 2014年秋季限定版裝備",
+ "weaponSpecialFallMageNotes": "這隻附魔的掃帚飛得比龍還要快!增加 <%= int %> 點智力和 <%= per %> 點感知。 2014年秋季限定版裝備。",
"weaponSpecialFallHealerText": "金龜蟲魔杖",
- "weaponSpecialFallHealerNotes": "魔杖上的金龜蟲能保護並治療使用者。增加 <%= int %> 點智力。 2014年秋季限定版裝備",
+ "weaponSpecialFallHealerNotes": "魔杖上的金龜蟲能保護並治療使用者。增加 <%= int %> 點智力。 2014年秋季限定版裝備。",
"weaponSpecialWinter2015RogueText": "冰柱尖釘",
- "weaponSpecialWinter2015RogueNotes": "這真的是,完全是,絕對是剛從地上撿起來的。增加 <%= str %> 點力量。 2014-2015冬季限定版裝備",
+ "weaponSpecialWinter2015RogueNotes": "這真的是,完全是,絕對是剛從地上撿起來的。增加 <%= str %> 點力量。 2014-2015冬季限定版裝備。",
"weaponSpecialWinter2015WarriorText": "果凍糖劍",
- "weaponSpecialWinter2015WarriorNotes": "這美味的劍大概會引來怪物... 但您已經準備好面對挑戰了!增加 <%= str %> 點力量。 2014-2015冬季限定版裝備",
+ "weaponSpecialWinter2015WarriorNotes": "這美味的劍大概會引來怪物... 但您已經準備好面對挑戰了!增加 <%= str %> 點力量。 2014-2015冬季限定版裝備。",
"weaponSpecialWinter2015MageText": "冬日聖光法杖",
- "weaponSpecialWinter2015MageNotes": "法杖上的水晶發出光芒,讓您心中充滿歡愉。增加 <%= int %> 點智力和 <%= per %> 點感知。 2014-2015冬季限定版裝備",
+ "weaponSpecialWinter2015MageNotes": "法杖上的水晶發出光芒,讓您心中充滿歡愉。增加 <%= int %> 點智力和 <%= per %> 點感知。 2014-2015冬季限定版裝備。",
"weaponSpecialWinter2015HealerText": "鎮靜權杖",
- "weaponSpecialWinter2015HealerNotes": "這權杖能緩和肌肉酸痛、舒緩壓力。增加 <%= int %> 點智力。 2014-2015冬季限定版裝備",
+ "weaponSpecialWinter2015HealerNotes": "這權杖能緩和肌肉酸痛、舒緩壓力。增加 <%= int %> 點智力。 2014-2015冬季限定版裝備。",
"weaponSpecialSpring2015RogueText": "霹靂爆破管",
- "weaponSpecialSpring2015RogueNotes": "別被它軟弱的聲音給搞糊塗了——這爆炸威力可不得了。增加 <%= str %> 點力量。 2015年春季限定版裝備",
+ "weaponSpecialSpring2015RogueNotes": "別被它軟弱的聲音給搞糊塗了——這爆炸威力可不得了。增加 <%= str %> 點力量。 2015年春季限定版裝備。",
"weaponSpecialSpring2015WarriorText": "骨棒",
- "weaponSpecialSpring2015WarriorNotes": "這是為真正兇猛的狗狗們準備的真正的骨棒,絕對不是那種季節魔女給你的咀嚼玩具!乖狗狗是誰?誰~~~是乖狗狗呀??就是您呀!!您是隻乖狗狗唷!!!增加 <%= str %> 點力量。 2015年春季限定版裝備",
+ "weaponSpecialSpring2015WarriorNotes": "這是為真正兇猛的狗狗們準備的真正的骨棒,絕對不是那種季節魔女給你的咀嚼玩具!乖狗狗是誰?誰~~~是乖狗狗呀??就是您呀!!您是隻乖狗狗唷!!!增加 <%= str %> 點力量。 2015年春季限定版裝備。",
"weaponSpecialSpring2015MageText": "魔法師魔杖",
- "weaponSpecialSpring2015MageNotes": "有了這根神奇的魔杖,您就能變出屬於自己的胡蘿蔔囉!增加 <%= int %> 點智力和 <%= per %> 點感知。 2015年春季限定版裝備",
+ "weaponSpecialSpring2015MageNotes": "有了這根神奇的魔杖,您就能變出屬於自己的胡蘿蔔囉!增加 <%= int %> 點智力和 <%= per %> 點感知。 2015年春季限定版裝備。",
"weaponSpecialSpring2015HealerText": "貓咪沙鼓",
- "weaponSpecialSpring2015HealerNotes": "當您搖動這個沙鈴,它會發出悅耳的叮噹聲,讓所有人保持愉悅好幾小時。增加 <%= int %> 點智力。 2015年春季限定版裝備",
+ "weaponSpecialSpring2015HealerNotes": "當您搖動這個沙鈴,它會發出悅耳的叮噹聲,讓所有人保持愉悅好幾小時。增加 <%= int %> 點智力。 2015年春季限定版裝備。",
"weaponSpecialSummer2015RogueText": "火焰珊瑚",
- "weaponSpecialSummer2015RogueNotes": "這種火珊瑚具有一種能力,可以在水裡散播毒液。增加 <%= str %> 點力量。 2015年夏季限定版裝備",
+ "weaponSpecialSummer2015RogueNotes": "這種火珊瑚具有一種能力,可以在水裡散播毒液。增加 <%= str %> 點力量。 2015年夏季限定版裝備。",
"weaponSpecialSummer2015WarriorText": "太陽旗魚劍",
- "weaponSpecialSummer2015WarriorNotes": "這支太陽旗魚劍是一種很恐怖的武器,如果能先讓它不再扭來扭去的話。增加 <%= str %> 點力量。 2015年夏季限定版裝備",
+ "weaponSpecialSummer2015WarriorNotes": "這支太陽旗魚劍是一種很恐怖的武器,如果能先讓它不再扭來扭去的話。增加 <%= str %> 點力量。 2015年夏季限定版裝備。",
"weaponSpecialSummer2015MageText": "預言家法杖",
- "weaponSpecialSummer2015MageNotes": "嵌入在法杖內的寶石中隱隱可見有不明力量正閃閃發光著。增加 <%= int %> 點智力和 <%= per %> 點感知。 2015年夏季限定版裝備",
+ "weaponSpecialSummer2015MageNotes": "嵌入在法杖內的寶石中隱隱可見有不明力量正閃閃發光著。增加 <%= int %> 點智力和 <%= per %> 點感知。 2015年夏季限定版裝備。",
"weaponSpecialSummer2015HealerText": "潮汐權杖",
- "weaponSpecialSummer2015HealerNotes": "出門必備良品,專治暈車暈船!增加 <%= int %> 點智力。 2015年夏季限定版裝備",
+ "weaponSpecialSummer2015HealerNotes": "出門必備良品,專治暈車暈船!增加 <%= int %> 點智力。 2015年夏季限定版裝備。",
"weaponSpecialFall2015RogueText": "戰蝠巨斧",
- "weaponSpecialFall2015RogueNotes": "那些令人生畏的待辦事項都在這把神斧的揮砍之下瑟瑟發抖。增加 <%= str %> 點力量。 2015年秋季限定版裝備",
+ "weaponSpecialFall2015RogueNotes": "那些令人生畏的待辦事項都在這把神斧的揮砍之下瑟瑟發抖。增加 <%= str %> 點力量。 2015年秋季限定版裝備。",
"weaponSpecialFall2015WarriorText": "原木片",
- "weaponSpecialFall2015WarriorNotes": "萬中選一的武器!如果你是要在玉米田工作或是揍小屁孩的話啦。增加 <%= str %> 點力量。 2015年秋季限定版裝備",
+ "weaponSpecialFall2015WarriorNotes": "萬中選一的武器!如果你是要在玉米田工作或是揍小屁孩的話啦。增加 <%= str %> 點力量。 2015年秋季限定版裝備。",
"weaponSpecialFall2015MageText": "附魔棉線",
- "weaponSpecialFall2015MageNotes": "一個真正有能力的縫紉巫師根本不用碰到它就能夠輕易地操控它!增加 <%= int %> 點智力和 <%= per %> 點感知。 2015年秋季限定版裝備",
+ "weaponSpecialFall2015MageNotes": "一個真正有能力的縫紉巫師根本不用碰到它就能夠輕易地操控它!增加 <%= int %> 點智力和 <%= per %> 點感知。 2015年秋季限定版裝備。",
"weaponSpecialFall2015HealerText": "沼澤史萊姆藥水",
- "weaponSpecialFall2015HealerNotes": "完美調配!現在,您只需要說服自己將它給喝下去。增加 <%= int %> 點智力。 2015年秋季限定版裝備",
+ "weaponSpecialFall2015HealerNotes": "完美調配!現在,您只需要說服自己將它給喝下去。增加 <%= int %> 點智力。 2015年秋季限定版裝備。",
"weaponSpecialWinter2016RogueText": "可可豆馬克杯",
- "weaponSpecialWinter2016RogueNotes": "這是一杯熱可可,還是炙手可熱的投擲物呢?由您決定!增加 <%= str %> 點力量。 2015-2016冬季限定版裝備",
+ "weaponSpecialWinter2016RogueNotes": "這是一杯熱可可,還是炙手可熱的投擲物呢?由您決定!增加 <%= str %> 點力量。 2015-2016冬季限定版裝備。",
"weaponSpecialWinter2016WarriorText": "堅固的鏟子",
- "weaponSpecialWinter2016WarriorNotes": "用力剷除即將到期的任務!增加 <%= str %> 點力量。 2015-2016冬季限定版裝備",
+ "weaponSpecialWinter2016WarriorNotes": "用力剷除即將到期的任務!增加 <%= str %> 點力量。 2015-2016冬季限定版裝備。",
"weaponSpecialWinter2016MageText": "妖術滑雪板",
- "weaponSpecialWinter2016MageNotes": "您的行動如此遲緩,試試這台妖術滑雪板吧!增加 <%= int %> 點智力及 <%= per %> 點感知。 2015-2016冬季限定版裝備",
+ "weaponSpecialWinter2016MageNotes": "您的行動如此遲緩,試試這台妖術滑雪板吧!增加 <%= int %> 點智力及 <%= per %> 點感知。 2015-2016冬季限定版裝備。",
"weaponSpecialWinter2016HealerText": "彩紙大炮",
- "weaponSpecialWinter2016HealerNotes": "爽喲!!!夢幻之地迎來快樂的冬天!!!增加 <%= int %> 點智力。 2015-2016冬季限定版裝備",
+ "weaponSpecialWinter2016HealerNotes": "爽喲!!!夢幻之地迎來快樂的冬天!!!增加 <%= int %> 點智力。 2015-2016冬季限定版裝備。",
"weaponSpecialSpring2016RogueText": "烈焰流星錘",
- "weaponSpecialSpring2016RogueNotes": "您精通了錘球、棍棒和小刀,現在更要駕馭火焰了!哇!增加 <%= str %> 點力量。 2016年春季限定版裝備",
+ "weaponSpecialSpring2016RogueNotes": "您精通了錘球、棍棒和小刀,現在更要駕馭火焰了!哇!增加 <%= str %> 點力量。 2016年春季限定版裝備。",
"weaponSpecialSpring2016WarriorText": "起司大頭錘",
- "weaponSpecialSpring2016WarriorNotes": "擁有香嫩起司的老鼠就會擁有最多的朋友。增加 <%= str %> 點力量。 2016年春季限定版裝備",
+ "weaponSpecialSpring2016WarriorNotes": "擁有香嫩起司的老鼠就會擁有最多的朋友。增加 <%= str %> 點力量。 2016年春季限定版裝備。",
"weaponSpecialSpring2016MageText": "鈴鐺法杖",
- "weaponSpecialSpring2016MageNotes": "阿布拉卡特阿布拉!多麼炫目啊,您可能不知不覺中對自己施放了催眠術!喔... 他開始叮噹叮噹地響了。增加 <%= int %> 點智力和 <%= per %> 點感知。 2016年春季限定版裝備",
+ "weaponSpecialSpring2016MageNotes": "阿布拉卡特阿布拉!多麼炫目啊,您可能不知不覺中對自己施放了催眠術!喔... 他開始叮噹叮噹地響了。增加 <%= int %> 點智力和 <%= per %> 點感知。 2016年春季限定版裝備。",
"weaponSpecialSpring2016HealerText": "春花魔杖",
- "weaponSpecialSpring2016HealerNotes": "只要一個揮舞並施法,您就可以讓整座森林與田野上花朵盛開!討厭的老鼠也都被驅趕走了。增加 <%= int %> 點智力。 2016年春季限定版裝備",
+ "weaponSpecialSpring2016HealerNotes": "只要一個揮舞並施法,您就可以讓整座森林與田野上花朵盛開!討厭的老鼠也都被驅趕走了。增加 <%= int %> 點智力。 2016年春季限定版裝備。",
"weaponSpecialSummer2016RogueText": "電流導桿",
- "weaponSpecialSummer2016RogueNotes": "那些跟您戰鬥的人都將體驗到一次震驚的驚喜... 增加 <%= str %> 點力量。 2016年夏季限定版裝備",
+ "weaponSpecialSummer2016RogueNotes": "那些跟您戰鬥的人都將體驗到一次震驚的驚喜... 增加 <%= str %> 點力量。 2016年夏季限定版裝備。",
"weaponSpecialSummer2016WarriorText": "金柄彎刀",
- "weaponSpecialSummer2016WarriorNotes": "用這把彎刀撕裂那些艱難的任務吧! 增加 <%= str %> 點力量。 2016年夏季限定版裝備",
+ "weaponSpecialSummer2016WarriorNotes": "用這把彎刀撕裂那些艱難的任務吧! 增加 <%= str %> 點力量。 2016年夏季限定版裝備。",
"weaponSpecialSummer2016MageText": "浪花法杖",
- "weaponSpecialSummer2016MageNotes": "這把法杖過濾了所有海洋的力量。增加 <%= int %> 點智力和 <%= per %> 點感知。 2016年夏季限定版裝備",
+ "weaponSpecialSummer2016MageNotes": "這把法杖過濾了所有海洋的力量。增加 <%= int %> 點智力和 <%= per %> 點感知。 2016年夏季限定版裝備。",
"weaponSpecialSummer2016HealerText": "治癒三叉戟",
- "weaponSpecialSummer2016HealerNotes": "一個叉負責傷害,其餘兩個能夠給予治療。增加 <%= int %> 點智力。 2016年夏季限定版裝備",
+ "weaponSpecialSummer2016HealerNotes": "一個叉負責傷害,其餘兩個能夠給予治療。增加 <%= int %> 點智力。 2016年夏季限定版裝備。",
"weaponSpecialFall2016RogueText": "蛛咬匕首",
"weaponSpecialFall2016RogueNotes": "讓敵人感受一下蜘蛛咬傷的刺痛爽感! 增加 <%= str %> 點力量。 2016年秋季限定版裝備。",
"weaponSpecialFall2016WarriorText": "攻擊用樹根",
@@ -233,9 +233,9 @@
"weaponSpecialSummer2017MageText": "漩渦藤鞭",
"weaponSpecialSummer2017MageNotes": "用旋渦藤鞭來引出沸騰的水來燙燒您的任務吧! 增加 <%= int %> 點智力和 <%= per %> 點感知。 2017年夏季限定版裝備。",
"weaponSpecialSummer2017HealerText": "珍珠魔杖",
- "weaponSpecialSummer2017HealerNotes": "只要碰一下這把珍珠魔杖就能夠治癒所有的傷口。增加 <%= int %> 點智力。 2017年夏季限定版裝備。",
+ "weaponSpecialSummer2017HealerNotes": "只要碰一下這把珍珠魔杖就能夠治癒所有的傷口。增加 <%= int %> 點智力。2017年夏季限定版裝備。",
"weaponSpecialFall2017RogueText": "蘋果糖葫蘆權杖",
- "weaponSpecialFall2017RogueNotes": "用甜蜜蜜香死您的敵人吧! 增加 <%= str %> 點力量。 2017年限定版秋季裝備。",
+ "weaponSpecialFall2017RogueNotes": "用甜蜜蜜香死您的敵人吧! 增加 <%= str %> 點力量。2017年限定版秋季裝備。",
"weaponSpecialFall2017WarriorText": "玉米糖漿長刃",
"weaponSpecialFall2017WarriorNotes": "在這看起來很可口多滋的長矛面前,所以的敵人都將畏縮不感前進。不論他們是幽靈、妖怪、還是泛紅的代辦事項。增加 <%= str %> 點力量。 2017年秋季限定裝備。",
"weaponSpecialFall2017MageText": "惡靈法杖",
@@ -269,111 +269,111 @@
"weaponSpecialFall2018RogueText": "清晰藥水瓶",
"weaponSpecialFall2018RogueNotes": "當您想要停止做傻事、或是需要一點提神來作一個正確的選擇。可以深呼吸並啜一小口。萬事都變得OK! 增加 <%= str %> 點力量。 2018年秋季限定版裝備.",
"weaponSpecialFall2018WarriorText": "米諾斯藤條",
- "weaponSpecialFall2018WarriorNotes": "(Whip of Minos) 。不夠長到能夠讓您能夠脫離迷宮。甚至是在像這樣那麼小的迷宮裡。增加 <%= str %> 點力量。 2018年秋季限定版裝備",
+ "weaponSpecialFall2018WarriorNotes": "你想把它抻直放在身後的來路上,用以在迷宮裡保持方向,但長度好像並不太夠。呃,也許是個很小的迷宮。增加<%= str %>點力量。 2018年秋季限定裝備。",
"weaponSpecialFall2018MageText": "甜蜜蜜法杖",
"weaponSpecialFall2018MageNotes": "這可不是一般的棒棒糖! 在這法杖上閃閃發光之魔法糖果擁有能讓好習慣黏在您身旁的能力。增加 <%= int %> 點智力和 <%= per %> 點感知。 2018年秋季限定版裝備。",
"weaponSpecialFall2018HealerText": "飢餓法杖",
- "weaponSpecialFall2018HealerNotes": "要時常餵食這根法杖,這樣它就會帶來賜福。一旦忘記餵食,就要記得將它放在手勾不到的地方。增加 <%= int %> 點智力。 2018年秋季限定版裝備",
+ "weaponSpecialFall2018HealerNotes": "要時常餵食這根法杖,這樣它就會帶來賜福。一旦忘記餵食,就要記得將它放在手勾不到的地方。增加 <%= int %> 點智力。 2018年秋季限定版裝備。",
"weaponSpecialWinter2019RogueText": "一品紅聖誕花束",
- "weaponSpecialWinter2019RogueNotes": "利用這些節慶花束可以進一步偽裝自己,或者也可以慷慨地將它贈送給您的好友並照亮他們的每一天! 增加 <%= str %> 點力量。 2018-2019冬季限定版裝備",
+ "weaponSpecialWinter2019RogueNotes": "利用這些節慶花束可以進一步偽裝自己,或者也可以慷慨地將它贈送給您的好友並照亮他們的每一天! 增加 <%= str %> 點力量。 2018-2019冬季限定版裝備。",
"weaponSpecialWinter2019WarriorText": "雪花戟",
- "weaponSpecialWinter2019WarriorNotes": "這些鑽石般堅硬的刀刃是由冰晶一塊一塊雕製成! 增加 <%= str %> 點力量。 2018-2019限定版冬季裝備",
+ "weaponSpecialWinter2019WarriorNotes": "這些鑽石般堅硬的刀刃是由冰晶一塊一塊雕製成! 增加 <%= str %> 點力量。 2018-2019限定版冬季裝備。",
"weaponSpecialWinter2019MageText": "炙熱龍法杖",
- "weaponSpecialWinter2019MageNotes": "小心! 這團有爆炸性可能的法杖已經準備好隨時幫助任何需要幫忙的人。增加 <%= int %> 點智力和 <%= per %> 點感知。 2018-2019冬季限定版裝備",
+ "weaponSpecialWinter2019MageNotes": "小心! 這團有爆炸性可能的法杖已經準備好隨時幫助任何需要幫忙的人。增加 <%= int %> 點智力和 <%= per %> 點感知。 2018-2019冬季限定版裝備。",
"weaponSpecialWinter2019HealerText": "冬日魔杖",
- "weaponSpecialWinter2019HealerNotes": "冬季是個可以好好休養和治療的日子,所以這根冬日魔杖的魔力可以幫助緩解任何受到傷害的傷口。增加 <%= int %> 點智力。 2018-2019 冬季限定版裝備",
+ "weaponSpecialWinter2019HealerNotes": "冬季是個可以好好休養和治療的日子,所以這根冬日魔杖的魔力可以幫助緩解任何受到傷害的傷口。增加 <%= int %> 點智力。 2018-2019 冬季限定版裝備。",
"weaponMystery201411Text": "盛宴草叉",
- "weaponMystery201411Notes": "刺擊您的敵人或是插入您最愛的食物——這把多才多藝的叉子可是無所不能!無屬性加成。 2014年11月訂閱者專屬裝備",
+ "weaponMystery201411Notes": "刺擊您的敵人或是插入您最愛的食物——這把多才多藝的叉子可是無所不能!無屬性加成。 2014年11月訂閱者專屬裝備。",
"weaponMystery201502Text": "愛與真理之微光翅膀法杖",
- "weaponMystery201502Notes": "為了翅膀!為了愛!也為了真理!無屬性加成。 2015年2月訂閱者專屬裝備",
+ "weaponMystery201502Notes": "為了翅膀!為了愛!也為了真理!無屬性加成。 2015年2月訂閱者專屬裝備。",
"weaponMystery201505Text": "綠騎士長矛",
- "weaponMystery201505Notes": "光榮的騎士們不知已經用這根銀綠相間的長矛將多少強敵通通打落馬下。無屬性加成。 2015年5月訂閱者專屬裝備",
+ "weaponMystery201505Notes": "光榮的騎士們不知已經用這根銀綠相間的長矛將多少強敵通通打落馬下。無屬性加成。 2015年5月訂閱者專屬裝備。",
"weaponMystery201611Text": "富產的豐饒羊角",
- "weaponMystery201611Notes": "(Copious Cornucopia) 各種美味又健康的食物從各個號角中溢出。享受這場盛宴吧! 沒無屬性加成。 2016年11月訂閱者專屬裝備",
+ "weaponMystery201611Notes": "(Copious Cornucopia) 各種美味又健康的食物從各個號角中溢出。享受這場盛宴吧! 沒無屬性加成。 2016年11月訂閱者專屬裝備。",
"weaponMystery201708Text": "熔岩長刃",
- "weaponMystery201708Notes": "在這熾熱光輝的庇護之下,即使是碰到深紅色的任務也能迅速斬除! 無屬性加成。 2017年8月訂閱者專屬裝備",
+ "weaponMystery201708Notes": "在這熾熱光輝的庇護之下,即使是碰到深紅色的任務也能迅速斬除! 無屬性加成。 2017年8月訂閱者專屬裝備。",
"weaponMystery201811Text": "璀璨巫師法杖",
"weaponMystery201811Notes": "這根充滿魔力的法杖與它的高雅一樣強而有力。無屬性加成。 2018年11月訂閱者專屬裝備。",
"weaponMystery301404Text": "蒸氣龐克風手杖",
- "weaponMystery301404Notes": "特別適合用於城裡散步。無屬性加成。 3015年3月訂閱者專屬裝備",
+ "weaponMystery301404Notes": "特別適合用於城裡散步。無屬性加成。 3015年3月訂閱者專屬裝備。",
"weaponArmoireBasicCrossbowText": "基礎級十字弩",
- "weaponArmoireBasicCrossbowNotes": "不管從多遠,都能夠用這把十字弩射出的弓箭刺穿任何任務的鎧甲!增加 <%= str %> 點力量、 <%= per %> 點感知和 <%= con %> 點體質。 來自神祕寶箱: 獨立裝備",
+ "weaponArmoireBasicCrossbowNotes": "不管從多遠,都能夠用這把十字弩射出的弓箭刺穿任何任務的鎧甲!增加 <%= str %> 點力量、 <%= per %> 點感知和 <%= con %> 點體質。 來自神秘寶箱: 獨立裝備。",
"weaponArmoireLunarSceptreText": "治癒之月權杖",
- "weaponArmoireLunarSceptreNotes": "從這把魔杖所帶來的治癒能量,會隨著月亮盈缺而增減。提高 <%= con %> 點體質和 <%= int %> 點智力。 來自神祕寶箱: 治癒之月套裝(3/3)。",
+ "weaponArmoireLunarSceptreNotes": "從這把魔杖所帶來的治癒能量,會隨著月亮盈缺而增減。提高 <%= con %> 點體質和 <%= int %> 點智力。 來自神秘寶箱: 治癒之月套裝(3/3)。",
"weaponArmoireRancherLassoText": "牛仔套索",
- "weaponArmoireRancherLassoNotes": "套索:專為圍捕和牽繩設計的理想工具。增加 <%= str %> 點力量、 <%= per %> 點感知和 <%= int %> 點智力。 來自神祕寶箱: 牛仔套裝(3/3)",
+ "weaponArmoireRancherLassoNotes": "套索:專為圍捕和牽繩設計的理想工具。增加 <%= str %> 點力量、 <%= per %> 點感知和 <%= int %> 點智力。 來自神秘寶箱: 牛仔套裝(3/3)。",
"weaponArmoireMythmakerSwordText": "神話英雄寶劍",
- "weaponArmoireMythmakerSwordNotes": "重劍無鋒大巧不工,這把寶劍已經造就了許多神話英雄。增加感知、力量各 <%= attrs %> 點。 來自神祕寶箱: 黃金托加長袍套裝(3/3)",
+ "weaponArmoireMythmakerSwordNotes": "重劍無鋒大巧不工,這把寶劍已經造就了許多神話英雄。增加感知、力量各 <%= attrs %> 點。 來自神秘寶箱: 黃金托加長袍套裝(3/3)。",
"weaponArmoireIronCrookText": "鋼鐵彎杖",
- "weaponArmoireIronCrookNotes": "純鋼打造,力透杖柄。這鋼鐵彎杖用來放牧效果極好。增加感知、力量各 <%= attrs %> 點。 來自神秘寶箱: 鐵角套裝(3/3)",
+ "weaponArmoireIronCrookNotes": "純鋼打造,力透杖柄。這鋼鐵彎杖用來放牧效果極好。增加感知、力量各 <%= attrs %> 點。 來自神秘寶箱: 鐵角套裝(3/3)。",
"weaponArmoireGoldWingStaffText": "金翅法杖",
- "weaponArmoireGoldWingStaffNotes": "法杖上的金翅振翅高飛,永垂不朽。增加所有屬性各 <%= attrs %> 點。 來自神秘寶箱: 獨立裝備",
+ "weaponArmoireGoldWingStaffNotes": "法杖上的金翅振翅高飛,永垂不朽。增加所有屬性各 <%= attrs %> 點。 來自神秘寶箱: 獨立裝備。",
"weaponArmoireBatWandText": "蝙蝠魔杖",
- "weaponArmoireBatWandNotes": "這把魔杖可以把任何任務轉變成一隻小蝙蝠!揮一揮,讓牠們飛得遠遠的。增加 <%= int %> 點智力和 <%= per %> 點感知。 來自神祕寶箱: 獨立裝備",
+ "weaponArmoireBatWandNotes": "這把魔杖可以把任何任務轉變成一隻小蝙蝠!揮一揮,讓牠們飛得遠遠的。增加 <%= int %> 點智力和 <%= per %> 點感知。 來自神秘寶箱: 獨立裝備。",
"weaponArmoireShepherdsCrookText": "牧羊人手杖",
- "weaponArmoireShepherdsCrookNotes": "想要放牧獅鷲的話,選這把牧羊人手杖就對了。增加 <%= con %> 點感知。 來自神秘寶箱: 牧羊人套裝(1/3)",
+ "weaponArmoireShepherdsCrookNotes": "想要放牧獅鷲的話,選這把牧羊人手杖就對了。增加 <%= con %> 點體質。 來自神秘寶箱: 牧羊人套裝(1/3)。",
"weaponArmoireCrystalCrescentStaffText": "弦月水晶法杖",
- "weaponArmoireCrystalCrescentStaffNotes": "以法仗的魔力召喚弦月的降臨!增加智力、力量各 <%= attrs %> 點。 來自神秘寶箱: 弦月水晶套裝(3/3)",
+ "weaponArmoireCrystalCrescentStaffNotes": "以法仗的魔力召喚弦月的降臨!增加智力、力量各 <%= attrs %> 點。 來自神秘寶箱: 弦月水晶套裝(3/3)。",
"weaponArmoireBlueLongbowText": "青藍長弓",
- "weaponArmoireBlueLongbowNotes": "準備...瞄準...發射! 這把弓的射程非常遠。增加 <%= per %> 點感知、 <%= con %> 點體質及 <%= str %> 點力量。 來自神祕寶箱: 鋼鐵弓箭手套裝(3/3)",
+ "weaponArmoireBlueLongbowNotes": "準備...瞄準...發射! 這把弓的射程非常遠。增加 <%= per %> 點感知、 <%= con %> 點體質及 <%= str %> 點力量。來自神秘寶箱: 鋼鐵弓箭手套裝(3/3)。",
"weaponArmoireGlowingSpearText": "炙光長矛",
- "weaponArmoireGlowingSpearNotes": "這支長矛能把任務通通催眠,以便您展開攻擊。增加 <%= str %> 點力量。 來自神祕寶箱: 獨立裝備",
+ "weaponArmoireGlowingSpearNotes": "這支長矛能把任務通通催眠,以便您展開攻擊。增加 <%= str %> 點力量。來自神秘寶箱: 獨立裝備。",
"weaponArmoireBarristerGavelText": "大律師木槌",
- "weaponArmoireBarristerGavelNotes": "通通給我肅靜! 增加力量、體質各 <%= attrs %> 點。 來自神秘寶箱: 大律師套裝(3/3)",
+ "weaponArmoireBarristerGavelNotes": "通通給我肅靜! 增加力量、體質各 <%= attrs %> 點。 來自神秘寶箱: 大律師套裝(3/3)。",
"weaponArmoireJesterBatonText": "小丑旗桿",
- "weaponArmoireJesterBatonNotes": "揮動旗桿,妙語連珠,讓最複雜的任務都變得一目了然。增加智力、感知各 <%= attrs %> 點。 來自神祕寶箱: 小丑套裝(3/3)",
+ "weaponArmoireJesterBatonNotes": "揮動旗桿,妙語連珠,讓最複雜的任務都變得一目了然。增加智力、感知各 <%= attrs %> 點。 來自神秘寶箱: 小丑套裝(3/3)。",
"weaponArmoireMiningPickaxText": "挖礦十字鎬",
- "weaponArmoireMiningPickaxNotes": "從您的任務山堆中挖出最大量的金幣! 增加 <%= per %> 點感知。 來自神祕寶箱: 挖礦大師套裝(3/3)",
+ "weaponArmoireMiningPickaxNotes": "從您的任務山堆中挖出最大量的金幣! 增加 <%= per %> 點感知。來自神秘寶箱: 挖礦大師套裝(3/3)。",
"weaponArmoireBasicLongbowText": "基礎級長弓",
- "weaponArmoireBasicLongbowNotes": "一把被前人傳承下來、仍可使用的弓。增加 <%= str %> 點力量。 來自神祕寶箱: 基礎射手套裝(1/3)",
+ "weaponArmoireBasicLongbowNotes": "一把被前人傳承下來、仍可使用的弓。增加 <%= str %> 點力量。 來自神秘寶箱: 基礎射手套裝(1/3)。",
"weaponArmoireHabiticanDiplomaText": "Habitica 鄉民證書",
- "weaponArmoireHabiticanDiplomaNotes": "一個重大成就的認證證書。幹得好喔! 增加 <%= int %> 點智力。 來自神祕寶箱: 畢業生套裝(1/3)",
+ "weaponArmoireHabiticanDiplomaNotes": "一個重大成就的認證證書。幹得好喔! 增加 <%= int %> 點智力。 來自神秘寶箱: 畢業生套裝(1/3)。",
"weaponArmoireSandySpadeText": "黃金沙鏟",
- "weaponArmoireSandySpadeNotes": "既能挖掘,亦能裝滿沙子瞄準敵方眼睛的攻擊武器。增加 <%= str %> 點力量。 來自神秘寶箱: 海濱套裝(1/3)",
+ "weaponArmoireSandySpadeNotes": "既能挖掘,亦能裝滿沙子瞄準敵方眼睛的攻擊武器。增加 <%= str %> 點力量。 來自神秘寶箱: 海濱套裝(1/3)。",
"weaponArmoireCannonText": "毀滅大砲",
- "weaponArmoireCannonNotes": "用您的精準分析瞄準方位! BANG! 增加 <%= str %> 點力量。 來自神秘寶箱: 炮手套裝(1/3)",
+ "weaponArmoireCannonNotes": "用您的精準分析瞄準方位! BANG! 增加 <%= str %> 點力量。 來自神秘寶箱: 炮手套裝(1/3)。",
"weaponArmoireVermilionArcherBowText": "朱紅射手長弓",
- "weaponArmoireVermilionArcherBowNotes": "透過這把耀眼的朱紅長弓,您發射的箭就會像流星一樣閃亮地飛出! 增加 <%= str %> 點力量。 來自神秘寶箱: 朱紅射手套裝(1/3)",
+ "weaponArmoireVermilionArcherBowNotes": "透過這把耀眼的朱紅長弓,您發射的箭就會像流星一樣閃亮地飛出! 增加 <%= str %> 點力量。 來自神秘寶箱: 朱紅射手套裝(1/3)。",
"weaponArmoireOgreClubText": "食人魔狼牙棒",
- "weaponArmoireOgreClubNotes": "這根狼牙棒是從食人魔的巢穴裡搶奪到的。增加 <%= str %> 點力量。 來自神秘寶箱: 食人魔套裝(2/3)",
+ "weaponArmoireOgreClubNotes": "這根狼牙棒是從食人魔的巢穴裡搶奪到的。增加 <%= str %> 點力量。 來自神秘寶箱: 食人魔套裝(2/3)。",
"weaponArmoireWoodElfStaffText": "木精靈法杖",
- "weaponArmoireWoodElfStaffNotes": "利用古老妖樹掉落的樹枝精製而成的。這根法杖能使您能夠與妖精森林裡的原住民們交流,不分高低貴賤。 增加 <%= int %> 點智力。 來自神秘寶箱: 森林妖精套裝(3/3)",
+ "weaponArmoireWoodElfStaffNotes": "利用古老妖樹掉落的樹枝精製而成的。這根法杖能使您能夠與妖精森林裡的原住民們交流,不分高低貴賤。 增加 <%= int %> 點智力。 來自神秘寶箱: 森林妖精套裝(3/3)。",
"weaponArmoireWandOfHeartsText": "愛心魔杖",
- "weaponArmoireWandOfHeartsNotes": "這把魔杖閃耀著溫暖的紅光。它將會賜予您智慧。增加 <%= int %> 點智力。 來自神秘寶箱: 心皇后套裝(3/3)",
+ "weaponArmoireWandOfHeartsNotes": "這把魔杖閃耀著溫暖的紅光。它將會賜予您智慧。增加 <%= int %> 點智力。 來自神秘寶箱: 心皇后套裝(3/3)。",
"weaponArmoireForestFungusStaffText": "真菌林法杖",
- "weaponArmoireForestFungusStaffNotes": "利用這根粗糙的法杖去施展真菌魔法吧! 增加 <%= int %> 點智力和 <%= per %> 點感知。 來自神祕寶箱: 獨立裝備",
+ "weaponArmoireForestFungusStaffNotes": "利用這根粗糙的法杖去施展真菌魔法吧! 增加 <%= int %> 點智力和 <%= per %> 點感知。來自神秘寶箱: 獨立裝備。",
"weaponArmoireFestivalFirecrackerText": "慶典爆竹",
- "weaponArmoireFestivalFirecrackerNotes": "盡情享受這令人賞心悅目的煙火吧。增加 <%= per %> 點感知。 來自神秘寶箱: 節日慶典套裝(3/3)",
+ "weaponArmoireFestivalFirecrackerNotes": "盡情享受這令人賞心悅目的煙火吧。增加 <%= per %> 點感知。 來自神秘寶箱: 節日慶典套裝(3/3)。",
"weaponArmoireMerchantsDisplayTrayText": "展示托盤",
- "weaponArmoireMerchantsDisplayTrayNotes": "用這個閃亮亮的托盤來展示您要出售的精美商品。增加 <%= int %> 點智力。 來自神秘寶箱: 商業大亨套裝(3/3)",
+ "weaponArmoireMerchantsDisplayTrayNotes": "用這個閃亮亮的托盤來展示您要出售的精美商品。增加 <%= int %> 點智力。 來自神秘寶箱: 商業大亨套裝(3/3)。",
"weaponArmoireBattleAxeText": "古老戰斧",
- "weaponArmoireBattleAxeNotes": "這把精製鍛造的鐵斧非常適合與您一同對抗最凶猛的敵人以及最艱困的任務。增加 <%= int %> 點智力和 <%= con %> 點體質。 來自神秘寶箱: 獨立裝備",
+ "weaponArmoireBattleAxeNotes": "這把精製鍛造的鐵斧非常適合與您一同對抗最凶猛的敵人以及最艱困的任務。增加 <%= int %> 點智力和 <%= con %> 點體質。 來自神秘寶箱: 獨立裝備。",
"weaponArmoireHoofClippersText": "腳蹄老虎鉗",
- "weaponArmoireHoofClippersNotes": "修剪陪您身經百戰的坐騎們的腳蹄,讓牠們在冒險途中保持安全! 增加力量、智力、體質各 <%= attrs %> 點。 來自神秘寶箱: 蹄鐵工套裝(1/3)",
+ "weaponArmoireHoofClippersNotes": "修剪陪您身經百戰的坐騎們的腳蹄,讓牠們在冒險途中保持安全! 增加力量、智力、體質各 <%= attrs %> 點。 來自神秘寶箱: 蹄鐵工套裝(1/3)。",
"weaponArmoireWeaversCombText": "織女的簪釵",
- "weaponArmoireWeaversCombNotes": "用這個簪釵將您的織紗捆在一起,作成一塊緊密編織的布料。增加感知 <%= per %> 點和 <%= str %> 點力量。 來自神秘寶箱: 織布工套裝(2/3)",
+ "weaponArmoireWeaversCombNotes": "用這個簪釵將您的織紗捆在一起,作成一塊緊密編織的布料。增加感知 <%= per %> 點和 <%= str %> 點力量。 來自神秘寶箱: 織布工套裝(2/3)。",
"weaponArmoireLamplighterText": "點燈器",
- "weaponArmoireLamplighterNotes": "在這長竿上的一端有一根用於點燈的燈芯,另一端則有用於熄滅它們的鐵鉤。增加 <%= con %> 點體質和 <%= per %> 點感知。 來自神秘寶箱: 點燈伕套裝(1/4)",
+ "weaponArmoireLamplighterNotes": "在這長竿上的一端有一根用於點燈的燈芯,另一端則有用於熄滅它們的鐵鉤。增加 <%= con %> 點體質和 <%= per %> 點感知。 來自神秘寶箱: 點燈伕套裝(1/4)。",
"weaponArmoireCoachDriversWhipText": "馬車伕鞭條",
- "weaponArmoireCoachDriversWhipNotes": "您的坐騎其實都知道牠們要怎麼做,所以這條鞭子只是裝飾品而已啦 (忽然傳出鞭條的拍打啪噠聲!)。增加 <%= int %> 點智力和 <%= str %> 點力量。 來自神秘寶箱: 馬車伕套裝(3/3)",
+ "weaponArmoireCoachDriversWhipNotes": "您的坐騎其實都知道牠們要怎麼做,所以這條鞭子只是裝飾品而已啦 (忽然傳出鞭條的拍打啪噠聲!)。增加 <%= int %> 點智力和 <%= str %> 點力量。 來自神秘寶箱: 馬車伕套裝(3/3)。",
"weaponArmoireScepterOfDiamondsText": "鑲鑽權杖",
- "weaponArmoireScepterOfDiamondsNotes": "這支權杖閃爍著溫暖的紅光,他會提高您的戰鬥意志力。增加 <%= str %> 點力量。 來自神秘寶箱: 鑽石之王套裝(3/4)",
+ "weaponArmoireScepterOfDiamondsNotes": "這支權杖閃爍著溫暖的紅光,他會提高您的戰鬥意志力。增加 <%= str %> 點力量。 來自神秘寶箱: 鑽石之王套裝(3/4)。",
"weaponArmoireFlutteryArmyText": "翩翩飛舞軍團",
- "weaponArmoireFlutteryArmyNotes": "這群好鬥的飛蛾已經磨刀霍霍地準備大顯身手,棒強您最泛紅的任務了! 增加體質、智力、力量各 <%= attrs %> 點。 來自神秘寶箱: 飛舞連身裙套裝(3/4)",
+ "weaponArmoireFlutteryArmyNotes": "這群好鬥的飛蛾已經磨刀霍霍地準備大顯身手,棒強您最泛紅的任務了! 增加體質、智力、力量各 <%= attrs %> 點。 來自神秘寶箱: 飛舞連身裙套裝(3/4)。",
"weaponArmoireCobblersHammerText": "鞋匠鐵鎚",
- "weaponArmoireCobblersHammerNotes": "這支是專門用於製造皮革的鐵鎚。但它可以在緊要關頭之時給泛紅的每日任務一擊重拳。增加體質、力量各 <%= attrs %> 點。 來自神秘寶箱: 鞋匠套裝(2/3)",
+ "weaponArmoireCobblersHammerNotes": "這支是專門用於製造皮革的鐵鎚。但它可以在緊要關頭之時給泛紅的每日任務一擊重拳。增加體質、力量各 <%= attrs %> 點。 來自神秘寶箱: 鞋匠套裝(2/3)。",
"weaponArmoireGlassblowersBlowpipeText": "玻璃吹製工的吹管",
- "weaponArmoireGlassblowersBlowpipeNotes": "用這根管子將熔化的玻璃吹製成漂亮的花瓶、裝飾品、或是其他酷炫的作品。增加 <%= str %> 點力量。 來自神秘寶箱: 玻璃吹製工套裝(1/4)",
+ "weaponArmoireGlassblowersBlowpipeNotes": "用這根管子將熔化的玻璃吹製成漂亮的花瓶、裝飾品、或是其他酷炫的作品。增加 <%= str %> 點力量。 來自神秘寶箱: 玻璃吹製工套裝(1/4)。",
"weaponArmoirePoisonedGobletText": "劇毒潔淨高腳杯",
- "weaponArmoirePoisonedGobletNotes": "用這高腳杯來盛裝劇毒的粉末以及其他危險的藥水。這個杯子會自動消毒轉變成乾淨可口的飲料。增加 <%= int %> 點智力。 來自神秘寶箱: 海盜公主套裝(3/4)",
+ "weaponArmoirePoisonedGobletNotes": "用這高腳杯來盛裝劇毒的粉末以及其他危險的藥水。這個杯子會自動消毒轉變成乾淨可口的飲料。增加 <%= int %> 點智力。 來自神秘寶箱: 海盜公主套裝(3/4)。",
"weaponArmoireJeweledArcherBowText": "射手寶石弓箭",
- "weaponArmoireJeweledArcherBowNotes": "這套由黃金與鑽石打造的弓箭能讓您射出的箭以光一般的速度擊落目標。增加 <%= int %> 點智力。 來自神祕寶箱: 射手寶石套裝(3/3)",
+ "weaponArmoireJeweledArcherBowNotes": "這套由黃金與鑽石打造的弓箭能讓您射出的箭以光一般的速度擊落目標。增加 <%= int %> 點智力。來自神秘寶箱: 射手寶石套裝(3/3)。",
"weaponArmoireNeedleOfBookbindingText": "裝訂針",
- "weaponArmoireNeedleOfBookbindingNotes": "您將會非常驚訝這書竟然能夠變得這樣堅固。這根裝訂針能刺穿您所有雜務事們的心臟。增加 <%= str %> 點力量。 來自神秘寶箱: 圖書裝訂工套裝(3/4)",
+ "weaponArmoireNeedleOfBookbindingNotes": "您將會非常驚訝這書竟然能夠變得這樣堅固。這根裝訂針能刺穿您所有雜務事們的心臟。增加 <%= str %> 點力量。 來自神秘寶箱: 圖書裝訂工套裝(3/4)。",
"weaponArmoireSpearOfSpadesText": "黑桃長矛",
- "weaponArmoireSpearOfSpadesNotes": "這根騎士長矛非常適合用來攻擊您最深紅色的習慣或每日任務。增加 <%= con %> 點體質。 來自神祕寶箱: 黑桃長矛套裝(3/3)",
+ "weaponArmoireSpearOfSpadesNotes": "這根騎士長矛非常適合用來攻擊您最深紅色的習慣或每日任務。增加 <%= con %> 點體質。 來自神秘寶箱: 黑桃長矛套裝(3/3)。",
"weaponArmoireArcaneScrollText": "奧術捲軸",
- "weaponArmoireArcaneScrollNotes": "這捲古老的待辦事項清單中到處充滿著源於早已失傳的的奇怪符號和法術。增加 <%= int %> 點智力。 來自神祕寶箱: 抄寫員套裝(3/3)",
+ "weaponArmoireArcaneScrollNotes": "這捲古老的待辦事項清單中到處充滿著源於早已失傳的的奇怪符號和法術。增加 <%= int %> 點智力。來自神秘寶箱: 抄寫員套裝(3/3)。",
"armor": "鎧甲",
"armorCapitalized": "鎧甲",
"armorBase0Text": "便衣",
@@ -455,13 +455,13 @@
"armorSpecialTurkeyArmorGildedText": "鍍金火雞鎧甲",
"armorSpecialTurkeyArmorGildedNotes": "將您的東西通通塞進這件歡慶的閃亮亮鎧甲! 無屬性加成。",
"armorSpecialYetiText": "雪怪馴化師長袍",
- "armorSpecialYetiNotes": "毛茸茸而且非常地兇猛! 增加 <%= con %> 點體質。2013-2014冬季限定版裝備",
+ "armorSpecialYetiNotes": "毛茸茸而且非常地兇猛! 增加 <%= con %> 點體質。2013-2014冬季限定版裝備。",
"armorSpecialSkiText": "滑雪刺客毛皮外套",
- "armorSpecialSkiNotes": "口袋裡裝了滿滿的匕首和滑雪道地圖。增加 <%= per %> 點感知。 2013-2014冬季限定版裝備",
+ "armorSpecialSkiNotes": "口袋裡裝了滿滿的匕首和滑雪道地圖。增加 <%= per %> 點感知。 2013-2014冬季限定版裝備。",
"armorSpecialCandycaneText": "糖果手杖長袍",
- "armorSpecialCandycaneNotes": "由糖漿和絲綢編織而成。增加 <%= int %> 點智力。 2013-2014冬季限定版裝備",
+ "armorSpecialCandycaneNotes": "由糖漿和絲綢編織而成。增加 <%= int %> 點智力。 2013-2014冬季限定版裝備。",
"armorSpecialSnowflakeText": "雪花長袍",
- "armorSpecialSnowflakeNotes": "即使在暴風雪中,這件長袍也能讓您感到保暖。增加 <%= con %> 點體質。 2013-2014冬季限定版裝備",
+ "armorSpecialSnowflakeNotes": "即使在暴風雪中,這件長袍也能讓您感到保暖。增加 <%= con %> 點體質。 2013-2014冬季限定版裝備。",
"armorSpecialBirthdayText": "滑稽派對長袍",
"armorSpecialBirthdayNotes": "生日快樂,Habitica!快穿上這些滑稽的派對長袍一同慶祝這美好的一天。無屬性加成。",
"armorSpecialBirthday2015Text": "傻氣派對長袍",
@@ -477,349 +477,349 @@
"armorSpecialGaymerxText": "彩虹戰士鎧甲",
"armorSpecialGaymerxNotes": "為了慶祝GaymerX大會,這件特別的鎧甲飾有炫目多彩、光芒四射的彩虹圖案! GaymerX是一個向所有人開放且支持LGTBQ的遊戲展覽會。無屬性加成。",
"armorSpecialSpringRogueText": "時髦紫貓禮服",
- "armorSpecialSpringRogueNotes": "無可挑剔的整潔。增加 <%= per %> 點感知。 2014年春季限定版裝備",
+ "armorSpecialSpringRogueNotes": "無可挑剔的整潔。增加 <%= per %> 點感知。 2014年春季限定版裝備。",
"armorSpecialSpringWarriorText": "三葉草鋼鎧甲",
- "armorSpecialSpringWarriorNotes": "柔軟如三葉草,堅硬如鋼鐵!增加 <%= con %> 點體質。 2014年春季限定版裝備",
+ "armorSpecialSpringWarriorNotes": "柔軟如三葉草,堅硬如鋼鐵!增加 <%= con %> 點體質。 2014年春季限定版裝備。",
"armorSpecialSpringMageText": "囓齒鼠長袍",
- "armorSpecialSpringMageNotes": "老鼠「難波ONE」!增加 <%= int %> 點智力。 2014年春季限定版裝備",
+ "armorSpecialSpringMageNotes": "老鼠「難波ONE」!增加 <%= int %> 點智力。 2014年春季限定版裝備。",
"armorSpecialSpringHealerText": "絨毛小狗長袍",
- "armorSpecialSpringHealerNotes": "溫暖又舒適,還能保護您免受傷害。增加 <%= con %> 點體質。 2014年春季限定版裝備",
+ "armorSpecialSpringHealerNotes": "溫暖又舒適,還能保護您免受傷害。增加 <%= con %> 點體質。 2014年春季限定版裝備。",
"armorSpecialSummerRogueText": "海盜長袍",
- "armorSpecialSummerRogueNotes": "這些長袍穿起來多麼舒適啊。唷呼!增加 <%= per %> 點感知。 2014年夏季限定版裝備",
+ "armorSpecialSummerRogueNotes": "這些長袍穿起來多麼舒適啊。唷呼!增加 <%= per %> 點感知。 2014年夏季限定版裝備。",
"armorSpecialSummerWarriorText": "流氓長袍",
- "armorSpecialSummerWarriorNotes": "虛張聲勢再加上釦子打造而成的長袍。增加 <%= con %> 點體質。 2014年夏季限定版裝備",
+ "armorSpecialSummerWarriorNotes": "虛張聲勢再加上釦子打造而成的長袍。增加 <%= con %> 點體質。 2014年夏季限定版裝備。",
"armorSpecialSummerMageText": "綠寶石燕尾服",
- "armorSpecialSummerMageNotes": "(Shimmery Winged Staff of Love and Also Truth) 這件滿是閃亮鱗片的衣服可以將它的穿戴者變成一位法師美人魚!增加<%= int %> 點智力。 2014年夏季限定版裝備",
+ "armorSpecialSummerMageNotes": "(Shimmery Winged Staff of Love and Also Truth) 這件滿是閃亮鱗片的衣服可以將它的穿戴者變成一位法師美人魚!增加<%= int %> 點智力。 2014年夏季限定版裝備。",
"armorSpecialSummerHealerText": "海洋補師燕尾服",
- "armorSpecialSummerHealerNotes": "這件滿是閃亮鱗片的衣服可以將它的穿戴者變成一位海洋補師!增加 <%= con %> 點體質。 2014年夏季限定版裝備",
+ "armorSpecialSummerHealerNotes": "這件滿是閃亮鱗片的衣服可以將它的穿戴者變成一位海洋補師!增加 <%= con %> 點體質。 2014年夏季限定版裝備。",
"armorSpecialFallRogueText": "血紅長袍",
- "armorSpecialFallRogueNotes": "鮮豔、柔軟、變成吸血鬼! 增加 <%= per %> 點感知。 2014年秋季限定版裝備",
+ "armorSpecialFallRogueNotes": "鮮豔、柔軟、變成吸血鬼! 增加 <%= per %> 點感知。 2014年秋季限定版裝備。",
"armorSpecialFallWarriorText": "科學實驗服",
- "armorSpecialFallWarriorNotes": "保護您免於被神秘藥水波濺之苦。增加 <%= con %> 點體質。 2014年秋季限定版裝備",
+ "armorSpecialFallWarriorNotes": "保護您免於被神秘藥水波濺之苦。增加 <%= con %> 點體質。 2014年秋季限定版裝備。",
"armorSpecialFallMageText": "精靈女巫長袍",
- "armorSpecialFallMageNotes": "這件長袍有非常多的口袋,能夠裝下大量的蠑螈眼睛和青蛙舌頭。增加 <%= int %> 點智力。 2014年秋季限定版裝備",
+ "armorSpecialFallMageNotes": "這件長袍有非常多的口袋,能夠裝下大量的蠑螈眼睛和青蛙舌頭。增加 <%= int %> 點智力。 2014年秋季限定版裝備。",
"armorSpecialFallHealerText": "紗布薄衣",
- "armorSpecialFallHealerNotes": "滿身捆著繃帶進攻!增加 <%= con %> 點感知。 2014年秋季限定版裝備",
+ "armorSpecialFallHealerNotes": "滿身捆著繃帶進攻!增加 <%= con %> 點感知。 2014年秋季限定版裝備。",
"armorSpecialWinter2015RogueText": "冰錐龍獸鎧甲",
- "armorSpecialWinter2015RogueNotes": "(Icicle Drake) 這件鎧甲極為刺骨寒冷。然而,當您在冰椎龍獸的聚集地中心發現了無盡的財寶時,一切都值得了。不能說您正在尋找那些數不清的財寶,因為您千真、萬卻、絕對就是那隻傳說中的冰椎龍獸好嗎?別再問問題了!增加 <%= per %> 點感知。 2014-2015冬季限定版裝備",
+ "armorSpecialWinter2015RogueNotes": "這件鎧甲極為刺骨寒冷。然而,當您在冰椎龍獸的聚集地中心發現了無盡的財寶時,一切都值得了。不能說您正在尋找那些數不清的財寶,因為您千真、萬卻、絕對就是那隻傳說中的冰椎龍獸好嗎?別再問問題了!增加 <%= per %> 點感知。 2014-2015冬季限定版裝備。",
"armorSpecialWinter2015WarriorText": "薑餅鎧甲",
- "armorSpecialWinter2015WarriorNotes": "窩心又溫暖,直接從火爐裡拿出來的喔!增加 <%= con %> 點體質。 2014-2015冬季限定版裝備",
+ "armorSpecialWinter2015WarriorNotes": "窩心又溫暖,直接從火爐裡拿出來的喔!增加 <%= con %> 點體質。 2014-2015冬季限定版裝備。",
"armorSpecialWinter2015MageText": "北部長袍",
- "armorSpecialWinter2015MageNotes": "您可以從這件長袍上看到北方閃閃發亮的光芒。增加 <%= int %> 點智力。 2014-2015 冬季限定版裝備",
+ "armorSpecialWinter2015MageNotes": "您可以從這件長袍上看到北方閃閃發亮的光芒。增加 <%= int %> 點智力。 2014-2015 冬季限定版裝備。",
"armorSpecialWinter2015HealerText": "溜冰套裝",
- "armorSpecialWinter2015HealerNotes": "溜冰可是很放鬆的,但若沒有這件衣服來保護您,可就別輕易嘗試喔,小心冰椎龍獸的攻擊!增加 <%= con %> 點體質。 2014-2015冬季限定版裝備",
+ "armorSpecialWinter2015HealerNotes": "溜冰可是很放鬆的,但若沒有這件衣服來保護您,可就別輕易嘗試喔,小心冰椎龍獸的攻擊!增加 <%= con %> 點體質。 2014-2015冬季限定版裝備。",
"armorSpecialSpring2015RogueText": "霹靂長袍",
- "armorSpecialSpring2015RogueNotes": "毛茸茸,軟綿綿,而且絕對不會燒起來。增加<%= per %> 點感知。 2015春季限定版裝備",
+ "armorSpecialSpring2015RogueNotes": "毛茸茸,軟綿綿,而且絕對不會燒起來。增加<%= per %> 點感知。 2015春季限定版裝備。",
"armorSpecialSpring2015WarriorText": "警惕鎧甲",
- "armorSpecialSpring2015WarriorNotes": "只有最兇猛的狗才有資格這麼毛茸茸。增加<%= con %> 點體質。2015春季限定版裝備",
+ "armorSpecialSpring2015WarriorNotes": "只有最兇猛的狗才有資格這麼毛茸茸。增加<%= con %> 點體質。2015春季限定版裝備。",
"armorSpecialSpring2015MageText": "魔術師的兔子西裝",
- "armorSpecialSpring2015MageNotes": "這件燕尾服的燕尾巴跟您的棉尾兔很搭哦!增加<%= int %> 點智力。 2015春季限定版裝備",
+ "armorSpecialSpring2015MageNotes": "這件燕尾服的燕尾巴跟您的棉尾兔很搭哦!增加<%= int %> 點智力。 2015春季限定版裝備。",
"armorSpecialSpring2015HealerText": "欣慰連衣褲",
- "armorSpecialSpring2015HealerNotes": "這件柔軟的連衣褲穿起來非常舒適,就像薄荷茶一樣撫慰人心。增加 <%= con %> 點體質。 2015春季限定版裝備",
+ "armorSpecialSpring2015HealerNotes": "這件柔軟的連衣褲穿起來非常舒適,就像薄荷茶一樣撫慰人心。增加 <%= con %> 點體質。 2015春季限定版裝備。",
"armorSpecialSummer2015RogueText": "寶紅燕尾服",
- "armorSpecialSummer2015RogueNotes": "這件衣服上那閃閃發光的鱗片會使穿上的人變成一位真正的珊瑚礁叛變者!增加 <%= per %> 點感知。 2015年夏季限定版裝備",
+ "armorSpecialSummer2015RogueNotes": "這件衣服上那閃閃發光的鱗片會使穿上的人變成一位真正的珊瑚礁叛變者!增加 <%= per %> 點感知。 2015年夏季限定版裝備。",
"armorSpecialSummer2015WarriorText": "黃金燕尾服",
- "armorSpecialSummer2015WarriorNotes": "這件衣服上那閃閃發光的鱗片會使穿上的人變成一位真正的太陽魚戰士!增加 <%= con %> 點體質。 2015年夏季限定版裝備",
+ "armorSpecialSummer2015WarriorNotes": "這件衣服上那閃閃發光的鱗片會使穿上的人變成一位真正的太陽魚戰士!增加 <%= con %> 點體質。 2015年夏季限定版裝備。",
"armorSpecialSummer2015MageText": "預言家長袍",
- "armorSpecialSummer2015MageNotes": "隱藏的力量從於袖口裡陣陣撲出。增加 <%= int %> 點智力。 2015年夏季限定版裝備",
+ "armorSpecialSummer2015MageNotes": "隱藏的力量從於袖口裡陣陣撲出。增加 <%= int %> 點智力。 2015年夏季限定版裝備。",
"armorSpecialSummer2015HealerText": "水手鎧甲",
- "armorSpecialSummer2015HealerNotes": "穿上這件鎧甲,大家都會知道您是位誠實的商人水手,永遠不與流氓同流合汙。增加 <%= con %> 點體質。 2015年夏季限定版裝備",
+ "armorSpecialSummer2015HealerNotes": "穿上這件鎧甲,大家都會知道您是位誠實的商人水手,永遠不與流氓同流合汙。增加 <%= con %> 點體質。 2015年夏季限定版裝備。",
"armorSpecialFall2015RogueText": "戰蝠鎧甲",
- "armorSpecialFall2015RogueNotes": "飛向戰鬥,蝙蝠無垠!增加 <%= per %> 點感知。 2015年秋季限定版裝備",
+ "armorSpecialFall2015RogueNotes": "飛向戰鬥,蝙蝠無垠!增加 <%= per %> 點感知。 2015年秋季限定版裝備。",
"armorSpecialFall2015WarriorText": "稻草人鎧甲",
- "armorSpecialFall2015WarriorNotes": "儘管被塞滿了稻草,這件鎧甲仍是非常沉重的!增加 <%= con %> 點體質。 2015年秋季限定版裝備",
+ "armorSpecialFall2015WarriorNotes": "儘管被塞滿了稻草,這件鎧甲仍是非常沉重的!增加 <%= con %> 點體質。 2015年秋季限定版裝備。",
"armorSpecialFall2015MageText": "穿針引線長袍",
- "armorSpecialFall2015MageNotes": "這件鎧甲上的每一針每一線都閃耀著魔法的光輝。增加 <%= int %> 點智力。 2015年秋季限定版裝備",
+ "armorSpecialFall2015MageNotes": "這件鎧甲上的每一針每一線都閃耀著魔法的光輝。增加 <%= int %> 點智力。 2015年秋季限定版裝備。",
"armorSpecialFall2015HealerText": "魔藥師長袍",
- "armorSpecialFall2015HealerNotes": "什麼?這當然只是一瓶增加體質屬性點的藥水啊。不會啦,您絕不會變成一隻青蛙!別傻啦。增加 <%= con %> 點體質。 2015年秋季限定版裝備",
+ "armorSpecialFall2015HealerNotes": "什麼?這當然只是一瓶增加體質屬性點的藥水啊。不會啦,您絕不會變成一隻青蛙!別傻啦。增加 <%= con %> 點體質。 2015年秋季限定版裝備。",
"armorSpecialWinter2016RogueText": "可可豆皮甲",
- "armorSpecialWinter2016RogueNotes": "這件皮甲讓您變得宜人又暖呼呼。這真的是從可可豆烘焙而成的嗎? 您是絕對不會知道的。增加 <%= per %> 點感知。 2015-2016冬季限定版裝備",
+ "armorSpecialWinter2016RogueNotes": "這件皮甲讓您變得宜人又暖呼呼。這真的是從可可豆烘焙而成的嗎? 您是絕對不會知道的。增加 <%= per %> 點感知。 2015-2016冬季限定版裝備。",
"armorSpecialWinter2016WarriorText": "雪人禮服",
- "armorSpecialWinter2016WarriorNotes": "哇! 這件塞滿雪的鎧甲果然非常強大... 在它溶化之前。增加 <%= con %> 點體質。 2015-2016冬季限定版裝備",
+ "armorSpecialWinter2016WarriorNotes": "哇! 這件塞滿雪的鎧甲果然非常強大... 在它溶化之前。增加 <%= con %> 點體質。 2015-2016冬季限定版裝備。",
"armorSpecialWinter2016MageText": "滑雪家毛皮外套",
- "armorSpecialWinter2016MageNotes": "最明智的巫師會在寒風直直吹的冬日裡把自己裹得好好的。增加 <%= int %> 點智力。 2015-2016冬季限定版裝備",
+ "armorSpecialWinter2016MageNotes": "最明智的巫師會在寒風直直吹的冬日裡把自己裹得好好的。增加 <%= int %> 點智力。 2015-2016冬季限定版裝備。",
"armorSpecialWinter2016HealerText": "慶典仙女披風",
- "armorSpecialWinter2016HealerNotes": "慶典仙女們會將兩側的翅膀把包起來以保護自己。因為祂們將以時速100公里的速度飛越整塊Habitica大陸,並為每個人帶來禮物,並拋撒彩色紙屑。多麼地滑稽啊! 增加 <%= con %> 點體質。 2015-2016冬季限定版裝備",
+ "armorSpecialWinter2016HealerNotes": "慶典仙女們會將兩側的翅膀把包起來以保護自己。因為祂們將以時速100公里的速度飛越整塊Habitica大陸,並為每個人帶來禮物,並拋撒彩色紙屑。多麼地滑稽啊! 增加 <%= con %> 點體質。 2015-2016冬季限定版裝備。",
"armorSpecialSpring2016RogueText": "迷彩犬裝",
- "armorSpecialSpring2016RogueNotes": "聰明的小狗都知道在滿是綠色及鮮豔的環境下,選擇明亮的外觀來偽裝自己是聰明的選擇。增加 <%= per %> 點感知。2016年春季限定版裝備",
+ "armorSpecialSpring2016RogueNotes": "聰明的小狗都知道在滿是綠色及鮮豔的環境下,選擇明亮的外觀來偽裝自己是聰明的選擇。增加 <%= per %> 點感知。2016年春季限定版裝備。",
"armorSpecialSpring2016WarriorText": "威武鎖鍊護甲",
- "armorSpecialSpring2016WarriorNotes": "儘管您是多麼地渺小,但您非常地勇猛! 增加 <%= con %> 點體質。 2016年春季限定版裝備",
+ "armorSpecialSpring2016WarriorNotes": "儘管您是多麼地渺小,但您非常地勇猛! 增加 <%= con %> 點體質。 2016年春季限定版裝備。",
"armorSpecialSpring2016MageText": "豪華金貓長袍",
- "armorSpecialSpring2016MageNotes": "(Grand Malkin Robes) 它色彩斑斕,所以您不會被誤認為是一隻亡靈鼠法師。增加 <%= int %> 點智力。 2016年春季限定版裝備",
+ "armorSpecialSpring2016MageNotes": "(Grand Malkin Robes) 它色彩斑斕,所以您不會被誤認為是一隻亡靈鼠法師。增加 <%= int %> 點智力。 2016年春季限定版裝備。",
"armorSpecialSpring2016HealerText": "毛茸茸野兔馬褲",
- "armorSpecialSpring2016HealerNotes": "蹦蹦跳跳跳! 從一座山頭跳到另一座山頭,治療需要的人。增加 <%= con %> 點體質。 2016年春季限定版裝備",
+ "armorSpecialSpring2016HealerNotes": "蹦蹦跳跳跳! 從一座山頭跳到另一座山頭,治療需要的人。增加 <%= con %> 點體質。 2016年春季限定版裝備。",
"armorSpecialSummer2016RogueText": "鰻魚燕尾服",
- "armorSpecialSummer2016RogueNotes": "這件帶電的衣服可以將它的穿戴者變成一位真正的鰻魚盜賊! 增加 <%= per %> 點感知。 2016年夏季限定版裝備",
+ "armorSpecialSummer2016RogueNotes": "這件帶電的衣服可以將它的穿戴者變成一位真正的鰻魚盜賊! 增加 <%= per %> 點感知。 2016年夏季限定版裝備。",
"armorSpecialSummer2016WarriorText": "鯊魚燕尾服",
- "armorSpecialSummer2016WarriorNotes": "這件摸起來很粗糙的衣服可以將它的穿戴者變成一位真正的鯊魚戰士! 增加 <%= con %> 點體質。 2016年夏季限定版裝備",
+ "armorSpecialSummer2016WarriorNotes": "這件摸起來很粗糙的衣服可以將它的穿戴者變成一位真正的鯊魚戰士! 增加 <%= con %> 點體質。 2016年夏季限定版裝備。",
"armorSpecialSummer2016MageText": "海豚燕尾服",
- "armorSpecialSummer2016MageNotes": "這件滑溜溜的衣服可以將它的穿戴者變成一位真正的海豚法師! 增加 <%= int %> 點智力。 2016年夏季限定版裝備",
+ "armorSpecialSummer2016MageNotes": "這件滑溜溜的衣服可以將它的穿戴者變成一位真正的海豚法師! 增加 <%= int %> 點智力。 2016年夏季限定版裝備。",
"armorSpecialSummer2016HealerText": "海馬燕尾服",
- "armorSpecialSummer2016HealerNotes": "這件尖尖的衣服可以將它的穿戴者變成一位真正的海馬補師! 增加 <%= con %> 點體質。 2016年夏季限定版裝備",
+ "armorSpecialSummer2016HealerNotes": "這件尖尖的衣服可以將它的穿戴者變成一位真正的海馬補師! 增加 <%= con %> 點體質。 2016年夏季限定版裝備。",
"armorSpecialFall2016RogueText": "黑寡婦鎧甲",
- "armorSpecialFall2016RogueNotes": "這件鎧甲上的眼睛正不停地眨眼。增加 <%= per %> 點感知。 2016年秋季限定版裝備",
+ "armorSpecialFall2016RogueNotes": "這件鎧甲上的眼睛正不停地眨眼。增加 <%= per %> 點感知。 2016年秋季限定版裝備。",
"armorSpecialFall2016WarriorText": "史萊姆斑紋鎧甲",
- "armorSpecialFall2016WarriorNotes": "怪異地長滿潮濕的苔癬! 增加 <%= con %> 點體質。 2016年秋季限定版裝備",
+ "armorSpecialFall2016WarriorNotes": "怪異地長滿潮濕的苔癬! 增加 <%= con %> 點體質。 2016年秋季限定版裝備。",
"armorSpecialFall2016MageText": "罪惡披風",
- "armorSpecialFall2016MageNotes": "當您的斗篷陣陣拍動,您將聽到邪惡的咯咯笑聲。增加 <%= int %> 點智力。 2016年秋季限定版裝備",
+ "armorSpecialFall2016MageNotes": "當您的斗篷陣陣拍動,您將聽到邪惡的咯咯笑聲。增加 <%= int %> 點智力。 2016年秋季限定版裝備。",
"armorSpecialFall2016HealerText": "蛇髮女妖長袍",
- "armorSpecialFall2016HealerNotes": "(Gorgon) 這件長袍實際上是由石頭變成的。但為甚麼它穿起來如此的舒適? 增加 <%= con %> 點體質。 2016年秋季限定版裝備",
+ "armorSpecialFall2016HealerNotes": "(Gorgon) 這件長袍實際上是由石頭變成的。但為甚麼它穿起來如此的舒適? 增加 <%= con %> 點體質。 2016年秋季限定版裝備。",
"armorSpecialWinter2017RogueText": "冰霜鎧甲",
- "armorSpecialWinter2017RogueNotes": "這件隱密的服裝能夠折射出閃瞎所有任務的光,然後您就可以盡情奪取它們身上的獎品。增加 <%= per %> 點感知。 2016-2017冬季限定版裝備",
+ "armorSpecialWinter2017RogueNotes": "這件隱密的服裝能夠折射出閃瞎所有任務的光,然後您就可以盡情奪取它們身上的獎品。增加 <%= per %> 點感知。 2016-2017冬季限定版裝備。",
"armorSpecialWinter2017WarriorText": "冰棍球鎧甲",
- "armorSpecialWinter2017WarriorNotes": "用這件溫暖加棉的鎧甲來展現你們隊伍的精神和力量吧。增加 <%= con %> 點體質。 2016-2017冬季限定版裝備",
+ "armorSpecialWinter2017WarriorNotes": "用這件溫暖加棉的鎧甲來展現你們隊伍的精神和力量吧。增加 <%= con %> 點體質。 2016-2017冬季限定版裝備。",
"armorSpecialWinter2017MageText": "戰狼鎧甲",
- "armorSpecialWinter2017MageNotes": "以冬季裡最保暖的羊毛和神祕的冬季戰狼施法編織而成。這樣的長袍可有效隔絕寒風並讓您的大腦隨時保持警醒! 增加 <%= int %> 點智力。 2016-2017冬季限定版裝備",
+ "armorSpecialWinter2017MageNotes": "以冬季裡最保暖的羊毛和神祕的冬季戰狼施法編織而成。這樣的長袍可有效隔絕寒風並讓您的大腦隨時保持警醒! 增加 <%= int %> 點智力。 2016-2017冬季限定版裝備。",
"armorSpecialWinter2017HealerText": "閃爍花瓣鎧甲",
- "armorSpecialWinter2017HealerNotes": "雖然很柔軟,但這件花瓣護甲擁有上等的保護能力。增加 <%= con %> 點體質。 2016-2017冬季限定版裝備",
+ "armorSpecialWinter2017HealerNotes": "雖然很柔軟,但這件花瓣護甲擁有上等的保護能力。增加 <%= con %> 點體質。 2016-2017冬季限定版裝備。",
"armorSpecialSpring2017RogueText": "鬼祟野兔禮服",
"armorSpecialSpring2017RogueNotes": "這件服裝既柔軟又堅硬,還能夠幫助您在花園中偷偷摸摸地移動。增加 <%= per %> 點感知。 2017年春季限定版裝備。",
"armorSpecialSpring2017WarriorText": "可愛利爪鎧甲",
- "armorSpecialSpring2017WarriorNotes": "這件花俏的鎧甲就像您精心打扮的夾克一樣閃亮,同時還能提供額外的防禦力。增加 <%= con %> 點體質。 2017年春季限定版裝備",
+ "armorSpecialSpring2017WarriorNotes": "這件花俏的鎧甲就像您精心打扮的夾克一樣閃亮,同時還能提供額外的防禦力。增加 <%= con %> 點體質。 2017年春季限定版裝備。",
"armorSpecialSpring2017MageText": "魔術小犬長袍",
- "armorSpecialSpring2017MageNotes": "魔幻的設計,精心挑選的蓬鬆感。增加<%= int %> 點智力。 2017年春季限定版裝備",
+ "armorSpecialSpring2017MageNotes": "魔幻的設計,精心挑選的蓬鬆感。增加<%= int %> 點智力。 2017年春季限定版裝備。",
"armorSpecialSpring2017HealerText": "安詳長袍",
- "armorSpecialSpring2017HealerNotes": "這件長袍鬆軟的觸感,不但仍安撫您自己,還可以安撫需要治療的人! 增加 <%= con %> 點體質。 2017年春季限定版裝備",
+ "armorSpecialSpring2017HealerNotes": "這件長袍鬆軟的觸感,不但仍安撫您自己,還可以安撫需要治療的人! 增加 <%= con %> 點體質。 2017年春季限定版裝備。",
"armorSpecialSummer2017RogueText": "海龍燕尾服",
- "armorSpecialSummer2017RogueNotes": "這件色彩鮮艷的衣服能讓它的穿戴者變成一隻真正的海龍! 增加 <%= per %> 點感知。 2017年夏季限定版裝備",
+ "armorSpecialSummer2017RogueNotes": "這件色彩鮮艷的衣服能讓它的穿戴者變成一隻真正的海龍! 增加 <%= per %> 點感知。 2017年夏季限定版裝備。",
"armorSpecialSummer2017WarriorText": "沙沙鎧甲",
- "armorSpecialSummer2017WarriorNotes": "別被它易碎的外表所騙了,這件鎧甲實際上比鋼鐵還硬。增加 <%= con %> 點體質。 2017年夏季限定版裝備",
+ "armorSpecialSummer2017WarriorNotes": "別被它易碎的外表所騙了,這件鎧甲實際上比鋼鐵還硬。增加 <%= con %> 點體質。 2017年夏季限定版裝備。",
"armorSpecialSummer2017MageText": "漩渦長袍",
- "armorSpecialSummer2017MageNotes": "小心别被這件由附魔海水所織成的長袍給濺濕了! 增加 <%= int %> 點智力。 2017年夏季限定版裝備",
+ "armorSpecialSummer2017MageNotes": "小心别被這件由附魔海水所織成的長袍給濺濕了! 增加 <%= int %> 點智力。 2017年夏季限定版裝備。",
"armorSpecialSummer2017HealerText": "銀海燕尾服",
- "armorSpecialSummer2017HealerNotes": "這件覆滿銀色鱗片的衣服能讓它的穿戴者變成一位真正的海中補師! 增加 <%= con %> 點體質。 2017年夏季限定版裝備",
+ "armorSpecialSummer2017HealerNotes": "這件覆滿銀色鱗片的衣服能讓它的穿戴者變成一位真正的海中補師! 增加 <%= con %> 點體質。 2017年夏季限定版裝備。",
"armorSpecialFall2017RogueText": "南瓜補丁長袍",
- "armorSpecialFall2017RogueNotes": "想玩躲貓貓嗎? 快蹲在傑克南瓜燈的旁邊,這些長袍將能讓您變隱形! 增加 <%= per %> 點感知。 2017年秋季限定版裝備",
+ "armorSpecialFall2017RogueNotes": "想玩躲貓貓嗎? 快蹲在傑克南瓜燈的旁邊,這些長袍將能讓您變隱形! 增加 <%= per %> 點感知。 2017年秋季限定版裝備。",
"armorSpecialFall2017WarriorText": "堅硬美味鎧甲",
- "armorSpecialFall2017WarriorNotes": "這件鎧甲會像甜美的糖果硬殼一樣保護您。增加 <%= con %> 點體質。 2017年秋季限定版裝備",
+ "armorSpecialFall2017WarriorNotes": "這件鎧甲會像甜美的糖果硬殼一樣保護您。增加 <%= con %> 點體質。 2017年秋季限定版裝備。",
"armorSpecialFall2017MageText": "假面舞會長袍",
- "armorSpecialFall2017MageNotes": "如果不搭配件這件效果十足的寬長長袍,化妝舞會怎麼能說辦得非常成功呢? 增加 <%= int %> 點智力。 2017年秋季限定版裝備",
+ "armorSpecialFall2017MageNotes": "如果不搭配件這件效果十足的寬長長袍,化妝舞會怎麼能說辦得非常成功呢? 增加 <%= int %> 點智力。 2017年秋季限定版裝備。",
"armorSpecialFall2017HealerText": "鬼屋鎧甲",
- "armorSpecialFall2017HealerNotes": "您的心宛如一扇敞開的們,您的肩膀宛如一片片能遮風擋雨的屋瓦! 增加 <%= con %> 點體質。 2017年秋季限定版裝備",
+ "armorSpecialFall2017HealerNotes": "您的心宛如一扇敞開的們,您的肩膀宛如一片片能遮風擋雨的屋瓦! 增加 <%= con %> 點體質。 2017年秋季限定版裝備。",
"armorSpecialWinter2018RogueText": "馴鹿服飾",
- "armorSpecialWinter2018RogueNotes": "您看起來毛茸茸的,好可愛! 誰不認為您就是慶典後的獎品呢? 增加 <%= per %> 點感知。 2017-2018冬季限定版裝備",
+ "armorSpecialWinter2018RogueNotes": "您看起來毛茸茸的,好可愛! 誰不認為您就是慶典後的獎品呢? 增加 <%= per %> 點感知。 2017-2018冬季限定版裝備。",
"armorSpecialWinter2018WarriorText": "包裝紙鎧甲",
- "armorSpecialWinter2018WarriorNotes": "別被這摸起來像紙一樣的感覺所騙了。您絕對不可能撕爛它的啦! 增加 <%= con %> 點體質。 2017-2018冬季限定版裝備",
+ "armorSpecialWinter2018WarriorNotes": "別被這摸起來像紙一樣的感覺所騙了。您絕對不可能撕爛它的啦! 增加 <%= con %> 點體質。 2017-2018冬季限定版裝備。",
"armorSpecialWinter2018MageText": "閃亮亮晚禮服",
- "armorSpecialWinter2018MageNotes": "這是一件終極的魔法禮服。增加 <%= int %> 點智力。 2017-2018冬季限定版裝備",
+ "armorSpecialWinter2018MageNotes": "這是一件終極的魔法禮服。增加 <%= int %> 點智力。 2017-2018冬季限定版裝備。",
"armorSpecialWinter2018HealerText": "槲寄生長袍",
- "armorSpecialWinter2018HealerNotes": "這些長袍是利用榭寄生和特別的咒語編織而成,能夠讓您在聖誕佳節期間更加快樂。增加 <%= con %> 點體質。 2017-2018冬季限定版裝備",
+ "armorSpecialWinter2018HealerNotes": "這些長袍是利用榭寄生和特別的咒語編織而成,能夠讓您在聖誕佳節期間更加快樂。增加 <%= con %> 點體質。 2017-2018冬季限定版裝備。",
"armorSpecialSpring2018RogueText": "羽毛禮服",
- "armorSpecialSpring2018RogueNotes": "這件毛茸茸的黃色服裝能讓敵人誤以為您只是隻無害的鴨子! 增加 <%= per %> 點感知。 2018年春季限定版裝備",
+ "armorSpecialSpring2018RogueNotes": "這件毛茸茸的黃色服裝能讓敵人誤以為您只是隻無害的鴨子! 增加 <%= per %> 點感知。 2018年春季限定版裝備。",
"armorSpecialSpring2018WarriorText": "黎明鎧甲",
- "armorSpecialSpring2018WarriorNotes": "這件色彩繽紛的鎧甲適用日出知火鍛造而成。增加 <%= con %> 點體質。 2018年春季限定版裝備",
+ "armorSpecialSpring2018WarriorNotes": "這件色彩繽紛的鎧甲適用日出知火鍛造而成。增加 <%= con %> 點體質。 2018年春季限定版裝備。",
"armorSpecialSpring2018MageText": "鬱金香長袍",
- "armorSpecialSpring2018MageNotes": "唯有被這些如絲綢般柔軟的花瓣覆蓋時,您施放的咒語才會能力提升。增加 <%= int %> 點智力。 2018年春季限定版裝備",
+ "armorSpecialSpring2018MageNotes": "唯有被這些如絲綢般柔軟的花瓣覆蓋時,您施放的咒語才會能力提升。增加 <%= int %> 點智力。 2018年春季限定版裝備。",
"armorSpecialSpring2018HealerText": "石榴石鎧甲",
- "armorSpecialSpring2018HealerNotes": "讓這耀眼奪目的鎧甲為您的心靈注入治癒之力吧。增加 <%= con %> 點體質。 2018年春季限定版裝備",
+ "armorSpecialSpring2018HealerNotes": "讓這耀眼奪目的鎧甲為您的心靈注入治癒之力吧。增加 <%= con %> 點體質。 2018年春季限定版裝備。",
"armorSpecialSummer2018RogueText": "釣魚者口袋背心",
- "armorSpecialSummer2018RogueNotes": "浮標?盒裝釣鉤?備用釣魚線?開鎖器?煙霧彈?無論您的夏日釣魚之旅需要隨身攜帶什麼,這裡就有一個口袋能夠裝它!增加 <%= per %> 點感知。 2018年夏季限量版裝備",
+ "armorSpecialSummer2018RogueNotes": "浮標?盒裝釣鉤?備用釣魚線?開鎖器?煙霧彈?無論您的夏日釣魚之旅需要隨身攜帶什麼,這裡就有一個口袋能夠裝它!增加 <%= per %> 點感知。 2018年夏季限量版裝備。",
"armorSpecialSummer2018WarriorText": "鬥魚尾鎧甲",
- "armorSpecialSummer2018WarriorNotes": "用您在水中旋轉與飛舞形成的美麗色彩之漩渦迷倒圍觀者吧! 怎麼會有任何敵手敢攻擊這幅美景?增加 <%= con %> 點體質。 2018年夏季限量版裝備",
+ "armorSpecialSummer2018WarriorNotes": "用您在水中旋轉與飛舞形成的美麗色彩之漩渦迷倒圍觀者吧! 怎麼會有任何敵手敢攻擊這幅美景?增加 <%= con %> 點體質。 2018年夏季限量版裝備。",
"armorSpecialSummer2018MageText": "獅子魚鱗鎖鏈鎧甲",
- "armorSpecialSummer2018MageNotes": "惡毒魔法以其隱密而聞名。所以絕對不是指這件鮮艷的鎧甲,因為它傳達給野獸和任務的訊息太明顯了: 你給我注意點! 增加 <%= int %> 點智力。 2018年夏季限量版裝備",
+ "armorSpecialSummer2018MageNotes": "惡毒魔法以其隱密而聞名。所以絕對不是指這件鮮艷的鎧甲,因為它傳達給野獸和任務的訊息太明顯了: 你給我注意點! 增加 <%= int %> 點智力。 2018年夏季限量版裝備。",
"armorSpecialSummer2018HealerText": "人魚帝王長袍",
- "armorSpecialSummer2018HealerNotes": "這件蔚藍色的聖袍能顯露出您能在陸地行走的雙腳……好吧,即使是帝王也不能期望他們是完美的。增加 <%= con %> 點體質。 2018年夏季限量版裝備",
+ "armorSpecialSummer2018HealerNotes": "這件蔚藍色的聖袍能顯露出您能在陸地行走的雙腳……好吧,即使是帝王也不能期望他們是完美的。增加 <%= con %> 點體質。 2018年夏季限量版裝備。",
"armorSpecialFall2018RogueText": "「另我」教士服",
- "armorSpecialFall2018RogueNotes": "在早上看起來很時髦,在晚上卻又非常舒適且具有保護性。增加 <%= per %> 點感知。 2018年秋季限定版裝備",
+ "armorSpecialFall2018RogueNotes": "在早上看起來很時髦,在晚上卻又非常舒適且具有保護性。增加 <%= per %> 點感知。 2018年秋季限定版裝備。",
"armorSpecialFall2018WarriorText": "彌諾陶洛斯板鏈甲",
- "armorSpecialFall2018WarriorNotes": "(Minotaur Platemail) 當您走向冥想迷宮時,快用蹄子敲打舒緩的節奏。增加 <%= con %> 點體質。 2018年秋季限定版裝備",
+ "armorSpecialFall2018WarriorNotes": "當您走向冥想迷宮時,快用蹄子敲打舒緩的節奏。增加 <%= con %> 點體質。 2018年秋季限定版裝備。",
"armorSpecialFall2018MageText": "糖果法師長袍",
- "armorSpecialFall2018MageNotes": "這長袍的布料是由魔法糖果所編織而成的!但是,我們建議您不要嘗試吃它們。增加 <%= int %> 點智力。 2018年秋季限定版裝備",
+ "armorSpecialFall2018MageNotes": "這長袍的布料是由魔法糖果所編織而成的!但是,我們建議您不要嘗試吃它們。增加 <%= int %> 點智力。 2018年秋季限定版裝備。",
"armorSpecialFall2018HealerText": "肉食植物長袍",
- "armorSpecialFall2018HealerNotes": "它是由植物所製成,但這不代表它是素食主義者。壞習慣們都非常討厭太靠近這件長袍。增加 <%= con %> 點體質。 2018年秋季限定版裝備",
+ "armorSpecialFall2018HealerNotes": "它是由植物所製成,但這不代表它是素食主義者。壞習慣們都非常討厭太靠近這件長袍。增加 <%= con %> 點體質。 2018年秋季限定版裝備。",
"armorSpecialWinter2019RogueText": "一品紅聖誕鎧甲",
- "armorSpecialWinter2019RogueNotes": "隨著節慶的到來,到處都可看到綠油油的裝飾,所以沒有人會注意到這裡多出一團灌木叢! 您可以輕易地隱秘進行季節性聚會。增加 <%= per %> 點感知。 2018-2019冬季限定版裝備",
+ "armorSpecialWinter2019RogueNotes": "隨著節慶的到來,到處都可看到綠油油的裝飾,所以沒有人會注意到這裡多出一團灌木叢! 您可以輕易地隱秘進行季節性聚會。增加 <%= per %> 點感知。 2018-2019冬季限定版裝備。",
"armorSpecialWinter2019WarriorText": "酷寒鎧甲",
- "armorSpecialWinter2019WarriorNotes": "在激烈的戰鬥中,這件盔甲將能讓您保持涼爽並準備好贏得勝利。增加 <%= con %> 點體質。 2018-2019冬季限定版裝備",
+ "armorSpecialWinter2019WarriorNotes": "在激烈的戰鬥中,這件盔甲將能讓您保持涼爽並準備好贏得勝利。增加 <%= con %> 點體質。 2018-2019冬季限定版裝備。",
"armorSpecialWinter2019MageText": "火焰靈魂長袍",
- "armorSpecialWinter2019MageNotes": "這件防火的長袍能在任何的閃光及煙火引起火災時保護您! 增加 <%= int %> 點智力。 2018-2019冬季限定版裝備",
+ "armorSpecialWinter2019MageNotes": "這件防火的長袍能在任何的閃光及煙火引起火災時保護您! 增加 <%= int %> 點智力。 2018-2019冬季限定版裝備。",
"armorSpecialWinter2019HealerText": "午夜長袍",
- "armorSpecialWinter2019HealerNotes": "沒有黑暗,就沒有任何光明。 這些深色的長袍將有助於帶來和平與休養,並加速癒合的速度。增加 <%= con %> 點體質。 2018-2019冬季限定版裝備",
+ "armorSpecialWinter2019HealerNotes": "沒有黑暗,就沒有任何光明。 這些深色的長袍將有助於帶來和平與休養,並加速癒合的速度。增加 <%= con %> 點體質。 2018-2019冬季限定版裝備。",
"armorMystery201402Text": "信使長袍",
- "armorMystery201402Notes": "閃閃發光又非常耐用,這件長袍上有許多能攜帶信件的口袋。無屬性加成。 2014年2月訂閱者專屬裝備",
+ "armorMystery201402Notes": "閃閃發光又非常耐用,這件長袍上有許多能攜帶信件的口袋。無屬性加成。 2014年2月訂閱者專屬裝備。",
"armorMystery201403Text": "森林步行者板甲",
- "armorMystery201403Notes": "這件佈滿青苔的木製板甲會隨著您的動作而彎曲。無屬性加成。 2014年3月訂閱者專屬裝備",
+ "armorMystery201403Notes": "這件佈滿青苔的木製板甲會隨著您的動作而彎曲。無屬性加成。 2014年3月訂閱者專屬裝備。",
"armorMystery201405Text": "愛心火焰",
- "armorMystery201405Notes": "當您被火焰纏繞後,沒有任何東西可以傷害您!無屬性加成。 2014年5月訂閱者專屬裝備",
+ "armorMystery201405Notes": "當您被火焰纏繞後,沒有任何東西可以傷害您!無屬性加成。 2014年5月訂閱者專屬裝備。",
"armorMystery201406Text": "章魚長袍",
- "armorMystery201406Notes": "這件滑溜溜的長袍能使他的穿戴者能穿越所有物品,即使是最小的裂縫也能輕鬆通過。無屬性加成。 2014年6月訂閱者專屬裝備",
+ "armorMystery201406Notes": "這件滑溜溜的長袍能使他的穿戴者能穿越所有物品,即使是最小的裂縫也能輕鬆通過。無屬性加成。 2014年6月訂閱者專屬裝備。",
"armorMystery201407Text": "海底探險服裝",
- "armorMystery201407Notes": "被形容為「太厚啦」或是「老實講,這有點過於笨重」之類的話。但這套服裝仍是任何勇敢的海底探險家最好的朋友。無屬性加成。 2014年7月訂閱者專屬裝備",
+ "armorMystery201407Notes": "被形容為「太厚啦」或是「老實講,這有點過於笨重」之類的話。但這套服裝仍是任何勇敢的海底探險家最好的朋友。無屬性加成。 2014年7月訂閱者專屬裝備。",
"armorMystery201408Text": "太陽長袍",
- "armorMystery201408Notes": "這些長袍是由陽光和黃金編織而成。無屬性加成。 2014年8月訂閱者專屬裝備",
+ "armorMystery201408Notes": "這些長袍是由陽光和黃金編織而成。無屬性加成。 2014年8月訂閱者專屬裝備。",
"armorMystery201409Text": "戰鬥者背心",
- "armorMystery201409Notes": "一件被枯葉覆蓋住的背心。可以幫助穿戴者偽裝。無屬性加成。 2014年9月訂閱者專屬裝備",
+ "armorMystery201409Notes": "一件被枯葉覆蓋住的背心。可以幫助穿戴者偽裝。無屬性加成。 2014年9月訂閱者專屬裝備。",
"armorMystery201410Text": "哥布林套裝",
- "armorMystery201410Notes": "粗糙的觸感、黏黏的外表、非常堅硬的外殼!無屬性加成。 2014年10月訂閱者專屬裝備",
+ "armorMystery201410Notes": "粗糙的觸感、黏黏的外表、非常堅硬的外殼!無屬性加成。 2014年10月訂閱者專屬裝備。",
"armorMystery201412Text": "企鵝套裝",
- "armorMystery201412Notes": "您是企鵝!無屬性加成。 2014年12月訂閱者專屬裝備",
+ "armorMystery201412Notes": "您是企鵝!無屬性加成。 2014年12月訂閱者專屬裝備。",
"armorMystery201501Text": "眾星拱月鎧甲",
- "armorMystery201501Notes": "銀河的光芒蘊育在這件鎧甲的金屬塊中,可以增強穿戴者的決心。無屬性加成。 2015年1月訂閱者專屬裝備",
+ "armorMystery201501Notes": "銀河的光芒蘊育在這件鎧甲的金屬塊中,可以增強穿戴者的決心。無屬性加成。 2015年1月訂閱者專屬裝備。",
"armorMystery201503Text": "藍寶石鎧甲",
- "armorMystery201503Notes": "這種藍色的礦物象徵著吉祥、幸福和永恆的生產力。無屬性加成。 2015年3月訂閱者專屬裝備",
+ "armorMystery201503Notes": "這種藍色的礦物象徵著吉祥、幸福和永恆的生產力。無屬性加成。 2015年3月訂閱者專屬裝備。",
"armorMystery201504Text": "忙碌蜜蜂長袍",
- "armorMystery201504Notes": "穿上這件長袍能讓您的生產力像蜜蜂一樣勤快!無屬性加成。 2015年5月訂閱者專屬裝備",
+ "armorMystery201504Notes": "穿上這件長袍能讓您的生產力像蜜蜂一樣勤快!無屬性加成。 2015年5月訂閱者專屬裝備。",
"armorMystery201506Text": "浮潛套裝",
- "armorMystery201506Notes": "穿上這件色澤鮮豔的泳裝在珊瑚礁潛水吧! 無屬性加成。 2015年6月訂閱者專屬裝備",
+ "armorMystery201506Notes": "穿上這件色澤鮮豔的泳裝在珊瑚礁潛水吧! 無屬性加成。 2015年6月訂閱者專屬裝備。",
"armorMystery201508Text": "獵豹服飾",
- "armorMystery201508Notes": "穿上這件毛茸茸的獵豹服飾就能讓您跑得跟閃光一樣快! 咻! 無屬性加成。 2015年8月訂閱者專屬裝備",
+ "armorMystery201508Notes": "穿上這件毛茸茸的獵豹服飾就能讓您跑得跟閃光一樣快! 咻! 無屬性加成。 2015年8月訂閱者專屬裝備。",
"armorMystery201509Text": "狼人服飾",
- "armorMystery201509Notes": "這真的「是」打扮而已,對吧? 無屬性加成。 2015年9月訂閱者專屬裝備",
+ "armorMystery201509Notes": "這真的「是」打扮而已,對吧? 無屬性加成。 2015年9月訂閱者專屬裝備。",
"armorMystery201511Text": "木製鎧甲",
- "armorMystery201511Notes": "考慮到這件鎧甲是由魔法木材直接雕刻而成的,這穿起來還真的是意外地舒適。無屬性加成。 2015年11月訂閱者專屬裝備",
+ "armorMystery201511Notes": "考慮到這件鎧甲是由魔法木材直接雕刻而成的,這穿起來還真的是意外地舒適。無屬性加成。 2015年11月訂閱者專屬裝備。",
"armorMystery201512Text": "冷焰鎧甲",
- "armorMystery201512Notes": "召喚寒冬冷焰! 無屬性加成。 2015年12月訂閱者專屬裝備",
+ "armorMystery201512Notes": "召喚寒冬冷焰! 無屬性加成。 2015年12月訂閱者專屬裝備。",
"armorMystery201603Text": "幸運禮服",
- "armorMystery201603Notes": "這套禮服是由成千上萬個四葉幸運草縫製而成的! 無屬性加成。 2016年3月訂閱者專屬裝備",
+ "armorMystery201603Notes": "這套禮服是由成千上萬個四葉幸運草縫製而成的! 無屬性加成。 2016年3月訂閱者專屬裝備。",
"armorMystery201604Text": "葉片鎧甲",
- "armorMystery201604Notes": "您的身邊噴發著許多雖然微小卻非常駭人的葉片。無屬性加成。 2016年4月訂閱者專屬裝備",
+ "armorMystery201604Notes": "您的身邊噴發著許多雖然微小卻非常駭人的葉片。無屬性加成。 2016年4月訂閱者專屬裝備。",
"armorMystery201605Text": "吟遊詩人行軍制服",
- "armorMystery201605Notes": "不像傳統參加冒險派對的吟遊詩人因到在地牢到處掠奪而聞名,所有參加Habitica遊行樂隊的吟遊詩人皆是因為舉辦盛大的遊行而聞名。無屬性加成。 2016年5月訂閱者專屬裝備",
+ "armorMystery201605Notes": "不像傳統參加冒險派對的吟遊詩人因到在地牢到處掠奪而聞名,所有參加Habitica遊行樂隊的吟遊詩人皆是因為舉辦盛大的遊行而聞名。無屬性加成。 2016年5月訂閱者專屬裝備。",
"armorMystery201606Text": "海豹人燕尾服",
- "armorMystery201606Notes": "(Selkie Tail) 這套禮服閃閃發光,就像海水與河岸激起的泡沫一樣。無屬性加成。 2016年6月訂閱者專屬裝備",
+ "armorMystery201606Notes": "(Selkie Tail) 這套禮服閃閃發光,就像海水與河岸激起的泡沫一樣。無屬性加成。 2016年6月訂閱者專屬裝備。",
"armorMystery201607Text": "海底盜賊鎧甲",
- "armorMystery201607Notes": "快用這套能與海底融合為一的潛行鎧甲吧。無屬性加成。 2016年7月訂閱者專屬裝備",
+ "armorMystery201607Notes": "快用這套能與海底融合為一的潛行鎧甲吧。無屬性加成。 2016年7月訂閱者專屬裝備。",
"armorMystery201609Text": "乳牛鎧甲",
- "armorMystery201609Notes": "穿上這套舒適的鎧甲與牛群一同休憩吧! 無屬性加成。 2016年9月訂閱者專屬裝備",
+ "armorMystery201609Notes": "穿上這套舒適的鎧甲與牛群一同休憩吧! 無屬性加成。 2016年9月訂閱者專屬裝備。",
"armorMystery201610Text": "妖精鎧甲",
- "armorMystery201610Notes": "能讓您像幽靈一樣輕飄飄的神祕鎧甲。無屬性加成。 2016年10月訂閱者專屬裝備",
+ "armorMystery201610Notes": "能讓您像幽靈一樣輕飄飄的神祕鎧甲。無屬性加成。 2016年10月訂閱者專屬裝備。",
"armorMystery201612Text": "胡桃鉗鎧甲",
- "armorMystery201612Notes": "穿上這套盛大慶典禮服,就可以以時髦地方式撥開堅果。但小心千萬不要夾到您的手指頭! 無屬性加成。 2016年12月訂閱者專屬裝備",
+ "armorMystery201612Notes": "穿上這套盛大慶典禮服,就可以以時髦地方式撥開堅果。但小心千萬不要夾到您的手指頭! 無屬性加成。 2016年12月訂閱者專屬裝備。",
"armorMystery201703Text": "一閃一閃亮鎧甲",
- "armorMystery201703Notes": "雖然這件鎧甲的顏色會讓人想起春天的花瓣,但他卻比鋼鐵還堅硬! 無屬性加成。 2017年3月訂閱者專屬裝備",
+ "armorMystery201703Notes": "雖然這件鎧甲的顏色會讓人想起春天的花瓣,但他卻比鋼鐵還堅硬! 無屬性加成。 2017年3月訂閱者專屬裝備。",
"armorMystery201704Text": "童話鎧甲",
- "armorMystery201704Notes": "仙女們用晨露製作了這件鎧甲,可用來捕捉輕晨的第一道曙光的顏色。無屬性加成。 2017年4月訂閱者專屬裝備",
+ "armorMystery201704Notes": "仙女們用晨露製作了這件鎧甲,可用來捕捉輕晨的第一道曙光的顏色。無屬性加成。 2017年4月訂閱者專屬裝備。",
"armorMystery201707Text": "水母法師鎧甲",
- "armorMystery201707Notes": "當您正進行海底任務和冒險時,這件鎧甲能幫助您巧聲無息地融入海洋生物之中。無屬性加成。 2017年7月訂閱者專屬裝備",
+ "armorMystery201707Notes": "當您正進行海底任務和冒險時,這件鎧甲能幫助您巧聲無息地融入海洋生物之中。無屬性加成。 2017年7月訂閱者專屬裝備。",
"armorMystery201710Text": "傲慢惡鬼服飾",
- "armorMystery201710Notes": "粗糙的觸感、閃亮的外表、非常堅硬的外殼! 無屬性加成。 2017年10月訂閱者專屬裝備",
+ "armorMystery201710Notes": "粗糙的觸感、閃亮的外表、非常堅硬的外殼! 無屬性加成。 2017年10月訂閱者專屬裝備。",
"armorMystery201711Text": "飛毯駕駛員服飾",
- "armorMystery201711Notes": "這件舒適的毛衣能讓您穿梭於天空時還能保持溫暖! 無屬性加成。 2017年11月訂閱者專屬裝備",
+ "armorMystery201711Notes": "這件舒適的毛衣能讓您穿梭於天空時還能保持溫暖! 無屬性加成。 2017年11月訂閱者專屬裝備。",
"armorMystery201712Text": "蠟燭法師鎧甲",
- "armorMystery201712Notes": "這件魔法鎧甲照射出的光和熱會能溫暖您的心,但卻不會同時燒傷您! 無屬性加成。 2017年12月訂閱者專屬裝備",
+ "armorMystery201712Notes": "這件魔法鎧甲照射出的光和熱會能溫暖您的心,但卻不會同時燒傷您! 無屬性加成。 2017年12月訂閱者專屬裝備。",
"armorMystery201802Text": "蟲粉鎧甲",
- "armorMystery201802Notes": "這件閃亮亮的鎧甲將反射出您心中的力量,並注入給附近每一位需要鼓勵的Habitica鄉民。無屬性加成。 2018年2月訂閱者專屬裝備",
+ "armorMystery201802Notes": "這件閃亮亮的鎧甲將反射出您心中的力量,並注入給附近每一位需要鼓勵的Habitica鄉民。無屬性加成。 2018年2月訂閱者專屬裝備。",
"armorMystery201806Text": "驚艷琵琶魚燕尾服",
- "armorMystery201806Notes": "這件彎彎曲曲的燕尾服以能夠在深海中照亮前路為特色。無屬性加成。 2018年6月訂閱者專屬裝備",
+ "armorMystery201806Notes": "這件彎彎曲曲的燕尾服以能夠在深海中照亮前路為特色。無屬性加成。 2018年6月訂閱者專屬裝備。",
"armorMystery201807Text": "大海蛇燕尾服",
- "armorMystery201807Notes": "這件強大的燕尾服能驅使您快速漫遊於深海裡! 無屬性加成。 2018年7月訂閱者專屬裝備",
+ "armorMystery201807Notes": "這件強大的燕尾服能驅使您快速漫遊於深海裡! 無屬性加成。 2018年7月訂閱者專屬裝備。",
"armorMystery201808Text": "熔岩巨龍鎧甲",
- "armorMystery201808Notes": "這副鎧甲是以難以捉摸(而且非常燙)的熔岩巨龍身上的蛻皮製作而成。無屬性加成。 2018年8月訂閱者專屬裝備",
+ "armorMystery201808Notes": "這副鎧甲是以難以捉摸(而且非常燙)的熔岩巨龍身上的蛻皮製作而成。無屬性加成。 2018年8月訂閱者專屬裝備。",
"armorMystery201809Text": "秋葉鎧甲",
- "armorMystery201809Notes": "您不僅是一片既微小又令人恐懼的葉片,您也正在炫耀這個季節裡最美麗的顏色。無屬性加成。 2018年9月訂閱者專屬裝備",
+ "armorMystery201809Notes": "您不僅是一片既微小又令人恐懼的葉片,您也正在炫耀這個季節裡最美麗的顏色。無屬性加成。 2018年9月訂閱者專屬裝備。",
"armorMystery201810Text": "黑暗森林長袍",
- "armorMystery201810Notes": "這件長袍穿起來非常溫暖,能抵擋來自幽靈王國傳來的陰森森寒冷氣息。無屬性加成。 2018年10月訂閱者專屬裝備",
+ "armorMystery201810Notes": "這件長袍穿起來非常溫暖,能抵擋來自幽靈王國傳來的陰森森寒冷氣息。無屬性加成。 2018年10月訂閱者專屬裝備。",
"armorMystery301404Text": "蒸汽龐克風套裝",
- "armorMystery301404Notes": "精巧又瀟灑,哇嗚! 無屬性加成。 3015年2月訂閱者專屬裝備",
+ "armorMystery301404Notes": "精巧又瀟灑,哇嗚! 無屬性加成。 3015年2月訂閱者專屬裝備。",
"armorMystery301703Text": "蒸汽龐克風孔雀禮服",
- "armorMystery301703Notes": "這件優雅的禮服極其適合於最奢華的慶典中穿上! 無屬性加成。 3017年3月訂閱者專屬裝備",
+ "armorMystery301703Notes": "這件優雅的禮服極其適合於最奢華的慶典中穿上! 無屬性加成。 3017年3月訂閱者專屬裝備。",
"armorMystery301704Text": "蒸汽龐克風野雉洋裝",
- "armorMystery301704Notes": "這件高雅的服飾最適合在夜晚外出或於白天在工作室裡工作時穿上! 無屬性加成。 3017年4月訂閱者專屬裝備",
+ "armorMystery301704Notes": "這件高雅的服飾最適合在夜晚外出或於白天在工作室裡工作時穿上! 無屬性加成。 3017年4月訂閱者專屬裝備。",
"armorArmoireLunarArmorText": "治癒之月鎧甲",
- "armorArmoireLunarArmorNotes": "月光會使您變得更堅強與聰明。增加 <%= str %> 點力量和 <%= int %> 點智力。 來自神祕寶箱: 治癒之月套裝(2/3)",
+ "armorArmoireLunarArmorNotes": "月光會使您變得更堅強與聰明。增加 <%= str %> 點力量和 <%= int %> 點智力。來自神秘寶箱: 治癒之月套裝(2/3)。",
"armorArmoireGladiatorArmorText": "角鬥士鎧甲",
- "armorArmoireGladiatorArmorNotes": "想成為一名夠格的角鬥士,您不僅要夠狡猾⋯⋯還要強到破表。增加 <%= per %> 點感知和 <%= str %> 點力量。 來自神祕寶箱: 角鬥士套裝(2/3)",
+ "armorArmoireGladiatorArmorNotes": "想成為一名夠格的角鬥士,您不僅要夠狡猾⋯⋯還要強到破表。增加 <%= per %> 點感知和 <%= str %> 點力量。來自神秘寶箱: 角鬥士套裝(2/3)。",
"armorArmoireRancherRobesText": "牛仔長袍",
- "armorArmoireRancherRobesNotes": "穿著這件奇妙的牛仔長袍,圈住您的坐騎,套上您的寵物!增加 <%= str %> 點力量、 <%= per %> 點感知和 <%= int %> 點智力。 來自神祕寶箱: 牛仔套裝(2/3)",
+ "armorArmoireRancherRobesNotes": "穿著這件奇妙的牛仔長袍,圈住您的坐騎,套上您的寵物!增加 <%= str %> 點力量、 <%= per %> 點感知和 <%= int %> 點智力。來自神秘寶箱: 牛仔套裝(2/3)。",
"armorArmoireGoldenTogaText": "黃金托加長袍",
- "armorArmoireGoldenTogaNotes": "這件閃閃發光的托加長袍只有真英雄才夠格穿戴。增加力量、體質各 <%= attrs %> 點。 來自神祕寶箱: 黃金托加長袍套裝(1/3)",
+ "armorArmoireGoldenTogaNotes": "這件閃閃發光的托加長袍只有真英雄才夠格穿戴。增加力量、體質各 <%= attrs %> 點。來自神秘寶箱: 黃金托加長袍套裝(1/3)。",
"armorArmoireHornedIronArmorText": "鐵角鎧甲",
- "armorArmoireHornedIronArmorNotes": "純鋼打造,無懈可擊!增加 <%= con %> 點體質和 <%= per %> 點感知。 來自神祕寶箱: 鐵角套裝(2/3)",
+ "armorArmoireHornedIronArmorNotes": "純鋼打造,無懈可擊!增加 <%= con %> 點體質和 <%= per %> 點感知。來自神秘寶箱: 鐵角套裝(2/3)。",
"armorArmoirePlagueDoctorOvercoatText": "瘟疫醫師大衣",
- "armorArmoirePlagueDoctorOvercoatNotes": "怠惰瘟疫主治醫生專用的正式大衣。增加 <%= int %> 點智力、 <%= str %> 點力量和 <%= con %> 點體質。 來自神祕寶箱: 瘟疫醫師套裝(3/3)",
+ "armorArmoirePlagueDoctorOvercoatNotes": "怠惰瘟疫主治醫生專用的正式大衣。增加 <%= int %> 點智力、 <%= str %> 點力量和 <%= con %> 點體質。來自神秘寶箱: 瘟疫醫師套裝(3/3)。",
"armorArmoireShepherdRobesText": "牧羊人長袍",
- "armorArmoireShepherdRobesNotes": "布料材質涼爽、透氣,非常適合在沙漠中的大熱天放牧獅鷲。增加力量、感知各 <%= attrs %> 點。 來自神秘寶箱: 牧羊人套裝(2/3)",
+ "armorArmoireShepherdRobesNotes": "布料材質涼爽、透氣,非常適合在沙漠中的大熱天放牧獅鷲。增加力量、感知各 <%= attrs %> 點。 來自神秘寶箱: 牧羊人套裝(2/3)。",
"armorArmoireRoyalRobesText": "皇家長袍",
- "armorArmoireRoyalRobesNotes": "偉大的統治者,吾王萬歲!增加體質、智力、感知各 <%= attrs %> 點。 來自神秘寶箱: 皇家套裝(3/3)",
+ "armorArmoireRoyalRobesNotes": "偉大的統治者,吾王萬歲!增加體質、智力、感知各 <%= attrs %> 點。 來自神秘寶箱: 皇家套裝(3/3)。",
"armorArmoireCrystalCrescentRobesText": "玄月水晶長袍",
- "armorArmoireCrystalCrescentRobesNotes": "這件魔法長袍會在夜裡發出淡淡冷光。增加體質、感知各 <%= attrs %> 點。 來自神秘寶箱: 玄月水晶套裝 (2/3)",
+ "armorArmoireCrystalCrescentRobesNotes": "這件魔法長袍會在夜裡發出淡淡冷光。增加體質、感知各 <%= attrs %> 點。 來自神秘寶箱: 玄月水晶套裝 (2/3)。",
"armorArmoireDragonTamerArmorText": "馴龍師鎧甲",
- "armorArmoireDragonTamerArmorNotes": "這件堅硬的鎧甲可以抵擋熊熊烈火。增加 <%= con %> 點體質。 來自神祕寶箱: 馴龍師套裝(3/3)",
+ "armorArmoireDragonTamerArmorNotes": "這件堅硬的鎧甲可以抵擋熊熊烈火。增加 <%= con %> 點體質。來自神秘寶箱: 馴龍師套裝(3/3)。",
"armorArmoireBarristerRobesText": "大律師長袍",
- "armorArmoireBarristerRobesNotes": "嚴肅! 莊嚴! 增加 <%= con %> 點體質。 來自神祕寶箱: 大律師套裝(2/3)",
+ "armorArmoireBarristerRobesNotes": "嚴肅! 莊嚴! 增加 <%= con %> 點體質。來自神秘寶箱: 大律師套裝(2/3)。",
"armorArmoireJesterCostumeText": "小丑服飾",
- "armorArmoireJesterCostumeNotes": "噠拉噠拉! 己管這件衣服看起來很呵呵,但您絕對不是傻子。增加 <%= int %> 點智力。 來自神祕寶箱: 小丑套裝(2/3)",
+ "armorArmoireJesterCostumeNotes": "噠拉噠拉! 己管這件衣服看起來很呵呵,但您絕對不是傻子。增加 <%= int %> 點智力。 來自神秘寶箱: 小丑套裝(2/3)。",
"armorArmoireMinerOverallsText": "礦工工作服",
- "armorArmoireMinerOverallsNotes": "雖然它看起來很破爛,但因為被附魔過所以就算在塵土飛揚的環境也可以一塵不染。 增加 <%= con %> 點體質。 來自神祕寶箱: 挖礦大師套裝(2/3)",
+ "armorArmoireMinerOverallsNotes": "雖然它看起來很破爛,但因為被附魔過所以就算在塵土飛揚的環境也可以一塵不染。 增加 <%= con %> 點體質。 來自神秘寶箱: 挖礦大師套裝(2/3)。",
"armorArmoireBasicArcherArmorText": "基礎射手鎧甲",
- "armorArmoireBasicArcherArmorNotes": "這件能夠偽裝的背心能使您穿越森林時不被發現。增加 <%= per %> 點感知。 來自神祕寶箱: 基礎射手套裝(2/3)",
+ "armorArmoireBasicArcherArmorNotes": "這件能夠偽裝的背心能使您穿越森林時不被發現。增加 <%= per %> 點感知。 來自神秘寶箱: 基礎射手套裝(2/3)。",
"armorArmoireGraduateRobeText": "畢業生長袍",
- "armorArmoireGraduateRobeNotes": "恭喜恭喜! 這件沉重的長袍能承載您累積下來的大量知識。增加 <%= int %> 點智力。 來自神祕寶箱: 畢業生套裝(2/3)",
+ "armorArmoireGraduateRobeNotes": "恭喜恭喜! 這件沉重的長袍能承載您累積下來的大量知識。增加 <%= int %> 點智力。 來自神秘寶箱: 畢業生套裝(2/3)。",
"armorArmoireStripedSwimsuitText": "紅條泳裝",
- "armorArmoireStripedSwimsuitNotes": "有甚麼能比在海灘上與海洋怪獸戰鬥還有趣呢? 增加 <%= con %> 點體質。 來自神祕寶箱: 海濱套裝(2/3)",
+ "armorArmoireStripedSwimsuitNotes": "有甚麼能比在海灘上與海洋怪獸戰鬥還有趣呢? 增加 <%= con %> 點體質。 來自神秘寶箱: 海濱套裝(2/3)。",
"armorArmoireCannoneerRagsText": "砲手破衣",
- "armorArmoireCannoneerRagsNotes": "這件破舊的衣服實際上比表面上還結實許多。增加 <%= con %> 點體質。 來自神祕寶箱: 砲手套裝(2/3)",
+ "armorArmoireCannoneerRagsNotes": "這件破舊的衣服實際上比表面上還結實許多。增加 <%= con %> 點體質。 來自神秘寶箱: 砲手套裝(2/3)。",
"armorArmoireFalconerArmorText": "獵鷹者鎧甲",
- "armorArmoireFalconerArmorNotes": "用這件堅硬的鎧甲遠離鷹爪的攻擊! 增加 <%= con %> 點體質。 來自神祕寶箱: 獵鷹者套裝(1/3)",
+ "armorArmoireFalconerArmorNotes": "用這件堅硬的鎧甲遠離鷹爪的攻擊! 增加 <%= con %> 點體質。 來自神秘寶箱: 獵鷹者套裝(1/3)。",
"armorArmoireVermilionArcherArmorText": "朱紅射手鎧甲",
- "armorArmoireVermilionArcherArmorNotes": "這件鎧甲是用特別的附魔朱紅金屬製成,他將帶給您最少的拘束、最大化的保護、和天賦! 增加 <%= per %> 點感知。 來自神祕寶箱: 朱紅射手套裝(2/3)",
+ "armorArmoireVermilionArcherArmorNotes": "這件鎧甲是用特別的附魔朱紅金屬製成,他將帶給您最少的拘束、最大化的保護、和天賦! 增加 <%= per %> 點感知。 來自神秘寶箱: 朱紅射手套裝(2/3)。",
"armorArmoireOgreArmorText": "食人魔鎧甲",
- "armorArmoireOgreArmorNotes": "這件鎧甲效仿了食人魔堅硬的皮膚,但它的內襯卻是用羊毛製成的,可以任人穿得更為舒適! 增加 <%= con %> 點體質。 來自神祕寶箱: 食人魔套裝(3/3)",
+ "armorArmoireOgreArmorNotes": "這件鎧甲效仿了食人魔堅硬的皮膚,但它的內襯卻是用羊毛製成的,可以任人穿得更為舒適! 增加 <%= con %> 點體質。 來自神秘寶箱: 食人魔套裝(3/3)。",
"armorArmoireIronBlueArcherArmorText": "弓箭手水藍鐵鎧甲",
- "armorArmoireIronBlueArcherArmorNotes": "這件鎧甲能保護您在戰場中免受飛來的弓箭所帶來的傷害! 增加 <%= str %> 點力量。 來自神祕寶箱: 鋼鐵弓箭手套裝(2/3)",
+ "armorArmoireIronBlueArcherArmorNotes": "這件鎧甲能保護您在戰場中免受飛來的弓箭所帶來的傷害! 增加 <%= str %> 點力量。 來自神秘寶箱: 鋼鐵弓箭手套裝(2/3)。",
"armorArmoireRedPartyDressText": "赤紅派對洋裝",
- "armorArmoireRedPartyDressNotes": "您很強壯、堅強、聰明、又時尚! 增加力量、體質、智力各 <%= attrs %> 點。 來自神祕寶箱: 赤紅蝴蝶結套裝(2/2)",
+ "armorArmoireRedPartyDressNotes": "您很強壯、堅強、聰明、又時尚! 增加力量、體質、智力各 <%= attrs %> 點。 來自神秘寶箱: 赤紅蝴蝶結套裝(2/2)。",
"armorArmoireWoodElfArmorText": "木精靈皮甲",
- "armorArmoireWoodElfArmorNotes": "這件皮甲上的樹皮和樹葉能讓您在森林中提供持久的偽裝。增加 <%= per %> 點感知。 來自神祕寶箱: 森林妖精套裝(2/3)",
+ "armorArmoireWoodElfArmorNotes": "這件皮甲上的樹皮和樹葉能讓您在森林中提供持久的偽裝。增加 <%= per %> 點感知。 來自神秘寶箱: 森林妖精套裝(2/3)。",
"armorArmoireRamFleeceRobesText": "牡羊毛長袍",
- "armorArmoireRamFleeceRobesNotes": "這件長袍能讓您在最猛烈的暴風雪中保持溫暖不失溫。增加 <%= con %> 點體質和 <%= str %> 點力量。 來自神祕寶箱: 牡羊野蠻人套裝(2/3)",
+ "armorArmoireRamFleeceRobesNotes": "這件長袍能讓您在最猛烈的暴風雪中保持溫暖不失溫。增加 <%= con %> 點體質和 <%= str %> 點力量。 來自神秘寶箱: 牡羊野蠻人套裝(2/3)。",
"armorArmoireGownOfHeartsText": "愛心禮服",
- "armorArmoireGownOfHeartsNotes": "這套禮服處處皆有飾邊! 帶這還不是全部,他還會增加您內心的堅韌。增加 <%= con %> 點體質。 來自神祕寶箱: 心皇后套裝(2/3)",
+ "armorArmoireGownOfHeartsNotes": "這套禮服處處皆有飾邊! 帶這還不是全部,他還會增加您內心的堅韌。增加 <%= con %> 點體質。 來自神秘寶箱: 心皇后套裝(2/3)。",
"armorArmoireMushroomDruidArmorText": "德魯伊蘑菇鎧甲",
- "armorArmoireMushroomDruidArmorNotes": "Mushroom Druid Armor。 這套長著蘑菇的棕色木鎧甲能夠讓您聽見各種森林中生物的低語聲。增加 <%= con %> 點體質和 <%= per %> 點感知。 來自神祕寶箱: 德魯伊蘑菇套裝(2/3)",
+ "armorArmoireMushroomDruidArmorNotes": "Mushroom Druid Armor。 這套長著蘑菇的棕色木鎧甲能夠讓您聽見各種森林中生物的低語聲。增加 <%= con %> 點體質和 <%= per %> 點感知。 來自神秘寶箱: 德魯伊蘑菇套裝(2/3)。",
"armorArmoireGreenFestivalYukataText": "慶典草綠浴衣",
- "armorArmoireGreenFestivalYukataNotes": "這件輕盈的浴衣能讓您爽快地享受任何節日慶典。增加體質、感知各 <%= attrs %> 點。 來自神祕寶箱: 節日慶典套裝(1/3)",
+ "armorArmoireGreenFestivalYukataNotes": "這件輕盈的浴衣能讓您爽快地享受任何節日慶典。增加體質、感知各 <%= attrs %> 點。 來自神秘寶箱: 節日慶典套裝(1/3)。",
"armorArmoireMerchantTunicText": "束腰外衣",
- "armorArmoireMerchantTunicNotes": "這件束腰外衣的大袖子最適合將您賺到的錢塞在裡面! 增加 <%= per %> 點感知。 來自神祕寶箱: 商業大亨套裝(2/3)",
+ "armorArmoireMerchantTunicNotes": "這件束腰外衣的大袖子最適合將您賺到的錢塞在裡面! 增加 <%= per %> 點感知。 來自神秘寶箱: 商業大亨套裝(2/3)。",
"armorArmoireVikingTunicText": "維京海盜束腰大衣",
- "armorArmoireVikingTunicNotes": "這件溫暖的羊毛上衣藏有一件披風,即使被海洋中的強風吹拂,也會覺得格外地舒適。增加 <%= con %> 點體質和 <%= str %> 點力量。 來自神祕寶箱: 維京海盜套裝(1/3)",
+ "armorArmoireVikingTunicNotes": "這件溫暖的羊毛上衣藏有一件披風,即使被海洋中的強風吹拂,也會覺得格外地舒適。增加 <%= con %> 點體質和 <%= str %> 點力量。 來自神秘寶箱: 維京海盜套裝(1/3)。",
"armorArmoireSwanDancerTutuText": "天鵝湖芭蕾舞裙",
- "armorArmoireSwanDancerTutuNotes": "當您穿著這件華麗的芭蕾舞裙旋轉揮舞時,您也將會與風一同扶搖直上飛到九霄雲外! 增加智力、力量各 <%= attrs %> 點。 來自神祕寶箱: 天鵝湖舞者套裝(2/3)",
+ "armorArmoireSwanDancerTutuNotes": "當您穿著這件華麗的芭蕾舞裙旋轉揮舞時,您也將會與風一同扶搖直上飛到九霄雲外! 增加智力、力量各 <%= attrs %> 點。 來自神秘寶箱: 天鵝湖舞者套裝(2/3)。",
"armorArmoireAntiProcrastinationArmorText": "反怠惰鎧甲",
- "armorArmoireAntiProcrastinationArmorNotes": "浸泡於古老的增長效率魔法之下,這件鐵製鎧甲能帶給您額外的力量來對抗您的任務。增加 <%= str %> 點力量。 來自神祕寶箱: 反怠惰套裝(2/3)",
+ "armorArmoireAntiProcrastinationArmorNotes": "浸泡於古老的增長效率魔法之下,這件鐵製鎧甲能帶給您額外的力量來對抗您的任務。增加 <%= str %> 點力量。 來自神秘寶箱: 反怠惰套裝(2/3)。",
"armorArmoireYellowPartyDressText": "金黃派對洋裝",
- "armorArmoireYellowPartyDressNotes": "您很敏銳、堅強、聰明又時尚! 增加感知、力量、智力各 <%= attrs %> 點。 來自神祕寶箱: 金黃蝴蝶結套裝(2/2)",
+ "armorArmoireYellowPartyDressNotes": "您很敏銳、堅強、聰明又時尚! 增加感知、力量、智力各 <%= attrs %> 點。 來自神秘寶箱: 金黃蝴蝶結套裝(2/2)。",
"armorArmoireFarrierOutfitText": "蹄鐵工服飾",
- "armorArmoireFarrierOutfitNotes": "這件結實的工作服能讓您忍受處於最骯髒的馬廄。增加智力、感知、體質各 <%= attrs %> 點。 來自神祕寶箱: 蹄鐵工套裝(2/3)",
+ "armorArmoireFarrierOutfitNotes": "這件結實的工作服能讓您忍受處於最骯髒的馬廄。增加智力、感知、體質各 <%= attrs %> 點。 來自神秘寶箱: 蹄鐵工套裝(2/3)。",
"armorArmoireCandlestickMakerOutfitText": "蠟燭台製作師服飾",
- "armorArmoireCandlestickMakerOutfitNotes": "這件結實的衣服可以讓您在製作蠟燭的同時不被高溫的蠟所燙傷。增加 <%= con %> 點體質。 來自神祕寶箱: 蠟燭台製作師套裝(1/3)",
+ "armorArmoireCandlestickMakerOutfitNotes": "這件結實的衣服可以讓您在製作蠟燭的同時不被高溫的蠟所燙傷。增加 <%= con %> 點體質。 來自神秘寶箱: 蠟燭台製作師套裝(1/3)。",
"armorArmoireWovenRobesText": "梭織長袍",
- "armorArmoireWovenRobesNotes": "穿上這件多彩的長袍,驕傲地秀一下您的編織作品吧! 增加 <%= con %> 點體質和 <%= int %> 點智力。 來自神祕寶箱: 織布工套裝(1/3)",
+ "armorArmoireWovenRobesNotes": "穿上這件多彩的長袍,驕傲地秀一下您的編織作品吧! 增加 <%= con %> 點體質和 <%= int %> 點智力。 來自神秘寶箱: 織布工套裝(1/3)。",
"armorArmoireLamplightersGreatcoatText": "點燈伕長大衣",
- "armorArmoireLamplightersGreatcoatNotes": "這件厚重的羊毛大衣能抵抗最嚴寒的冬夜! 增加 <%= per %> 點感知。 來自神秘寶箱: 點燈伕套裝(2/4)",
+ "armorArmoireLamplightersGreatcoatNotes": "這件厚重的羊毛大衣能抵抗最嚴寒的冬夜! 增加 <%= per %> 點感知。 來自神秘寶箱: 點燈伕套裝(2/4)。",
"armorArmoireCoachDriverLiveryText": "馬車伕制服",
- "armorArmoireCoachDriverLiveryNotes": "這件厚重的長大衣能讓您在駕車途中免受天氣的干擾。此外,它還看起來非常時髦亮麗! 增加 <%= str %> 點力量。 來自神秘寶箱: 馬車伕套裝(1/3)",
+ "armorArmoireCoachDriverLiveryNotes": "這件厚重的長大衣能讓您在駕車途中免受天氣的干擾。此外,它還看起來非常時髦亮麗! 增加 <%= str %> 點力量。 來自神秘寶箱: 馬車伕套裝(1/3)。",
"armorArmoireRobeOfDiamondsText": "鑲鑽長袍",
- "armorArmoireRobeOfDiamondsNotes": "這件皇家長袍不僅讓您看起很高尚,還能讓您看見其他人的典雅。增加 <%= per %> 點感知。 來自神秘寶箱: 鑽石王者套裝(1/4)",
+ "armorArmoireRobeOfDiamondsNotes": "這件皇家長袍不僅讓您看起很高尚,還能讓您看見其他人的典雅。增加 <%= per %> 點感知。 來自神秘寶箱: 鑽石王者套裝(1/4)。",
"armorArmoireFlutteryFrockText": "翩翩飛舞連衣裙",
- "armorArmoireFlutteryFrockNotes": "這件輕柔通風的長裙有寬大的裙襬,蝴蝶們可能會誤以為這是巨大的花朵! 增加體質、感知、力量各 <%= attrs %> 點。 來自神秘寶箱: 飛舞連身裙套裝(1/4)",
+ "armorArmoireFlutteryFrockNotes": "這件輕柔通風的長裙有寬大的裙襬,蝴蝶們可能會誤以為這是巨大的花朵! 增加體質、感知、力量各 <%= attrs %> 點。 來自神秘寶箱: 飛舞連身裙套裝(1/4)。",
"armorArmoireCobblersCoverallsText": "鞋匠工作服",
- "armorArmoireCobblersCoverallsNotes": "這件結實的連體工作服上有很多口袋,可以裝工具、皮革廢料和其他有用的東西! 增加感知、力量各 <%= attrs %> 點。 來自神秘寶箱: 鞋匠套裝(1/3)",
+ "armorArmoireCobblersCoverallsNotes": "這件結實的連體工作服上有很多口袋,可以裝工具、皮革廢料和其他有用的東西! 增加感知、力量各 <%= attrs %> 點。 來自神秘寶箱: 鞋匠套裝(1/3)。",
"armorArmoireGlassblowersCoverallsText": "玻璃吹製工工作服",
- "armorArmoireGlassblowersCoverallsNotes": "當您在用融化的熱玻璃製作偉大巨作時,這件工作服將能妥善地保護您。增加 <%= con %> 點體質。 來自神秘寶箱: 玻璃吹製工套裝(2/4)",
+ "armorArmoireGlassblowersCoverallsNotes": "當您在用融化的熱玻璃製作偉大巨作時,這件工作服將能妥善地保護您。增加 <%= con %> 點體質。 來自神秘寶箱: 玻璃吹製工套裝(2/4)。",
"armorArmoireBluePartyDressText": "水藍派對洋裝",
- "armorArmoireBluePartyDressNotes": "您很靈敏、堅韌、聰明又時尚! 增加感知、力量、體質各 <%= attrs %> 點。 來自神祕寶箱: 水藍蝴蝶結套裝(2/2)",
+ "armorArmoireBluePartyDressNotes": "您很靈敏、堅韌、聰明又時尚! 增加感知、力量、體質各 <%= attrs %> 點。 來自神秘寶箱: 水藍蝴蝶結套裝(2/2)。",
"armorArmoirePiraticalPrincessGownText": "海盜公主禮服",
- "armorArmoirePiraticalPrincessGownNotes": "這件高檔的禮服有很多口袋能裝許多武器和您的戰利品! 增加 <%= per %> 點感知。 來自神秘寶箱: 海盜公主套裝(2/4)",
+ "armorArmoirePiraticalPrincessGownNotes": "這件高檔的禮服有很多口袋能裝許多武器和您的戰利品! 增加 <%= per %> 點感知。 來自神秘寶箱: 海盜公主套裝(2/4)。",
"armorArmoireJeweledArcherArmorText": "射手寶石鎧甲",
- "armorArmoireJeweledArcherArmorNotes": "這件精心打造的鎧甲能讓您免於受到飛彈或是讓人誤入歧途的深紅色的每日任務所威脅! 增加 <%= con %> 點體質。 來自神祕寶箱: 射手寶石套裝(2/3)",
+ "armorArmoireJeweledArcherArmorNotes": "這件精心打造的鎧甲能讓您免於受到飛彈或是讓人誤入歧途的深紅色的每日任務所威脅! 增加 <%= con %> 點體質。 來自神秘寶箱: 射手寶石套裝(2/3)。",
"armorArmoireCoverallsOfBookbindingText": "圖書裝訂工工作服",
- "armorArmoireCoverallsOfBookbindingNotes": "您需要的所有工具都裝在這件工作服的口袋裡。護目鏡、零錢、金戒指... 樣樣齊全。增加 <%= con %> 點體質和 <%= per %> 點感知。 來自神秘寶箱: 圖書裝訂工套裝(2/4)",
+ "armorArmoireCoverallsOfBookbindingNotes": "您需要的所有工具都裝在這件工作服的口袋裡。護目鏡、零錢、金戒指... 樣樣齊全。增加 <%= con %> 點體質和 <%= per %> 點感知。 來自神秘寶箱: 圖書裝訂工套裝(2/4)。",
"armorArmoireRobeOfSpadesText": "黑桃長袍",
- "armorArmoireRobeOfSpadesNotes": "這件高貴的長袍藏有能容納所有寶藏或武器的隱藏口袋 - 一切由您決定! 增加 <%= str %> 點力量。 來自神祕寶箱: 黑桃長矛套裝(2/3)",
+ "armorArmoireRobeOfSpadesNotes": "這件高貴的長袍藏有能容納所有寶藏或武器的隱藏口袋 - 一切由您決定! 增加 <%= str %> 點力量。 來自神秘寶箱: 黑桃長矛套裝(2/3)。",
"armorArmoireSoftBlueSuitText": "柔軟藍睡衣",
- "armorArmoireSoftBlueSuitNotes": "藍色是一個能使人平靜的顏色。太過於平靜到有人甚至穿著這件柔軟的服裝去睡覺。zZz。增加 <%= int %> 點智力和 <%= per %> 點感知。 來自神祕寶箱: 淺藍睡衣套裝(2/3)",
+ "armorArmoireSoftBlueSuitNotes": "藍色是一個能使人平靜的顏色。太過於平靜到有人甚至穿著這件柔軟的服裝去睡覺。zZz。增加 <%= int %> 點智力和 <%= per %> 點感知。 來自神秘寶箱: 淺藍睡衣套裝(2/3)。",
"armorArmoireSoftGreenSuitText": "柔軟綠睡衣",
- "armorArmoireSoftGreenSuitNotes": "綠色是最能讓人感到舒爽的顏色! 最適合用來疲憊的雙眼放鬆下... 嗯,甚至是小睡一下... 增加體質、智力各 <%= attrs %> 點。 來自神祕寶箱: 淺綠睡衣套裝(2/3)",
+ "armorArmoireSoftGreenSuitNotes": "綠色是最能讓人感到舒爽的顏色! 最適合用來疲憊的雙眼放鬆下... 嗯,甚至是小睡一下... 增加體質、智力各 <%= attrs %> 點。 來自神秘寶箱: 淺綠睡衣套裝(2/3)。",
"armorArmoireSoftRedSuitText": "柔軟紅睡衣",
- "armorArmoireSoftRedSuitNotes": "紅色是一個能讓人精力充沛的顏色。如果您一大早就必須起床,這件睡衣正是您的最佳選擇... 增加智力 <%= int %> 點和力量 <%= str %> 點。 來自神祕寶箱: 淺紅睡衣套裝(2/3)",
+ "armorArmoireSoftRedSuitNotes": "紅色是一個能讓人精力充沛的顏色。如果您一大早就必須起床,這件睡衣正是您的最佳選擇... 增加智力 <%= int %> 點和力量 <%= str %> 點。 來自神秘寶箱: 淺紅睡衣套裝(2/3)。",
"armorArmoireScribesRobeText": "抄寫員長袍",
- "armorArmoireScribesRobeNotes": "這件天鵝絨般柔軟的長袍是由富含靈感和動力的魔法編織而成的。增加感知、智力各 <%= attrs %> 點。 來自神祕寶箱: 抄寫員套裝(1/3)",
+ "armorArmoireScribesRobeNotes": "這件天鵝絨般柔軟的長袍是由富含靈感和動力的魔法編織而成的。增加感知、智力各 <%= attrs %> 點。 來自神秘寶箱: 抄寫員套裝(1/3)。",
"headgear": "頭盔",
"headgearCapitalized": "頭盔",
"headBase0Text": "沒有頭盔",
- "headBase0Notes": "沒有頭盔",
+ "headBase0Notes": "沒有頭盔。",
"headWarrior1Text": "皮革頭盔",
"headWarrior1Notes": "耐用的獸皮頭盔。增加 <%= str %> 點力量。",
"headWarrior2Text": "鎖鏈頭罩",
@@ -903,371 +903,371 @@
"headSpecialYetiText": "雪怪馴化師頭盔",
"headSpecialYetiNotes": "一頂可愛又可怕的帽子。提高<%= str %>點力量。2013-2014冬季限量版裝備。",
"headSpecialSkiText": "滑雪刺客頭盔",
- "headSpecialSkiNotes": "為穿戴者的身份保密……也為穿戴者的臉部保暖。增加 <%= per %> 點感知。 2013-2014冬季限定版裝備",
+ "headSpecialSkiNotes": "為穿戴者的身份保密……也為穿戴者的臉部保暖。增加 <%= per %> 點感知。 2013-2014冬季限定版裝備。",
"headSpecialCandycaneText": "糖果手杖帽子",
- "headSpecialCandycaneNotes": "這是世界上最美味的帽子,並以來無影去無踪聞名於世。增加 <%= per %> 點感知。 2013-2014冬季限定版裝備",
+ "headSpecialCandycaneNotes": "這是世界上最美味的帽子,並以來無影去無踪聞名於世。增加 <%= per %> 點感知。 2013-2014冬季限定版裝備。",
"headSpecialSnowflakeText": "雪花皇冠",
- "headSpecialSnowflakeNotes": "戴上這頂皇冠的人寒氣不侵。增加 <%= int %> 點智力。 2013-2014冬季限定版裝備",
+ "headSpecialSnowflakeNotes": "戴上這頂皇冠的人寒氣不侵。增加 <%= int %> 點智力。 2013-2014冬季限定版裝備。",
"headSpecialSpringRogueText": "隱形貓面罩",
- "headSpecialSpringRogueNotes": "永遠不會有人猜到您是一位身手矯健的飛賊! 增加 <%= per %> 感知。 2014年春季限定版裝備",
+ "headSpecialSpringRogueNotes": "永遠不會有人猜到您是一位身手矯健的飛賊! 增加 <%= per %> 感知。 2014年春季限定版裝備。",
"headSpecialSpringWarriorText": "三葉草鋼頭盔",
- "headSpecialSpringWarriorNotes": "這頂由紅菽草焊接而成的頭盔可以抵擋最強大的打擊。 增加 <%= str %> 點力量。 2014年春季限定版裝備",
+ "headSpecialSpringWarriorNotes": "這頂由紅菽草焊接而成的頭盔可以抵擋最強大的打擊。 增加 <%= str %> 點力量。 2014年春季限定版裝備。",
"headSpecialSpringMageText": "瑞士乳酪帽子",
- "headSpecialSpringMageNotes": "這頂帽子蘊藏著強大的魔法!請不要隨意啃噬它。 增加 <%= per %> 點感知。 2014年春季限定版裝備",
+ "headSpecialSpringMageNotes": "這頂帽子蘊藏著強大的魔法!請不要隨意啃噬它。 增加 <%= per %> 點感知。 2014年春季限定版裝備。",
"headSpecialSpringHealerText": "友誼皇冠",
- "headSpecialSpringHealerNotes": "這頂皇冠象徵著忠誠與友誼。狗狗終究還是冒險者最好的朋友! 增加 <%= int %> 點智力。 2014年春季限定版裝備",
+ "headSpecialSpringHealerNotes": "這頂皇冠象徵著忠誠與友誼。狗狗終究還是冒險者最好的朋友! 增加 <%= int %> 點智力。 2014年春季限定版裝備。",
"headSpecialSummerRogueText": "海盜帽子",
- "headSpecialSummerRogueNotes": "只有最有效率的海盜能佩戴這頂好帽子。 增加 <%= per %> 點感知。 2014年夏季限定版裝備",
+ "headSpecialSummerRogueNotes": "只有最有效率的海盜能佩戴這頂好帽子。 增加 <%= per %> 點感知。 2014年夏季限定版裝備。",
"headSpecialSummerWarriorText": "流氓頭巾",
- "headSpecialSummerWarriorNotes": "這塊柔軟、充滿鹹味的布能讓穿戴者充滿力量。 增加 <%= str %> 點力量。 2014年夏季限定版裝備",
+ "headSpecialSummerWarriorNotes": "這塊柔軟、充滿鹹味的布能讓穿戴者充滿力量。 增加 <%= str %> 點力量。 2014年夏季限定版裝備。",
"headSpecialSummerMageText": "海帶巫師帽",
- "headSpecialSummerMageNotes": "有什麼能比一頂被海帶包裹住的帽子還更神奇呢?增加 <%= per %> 點感知。 2014年夏季限定版裝備",
+ "headSpecialSummerMageNotes": "有什麼能比一頂被海帶包裹住的帽子還更神奇呢?增加 <%= per %> 點感知。 2014年夏季限定版裝備。",
"headSpecialSummerHealerText": "珊瑚皇冠",
- "headSpecialSummerHealerNotes": "能使穿戴者修復受損的暗礁。增加 <%= int %> 點智力。 2014年夏季限定版裝備",
+ "headSpecialSummerHealerNotes": "能使穿戴者修復受損的暗礁。增加 <%= int %> 點智力。 2014年夏季限定版裝備。",
"headSpecialFallRogueText": "血紅頭罩",
- "headSpecialFallRogueNotes": "噬血殺人魔的身份總是需要隱藏起來不被發現。 增加 <%= per %> 點感知。 2014年秋季限定版裝備",
+ "headSpecialFallRogueNotes": "噬血殺人魔的身份總是需要隱藏起來不被發現。 增加 <%= per %> 點感知。 2014年秋季限定版裝備。",
"headSpecialFallWarriorText": "科學妖怪頭皮",
- "headSpecialFallWarriorNotes": "快將這頂頭盔移植到您的頭上吧!它只被「稍微」用過。增加 <%= str %> 點力量。 2014年秋季限定版裝備",
+ "headSpecialFallWarriorNotes": "快將這頂頭盔移植到您的頭上吧!它只被「稍微」用過。增加 <%= str %> 點力量。 2014年秋季限定版裝備。",
"headSpecialFallMageText": "尖頂帽",
- "headSpecialFallMageNotes": "這頂帽子是由魔法一針一線織成的。增加 <%= per %> 點感知。 2014年秋季限定版裝備",
+ "headSpecialFallMageNotes": "這頂帽子是由魔法一針一線織成的。增加 <%= per %> 點感知。 2014年秋季限定版裝備。",
"headSpecialFallHealerText": "頭部繃帶",
- "headSpecialFallHealerNotes": "極具衛生,又兼具時尚。增加 <%= int %> 點智力。 2014年秋季限定版裝備",
+ "headSpecialFallHealerNotes": "極具衛生,又兼具時尚。增加 <%= int %> 點智力。 2014年秋季限定版裝備。",
"headSpecialNye2014Text": "傻氣派對帽",
"headSpecialNye2014Notes": "恭喜您收到一頂傻氣的派對慶生帽! 當新年鐘聲響起時,就自豪地戴上它吧! 無屬性加成。",
"headSpecialWinter2015RogueText": "冰錐龍獸面罩",
- "headSpecialWinter2015RogueNotes": "(Icicle Drake) 您千真、萬卻、絕對就是那隻傳說中的冰錐龍獸。您不曾想過要攻佔冰錐龍獸的老巢。您對傳說中躺在寒冷隧道裡的巨額財富也毫無興趣。嗷。增加 <%= per %> 點感知。 2014-2015冬季限定版裝備",
+ "headSpecialWinter2015RogueNotes": "(Icicle Drake) 您千真、萬卻、絕對就是那隻傳說中的冰錐龍獸。您不曾想過要攻佔冰錐龍獸的老巢。您對傳說中躺在寒冷隧道裡的巨額財富也毫無興趣。嗷。增加 <%= per %> 點感知。 2014-2015冬季限定版裝備。",
"headSpecialWinter2015WarriorText": "薑餅頭盔",
- "headSpecialWinter2015WarriorNotes": "思考,思考,給我竭盡全力地思考。增加 <%= str %> 點力量。 2014-2015冬季限定版裝備",
+ "headSpecialWinter2015WarriorNotes": "思考,思考,給我竭盡全力地思考。增加 <%= str %> 點力量。 2014-2015冬季限定版裝備。",
"headSpecialWinter2015MageText": "極光帽子",
"headSpecialWinter2015MageNotes": "穿戴這頂帽子的人在學習時,這頂帽子上的布料會瞬息萬變並閃閃發光。增加 <%= per %> 點感知。2014-2015冬季限定版裝備。",
"headSpecialWinter2015HealerText": "暖呼呼耳罩",
- "headSpecialWinter2015HealerNotes": "這副溫暖的耳罩既能阻擋強襲而來的寒意,亦能阻隔使人分心的噪音。增加 <%= int %> 點智力。 2014-2015冬季限定版裝備",
+ "headSpecialWinter2015HealerNotes": "這副溫暖的耳罩既能阻擋強襲而來的寒意,亦能阻隔使人分心的噪音。增加 <%= int %> 點智力。 2014-2015冬季限定版裝備。",
"headSpecialSpring2015RogueText": "防火頭盔",
- "headSpecialSpring2015RogueNotes": "火? 這算哪根蔥?! 您能強勢穿越熊熊烈火的襲擊!增加 <%= per %> 點感知。 2015春季限定版裝備",
+ "headSpecialSpring2015RogueNotes": "火? 這算哪根蔥?! 您能強勢穿越熊熊烈火的襲擊!增加 <%= per %> 點感知。 2015春季限定版裝備。",
"headSpecialSpring2015WarriorText": "警惕頭盔",
- "headSpecialSpring2015WarriorNotes": "當心這頂頭盔!只有最兇猛的狗狗才能戴上它。不要再笑了好嗎? 增加 <%= str %> 點力量。 2015年春季限定版裝備",
+ "headSpecialSpring2015WarriorNotes": "當心這頂頭盔!只有最兇猛的狗狗才能戴上它。不要再笑了好嗎? 增加 <%= str %> 點力量。 2015年春季限定版裝備。",
"headSpecialSpring2015MageText": "魔術師舞台帽",
- "headSpecialSpring2015MageNotes": "究竟是先有兔子還是先有帽子呢? 增加 <%= per %> 點感知。 2015年春季限定版裝備",
+ "headSpecialSpring2015MageNotes": "究竟是先有兔子還是先有帽子呢? 增加 <%= per %> 點感知。 2015年春季限定版裝備。",
"headSpecialSpring2015HealerText": "欣慰皇冠",
- "headSpecialSpring2015HealerNotes": "皇冠中央上的珍珠能鎮定並安撫在其周圍的人。增加 <%= int %> 點智力。 2015年春季限定版裝備",
+ "headSpecialSpring2015HealerNotes": "皇冠中央上的珍珠能鎮定並安撫在其周圍的人。增加 <%= int %> 點智力。 2015年春季限定版裝備。",
"headSpecialSummer2015RogueText": "叛變者帽子",
- "headSpecialSummer2015RogueNotes": "這頂海盜帽是從船上掉進海裡的。帽上裝飾著火珊瑚的碎片。增加 <%= per %> 點感知。 2015年夏季限定版裝備",
+ "headSpecialSummer2015RogueNotes": "這頂海盜帽是從船上掉進海裡的。帽上裝飾著火珊瑚的碎片。增加 <%= per %> 點感知。 2015年夏季限定版裝備。",
"headSpecialSummer2015WarriorText": "海洋寶石頭盔",
- "headSpecialSummer2015WarriorNotes": "由怠慢小鎮出生的工匠從深海金屬提煉製作而成。是頂堅固又兼具美觀的頭盔。增加 <%= str %> 點力量。2015年夏季限定版裝備",
+ "headSpecialSummer2015WarriorNotes": "由怠慢小鎮出生的工匠從深海金屬提煉製作而成。是頂堅固又兼具美觀的頭盔。增加 <%= str %> 點力量。2015年夏季限定版裝備。",
"headSpecialSummer2015MageText": "預言家圍巾",
- "headSpecialSummer2015MageNotes": "神秘力量閃耀在這條圍巾的絲線中。增加 <%= per %> 點感知。 2015年夏季限定版裝備",
+ "headSpecialSummer2015MageNotes": "神秘力量閃耀在這條圍巾的絲線中。增加 <%= per %> 點感知。 2015年夏季限定版裝備。",
"headSpecialSummer2015HealerText": "水手帽",
- "headSpecialSummer2015HealerNotes": "把這頂水手帽穩穩地戴在頭上,您就可以暢行於暴風雨的海洋! 增加 <%= int %> 點智力。 2015年夏季限定版裝備",
+ "headSpecialSummer2015HealerNotes": "把這頂水手帽穩穩地戴在頭上,您就可以暢行於暴風雨的海洋! 增加 <%= int %> 點智力。 2015年夏季限定版裝備。",
"headSpecialFall2015RogueText": "戰蝠翅膀",
- "headSpecialFall2015RogueNotes": "這頂強大的頭盔能用超音波偵測敵人的位置!增加 <%= per %> 點感知。 2015年秋季限定版裝備",
+ "headSpecialFall2015RogueNotes": "這頂強大的頭盔能用超音波偵測敵人的位置!增加 <%= per %> 點感知。 2015年秋季限定版裝備。",
"headSpecialFall2015WarriorText": "稻草人帽子",
- "headSpecialFall2015WarriorNotes": "每個人都搶著要這頂帽子——如果他們只有一顆腦袋的話。增加 <%= str %> 點力量。 2015年秋季限定版裝備",
+ "headSpecialFall2015WarriorNotes": "每個人都搶著要這頂帽子——如果他們只有一顆腦袋的話。增加 <%= str %> 點力量。 2015年秋季限定版裝備。",
"headSpecialFall2015MageText": "穿針引線帽",
- "headSpecialFall2015MageNotes": "這頂帽子上的一針一線都能增強自己的力量。增加 <%= per %> 點感知。 2015年秋季限定版裝備",
+ "headSpecialFall2015MageNotes": "這頂帽子上的一針一線都能增強自己的力量。增加 <%= per %> 點感知。 2015年秋季限定版裝備。",
"headSpecialFall2015HealerText": "青蛙帽子",
- "headSpecialFall2015HealerNotes": "這是一頂非供娛樂用的帽子。只有最優秀的魔藥師能夠配戴它。增加 <%= int %> 點智力。 2015年秋季限定版裝備",
+ "headSpecialFall2015HealerNotes": "這是一頂非供娛樂用的帽子。只有最優秀的魔藥師能夠配戴它。增加 <%= int %> 點智力。 2015年秋季限定版裝備。",
"headSpecialNye2015Text": "荒謬派對帽",
"headSpecialNye2015Notes": "恭喜您收到一頂荒謬的派對慶生帽! 當新年鐘聲響起時,就自豪地戴上它吧! 無屬性加成。",
"headSpecialWinter2016RogueText": "可可豆頭盔",
- "headSpecialWinter2016RogueNotes": "在這頂舒適的頭盔裡還藏有一條能夠保護您的圍巾。您可以將他拿下來並細細品嚐裝在裡面的冬季飲品喔! 增加 <%= per %> 點感知。 2015-2016冬季限定版裝備",
+ "headSpecialWinter2016RogueNotes": "在這頂舒適的頭盔裡還藏有一條能夠保護您的圍巾。您可以將他拿下來並細細品嚐裝在裡面的冬季飲品喔! 增加 <%= per %> 點感知。 2015-2016冬季限定版裝備。",
"headSpecialWinter2016WarriorText": "雪人帽子",
- "headSpecialWinter2016WarriorNotes": "哦! 這果然是頂強大的頭盔啊! 在他融化掉......之前......! 增加 <%= str %> 點力量。 2015-2016冬季限定版裝備",
+ "headSpecialWinter2016WarriorNotes": "哦! 這果然是頂強大的頭盔啊! 在他融化掉......之前......! 增加 <%= str %> 點力量。 2015-2016冬季限定版裝備。",
"headSpecialWinter2016MageText": "滑雪家頭罩",
- "headSpecialWinter2016MageNotes": "當您在施法時,他能讓您的視線不被大雪擋住。增加 <%= per %> 點感知。 2015-2016冬季限定版裝備",
+ "headSpecialWinter2016MageNotes": "當您在施法時,他能讓您的視線不被大雪擋住。增加 <%= per %> 點感知。 2015-2016冬季限定版裝備。",
"headSpecialWinter2016HealerText": "仙女翅膀頭盔",
- "headSpecialWinter2016HealerNotes": "這些翅膀鼓動的速度快到都分不清誰是誰了! 增加 <%= int %> 點智力。 2015-2016冬季限定版裝備",
+ "headSpecialWinter2016HealerNotes": "這些翅膀鼓動的速度快到都分不清誰是誰了! 增加 <%= int %> 點智力。 2015-2016冬季限定版裝備。",
"headSpecialSpring2016RogueText": "菁英犬面罩",
- "headSpecialSpring2016RogueNotes": "啊嗚~ 這是隻多麼可愛的小狗狗! 快來我這裡,讓我摸摸你的小頭頭.... 嘿,我所有的金幣都跑到哪兒了? 增加 <%= per %> 點感知。 2016年春季限定版裝備",
+ "headSpecialSpring2016RogueNotes": "啊嗚~ 這是隻多麼可愛的小狗狗! 快來我這裡,讓我摸摸你的小頭頭.... 嘿,我所有的金幣都跑到哪兒了? 增加 <%= per %> 點感知。 2016年春季限定版裝備。",
"headSpecialSpring2016WarriorText": "鼠小兵頭盔",
- "headSpecialSpring2016WarriorNotes": "您再也不會被別人敲頭了! 快戴上它試試看! 增加 <%= str %> 點力量。 2016年春季限定版裝備",
+ "headSpecialSpring2016WarriorNotes": "您再也不會被別人敲頭了! 快戴上它試試看! 增加 <%= str %> 點力量。 2016年春季限定版裝備。",
"headSpecialSpring2016MageText": "豪華金貓帽",
- "headSpecialSpring2016MageNotes": "(Grand Malkin Hat) 穿上它能讓您超越世界上所有穿梭於巷弄小街上的法師。增加 <%= per %> 點感知。 2016年春季限定版裝備",
+ "headSpecialSpring2016MageNotes": "(Grand Malkin Hat) 穿上它能讓您超越世界上所有穿梭於巷弄小街上的法師。增加 <%= per %> 點感知。 2016年春季限定版裝備。",
"headSpecialSpring2016HealerText": "紫花綻放王冠",
- "headSpecialSpring2016HealerNotes": "它閃爍著新生命準備爆發的潛力。增加 <%= int %> 點智力。 2016年春季限定版裝備",
+ "headSpecialSpring2016HealerNotes": "它閃爍著新生命準備爆發的潛力。增加 <%= int %> 點智力。 2016年春季限定版裝備。",
"headSpecialSummer2016RogueText": "鰻魚頭盔",
- "headSpecialSummer2016RogueNotes": "當您戴上這頂能夠隱形的頭盔時,就可以從岩石的裂縫間向外偷看一瞥。增加 <%= per %> 點感知。 2016年夏季限定版裝備",
+ "headSpecialSummer2016RogueNotes": "當您戴上這頂能夠隱形的頭盔時,就可以從岩石的裂縫間向外偷看一瞥。增加 <%= per %> 點感知。 2016年夏季限定版裝備。",
"headSpecialSummer2016WarriorText": "鯊魚頭盔",
- "headSpecialSummer2016WarriorNotes": "快戴上這頂嚇人的頭盔盡情撕咬那些艱鉅的任務吧! 增加 <%= str %> 點力量。 2016年夏季限定版裝備",
+ "headSpecialSummer2016WarriorNotes": "快戴上這頂嚇人的頭盔盡情撕咬那些艱鉅的任務吧! 增加 <%= str %> 點力量。 2016年夏季限定版裝備。",
"headSpecialSummer2016MageText": "噴射水柱帽",
- "headSpecialSummer2016MageNotes": "附魔藥水正不停地從這頂帽子上噴灑出來。增加 <%= per %> 點感知。 2016年夏季限定版裝備",
+ "headSpecialSummer2016MageNotes": "附魔藥水正不停地從這頂帽子上噴灑出來。增加 <%= per %> 點感知。 2016年夏季限定版裝備。",
"headSpecialSummer2016HealerText": "海馬頭盔",
- "headSpecialSummer2016HealerNotes": "這頂頭盔彰顯著它的穿戴者是位由怠慢小鎮出生的海馬所訓練長大的。增加 <%= int %> 點智力。 2016年夏季限定版裝備",
+ "headSpecialSummer2016HealerNotes": "這頂頭盔彰顯著它的穿戴者是位由怠慢小鎮出生的海馬所訓練長大的。增加 <%= int %> 點智力。 2016年夏季限定版裝備。",
"headSpecialFall2016RogueText": "黑寡婦頭盔",
- "headSpecialFall2016RogueNotes": "頭盔上的蜘蛛腳持續不停地在抽搐。增加 <%= per %> 點感知。 2016年秋季限定版裝備",
+ "headSpecialFall2016RogueNotes": "頭盔上的蜘蛛腳持續不停地在抽搐。增加 <%= per %> 點感知。 2016年秋季限定版裝備。",
"headSpecialFall2016WarriorText": "粗糙樹皮頭盔",
- "headSpecialFall2016WarriorNotes": "這頂黏糊糊的沼澤頭盔上還沾有一些爛泥巴。增加 <%= str %> 點力量。 2016年秋季限定版裝備",
+ "headSpecialFall2016WarriorNotes": "這頂黏糊糊的沼澤頭盔上還沾有一些爛泥巴。增加 <%= str %> 點力量。 2016年秋季限定版裝備。",
"headSpecialFall2016MageText": "惡罪頭罩",
- "headSpecialFall2016MageNotes": "將您心懷不軌的陰謀藏在這晦暗的兜帽下吧。增加 <%= per %> 點感知。 2016年秋季限定版裝備",
+ "headSpecialFall2016MageNotes": "將您心懷不軌的陰謀藏在這晦暗的兜帽下吧。增加 <%= per %> 點感知。 2016年秋季限定版裝備。",
"headSpecialFall2016HealerText": "美杜莎皇冠",
- "headSpecialFall2016HealerNotes": "(Medusa's Crown) 任何看著您眼睛的人都將被賜予禍害。增加 <%= int %> 點智力。 2016年秋季限定版裝備",
- "headSpecialNye2016Text": "古怪派對帽",
- "headSpecialNye2016Notes": "恭喜您收到一頂古怪的派對慶生帽! 當新年鐘聲響起時,就自豪地戴上它吧! 無屬性加成。",
+ "headSpecialFall2016HealerNotes": "任何看著您眼睛的人都將被賜予禍害。增加 <%= int %> 點智力。 2016年秋季限定版裝備。",
+ "headSpecialNye2016Text": "怪誕派對帽",
+ "headSpecialNye2016Notes": "恭喜您收到一頂怪誕的派對慶生帽! 當新年鐘聲響起時,就自豪地戴上它吧! 無屬性加成。",
"headSpecialWinter2017RogueText": "冰霜頭盔",
- "headSpecialWinter2017RogueNotes": "這件盔甲是由冰晶塑造而成的,能幫助您無聲無息地穿過冰雪地形。增加 <%= per %> 點感知。 2016-2017冬季限定版裝備",
+ "headSpecialWinter2017RogueNotes": "這件盔甲是由冰晶塑造而成的,能幫助您無聲無息地穿過冰雪地形。增加 <%= per %> 點感知。 2016-2017冬季限定版裝備。",
"headSpecialWinter2017WarriorText": "曲棍球頭盔",
- "headSpecialWinter2017WarriorNotes": "這是一頂堅固耐用的頭盔。它能被用來抵禦來自暴雪的冰凍衝擊,甚至還能抵擋深紅色的每日任務! 增加 <%= str %> 點力量。 2016-2017冬季限定版裝備",
+ "headSpecialWinter2017WarriorNotes": "這是一頂堅固耐用的頭盔。它能被用來抵禦來自暴雪的冰凍衝擊,甚至還能抵擋深紅色的每日任務! 增加 <%= str %> 點力量。 2016-2017冬季限定版裝備。",
"headSpecialWinter2017MageText": "冬季戰狼頭盔",
- "headSpecialWinter2017MageNotes": "這頂頭盔是以傳說中冬季戰狼的形象為原型塑造而成。它能保持您頭部的溫暖並增強您的視力。增加 <%= per %> 點感知。 2016-2017冬季限定版裝備",
+ "headSpecialWinter2017MageNotes": "這頂頭盔是以傳說中冬季戰狼的形象為原型塑造而成。它能保持您頭部的溫暖並增強您的視力。增加 <%= per %> 點感知。 2016-2017冬季限定版裝備。",
"headSpecialWinter2017HealerText": "繁花閃閃头盔",
- "headSpecialWinter2017HealerNotes": "這些閃閃發光的花瓣能讓您集中腦力! 增加 <%= int %> 點智力。 2016-2017年冬季限定版裝備",
+ "headSpecialWinter2017HealerNotes": "這些閃閃發光的花瓣能讓您集中腦力! 增加 <%= int %> 點智力。 2016-2017年冬季限定版裝備。",
"headSpecialSpring2017RogueText": "鬼祟野兔頭盔",
- "headSpecialSpring2017RogueNotes": "當您偷偷接近每日任務(或是三葉草)時,這副面具能保護您的討喜感不被敵人識破! 增加 <%= per %> 點感知。 2017年春季限定版裝備",
+ "headSpecialSpring2017RogueNotes": "當您偷偷接近每日任務(或是三葉草)時,這副面具能保護您的討喜感不被敵人識破! 增加 <%= per %> 點感知。 2017年春季限定版裝備。",
"headSpecialSpring2017WarriorText": "貓科頭盔",
- "headSpecialSpring2017WarriorNotes": "這頂裝飾精美的頭盔可以保護您可愛、討喜又迷糊的腦袋。增加 <%= str %> 點力量。 2017年春季限定版裝備",
+ "headSpecialSpring2017WarriorNotes": "這頂裝飾精美的頭盔可以保護您可愛、討喜又迷糊的腦袋。增加 <%= str %> 點力量。 2017年春季限定版裝備。",
"headSpecialSpring2017MageText": "魔術小犬巫師帽",
- "headSpecialSpring2017MageNotes": "這頂帽子可以幫助您釋放強大的咒語... 或者您可以只將它用來召喚出網球。 一切由您決定。增加 <%= per %> 點感知。 2017春季限定版裝備",
+ "headSpecialSpring2017MageNotes": "這頂帽子可以幫助您釋放強大的咒語... 或者您可以只將它用來召喚出網球。 一切由您決定。增加 <%= per %> 點感知。 2017春季限定版裝備。",
"headSpecialSpring2017HealerText": "花瓣飾環",
- "headSpecialSpring2017HealerNotes": "這個精緻的花冠散發著春暖花開時節那份讓人心花怒放的香氣。增加 <%= int %> 點智力。 2017年春季限定版裝備",
+ "headSpecialSpring2017HealerNotes": "這個精緻的花冠散發著春暖花開時節那份讓人心花怒放的香氣。增加 <%= int %> 點智力。 2017年春季限定版裝備。",
"headSpecialSummer2017RogueText": "海龍頭盔",
- "headSpecialSummer2017RogueNotes": "這頂頭盔可以隨意改變顏色,幫助您巧聲無息地融入四周的環境。增加 <%= per %> 點感知。 2017年夏季限定版裝備",
+ "headSpecialSummer2017RogueNotes": "這頂頭盔可以隨意改變顏色,幫助您巧聲無息地融入四周的環境。增加 <%= per %> 點感知。 2017年夏季限定版裝備。",
"headSpecialSummer2017WarriorText": "沙堆城堡頭盔",
- "headSpecialSummer2017WarriorNotes": "每個人都非常渴望能戴上這頂最優秀的頭盔。至少在海浪來襲之前。增加 <%= str %> 點力量。 2017年夏季限定版裝備",
+ "headSpecialSummer2017WarriorNotes": "每個人都非常渴望能戴上這頂最優秀的頭盔。至少在海浪來襲之前。增加 <%= str %> 點力量。 2017年夏季限定版裝備。",
"headSpecialSummer2017MageText": "漩渦帽子",
- "headSpecialSummer2017MageNotes": "這是一頂完全由捲曲、顛倒的漩渦製作出來的一頂帽子。增加 <%= per %> 點感知。 2017年夏季限定版裝備",
+ "headSpecialSummer2017MageNotes": "這是一頂完全由捲曲、顛倒的漩渦製作出來的一頂帽子。增加 <%= per %> 點感知。 2017年夏季限定版裝備。",
"headSpecialSummer2017HealerText": "海洋生物皇冠",
- "headSpecialSummer2017HealerNotes": "這頂帽子是由暫時居住在您頭上的友善海洋生物朋友們所組成的。他們能帶給您一些明智的建議。增加 <%= int %> 點智力。 2017年夏季限定版裝備",
+ "headSpecialSummer2017HealerNotes": "這頂帽子是由暫時居住在您頭上的友善海洋生物朋友們所組成的。他們能帶給您一些明智的建議。增加 <%= int %> 點智力。 2017年夏季限定版裝備。",
"headSpecialFall2017RogueText": "杰克南瓜燈頭盔",
- "headSpecialFall2017RogueNotes": "準備好不給糖就搗蛋了嗎? 是時候戴上這頂帶有節日氣息的發光頭盔了! 增加 <%= per %> 點感知。 2017年秋季限量版裝備",
+ "headSpecialFall2017RogueNotes": "準備好不給糖就搗蛋了嗎? 是時候戴上這頂帶有節日氣息的發光頭盔了! 增加 <%= per %> 點感知。 2017年秋季限量版裝備。",
"headSpecialFall2017WarriorText": "玉米糖漿頭盔",
- "headSpecialFall2017WarriorNotes": "這頂頭盔雖然看起來非常享受,但任性的任務們絕對不會覺得它是甜蜜的! 增加 <%= str %> 點力量。 2017年秋季限定版裝備",
+ "headSpecialFall2017WarriorNotes": "這頂頭盔雖然看起來非常享受,但任性的任務們絕對不會覺得它是甜蜜的! 增加 <%= str %> 點力量。 2017年秋季限定版裝備。",
"headSpecialFall2017MageText": "假面舞會頭盔",
- "headSpecialFall2017MageNotes": "當您在眾人面前戴著這頂有羽毛的帽子時,每個人都會想馬上離開並認為房間裡出現了一位神秘的陌生人! 增加 <%= per %> 點感知。 2017年秋季限定版裝備",
+ "headSpecialFall2017MageNotes": "當您在眾人面前戴著這頂有羽毛的帽子時,每個人都會想馬上離開並認為房間裡出現了一位神秘的陌生人! 增加 <%= per %> 點感知。 2017年秋季限定版裝備。",
"headSpecialFall2017HealerText": "鬼屋頭盔",
- "headSpecialFall2017HealerNotes": "快來邀請陰森可怕的靈魂和友好的生物們一同來見證您戴上這頂帽子後的強大治癒能力吧! 增加 <%= int %> 點智力。 2017年秋季限定版裝備",
+ "headSpecialFall2017HealerNotes": "快來邀請陰森可怕的靈魂和友好的生物們一同來見證您戴上這頂帽子後的強大治癒能力吧! 增加 <%= int %> 點智力。 2017年秋季限定版裝備。",
"headSpecialNye2017Text": "夢幻派對帽",
"headSpecialNye2017Notes": "恭喜您收到一頂夢幻的派對慶生帽! 當新年鐘聲響起時,就自豪地戴上它吧! 無屬性加成。",
"headSpecialWinter2018RogueText": "馴鹿頭盔",
- "headSpecialWinter2018RogueNotes": "這是一頂置有內建頭燈的絕佳慶典裝扮! 增加 <%= per %> 點感知。 2017-2018冬季限定版裝備",
+ "headSpecialWinter2018RogueNotes": "這是一頂置有內建頭燈的絕佳慶典裝扮! 增加 <%= per %> 點感知。 2017-2018冬季限定版裝備。",
"headSpecialWinter2018WarriorText": "禮盒頭盔",
- "headSpecialWinter2018WarriorNotes": "這頂帽子上喜氣洋洋的禮盒以及蝴蝶結不僅僅只是慶祝用,還相當的結實。增加 <%= str %> 點力量。 2017-2018冬季限定版裝備",
+ "headSpecialWinter2018WarriorNotes": "這頂帽子上喜氣洋洋的禮盒以及蝴蝶結不僅僅只是慶祝用,還相當的結實。增加 <%= str %> 點力量。 2017-2018冬季限定版裝備。",
"headSpecialWinter2018MageText": "閃亮亮高頂禮帽",
- "headSpecialWinter2018MageNotes": "想要來點附加的神秘魔法嗎? 這頂閃亮的帽子保證能增強您所有的咒語! 增加 <%= per %> 點感知。 2017-2018冬季限定版裝備",
+ "headSpecialWinter2018MageNotes": "想要來點附加的神秘魔法嗎? 這頂閃亮的帽子保證能增強您所有的咒語! 增加 <%= per %> 點感知。 2017-2018冬季限定版裝備。",
"headSpecialWinter2018HealerText": "槲寄生頭罩",
- "headSpecialWinter2018HealerNotes": "這條別緻的頭罩能讓您感到暖呼呼,並永遠保有愉快的節日中的氣氛! 增加 <%= int %> 點智力。 2017-2018冬季限定版裝備",
+ "headSpecialWinter2018HealerNotes": "這條別緻的頭罩能讓您感到暖呼呼,並永遠保有愉快的節日中的氣氛! 增加 <%= int %> 點智力。 2017-2018冬季限定版裝備。",
"headSpecialSpring2018RogueText": "鴨嘴頭盔",
- "headSpecialSpring2018RogueNotes": "嘎嘎! 您的可愛掩蓋了您機智和狡猾的本性。增加 <%= per %> 點感知。 2018年春季限定版裝備",
+ "headSpecialSpring2018RogueNotes": "嘎嘎! 您的可愛掩蓋了您機智和狡猾的本性。增加 <%= per %> 點感知。 2018年春季限定版裝備。",
"headSpecialSpring2018WarriorText": "光芒四射頭盔",
- "headSpecialSpring2018WarriorNotes": "這頂頭盔能眩暈四周的任何敵人! 增加 <%= str %> 點力量。 2018年春季限定版裝備",
+ "headSpecialSpring2018WarriorNotes": "這頂頭盔能眩暈四周的任何敵人! 增加 <%= str %> 點力量。 2018年春季限定版裝備。",
"headSpecialSpring2018MageText": "鬱金香頭盔",
- "headSpecialSpring2018MageNotes": "這頂頭盔上俏麗的花瓣將賜予您神奇的春天魔法。增加 <%= per %> 點感知。 2018年春季限定版裝備",
+ "headSpecialSpring2018MageNotes": "這頂頭盔上俏麗的花瓣將賜予您神奇的春天魔法。增加 <%= per %> 點感知。 2018年春季限定版裝備。",
"headSpecialSpring2018HealerText": "石榴石飾環",
- "headSpecialSpring2018HealerNotes": "這副頭飾上精鍊的鑽石能增強您的精神能量。增加 <%= int %> 點智力。 2018年春季限定版裝備",
+ "headSpecialSpring2018HealerNotes": "這副頭飾上精鍊的鑽石能增強您的精神能量。增加 <%= int %> 點智力。 2018年春季限定版裝備。",
"headSpecialSummer2018RogueText": "釣魚遮陽帽",
- "headSpecialSummer2018RogueNotes": "從水裡夏日毒辣陽光的反射中提供舒適和保護。如果您覺得在陰影中保持隱密會更自在,那它就更加適合您!增加 <%= per %> 點感知。 2018年夏季限定版裝備",
+ "headSpecialSummer2018RogueNotes": "從水裡夏日毒辣陽光的反射中提供舒適和保護。如果您覺得在陰影中保持隱密會更自在,那它就更加適合您!增加 <%= per %> 點感知。 2018年夏季限定版裝備。",
"headSpecialSummer2018WarriorText": "鬥魚戰士頭盔",
- "headSpecialSummer2018WarriorNotes": "(Betta Fish Barbute) 快用這頂豔麗的戰士頭盔宣揚您正是阿爾法鬥魚!增加 <%= str %> 點力量。 2018年夏季限定版裝備",
+ "headSpecialSummer2018WarriorNotes": "(Betta Fish Barbute) 快用這頂豔麗的戰士頭盔宣揚您正是阿爾法鬥魚!增加 <%= str %> 點力量。 2018年夏季限定版裝備。",
"headSpecialSummer2018MageText": "獅子魚冠",
"headSpecialSummer2018MageNotes": "用痛苦難耐的強光照射在膽敢叫您「失智魚」的人身上。增加 <%= per %> 點感知。 2018年夏季限定版裝備。",
"headSpecialSummer2018HealerText": "人魚帝王皇冠",
- "headSpecialSummer2018HealerNotes": "這頂帶鰭的王冕以海藍寶石點綴,象徵著擁有人類、魚類,還有兼具兩者的生物的統治權!增加 <%= int %> 點智力。 2018年夏季限定版裝備。",
+ "headSpecialSummer2018HealerNotes": "這頂帶鰭的王冕以海藍寶石點綴,象徵著擁有人類、魚類,還有兼具兩者的生物的統治權!增加 <%= int %> 點智力。2018年夏季限定版裝備。",
"headSpecialFall2018RogueText": "雙重人格面具",
- "headSpecialFall2018RogueNotes": "絕大多數的人都會將自己內心的糾葛所隱藏。這副面具正表明了我們都經歷了各種好念頭與壞衝動的戰爭。此外,它還配有一頂甜美的帽子! 增加 <%= per %> 點感知。 2018年秋季限定版裝備",
+ "headSpecialFall2018RogueNotes": "絕大多數的人都會將自己內心的糾葛所隱藏。這副面具正表明了我們都經歷了各種好念頭與壞衝動的戰爭。此外,它還配有一頂甜美的帽子! 增加 <%= per %> 點感知。 2018年秋季限定版裝備。",
"headSpecialFall2018WarriorText": "彌諾陶洛斯面具",
- "headSpecialFall2018WarriorNotes": "(Minotaur Visage) 這副令人驚悚的面具正表明了您可以只花九牛一毛之力就完成您所有的任務! 增加 <%= str %> 點力量。 2018年秋季限定版裝備",
+ "headSpecialFall2018WarriorNotes": "(Minotaur Visage) 這副令人驚悚的面具正表明了您可以只花九牛一毛之力就完成您所有的任務! 增加 <%= str %> 點力量。 2018年秋季限定版裝備。",
"headSpecialFall2018MageText": "糖果法師帽",
- "headSpecialFall2018MageNotes": "這頂帶有尖頭的帽子充滿了強烈的甜蜜蜜咒語。小心,如果它開始融化,將會變得非常黏人! 增加 <%= per %> 點感知。 2018年秋季限定版裝備",
+ "headSpecialFall2018MageNotes": "這頂帶有尖頭的帽子充滿了強烈的甜蜜蜜咒語。小心,如果它開始融化,將會變得非常黏人! 增加 <%= per %> 點感知。 2018年秋季限定版裝備。",
"headSpecialFall2018HealerText": "狼吞虎嚥頭盔",
- "headSpecialFall2018HealerNotes": "這頂頭盔是由一種食肉植物所製成,它以能夠製造殭屍和麻煩而聞名。要小心不要讓它在您頭上咀嚼。增加 <%= int %> 點智力。 2018年秋季限定版裝備",
+ "headSpecialFall2018HealerNotes": "這頂頭盔是由一種食肉植物所製成,它以能夠製造殭屍和麻煩而聞名。要小心不要讓它在您頭上咀嚼。增加 <%= int %> 點智力。 2018年秋季限定版裝備。",
"headSpecialNye2018Text": "怪異派對帽",
"headSpecialNye2018Notes": "恭喜您收到一頂怪異的派對慶生帽! 當新年鐘聲響起時,就自豪地戴上它吧! 無屬性加成。",
"headSpecialWinter2019RogueText": "一品紅聖誕頭盔",
- "headSpecialWinter2019RogueNotes": "這頂枝繁葉茂的頭盔將在冬季最黑暗的日子裡帶來最閃亮的紅色,幫助您融入節慶的氣氛! 增加 <%= per %> 點感知。 2018-2019冬季限定版裝備",
+ "headSpecialWinter2019RogueNotes": "這頂枝繁葉茂的頭盔將在冬季最黑暗的日子裡帶來最閃亮的紅色,幫助您融入節慶的氣氛! 增加 <%= per %> 點感知。 2018-2019冬季限定版裝備。",
"headSpecialWinter2019WarriorText": "酷寒頭盔",
- "headSpecialWinter2019WarriorNotes": "保持冷靜非常重要! 這頂冰冷的頭盔可以保護您免受任何對手的打擊。增加 <%= str %> 點力量。 2018-2019冬季限定版裝備",
+ "headSpecialWinter2019WarriorNotes": "保持冷靜非常重要! 這頂冰冷的頭盔可以保護您免受任何對手的打擊。增加 <%= str %> 點力量。 2018-2019冬季限定版裝備。",
"headSpecialWinter2019MageText": "火紅煙火",
- "headSpecialWinter2019MageNotes": "請找個好位子,一同觀看火花的飛舞秀! 您的工作任務絕對無法抵擋這強勁的威力! 增加 <%= per %> 點感知。 2018-2019冬季限定版裝備",
+ "headSpecialWinter2019MageNotes": "請找個好位子,一同觀看火花的飛舞秀! 您的工作任務絕對無法抵擋這強勁的威力! 增加 <%= per %> 點感知。 2018-2019冬季限定版裝備。",
"headSpecialWinter2019HealerText": "星光皇冠",
- "headSpecialWinter2019HealerNotes": "在最黑暗、寒冷的冬夜,某一顆星星正閃耀著最明亮的亮光。這頂皇冠是由那顆星星上的稀有金屬所製成的,可幫助您變得更加閃耀! 增加 <%= int %> 點智力。 2018-2019冬季限定版裝備",
+ "headSpecialWinter2019HealerNotes": "在最黑暗、寒冷的冬夜,某一顆星星正閃耀著最明亮的亮光。這頂皇冠是由那顆星星上的稀有金屬所製成的,可幫助您變得更加閃耀! 增加 <%= int %> 點智力。2018-2019冬季限定版裝備。",
"headSpecialGaymerxText": "彩虹戰士頭盔",
"headSpecialGaymerxNotes": "為了慶祝GaymerX大會,這頂特別的頭盔飾有炫目多彩、光芒四射的彩虹圖案! GaymerX是一個向所有人開放且支持LGTBQ的遊戲展覽會。無屬性加成。",
"headMystery201402Text": "翼盔",
- "headMystery201402Notes": "這副帶有翅膀的頭飾能使佩戴者風馳電掣! 無屬性加成。 2014年2月訂閱者專屬裝備",
+ "headMystery201402Notes": "這副帶有翅膀的頭飾能使佩戴者風馳電掣! 無屬性加成。 2014年2月訂閱者專屬裝備。",
"headMystery201405Text": "精神烈焰",
- "headMystery201405Notes": "怠惰通通燒毀! 無屬性加成。 2014年5月訂閱者專屬裝備",
+ "headMystery201405Notes": "怠惰通通燒毀! 無屬性加成。 2014年5月訂閱者專屬裝備。",
"headMystery201406Text": "觸角皇冠",
- "headMystery201406Notes": "這頂頭盔的觸手能從水中聚集魔力。無屬性加成。 2014年6月訂閱者專屬裝備",
+ "headMystery201406Notes": "這頂頭盔的觸手能從水中聚集魔力。無屬性加成。 2014年6月訂閱者專屬裝備。",
"headMystery201407Text": "海底探險家頭盔",
- "headMystery201407Notes": "這頂頭盔能讓探索海底變得易如反掌! 同時它也能讓您變得有點像瞪大眼睛的魚。非常具有復古風!無屬性加成。 2014年7月訂閱者專屬裝備",
+ "headMystery201407Notes": "這頂頭盔能讓探索海底變得易如反掌! 同時它也能讓您變得有點像瞪大眼睛的魚。非常具有復古風!無屬性加成。 2014年7月訂閱者專屬裝備。",
"headMystery201408Text": "太陽皇冠",
- "headMystery201408Notes": "這頂閃耀的皇冠給它的佩戴者帶來強大的意志力。無屬性加成。 2014年8月訂閱者專屬裝備",
+ "headMystery201408Notes": "這頂閃耀的皇冠給它的佩戴者帶來強大的意志力。無屬性加成。 2014年8月訂閱者專屬裝備。",
"headMystery201411Text": "運動鐵盔",
- "headMystery201411Notes": "這頂帽子是一種傳說中在Habitica裡備受歡迎的體育項目所配戴的。名子就叫平衡球。內容包括將自己全身包覆在防禦裝備之下,並能致力於取得工作和生活之間的平衡... 在被獅鷲獸追趕的時候!無屬性加成。 2014年11月訂閱者專屬裝備",
+ "headMystery201411Notes": "這頂帽子是一種傳說中在Habitica裡備受歡迎的體育項目所配戴的。名子就叫平衡球。內容包括將自己全身包覆在防禦裝備之下,並能致力於取得工作和生活之間的平衡... 在被獅鷲獸追趕的時候!無屬性加成。 2014年11月訂閱者專屬裝備。",
"headMystery201412Text": "企鵝帽子",
- "headMystery201412Notes": "誰是企鵝? 無屬性加成。 2014年12月訂閱者專屬裝備",
+ "headMystery201412Notes": "誰是企鵝? 無屬性加成。 2014年12月訂閱者專屬裝備。",
"headMystery201501Text": "繁星頭盔",
- "headMystery201501Notes": "頭盔上閃爍搖曳的星座能指引佩戴者的思緒並朝向目標前進。無屬性加成。 2015年1月訂閱者專屬裝備",
+ "headMystery201501Notes": "頭盔上閃爍搖曳的星座能指引佩戴者的思緒並朝向目標前進。無屬性加成。 2015年1月訂閱者專屬裝備。",
"headMystery201505Text": "綠騎士頭盔",
- "headMystery201505Notes": "頭盔上的綠色長羽正驕傲的舞動著。無屬性加成。 2015年5月訂閱者專屬裝備",
+ "headMystery201505Notes": "頭盔上的綠色長羽正驕傲的舞動著。無屬性加成。 2015年5月訂閱者專屬裝備。",
"headMystery201508Text": "獵豹帽",
- "headMystery201508Notes": "這頂柔順的獵豹帽可真是毛茸茸啊! 無屬性加成。 2015年8月訂閱者專屬裝備",
+ "headMystery201508Notes": "這頂柔順的獵豹帽可真是毛茸茸啊! 無屬性加成。 2015年8月訂閱者專屬裝備。",
"headMystery201509Text": "狼人面具",
- "headMystery201509Notes": "這是頂面具,對吧? 無屬性加成。 2015年9月訂閱者專屬裝備",
+ "headMystery201509Notes": "這是頂面具,對吧? 無屬性加成。 2015年9月訂閱者專屬裝備。",
"headMystery201511Text": "木材皇冠",
- "headMystery201511Notes": "數數看這頂皇冠上有多少條年輪,這樣就能知道這頂皇冠的年齡有多大了。無屬性加成。 2015年11月訂閱者專屬裝備",
+ "headMystery201511Notes": "數數看這頂皇冠上有多少條年輪,這樣就能知道這頂皇冠的年齡有多大了。無屬性加成。 2015年11月訂閱者專屬裝備。",
"headMystery201512Text": "冬日烈焰",
- "headMystery201512Notes": "這團烈焰以最純粹的智慧燃燒著冰冷。無屬性加成。 2015年12月訂閱者專屬裝備",
+ "headMystery201512Notes": "這團烈焰以最純粹的智慧燃燒著冰冷。無屬性加成。 2015年12月訂閱者專屬裝備。",
"headMystery201601Text": "真決心頭盔",
- "headMystery201601Notes": "保持堅定,勇敢的鬥士! 無屬性加成。 2016年1月訂閱者專屬裝備",
+ "headMystery201601Notes": "保持堅定,勇敢的鬥士! 無屬性加成。 2016年1月訂閱者專屬裝備。",
"headMystery201602Text": "破心者頭罩",
- "headMystery201602Notes": "在所有愛慕者面前捍衛您的身分。無屬性加成。 2016年2月訂閱者專屬裝備",
+ "headMystery201602Notes": "在所有愛慕者面前捍衛您的身分。無屬性加成。 2016年2月訂閱者專屬裝備。",
"headMystery201603Text": "幸運帽",
- "headMystery201603Notes": "這頂高頂禮帽散發著神奇的好運魔力。無屬性加成。 2016年3月訂閱者專屬裝備",
+ "headMystery201603Notes": "這頂高頂禮帽散發著神奇的好運魔力。無屬性加成。 2016年3月訂閱者專屬裝備。",
"headMystery201604Text": "鮮花皇冠",
- "headMystery201604Notes": "這些被編織在一起的鮮花造就了一頂驚奇的強大頭盔! 無屬性加成。 2016年4月訂閱者專屬裝備",
+ "headMystery201604Notes": "這些被編織在一起的鮮花造就了一頂驚奇的強大頭盔! 無屬性加成。 2016年4月訂閱者專屬裝備。",
"headMystery201605Text": "吟遊詩人行軍高帽",
- "headMystery201605Notes": "76隻龍帶領著整個大遊行,另外有110隻獅鷲就在旁邊! 無屬性加成。 2016年5月訂閱者專屬裝備",
+ "headMystery201605Notes": "76隻龍帶領著整個大遊行,另外有110隻獅鷲就在旁邊! 無屬性加成。 2016年5月訂閱者專屬裝備。",
"headMystery201606Text": "海豹人帽子",
- "headMystery201606Notes": "(Selkie Cap) 一邊融入嬉戲中的海豹裡,一邊哼著海洋的曲調! 無屬性加成。 2016年6月訂閱者專屬裝備",
+ "headMystery201606Notes": "(Selkie Cap) 一邊融入嬉戲中的海豹裡,一邊哼著海洋的曲調! 無屬性加成。 2016年6月訂閱者專屬裝備。",
"headMystery201607Text": "海底盜賊頭盔",
- "headMystery201607Notes": "生長在這頂頭盔上的海帶有助於進行偽裝自己。無屬性加成。 2016年7月訂閱者專屬裝備",
+ "headMystery201607Notes": "生長在這頂頭盔上的海帶有助於進行偽裝自己。無屬性加成。 2016年7月訂閱者專屬裝備。",
"headMystery201608Text": "閃電頭盔",
- "headMystery201608Notes": "這頂霹靂啪啦作響的頭盔可以導電! 無屬性加成。 2016年8月訂閱者專屬裝備",
+ "headMystery201608Notes": "這頂霹靂啪啦作響的頭盔可以導電! 無屬性加成。 2016年8月訂閱者專屬裝備。",
"headMystery201609Text": "乳牛帽",
- "headMystery201609Notes": "您絕對不會想要哞~下這頂乳牛帽。無屬性加成。 2016年9月訂閱者專屬裝備",
+ "headMystery201609Notes": "您絕對不會想要哞~下這頂乳牛帽。無屬性加成。 2016年9月訂閱者專屬裝備。",
"headMystery201610Text": "幽靈火焰",
- "headMystery201610Notes": "這些火焰將會喚醒您的鬼魂力量。無屬性加成。 2016年10月訂閱者專屬裝備",
+ "headMystery201610Notes": "這些火焰將會喚醒您的鬼魂力量。無屬性加成。 2016年10月訂閱者專屬裝備。",
"headMystery201611Text": "豪華盛宴帽",
- "headMystery201611Notes": "有了這頂有羽毛裝飾的帽子,您絕對會是這次盛宴中最華麗的人。無屬性加成。 2016年11月訂閱者專屬裝備",
+ "headMystery201611Notes": "有了這頂有羽毛裝飾的帽子,您絕對會是這次盛宴中最華麗的人。無屬性加成。 2016年11月訂閱者專屬裝備。",
"headMystery201612Text": "胡桃鉗頭盔",
- "headMystery201612Notes": "這頂高大而壯麗的頭盔給您的慶典服裝增添了華麗的元素! 無屬性加成。 2016年12月訂閱者專屬裝備",
+ "headMystery201612Notes": "這頂高大而壯麗的頭盔給您的慶典服裝增添了華麗的元素! 無屬性加成。 2016年12月訂閱者專屬裝備。",
"headMystery201702Text": "盜心者頭罩",
- "headMystery201702Notes": "儘管這條頭罩隱藏了您的臉,但這只會增加您的魅力! 無屬性加成。 2017年2月訂閱者專屬裝備",
+ "headMystery201702Notes": "儘管這條頭罩隱藏了您的臉,但這只會增加您的魅力! 無屬性加成。 2017年2月訂閱者專屬裝備。",
"headMystery201703Text": "一閃一閃亮頭盔",
- "headMystery201703Notes": "從角狀頭盔上反射而來的柔和微光,就算是脾氣最差的敵人都能平靜下來。無屬性加成。 2017年3月訂閱者專屬裝備",
+ "headMystery201703Notes": "從角狀頭盔上反射而來的柔和微光,就算是脾氣最差的敵人都能平靜下來。無屬性加成。 2017年3月訂閱者專屬裝備。",
"headMystery201705Text": "羽毛戰士頭盔",
- "headMystery201705Notes": "Habitica 因為其兇猛、極具效率的獅鷲戰士而聞名天下! 快戴上這頂羽毛頭盔,一同加入這個受人尊敬的行列之中吧。無屬性加成。 2017年5月訂閱者專屬裝備",
+ "headMystery201705Notes": "Habitica 因為其兇猛、極具效率的獅鷲戰士而聞名天下! 快戴上這頂羽毛頭盔,一同加入這個受人尊敬的行列之中吧。無屬性加成。2017年5月訂閱者專屬裝備。",
"headMystery201707Text": "水母法師頭盔",
- "headMystery201707Notes": "對於任務,您需要額外的援助嗎? 這頂半透明的水母頭盔上有相當多的觸手願意伸出援手! 無屬性加成。 2017年7月訂閱者專屬裝備",
+ "headMystery201707Notes": "對於任務,您需要額外的援助嗎? 這頂半透明的水母頭盔上有相當多的觸手願意伸出援手! 無屬性加成。 2017年7月訂閱者專屬裝備。",
"headMystery201710Text": "傲慢惡鬼頭盔",
- "headMystery201710Notes": "這頂頭盔讓您看起來有點嚇人。但它不會對您的深度感知有任何幫助! 無屬性加成。 2017年10月訂閱者專屬裝備",
+ "headMystery201710Notes": "這頂頭盔讓您看起來有點嚇人。但它不會對您的深度感知有任何幫助! 無屬性加成。 2017年10月訂閱者專屬裝備。",
"headMystery201712Text": "蠟燭法師皇冠",
- "headMystery201712Notes": "這頂皇冠能在最黑暗的寒冬夜晚裡帶來光明和溫暖。無屬性加成。 2017年12月訂閱者專屬裝備",
+ "headMystery201712Notes": "這頂皇冠能在最黑暗的寒冬夜晚裡帶來光明和溫暖。無屬性加成。 2017年12月訂閱者專屬裝備。",
"headMystery201802Text": "蟲粉頭盔",
- "headMystery201802Notes": "這頂頭盔上的觸鬚可作為可愛的探測桿,可以探測四周愛與支持的氣氛。無屬性加成。 2018年2月訂閱者專屬裝備",
+ "headMystery201802Notes": "這頂頭盔上的觸鬚可作為可愛的探測桿,可以探測四周愛與支持的氣氛。無屬性加成。 2018年2月訂閱者專屬裝備。",
"headMystery201803Text": "勇猛蜻蜓飾環",
- "headMystery201803Notes": "雖然它的外觀非常具有裝飾性,但您可以將翅膀放在這個頭飾上以獲得額外的上升能力! 無屬性加成。 2018年3月訂閱者專屬裝備",
+ "headMystery201803Notes": "雖然它的外觀非常具有裝飾性,但您可以將翅膀放在這個頭飾上以獲得額外的上升能力! 無屬性加成。 2018年3月訂閱者專屬裝備。",
"headMystery201805Text": "華麗孔雀頭盔",
- "headMystery201805Notes": "這頂頭盔將能讓您成為城鎮裡最自豪、漂亮(也有可能是最吵鬧)的鳥類。無屬性加成。 2018年5月訂閱者專屬裝備",
+ "headMystery201805Notes": "這頂頭盔將能讓您成為城鎮裡最自豪、漂亮(也有可能是最吵鬧)的鳥類。無屬性加成。 2018年5月訂閱者專屬裝備。",
"headMystery201806Text": "驚豔琵琶魚頭盔",
- "headMystery201806Notes": "這頂頭盔上非常吸引人的光線能喚使所有海中的生物到您的身旁。我們懇請您使用這個誘人的發光能力於正面的地方! 無屬性加成。 2018年6月訂閱者專屬裝備",
+ "headMystery201806Notes": "這頂頭盔上非常吸引人的光線能喚使所有海中的生物到您的身旁。我們懇請您使用這個誘人的發光能力於正面的地方! 無屬性加成。 2018年6月訂閱者專屬裝備。",
"headMystery201807Text": "大海蛇頭盔",
- "headMystery201807Notes": "這頂頭盔上堅韌的魚鱗能保護您免於受到任何海洋中敵人的攻擊。無屬性加成。 2018年7月訂閱者專屬裝備",
+ "headMystery201807Notes": "這頂頭盔上堅韌的魚鱗能保護您免於受到任何海洋中敵人的攻擊。無屬性加成。 2018年7月訂閱者專屬裝備。",
"headMystery201808Text": "熔岩巨龍披風",
- "headMystery201808Notes": "披風上那閃閃發亮的龍角能夠在地底的洞穴中照亮您的路。無屬性加成。 2018年8月訂閱者專屬裝備",
+ "headMystery201808Notes": "披風上那閃閃發亮的龍角能夠在地底的洞穴中照亮您的路。無屬性加成。 2018年8月訂閱者專屬裝備。",
"headMystery201809Text": "秋季花朵皇冠",
- "headMystery201809Notes": "來自秋季溫暖日子中的最後一朵花正是紀念此季節中的美麗事物之最佳信物。無屬性加成。 2018年9月訂閱者專屬裝備",
+ "headMystery201809Notes": "來自秋季溫暖日子中的最後一朵花正是紀念此季節中的美麗事物之最佳信物。無屬性加成。 2018年9月訂閱者專屬裝備。",
"headMystery201810Text": "黑暗森林頭盔",
- "headMystery201810Notes": "如果您正在穿越一個幽靈般的地方,這頂頭盔上發紅光的眼睛一定能嚇跑沿路中的敵人。無屬性加成。 2018年10月訂閱者專屬裝備",
+ "headMystery201810Notes": "如果您正在穿越一個幽靈般的地方,這頂頭盔上發紅光的眼睛一定能嚇跑沿路中的敵人。無屬性加成。 2018年10月訂閱者專屬裝備。",
"headMystery201811Text": "璀璨法師帽子",
- "headMystery201811Notes": "戴上這頂有羽毛的帽子後就算是在最華麗的巫師聚會中也能脫穎而出! 無屬性加成。 2018年11月訂閱者專屬裝備",
+ "headMystery201811Notes": "戴上這頂有羽毛的帽子後就算是在最華麗的巫師聚會中也能脫穎而出! 無屬性加成。 2018年11月訂閱者專屬裝備。",
"headMystery201901Text": "北極星頭盔",
- "headMystery201901Notes": "這頭盔上閃閃發亮的鑽石擁有從冬季極光中捕獲到的神奇光線。無屬性加成。 2019年1月訂閱者專屬裝備",
+ "headMystery201901Notes": "這頭盔上閃閃發亮的鑽石擁有從冬季極光中捕獲到的神奇光線。無屬性加成。 2019年1月訂閱者專屬裝備。",
"headMystery301404Text": "華麗高頂禮帽",
- "headMystery301404Notes": "上流社會佼佼者的華麗高頂禮帽! 無屬性加成。 3015年1月訂閱者專屬裝備",
+ "headMystery301404Notes": "上流社會佼佼者的華麗高頂禮帽! 無屬性加成。 3015年1月訂閱者專屬裝備。",
"headMystery301405Text": "基礎高頂禮帽",
- "headMystery301405Notes": "一頂基礎級的高頂禮帽。一直渴望能與一些華麗的頭飾搭配。無屬性加成。 3015年5月訂閱者專屬裝備",
+ "headMystery301405Notes": "一頂基礎級的高頂禮帽。一直渴望能與一些華麗的頭飾搭配。無屬性加成。 3015年5月訂閱者專屬裝備。",
"headMystery301703Text": "華麗羽毛帽",
- "headMystery301703Notes": "這頂帽子上的羽毛是由普理女士的淑女學校(Miss Prue's Finishing School)捐贈給華麗孔雀們的。請自豪地戴上它們吧! 無屬性加成。 3017年3月訂閱者專屬裝備",
+ "headMystery301703Notes": "這頂帽子上的羽毛是由普理女士的淑女學校(Miss Prue's Finishing School)捐贈給華麗孔雀們的。請自豪地戴上它們吧! 無屬性加成。 3017年3月訂閱者專屬裝備。",
"headMystery301704Text": "野雉羽帽",
- "headMystery301704Notes": "有甚麼事情能比獲得一根野雉的羽毛還讓人更開心呢? 無屬性加成。 3017年4月訂閱者專屬裝備",
+ "headMystery301704Notes": "有甚麼事情能比獲得一根野雉的羽毛還讓人更開心呢? 無屬性加成。 3017年4月訂閱者專屬裝備。",
"headArmoireLunarCrownText": "治癒之月皇冠",
- "headArmoireLunarCrownNotes": "這頂皇冠能增強您的生命並讓您變得更敏捷,尤其是在滿月的時候。增加 <%= con %> 點體質和 <%= per %> 點感知。 來自神祕寶箱: 治癒之月套裝(1/3)",
+ "headArmoireLunarCrownNotes": "這頂皇冠能增強您的生命並讓您變得更敏捷,尤其是在滿月的時候。增加 <%= con %> 點體質和 <%= per %> 點感知。 來自神秘寶箱: 治癒之月套裝(1/3)。",
"headArmoireRedHairbowText": "赤紅蝴蝶結頭飾",
- "headArmoireRedHairbowNotes": "戴上這副赤紅色的蝴蝶結頭飾,就能讓您變得更強壯、堅韌,還會變聰明喔! 增加 <%= str %> 點力量、 <%= con %> 點體質和 <%= int %> 點智力。 來自神祕寶箱: 赤紅蝴蝶結套裝(1/2)",
+ "headArmoireRedHairbowNotes": "戴上這副赤紅色的蝴蝶結頭飾,就能讓您變得更強壯、堅韌,還會變聰明喔! 增加 <%= str %> 點力量、 <%= con %> 點體質和 <%= int %> 點智力。 來自神秘寶箱: 赤紅蝴蝶結套裝(1/2)。",
"headArmoireVioletFloppyHatText": "羅蘭紫寬簷帽",
- "headArmoireVioletFloppyHatNotes": "這頂簡易的帽子是由眾多咒語縫製而成的。最後再給它一抹令人心曠神怡的紫色。增加 <%= per %> 點感知、 <%= int %> 點智力和 <%= con %> 點體質。 來自神祕寶箱: 獨立裝備",
+ "headArmoireVioletFloppyHatNotes": "這頂簡易的帽子是由眾多咒語縫製而成的。最後再給它一抹令人心曠神怡的紫色。增加 <%= per %> 點感知、 <%= int %> 點智力和 <%= con %> 點體質。 來自神秘寶箱: 獨立裝備。",
"headArmoireGladiatorHelmText": "角鬥士頭盔",
- "headArmoireGladiatorHelmNotes": "要成為一名鬥士,您不但必須要很強壯...還要夠狡猾。增加 <%= int %> 點智力和 <%= per %> 點感知。 來自神祕寶箱: 角鬥士套裝(1/3)",
+ "headArmoireGladiatorHelmNotes": "要成為一名鬥士,您不但必須要很強壯...還要夠狡猾。增加 <%= int %> 點智力和 <%= per %> 點感知。 來自神秘寶箱: 角鬥士套裝(1/3)。",
"headArmoireRancherHatText": "牛仔帽",
- "headArmoireRancherHatNotes": "戴上這頂神奇的牛仔帽,並拴住您的坐騎和寵物們吧!增加 <%= str %> 點力量、 <%= per %> 點感知和 <%= int %> 點智力。 來自神祕寶箱: 牛仔套裝(1/3)",
+ "headArmoireRancherHatNotes": "戴上這頂神奇的牛仔帽,並拴住您的坐騎和寵物們吧!增加 <%= str %> 點力量、 <%= per %> 點感知和 <%= int %> 點智力。 來自神秘寶箱: 牛仔套裝(1/3)。",
"headArmoireBlueHairbowText": "水藍蝴蝶結頭飾",
- "headArmoireBlueHairbowNotes": "戴上這副水藍色的蝴蝶結頭飾,就能讓您變得更敏銳、堅強,還會變聰明喔! 增加 <%= per %> 點感知、 <%= con %> 點體質和 <%= int %> 點智力。 來自神祕寶箱: 水藍蝴蝶結套裝(1/2)。",
+ "headArmoireBlueHairbowNotes": "戴上這副水藍色的蝴蝶結頭飾,就能讓您變得更敏銳、堅強,還會變聰明喔! 增加 <%= per %> 點感知、 <%= con %> 點體質和 <%= int %> 點智力。 來自神秘寶箱: 水藍蝴蝶結套裝(1/2)。",
"headArmoireRoyalCrownText": "皇家王冠",
- "headArmoireRoyalCrownNotes": "吾王萬歲萬萬歲,年年有今日歲歲有今朝!增加 <%= str %> 點力量。 來自神秘寶箱: 皇家套裝(1/3)",
+ "headArmoireRoyalCrownNotes": "吾王萬歲萬萬歲,年年有今日歲歲有今朝!增加 <%= str %> 點力量。 來自神秘寶箱: 皇家套裝(1/3)。",
"headArmoireGoldenLaurelsText": "黃金桂冠",
- "headArmoireGoldenLaurelsNotes": "這個金色桂冠是用來獎勵那些已經成功克服壞習慣的人們。增加感知、體質各 <%= attrs %> 點。 來自神祕寶箱: 黃金托加長袍套裝(2/3)",
+ "headArmoireGoldenLaurelsNotes": "這個金色桂冠是用來獎勵那些已經成功克服壞習慣的人們。增加感知、體質各 <%= attrs %> 點。 來自神秘寶箱: 黃金托加長袍套裝(2/3)。",
"headArmoireHornedIronHelmText": "鐵角頭盔",
- "headArmoireHornedIronHelmNotes": "純鋼打造,無懈可擊。這頂鐵角頭盔硬得幾乎無法被打破。增加 <%= con %> 點體質和 <%= str %> 點力量。 來自神祕寶箱: 鐵角套裝(1/3)",
+ "headArmoireHornedIronHelmNotes": "純鋼打造,無懈可擊。這頂鐵角頭盔硬得幾乎無法被打破。增加 <%= con %> 點體質和 <%= str %> 點力量。 來自神秘寶箱: 鐵角套裝(1/3)。",
"headArmoireYellowHairbowText": "金黃蝴蝶結頭飾",
- "headArmoireYellowHairbowNotes": "戴上這副金黃色的蝴蝶結頭飾,就能讓您變得更敏銳、強壯,還會變聰明喔! 增加感知、力量、智力各 <%= attrs %> 點。 來自神祕寶箱: 金黃蝴蝶結套裝(1/2)",
+ "headArmoireYellowHairbowNotes": "戴上這副金黃色的蝴蝶結頭飾,就能讓您變得更敏銳、強壯,還會變聰明喔! 增加感知、力量、智力各 <%= attrs %> 點。 來自神秘寶箱: 金黃蝴蝶結套裝(1/2)。",
"headArmoireRedFloppyHatText": "亮紅寬簷帽",
- "headArmoireRedFloppyHatNotes": "這頂帽子是由附魔過的針線縫製而成的,讓它呈現出閃閃發亮的紅色。增加體質、智力、感知各 <%= attrs %> 點。 來自神祕寶箱: 淺紅睡衣套裝(1/3)",
+ "headArmoireRedFloppyHatNotes": "這頂帽子是由附魔過的針線縫製而成的,讓它呈現出閃閃發亮的紅色。增加體質、智力、感知各 <%= attrs %> 點。 來自神秘寶箱: 淺紅睡衣套裝(1/3)。",
"headArmoirePlagueDoctorHatText": "瘟疫醫師帽",
- "headArmoirePlagueDoctorHatNotes": "怠惰瘟疫主治醫生,值得一頂真實可靠的帽子!增加 <%= str %> 點力量、 <%= int %> 點智力和 <%= con %> 點體質。 來自神祕寶箱: 瘟疫醫師套裝(1/3)",
+ "headArmoirePlagueDoctorHatNotes": "怠惰瘟疫主治醫生,值得一頂真實可靠的帽子!增加 <%= str %> 點力量、 <%= int %> 點智力和 <%= con %> 點體質。 來自神秘寶箱: 瘟疫醫師套裝(1/3)。",
"headArmoireBlackCatText": "黑貓帽",
- "headArmoireBlackCatNotes": "這頂黑帽正在...打鼾,還甩動尾巴並深呼吸? 沒錯,在您頭上的正是一隻正在睡覺的貓。增加智力、感知各 <%= attrs %> 點。 來自神祕寶箱: 獨立裝備",
+ "headArmoireBlackCatNotes": "這頂黑帽正在...打鼾,還甩動尾巴並深呼吸? 沒錯,在您頭上的正是一隻正在睡覺的貓。增加智力、感知各 <%= attrs %> 點。 來自神秘寶箱: 獨立裝備。",
"headArmoireOrangeCatText": "橘貓帽",
- "headArmoireOrangeCatNotes": "這頂橘帽正在...打鼾,還甩動尾巴並深呼吸? 沒錯,在您頭上的正是一隻正在睡覺的貓。增加力量、體質各 <%= attrs %> 點。 來自神祕寶箱: 獨立裝備",
+ "headArmoireOrangeCatNotes": "這頂橘帽正在...打鼾,還甩動尾巴並深呼吸? 沒錯,在您頭上的正是一隻正在睡覺的貓。增加力量、體質各 <%= attrs %> 點。 來自神秘寶箱: 獨立裝備。",
"headArmoireBlueFloppyHatText": "淺藍寬簷軟帽",
- "headArmoireBlueFloppyHatNotes": "這頂帽子是由附魔過的針線縫製而成的,讓它呈現出閃亮光輝的藍色。增加體質、智力、感知各 <%= attrs %> 點。 來自神祕寶箱: 淺藍睡衣套裝(1/3)",
+ "headArmoireBlueFloppyHatNotes": "這頂帽子是由附魔過的針線縫製而成的,讓它呈現出閃亮光輝的藍色。增加體質、智力、感知各 <%= attrs %> 點。 來自神秘寶箱: 淺藍睡衣套裝(1/3)。",
"headArmoireShepherdHeaddressText": "牧羊人頭飾",
- "headArmoireShepherdHeaddressNotes": "你戴上這頂頭飾能讓您顯得智力非凡,不過您放養的獅鷲無聊時喜歡咀嚼它。增加 <%= int %> 點智力。 來自神秘寶箱: 牧羊人套裝(3/3)",
+ "headArmoireShepherdHeaddressNotes": "你戴上這頂頭飾能讓您顯得智力非凡,不過您放養的獅鷲無聊時喜歡咀嚼它。增加 <%= int %> 點智力。 來自神秘寶箱: 牧羊人套裝(3/3)。",
"headArmoireCrystalCrescentHatText": "弦月水晶帽",
- "headArmoireCrystalCrescentHatNotes": "這頂帽子的力量會隨著月亮的陰晴圓缺而變化。增加智力、感知各 <%= attrs %> 點。神秘寶箱: 弦月水晶套裝(1/3)",
+ "headArmoireCrystalCrescentHatNotes": "這頂帽子的力量會隨著月亮的陰晴圓缺而變化。增加智力、感知各 <%= attrs %> 點。來自神秘寶箱: 弦月水晶套裝(1/3)。",
"headArmoireDragonTamerHelmText": "馴龍師頭盔",
- "headArmoireDragonTamerHelmNotes": "您看起來就像一條真正的龍。這根本是完美的偽裝。增加<%= int %> 點智力。 來自神祕寶箱: 馴龍師套裝(1/3)",
+ "headArmoireDragonTamerHelmNotes": "您看起來就像一條真正的龍。這根本是完美的偽裝。增加<%= int %> 點智力。 來自神秘寶箱: 馴龍師套裝(1/3)。",
"headArmoireBarristerWigText": "大律師假髮",
- "headArmoireBarristerWigNotes": "這頂有彈性的假髮能夠嚇跑敵人,即使它是多麼地凶猛無比。增加 <%= str %> 點力量。 來自神秘寶箱: 律師套裝(1/3)",
+ "headArmoireBarristerWigNotes": "這頂有彈性的假髮能夠嚇跑敵人,即使它是多麼地凶猛無比。增加 <%= str %> 點力量。 來自神秘寶箱: 律師套裝(1/3)。",
"headArmoireJesterCapText": "小丑帽",
- "headArmoireJesterCapNotes": "這頂帽子上的鈴鐺雖然會讓對手分心,但它卻會幫助您集中注意力。增加 <%= per %> 點感知。 來自神祕寶箱: 小丑套裝(1/3)",
+ "headArmoireJesterCapNotes": "這頂帽子上的鈴鐺雖然會讓對手分心,但它卻會幫助您集中注意力。增加 <%= per %> 點感知。 來自神秘寶箱: 小丑套裝(1/3)。",
"headArmoireMinerHelmetText": "礦工安全帽",
- "headArmoireMinerHelmetNotes": "這頂安全帽能保護您的頭部不被掉落下來的任務給砸傷! 增加 <%= int %> 點智力。 來自神祕寶箱: 挖礦大師套裝(1/3)",
+ "headArmoireMinerHelmetNotes": "這頂安全帽能保護您的頭部不被掉落下來的任務給砸傷! 增加 <%= int %> 點智力。 來自神秘寶箱: 挖礦大師套裝(1/3)。",
"headArmoireBasicArcherCapText": "基礎射手帽子",
- "headArmoireBasicArcherCapNotes": "唯有戴上這頂寬鬆的帽子,射手的裝備才算齊全! 增加 <%= per %> 點感知。 來自神祕寶箱: 基礎射手套裝(3/3)",
+ "headArmoireBasicArcherCapNotes": "唯有戴上這頂寬鬆的帽子,射手的裝備才算齊全! 增加 <%= per %> 點感知。 來自神秘寶箱: 基礎射手套裝(3/3)。",
"headArmoireGraduateCapText": "畢業四方帽",
- "headArmoireGraduateCapNotes": "恭喜恭喜! 您有遠見的思維讓自己贏得了這頂思考帽。增加 <%= int %> 點智力。 來自神祕寶箱: 畢業生套裝(3/3)",
+ "headArmoireGraduateCapNotes": "恭喜恭喜! 您有遠見的思維讓自己贏得了這頂思考帽。增加 <%= int %> 點智力。 來自神秘寶箱: 畢業生套裝(3/3)。",
"headArmoireGreenFloppyHatText": "翠綠寬簷帽",
- "headArmoireGreenFloppyHatNotes": "這頂帽子是由附魔過的針線縫製而成的,讓它呈現出帶有華麗感的綠色。增加體質、智力、感知各 <%= attrs %> 點。 來自神祕寶箱: 淺綠睡衣套裝(1/3)",
+ "headArmoireGreenFloppyHatNotes": "這頂帽子是由附魔過的針線縫製而成的,讓它呈現出帶有華麗感的綠色。增加體質、智力、感知各 <%= attrs %> 點。 來自神秘寶箱: 淺綠睡衣套裝(1/3)。",
"headArmoireCannoneerBandannaText": "砲兵頭巾",
- "headArmoireCannoneerBandannaNotes": "這頭巾就是我的生命! 增加智力、感知各 <%= attrs %> 點。 來自神秘寶箱: 砲兵套裝(3/3)",
+ "headArmoireCannoneerBandannaNotes": "這頭巾就是我的生命! 增加智力、感知各 <%= attrs %> 點。 來自神秘寶箱: 砲兵套裝(3/3)。",
"headArmoireFalconerCapText": "獵鷹者便帽",
- "headArmoireFalconerCapNotes": "這頂輕巧的便帽能幫助您更容易找到獵物。增加 <%= int %> 點智力。 來自神祕寶箱: 獵鷹者套裝(2/3)",
+ "headArmoireFalconerCapNotes": "這頂輕巧的便帽能幫助您更容易找到獵物。增加 <%= int %> 點智力。 來自神秘寶箱: 獵鷹者套裝(2/3)。",
"headArmoireVermilionArcherHelmText": "朱紅射手頭盔",
- "headArmoireVermilionArcherHelmNotes": "頭盔上的魔法紅石能讓您像雷射光一樣輕易地瞄準目標! 增加 <%= per %> 點感知。 來自神祕寶箱: 朱紅射手套裝(3/3)",
+ "headArmoireVermilionArcherHelmNotes": "頭盔上的魔法紅石能讓您像雷射光一樣輕易地瞄準目標! 增加 <%= per %> 點感知。 來自神秘寶箱: 朱紅射手套裝(3/3)。",
"headArmoireOgreMaskText": "食人魔面罩",
- "headArmoireOgreMaskNotes": "您的敵人一看到您就會馬上退避三舍: 夭壽,食人魔來啦! 增加體質、力量各 <%= attrs %> 點。 來自神祕寶箱: 食人魔套裝(1/3)",
+ "headArmoireOgreMaskNotes": "您的敵人一看到您就會馬上退避三舍: 夭壽,食人魔來啦! 增加體質、力量各 <%= attrs %> 點。 來自神秘寶箱: 食人魔套裝(1/3)。",
"headArmoireIronBlueArcherHelmText": "弓箭手水藍鐵頭盔",
- "headArmoireIronBlueArcherHelmNotes": "您的頭很硬? 不,您只是受到良好保護。增加 <%= con %> 點體質。 來自神祕寶箱: 鋼鐵弓箭手套裝(1/3)",
+ "headArmoireIronBlueArcherHelmNotes": "您的頭很硬? 不,您只是受到良好保護。增加 <%= con %> 點體質。 來自神秘寶箱: 鋼鐵弓箭手套裝(1/3)。",
"headArmoireWoodElfHelmText": "木妖精頭盔",
- "headArmoireWoodElfHelmNotes": "這頂由葉子製作而成的頭盔或許看起來非常脆弱,但它卻可以在惡劣天氣或是在強敵面前保護您。增加 <%= con %> 點體質。 來自神祕寶箱: 木妖精(1/3)",
+ "headArmoireWoodElfHelmNotes": "這頂由葉子製作而成的頭盔或許看起來非常脆弱,但它卻可以在惡劣天氣或是在強敵面前保護您。增加 <%= con %> 點體質。 來自神秘寶箱: 木妖精(1/3)。",
"headArmoireRamHeaddressText": "牡羊頭飾",
- "headArmoireRamHeaddressNotes": "這頂精美的頭盔被塑造成牡羊的樣式。增加 <%= con %> 點體質和 <%= per %> 點感知。 來自神祕寶箱: 牡羊野蠻人套裝(1/3)",
+ "headArmoireRamHeaddressNotes": "這頂精美的頭盔被塑造成牡羊的樣式。增加 <%= con %> 點體質和 <%= per %> 點感知。 來自神秘寶箱: 牡羊野蠻人套裝(1/3)。",
"headArmoireCrownOfHeartsText": "愛心皇冠",
- "headArmoireCrownOfHeartsNotes": "這頂玫瑰紅的皇冠不僅僅只是很搶眼。它還能在您面對艱難的任務時堅定您的心! 增加 <%= str %> 點力量。 來自神祕寶箱: 心皇后套裝(1/3)",
+ "headArmoireCrownOfHeartsNotes": "這頂玫瑰紅的皇冠不僅僅只是很搶眼。它還能在您面對艱難的任務時堅定您的心! 增加 <%= str %> 點力量。 來自神秘寶箱: 心皇后套裝(1/3)。",
"headArmoireMushroomDruidCapText": "德魯伊蘑菇帽",
- "headArmoireMushroomDruidCapNotes": "Mushroom Druid Cap。 這頂在迷霧森林深處得到的帽子能賜予穿戴者藥用植物的知識。增加 <%= int %> 點智力和 <%= str %> 點力量。 來自神祕寶箱: 德魯伊蘑菇套裝(1/3)",
+ "headArmoireMushroomDruidCapNotes": "Mushroom Druid Cap。 這頂在迷霧森林深處得到的帽子能賜予穿戴者藥用植物的知識。增加 <%= int %> 點智力和 <%= str %> 點力量。 來自神秘寶箱: 德魯伊蘑菇套裝(1/3)。",
"headArmoireMerchantChaperonText": "中古世紀 Chaperone 頭巾",
- "headArmoireMerchantChaperonNotes": "這件多功能毛製頭巾絕對會讓您成為市場上最時髦的商人! 增加感知、智力各 <%= attrs %> 點。 來自神祕寶箱: 商人套裝(1/3)",
+ "headArmoireMerchantChaperonNotes": "這件多功能毛製頭巾絕對會讓您成為市場上最時髦的商人! 增加感知、智力各 <%= attrs %> 點。 來自神秘寶箱: 商人套裝(1/3)。",
"headArmoireVikingHelmText": "維京海盜頭盔",
- "headArmoireVikingHelmNotes": "這頂特製的頭盔上不再有犄角的裝飾。因為哪樣會讓敵人輕鬆抓住! 增加 <%= str %> 點力量和 <%= per %> 點感知。 來自神祕寶箱: 維京套裝(2/3)",
+ "headArmoireVikingHelmNotes": "這頂特製的頭盔上不再有犄角的裝飾。因為哪樣會讓敵人輕鬆抓住! 增加 <%= str %> 點力量和 <%= per %> 點感知。 來自神秘寶箱: 維京套裝(2/3)。",
"headArmoireSwanFeatherCrownText": "天鵝羽毛皇冠",
- "headArmoireSwanFeatherCrownNotes": "這頂皇冠既可愛又輕巧,彷彿就像是天鵝的羽毛! 增加 <%= int %> 點智力。 來自神祕寶箱: 天鵝湖舞者套裝(1/3)",
+ "headArmoireSwanFeatherCrownNotes": "這頂皇冠既可愛又輕巧,彷彿就像是天鵝的羽毛! 增加 <%= int %> 點智力。 來自神秘寶箱: 天鵝湖舞者套裝(1/3)。",
"headArmoireAntiProcrastinationHelmText": "反怠惰頭盔",
- "headArmoireAntiProcrastinationHelmNotes": "這頂強韌的鋼鐵頭盔能幫助您戰勝怠惰並保持健康、快樂有效率! 增加 <%= per %> 點感知。 來自神祕寶箱: 反怠惰套裝(1/3)",
+ "headArmoireAntiProcrastinationHelmNotes": "這頂強韌的鋼鐵頭盔能幫助您戰勝怠惰並保持健康、快樂有效率! 增加 <%= per %> 點感知。 來自神秘寶箱: 反怠惰套裝(1/3)。",
"headArmoireCandlestickMakerHatText": "蠟燭台製作師帽子",
- "headArmoireCandlestickMakerHatNotes": "一頂俏皮的帽子能讓工作變得更有趣,而這頂帽子也不例外! 增加感知、智力各 <%= attrs %> 點。 來自神祕寶箱: 蠟燭台製作師套裝(2/3)",
+ "headArmoireCandlestickMakerHatNotes": "一頂俏皮的帽子能讓工作變得更有趣,而這頂帽子也不例外! 增加感知、智力各 <%= attrs %> 點。 來自神秘寶箱: 蠟燭台製作師套裝(2/3)。",
"headArmoireLamplightersTopHatText": "點燈伕高頂禮帽",
- "headArmoireLamplightersTopHatNotes": "這頂優雅的黑色帽子能幫您完成您的點燈任務! 增加 <%= con %> 點體質。 來自神祕寶箱: 點燈伕套裝(3/4)",
+ "headArmoireLamplightersTopHatNotes": "這頂優雅的黑色帽子能幫您完成您的點燈任務! 增加 <%= con %> 點體質。 來自神秘寶箱: 點燈伕套裝(3/4)。",
"headArmoireCoachDriversHatText": "馬車伕禮帽",
- "headArmoireCoachDriversHatNotes": "這頂帽子相當正式,但又不會像高頂禮帽那樣講究。請小心當您在高速駕駛時可別弄丟了帽子! 增加 <%= int %> 點智力。 來自神祕寶箱: 馬車伕套裝(2/3)",
+ "headArmoireCoachDriversHatNotes": "這頂帽子相當正式,但又不會像高頂禮帽那樣講究。請小心當您在高速駕駛時可別弄丟了帽子! 增加 <%= int %> 點智力。 來自神秘寶箱: 馬車伕套裝(2/3)。",
"headArmoireCrownOfDiamondsText": "鑽石皇冠",
- "headArmoireCrownOfDiamondsNotes": "這頂閃亮亮的皇冠不僅僅只是頂好帽子,他還能磨練您的心靈! 增加 <%= int %> 點智力。 來自神秘寶箱: 鑽石王者套裝(2/4)",
+ "headArmoireCrownOfDiamondsNotes": "這頂閃亮亮的皇冠不僅僅只是頂好帽子,他還能磨練您的心靈! 增加 <%= int %> 點智力。 來自神秘寶箱: 鑽石王者套裝(2/4)。",
"headArmoireFlutteryWigText": "翩翩飛舞假髮",
- "headArmoireFlutteryWigNotes": "這頂精美的撲粉歐式假髮裡有許許多多的空隙可以讓正聽您的吩咐而勞累的蝴蝶稍作休息、喘口氣。增加智力、感知、力量各 <%= attrs %> 點。 來自神秘寶箱: 飛舞連身裙套裝(2/4)",
+ "headArmoireFlutteryWigNotes": "這頂精美的撲粉歐式假髮裡有許許多多的空隙可以讓正聽您的吩咐而勞累的蝴蝶稍作休息、喘口氣。增加智力、感知、力量各 <%= attrs %> 點。 來自神秘寶箱: 飛舞連身裙套裝(2/4)。",
"headArmoireBirdsNestText": "鳥巢",
- "headArmoireBirdsNestNotes": "如果您開始感覺到頭上有些陣陣騷動且聽到不間斷吱吱喳喳的鳥聲音,這代表著這頂新帽子已經成為您的新朋友了。增加 <%= int %> 點智力。 來自神秘寶箱: 獨立裝備",
+ "headArmoireBirdsNestNotes": "如果您開始感覺到頭上有些陣陣騷動且聽到不間斷吱吱喳喳的鳥聲音,這代表著這頂新帽子已經成為您的新朋友了。增加 <%= int %> 點智力。 來自神秘寶箱: 獨立裝備。",
"headArmoirePaperBagText": "紙袋",
- "headArmoirePaperBagNotes": "這個袋子是個看起來很滑稽,戴上後卻意外地非常安全的頭盔 (別擔心,我們知道您戴上這之後看起來狀況非常好! ) 增加 <%= con %> 點體質。 來自神秘寶箱: 獨立裝備",
+ "headArmoirePaperBagNotes": "這個袋子是個看起來很滑稽,戴上後卻意外地非常安全的頭盔 (別擔心,我們知道您戴上這之後看起來狀況非常好! ) 增加 <%= con %> 點體質。 來自神秘寶箱: 獨立裝備。",
"headArmoireBigWigText": "巨大假髮",
- "headArmoireBigWigNotes": "撲粉假髮是為了讓人看起來更有威嚴,但這頂假髮只會讓人看了捧腹大笑而已! 增加 <%= str %> 點力量。 來自神祕寶箱: 獨立裝備。",
+ "headArmoireBigWigNotes": "撲粉假髮是為了讓人看起來更有威嚴,但這頂假髮只會讓人看了捧腹大笑而已! 增加 <%= str %> 點力量。 來自神秘寶箱: 獨立裝備。",
"headArmoireGlassblowersHatText": "玻璃吹製工工作帽",
- "headArmoireGlassblowersHatNotes": "這頂帽子與您的其他玻璃吹製工套裝穿搭在一起會看起來非常好看唷! 增加 <%= per %> 點感知。 來自神祕寶箱: 玻璃吹製工套裝(3/4)",
+ "headArmoireGlassblowersHatNotes": "這頂帽子與您的其他玻璃吹製工套裝穿搭在一起會看起來非常好看唷! 增加 <%= per %> 點感知。 來自神秘寶箱: 玻璃吹製工套裝(3/4)。",
"headArmoirePiraticalPrincessHeaddressText": "海盜公主頭飾",
- "headArmoirePiraticalPrincessHeaddressNotes": "自古以來經驗老到的海盜皆是以擁有高檔的頭飾而聞名的! 增加感知、智力各 <%= attrs %> 點。 來自神祕寶箱: 海盜公主套裝(1/4)",
+ "headArmoirePiraticalPrincessHeaddressNotes": "自古以來經驗老到的海盜皆是以擁有高檔的頭飾而聞名的! 增加感知、智力各 <%= attrs %> 點。 來自神秘寶箱: 海盜公主套裝(1/4)。",
"headArmoireJeweledArcherHelmText": "射手寶石頭盔",
- "headArmoireJeweledArcherHelmNotes": "這頂頭盔不僅看起來非常華麗,它還格外地輕穎和堅固。增加 <%= int %> 點智力。 來自神祕寶箱: 射手寶石套裝(1/3)",
+ "headArmoireJeweledArcherHelmNotes": "這頂頭盔不僅看起來非常華麗,它還格外地輕穎和堅固。增加 <%= int %> 點智力。 來自神秘寶箱: 射手寶石套裝(1/3)。",
"headArmoireVeilOfSpadesText": "黑桃面紗",
- "headArmoireVeilOfSpadesNotes": "一件朦朧而神秘的面紗,可以增加您的潛行能力。增加 <%= per %> 點感知。 來自神祕寶箱: 黑桃長矛套裝(1/3)",
+ "headArmoireVeilOfSpadesNotes": "一件朦朧而神秘的面紗,可以增加您的潛行能力。增加 <%= per %> 點感知。 來自神秘寶箱: 黑桃長矛套裝(1/3)。",
"offhand": "副手裝備",
"offhandCapitalized": "副手裝備",
"shieldBase0Text": "沒有副手裝備",
@@ -1315,238 +1315,238 @@
"shieldSpecialWakizashiText": "脇差",
"shieldSpecialWakizashiNotes": "(Wakizashi) 這把短刀是您正與每日任務近戰時的絕佳選擇! 增加 <%= con %> 點認知。",
"shieldSpecialYetiText": "雪怪馴化師護盾",
- "shieldSpecialYetiNotes": "這面護盾可映射雪光。增加 <%= con %> 點體質。 2013-2014冬季限定版裝備",
+ "shieldSpecialYetiNotes": "這面護盾可映射雪光。增加 <%= con %> 點體質。 2013-2014冬季限定版裝備。",
"shieldSpecialSnowflakeText": "雪花護盾",
- "shieldSpecialSnowflakeNotes": "每一面護盾都是獨一無二的。增加 <%= con %> 點體質。 2013-2014冬季限定版裝備",
+ "shieldSpecialSnowflakeNotes": "每一面護盾都是獨一無二的。增加 <%= con %> 點體質。 2013-2014冬季限定版裝備。",
"shieldSpecialSpringRogueText": "鉤爪",
- "shieldSpecialSpringRogueNotes": "非常適合用來攀爬高樓,當然也可以用來抓爛地毯。增加 <%= str %> 點力量。 2014年春季限定版裝備",
+ "shieldSpecialSpringRogueNotes": "非常適合用來攀爬高樓,當然也可以用來抓爛地毯。增加 <%= str %> 點力量。 2014年春季限定版裝備。",
"shieldSpecialSpringWarriorText": "蛋蛋護盾",
- "shieldSpecialSpringWarriorNotes": "無論您多用力地敲這面護盾,它就是永遠不會出現裂痕!增加 <%= con %> 點體質。 2014年春季限定版裝備",
+ "shieldSpecialSpringWarriorNotes": "無論您多用力地敲這面護盾,它就是永遠不會出現裂痕!增加 <%= con %> 點體質。 2014年春季限定版裝備。",
"shieldSpecialSpringHealerText": "終極護衛吱吱球",
- "shieldSpecialSpringHealerNotes": "在戰鬥中將盡情發出令人厭惡且不間斷的吱吱聲以驅趕敵人。增加 <%= con %> 點體質。 2014年春季限定版裝備",
+ "shieldSpecialSpringHealerNotes": "在戰鬥中將盡情發出令人厭惡且不間斷的吱吱聲以驅趕敵人。增加 <%= con %> 點體質。 2014年春季限定版裝備。",
"shieldSpecialSummerRogueText": "海盜彎刀",
- "shieldSpecialSummerRogueNotes": "停!!您這樣子會讓那些每日任務走上跳板一去不復返!增加 <%= str %> 點力量。 2014年夏季限定版裝備",
+ "shieldSpecialSummerRogueNotes": "停!!您這樣子會讓那些每日任務走上跳板一去不復返!增加 <%= str %> 點力量。 2014年夏季限定版裝備。",
"shieldSpecialSummerWarriorText": "漂流木盾",
- "shieldSpecialSummerWarriorNotes": "這面盾牌是由已沉船的漂流木所製成。但就算是最艱難的每日任務也能克服。增加 <%= con %> 點體質。 2014年夏季限定版裝備",
+ "shieldSpecialSummerWarriorNotes": "這面盾牌是由已沉船的漂流木所製成。但就算是最艱難的每日任務也能克服。增加 <%= con %> 點體質。 2014年夏季限定版裝備。",
"shieldSpecialSummerHealerText": "淺灘護盾",
- "shieldSpecialSummerHealerNotes": "看到這面閃亮亮的護盾,就沒人敢再來攻擊珊瑚礁!增加 <%= con %> 點體質。 2014年夏季限定版裝備",
+ "shieldSpecialSummerHealerNotes": "看到這面閃亮亮的護盾,就沒人敢再來攻擊珊瑚礁!增加 <%= con %> 點體質。 2014年夏季限定版裝備。",
"shieldSpecialFallRogueText": "銀製鐵樁",
- "shieldSpecialFallRogueNotes": "可以驅走亡靈,同時也能有效抵禦狼人,因為您應謹記凡事小心為上。增加 <%= str %> 點力量。 2014年秋季限定版裝備",
+ "shieldSpecialFallRogueNotes": "可以驅走亡靈,同時也能有效抵禦狼人,因為您應謹記凡事小心為上。增加 <%= str %> 點力量。 2014年秋季限定版裝備。",
"shieldSpecialFallWarriorText": "科學強效藥水",
- "shieldSpecialFallWarriorNotes": "灑滿於實驗室大衣上的神祕藥水。增加 <%= con %> 點體質。 2014年秋季限定版裝備",
+ "shieldSpecialFallWarriorNotes": "灑滿於實驗室大衣上的神祕藥水。增加 <%= con %> 點體質。 2014年秋季限定版裝備。",
"shieldSpecialFallHealerText": "寶石護盾",
- "shieldSpecialFallHealerNotes": "這面閃亮亮的護盾被發掘於一座古墓。增加 <%= con %> 點體質。 2014年秋季限定版裝備",
+ "shieldSpecialFallHealerNotes": "這面閃亮亮的護盾被發掘於一座古墓。增加 <%= con %> 點體質。 2014年秋季限定版裝備。",
"shieldSpecialWinter2015RogueText": "冰柱尖釘",
- "shieldSpecialWinter2015RogueNotes": "這真的是,完全是,絕對是剛從地上撿起來的。增加 <%= str %> 點力量。 2014-2015冬季限定版裝備",
+ "shieldSpecialWinter2015RogueNotes": "這真的是,完全是,絕對是剛從地上撿起來的。增加 <%= str %> 點力量。 2014-2015冬季限定版裝備。",
"shieldSpecialWinter2015WarriorText": "果凍糖護盾",
- "shieldSpecialWinter2015WarriorNotes": "這面看起來甜蜜蜜的護盾其實是由富有營養的植物性凝膠所製作而成的。增加 <%= con %> 點體質。 2014-2015冬季限定版裝備",
+ "shieldSpecialWinter2015WarriorNotes": "這面看起來甜蜜蜜的護盾其實是由富有營養的植物性凝膠所製作而成的。增加 <%= con %> 點體質。 2014-2015冬季限定版裝備。",
"shieldSpecialWinter2015HealerText": "鎮靜護盾",
- "shieldSpecialWinter2015HealerNotes": "這面護盾可抵擋刺骨的寒風。增加 <%= con %> 點體質。 2014-2015冬季限定版裝備",
+ "shieldSpecialWinter2015HealerNotes": "這面護盾可抵擋刺骨的寒風。增加 <%= con %> 點體質。 2014-2015冬季限定版裝備。",
"shieldSpecialSpring2015RogueText": "霹靂爆破管",
- "shieldSpecialSpring2015RogueNotes": "別被它軟弱的聲音給搞糊塗了——這爆炸威力可大得不得了。增加 <%= str %> 點力量。 2015年春季限定版裝備",
+ "shieldSpecialSpring2015RogueNotes": "別被它軟弱的聲音給搞糊塗了——這爆炸威力可大得不得了。增加 <%= str %> 點力量。 2015年春季限定版裝備。",
"shieldSpecialSpring2015WarriorText": "盤子鐵餅",
- "shieldSpecialSpring2015WarriorNotes": "向您的敵人擲去……或者也可以一直握著它,因為到了晚飯時間它就會自動裝滿美味的狗食。增加 <%= con %> 點體質。 2015年春季限定版裝備",
+ "shieldSpecialSpring2015WarriorNotes": "向您的敵人擲去……或者也可以一直握著它,因為到了晚飯時間它就會自動裝滿美味的狗食。增加 <%= con %> 點體質。 2015年春季限定版裝備。",
"shieldSpecialSpring2015HealerText": "圖騰枕頭",
- "shieldSpecialSpring2015HealerNotes": "您可以把頭靠在這塊軟綿綿的枕頭上,也可以用您可怕的爪子和它玩摔跤。嗷嗚!增加 <%= con %> 點體質。 2015年春季限定版裝備",
+ "shieldSpecialSpring2015HealerNotes": "您可以把頭靠在這塊軟綿綿的枕頭上,也可以用您可怕的爪子和它玩摔跤。嗷嗚!增加 <%= con %> 點體質。 2015年春季限定版裝備。",
"shieldSpecialSummer2015RogueText": "火焰珊瑚",
- "shieldSpecialSummer2015RogueNotes": "此火珊瑚具有能在水裡散播毒液的能力。增加 <%= str %> 點力量。 2015年夏季限定版裝備",
+ "shieldSpecialSummer2015RogueNotes": "此火珊瑚具有能在水裡散播毒液的能力。增加 <%= str %> 點力量。 2015年夏季限定版裝備。",
"shieldSpecialSummer2015WarriorText": "太陽魚護盾",
- "shieldSpecialSummer2015WarriorNotes": "由怠慢小鎮出生的工匠從深海金屬提煉製作而成。是頂堅固又兼具美觀的頭盔。增加 <%= con %> 點體質。2015年夏季限定版裝備",
+ "shieldSpecialSummer2015WarriorNotes": "由怠慢小鎮出生的工匠從深海金屬提煉製作而成。是頂堅固又兼具美觀的頭盔。增加 <%= con %> 點體質。2015年夏季限定版裝備。",
"shieldSpecialSummer2015HealerText": "橡皮膏護盾",
- "shieldSpecialSummer2015HealerNotes": "用這面盾牌擊退船艙裡的老鼠吧。增加 <%= con %> 點體質。 2015年夏季限定版裝備",
+ "shieldSpecialSummer2015HealerNotes": "用這面盾牌擊退船艙裡的老鼠吧。增加 <%= con %> 點體質。 2015年夏季限定版裝備。",
"shieldSpecialFall2015RogueText": "戰蝠巨斧",
- "shieldSpecialFall2015RogueNotes": "都在这把神斧的挥砍之下瑟瑟发抖。增加 <%= str %> 點力量。 2015年秋季限定版裝備",
+ "shieldSpecialFall2015RogueNotes": "都在这把神斧的挥砍之下瑟瑟发抖。增加 <%= str %> 點力量。 2015年秋季限定版裝備。",
"shieldSpecialFall2015WarriorText": "鳥飼料囊包",
- "shieldSpecialFall2015WarriorNotes": "沒錯,您是真的該嚇走這些烏鴉,但交些朋友也不是什麼壞事呀!增加 <%= con %> 點體質。 2015年秋季限定版裝備",
+ "shieldSpecialFall2015WarriorNotes": "沒錯,您是真的該嚇走這些烏鴉,但交些朋友也不是什麼壞事呀!增加 <%= con %> 點體質。 2015年秋季限定版裝備。",
"shieldSpecialFall2015HealerText": "攪拌棒",
- "shieldSpecialFall2015HealerNotes": "這根棒子無論攪拌任何東西都不會融化、溶解、更不會起火燃燒!您還可用它狠狠地戳向敵方的任務。增加 <%= con %> 點體質。 2015年秋季限定版裝備",
+ "shieldSpecialFall2015HealerNotes": "這根棒子無論攪拌任何東西都不會融化、溶解、更不會起火燃燒!您還可用它狠狠地戳向敵方的任務。增加 <%= con %> 點體質。 2015年秋季限定版裝備。",
"shieldSpecialWinter2016RogueText": "可可豆馬克杯",
- "shieldSpecialWinter2016RogueNotes": "這是一杯熱可可,還是炙手可熱的投擲物呢?由您決定!增加 <%= str %> 點力量。 2015-2016冬季限定版裝備",
+ "shieldSpecialWinter2016RogueNotes": "這是一杯熱可可,還是炙手可熱的投擲物呢?由您決定!增加 <%= str %> 點力量。 2015-2016冬季限定版裝備。",
"shieldSpecialWinter2016WarriorText": "雪橇護盾",
- "shieldSpecialWinter2016WarriorNotes": "用這塊雪橇來格擋攻擊,或者乘著它華麗地進入戰場! 增加 <%= con %> 點體質。 2015-2016冬季限定版裝備",
+ "shieldSpecialWinter2016WarriorNotes": "用這塊雪橇來格擋攻擊,或者乘著它華麗地進入戰場! 增加 <%= con %> 點體質。 2015-2016冬季限定版裝備。",
"shieldSpecialWinter2016HealerText": "小仙子禮物",
- "shieldSpecialWinter2016HealerNotes": "快拆開來快拆開來快拆開來! 因為很重要,所以要說三次!!!!!! 增加 <%= con %> 點感知。 2015-2016冬季限定版裝備",
+ "shieldSpecialWinter2016HealerNotes": "快拆開來快拆開來快拆開來! 因為很重要,所以要說三次!!!!!! 增加 <%= con %> 點感知。 2015-2016冬季限定版裝備。",
"shieldSpecialSpring2016RogueText": "鍊火球",
- "shieldSpecialSpring2016RogueNotes": "您已精通了錘球、棍棒、和小刀。現在您可晉身到雜耍火球! 啊嗚! 增加 <%= str %> 點力量。 2016年春季限定版裝備",
+ "shieldSpecialSpring2016RogueNotes": "您已精通了錘球、棍棒、和小刀。現在您可晉身到雜耍火球! 啊嗚! 增加 <%= str %> 點力量。 2016年春季限定版裝備。",
"shieldSpecialSpring2016WarriorText": "起司輪盤",
- "shieldSpecialSpring2016WarriorNotes": "您勇敢地面對惡魔的陷阱並取得這份能夠提升防禦的食物。增加 <%= con %> 點體質。 2016年春季限定版裝備",
+ "shieldSpecialSpring2016WarriorNotes": "您勇敢地面對惡魔的陷阱並取得這份能夠提升防禦的食物。增加 <%= con %> 點體質。 2016年春季限定版裝備。",
"shieldSpecialSpring2016HealerText": "花卉圓盾",
- "shieldSpecialSpring2016HealerNotes": "愚人節宣稱這副小而美的護盾將能阻止閃亮種子的侵襲。千萬別相信它。增加 <%= con %> 點體質。 2016年春季限定版裝備",
+ "shieldSpecialSpring2016HealerNotes": "愚人節宣稱這副小而美的護盾將能阻止閃亮種子的侵襲。千萬別相信它。增加 <%= con %> 點體質。 2016年春季限定版裝備。",
"shieldSpecialSummer2016RogueText": "電桿",
- "shieldSpecialSummer2016RogueNotes": "所有與您戰鬥的人都將會得到一份觸目驚心的驚喜... 增加 <%= str %> 點力量。 2016年夏季限定版裝備",
+ "shieldSpecialSummer2016RogueNotes": "所有與您戰鬥的人都將會得到一份觸目驚心的驚喜... 增加 <%= str %> 點力量。 2016年夏季限定版裝備。",
"shieldSpecialSummer2016WarriorText": "鯊魚牙齒",
- "shieldSpecialSummer2016WarriorNotes": "用這副齒盾來盡情撕咬那些艱鉅的任務吧! 增加 <%= con %> 點體質。 2016年夏季限定版裝備",
+ "shieldSpecialSummer2016WarriorNotes": "用這副齒盾來盡情撕咬那些艱鉅的任務吧! 增加 <%= con %> 點體質。 2016年夏季限定版裝備。",
"shieldSpecialSummer2016HealerText": "海星護盾",
- "shieldSpecialSummer2016HealerNotes": "有時會被誤叫做星海護盾。增加 <%= con %> 點體質。 2016年夏季限定版裝備",
+ "shieldSpecialSummer2016HealerNotes": "有時會被誤叫做星海護盾。增加 <%= con %> 點體質。 2016年夏季限定版裝備。",
"shieldSpecialFall2016RogueText": "蛛咬匕首",
- "shieldSpecialFall2016RogueNotes": "感受一下被蜘蛛咬到的刺痛感吧! 增加 <%= str %> 點力量。 2016年秋季限定版裝備",
+ "shieldSpecialFall2016RogueNotes": "感受一下被蜘蛛咬到的刺痛感吧! 增加 <%= str %> 點力量。 2016年秋季限定版裝備。",
"shieldSpecialFall2016WarriorText": "防禦樹根",
- "shieldSpecialFall2016WarriorNotes": "用這條扭曲的樹根來對抗每日任務吧! 增加 <%= con %> 點體質。 2016年秋季限定版裝備",
+ "shieldSpecialFall2016WarriorNotes": "用這條扭曲的樹根來對抗每日任務吧! 增加 <%= con %> 點體質。 2016年秋季限定版裝備。",
"shieldSpecialFall2016HealerText": "蛇髮女妖護盾",
- "shieldSpecialFall2016HealerNotes": "(Gorgon) 千萬別陶醉於這面護盾映射中的自己。增加 <%= con %> 點體質。 2016年秋季限定版裝備",
+ "shieldSpecialFall2016HealerNotes": "(Gorgon) 千萬別陶醉於這面護盾映射中的自己。增加 <%= con %> 點體質。 2016年秋季限定版裝備。",
"shieldSpecialWinter2017RogueText": "冰之巨斧",
- "shieldSpecialWinter2017RogueNotes": "這根斧頭非常適合拿來攻擊、防禦、甚至是攀登冰坡! 增加 <%= str %> 點力量。 2016-2017冬季限定版裝備",
+ "shieldSpecialWinter2017RogueNotes": "這根斧頭非常適合拿來攻擊、防禦、甚至是攀登冰坡! 增加 <%= str %> 點力量。 2016-2017冬季限定版裝備。",
"shieldSpecialWinter2017WarriorText": "冰上曲棍球護盾",
- "shieldSpecialWinter2017WarriorNotes": "這面盾牌是由巨大的冰上曲棍球所製成,能夠禁得起相當大的撞擊力道。增加 <%= con %> 點體質。 2016-2017冬季限定版裝備",
+ "shieldSpecialWinter2017WarriorNotes": "這面盾牌是由巨大的冰上曲棍球所製成,能夠禁得起相當大的撞擊力道。增加 <%= con %> 點體質。 2016-2017冬季限定版裝備。",
"shieldSpecialWinter2017HealerText": "酸梅護盾",
- "shieldSpecialWinter2017HealerNotes": "這套充滿纖維的裝備就算是碰到最酸溜溜的任務也能夠抵禦下來! 增加 <%= con %> 點體質。 2016-2017冬季限定版裝備",
+ "shieldSpecialWinter2017HealerNotes": "這套充滿纖維的裝備就算是碰到最酸溜溜的任務也能夠抵禦下來! 增加 <%= con %> 點體質。 2016-2017冬季限定版裝備。",
"shieldSpecialSpring2017RogueText": "胡蘿蔔武士刀",
- "shieldSpecialSpring2017RogueNotes": "這把利刃不但能加速完成任務,而且還非常方便於切蔬菜! Yum! 增加 <%= str %> 點力量。 2017年春季限定版裝備",
+ "shieldSpecialSpring2017RogueNotes": "這把利刃不但能加速完成任務,而且還非常方便於切蔬菜! Yum! 增加 <%= str %> 點力量。 2017年春季限定版裝備。",
"shieldSpecialSpring2017WarriorText": "紡紗護盾",
- "shieldSpecialSpring2017WarriorNotes": "這面護盾上的任何一條纖維皆由防護咒語所編織而成! 千萬不要玩(壞)它。增加 <%= con %> 點體質。 2017年春季限定版裝備",
+ "shieldSpecialSpring2017WarriorNotes": "這面護盾上的任何一條纖維皆由防護咒語所編織而成! 千萬不要玩(壞)它。增加 <%= con %> 點體質。 2017年春季限定版裝備。",
"shieldSpecialSpring2017HealerText": "編織籃護盾",
- "shieldSpecialSpring2017HealerNotes": "這面護盾不僅能夠用來防禦,對於放置您採集來的草藥和隨身裝備也非常方便。增加 <%= con %> 點體質。 2017年春季限定版裝備",
+ "shieldSpecialSpring2017HealerNotes": "這面護盾不僅能夠用來防禦,對於放置您採集來的草藥和隨身裝備也非常方便。增加 <%= con %> 點體質。 2017年春季限定版裝備。",
"shieldSpecialSummer2017RogueText": "海龍魚鰭",
- "shieldSpecialSummer2017RogueNotes": "這些鰭有著像剃刀般鋒利的邊緣。增加 <%= str %> 點力量。 2017年夏季限定版裝備",
+ "shieldSpecialSummer2017RogueNotes": "這些鰭有著像剃刀般鋒利的邊緣。增加 <%= str %> 點力量。 2017年夏季限定版裝備。",
"shieldSpecialSummer2017WarriorText": "紫扇貝護盾",
- "shieldSpecialSummer2017WarriorNotes": "您剛找到的貝殼同時兼具裝飾性和防禦性! 增加 <%= con %> 點體質。 2017年夏季限定版裝備",
+ "shieldSpecialSummer2017WarriorNotes": "您剛找到的貝殼同時兼具裝飾性和防禦性! 增加 <%= con %> 點體質。 2017年夏季限定版裝備。",
"shieldSpecialSummer2017HealerText": "牡蠣護盾",
- "shieldSpecialSummer2017HealerNotes": "這顆魔法牡蠣時時刻刻都在為您帶來珍珠和保護。增加 <%= con %> 點體質。 2017年夏季限定版裝備",
+ "shieldSpecialSummer2017HealerNotes": "這顆魔法牡蠣時時刻刻都在為您帶來珍珠和保護。增加 <%= con %> 點體質。 2017年夏季限定版裝備。",
"shieldSpecialFall2017RogueText": "蘋果糖葫蘆權杖",
- "shieldSpecialFall2017RogueNotes": "用甜蜜蜜香死您的敵人吧! 增加 <%= str %> 點力量。 2017年限定版秋季裝備",
+ "shieldSpecialFall2017RogueNotes": "用甜蜜蜜香死您的敵人吧! 增加 <%= str %> 點力量。 2017年限定版秋季裝備。",
"shieldSpecialFall2017WarriorText": "玉米糖漿護盾",
- "shieldSpecialFall2017WarriorNotes": "這面糖果護盾擁有非常強力的防禦力量,可別因為一時的嘴饞而去咬它喔! 增加 <%= con %> 點體質。 2017年秋季限定版裝備",
+ "shieldSpecialFall2017WarriorNotes": "這面糖果護盾擁有非常強力的防禦力量,可別因為一時的嘴饞而去咬它喔! 增加 <%= con %> 點體質。 2017年秋季限定版裝備。",
"shieldSpecialFall2017HealerText": "幽靈寶珠",
- "shieldSpecialFall2017HealerNotes": "這顆小球不定期會發出尖叫聲。我們深表歉意,因為我們也不知道確切的原因。但它看起來真的非常俏皮可愛! 增加 <%= con %> 點體質。 2017年秋季限定版裝備",
+ "shieldSpecialFall2017HealerNotes": "這顆小球不定期會發出尖叫聲。我們深表歉意,因為我們也不知道確切的原因。但它看起來真的非常俏皮可愛! 增加 <%= con %> 點體質。 2017年秋季限定版裝備。",
"shieldSpecialWinter2018RogueText": "紅色貓薄荷掛鉤",
- "shieldSpecialWinter2018RogueNotes": "此裝備極為適合用於攀爬圍牆或利用掛鉤上甜美多汁的糖果來分散敵人的注意力。增加 <%= str %> 點力量。 2017-2018冬季限定版裝備",
+ "shieldSpecialWinter2018RogueNotes": "此裝備極為適合用於攀爬圍牆或利用掛鉤上甜美多汁的糖果來分散敵人的注意力。增加 <%= str %> 點力量。 2017-2018冬季限定版裝備。",
"shieldSpecialWinter2018WarriorText": "魔術禮物包",
- "shieldSpecialWinter2018WarriorNotes": "任何您想要的實用物品都可以在這個麻袋裡找到。只要您能低語說出正確的通關咒語。增加 <%= con %> 點體質。 2017-2018冬季限定版裝備",
+ "shieldSpecialWinter2018WarriorNotes": "任何您想要的實用物品都可以在這個麻袋裡找到。只要您能低語說出正確的通關咒語。增加 <%= con %> 點體質。 2017-2018冬季限定版裝備。",
"shieldSpecialWinter2018HealerText": "槲寄生鈴鐺",
- "shieldSpecialWinter2018HealerNotes": "那是甚麼聲音? 就是那所有人都能聽見的暖心歡呼聲! 增加 <%= con %> 點體質。 2017-2018冬季限定版裝備",
+ "shieldSpecialWinter2018HealerNotes": "那是甚麼聲音? 就是那所有人都能聽見的暖心歡呼聲! 增加 <%= con %> 點體質。 2017-2018冬季限定版裝備。",
"shieldSpecialSpring2018WarriorText": "早晨護盾",
- "shieldSpecialSpring2018WarriorNotes": "這面堅固的護盾能與輝煌的第一道曙光一同發光發熱。增加 <%= con %> 點體質。 2018年春季限定版裝備",
+ "shieldSpecialSpring2018WarriorNotes": "這面堅固的護盾能與輝煌的第一道曙光一同發光發熱。增加 <%= con %> 點體質。 2018年春季限定版裝備。",
"shieldSpecialSpring2018HealerText": "石榴石護盾",
- "shieldSpecialSpring2018HealerNotes": "這面護盾不但擁有華麗的外表,還非常耐用呢! 增加 <%= con %> 點體質。 2018年春季限定版裝備",
+ "shieldSpecialSpring2018HealerNotes": "這面護盾不但擁有華麗的外表,還非常耐用呢! 增加 <%= con %> 點體質。 2018年春季限定版裝備。",
"shieldSpecialSummer2018WarriorText": "鬥魚骨護盾",
- "shieldSpecialSummer2018WarriorNotes": "以石頭塑成,這面嚇人的魚骨護盾能在與骸骨寵物和坐騎們齊聚一堂時,讓所有魚類敵人都深感畏懼。增加 <%= con %> 點體質。 2018年夏季限量版裝備",
+ "shieldSpecialSummer2018WarriorNotes": "以石頭塑成,這面嚇人的魚骨護盾能在與骸骨寵物和坐騎們齊聚一堂時,讓所有魚類敵人都深感畏懼。增加 <%= con %> 點體質。 2018年夏季限量版裝備。",
"shieldSpecialSummer2018HealerText": "人魚帝王紋章",
- "shieldSpecialSummer2018HealerNotes": "這面盾牌能夠製造出充滿空氣的球狀空間,以利來自陸地上的訪客拜訪您的水中王國時能夠呼吸。增加 <%= con %> 點體質。2018年夏季限量版裝備",
+ "shieldSpecialSummer2018HealerNotes": "這面盾牌能夠製造出充滿空氣的球狀空間,以利來自陸地上的訪客拜訪您的水中王國時能夠呼吸。增加 <%= con %> 點體質。2018年夏季限量版裝備。",
"shieldSpecialFall2018RogueText": "迷惑藥水瓶",
- "shieldSpecialFall2018RogueNotes": "這瓶子代表了所有讓您分心或讓您不能成為最佳自我的雜事! 請忍住! 我們為您歡呼! 增加 <%= str %> 點力量。 2018年秋季限定版裝備",
+ "shieldSpecialFall2018RogueNotes": "這瓶子代表了所有讓您分心或讓您不能成為最佳自我的雜事! 請忍住! 我們為您歡呼! 增加 <%= str %> 點力量。 2018年秋季限定版裝備。",
"shieldSpecialFall2018WarriorText": "輝煌護盾",
- "shieldSpecialFall2018WarriorNotes": "像黃金般地閃耀以阻止煩人的蛇髮女妖不再跟您玩躲貓貓! 增加 <%= con %> 點體質。 2018年秋季限定版裝備",
+ "shieldSpecialFall2018WarriorNotes": "像黃金般地閃耀以阻止煩人的蛇髮女妖不再跟您玩躲貓貓! 增加 <%= con %> 點體質。 2018年秋季限定版裝備。",
"shieldSpecialFall2018HealerText": "飢餓護盾",
- "shieldSpecialFall2018HealerNotes": "這面護盾擁有寬闊的嗦囊能夠吸收所有敵人的轟炸。增加 <%= con %> 點體質。 2018年秋季限定版裝備",
+ "shieldSpecialFall2018HealerNotes": "這面護盾擁有寬闊的嗦囊能夠吸收所有敵人的轟炸。增加 <%= con %> 點體質。 2018年秋季限定版裝備。",
"shieldSpecialWinter2019WarriorText": "冰霜護盾",
- "shieldSpecialWinter2019WarriorNotes": "這面盾牌是使用來自Stoïkalm草原中最古老的冰川的冰塊所製成的。增加體質 <%= con %> 點。 2018-2019冬季限定版裝備",
+ "shieldSpecialWinter2019WarriorNotes": "這面盾牌是使用來自Stoïkalm草原中最古老的冰川的冰塊所製成的。增加體質 <%= con %> 點。 2018-2019冬季限定版裝備。",
"shieldSpecialWinter2019HealerText": "附魔冰晶",
- "shieldSpecialWinter2019HealerNotes": "這細薄的冰可能很脆弱,但這完美的冰晶會在它掉落前自動迴避掉落。增加 <%= con %> 點體質。 2018-2019冬季限定版裝備",
+ "shieldSpecialWinter2019HealerNotes": "這細薄的冰可能很脆弱,但這完美的冰晶會在它掉落前自動迴避掉落。增加 <%= con %> 點體質。 2018-2019冬季限定版裝備。",
"shieldMystery201601Text": "決心屠殺者",
- "shieldMystery201601Notes": "這把劍能夠斬除所有的干擾物。無屬性加成。 2016年1月訂閱者專屬裝備",
+ "shieldMystery201601Notes": "這把劍能夠斬除所有的干擾物。無屬性加成。 2016年1月訂閱者專屬裝備。",
"shieldMystery201701Text": "時間凍結護盾",
- "shieldMystery201701Notes": "時間速速凍! 快來征服您的任務吧! 無屬性加成。 2017年1月訂閱者專屬裝備",
+ "shieldMystery201701Notes": "時間速速凍! 快來征服您的任務吧! 無屬性加成。 2017年1月訂閱者專屬裝備。",
"shieldMystery201708Text": "熔岩護盾",
- "shieldMystery201708Notes": "這面崎嶇不平的熔岩護盾可以保護您不受壞習慣的傷害。使用時保證不會燙傷您的手。無屬性加成。 2017年8月訂閱者專屬裝備",
+ "shieldMystery201708Notes": "這面崎嶇不平的熔岩護盾可以保護您不受壞習慣的傷害。使用時保證不會燙傷您的手。無屬性加成。 2017年8月訂閱者專屬裝備。",
"shieldMystery201709Text": "《魔法入門手冊》",
- "shieldMystery201709Notes": "這本書將逐步引導您進入巫術世界。無屬性加成。 2017年9月訂閱者專屬裝備",
+ "shieldMystery201709Notes": "這本書將逐步引導您進入巫術世界。無屬性加成。 2017年9月訂閱者專屬裝備。",
"shieldMystery201802Text": "蟲粉護盾",
- "shieldMystery201802Notes": "這面護盾雖然看起來很像是顆易碎的糖果,但它甚至可以抵擋最強大的粉碎破心術攻擊! 無屬性加成。 2018年2月訂閱者專屬裝備",
+ "shieldMystery201802Notes": "這面護盾雖然看起來很像是顆易碎的糖果,但它甚至可以抵擋最強大的粉碎破心術攻擊! 無屬性加成。 2018年2月訂閱者專屬裝備。",
"shieldMystery301405Text": "時鐘護盾",
- "shieldMystery301405Notes": "擁有這面巨大的時鐘護盾,時間就能與您同在! 無屬性加成。 3015年6月訂閱者專屬裝備",
+ "shieldMystery301405Notes": "擁有這面巨大的時鐘護盾,時間就能與您同在! 無屬性加成。 3015年6月訂閱者專屬裝備。",
"shieldMystery301704Text": "輕盈紙扇",
- "shieldMystery301704Notes": "這把高尚的扇子能讓您感到涼爽,並且讓您看起來非常時髦! 無屬性加成。 3017年4月訂閱者專屬裝備",
+ "shieldMystery301704Notes": "這把高尚的扇子能讓您感到涼爽,並且讓您看起來非常時髦! 無屬性加成。 3017年4月訂閱者專屬裝備。",
"shieldArmoireGladiatorShieldText": "角鬥士護盾",
- "shieldArmoireGladiatorShieldNotes": "想成為一名夠格的角鬥士,您不僅要⋯⋯算了隨便啦,用盾牌打爆他們就對了。增加 <%= con %> 點體質和 <%= str %> 點力量。 來自神祕寶箱: 角鬥士套裝(3/3)",
+ "shieldArmoireGladiatorShieldNotes": "想成為一名夠格的角鬥士,您不僅要⋯⋯算了隨便啦,用盾牌打爆他們就對了。增加 <%= con %> 點體質和 <%= str %> 點力量。 來自神秘寶箱: 角鬥士套裝(3/3)。",
"shieldArmoireMidnightShieldText": "午夜護盾",
- "shieldArmoireMidnightShieldNotes": "在午夜鐘聲響起時,這面盾牌將會展現它最大的力量! 增加 <%= con %> 點體質和 <%= str %> 點力量。 來自神祕寶箱: 獨立裝備",
+ "shieldArmoireMidnightShieldNotes": "在午夜鐘聲響起時,這面盾牌將會展現它最大的力量! 增加 <%= con %> 點體質和 <%= str %> 點力量。 來自神秘寶箱: 獨立裝備。",
"shieldArmoireRoyalCaneText": "皇家手杖",
- "shieldArmoireRoyalCaneNotes": "皇上萬歲!為此高唱!增加體質、智力、感知各<%= attrs %>點。 來自神秘寶箱: 皇家套裝(2/3)",
+ "shieldArmoireRoyalCaneNotes": "皇上萬歲!為此高唱!增加體質、智力、感知各<%= attrs %>點。 來自神秘寶箱: 皇家套裝(2/3)。",
"shieldArmoireDragonTamerShieldText": "馴龍師護盾",
- "shieldArmoireDragonTamerShieldNotes": "快用這面龍形護盾來轉移敵人的注意力吧! 增加 <%= per %> 點感知。 來自神秘寶箱: 馴龍師套裝(2/3)",
+ "shieldArmoireDragonTamerShieldNotes": "快用這面龍形護盾來轉移敵人的注意力吧! 增加 <%= per %> 點感知。 來自神秘寶箱: 馴龍師套裝(2/3)。",
"shieldArmoireMysticLampText": "神秘油燈",
- "shieldArmoireMysticLampNotes": "用這神秘的油燈照亮黑暗的洞穴! 增加 <%= per %> 點感知。 來自神祕寶箱: 獨立裝備",
+ "shieldArmoireMysticLampNotes": "用這神秘的油燈照亮黑暗的洞穴! 增加 <%= per %> 點感知。 來自神秘寶箱: 獨立裝備。",
"shieldArmoireFloralBouquetText": "鮮花花束",
- "shieldArmoireFloralBouquetNotes": "這對戰鬥沒啥幫助。但您不覺得它很漂亮嗎? 增加 <%= con %> 點體質。 來自神祕寶箱: 獨立裝備",
+ "shieldArmoireFloralBouquetNotes": "這對戰鬥沒啥幫助。但您不覺得它很漂亮嗎? 增加 <%= con %> 點體質。 來自神秘寶箱: 獨立裝備。",
"shieldArmoireSandyBucketText": "沙桶",
- "shieldArmoireSandyBucketNotes": "最適合用來容納您完成任務後獲得的金幣! 增加 <%= per %> 點感知。 來自神祕寶箱: 海濱套裝(3/3)",
+ "shieldArmoireSandyBucketNotes": "最適合用來容納您完成任務後獲得的金幣! 增加 <%= per %> 點感知。 來自神秘寶箱: 海濱套裝(3/3)。",
"shieldArmoirePerchingFalconText": "棲息獵鷹",
- "shieldArmoirePerchingFalconNotes": "您的獵鷹好友正棲息在您的手臂上,隨時準備撲向您的敵人。增加 <%= str %> 點力量。 來自神秘寶箱: 獵鷹者套裝(3/3)",
+ "shieldArmoirePerchingFalconNotes": "您的獵鷹好友正棲息在您的手臂上,隨時準備撲向您的敵人。增加 <%= str %> 點力量。 來自神秘寶箱: 獵鷹者套裝(3/3)。",
"shieldArmoireRamHornShieldText": "牡羊角護盾",
- "shieldArmoireRamHornShieldNotes": "用這面護盾狠狠地甩向看您不順眼的每日任務! 增加感知、力量各 <%= attrs %> 點。 來自神祕寶箱: 牡羊野蠻人套裝(3/3)",
+ "shieldArmoireRamHornShieldNotes": "用這面護盾狠狠地甩向看您不順眼的每日任務! 增加感知、力量各 <%= attrs %> 點。 來自神秘寶箱: 牡羊野蠻人套裝(3/3)。",
"shieldArmoireRedRoseText": "紅玫瑰",
- "shieldArmoireRedRoseNotes": "這朵深紅色玫瑰聞起來相當迷人。它同時還能增強您的理解力。增加 <%= per %> 點感知。 來自神祕寶箱: 獨立裝備",
+ "shieldArmoireRedRoseNotes": "這朵深紅色玫瑰聞起來相當迷人。它同時還能增強您的理解力。增加 <%= per %> 點感知。 來自神秘寶箱: 獨立裝備。",
"shieldArmoireMushroomDruidShieldText": "德魯伊蘑菇護盾",
- "shieldArmoireMushroomDruidShieldNotes": "Mushroom Druid Shield。 雖然是用蘑菇製成的,卻堅硬無比! 增加 <%= con %> 點體質和 <%= str %> 點力量。 來自神祕寶箱: 德魯伊蘑菇套裝(3/3)",
+ "shieldArmoireMushroomDruidShieldNotes": "Mushroom Druid Shield。 雖然是用蘑菇製成的,卻堅硬無比! 增加 <%= con %> 點體質和 <%= str %> 點力量。 來自神秘寶箱: 德魯伊蘑菇套裝(3/3)。",
"shieldArmoireFestivalParasolText": "慶典陽傘",
- "shieldArmoireFestivalParasolNotes": "這把輕穎的陽傘可以幫您抵禦強光。不論它是來自於太陽,亦或是深紅色的每日任務! 增加 <%= con %> 點體質。 來自神祕寶箱: 節日慶典套裝(2/3)",
+ "shieldArmoireFestivalParasolNotes": "這把輕穎的陽傘可以幫您抵禦強光。不論它是來自於太陽,亦或是深紅色的每日任務! 增加 <%= con %> 點體質。 來自神秘寶箱: 節日慶典套裝(2/3)。",
"shieldArmoireVikingShieldText": "維京海盜護盾",
- "shieldArmoireVikingShieldNotes": "這面由結實的木頭和獸皮製作而成的護盾能夠抵禦最令人畏懼的敵人。增加 <%= per %> 點感知和 <%= int %> 點智力。 來自神祕寶箱: 維京海盜套裝(3/3)",
+ "shieldArmoireVikingShieldNotes": "這面由結實的木頭和獸皮製作而成的護盾能夠抵禦最令人畏懼的敵人。增加 <%= per %> 點感知和 <%= int %> 點智力。 來自神秘寶箱: 維京海盜套裝(3/3)。",
"shieldArmoireSwanFeatherFanText": "天鵝毛風扇",
- "shieldArmoireSwanFeatherFanNotes": "當您在跳舞時,使用這把扇子能讓您的動作變得更優美,宛如一隻翩翩起舞的優雅天鵝。增加 <%= str %> 點力量。 來自神祕寶箱: 天鵝湖舞者套裝(3/3)",
+ "shieldArmoireSwanFeatherFanNotes": "當您在跳舞時,使用這把扇子能讓您的動作變得更優美,宛如一隻翩翩起舞的優雅天鵝。增加 <%= str %> 點力量。 來自神秘寶箱: 天鵝湖舞者套裝(3/3)。",
"shieldArmoireGoldenBatonText": "黃金指揮棒",
- "shieldArmoireGoldenBatonNotes": "當您跳進戰爭後跟著節奏揮舞這跟指揮棒,您簡直銳不可擋! 增加智力、力量各 <%= attrs %> 點。 來自神祕寶箱: 獨立裝備",
+ "shieldArmoireGoldenBatonNotes": "當您跳進戰爭後跟著節奏揮舞這跟指揮棒,您簡直銳不可擋! 增加智力、力量各 <%= attrs %> 點。 來自神秘寶箱: 獨立裝備。",
"shieldArmoireAntiProcrastinationShieldText": "反怠惰護盾",
- "shieldArmoireAntiProcrastinationShieldNotes": "這面堅固的鋼盾將能幫您擋下分心物的干擾! 增加 <%= con %> 點體質。 來自神祕寶箱: 反怠惰套裝(3/3)",
+ "shieldArmoireAntiProcrastinationShieldNotes": "這面堅固的鋼盾將能幫您擋下分心物的干擾! 增加 <%= con %> 點體質。 來自神秘寶箱: 反怠惰套裝(3/3)。",
"shieldArmoireHorseshoeText": "馬蹄鐵",
- "shieldArmoireHorseshoeNotes": "快用這塊鐵製的馬蹄保護您飼養的坐騎之腳吧。增加 體質、感知、力量各 <%= attrs %> 點。 來自神祕寶箱: 蹄鐵工套裝(3/3)",
+ "shieldArmoireHorseshoeNotes": "快用這塊鐵製的馬蹄保護您飼養的坐騎之腳吧。增加 體質、感知、力量各 <%= attrs %> 點。 來自神秘寶箱: 蹄鐵工套裝(3/3)。",
"shieldArmoireHandmadeCandlestickText": "手工蠟燭台",
- "shieldArmoireHandmadeCandlestickNotes": "您精美的蠟製品為心懷感激的 Habitica 鄉民提供光明和溫暖! 增加 <%= str %> 點力量。 來自神祕寶箱: 蠟燭台製作師套裝(3/3)",
+ "shieldArmoireHandmadeCandlestickNotes": "您精美的蠟製品為心懷感激的 Habitica 鄉民提供光明和溫暖! 增加 <%= str %> 點力量。 來自神秘寶箱: 蠟燭台製作師套裝(3/3)。",
"shieldArmoireWeaversShuttleText": "織女的梭子",
- "shieldArmoireWeaversShuttleNotes": "這個工具在您的經緯線之間來回穿梭,並製作出一塊布! 增加 <%= int %> 點智力和 <%= per %> 點感知。 來自神秘寶箱: 織布工套裝(3/3)",
+ "shieldArmoireWeaversShuttleNotes": "這個工具在您的經緯線之間來回穿梭,並製作出一塊布! 增加 <%= int %> 點智力和 <%= per %> 點感知。 來自神秘寶箱: 織布工套裝(3/3)。",
"shieldArmoireShieldOfDiamondsText": "鑽石護盾",
- "shieldArmoireShieldOfDiamondsNotes": "這面閃耀的護盾不但能提供保護,還能賜予您耐力! 增加 <%= con %> 點體質。 來自神秘寶箱: 鑽石王者套裝(4/4)",
+ "shieldArmoireShieldOfDiamondsNotes": "這面閃耀的護盾不但能提供保護,還能賜予您耐力! 增加 <%= con %> 點體質。 來自神秘寶箱: 鑽石王者套裝(4/4)。",
"shieldArmoireFlutteryFanText": "翩翩飛舞紙扇",
- "shieldArmoireFlutteryFanNotes": "炎炎夏日中,除了它,沒有任何東西能同時讓您看起來和感覺起來更清爽。 增加體質、智力、感知各 <%= attrs %> 點。 來自神秘寶箱: 飛舞連身裙套裝(4/4)",
+ "shieldArmoireFlutteryFanNotes": "炎炎夏日中,除了它,沒有任何東西能同時讓您看起來和感覺起來更清爽。 增加體質、智力、感知各 <%= attrs %> 點。 來自神秘寶箱: 飛舞連身裙套裝(4/4)。",
"shieldArmoireFancyShoeText": "高級高跟鞋",
- "shieldArmoireFancyShoeNotes": "這是您正在製作中的訂製高跟鞋。它非常適合皇家成員! 增加智力、感知各 <%= attrs %> 點。 來自神秘寶箱: 鞋匠套裝(3/3)",
+ "shieldArmoireFancyShoeNotes": "這是您正在製作中的訂製高跟鞋。它非常適合皇家成員! 增加智力、感知各 <%= attrs %> 點。 來自神秘寶箱: 鞋匠套裝(3/3)。",
"shieldArmoireFancyBlownGlassVaseText": "華麗吹製玻璃花瓶",
- "shieldArmoireFancyBlownGlassVaseNotes": "您做出來的花瓶是多麼的高尚啊! 您會想要將甚麼東西放在這裡頭呢? 增加 <%= int %> 點智力。 來自神秘寶箱: 玻璃吹製工套裝(4/4)",
+ "shieldArmoireFancyBlownGlassVaseNotes": "您做出來的花瓶是多麼的高尚啊! 您會想要將甚麼東西放在這裡頭呢? 增加 <%= int %> 點智力。 來自神秘寶箱: 玻璃吹製工套裝(4/4)。",
"shieldArmoirePiraticalSkullShieldText": "海盜骷髏護盾",
- "shieldArmoirePiraticalSkullShieldNotes": "這面附魔過的護盾將能竊聽敵人寶藏的藏匿點。請仔細聆聽! 增加感知、智力各 <%= attrs %> 點。 來自神秘寶箱: 海盜公主套裝(4/4)",
+ "shieldArmoirePiraticalSkullShieldNotes": "這面附魔過的護盾將能竊聽敵人寶藏的藏匿點。請仔細聆聽! 增加感知、智力各 <%= attrs %> 點。 來自神秘寶箱: 海盜公主套裝(4/4)。",
"shieldArmoireUnfinishedTomeText": "未完成的巨著",
- "shieldArmoireUnfinishedTomeNotes": "當您持有這本書時,您完全無法怠慢! 因為這本書的裝訂需要盡快被完成,才能讓大家讀這本書! 增加 <%= int %> 點致力。 來自神秘寶箱: 圖書裝訂工套裝(4/4)",
+ "shieldArmoireUnfinishedTomeNotes": "當您持有這本書時,您完全無法怠慢! 因為這本書的裝訂需要盡快被完成,才能讓大家讀這本書! 增加 <%= int %> 點致力。 來自神秘寶箱: 圖書裝訂工套裝(4/4)。",
"shieldArmoireSoftBluePillowText": "柔軟藍枕頭",
- "shieldArmoireSoftBluePillowNotes": "明智的戰士都會在遠征時多準備一個枕頭。可以保護自己免於被鋒利的任務傷害...甚至是您正在小睡的時候。增加 <%= con %> 點體質。 來自神祕寶箱: 淺藍睡衣套裝(3/3)",
+ "shieldArmoireSoftBluePillowNotes": "明智的戰士都會在遠征時多準備一個枕頭。可以保護自己免於被鋒利的任務傷害...甚至是您正在小睡的時候。增加 <%= con %> 點體質。 來自神秘寶箱: 淺藍睡衣套裝(3/3)。",
"shieldArmoireSoftRedPillowText": "柔軟紅枕頭",
- "shieldArmoireSoftRedPillowNotes": "已做好萬全準備的戰士都會在遠征前準備一塊枕頭。這塊枕頭能保護您不受艱難的任務傷害... 甚至是在您小睡的時候。增加體質、力量各 <%= attrs %> 點。 來自神祕寶箱: 淺紅睡衣套裝(3/3)",
+ "shieldArmoireSoftRedPillowNotes": "已做好萬全準備的戰士都會在遠征前準備一塊枕頭。這塊枕頭能保護您不受艱難的任務傷害... 甚至是在您小睡的時候。增加體質、力量各 <%= attrs %> 點。 來自神秘寶箱: 淺紅睡衣套裝(3/3)。",
"shieldArmoireSoftGreenPillowText": "柔軟綠枕頭",
- "shieldArmoireSoftGreenPillowNotes": "有經驗的戰士都會在遠征前準備一塊枕頭。這塊枕頭能驅散那些討厭的雜事... 甚至是在您小睡的時候。增加體質 <%= con %> 點和智力 <%= int %> 點。 來自神祕寶箱: 淺綠睡衣套裝(3/3)",
+ "shieldArmoireSoftGreenPillowNotes": "有經驗的戰士都會在遠征前準備一塊枕頭。這塊枕頭能驅散那些討厭的雜事... 甚至是在您小睡的時候。增加體質 <%= con %> 點和智力 <%= int %> 點。 來自神秘寶箱: 淺綠睡衣套裝(3/3)。",
"shieldArmoireMightyQuillText": "威力鵝毛筆",
- "shieldArmoireMightyQuillNotes": "比劍還更有威力,他們是這樣說的! 增加 <%= per %> 點感知。 來自神祕寶箱: 抄寫員套裝(2/3)",
+ "shieldArmoireMightyQuillNotes": "比劍還更有威力,他們是這樣說的! 增加 <%= per %> 點感知。 來自神秘寶箱: 抄寫員套裝(2/3)。",
"back": "後背配件",
"backCapitalized": "後背配件",
"backBase0Text": "沒有後背配件",
"backBase0Notes": "沒有後背配件。",
"animalTails": "動物尾巴",
"backMystery201402Text": "金翅膀",
- "backMystery201402Notes": "這雙耀眼的翅膀上擁有能在陽光下閃閃發光的羽毛! 無屬性加成。 2014年2月訂閱者專屬裝備",
+ "backMystery201402Notes": "這雙耀眼的翅膀上擁有能在陽光下閃閃發光的羽毛! 無屬性加成。 2014年2月訂閱者專屬裝備。",
"backMystery201404Text": "薄暮蝶翼",
- "backMystery201404Notes": "成為蝴蝶,翩翩飛舞! 無屬性加成。 2014年4月訂閱者專屬裝備",
+ "backMystery201404Notes": "成為蝴蝶,翩翩飛舞! 無屬性加成。 2014年4月訂閱者專屬裝備。",
"backMystery201410Text": "哥布林之翼",
- "backMystery201410Notes": "用這雙堅固的翅膀俯衝整個夜晚。無屬性加成。 2014年10月訂閱者專屬裝備",
+ "backMystery201410Notes": "用這雙堅固的翅膀俯衝整個夜晚。無屬性加成。 2014年10月訂閱者專屬裝備。",
"backMystery201504Text": "忙碌蜜蜂之翼",
- "backMystery201504Notes": "嗡嗡嗡!掠過一項又一項的任務。無屬性加成。 2015年5月訂閱者專屬裝備",
+ "backMystery201504Notes": "嗡嗡嗡!掠過一項又一項的任務。無屬性加成。 2015年5月訂閱者專屬裝備。",
"backMystery201507Text": "超爽快衝浪板",
- "backMystery201507Notes": "在勤奮碼頭(Diligent Docks) 裡盡情衝浪,並在怪完工海灣(Inkomplete Bay) 中乘浪前行! 無屬性加成。 2015年7月訂閱者專屬裝備",
+ "backMystery201507Notes": "在勤奮碼頭(Diligent Docks) 裡盡情衝浪,並在怪完工海灣(Inkomplete Bay) 中乘浪前行! 無屬性加成。 2015年7月訂閱者專屬裝備。",
"backMystery201510Text": "哥布林尾巴",
- "backMystery201510Notes": "易於抓握且強而有力! 無屬性加成。 2015年10月訂閱者專屬裝備",
+ "backMystery201510Notes": "易於抓握且強而有力! 無屬性加成。 2015年10月訂閱者專屬裝備。",
"backMystery201602Text": "破心者披風",
- "backMystery201602Notes": "揚起披風嗖的一聲,您的敵人就落在您面前! 無屬性加成。 2016年2月訂閱者專屬裝備",
+ "backMystery201602Notes": "揚起披風嗖的一聲,您的敵人就落在您面前! 無屬性加成。 2016年2月訂閱者專屬裝備。",
"backMystery201608Text": "閃電披風",
- "backMystery201608Notes": "用這件波濤般的披風飛越暴風雨! 無屬性加成。 2016年8月訂閱者專屬裝備",
+ "backMystery201608Notes": "用這件波濤般的披風飛越暴風雨! 無屬性加成。 2016年8月訂閱者專屬裝備。",
"backMystery201702Text": "盜心者披風",
- "backMystery201702Notes": "這件披風激起的旋風讓您的魅力橫掃全場! 無屬性加成。 2017年2月訂閱者專屬裝備",
+ "backMystery201702Notes": "這件披風激起的旋風讓您的魅力橫掃全場! 無屬性加成。 2017年2月訂閱者專屬裝備。",
"backMystery201704Text": "童話之翼",
- "backMystery201704Notes": "這雙閃亮的翅膀將帶您到任何地方,甚至是由魔法生物統治下最隱密的王國。無屬性加成。 2017年4月訂閱者專屬裝備",
+ "backMystery201704Notes": "這雙閃亮的翅膀將帶您到任何地方,甚至是由魔法生物統治下最隱密的王國。無屬性加成。 2017年4月訂閱者專屬裝備。",
"backMystery201706Text": "殘破海盜旗",
- "backMystery201706Notes": "這面印有骷髏圖騰的海盜旗(Jolly Roger) 能讓所有待辦事項或每日任務恐懼無比! 沒無屬性加成。 2017年6月訂閱者專屬裝備",
+ "backMystery201706Notes": "這面印有骷髏圖騰的海盜旗(Jolly Roger) 能讓所有待辦事項或每日任務恐懼無比! 沒無屬性加成。 2017年6月訂閱者專屬裝備。",
"backMystery201709Text": "一疊魔法圖書",
- "backMystery201709Notes": "學習魔法需要大量的閱讀,但您一定會非常享受這些閱讀時光! 無屬性加成。 2017年9月訂閱者專屬裝備",
+ "backMystery201709Notes": "學習魔法需要大量的閱讀,但您一定會非常享受這些閱讀時光! 無屬性加成。 2017年9月訂閱者專屬裝備。",
"backMystery201801Text": "冰霜精靈之翼",
"backMystery201801Notes": "這雙附魔翅膀或許看起來就像雪片那樣脆弱,但它可以帶您到任何您想去的地方! 無屬性加成。 2018年1月訂閱者專屬裝備。",
"backMystery201803Text": "勇猛蜻蜓之翼",
- "backMystery201803Notes": "這雙亮麗的翅膀將帶您穿過柔和的春風,並越過一窪又一窪的睡蓮池。無屬性加成。 2018年3月訂閱者專屬裝備",
+ "backMystery201803Notes": "這雙亮麗的翅膀將帶您穿過柔和的春風,並越過一窪又一窪的睡蓮池。無屬性加成。 2018年3月訂閱者專屬裝備。",
"backMystery201804Text": "松鼠尾",
- "backMystery201804Notes": "的確,它能幫助您在樹枝間跳躍時保持平衡,但更重要的是那蓬鬆的絨毛。無屬性加成。 2018年4月訂閱者專屬裝備",
+ "backMystery201804Notes": "的確,它能幫助您在樹枝間跳躍時保持平衡,但更重要的是那蓬鬆的絨毛。無屬性加成。 2018年4月訂閱者專屬裝備。",
"backMystery201812Text": "北極狐狸尾",
- "backMystery201812Notes": "您這奢華稀有的尾巴就像冰柱一樣閃閃發光。當您輕輕地座在雪堆上時,它就會愉悅地擺動。無屬性加成。 2018年12月訂閱者專屬裝備",
+ "backMystery201812Notes": "您這奢華稀有的尾巴就像冰柱一樣閃閃發光。當您輕輕地座在雪堆上時,它就會愉悅地擺動。無屬性加成。 2018年12月訂閱者專屬裝備。",
"backMystery201805Text": "華麗孔雀尾巴",
- "backMystery201805Notes": "這條華麗的羽毛尾巴非常適合在行走於花園小徑時配戴! 無屬性加成。 2018年5月訂閱者專屬裝備",
+ "backMystery201805Notes": "這條華麗的羽毛尾巴非常適合在行走於花園小徑時配戴! 無屬性加成。 2018年5月訂閱者專屬裝備。",
"backSpecialWonderconRedText": "威武披風",
- "backSpecialWonderconRedNotes": "力量與美貌在嗖嗖作響。無屬性加成。 集會參與者特別版裝備",
+ "backSpecialWonderconRedNotes": "力量與美貌在嗖嗖作響。無屬性加成。 集會參與者特別版裝備。",
"backSpecialWonderconBlackText": "潛行披風",
- "backSpecialWonderconBlackNotes": "由暗影與低語交織而成。無屬性加成。 集會參與者特別版裝備",
+ "backSpecialWonderconBlackNotes": "由暗影與低語交織而成。無屬性加成。 集會參與者特別版裝備。",
"backSpecialTakeThisText": "Take This 翅膀",
"backSpecialTakeThisNotes": "這雙翅膀只有參與過由 \"Take This\" 贊助的挑戰才可獲得! 恭喜您! 增加所有屬性各 <%= attrs %> 點。",
"backSpecialSnowdriftVeilText": "雪堆面紗",
@@ -1578,39 +1578,39 @@
"bodyBase0Text": "沒有身上配件",
"bodyBase0Notes": "沒有身上配件。",
"bodySpecialWonderconRedText": "紅寶石項圈",
- "bodySpecialWonderconRedNotes": "這是一條有魅力的紅寶石項圈! 無屬性加成。 集會參與者特別版裝備",
+ "bodySpecialWonderconRedNotes": "這是一條有魅力的紅寶石項圈! 無屬性加成。 集會參與者特別版裝備。",
"bodySpecialWonderconGoldText": "黃金項圈",
- "bodySpecialWonderconGoldNotes": "這是一條有魅力的黃金項圈! 無屬性加成。 集會參與者特別版裝備",
+ "bodySpecialWonderconGoldNotes": "這是一條有魅力的黃金項圈! 無屬性加成。 集會參與者特別版裝備。",
"bodySpecialWonderconBlackText": "黑檀木項圈",
- "bodySpecialWonderconBlackNotes": "這是一條有魅力的黑檀木項圈! 無屬性加成。 集會參與者特別版裝備",
+ "bodySpecialWonderconBlackNotes": "這是一條有魅力的黑檀木項圈! 無屬性加成。 集會參與者特別版裝備。",
"bodySpecialTakeThisText": "Take This 護肩",
"bodySpecialTakeThisNotes": "這套護肩只有參與過由 \"Take This\" 贊助的挑戰才可獲得! 恭喜您! 增加所有屬性各 <%= attrs %> 點。",
"bodySpecialAetherAmuletText": "以太護身符",
"bodySpecialAetherAmuletNotes": "這是一個擁有神秘歷史的護身符。增加體質、力量各 <%= attrs %> 點。",
"bodySpecialSummerMageText": "閃耀披風",
- "bodySpecialSummerMageNotes": "無論鹹水、淡水,都無法使這件含金屬纖維的披風黯然失色。無屬性加成。 2014年夏季限定版裝備",
+ "bodySpecialSummerMageNotes": "無論鹹水、淡水,都無法使這件含金屬纖維的披風黯然失色。無屬性加成。 2014年夏季限定版裝備。",
"bodySpecialSummerHealerText": "珊瑚項圈",
- "bodySpecialSummerHealerNotes": "以活珊瑚製成的時尚項圈! 無屬性加成。 2014年夏季限定版裝備",
+ "bodySpecialSummerHealerNotes": "以活珊瑚製成的時尚項圈! 無屬性加成。 2014年夏季限定版裝備。",
"bodySpecialSummer2015RogueText": "叛變者飾帶",
- "bodySpecialSummer2015RogueNotes": "沒有氣派和... 飾帶,您就沒辦法成為一位頂天立地的叛徒。無屬性加成。 2015年夏季限定版裝備",
+ "bodySpecialSummer2015RogueNotes": "沒有氣派和... 飾帶,您就沒辦法成為一位頂天立地的叛徒。無屬性加成。 2015年夏季限定版裝備。",
"bodySpecialSummer2015WarriorText": "海洋尖刺",
- "bodySpecialSummer2015WarriorNotes": "為了保護佩戴者,這上頭的每一根刺都沾有水母毒液。無屬性加成。 2015年夏季限定版裝備",
+ "bodySpecialSummer2015WarriorNotes": "為了保護佩戴者,這上頭的每一根刺都沾有水母毒液。無屬性加成。 2015年夏季限定版裝備。",
"bodySpecialSummer2015MageText": "黃金扣環",
- "bodySpecialSummer2015MageNotes": "雖然這個扣環不能讓您變強,但它可真是閃耀啊!無屬性加成。 2015年夏季限定版裝備",
+ "bodySpecialSummer2015MageNotes": "雖然這個扣環不能讓您變強,但它可真是閃耀啊!無屬性加成。 2015年夏季限定版裝備。",
"bodySpecialSummer2015HealerText": "水手領巾",
- "bodySpecialSummer2015HealerNotes": "唷呵呵? 不,不,不~! 無屬性加成。 2015年夏季限定版裝備",
+ "bodySpecialSummer2015HealerNotes": "唷呵呵? 不,不,不~! 無屬性加成。 2015年夏季限定版裝備。",
"bodySpecialNamingDay2018Text": "紫禦獅鷲披風",
"bodySpecialNamingDay2018Notes": "命名節快樂! 快戴上這件典雅又柔軟的披風一同前來為 Habitica 歡慶吧! 無屬性加成。",
"bodyMystery201705Text": "折疊式羽毛戰士之翼",
- "bodyMystery201705Notes": "這雙可折疊的翅膀不只是看起來很時髦,它還能帶給您獅鷲般的速度和敏捷! 無屬性加成。 2017年5月訂閱者專屬裝備",
+ "bodyMystery201705Notes": "這雙可折疊的翅膀不只是看起來很時髦,它還能帶給您獅鷲般的速度和敏捷! 無屬性加成。 2017年5月訂閱者專屬裝備。",
"bodyMystery201706Text": "殘破海盜披風",
- "bodyMystery201706Notes": "這件披風中藏有秘密口袋,可將您從任務中獲得的金幣通通 Bang 不見! 無屬性加成。 2017年7月訂閱者專屬裝備",
+ "bodyMystery201706Notes": "這件披風中藏有秘密口袋,可將您從任務中獲得的金幣通通 Bang 不見! 無屬性加成。 2017年7月訂閱者專屬裝備。",
"bodyMystery201711Text": "飛毯駕駛員圍巾",
- "bodyMystery201711Notes": "這條柔軟的針織圍巾在風中飄逸看起來相當雄偉。無屬性加成。 2017年11月訂閱者專屬裝備",
+ "bodyMystery201711Notes": "這條柔軟的針織圍巾在風中飄逸看起來相當雄偉。無屬性加成。 2017年11月訂閱者專屬裝備。",
"bodyMystery201901Text": "北極星護肩",
- "bodyMystery201901Notes": "這套閃閃發光的護肩非常堅固,但卻可以像一縷縷跳舞的光束一樣輕盈地靠在您的肩膀上。沒有屬性加成。 2019年1月訂閱者專屬裝備",
+ "bodyMystery201901Notes": "這套閃閃發光的護肩非常堅固,但卻可以像一縷縷跳舞的光束一樣輕盈地靠在您的肩膀上。無屬性加成。 2019年1月訂閱者專屬裝備。",
"bodyArmoireCozyScarfText": "舒適圍巾",
- "bodyArmoireCozyScarfNotes": "這條上等的圍巾能讓您在寒冷環境下工作時,還能保持溫暖。增加體質、感知各 <%= attrs %> 點。 來自神祕寶箱: 點燈伕套裝(4/4)",
+ "bodyArmoireCozyScarfNotes": "這條上等的圍巾能讓您在寒冷環境下工作時,還能保持溫暖。增加體質、感知各 <%= attrs %> 點。 來自神秘寶箱: 點燈伕套裝(4/4)。",
"headAccessory": "頭飾",
"headAccessoryCapitalized": "頭飾",
"accessories": "配件",
@@ -1618,37 +1618,37 @@
"headAccessoryBase0Text": "沒有頭飾",
"headAccessoryBase0Notes": "沒有頭飾。",
"headAccessorySpecialSpringRogueText": "紫色貓耳",
- "headAccessorySpecialSpringRogueNotes": "這雙貓耳能在偵測到淺在威脅時抽搐抖動。無屬性加成。 2014年春季限定版裝備",
+ "headAccessorySpecialSpringRogueNotes": "這雙貓耳能在偵測到淺在威脅時抽搐抖動。無屬性加成。 2014年春季限定版裝備。",
"headAccessorySpecialSpringWarriorText": "綠色兔耳",
- "headAccessorySpecialSpringWarriorNotes": "這雙兔耳可敏銳地偵測到胡蘿蔔的嘎吱聲。無屬性加成。 2014年春季限定版裝備",
+ "headAccessorySpecialSpringWarriorNotes": "這雙兔耳可敏銳地偵測到胡蘿蔔的嘎吱聲。無屬性加成。 2014年春季限定版裝備。",
"headAccessorySpecialSpringMageText": "藍色鼠耳",
- "headAccessorySpecialSpringMageNotes": "這雙圓圓的鼠耳如絲綢般柔軟。無屬性加成。 2014年春季限定版裝備",
+ "headAccessorySpecialSpringMageNotes": "這雙圓圓的鼠耳如絲綢般柔軟。無屬性加成。 2014年春季限定版裝備。",
"headAccessorySpecialSpringHealerText": "黃色犬耳",
- "headAccessorySpecialSpringHealerNotes": "又軟又可愛。想來玩嗎?無屬性加成。 2014年春季限定版裝備",
+ "headAccessorySpecialSpringHealerNotes": "又軟又可愛。想來玩嗎?無屬性加成。 2014年春季限定版裝備。",
"headAccessorySpecialSpring2015RogueText": "黃色鼠耳",
- "headAccessorySpecialSpring2015RogueNotes": "這雙耳朵可以防止爆炸聲的干擾。無屬性加成。 2015年春季限定版裝備",
+ "headAccessorySpecialSpring2015RogueNotes": "這雙耳朵可以防止爆炸聲的干擾。無屬性加成。 2015年春季限定版裝備。",
"headAccessorySpecialSpring2015WarriorText": "紫色犬耳",
- "headAccessorySpecialSpring2015WarriorNotes": "它們是紫色的。它們是狗耳朵。別再愚蠢地浪費您的時間了。無屬性加成。 2015年春季限定版裝備",
+ "headAccessorySpecialSpring2015WarriorNotes": "它們是紫色的。它們是狗耳朵。別再愚蠢地浪費您的時間了。無屬性加成。 2015年春季限定版裝備。",
"headAccessorySpecialSpring2015MageText": "藍色兔耳",
- "headAccessorySpecialSpring2015MageNotes": "這雙耳朵聽力過人,可聽到任何在洩密中的魔術師。無屬性加成。 2015年春季限定版裝備",
+ "headAccessorySpecialSpring2015MageNotes": "這雙耳朵聽力過人,可聽到任何在洩密中的魔術師。無屬性加成。 2015年春季限定版裝備。",
"headAccessorySpecialSpring2015HealerText": "綠色貓耳",
- "headAccessorySpecialSpring2015HealerNotes": "這雙可愛的貓耳會讓其他人嫉妒到眼睛發綠。無屬性加成。 2015年春季限定版裝備",
+ "headAccessorySpecialSpring2015HealerNotes": "這雙可愛的貓耳會讓其他人嫉妒到眼睛發綠。無屬性加成。 2015年春季限定版裝備。",
"headAccessorySpecialSpring2016RogueText": "綠色犬耳",
- "headAccessorySpecialSpring2016RogueNotes": "戴上它,您就可以跟蹤隱形的狡猾魔法師! 無屬性加成。 2016年春季限定版裝備",
+ "headAccessorySpecialSpring2016RogueNotes": "戴上它,您就可以跟蹤隱形的狡猾魔法師! 無屬性加成。 2016年春季限定版裝備。",
"headAccessorySpecialSpring2016WarriorText": "紅色鼠耳",
- "headAccessorySpecialSpring2016WarriorNotes": "它能在吵鬧的戰場中方便您聽見自己的主題曲。無屬性加成。 2016年春季限定版裝備",
+ "headAccessorySpecialSpring2016WarriorNotes": "它能在吵鬧的戰場中方便您聽見自己的主題曲。無屬性加成。 2016年春季限定版裝備。",
"headAccessorySpecialSpring2016MageText": "黃色貓耳",
- "headAccessorySpecialSpring2016MageNotes": "這雙尖銳的耳朵可以偵測到四周魔法微小的嗡嗡聲,或是盜賊無聲的腳步。無屬性加成。 2016年春季限定版裝備",
+ "headAccessorySpecialSpring2016MageNotes": "這雙尖銳的耳朵可以偵測到四周魔法微小的嗡嗡聲,或是盜賊無聲的腳步。無屬性加成。 2016年春季限定版裝備。",
"headAccessorySpecialSpring2016HealerText": "紫色兔耳",
- "headAccessorySpecialSpring2016HealerNotes": "它們立起來就像戰鬥時的旗幟,能讓四周的人知道要到哪裡取得協助。無屬性加成。 2016年春季限定版裝備",
+ "headAccessorySpecialSpring2016HealerNotes": "它們立起來就像戰鬥時的旗幟,能讓四周的人知道要到哪裡取得協助。無屬性加成。 2016年春季限定版裝備。",
"headAccessorySpecialSpring2017RogueText": "紅色兔耳",
- "headAccessorySpecialSpring2017RogueNotes": "多虧了這雙耳朵,沒有任何聲音可以躲過它。無屬性加成。 2017年春季限定版裝備",
+ "headAccessorySpecialSpring2017RogueNotes": "多虧了這雙耳朵,沒有任何聲音可以躲過它。無屬性加成。 2017年春季限定版裝備。",
"headAccessorySpecialSpring2017WarriorText": "藍色貓耳",
- "headAccessorySpecialSpring2017WarriorNotes": "即使是在喧鬧的戰場上,這雙耳朵還是能聽見袋子裡小貓的呼叫聲! 無屬性加成。 2017年春季限定版裝備",
+ "headAccessorySpecialSpring2017WarriorNotes": "即使是在喧鬧的戰場上,這雙耳朵還是能聽見袋子裡小貓的呼叫聲! 無屬性加成。 2017年春季限定版裝備。",
"headAccessorySpecialSpring2017MageText": "藍綠犬耳",
- "headAccessorySpecialSpring2017MageNotes": "您可以聽見空氣中的魔法聲! 無屬性加成。 2017年春季限定版裝備",
+ "headAccessorySpecialSpring2017MageNotes": "您可以聽見空氣中的魔法聲! 無屬性加成。 2017年春季限定版裝備。",
"headAccessorySpecialSpring2017HealerText": "紫色鼠耳",
- "headAccessorySpecialSpring2017HealerNotes": "這雙耳朵可讓您聽見治療的秘訣。無屬性加成。 2017年春季限定版裝備",
+ "headAccessorySpecialSpring2017HealerNotes": "這雙耳朵可讓您聽見治療的秘訣。無屬性加成。 2017年春季限定版裝備。",
"headAccessoryBearEarsText": "猛熊耳朵",
"headAccessoryBearEarsNotes": "這雙耳朵能讓您看起來就像是一隻英勇的熊! 無屬性加成。",
"headAccessoryCactusEarsText": "仙人掌耳朵",
@@ -1680,27 +1680,27 @@
"headAccessoryYellowHeadbandText": "金黃髮箍",
"headAccessoryYellowHeadbandNotes": "一副簡易的黃色髮箍。無屬性加成。",
"headAccessoryMystery201403Text": "森林步行者鹿角",
- "headAccessoryMystery201403Notes": "這雙鹿角上的苔蘚和地衣正閃爍著微光。無屬性加成。 2014年3月訂閱者專屬裝備",
+ "headAccessoryMystery201403Notes": "這雙鹿角上的苔蘚和地衣正閃爍著微光。無屬性加成。 2014年3月訂閱者專屬裝備。",
"headAccessoryMystery201404Text": "薄暮蝴蝶觸角",
- "headAccessoryMystery201404Notes": "這雙觸角能幫助佩戴者察覺到危險的干擾! 無屬性加成。 2014年4月訂閱者專屬裝備",
+ "headAccessoryMystery201404Notes": "這雙觸角能幫助佩戴者察覺到危險的干擾! 無屬性加成。 2014年4月訂閱者專屬裝備。",
"headAccessoryMystery201409Text": "秋季鹿角",
- "headAccessoryMystery201409Notes": "這雙擁有強大力量的鹿角會隨著樹葉一同改變顏色。無屬性加成。 2014年9月訂閱者專屬裝備",
+ "headAccessoryMystery201409Notes": "這雙擁有強大力量的鹿角會隨著樹葉一同改變顏色。無屬性加成。 2014年9月訂閱者專屬裝備。",
"headAccessoryMystery201502Text": "思緒之翼",
- "headAccessoryMystery201502Notes": "讓想像力盡情翱翔吧! 無屬性加成。 2015年2月訂閱者專屬裝備",
+ "headAccessoryMystery201502Notes": "讓想像力盡情翱翔吧! 無屬性加成。 2015年2月訂閱者專屬裝備。",
"headAccessoryMystery201510Text": "哥布林觸角",
- "headAccessoryMystery201510Notes": "這對嚇人的觸角摸起來有一點黏糊糊的。無屬性加成。 2015年10月訂閱者專屬裝備",
+ "headAccessoryMystery201510Notes": "這對嚇人的觸角摸起來有一點黏糊糊的。無屬性加成。 2015年10月訂閱者專屬裝備。",
"headAccessoryMystery201801Text": "冰霜精靈鹿角",
- "headAccessoryMystery201801Notes": "這對冰晶鹿角隨著冬季極光的閃爍而閃閃發光。無屬性加成。 2018年1月訂閱者專屬裝備",
+ "headAccessoryMystery201801Notes": "這對冰晶鹿角隨著冬季極光的閃爍而閃閃發光。無屬性加成。 2018年1月訂閱者專屬裝備。",
"headAccessoryMystery201804Text": "松鼠耳",
- "headAccessoryMystery201804Notes": "這對毛茸茸的聲音捕捉器能確保您永遠不會錯過葉子的沙沙聲或橡子的掉落聲! 無屬性加成。 2018年4月訂閱者專屬裝備",
+ "headAccessoryMystery201804Notes": "這對毛茸茸的聲音捕捉器能確保您永遠不會錯過葉子的沙沙聲或橡子的掉落聲! 無屬性加成。 2018年4月訂閱者專屬裝備。",
"headAccessoryMystery201812Text": "北極狐狸耳",
- "headAccessoryMystery201812Notes": "您將可以聽到雪花飄落在景觀上微妙的聲音。無屬性加成。 2018年12月訂閱者專屬裝備",
+ "headAccessoryMystery201812Notes": "您將可以聽到雪花飄落在景觀上微妙的聲音。無屬性加成。 2018年12月訂閱者專屬裝備。",
"headAccessoryMystery301405Text": "護目鏡頭飾",
- "headAccessoryMystery301405Notes": "人們說,\"護目鏡是戴在眼睛上的\"。人們說,\"沒有人會想要一個只能戴在頭上的護目鏡\"。哈!您這次真的讓他們大開眼界了! 無屬性加成。 3015年8月訂閱者專屬裝備",
+ "headAccessoryMystery301405Notes": "人們說,\"護目鏡是戴在眼睛上的\"。人們說,\"沒有人會想要一個只能戴在頭上的護目鏡\"。哈!您這次真的讓他們大開眼界了! 無屬性加成。 3015年8月訂閱者專屬裝備。",
"headAccessoryArmoireComicalArrowText": "可笑的箭",
- "headAccessoryArmoireComicalArrowNotes": "這根奇特的東西的確會想讓人捧腹大笑! 增加 <%= str %> 點力量。 來自神祕寶箱: 獨立裝備",
+ "headAccessoryArmoireComicalArrowNotes": "這根奇特的東西的確會想讓人捧腹大笑! 增加 <%= str %> 點力量。 來自神秘寶箱: 獨立裝備。",
"headAccessoryArmoireGogglesOfBookbindingText": "圖書裝訂護目鏡",
- "headAccessoryArmoireGogglesOfBookbindingNotes": "這副護目鏡將不會為為您的任何任務帶來一丁點的幫助! 增加 <%= per %> 點感知。 圖書裝訂工套裝(1/4)",
+ "headAccessoryArmoireGogglesOfBookbindingNotes": "這副護目鏡將不會為為您的任何任務帶來一丁點的幫助! 增加 <%= per %> 點感知。 來自神秘寶箱: 圖書裝訂工套裝(1/4)。",
"eyewear": "眼部配件",
"eyewearCapitalized": "眼部配件",
"eyewearBase0Text": "沒有眼部配件",
@@ -1722,48 +1722,308 @@
"eyewearSpecialAetherMaskText": "以太面具",
"eyewearSpecialAetherMaskNotes": "這是一個擁有神秘歷史的面具。增加 <%= int %> 點智力。",
"eyewearSpecialSummerRogueText": "盜賊眼罩",
- "eyewearSpecialSummerRogueNotes": "即使是無賴也能看出這個眼罩有多時髦! 無屬性加成。 2014年夏季限定版裝備",
+ "eyewearSpecialSummerRogueNotes": "即使是無賴也能看出這個眼罩有多時髦! 無屬性加成。 2014年夏季限定版裝備。",
"eyewearSpecialSummerWarriorText": "時髦眼罩",
- "eyewearSpecialSummerWarriorNotes": "即使是惡棍也能看出這個眼罩有多時髦! 無屬性加成。 2014年夏季限定版裝備",
+ "eyewearSpecialSummerWarriorNotes": "即使是惡棍也能看出這個眼罩有多時髦! 無屬性加成。 2014年夏季限定版裝備。",
"eyewearSpecialWonderconRedText": "威武面具",
- "eyewearSpecialWonderconRedNotes": "這真是個威武的臉部配件! 無屬性加成。 集會參與者特別版裝備",
+ "eyewearSpecialWonderconRedNotes": "這真是個威武的臉部配件! 無屬性加成。 集會參與者特別版裝備。",
"eyewearSpecialWonderconBlackText": "潛行面具",
- "eyewearSpecialWonderconBlackNotes": "您的動機絕對合法。無屬性加成。 集會參與者特別版裝備",
+ "eyewearSpecialWonderconBlackNotes": "您的動機絕對合法。無屬性加成。 集會參與者特別版裝備。",
"eyewearMystery201503Text": "海藍寶石眼鏡",
- "eyewearMystery201503Notes": "千萬別被這些閃閃發光的鑽石給閃瞎! 無屬性加成。 2015年3月訂閱者專屬裝備",
+ "eyewearMystery201503Notes": "千萬別被這些閃閃發光的鑽石給閃瞎! 無屬性加成。 2015年3月訂閱者專屬裝備。",
"eyewearMystery201506Text": "霓虹浮潛罩",
- "eyewearMystery201506Notes": "戴上霓虹浮潛罩就能一窺海底世界! 無屬性加成。 2015年6月訂閱者專屬裝備",
+ "eyewearMystery201506Notes": "戴上霓虹浮潛罩就能一窺海底世界! 無屬性加成。 2015年6月訂閱者專屬裝備。",
"eyewearMystery201507Text": "超爽快太陽眼鏡",
- "eyewearMystery201507Notes": "這副太陽眼鏡能讓您在大熱天依舊酷勁消暑好帥氣! 無屬性加成。 2015年7月訂閱者專屬裝備",
+ "eyewearMystery201507Notes": "這副太陽眼鏡能讓您在大熱天依舊酷勁消暑好帥氣! 無屬性加成。 2015年7月訂閱者專屬裝備。",
"eyewearMystery201701Text": "永恆墨鏡",
- "eyewearMystery201701Notes": "這副太陽眼鏡能保護您不受有害的射線給傷害,還能讓您在任何時刻都看起來非常時髦。無屬性加成。 2017年1月訂閱者專屬裝備",
+ "eyewearMystery201701Notes": "這副太陽眼鏡能保護您不受有害的射線給傷害,還能讓您在任何時刻都看起來非常時髦。無屬性加成。 2017年1月訂閱者專屬裝備。",
"eyewearMystery301404Text": "護目鏡頭飾",
- "eyewearMystery301404Notes": "沒有任何眼部配件能比這副護目鏡更潮了— 也許,除了單眼鏡以外。無屬性加成。 3015年3月訂閱者專屬裝備",
+ "eyewearMystery301404Notes": "沒有任何眼部配件能比這副護目鏡更潮了— 也許,除了單眼鏡以外。無屬性加成。 3015年3月訂閱者專屬裝備。",
"eyewearMystery301405Text": "單眼鏡",
- "eyewearMystery301405Notes": "沒有任何眼部配件能比這副護目鏡更潮了— 也許,除了護目鏡以外。無屬性加成。 3015年7月訂閱者專屬裝備",
+ "eyewearMystery301405Notes": "沒有任何眼部配件能比這副護目鏡更潮了— 也許,除了護目鏡以外。無屬性加成。 3015年7月訂閱者專屬裝備。",
"eyewearMystery301703Text": "孔雀假面舞會面具",
- "eyewearMystery301703Notes": "最適合在花俏的化裝舞會時穿戴或是想靜悄悄地穿過那群講究穿著的人群時穿戴。無屬性加成。 3017年3月訂閱者專屬裝備",
+ "eyewearMystery301703Notes": "最適合在花俏的化裝舞會時穿戴或是想靜悄悄地穿過那群講究穿著的人群時穿戴。無屬性加成。 3017年3月訂閱者專屬裝備。",
"eyewearArmoirePlagueDoctorMaskText": "瘟疫醫師面具",
- "eyewearArmoirePlagueDoctorMaskNotes": "這是一副由某位正與怠惰瘟疫抗爭的醫生穿戴過的真品面具。增加體質、智力各 <%= attrs %> 點。 來自神祕寶箱: 瘟疫醫師套裝(2/3)",
+ "eyewearArmoirePlagueDoctorMaskNotes": "這是一副由某位正與怠惰瘟疫抗爭的醫生穿戴過的真品面具。增加體質、智力各 <%= attrs %> 點。 來自神秘寶箱: 瘟疫醫師套裝(2/3)。",
"eyewearArmoireGoofyGlassesText": "愚蠢眼鏡",
- "eyewearArmoireGoofyGlassesNotes": "非常適合給想隱姓埋名或是想讓您的同伴咯咯大笑時穿戴。增加 <%= per %> 點感知。 來自神祕寶箱: 獨立裝備",
+ "eyewearArmoireGoofyGlassesNotes": "非常適合給想隱姓埋名或是想讓您的同伴咯咯大笑時穿戴。增加 <%= per %> 點感知。來自神秘寶箱: 獨立裝備。",
"twoHandedItem": "雙持物品。",
"weaponArmoireChefsSpoonText": "大廚勺子",
- "weaponArmoireChefsSpoonNotes": "大喊戰鬥的口號\"杓杓杓杓杓!! 同時將它高高地舉起。同时举起它。增加 <%= int %> 點智力。 來自神祕寶箱: 大廚套裝(3/4)",
+ "weaponArmoireChefsSpoonNotes": "大喊戰鬥的口號\"杓杓杓杓杓!! 同時將它高高地舉起。同时举起它。增加 <%= int %> 點智力。 來自神秘寶箱: 大廚套裝(3/4)。",
"weaponArmoireVernalTaperText": "春天小蠟燭",
- "weaponArmoireVernalTaperNotes": "白天越來越長,但這個蠟燭台能幫助您在日出前找到自己的路。增加 <%= con %> 點體質。 來自神祕寶箱: 春季聖袍套裝(3/3)",
+ "weaponArmoireVernalTaperNotes": "白天越來越長,但這個蠟燭台能幫助您在日出前找到自己的路。增加 <%= con %> 點體質。 來自神秘寶箱: 春季聖袍套裝(3/3)。",
"armorArmoireChefsJacketText": "大廚夾克",
- "armorArmoireChefsJacketNotes": "這件厚重的夾克擁有雙排扣,可以保護您免受波濺(還具有方便的反彈功能)。增加 <%= int %> 點智力。 來自神祕寶箱: 大廚套裝(2/4)",
+ "armorArmoireChefsJacketNotes": "這件厚重的夾克擁有雙排扣,可以保護您免受波濺(還具有方便的反彈功能)。增加 <%= int %> 點智力。 來自神秘寶箱: 大廚套裝(2/4)",
"armorArmoireVernalVestmentText": "春季聖袍",
- "armorArmoireVernalVestmentNotes": "這件柔順的聖袍能以最時髦的方式享受溫和春日。增加力量、智力各 <%= per %> 點。來自神祕寶箱: 春季聖袍套裝(2/3)",
+ "armorArmoireVernalVestmentNotes": "這件柔順的聖袍能以最時髦的方式享受溫和春日。增加力量、智力各 <%= per %> 點。來自神秘寶箱: 春季聖袍套裝(2/3)。",
"headArmoireToqueBlancheText": "廚師帽",
- "headArmoireToqueBlancheNotes": "根據傳說,這頂帽子的褶皺數量就代表著您學會用不同方式煮蛋的數目! 真的還假的? 增加 <%= int %> 點感知。 來自神祕寶箱: 大廚套裝(1/4)",
+ "headArmoireToqueBlancheNotes": "根據傳說,這頂帽子的褶皺數量就代表著您學會用不同方式煮蛋的數目! 真的還假的? 增加 <%= int %> 點感知。 來自神秘寶箱: 大廚套裝(1/4)。",
"headArmoireVernalHenninText": "春季圓錐高帽",
- "headArmoireVernalHenninNotes": "這頂錐形的帽子不僅好看,同時還能塞進一張捲起來的代辦事項清單。增加 <%= per %> 點感知。來自神祕寶箱: 春季聖袍套裝(1/3)",
+ "headArmoireVernalHenninNotes": "這頂錐形的帽子不僅好看,同時還能塞進一張捲起來的代辦事項清單。增加 <%= per %> 點感知。來自神秘寶箱: 春季聖袍套裝(1/3)。",
"shieldMystery201902Text": "神秘的五彩紙屑",
- "shieldMystery201902Notes": "這些來自魔法之心的閃光紙片能飄浮在空中緩慢地舞蹈。無屬性加成。 2019年2月訂閱者專屬裝備",
+ "shieldMystery201902Notes": "這些來自魔法之心的閃光紙片能飄浮在空中緩慢地舞蹈。無屬性加成。 2019年2月訂閱者專屬裝備。",
"shieldArmoireMightyPizzaText": "巨無霸披薩",
- "shieldArmoireMightyPizzaNotes": "的確,這是面非常棒的護盾,但我們強烈建議您可以將這些美味的披薩吃掉。增加 <%= per %> 點感知。 來自神祕寶箱: 大廚套裝(4/4) ",
+ "shieldArmoireMightyPizzaNotes": "的確,這是面非常棒的護盾,但我們強烈建議您可以將這些美味的披薩吃掉。增加 <%= per %> 點感知。 來自神秘寶箱: 大廚套裝(4/4)。",
"eyewearMystery201902Text": "神秘破碎面具",
- "eyewearMystery201902Notes": "這頂神秘面具能隱藏您的身分,但卻藏不住您迷人的笑容。無屬性加乘。 2019年2月訂閱者專屬裝備"
+ "eyewearMystery201902Notes": "這頂神秘面具能隱藏您的身分,但卻藏不住您迷人的笑容。無屬性加成。 2019年2月訂閱者專屬裝備",
+ "weaponMystery201911Notes": "這個法杖的水晶球可以讓你看到前程,但你必須小心!用這麼危險的知識會出乎意料地改變一個人。無屬性加成。 2019年11月訂閱者專屬裝備。",
+ "headSpecialFall2019WarriorNotes": "這個骷髏頭盔的黑眼窩會嚇退最勇敢的敵人。增加<%= str %>點力量。 2019夏季限量版裝備。",
+ "headSpecialFall2019WarriorText": "黑曜石骷髏頭盔",
+ "eyewearSpecialBlueHalfMoonText": "藍色半月形眼鏡",
+ "eyewearSpecialBlackHalfMoonNotes": "黑色鏡框和月牙形鏡片的眼鏡。無屬性加成。",
+ "eyewearSpecialBlackHalfMoonText": "黑色半月形眼鏡",
+ "headAccessoryMystery201908Notes": "如果戴牛角使您的山羊飄浮,那您真幸運!無屬性加成。 2019年8月訂閱者專屬裝備。",
+ "headAccessoryMystery201906Notes": "傳說,這些細膩的耳朵可以幫助人魚聽到深海所有居民的呼喚和歌曲!無屬性加成。 2019年6月訂閱者專屬裝備。",
+ "headAccessoryMystery201908Text": "自由牧神角",
+ "headAccessoryMystery201906Text": "和藹可親的錦鯉耳朵",
+ "headAccessoryMystery201905Notes": "這些角像閃閃發光一樣尖銳。無屬性加成。2019年5月訂閱者專屬裝備。",
+ "backMystery202001Notes": "這些蓬鬆的尾巴有天體的力量,還有很高的可愛度!無屬性加成。 2020年1月訂閱者專屬裝備。",
+ "headAccessoryMystery201905Text": "耀眼的龍角",
+ "backMystery202001Text": "寓言的五個尾巴",
+ "backMystery201912Notes": "用這雙冰冷的翅膀默默地飛過閃閃發光的雪原和雪山。無屬性加成。2019年12月訂閱者專屬裝備。",
+ "backMystery201905Notes": "憑藉這些彩虹色的翅膀飛向未知領域。無屬性加成。 2019年5月訂閱者專屬裝備。",
+ "backMystery201912Text": "極地精靈翅膀",
+ "shieldArmoireBirthdayBannerNotes": "慶祝你的特殊日子,一個你愛的人的特殊日子,或者在1月31日慶祝Habitica的生日!增加<%= str %>點力量。來自神秘寶箱:生日快樂套裝(4/4)。",
+ "shieldArmoireAlchemistsScaleNotes": "確保使用正確地儀器和精密地測量此神秘成分。增加<%= int %>點智力。來自神秘寶箱:煉金術士套裝(4/4)。",
+ "backMystery201905Text": "悅目龍翅膀",
+ "shieldArmoireBirthdayBannerText": "生日橫幅",
+ "shieldArmoireMasteredShadowNotes": "你的法力已將這些漩渦狀的暗影帶到你的身邊進行投標。增加感知和體質各<%= attrs %>點。來自神秘寶箱:暗影大師套裝(4/4)。",
+ "shieldArmoireAlchemistsScaleText": "煉金術士的測量規模",
+ "shieldArmoireMasteredShadowText": "掌握到的暗影",
+ "shieldArmoirePolishedPocketwatchNotes": "你獲得了時間。而且你戴著它很好看。增加<%= int %>點智力。來自神秘寶箱:獨立裝備。",
+ "shieldArmoirePolishedPocketwatchText": "拋光懷錶",
+ "shieldArmoireTrustyUmbrellaNotes": "神秘事故往往伴隨著惡劣的天氣,所以要做好準備!增加<%= int %>點智力。來自神秘寶箱:偵探集(4/4)。",
+ "shieldArmoireTrustyUmbrellaText": "值得信賴的雨傘",
+ "shieldSpecialWinter2020HealerNotes": "你是否覺得自己對這個世界來說,你太好了,太單純了?只有這種美麗的香料才能發揮作用。增加<%= con %>點體質。 2019-2020冬季限量版裝備。",
+ "shieldSpecialWinter2020HealerText": "巨大的肉桂棒",
+ "shieldSpecialWinter2020WarriorNotes": "將其用作盾,直到種子掉落,然後可以將其放在花圈上!增加<%= con %>點體質。 2019-2020冬季限量版裝備。",
+ "shieldSpecialWinter2020WarriorText": "圓形針葉樹錐",
+ "shieldSpecialFall2019HealerNotes": "用這個魔咒,抵制醫師的黑暗魔術!增加<%= con %>點體質。 2019秋季限量版裝備。",
+ "shieldSpecialFall2019HealerText": "怪誕的魔咒",
+ "shieldSpecialFall2019WarriorNotes": "用烏鴉羽毛的深色光澤結成固體,這個盾會挫敗所有攻擊。增加<%= con %>點體質。 2019秋季限量版裝備。",
+ "shieldSpecialFall2019WarriorText": "渡鴉暗盾",
+ "shieldSpecialSummer2019MageNotes": "在夏日的陽光下出汗?沒有!進行簡單的元素召喚以填充百合池塘。增加<%= per %>點感知。 2019夏季限量版裝備。",
+ "eyewearSpecialBlueHalfMoonNotes": "帶有藍色鏡框和月牙形鏡片的眼鏡。無屬性加成。",
+ "shieldSpecialSummer2019MageText": "純淨水滴",
+ "shieldSpecialSummer2019HealerText": "海螺小號",
+ "shieldSpecialSummer2019WarriorNotes": "龜縮在這個巨大的圓形盾牌後面,就像躲在你最喜歡的爬行動物的背後。增加<%= con %>點體質。 2019夏季 限量版裝備。",
+ "shieldSpecialSummer2019WarriorText": "半殼盾",
+ "shieldSpecialSpring2019HealerNotes": "這個明亮的盾牌實際上是由塗有糖果的巧克力製成的。增加<%= con%>點體質。 2019年春季 限量版裝備。",
+ "shieldSpecialSpring2019HealerText": "蛋殼盾",
+ "shieldSpecialSpring2019WarriorNotes": "葉綠素的力量讓你的敵人躲避!增加<%= con%>點體質。 2019年春季限量版裝備。",
+ "shieldSpecialSpring2019WarriorText": "綠葉盾",
+ "shieldSpecialKS2019Notes": "像獅鷲蛋一樣閃閃發光,這個宏偉的盾展示如何在你自己負擔小的時候、怎麼樣幫助別人。增加<%= per %>點感知。",
+ "headMystery201904Notes": "這個圓圈中的蛋白石閃耀著彩虹的每一種顏色,賦予它各種神奇的屬性。無屬性加成。 2019年4月訂閱者專屬裝備。",
+ "headMystery201904Text": "華麗的蛋白石圓環",
+ "headMystery201903Notes": "有些人可能會稱你為蛋頭,但這沒關係,因為你知道如何服用蛋黃。無屬性加成。 2019年3月訂閱者專屬裝備。",
+ "headMystery201903Text": "頭盔上金燦燦的部分",
+ "headSpecialWinter2020HealerNotes": "請把它從你的頭脫掉以後才用它煮茶或咖啡。增加<%= int %>點智力。 2019-2020冬季限量版裝備。",
+ "headSpecialWinter2020HealerText": "八角茴香標誌",
+ "headSpecialWinter2020MageNotes": "哦! 這些鈴鐺/甜美的金鈴鐺/似乎都在說,/“用‘火焰爆轟’”增加<%= per %>點感知。 2019-2020冬季限量版裝備。",
+ "headSpecialWinter2020MageText": "鍾冠",
+ "headSpecialWinter2020WarriorNotes": "頭皮上的刺感是為了季節性宏偉所付出的代價。增加<%= str %>點力量。 2019-2020冬季限量版裝備。",
+ "headSpecialWinter2020WarriorText": "雪塵頭飾",
+ "headSpecialWinter2020RogueNotes": "一個盜賊戴著那頂帽子走在街上,人們就知道他什麼都不怕。增加<%= per %>點感知。 2019-2020冬季限量版裝備。",
+ "headSpecialWinter2020RogueText": "蓬鬆的長襪帽",
+ "headSpecialNye2019Notes": "你收到了一頂古怪的派對帽子!當新年鐘聲響起時,自豪地戴上這頂帽子吧!無屬性加成。",
+ "headSpecialNye2019Text": "古怪的派對帽子",
+ "headSpecialFall2019HealerNotes": "戴這個黑暗禮冠利用可怕的巫妖的力量。增加<%= int %>點智力。 2019秋季限量版裝備。",
+ "headSpecialFall2019HealerText": "黑暗禮冠",
+ "headSpecialFall2019MageNotes": "它的獨立殘暴的眼睛會抑制深度感知,但這對於將您的注意力聚焦到一個單一的強烈點上來說是一個很小的代價。增加<%= per %>點感知。 2019夏季限量版裝備。",
+ "headSpecialFall2019MageText": "獨眼巨人面具",
+ "headSpecialFall2019RogueNotes": "你是在可能被詛咒的服裝拍賣中或者是在古怪的祖父母的閣樓中找到這個頭飾的?不管你在哪裡找它,這個頭飾的年齡和磨損都會增加你的神秘感。增加<%= per %>點智力。 2019夏季限量版裝備。",
+ "headSpecialFall2019RogueText": "古董歌劇帽",
+ "headSpecialSummer2019HealerNotes": "這個貝殼的螺旋結構將幫助你聽到七個海域的任何呼救聲。增加<%= int%>點智力。 2019夏季限量版裝備。",
+ "headSpecialSummer2019HealerText": "海螺王冠",
+ "headSpecialSummer2019MageNotes": "與流行的看法相反,你的頭不適合青蛙棲息。增加<%= per%>點感知。 2019年夏季限量版裝備。",
+ "headSpecialSummer2019MageText": "百合襯板帽子",
+ "headSpecialSummer2019WarriorNotes": "它不會讓你的頭在你的肩膀之間拉下來,但是如果你把船的底部粘在上面它會保護你。增加<%= str%>點力量。 2019年夏季限量版裝備。",
+ "headSpecialSummer2019WarriorText": "海龜頭盔",
+ "headSpecialSummer2019RogueNotes": "這個頭盔讓您可以360度全方位欣賞周圍的水域,非常適合潛入毫無防備的紅色日常任務。增加<%= per%>點感知。 2019夏季限量版裝備。",
+ "headSpecialSummer2019RogueText": "鎚頭頭盔",
+ "headSpecialSpring2019HealerNotes": "戴著這個可愛的鳥嘴頭盔,準備好迎接春天的第一天。增加<%= int%>點智力。 2019年春季限量版裝備。",
+ "headSpecialSpring2019HealerText": "知更鳥頭盔",
+ "headSpecialSpring2019MageNotes": "發光的琥珀寶石賦予這頂帽子神秘自然力量的力量。增加<%= per%>點感知。 2019年春季限量版裝備。",
+ "headSpecialSpring2019MageText": "琥珀帽子",
+ "headSpecialSpring2019WarriorNotes": "這款頭盔是堅不可摧的!它也吸引了蝴蝶。增加<%= str%>點力量。 2019年春季限量版裝備。",
+ "headSpecialSpring2019WarriorText": "蘭花頭盔",
+ "headSpecialSpring2019RogueNotes": "沒有人會注意到一片雲靜靜地飄向他們藏著的黃金,對吧?增加<%= per%>點感知。 2019年春季限量版裝備。",
+ "headSpecialSpring2019RogueText": "雲朵頭盔",
+ "headSpecialKS2019Notes": "有了獅鷲的相似和羽毛,這個輝煌的頭盔代表你的能力、可以成為模範。增加<%= int %>點智力。",
+ "headSpecialKS2019Text": "神話獅鷲頭盔",
+ "headSpecialPiDayNotes": "在走圈圈時,嘗試保持這塊兒美味的派的平衡。或者把它扔到紅色的每日任務裡!或者你可以直接吃掉它。任你選擇!無屬性加成。",
+ "headSpecialPiDayText": "圓周率帽子",
+ "armorArmoireLayerCakeArmorNotes": "它又有保護作用又好吃!增加<%= con %>點體質。來自神秘寶箱:生日快樂套裝(2/4)。",
+ "armorArmoireLayerCakeArmorText": "千層蛋糕盔甲",
+ "armorArmoireDuffleCoatNotes": "穿這個舒適時尚羊毛大衣帶你進入霜凍境界。增加體質和感知各<%= attrs %>點。來自神秘寶箱:風衣套裝(2/4)。",
+ "armorArmoireDuffleCoatText": "風衣",
+ "armorArmoireAlchemistsRobeNotes": "做神奇的鐵或者磚石需要強烈的藥水、可能有意料之外的副作用。這個披肩會保護你。增加<%= con %>點體質和<%= per %>點感知。來自神秘寶箱:煉金術士套裝(1/4)。",
+ "armorArmoireAlchemistsRobeText": "煉金術士的披肩",
+ "armorArmoireShadowMastersRobeNotes": "這個長袍的布是用Habitica的最深的洞穴中最暗的陰影做成的。增加<%= con %>點體質。來自神秘寶箱:暗影大師套裝(1/4)。",
+ "armorArmoireShadowMastersRobeText": "暗影大師的長袍",
+ "armorArmoireInvernessCapeNotes": "這款堅固的服裝可以讓你在任何類型的天氣中尋找線索。增加感知和智力各<%= attrs %>點。來自神秘寶箱:偵探套裝(2/4)。",
+ "armorArmoireInvernessCapeText": "斗篷披肩",
+ "armorArmoireAstronomersRobeNotes": "事實證明絲綢和星光織成的纖維不僅神奇,而且非常透氣。增加感知和體質各<%= attrs %>點。來自神秘寶箱:天文學家法師套裝(1/3)。",
+ "armorArmoireAstronomersRobeText": "天文學家的長袍",
+ "armorArmoireBoatingJacketNotes": "無論你是在一艘時髦的遊艇上,還是在一輛破車上,穿著這件夾克、戴著領帶的你都將惹人注目。增加力量、智力和感知各<%= attrs %>點。來自神秘寶箱:划船套裝(1/3)。",
+ "armorArmoireBoatingJacketText": "划船夾克",
+ "armorArmoireNephriteArmorNotes": "这款盔甲由坚固的钢环制成,饰有玉石,可保护您免受拖延!增加<%= str %>点力量和<%= per %>点感知。來自神秘寶箱:软玉射手套装(3/3)。",
+ "armorArmoireNephriteArmorText": "軟玉盔甲",
+ "armorMystery201910Notes": "這個隱秘的護甲上刀山下火海,無所不能地保護你。無屬性加成。 2019 年 10 月訂閱者專屬裝備。",
+ "armorMystery201910Text": "隱秘的護甲",
+ "armorMystery201909Notes": "你的強硬的外殼會保護你,可是你還應該留意松鼠... 無屬性加成。 2019 年 9 月訂閱者專屬裝備。",
+ "armorMystery201909Text": "友好的橡子護甲",
+ "armorMystery201908Notes": "這些腿是用來跳舞的!而這正是他們要做的。無屬性加成。 2019年8月訂閱者專屬裝備。",
+ "armorMystery201908Text": "自由自在的牧神裝扮",
+ "armorMystery201907Notes": "即使在最熱的夏天,也保持酷,看起來酷。無屬性加成。 2019 年 7 月訂閱者專屬裝備。",
+ "armorMystery201907Text": "花花襯衫",
+ "armorMystery201906Notes": "我們這次就饒了你,不講“魚蠢”這種諧音梗了。哦,等等,哎呀。無屬性加成。 2019年6月訂閱者專屬裝備。",
+ "armorMystery201906Text": "和藹可親的錦鯉尾巴",
+ "armorMystery201904Notes": "這件閃亮的衣服正前面縫著蛋白石,賦予你神秘的力量和神奇的外觀。無屬性加成。 2019年4月訂閱者專屬裝備。",
+ "armorMystery201904Text": "乳白色服裝",
+ "armorMystery201903Notes": "人們非常想知道你在哪裡買到這種雞蛋裝!無屬性加成。 2019年3月訂閱者專屬裝備。",
+ "armorMystery201903Text": "貝殼鎧甲",
+ "armorSpecialWinter2020HealerNotes": "喜慶者的華麗禮服!增加<%= con %>點體質。 2019-2020冬季限量版裝備。",
+ "armorSpecialWinter2020HealerText": "橙色果皮禮服",
+ "armorSpecialWinter2020MageNotes": "穿這個外套,在新的一年中,你可以溫軟地,舒服地,防止過度振動地歡迎新的一年。增加<%= int %>點智力。 2019-2020冬季限量版裝備。",
+ "armorSpecialWinter2020MageText": "彎曲的外套",
+ "armorSpecialWinter2020WarriorNotes": "威武的松樹,參天的冷杉,借我您的力量。更確切地說,借我您的體質!增加<%= con %>點體質。 2019-2020冬季限量版裝備。",
+ "armorSpecialWinter2020WarriorText": "樹皮護甲",
+ "armorSpecialWinter2020RogueNotes": "雖然你可以用自己內心的熱情和專注來抵禦暴風雨,但為天氣穿適合的衣服並沒有壞處。增加<%= per %>點感知。 2019-2020冬季限量版裝備。",
+ "armorSpecialWinter2020RogueText": "蓬鬆的派克大衣",
+ "armorSpecialFall2019HealerNotes": "據說這些長袍是由純淨的黑夜製成的。明智地使用黑暗之力!增加<%= con %>點體質。 2019年秋季限定裝備。",
+ "armorSpecialFall2019HealerText": "黑暗長袍",
+ "armorSpecialFall2019MageNotes": "它的同名遇到一個悲慘的結果。但是,你不會這麼容易被騙!帶了這個傳奇的罩衫,沒人會超過你。增加<%= int %>點體質。 2019年秋季限定裝備。",
+ "armorSpecialFall2019MageText": "波呂斐摩斯的罩衫",
+ "armorSpecialFall2019WarriorNotes": "這些羽毛長袍賦予你飛行的能力,讓你能在任何戰鬥中翱翔。增加<%= con %>點體質。 2019年秋季限定裝備。",
+ "armorSpecialFall2019WarriorText": "暗夜之翼",
+ "armorSpecialFall2019RogueNotes": "這套衣服配有白手套,非常適合在劇院私人套間中沉思,或在宏偉的樓梯出現時讓人詫異。增加<%= per %>點感知。 2019年秋季限定裝備。",
+ "armorSpecialFall2019RogueText": "歌劇外套",
+ "armorSpecialSummer2019HealerNotes": "這條優雅的尾巴在溫暖的沿海水域中滑行。增加<%= con%>點體質。 2019夏季限定裝備。",
+ "armorSpecialSummer2019HealerText": "熱帶潮汐之尾",
+ "armorSpecialSummer2019MageNotes": "百合花會知曉你是他們的其中之一,故不會害怕你的接近。增加<%= int %>點智力。 2019年夏季限定裝備。",
+ "armorSpecialSummer2019MageText": "碎花連衣裙",
+ "armorSpecialSummer2019WarriorNotes": "勇士隊以其堅固的防守而聞名。海龜因其厚厚的甲殼而聞名。這是一場完美的比賽!只是......盡量不要落後。增加<%= con%>點體質。 2019年夏季限量版裝備。",
+ "armorSpecialSummer2019WarriorText": "甲殼盔甲",
+ "armorSpecialSummer2019RogueNotes": "這條蜿蜒的尾巴非常適合在大膽的水上逃生時進行緊急轉彎。增加<%= per%>點感知。 2019年夏季限量版裝備。",
+ "armorSpecialSummer2019RogueText": "鎚頭尾巴",
+ "armorSpecialSpring2019HealerNotes": "你明亮的羽毛會讓每個人都知道冬天的寒冷和黑暗已經過去了。增加<%= con%>點體質。 2019年春季限量版裝備。",
+ "armorSpecialSpring2019HealerText": "羅賓裝扮",
+ "armorSpecialSpring2019MageNotes": "這些長袍從嵌入構成布料的古代樹皮纖維中的魔法樹脂中收集能量。增加<%= int %>點智力。 2019年春季限定裝備。",
+ "armorSpecialSpring2019MageText": "琥珀長袍",
+ "armorSpecialSpring2019WarriorNotes": "加固花瓣的鋼鐵盔甲保護您的心臟,看起來也很時髦。增加<%= con %>點體質。 2019年春季限定裝備。",
+ "armorSpecialSpring2019WarriorText": "蘭花盔甲",
+ "armorSpecialSpring2019RogueNotes": "一些非常凝重的絨毛。增加<%= per %>點感知。 2019年春季限定裝備。",
+ "armorSpecialSpring2019RogueText": "雲盔甲",
+ "armorSpecialKS2019Notes": "這個在內部像獅鷲高貴的內心一樣閃閃發光的護甲,鼓勵你為獲得的成就而感到自豪。增加<%= con %>點體質。",
+ "armorSpecialKS2019Text": "史詩獅鷲護甲",
+ "weaponArmoireHappyBannerNotes": "“H”代表Happy,或者Habitica?這是你的選擇!增加<%= per %>點感知。來自神秘寶箱:生日快樂套裝(3/4)。",
+ "weaponArmoireHappyBannerText": "Happy旗幟",
+ "weaponArmoireAlchemistsDistillerNotes": "用這個光亮銅管儀器淨化鐵和別的神奇化合物。增加<%= str %>點力量和<%= int %>點智力。來自神秘寶箱:煉金術士套裝(3/4)。",
+ "weaponArmoireAlchemistsDistillerText": "煉金術士的蒸餾器",
+ "weaponArmoireShadowMastersMaceNotes": "當你揮舞這個發光的權杖時,黑暗生物將服從你的每一個指令。增加<%= per %>點感知。來自神秘寶箱:暗影大師套裝(3/4)。",
+ "eyewearSpecialGreenHalfMoonText": "綠色半月形眼鏡",
+ "eyewearSpecialGreenHalfMoonNotes": "帶綠色鏡框和月牙形鏡片的眼鏡。無屬性加成。",
+ "eyewearSpecialPinkHalfMoonText": "粉色半月形眼鏡",
+ "eyewearSpecialPinkHalfMoonNotes": "帶有粉紅色鏡架和月牙形鏡片的眼鏡。無屬性加成。",
+ "eyewearSpecialRedHalfMoonNotes": "帶有紅色鏡框和月牙形鏡片的眼鏡。無屬性加成。",
+ "eyewearSpecialRedHalfMoonText": "紅色半月形眼鏡",
+ "eyewearSpecialWhiteHalfMoonText": "白色半月形眼鏡",
+ "eyewearSpecialWhiteHalfMoonNotes": "帶有白色鏡架和月牙形鏡片的眼鏡。無屬性加成。",
+ "eyewearSpecialYellowHalfMoonText": "黃色半月形眼鏡",
+ "eyewearSpecialYellowHalfMoonNotes": "黃色鏡框和月牙形鏡片的眼鏡。無屬性加成。",
+ "eyewearSpecialKS2019Text": "神話獅鷲面罩",
+ "eyewearSpecialKS2019Notes": "和獅鷲的... 嗯... 獅鷲沒有面罩。它提醒你... 哦,你在開玩笑吧?它看起來很酷!無屬性加成。",
+ "eyewearSpecialFall2019RogueText": "白如骨的半面罩",
+ "eyewearSpecialFall2019RogueNotes": "你以為一個蓋住整臉的面罩會比較能保護你的身份,可是大家會被它的特出的設計感到驚奇。他們不會注意到突出的特徵!無屬性加成。 2019年秋季限量版裝備。",
+ "eyewearSpecialFall2019HealerText": "暗面具",
+ "eyewearSpecialFall2019HealerNotes": "用這個難以辨認的面具堅決抵抗最艱難的敵人。無屬性加成。2019年秋季限量版裝備。",
+ "eyewearMystery201907Text": "甜美太陽鏡",
+ "eyewearMystery201907Notes": "看起來很棒,同時保護您的眼睛免受有害紫外線的傷害!無屬性加成。2019年7月訂閱者專屬裝備。",
+ "weaponArmoireShadowMastersMaceText": "暗影大師的權杖",
+ "weaponArmoireResplendentRapierNotes": "用這種鋒利的武器展示你的劍法。增加<%= per%>點感知。來自神秘寶箱:獨立裝備。",
+ "weaponArmoireResplendentRapierText": "華麗細劍",
+ "weaponArmoireFloridFanNotes": "這款可愛的絲綢扇可在不使用時折疊。增加<%= con%>點體質。來自神秘寶箱:獨立裝備。",
+ "weaponArmoireFloridFanText": "炫彩扇子",
+ "weaponArmoireMagnifyingGlassNotes": "啊哈!一個證據!用這個精細的放大鏡仔細檢查它。增加<%= per%>點感知。來自神秘寶箱:偵探套裝(3/4)。",
+ "weaponArmoireMagnifyingGlassText": "放大鏡",
+ "weaponArmoireAstronomersTelescopeNotes": "一種可以讓你觀察星星古老舞蹈的樂器。增加<%= per%>點感知。來自神秘寶箱:天文學家法師套裝(3/3)。",
+ "weaponArmoireAstronomersTelescopeText": "天文學家的望遠鏡",
+ "weaponArmoireBambooCaneNotes": "非常適合協助您漫步或跳查爾斯頓舞。增加智力、感知和體質各<%= attrs %>點。來自神秘寶箱:划船套裝(3/3)。",
+ "weaponArmoireBambooCaneText": "竹藤",
+ "weaponArmoireNephriteBowNotes": "這個弓射出特殊的玉石箭,即使是最頑固的壞習慣也會消失!增加<%= int%>點智力和<%= str%>點力量。來自神秘寶箱:和田玉弓箭手(1/3)。",
+ "weaponArmoireNephriteBowText": "和田弓",
+ "weaponArmoireSlingshotNotes": "瞄准你的紅色日常任務!增加<%= str%>點力量。來自神秘寶箱:獨立裝備。",
+ "weaponArmoireSlingshotText": "彈弓",
+ "weaponArmoireJugglingBallsNotes": "Habiticans是多任務處理的大師,所以你應該毫不費力地將所有這些球保持在空中!增加<%= int%>點智力。來自神秘寶箱:獨立裝備。",
+ "weaponArmoireJugglingBallsText": "雜耍球",
+ "weaponMystery201911Text": "神奇水晶法杖",
+ "weaponSpecialWinter2020HealerNotes": "把它揮舞一下以後,它的香氣會召喚你的朋友和助手,讓他們來烹飪和烘烤!增加<%= int %>點智力。 2019-2020冬季限量版裝備。",
+ "weaponSpecialWinter2020HealerText": "丁香權杖",
+ "weaponSpecialWinter2020MageNotes": "通過練習,你可以以任何所需的頻率投射這種音樂魔術:沉思的嗡嗡聲,喜慶的鈴聲或紅色任務過期的警報!增加<%= int %>點智力和<%= per %>點感知。 2019-2020冬季限量版裝備。",
+ "weaponSpecialWinter2020MageText": "蕩漾的聲波",
+ "weaponSpecialWinter2020WarriorNotes": "後退,松鼠!你們將一無所獲! ...但是,如果你們要去玩並喝可可,那就太酷了。增加<%= str %>點力量。 2019-2020冬季限量版裝備。",
+ "weaponSpecialWinter2020WarriorText": "尖尖的針葉樹錐",
+ "weaponSpecialWinter2020RogueNotes": "黑暗是盜賊的元素。那麼,誰能更好地在一年中最黑暗的時間點亮路呢?增加<%= str %>點力量。 2019-2020冬季限量版裝備。",
+ "weaponSpecialWinter2020RogueText": "燈籠桿",
+ "weaponSpecialFall2019HealerNotes": "這種系統可以喚起人們長期殺戮的精神,並利用其治愈能力。增加<%= int%>點智力。 2019年秋季限量版裝備。",
+ "weaponSpecialFall2019HealerText": "可怕的文字",
+ "weaponSpecialFall2019MageNotes": "無論是製造雷電,製造工事,還是只是將恐怖襲擊到凡人的心中,這只魔杖都賦予了巨人創造奇蹟的力量。增加<%= int %>點智力和<%= per %>點感知。 2019年秋季限量版裝備。",
+ "weaponSpecialFall2019MageText": "獨眼魔杖",
+ "weaponSpecialFall2019WarriorNotes": "準備用渡鴉的爪子殺死敵人!增加<%= str%>點力量。 2019年秋季限量版裝備。",
+ "weaponSpecialFall2019WarriorText": "三叉腳爪",
+ "weaponSpecialFall2019RogueNotes": "樂譜架無論您是指揮樂隊還是演唱詠嘆調,這款有用的設備都可以使您的雙手騰出來,做出生動的手勢!增加<%= str%>點力量。 2019年秋季限量版裝備。",
+ "weaponSpecialFall2019RogueText": "樂譜架",
+ "weaponSpecialSummer2019HealerNotes": "這支魔杖的氣泡捕捉到治療能量和古老的海洋魔法。增加<%= int%>點智力。 2019夏季限量版裝備。",
+ "weaponSpecialSummer2019HealerText": "泡泡魔棒",
+ "weaponSpecialSummer2019MageNotes": "首先從游泳池中拾出的這個小寶貝,賦予並激發了你的靈感,這是你工作的果實。增加<%= int%>點智力。 2019夏季限量版裝備。",
+ "weaponSpecialSummer2019MageText": "燦爛的綻放",
+ "weaponSpecialSummer2019WarriorNotes": "現在你正在與分形作鬥爭!增加<%= str%>點力量。 2019夏季限量版裝備。",
+ "weaponSpecialSummer2019WarriorText": "紅珊瑚",
+ "weaponSpecialSummer2019RogueNotes": "這種古老而強大的武器將幫助你贏得任何海底戰鬥。增加<%= str%>點力量。 2019夏季限量版裝備。",
+ "weaponSpecialSummer2019RogueText": "老式錨",
+ "weaponSpecialSpring2019HealerNotes": "你所唱的花雨之歌會撫慰所有聽到的人的精神。增加<%= int%>點智力。 2019年春季限定裝備。",
+ "weaponSpecialSpring2019HealerText": "春日讚歌",
+ "weaponSpecialSpring2019MageNotes": "法杖末端的琥珀裡包裹了一隻蚊子!不知道有沒有恐龍基因。增加<%= int %>點智力和<%= per %>點感知。 2019年春季限定裝備。",
+ "weaponSpecialSpring2019MageText": "琥珀法杖",
+ "weaponSpecialSpring2019WarriorNotes": "翠綠的刀刃前,壞習慣退隱。增加<%= str %>點力量。 2019春季限定版。",
+ "weaponSpecialSpring2019WarriorText": "樹莖劍",
+ "weaponSpecialSpring2019RogueNotes": "這些武器有著天和雨的力量。我們不推薦你在水中的時候用它們。增加<%= str %>點力量。 2019春季限定裝備。",
+ "weaponSpecialSpring2019RogueText": "閃電箭",
+ "weaponSpecialKS2019Notes": "這件長柄武器有著獅鷲的喙和爪一般的弧度,當前方的任務令人望而生畏,它能令你重振旗鼓。增加<%= str %>點力量。",
+ "weaponSpecialKS2019Text": "神話獅鷲彎刀",
+ "shieldSpecialKS2019Text": "神話獅鷲盾",
+ "shieldSpecialPiDayNotes": "看你敢計算這個盾牌周長與美味的比例!無屬性加成。",
+ "shieldSpecialPiDayText": "π盾",
+ "headArmoireFrostedHelmNotes": "這個完美的頭盔適合任何慶祝活動!增加<%= int %>點智力。來自神秘寶箱:生日快樂套裝(1/4)。",
+ "headArmoireFrostedHelmText": "糖衣頭盔",
+ "headArmoireEarflapHatNotes": "如果你想保持頭部的溫暖,可以戴上這頂帽子!增加智力和力量各<%= attrs %>點。來自神秘寶箱:風衣套裝(2/4)。",
+ "headArmoireEarflapHatText": "耳罩帽",
+ "headArmoireAlchemistsHatNotes": "雖然帽子並不是煉金術中必不可少的元素,但酷的裝扮的確不會傷害任何東西!增加<%= per %>點感知。來自神秘寶箱:煉金術士套裝(2/4)。",
+ "headArmoireAlchemistsHatText": "煉金術士的帽子",
+ "headArmoireShadowMastersHoodNotes": "這個頭罩讓你在最暗的地方看得清。但是,你可能需要眼藥水。增加感知和體質各<%= attrs %>點。來自神秘寶箱:暗影大師套裝(2/4)。",
+ "headArmoireShadowMastersHoodText": "暗影大師的頭罩",
+ "headArmoireDeerstalkerCapNotes": "這個帽子非常適合鄉村遊覽,但也可以用於解決謎題!增加<%= int %>點智力。來自神秘寶箱:偵探集(1/4)。",
+ "headArmoireAstronomersHatNotes": "一個完美的帽子,用於天體觀察或花式精靈早午餐。增加<%= con%>點體質。來自神秘寶箱:天文學家法師套裝(2/3)。",
+ "headArmoireDeerstalkerCapText": "獵鹿帽",
+ "headArmoireBoaterHatNotes": "這個稻草帽是最棒的!增加力量、體質和感知各<%= attrs %>點。來自神秘寶箱:划船套裝(2/3)。",
+ "headArmoireNephriteHelmNotes": "在這個頭盔上雕刻的魔法玉石羽毛可以提高您的目標。增加<%= int%>感知和<%= per%>智力。來自神秘寶箱:玉弓箭手(2/3)。",
+ "headArmoireNephriteHelmText": "綠玉帽子",
+ "headArmoireBoaterHatText": "船帽",
+ "headArmoireAstronomersHatText": "天文學家帽",
+ "headArmoireTricornHatNotes": "成為一個革命性的開玩笑者!增加<%= per %>點感知。來自神秘寶箱:獨立裝備。",
+ "headArmoireTricornHatText": "三角帽",
+ "headMystery202001Notes": "你的聽力會聽力會這麼敏銳,你會聽到星星的閃爍和月亮的旋轉。無屬性加成。 2020年1月訂閱者專屬裝備。",
+ "headMystery202001Text": "寓言的狐狸耳朵",
+ "headMystery201912Notes": "無論你飛得多高,這片閃閃發光的雪花都能使您抵抗刺骨的寒冷!無屬性加成。 2019年12月訂閱者專屬裝備。",
+ "headMystery201912Text": "極地精靈冠",
+ "headMystery201911Notes": "這頂帽子上的每個水晶點都賦予你一種特殊的能力:神秘的千里眼,神奇的智慧和... 板極的旋轉?那好吧。無屬性加成。 2019年11月訂閱者專屬裝備。",
+ "headMystery201911Text": "神奇水晶帽子",
+ "headMystery201910Notes": "這些火焰在你眼前揭示了奧秘的秘密!無屬性加成。 2019年10月訂閱者專屬裝備。",
+ "headMystery201910Text": "隱秘火焰",
+ "headMystery201909Notes": "每個橡子需要戴帽子!呃,吸盤,如果你想了解它的技術。無屬性加成。 2019年9月訂閱者專屬裝備。",
+ "headMystery201909Text": "可愛的橡子帽",
+ "headMystery201907Notes": "沒有什麼說“我在這裡放鬆!”就像一個向後的帽子。無屬性加成。 2019年7月訂閱者專屬裝備。",
+ "headMystery201907Text": "向後箭",
+ "shieldSpecialSummer2019HealerNotes": "貝殼小號的大噪音讓那些需要幫助的人知道你來了。 2019夏季限量版裝備。增加9體質。 "
}
diff --git a/website/common/locales/zh_TW/generic.json b/website/common/locales/zh_TW/generic.json
index e0e0440144..ca28e49996 100644
--- a/website/common/locales/zh_TW/generic.json
+++ b/website/common/locales/zh_TW/generic.json
@@ -61,7 +61,7 @@
"newGroupTitle": "新群組",
"subscriberItem": "神秘裝備",
"newSubscriberItem": "您有新的神秘裝備",
- "subscriberItemText": "每個月,訂閱者將會收到一份神秘禮物。依照慣例將於月底前一個星期公佈。詳情請看 wiki 中的「神秘裝備」頁面。",
+ "subscriberItemText": "每月,定期捐款者會收到一個神秘物品。這件物品一般是在月頭推出。查看Wiki裡的“神秘物品”頁面以獲得更多信息。",
"all": "全部",
"none": "無",
"more": "<%= count %>更多",
@@ -294,5 +294,7 @@
"options": "選項",
"loadEarlierMessages": "載入先前訊息",
"demo": "演示",
- "finish": "完成"
+ "finish": "完成",
+ "congratulations": "恭喜你!",
+ "onboardingAchievs": "到職成就"
}
diff --git a/website/common/locales/zh_TW/limited.json b/website/common/locales/zh_TW/limited.json
index 0a227bc164..a0aa7b50c1 100644
--- a/website/common/locales/zh_TW/limited.json
+++ b/website/common/locales/zh_TW/limited.json
@@ -84,56 +84,56 @@
"reefRenegadeSet": "珊瑚礁叛徒 (盜賊)",
"scarecrowWarriorSet": "稻草人戰士 (戰士)",
"stitchWitchSet": "縫紉術女巫 (法師)",
- "potionerSet": "Potioner (Healer)",
- "battleRogueSet": "Bat-tle Rogue (Rogue)",
- "springingBunnySet": "Springing Bunny (Healer)",
- "grandMalkinSet": "Grand Malkin (Mage)",
- "cleverDogSet": "Clever Dog (Rogue)",
- "braveMouseSet": "Brave Mouse (Warrior)",
- "summer2016SharkWarriorSet": "Shark Warrior (Warrior)",
- "summer2016DolphinMageSet": "Dolphin Mage (Mage)",
- "summer2016SeahorseHealerSet": "Seahorse Healer (Healer)",
- "summer2016EelSet": "Eel Rogue (Rogue)",
- "fall2016SwampThingSet": "Swamp Thing (Warrior)",
- "fall2016WickedSorcererSet": "Wicked Sorcerer (Mage)",
- "fall2016GorgonHealerSet": "Gorgon Healer (Healer)",
- "fall2016BlackWidowSet": "Black Widow Rogue (Rogue)",
- "winter2017IceHockeySet": "Ice Hockey (Warrior)",
- "winter2017WinterWolfSet": "Winter Wolf (Mage)",
- "winter2017SugarPlumSet": "Sugar Plum Healer (Healer)",
- "winter2017FrostyRogueSet": "Frosty Rogue (Rogue)",
- "spring2017FelineWarriorSet": "Feline Warrior (Warrior)",
- "spring2017CanineConjurorSet": "Canine Conjuror (Mage)",
- "spring2017FloralMouseSet": "Floral Mouse (Healer)",
- "spring2017SneakyBunnySet": "Sneaky Bunny (Rogue)",
- "summer2017SandcastleWarriorSet": "Sandcastle Warrior (Warrior)",
- "summer2017WhirlpoolMageSet": "Whirlpool Mage (Mage)",
- "summer2017SeashellSeahealerSet": "Seashell Seahealer (Healer)",
- "summer2017SeaDragonSet": "Sea Dragon (Rogue)",
- "fall2017HabitoweenSet": "Habitoween Warrior (Warrior)",
- "fall2017MasqueradeSet": "Masquerade Mage (Mage)",
- "fall2017HauntedHouseSet": "Haunted House Healer (Healer)",
- "fall2017TrickOrTreatSet": "Trick or Treat Rogue (Rogue)",
- "winter2018ConfettiSet": "Confetti Mage (Mage)",
- "winter2018GiftWrappedSet": "Gift-Wrapped Warrior (Warrior)",
- "winter2018MistletoeSet": "Mistletoe Healer (Healer)",
- "winter2018ReindeerSet": "Reindeer Rogue (Rogue)",
- "spring2018SunriseWarriorSet": "Sunrise Warrior (Warrior)",
- "spring2018TulipMageSet": "Tulip Mage (Mage)",
- "spring2018GarnetHealerSet": "Garnet Healer (Healer)",
- "spring2018DucklingRogueSet": "Duckling Rogue (Rogue)",
+ "potionerSet": "製藥醫者(補師)",
+ "battleRogueSet": "戰-鬥盜賊(盜賊)",
+ "springingBunnySet": "春之兔(補師)",
+ "grandMalkinSet": "豪華的貓(法師)",
+ "cleverDogSet": "靈巧的狗(盜賊)",
+ "braveMouseSet": "勇敢的鼠(戰士)",
+ "summer2016SharkWarriorSet": "鯊魚戰士(戰士)",
+ "summer2016DolphinMageSet": "海豚法師(法師)",
+ "summer2016SeahorseHealerSet": "海馬醫師(補師)",
+ "summer2016EelSet": "鰻魚盜賊(盜賊)",
+ "fall2016SwampThingSet": "沼澤怪物(戰士)",
+ "fall2016WickedSorcererSet": "邪惡巫師(法師)",
+ "fall2016GorgonHealerSet": "蛇發女妖醫師(補師)",
+ "fall2016BlackWidowSet": "黑寡婦盜賊(盜賊)",
+ "winter2017IceHockeySet": "冰上曲棍(戰士)",
+ "winter2017WinterWolfSet": "冬狼(法師)",
+ "winter2017SugarPlumSet": "糖果醫師(補師)",
+ "winter2017FrostyRogueSet": "嚴霜盜賊(盜賊)",
+ "spring2017FelineWarriorSet": "貓武士(戰士)",
+ "spring2017CanineConjurorSet": "狗狗魔術師(法師)",
+ "spring2017FloralMouseSet": "花老鼠(補師)",
+ "spring2017SneakyBunnySet": "鬼祟兔(盜賊)",
+ "summer2017SandcastleWarriorSet": "沙堡戰士(戰士)",
+ "summer2017WhirlpoolMageSet": "漩渦法師(法師)",
+ "summer2017SeashellSeahealerSet": "貝殼海洋醫師(補師)",
+ "summer2017SeaDragonSet": "海龍(盜賊)",
+ "fall2017HabitoweenSet": "萬聖兔勇士(戰士)",
+ "fall2017MasqueradeSet": "假面舞會法師(法師)",
+ "fall2017HauntedHouseSet": "鬼屋醫師(補師)",
+ "fall2017TrickOrTreatSet": "搗蛋盜賊(盜賊)",
+ "winter2018ConfettiSet": "五彩紙屑法師(法師)",
+ "winter2018GiftWrappedSet": "被包裝紙包住的戰士(戰士)",
+ "winter2018MistletoeSet": "槲寄生醫師(補師)",
+ "winter2018ReindeerSet": "馴鹿盜賊(盜賊)",
+ "spring2018SunriseWarriorSet": "晨曦戰士(戰士)",
+ "spring2018TulipMageSet": "鬱金香法師(法師)",
+ "spring2018GarnetHealerSet": "石榴石醫師(補師)",
+ "spring2018DucklingRogueSet": "小鴨盜賊(盜賊)",
"summer2018BettaFishWarriorSet": "鬥魚戰士 (戰士)",
"summer2018LionfishMageSet": "獅子魚法師 (法師)",
"summer2018MerfolkMonarchSet": "人魚帝王 (補師)",
"summer2018FisherRogueSet": "漁夫盜賊 (盜賊)",
- "fall2018MinotaurWarriorSet": "Minotaur (Warrior)",
- "fall2018CandymancerMageSet": "Candymancer (Mage)",
- "fall2018CarnivorousPlantSet": "Carnivorous Plant (Healer)",
- "fall2018AlterEgoSet": "Alter Ego (Rogue)",
- "winter2019BlizzardSet": "Blizzard (Warrior)",
- "winter2019PyrotechnicSet": "Pyrotechnic (Mage)",
- "winter2019WinterStarSet": "Winter Star (Healer)",
- "winter2019PoinsettiaSet": "Poinsettia (Rogue)",
+ "fall2018MinotaurWarriorSet": "牛頭怪(戰士)",
+ "fall2018CandymancerMageSet": "糖果巫師(法師)",
+ "fall2018CarnivorousPlantSet": "食人花(補師)",
+ "fall2018AlterEgoSet": "雙面人(盜賊)",
+ "winter2019BlizzardSet": "寒冰戰士(戰士)",
+ "winter2019PyrotechnicSet": "煙火法師(法師)",
+ "winter2019WinterStarSet": "冬夜閃耀(補師)",
+ "winter2019PoinsettiaSet": "熱情似火的聖誕花(盜賊)",
"eventAvailability": "<%= date(locale) %>前仍可購買。",
"dateEndMarch": "4 月 30 日",
"dateEndApril": "4 月 19 日",
@@ -143,17 +143,35 @@
"dateEndAugust": "8 月 31 日",
"dateEndSeptember": "9 月 21 日",
"dateEndOctober": "10 月 31 日",
- "dateEndNovember": "12 月 3 日",
+ "dateEndNovember": "11月30日",
"dateEndJanuary": "1 月 31 日",
"dateEndFebruary": "2 月 28 日",
"winterPromoGiftHeader": "送出訂閱資格禮物以得到免費的訂閱資格!",
- "winterPromoGiftDetails1": "Until January 15th 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",
- "discountBundle": "bundle",
- "g1g1Announcement": "Gift a Subscription, Get a Subscription Free event going on now!",
- "g1g1Details": "Gift a sub to a friend from their profile and you’ll receive the same sub for free!",
+ "winterPromoGiftDetails1": "本活動持續到1月6日,當你送給你的朋友一份訂閱時,你可以免費得到相同的訂閱時長!",
+ "winterPromoGiftDetails2": "請注意,如果您或您的禮物收件人已經有一個訂閱了,作為禮物的訂閱只會在原來的訂閱取消後或者過期後開始生效。非常感謝你的支持! (*^_^*)",
+ "discountBundle": "一批",
+ "g1g1Announcement": "贈送他人一份訂閱,免費享受一份相同訂閱,活動正在進行中!",
+ "g1g1Details": "點開朋友的個人資料,向TA贈送訂閱,您將免費獲得一份相同的訂閱!",
"spring2019OrchidWarriorSet": "蘭花 (戰士)",
"spring2019AmberMageSet": "琥珀 (法師)",
"eventAvailabilityReturning": "<%= availableDate(locale) %>前仍可購買。這瓶藥水上次在<%= previousDate(locale) %>上市。",
- "june2018": "2018 年 6 月"
+ "june2018": "2018 年 6 月",
+ "september2018": "2018年9月",
+ "september2017": "2017年9月",
+ "decemberYYYY": "12月<%= year %>年",
+ "augustYYYY": "8月<%= year %>年",
+ "winter2020LanternSet": "燈籠(盜賊)",
+ "winter2020WinterSpiceSet": "冬季香料(補師)",
+ "winter2020CarolOfTheMageSet": "法師的頌歌(法師)",
+ "winter2020EvergreenSet": "常綠(戰士)",
+ "fall2019RavenSet": "烏鴉(戰士)",
+ "fall2019LichSet": "死屍(補師)",
+ "fall2019CyclopsSet": "獨眼巨人(法師)",
+ "fall2019OperaticSpecterSet": "歌劇幽靈(盜賊)",
+ "summer2019HammerheadRogueSet": "鎚頭(盜賊)",
+ "summer2019ConchHealerSet": "海螺(補師)",
+ "summer2019WaterLilyMageSet": "睡蓮(法師)",
+ "summer2019SeaTurtleWarriorSet": "海龜(戰士)",
+ "spring2019CloudRogueSet": "雲朵(盜賊)",
+ "spring2019RobinHealerSet": "羅賓(補師)"
}
diff --git a/website/common/locales/zh_TW/npc.json b/website/common/locales/zh_TW/npc.json
index 7b2fe03242..dd3d5c70db 100644
--- a/website/common/locales/zh_TW/npc.json
+++ b/website/common/locales/zh_TW/npc.json
@@ -20,7 +20,7 @@
"welcomeToTavern": "歡迎來到酒館!",
"sleepDescription": "需要休息一會兒?在 Daniel 的酒館登記住宿將暫停 Habitica 一些較為艱難的遊戲機制:",
"sleepBullet1": "未完成的每日任務不會對你造成傷害",
- "sleepBullet2": "任務不會中斷連擊或改變顏色",
+ "sleepBullet2": "任務不會失去連擊數",
"sleepBullet3": "Boss 不會因為你自己未完成的任務造成傷害",
"sleepBullet4": "您對 Boss 造成的傷害或收集到的副本道具將維持直到退房離開",
"pauseDailies": "入住酒館",
@@ -169,5 +169,6 @@
"imReady": "進入 Habitica 的世界",
"limitedOffer": "<%= date %> 前可購入",
"paymentAutoRenew": "直至被取消前,您的訂閱將會在訂閱期滿時自動延長。如果需要,你能在設定裡將它取消。",
- "paymentCanceledDisputes": "我們已發送取消訂閱的確認信到你的電子郵件信箱。若你沒看到該信,請聯絡我們以避免不必要的帳單疑慮。"
+ "paymentCanceledDisputes": "我們已發送取消訂閱的確認信到你的電子郵件信箱。若你沒看到該信,請聯絡我們以避免不必要的帳單疑慮。",
+ "cannotUnpinItem": "您不能取消這個物品的固定。"
}
diff --git a/website/common/locales/zh_TW/questscontent.json b/website/common/locales/zh_TW/questscontent.json
index 0ce68f2fbf..9ad35a7af6 100644
--- a/website/common/locales/zh_TW/questscontent.json
+++ b/website/common/locales/zh_TW/questscontent.json
@@ -1,11 +1,11 @@
{
"questEvilSantaText": "聖誕盜獵者",
- "questEvilSantaNotes": "從冰原的深處,你聽到了一陣痛苦的嘶吼.你跟著那吠叫——從中夾帶著些許的笑聲——到了一個森林中的空地。你在那看到了一個成長完全的北極熊。在籠中的她身上被束縛著鎖鏈,為了生存而反抗著。在籠子上,有個身穿著破爛的聖誕服裝並跳著舞的惡毒小妖靈。擊敗聖誕盜獵者,拯救那被監禁的猛獸!",
+ "questEvilSantaNotes": "冰原深處傳來聲聲痛苦的嘶吼,其中夾雜著刺耳的咯咯笑聲。你循聲來到了一片林中空地,發現了一頭成年北極熊。它被鐐銬鎖在籠子裡,掙扎著想要逃出生天。一個妖精身穿破爛的聖誕裝,正踩在籠子頂上開心地手舞足蹈。你決定戰勝聖誕陷阱獵手,救出這頭北極熊!
注意:“聖誕陷阱獵手”獎勵可堆疊的副本成就,但會獎勵的稀有坐騎只能添加到你的馬厩一次。",
"questEvilSantaCompletion": "聖誕盜獵者憤怒地嚎叫,縱身躍入夜幕之中。一隻充滿感激的母熊咆哮著似乎在訴說著什麼。你把她帶回馬廄,馴獸大師 Matt Boch 聆聽了她帶著恐懼的喘息講述的故事。她有個寶寶!當母熊被陷阱抓住的時候寶寶跑入了冰原。",
"questEvilSantaBoss": "聖誕盜獵者",
"questEvilSantaDropBearCubPolarMount": "北極熊 (坐騎)",
"questEvilSanta2Text": "找小熊",
- "questEvilSanta2Notes": "母熊的寶寶在母熊被聖誕盜獵者抓住的時候跑進了冰原。你聽到樹枝咔嚓作響,雪地嘎吱嘎吱的聲音迴盪在整個樹林。是爪印!你們開始追尋雪地上的踪跡。找到所有的爪印和破損的樹枝,找回她的寶寶!",
+ "questEvilSanta2Notes": "在北極熊坐騎被聖誕陷阱獵手抓住的時候,她的寶寶跑進了冰原。樹枝咔嚓折斷,踏雪嘎吱作響,清脆的聲音迴盪在森林中。這兒有爪印!你們開始追踪著這些足跡前進。只要不漏掉這些爪印和踩斷的樹枝,應該能找回北極熊的崽!
注意:“找熊崽”獎勵可堆疊的副本成就,但會獎勵的稀有寵物只能添加到你的馬厩一次。",
"questEvilSanta2Completion": "恭喜你找到了小熊,它將永遠陪伴著你,讓你不再孤單。",
"questEvilSanta2CollectTracks": "足跡",
"questEvilSanta2CollectBranches": "折斷的樹枝",
@@ -265,375 +265,415 @@
"questHorseDropHorseEgg": "馬 (蛋)",
"questHorseUnlockText": "解鎖——可在市集中購買馬蛋",
"questBurnoutText": "倦怠和廢氣精神",
- "questBurnoutNotes": "It is well past midnight, still and stiflingly hot, when Redphoenix and scout captain Kiwibot abruptly burst through the city gates. \"We need to evacuate all the wooden buildings!\" Redphoenix shouts. \"Hurry!\"
Kiwibot grips the wall as she catches her breath. \"It's draining people and turning them into Exhaust Spirits! That's why everything was delayed. That's where the missing people have gone. It's been stealing their energy!\"
\"'It'?'\" asks Lemoness.
And then the heat takes form.
It rises from the earth in a billowing, twisting mass, and the air chokes with the scent of smoke and sulphur. Flames lick across the molten ground and contort into limbs, writhing to horrific heights. Smoldering eyes snap open, and the creature lets out a deep and crackling cackle.
Kiwibot whispers a single word.
\"Burnout.\"",
- "questBurnoutCompletion": "Burnout is DEFEATED!
With a great, soft sigh, Burnout slowly releases the ardent energy that was fueling its fire. As the monster curls quietly into ashes, its stolen energy shimmers through the air, rejuvenating the Exhaust Spirits and returning them to their true forms.
Ian, Daniel, and the Seasonal Sorceress cheer as Habiticans rush to greet them, and all the missing citizens of the Flourishing Fields embrace their friends and families. The final Exhaust Spirit transforms into the Joyful Reaper herself!
\"Look!\" whispers @Baconsaur, as the ashes begin to glitter. Slowly, they resolve into hundreds of shining phoenixes!
One of the glowing birds alights on the Joyful Reaper's skeletal arm, and she grins at it. \"It has been a long time since I've had the exquisite privilege to behold a phoenix in the Flourishing Fields,\" she says. \"Although given recent occurrences, I must say, this is highly thematically appropriate!\"
Her tone sobers, although (naturally) her grin remains. \"We're known for being hard-working here, but we are also known for our feasts and festivities. Rather ironic, I suppose, that as we strove to plan a spectacular party, we refused to permit ourselves any time for fun. We certainly won't make the same mistake twice!\"
She claps her hands. \"Now - let's celebrate!\"",
- "questBurnoutCompletionChat": "`Burnout is DEFEATED!`\n\nWith a great, soft sigh, Burnout slowly releases the ardent energy that was fueling its fire. As the monster curls quietly into ashes, its stolen energy shimmers through the air, rejuvenating the Exhaust Spirits and returning them to their true forms.\n\nIan, Daniel, and the Seasonal Sorceress cheer as Habiticans rush to greet them, and all the missing citizens of the Flourishing Fields embrace their friends and families. The final Exhaust Spirit transforms into the Joyful Reaper herself!\n\n\"Look!\" whispers @Baconsaur, as the ashes begin to glitter. Slowly, they resolve into hundreds of shining phoenixes!\n\nOne of the glowing birds alights on the Joyful Reaper's skeletal arm, and she grins at it. \"It has been a long time since I've had the exquisite privilege to behold a phoenix in the Flourishing Fields,\" she says. \"Although given recent occurrences, I must say, this is highly thematically appropriate!\"\n\nHer tone sobers, although (naturally) her grin remains. \"We're known for being hard-working here, but we are also known for our feasts and festivities. Rather ironic, I suppose, that as we strove to plan a spectacular party, we refused to permit ourselves any time for fun. We certainly won't make the same mistake twice!\"\n\nShe claps her hands. \"Now - let's celebrate!\"\n\nAll Habiticans receive:\n\nPhoenix Pet\nPhoenix Mount\nAchievement: Savior of the Flourishing Fields\nBasic Candy\nVanilla Candy\nSand Candy\nCinnamon Candy\nChocolate Candy\nRotten Candy\nSour Pink Candy\nSour Blue Candy\nHoney Candy",
- "questBurnoutBoss": "Burnout",
+ "questBurnoutNotes": "紅鳳凰和隊長獼猴桃人粗暴的闖入城門的時候,早已過了午夜。空氣還是熱的讓人發悶。 “我們得清空所有的木製建築!”紅鳳凰大喊,“快啊!”
\n獼猴桃人靠著牆調整著呼吸,“它正在榨乾那些人,耗盡他們的力氣!怪不得所有事情都推遲了。怪不得我們不知道失踪的人去了哪裡。它正在偷他們的精力!”< br>
\n“它?”檸檬人問。
\n話音未落,熱氣開始成形。
\n它捲著巨大的熱浪從地面升起,翻滾著,扭動著。空氣中瀰漫著嗆人的煙味和硫磺味。火舌掠過灼熱的地表,分化出肢體,快速向上伸展著,高的嚇人。當大家可以看到它怒火熊熊的雙眼的時候,那傢伙發出了一聲低沉的爆裂聲。
\n獼猴桃人喃喃的說:
\n“火焰怪。”",
+ "questBurnoutCompletion": "湮滅怪被擊敗了!
伴隨著一個美妙的、柔軟的嘆息,湮滅怪慢慢地釋放了曾被它用來助長了火災的熱情能量。當怪獸靜靜地蜷縮最終化為灰燼時,其偷來的能量在空中閃閃發光,使被耗盡的精力們恢復了活力,回到了他們真實的模樣。
嵐,丹尼爾,和季節女巫與衝過去迎接他們的Habiticans一起歡慶著,所有全盛田野失踪的百姓都回來了,他們擁抱著自己的朋友和家人。最後耗盡的靈魂變為了“快樂收割者”!
“瞧!”@Baconsaur低語,灰燼開始閃爍,慢慢地,他們分解成數百閃閃發光的鳳凰!
一隻發光的小鳥棲落在了快樂收割者纖細的手臂上,她露出了潔白的牙齒笑道:“距離上一次我有幸在全盛田野看見鳳凰已經有很長世間了,”她說:“但是最近發生的這些事,我必須說,這正是恰如其分再好不過!”
她的語調平靜,雖然(自然而然)她的笑容依舊:”我們在這片土地上因為辛勤勞作而享有盛名,但是我們也曾因節日和慶祝活動而為世人所知。當我們努力去計劃一個盛大的宴會時,我想,這太諷刺了。曾經我們拒絕讓自己有任何玩樂的時間。現在,我們當然不會再一次犯同樣的錯誤!”
她拍著她的雙手:“現在——讓我們來慶祝吧!”",
+ "questBurnoutCompletionChat": "湮滅怪被擊敗了!\n\n隨著一個美妙的、柔軟的嘆息,湮滅怪慢慢地釋放了曾被它用來助長了火災的熱情能量。當怪獸靜靜地蜷縮最終化為灰燼時,其偷來的能量在空中閃閃發光,使被耗盡的精力們恢復了活力,回到了他們真實的模樣。\n\n嵐,丹尼爾,和季節女巫與衝過去迎接他們的Habiticans一起歡慶著,所有全盛田野失踪的百姓都回來了,他們擁抱著自己的朋友和家人。最後耗盡的靈魂變為了“快樂收割者”!\n\n“瞧!”@Baconsaur低語,灰燼開始閃爍,慢慢地,他們分解成數百閃閃發光的鳳凰!\n\n一隻發光的小鳥棲落在了快樂收割者纖細的手臂上,她露出了潔白的牙齒笑道:“距離上一次我有幸在全盛田野看見鳳凰已經有很長世間了,”她說:“但是最近發生的這些事,我必須說,這正是恰如其分再好不過!”\n\n她的語調平靜,雖然(自然而然)她的笑容依舊:”我們在這片土地上因為辛勤勞作而享有盛名,但是我們也曾因節日和慶祝活動而為世人所知。當我們努力去計劃一個盛大的宴會時,我想,這太諷刺了。曾經我們拒絕讓自己有任何玩樂的時間。現在,我們當然不會再一次犯同樣的錯誤!”\n\n她拍著她的雙手:“現在——讓我們來慶祝吧!”\n\n所有的Habiticans獲得:\n\n鳳凰寵物\n鳳凰坐騎\n成就:全盛田野的守護者\n普通糖果\n香草糖果\n砂糖果\n肉桂糖果\n巧克力糖果\n腐爛糖果\n粉色酸味糖果\n藍色酸味糖果\n蜂蜜糖果",
+ "questBurnoutBoss": "湮滅怪",
"questBurnoutBossRageTitle": "排氣打擊",
- "questBurnoutBossRageDescription": "When this gauge fills, Burnout will unleash its Exhaust Strike on Habitica!",
+ "questBurnoutBossRageDescription": "當這個量槽被填滿,湮滅怪就會在Habitica釋放他的湮滅攻擊!",
"questBurnoutDropPhoenixPet": "鳳凰 (寵物)",
"questBurnoutDropPhoenixMount": "鳳凰 (座騎)",
- "questBurnoutBossRageQuests": "`Burnout uses EXHAUST STRIKE!`\n\nOh no! Despite our best efforts, we've let some Dailies get away from us, and now Burnout is inflamed with energy! With a crackling snarl, it engulfs Ian the Quest Master in a surge of spectral fire. As fallen quest scrolls smolder, the smoke clears, and you see that Ian has been drained of energy and turned into a drifting Exhaust Spirit!\n\nOnly defeating Burnout can break the spell and restore our beloved Quest Master. Let's keep our Dailies in check and defeat this monster before it attacks again!",
- "questBurnoutBossRageSeasonalShop": "`Burnout uses EXHAUST STRIKE!`\n\nAhh!!! Our incomplete Dailies have fed the flames of Burnout, and now it has enough energy to strike again! It lets loose a gout of spectral flame that sears the Seasonal Shop. You're horrified to see that the cheery Seasonal Sorceress has been transformed into a drooping Exhaust Spirit.\n\nWe have to rescue our NPCs! Hurry, Habiticans, complete your tasks and defeat Burnout before it strikes for a third time!",
- "questBurnoutBossRageTavern": "`Burnout uses EXHAUST STRIKE!`\n\nMany Habiticans have been hiding from Burnout in the Tavern, but no longer! With a screeching howl, Burnout rakes the Tavern with its white-hot hands. As the Tavern patrons flee, Daniel is caught in Burnout's grip, and transforms into an Exhaust Spirit right in front of you!\n\nThis hot-headed horror has gone on for too long. Don't give up... we're so close to vanquishing Burnout for once and for all!",
- "questFrogText": "Swamp of the Clutter Frog",
- "questFrogNotes": "As you and your friends are slogging through the Swamps of Stagnation, @starsystemic points at a large sign. \"Stay on the path -- if you can.\"
\"Surely that isn't hard!\" @RosemonkeyCT says. \"It's broad and clear.\"
But as you continue, you notice that path is gradually overtaken by the muck of the swamp, laced with bits of strange blue debris and clutter, until it's impossible to proceed.
As you look around, wondering how it got this messy, @Jon Arjinborn shouts, \"Look out!\" An angry frog leaps from the sludge, clad in dirty laundry and lit by blue fire. You will have to overcome this poisonous Clutter Frog to progress!",
- "questFrogCompletion": "The frog cowers back into the muck, defeated. As it slinks away, the blue slime fades, leaving the way ahead clear.
Sitting in the middle of the path are three pristine eggs. \"You can even see the tiny tadpoles through the clear casing!\" @Breadstrings says. \"Here, you should take them.\"",
- "questFrogBoss": "Clutter Frog",
+ "questBurnoutBossRageQuests": "`倦怠使用了疲勞打擊!`\n\n噢,不!儘管我們盡了最大努力,我們仍然讓一些每日任務離開了我們,現在,倦怠充滿了能量熊熊燃燒!伴隨著劈啪的咆哮聲,它湧起幽靈之火吞噬了副本大師嵐。落下的副本捲軸燃燒著,煙霧散去,你發現嵐已經被抽光了能量,變成了漂浮著的疲勞精神體!\n\n唯有戰勝倦怠才能製止法術,才能複原我們珍愛的副本大師。讓我們保持按時完成每日任務吧,在怪物再次攻擊前戰勝它!",
+ "questBurnoutBossRageSeasonalShop": "`倦怠使用了疲勞打擊!`\n\n啊啊啊!我們未完成的每日任務給倦怠之火提供了能量,現在,它有足夠的能量再次攻擊了!它釋放了一團幽靈之火灼燒著季節商店。你驚駭地發現,愉快的季節女巫已經變為無力的疲勞精神體。\n\n你必須營救我們的NPC們!快,Habitic村民們,完成你的任務吧,在怪物第三次攻擊前戰勝它!",
+ "questBurnoutBossRageTavern": "`倦怠使用了疲勞打擊!`\n\n很多Habitic村民已經躲避倦怠進入了客棧,但是堅持不了太長時間了!伴隨著刺耳的嚎叫,倦怠用它那白熱的爪子犁過酒館。酒館的客人全跑了,Daniel 被倦怠抓住,就在你面前變成了疲勞精神體!\n\n極度恐慌已經持續了太長的時間。不要放棄...我們已經如此接近戰勝倦怠了,一勞永逸!",
+ "questFrogText": "蛙澤",
+ "questFrogNotes": "你和朋友正在拖沓沼澤艱難前行,@starsystemic 指向一個大標記。 “不要離開小路——如果能做到的話”。
“這又不難!”@RosemonkeyCT 說,“路面又寬又乾淨。”
但隨著你們繼續前行,你注意到路面開始漸漸被沼澤覆蓋,間雜著奇怪的藍色碎塊雜物,直到無法再繼續向前走。
你環顧四周,想搞明白這是怎麼一回事,@Jon Arjinborn 喊道:“小心!”一隻憤怒的青蛙從淤泥中一躍而出,身披髒衣服,還燒著藍色的火焰,你必須戰勝這只有毒的凌亂蛙才能前進!",
+ "questFrogCompletion": "青蛙被打敗後畏縮地回到了淤泥中。它悄悄地溜走了,藍色的粘液消失,乾淨的路面重新出現在前方。
路中間有三個蛙卵。 “你甚至可以透過外殼看見裡面的小蝌蚪!”@Breadstrings 說道。 “拿著,你應該帶他們回去。”",
+ "questFrogBoss": "凌亂蛙",
"questFrogDropFrogEgg": "青蛙 (蛋)",
"questFrogUnlockText": "解鎖——可在市集中購買青蛙蛋",
- "questSnakeText": "The Serpent of Distraction",
- "questSnakeNotes": "It takes a hardy soul to live in the Sand Dunes of Distraction. The arid desert is hardly a productive place, and the shimmering dunes have led many a traveler astray. However, something has even the locals spooked. The sands have been shifting and upturning entire villages. Residents claim a monster with an enormous serpentine body lies in wait under the sands, and they have all pooled together a reward for whomever will help them find and stop it. The much-lauded snake charmers @EmeraldOx and @PainterProphet have agreed to help you summon the beast. Can you stop the Serpent of Distraction?",
- "questSnakeCompletion": "With assistance from the charmers, you banish the Serpent of Distraction. Though you were happy to help the inhabitants of the Dunes, you can't help but feel a little sad for your fallen foe. While you contemplate the sights, @LordDarkly approaches you. \"Thank you! It's not much, but I hope this can express our gratitude properly.\" He hands you some Gold and... some Snake eggs! You will see that majestic animal again after all.",
+ "questSnakeText": "分心蛇",
+ "questSnakeNotes": "生活在分心沙丘的人得有堅強的精神。乾旱的沙漠幾乎無法產出任何東西,閃耀的沙丘讓很多旅行者誤入歧途。然而,有什麼東西甚至嚇跑了當地人。沙子扭動著翻捲了整個村莊,村民都說有著一個龐大身軀的蛇形怪物藏在沙下。他們湊了些賞金,發出懸賞讓人幫助他們找到並阻止這個怪物。負有盛名的弄蛇人@EmeraldOx 和@PainterProphet 同意幫助你降伏野獸。你能阻止分心蛇嗎?",
+ "questSnakeCompletion": "在大佬們的幫助下, 你消滅掉了分心蛇。雖然你很高興你幫助了住在沙丘里的人們,但還是不禁為你倒下的對手而難過。在你凝視著眼前的一切時,@LordDarkly 向你走來。 “謝謝你!這不是什麼厚禮,但我希望能表示一下我們的感激之情。”他遞給你一些金幣和……一些蛇蛋!畢竟,你還有機會再見見那雄偉的動物。",
"questSnakeBoss": "分心之蛇",
"questSnakeDropSnakeEgg": "蛇 (蛋)",
"questSnakeUnlockText": "解鎖——可在市集中購買蛇蛋",
- "questUnicornText": "Convincing the Unicorn Queen",
- "questUnicornNotes": "Conquest Creek has become muddied, destroying Habit City's fresh water supply! Luckily, @Lukreja knows an old legend that claims that a unicorn's horn can purify the foulest of waters. Together with your intrepid guide @UncommonCriminal, you hike through the frozen peaks of the Meandering Mountains. Finally, at the icy summit of Mount Habitica itself, you find the Unicorn Queen amid the glittering snows. \"Your pleas are compelling,\" she tells you. \"But first you must prove that you are worthy of my aid!\"",
- "questUnicornCompletion": "Impressed by your diligence and strength, the Unicorn Queen at last agrees that your cause is worthy. She allows you to ride on her back as she soars to the source of Conquest Creek. As she lowers her golden horn to the befouled waters, a brilliant blue light rises from the water’s surface. It is so blinding that you are forced to close your eyes. When you open them a moment later, the unicorn is gone. However, @rosiesully lets out a cry of delight: the water is now clear, and three shining eggs rest at the creek’s edge.",
+ "questUnicornText": "說服獨角獸女王",
+ "questUnicornNotes": "征服溪流變渾濁了,Habit市的供水系統受到了巨大威脅!幸運的是,@Lukreja 知道一個古老的傳說,用一隻獨角獸的角,再污濁的水也能被淨化。你和英勇無畏的嚮導@UncommonCriminal 一起翻過蜿蜒山脈的冰封山尖,終於白雪皚皚的Habitica山頂找到了站在雪裡的獨角獸女王。 “你的請求讓人無法拒絕,“她說,”但是首先,你需要證明你值得我幫助!”",
+ "questUnicornCompletion": "獨角獸女王被你的優雅和力量打動了,她最終承認了你的要求值得幫助。她讓你騎在她背上,馳向征服溪流的源頭。在她低下頭,將她金色的額獨角伸向被污染的溪水時,水面泛起一層耀眼的藍光,那麼明亮,你不得不閉上眼睛,過了一會,當你再睜開雙眼,獨角獸女王已經不見了,不過,@rosiesully 發出了一聲快樂的呼喊:水又變得乾淨了,還有三隻閃亮的蛋靜靜躺在小溪邊。",
"questUnicornBoss": "獨角獸王后",
"questUnicornDropUnicornEgg": "獨角獸 (蛋)",
"questUnicornUnlockText": "解鎖——可在市集中購買獨角獸蛋",
"questSabretoothText": "劍齒虎",
- "questSabretoothNotes": "A roaring monster is terrorizing Habitica! The creature stalks through the wilds and woods, then bursts forth to attack before vanishing again. It's been hunting innocent pandas and frightening the flying pigs into fleeing their pens to roost in the trees. @InspectorCaracal and @icefelis explain that the Zombie Sabre Cat was set free while they were excavating in the ancient, untouched ice-fields of the Stoïkalm Steppes. \"It was perfectly friendly at first – I don't know what happened. Please, you have to help us recapture it! Only a champion of Habitica can subdue this prehistoric beast!\"",
- "questSabretoothCompletion": "After a long and tiring battle, you wrestle the Zombie Sabre Cat to the ground. As you are finally able to approach, you notice a nasty cavity in one of its sabre teeth. Realising the true cause of the cat's wrath, you're able to get the cavity filled by @Fandekasp, and advise everyone to avoid feeding their friend sweets in future. The Sabre Cat flourishes, and in gratitude, its tamers send you a generous reward – a clutch of sabretooth eggs!",
+ "questSabretoothNotes": "咆哮的怪獸讓Habitica顫抖!怪獸昂首闊步地走過荒野和森林,在再次消失前爆發出攻擊。它在狩獵無辜的熊貓,嚇得飛豬逃離它們樹上的棲息圍欄。 @InspectorCaracal 和@icefelis 交待他們在古代的Stoikalm草原的冰原挖掘的時候釋放了殭屍劍齒貓。 “最初,它非常友好,我不知道發生了什麼。請你一定要幫幫我們再次抓到它!只有Habitica的冠軍能征服這個史前野獸!”",
+ "questSabretoothCompletion": "長時間艱苦的戰鬥後,你和殭屍劍齒貓扭打到了地上。在你最終接近的時候,你發現它的劍齒上有一個討厭的洞。突然你意識到什麼導致了貓的憤怒,你終於能夠讓@Fandekasp 補上洞,然後建議每一個人不要在以後給他們的朋友甜食了。劍齒貓恢復了健康,出於感激,它的馴獸師送給你一份慷慨的獎賞——劍齒虎蛋!",
"questSabretoothBoss": "殭屍劍齒虎",
"questSabretoothDropSabretoothEgg": "劍齒虎 (蛋)",
"questSabretoothUnlockText": "解鎖——可在市集中購買劍齒虎蛋",
- "questMonkeyText": "Monstrous Mandrill and the Mischief Monkeys",
- "questMonkeyNotes": "The Sloensteadi Savannah is being torn apart by the Monstrous Mandrill and his Mischief Monkeys! They shriek loudly enough to drown out the sound of approaching deadlines, encouraging everyone to avoid their duties and keep monkeying around. Alas, plenty of people ape this bad behavior. If no one stops these primates, soon everyone's tasks will be as red as the Monstrous Mandrill's face!
\"It will take a dedicated adventurer to resist them,\" says @yamato.
\"Quick, let's get this monkey off everyone's backs!\" @Oneironaut yells, and you charge into battle.",
- "questMonkeyCompletion": "You did it! No bananas for those fiends today. Overwhelmed by your diligence, the monkeys flee in panic. \"Look,\" says @Misceo. \"They left a few eggs behind.\"
@Leephon grins. \"Maybe a well-trained pet monkey can help you as much as the wild ones hinder you!\"",
+ "questMonkeyText": "巨大的山魈和淘氣的猴子",
+ "questMonkeyNotes": "堅定稀樹草原快被巨大的山魈和頑皮的猴子撕碎了!他們大聲尖叫,壓過了截止日期快到的聲音,讓所有人容易忘掉他們的責任天天閒混。唉,大量的人們模仿這個壞行為。如果沒人阻止這些猴子,每個人的任務將會很快變的和猴屁股一樣紅!
@yamato 說:“我們需要敬業的冒險者來阻止他們。”
@Oneironaut 大叫著:“快,讓我們把猴子從每個人的背上拉下來! ” 你沖向了戰鬥。",
+ "questMonkeyCompletion": "你做到了!那些朋友今天沒有香蕉了。被你的勤奮嚇到,猴子驚慌的逃掉。 “看,” @Misceo 說,“他們留下了一些蛋。”
@Leephon grins 說:“野生猴子有多礙事,訓練有素的寵物猴子就能幫你多少。”",
"questMonkeyBoss": "巨大的山魈",
"questMonkeyDropMonkeyEgg": "猴 (蛋)",
"questMonkeyUnlockText": "解鎖——可在市集中購買猴子蛋",
- "questSnailText": "The Snail of Drudgery Sludge",
- "questSnailNotes": "You're excited to begin questing in the abandoned Dungeons of Drudgery, but as soon as you enter, you feel the ground under your feet start to suck at your boots. You look up to the path ahead and see Habiticans mired in slime. @Overomega yells, \"They have too many unimportant tasks and dailies, and they're getting stuck on things that don't matter! Pull them out!\"
\"You need to find the source of the ooze,\" @Pfeffernusse agrees, \"or the tasks that they cannot accomplish will drag them down forever!\"
Pulling out your weapon, you wade through the gooey mud.... and encounter the fearsome Snail of Drudgery Sludge.",
- "questSnailCompletion": "You bring your weapon down on the great Snail's shell, cracking it in two, releasing a flood of water. The slime is washed away, and the Habiticans around you rejoice. \"Look!\" says @Misceo. \"There's a small group of snail eggs in the remnants of the muck.\"",
- "questSnailBoss": "Snail of Drudgery Sludge",
+ "questSnailText": "苦差事淤泥蝸牛",
+ "questSnailNotes": "一開始,你對於要探索苦差事地下城遺跡這事很興奮。但是當你一進去,你就感受到你腳下的地面在吸你的靴子。你看著前面的小路,看到Habitica居民陷入了淤泥。 @Overomega 大叫,“他們有太多不重要的任務和每日任務,他們正被不要緊的事情卡住!把他們拉出來!”
“你需要找到滲出的源頭,” @Pfeffernusse 贊同著說,“不然他們不能完成的任務會把他們永遠拖下去!”
拿出你的武器,你艱難地通過黏黏的泥……突然遇上了可怕的苦差事淤泥蝸牛。",
+ "questSnailCompletion": "你把你的武器砸在巨大的蝸牛殼上,殼裂成兩半,湧出了大量的水。粘液被沖走,Habitica居民在你身邊歡呼。 “看!” @Misceo 說,“在殘留的淤泥中,有一小群的蝸牛蛋。”",
+ "questSnailBoss": "苦差事淤泥蝸牛",
"questSnailDropSnailEgg": "蝸牛 (蛋)",
"questSnailUnlockText": "解鎖——可在市集中購買蝸牛蛋",
- "questBewilderText": "The Be-Wilder",
- "questBewilderNotes": "The party begins like any other.
The appetizers are excellent, the music is swinging, and even the dancing elephants have become routine. Habiticans laugh and frolic amid the overflowing floral centerpieces, happy to have a distraction from their least-favorite tasks, and the April Fool whirls among them, eagerly providing an amusing trick here and a witty twist there.
As the Mistiflying clock tower strikes midnight, the April Fool leaps onto the stage to give a speech.
“Friends! Enemies! Tolerant acquaintances! Lend me your ears.” The crowd chuckles as animal ears sprout from their heads, and they pose with their new accessories.
“As you know,” the Fool continues, “my confusing illusions usually only last a single day. But I’m pleased to announce that I’ve discovered a shortcut that will guarantee us non-stop fun, without having to deal with the pesky weight of our responsibilities. Charming Habiticans, meet my magical new friend... the Be-Wilder!”
Lemoness pales suddenly, dropping her hors d'oeuvres. “Wait! Don’t trust--”
But suddenly mists are pouring into the room, glittering and thick, and they swirl around the April Fool, coalescing into cloudy feathers and a stretching neck. The crowd is speechless as an monstrous bird unfolds before them, its wings shimmering with illusions. It lets out a horrible screeching laugh.
“Oh, it has been ages since a Habitican has been foolish enough to summon me! How wonderful it feels, to have a tangible form at last.”
Buzzing in terror, the magic bees of Mistiflying flee the floating city, which sags from the sky. One by one, the brilliant spring flowers wither up and wisp away.
“My dearest friends, why so alarmed?” crows the Be-Wilder, beating its wings. “There’s no need to toil for your rewards any more. I’ll just give you all the things that you desire!”
A rain of coins pours from the sky, hammering into the ground with brutal force, and the crowd screams and flees for cover. “Is this a joke?” Baconsaur shouts, as the gold smashes through windows and shatters roof shingles.
PainterProphet ducks as lightning bolts crackle overhead, and fog blots out the sun. “No! This time, I don’t think it is!”
Quickly, Habiticans, don’t let this World Boss distract us from our goals! Stay focused on the tasks that you need to complete so we can rescue Mistiflying -- and hopefully, ourselves.",
- "questBewilderCompletion": "The Be-Wilder is DEFEATED!
We've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.
Mistiflying is saved!
The April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”
The crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.
“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”
Redphoenix coughs meaningfully.
“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”
Encouraged, the marching band starts up.
It isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.
As Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”",
- "questBewilderCompletionChat": "`The Be-Wilder is DEFEATED!`\n\nWe've done it! The Be-Wilder lets out a ululating cry as it twists in the air, shedding feathers like falling rain. Slowly, gradually, it coils into a cloud of sparkling mist. As the newly-revealed sun pierces the fog, it burns away, revealing the coughing, mercifully human forms of Bailey, Matt, Alex.... and the April Fool himself.\n\n`Mistiflying is saved!`\n\nThe April Fool has enough shame to look a bit sheepish. “Oh, hm,” he says. “Perhaps I got a little…. carried away.”\n\nThe crowd mutters. Sodden flowers wash up on sidewalks. Somewhere in the distance, a roof collapses with a spectacular splash.\n\n“Er, yes,” the April Fool says. “That is. What I meant to say was, I’m dreadfully sorry.” He heaves a sigh. “I suppose it can’t all be fun and games, after all. It might not hurt to focus occasionally. Maybe I’ll get a head start on next year’s pranking.”\n\nRedphoenix coughs meaningfully.\n\n“I mean, get a head start on this year’s spring cleaning!” the April Fool says. “Nothing to fear, I’ll have Habit City in spit-shape soon. Luckily nobody is better than I at dual-wielding mops.”\n\nEncouraged, the marching band starts up.\n\nIt isn’t long before all is back to normal in Habit City. Plus, now that the Be-Wilder has evaporated, the magical bees of Mistiflying bustle back to work, and soon the flowers are blooming and the city is floating once more.\n\nAs Habiticans cuddle the magical fuzzy bees, the April Fool’s eyes light up. “Oho, I’ve had a thought! Why don’t you all keep some of these fuzzy Bee Pets and Mounts? It’s a gift that perfectly symbolizes the balance between hard work and sweet rewards, if I’m going to get all boring and allegorical on you.” He winks. “Besides, they don’t have stingers! Fool’s honor.”",
- "questBewilderBossRageTitle": "Beguilement Strike",
- "questBewilderBossRageDescription": "When this gauge fills, The Be-Wilder will unleash its Beguilement Strike on Habitica!",
+ "questBewilderText": "迷失怪",
+ "questBewilderNotes": "派對開始的時候和任何一場沒什麼不同。
開胃菜棒極了,音樂讓人搖擺,甚至跳舞的大像都是保留節目。 Habitica居民們在中央的花海中大笑嬉鬧,不用去想最不喜歡的任務可真逍遙,愚者在他們中間迴轉,急切地到處展示著有趣的惡作劇和詼諧的動作。
隨著Misti飛城的鐘塔在午夜響起,愚者跳上舞台開始演講。
“朋友們!敵人們!心胸寬廣的老熟人們!聽我說兩句。”人們輕笑著,豎起了耳朵,用新的配飾裝扮自己,擺起了姿勢。
“如你們所知,”愚者繼續說著,“我那摸不著頭腦的幻覺僅僅持續了一天。但是,我很開心的宣布,我已經發現一個捷徑,可以保證我們的快樂不會停止,不需要去處理責任的重壓。可愛的Habitica居民們,見見我新的魔法朋友吧……“迷茫”!”
Lemoness突然臉色蒼白,丟下她的餐前甜點。 “等等!不要相信——”
但是,突然迷霧灌進了房間,閃閃發光,逐漸變濃,它們繞著愚者打著旋儿,凝聚成雲朵般的羽翼和抻長的脖子。人群說不出話來,一隻巨大的怪鳥在他們面前顯露出來,它的翅膀閃爍著幻覺。它發出恐怖刺耳的笑聲。
“噢,已經很多很多年了,一個有夠愚蠢的Habitica居民召喚了我!多麼美妙啊,終於有一個實體了。”
Misti飛城的魔法蜜蜂驚恐嗡嗡的逃離了這座浮空城,浮空城開始從天空下落。燦爛的春之花一個接一個枯萎了。
“我最親愛的朋友,為何如此驚恐?”迷茫啼叫著,扇動著它的翅膀,“沒必要再幸苦贏得獎勵了。我會給你們所有你們想要的東西! ”
金幣雨從空中傾瀉下來,猛力地敲打在地面,人們尖叫著奔跑著尋找遮蔽物。 “這是在開玩笑嗎?”Baconsaur大叫,金幣砸穿了窗戶,打破了屋頂的瓦片。
畫家Prophet閃避著,空中出現了閃電裂紋,霧遮擋了太陽。 “不!這次我想不是了!”
快,Habitica居民們,不要讓這個世界Boss使我們從目標上分心!保持注意力,關注你需要完成的任務,這樣我們才能拯救Misti飛城——還有,充滿希望的我們自己。",
+ "questBewilderCompletion": "“迷茫”被打!敗!了!
我們做到了!迷茫在空中扭曲,悲慟大叫,羽毛飄下來就像是雨點。漸漸地,它被捲入一團閃亮的霧中。一縷縷陽光穿透了迷霧,驅散了它,咳嗽著的不幸之幸的人們得以重見天日,其中有Bailey, Matt, Alex...和愚者自己。
Misti飛城被拯救了!
愚者看起來有點局促不安。 “噢,嗯,”他說,“我可能有點....忘乎所以了。”
人們在喃喃低語,濕漉漉的花朵被沖上人行道,在遠處還能看到坍塌的屋頂濺起的壯觀水花。
“額,好,”愚者說,“也就是說…我想說的是,很抱歉。”他長嘆道,“這畢竟可不是什麼好玩的遊戲,偶爾當心點不會有壞處的。也許我還是會帶頭開始下一年的惡作劇。”
浴火鳳凰故意咳了一聲。
“我的意思是,帶頭開始今年的春季大掃除!”愚者說,“不用擔心,我會很快將Habitica修回原樣。幸好在雙持掃把上沒人比我厲害。”
儀仗隊開始演奏,鼓舞大家。
用不了多久Habitica的一切就會回歸正軌。此外,現在迷茫已經消失了,魔法蜜蜂回到了Misti飛城開始了忙碌的工作,不久後,城市又一次淹沒在了花海中。
Habitica居民擁抱了魔法絨絨蜜蜂,愚者的眼睛瞬間亮了起來,“噢,我有了一個想法!為什麼你們都不養一些絨絨蜜蜂當寵物和坐騎呢?如果我要讓你感到無聊和有寓意的話,這是一個很好的禮物,它完美的代表了辛勤工作和甜蜜的回報的結合。”他眨了眨眼,“另外,它們沒有毒刺!愚者向你致敬。 ”",
+ "questBewilderCompletionChat": "`“迷茫”被打!敗!了! `\n\n我們做到了!迷茫在空中扭曲,悲慟大叫,羽毛飄下來就像是雨點。漸漸地,它被捲入一團閃亮的霧中。一縷縷陽光穿透了迷霧,驅散了它,咳嗽著的不幸之幸的人們得以重見天日,其中有Bailey, Matt, Alex...和愚者自己。\n\n`Misti飛城被拯救了! `\n\n愚者看起來有點局促不安。 “噢,嗯,”他說,“我可能有點....忘乎所以了。”\n\n人們在喃喃低語,濕漉漉的花朵被沖上人行道,在遠處還能看到坍塌的屋頂濺起的壯觀水花。\n\n“額,好,”愚者說,“也就是說…我想說的是,很抱歉。”他長嘆道,“這畢竟可不是什麼好玩的遊戲,偶爾當心點不會有壞處的。也許我還是會帶頭開始下一年的惡作劇。”\n\n浴火鳳凰故意咳了一聲。\n\n“我的意思是,帶頭開始今年的春季大掃除!”愚者說,“不用擔心,我會很快將Habitica修回原樣。幸好在雙持掃把上沒人比我厲害。”\n\n儀仗隊開始演奏,鼓舞大家。\n\n用不了多久Habitica的一切就會回歸正軌。此外,現在迷茫已經消失了,魔法蜜蜂回到了Misti飛城開始了忙碌的工作,不久後,城市又一次淹沒在了花海中。\n\nHabitica居民擁抱了魔法絨絨蜜蜂,愚者的眼睛瞬間亮了起來,“噢,我有了一個想法!為什麼你們都不養一些絨絨蜜蜂當寵物和坐騎呢?如果我要讓你感到無聊和有寓意的話,這是一個很好的禮物,它完美的代表了辛勤工作和甜蜜的回報的結合。”他眨了眨眼,“另外,它們沒有毒刺!愚者向你致敬。”",
+ "questBewilderBossRageTitle": "欺騙打擊",
+ "questBewilderBossRageDescription": "當這個量槽被填滿,迷失怪就會在Habitica釋放他的欺騙攻擊!",
"questBewilderDropBumblebeePet": "奇幻蜜蜂 (寵物)",
"questBewilderDropBumblebeeMount": "奇幻蜜蜂 (座騎)",
- "questBewilderBossRageMarket": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nOh no! Despite our best efforts, we've gotten distracted by the Be-Wilder’s charming illusions and have forgotten to do some of our Dailies! With a cackling cry, the shining bird beats its wings, raising a swarm of mist around Alex the Merchant. When the fog clears, he has been possessed! “Have some free samples!” he shouts gleefully, and begins to hurl exploding eggs and potions at fleeing Habiticans. Not the most favorable of sales, to be sure.\n\nHurry! Let's stay focused on our Dailies to defeat this monster before it possesses someone else.",
- "questBewilderBossRageStables": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nAhh!!! Once again the Be-Wilder has dazzled us into neglecting our Dailies, and now it has attacked Matt the Beast Master! With a swirl of mist, Matt transforms into a terrifying winged creature, and all the pets and mounts howl sadly in their stables. Quickly, stay focused on your tasks to defeat this dastardly distraction!",
- "questBewilderBossRageBailey": "`The Be-Wilder uses BEGUILEMENT STRIKE!`\n\nLook out! In the middle of reporting the news, Bailey the Town Crier has been possessed by the Be-Wilder! She lets out an evil, uninformative screech as she rises into the air. Now how will we know what’s going on?\n\nDon't give up... we're so close to defeating this bothersome bird for once and for all!",
- "questFalconText": "The Birds of Preycrastination",
- "questFalconNotes": "Mt. Habitica is being overshadowed by a looming mountain of To-Dos. It used to be a place to picnic and enjoy a sense of accomplishment, until the neglected tasks grew out of control. Now it's home to fearsome Birds of Preycrastination, foul creatures which stop Habiticans from completing their tasks!
\"It's too hard!\" they caw at @JonArinbjorn and @Onheiron. \"It'll take too long to do right now! It won't make any difference if you wait until tomorrow! Why don't you do something fun instead?\"
No more, you vow. You will climb your personal mountain of To-Dos and defeat the Birds of Preycrastination!",
- "questFalconCompletion": "Having finally triumphed over the Birds of Preycrastination, you settle down to enjoy the view and your well-earned rest.
\"Wow!\" says @Trogdorina. \"You won!\"
@Squish adds, \"Here, take these eggs I found as a reward.\"",
- "questFalconBoss": "Birds of Preycrastination",
+ "questBewilderBossRageMarket": "`迷失怪運用了 欺騙打擊! `\n\n噢不!儘管我們努力了,我們迷失怪迷人的幻覺還是讓我們分心,忘掉了一些每日任務!伴隨著咯咯的叫喊聲,華麗的鳥兒扇動著翅膀,扇起了一大團薄霧圍繞著商人Alex。當霧消失,他已經著魔了! “有一些免費的樣品!”他興高采烈地喊著,開始丟出爆炸的蛋和藥水朝向逃跑的Habitica村民。誠然,不是最優惠的銷售。\n\n快!讓我們保持關注我們的每日任務在它佔據其他人之前打敗這個怪物。",
+ "questBewilderBossRageStables": "`迷失怪運用了 欺騙打擊! `\n \n啊! ! !迷失怪再次讓我們目眩神迷以至於忽視了我們的每日任務,現在它已經攻擊了馴獸師馬特!一陣煙霧後,馬特竟然變成了可怕的飛行怪獸,所有的寵物和坐騎都在獸欄中痛苦地嚎叫。快!專注於你的每日任務來打敗這個卑鄙的怪物!",
+ "questBewilderBossRageBailey": "`迷失怪運用了 欺騙打擊! `\n\n小心!在報導新聞中,公告員貝利已經被迷失怪佔據了!她放出了一個惡魔,她隨意的大叫聲升上了天空。現在我們該怎麼辦?\n\n不要放棄...我們就快要擊敗這個討厭的大鳥了,一勞永逸!",
+ "questFalconText": "掠食明天之鳥",
+ "questFalconNotes": "赫然聳現的堆成山的待辦事項令Habitica山蒙上了陰影。被忽視的任務增長失控前,它曾是野餐和享受完成的感覺的地方。現在,他變成了掠食明天之鳥的巢穴,掠食明天之鳥是一種邪惡的生物,阻止Habitica居民完成他們的任務!
“太難了!”它們朝著@JonArinbjorn 和@Onheiron 發出叫聲,“現在完成花太多的時間了!等到明天做一點關係都沒有!為什麼現在不去做一些有趣的事情呢?”
你發誓再也不這樣了。你將攀登你自己的待辦事項山脈,打敗掠食明天之鳥!",
+ "questFalconCompletion": "最後,你戰勝了掠食明天之鳥,安下心來享受風景和你應得的休息時間。
“哇噢!”@Trogdorina 說,“你贏了!”
@Squish 接著說道:“嘿,拿上這些我找到的蛋作為你的獎勵。”",
+ "questFalconBoss": "掠食明天之鳥",
"questFalconDropFalconEgg": "鷹 (蛋)",
"questFalconUnlockText": "解鎖——可在市集中購買鷹蛋",
- "questTreelingText": "The Tangle Tree",
- "questTreelingNotes": "It's the annual Garden Competition, and everyone is talking about the mysterious project which @aurakami has promised to unveil. You join the crowd on the day of the big announcement, and marvel at the introduction of a moving tree. @fuzzytrees explains that the tree will help with garden maintenance, showing how it can mow the lawn, trim the hedge and prune the roses all at the same time – until the tree suddenly goes wild, turning its secateurs on its creator! The crowd panics as everyone tries to flee, but you aren't afraid – you leap forward, ready to do battle.",
- "questTreelingCompletion": "You dust yourself off as the last few leaves drift to the floor. In spite of the upset, the Garden Competition is now safe – although the tree you just reduced to a heap of wood chips won't be winning any prizes! \"Still a few kinks to work out there,\" @PainterProphet says. \"Perhaps someone else would do a better job of training the saplings. Do you fancy a go?\"",
- "questTreelingBoss": "Tangle Tree",
+ "questTreelingText": "糾結樹",
+ "questTreelingNotes": "這是一年一度的花園大賽!大家都在談論 @aurakami 即將宣布的神秘項目。您在宣布當天也加入了人潮,對剛推出的移動樹木讚歎不已。 @fuzzytrees 解釋,這棵樹會對花園的維修和照顧有很大的貢獻,然後讓它演示同時割草坪、修剪矮灌木和玫瑰花。突然!它發了瘋!把手中的樹枝修剪器揮了過來!觀眾一陣驚呼後開始逃跑。但你不怕!反而跳上前,準備戰鬥。",
+ "questTreelingCompletion": "看著最後幾片樹葉飄落到地上,你撣了撣身上的灰塵。儘管有些失望,但花園競賽現在已經安全了——至少剛才那棵被你變成一堆木片的樹沒法再獲獎了! “不過,還有一些工作要做”,@PainterProphet 說道, “需要一些人手來更好地培育樹苗。你願意一起來做嗎?”",
+ "questTreelingBoss": "糾結樹",
"questTreelingDropTreelingEgg": "樹精 (蛋)",
"questTreelingUnlockText": "解鎖——可在市集中購買樹精蛋",
- "questAxolotlText": "The Magical Axolotl",
- "questAxolotlNotes": "From the depths of Washed-Up Lake you see rising bubbles and... fire? A little axolotl rises from the murky water spewing streaks of colors. Suddenly it begins to open its mouth and @streak yells, \"Look out!\" as the Magical Axolotl starts to gulp up your willpower!
The Magical Axolotl swells with spells, taunting you. \"Have you heard of my powers of regeneration? You'll tire before I do!\"
\"We can defeat you with the good habits we've built!\" @PainterProphet defiantly shouts. You steel yourself to be productive to defeat the Magical Axolotl and regain your stolen willpower!",
- "questAxolotlCompletion": "After defeating the Magical Axolotl, you realize that you regained your willpower all on your own.
\"The willpower? The regeneration? It was all just an illusion?\" @Kiwibot asks.
\"Most magic is,\" the Magical Axolotl replies. \"I'm sorry for tricking you. Please take these eggs as an apology. I trust you to raise them to use their magic for good habits and not evil!\"
You and @hazel40 clutch your new eggs in one hand and wave goodbye with the other as the Magical Axolotl returns to the lake.",
- "questAxolotlBoss": "Magical Axolotl",
+ "questAxolotlText": "魔法蠑螈",
+ "questAxolotlNotes": "從淨湖的深處,你看到了不斷上升的泡沫和……火?一隻小蠑螈從渾濁的水中顯現出條紋的顏色。突然它張開嘴,@streak 大叫,“當心!”魔法蠑螈開始吞噬你的意志力!
魔法蠑螈因咒語變得膨脹,它在嘲笑你。 “你聽說過我的再生能力嗎?在我再生之前你就會疲勞的!”
“我們可以打敗你的,我們已經建立了良好的習慣!”@PainterProphet 挑釁地大喊。堅強些,高效地打敗魔法蠑螈,並奪回你被偷走的意志力!",
+ "questAxolotlCompletion": "在打敗魔法蠑螈之後,你體會到你靠自己奪回了意志力。
@Kiwibot 問道:“意志力?再生?那些只是錯覺?”
“大部分魔法都是這樣,”魔法蠑螈回答道,“我很抱歉欺騙了你。請收下這些蛋作為我的道歉。我相信你們會提升他們的能力,讓他們使用魔法以獲得好習慣,還有別作惡!”
你和@hazel40 用一隻手抓起你們的新蛋,和其他人揮手告別,魔法蠑螈也回到湖中去了。",
+ "questAxolotlBoss": "魔法蠑螈",
"questAxolotlDropAxolotlEgg": "蠑螈 (蛋)",
"questAxolotlUnlockText": "解鎖——可在市集中購買蠑螈蛋",
- "questAxolotlRageTitle": "Axolotl Regeneration",
- "questAxolotlRageDescription": "This bar fills when you don't complete your Dailies. When it is full, the Magical Axolotl will heal 30% of its remaining health!",
- "questAxolotlRageEffect": "`Magical Axolotl uses AXOLOTL REGENERATION!`\n\n`A curtain of colorful bubbles obscures the monster for a moment, and when it clears, some of its wounds have vanished!`",
- "questTurtleText": "Guide the Turtle",
- "questTurtleNotes": "Help! This giant sea turtle cannot find her way to her nesting beach. She returns there every year to lay her eggs, but this year Inkomplete Bay is filled with toxic Task Flotsam made of red dailies and unchecked to-dos. \"She's thrashing in a panic!\" @JessicaChase says.
@UncommonCriminal nods. \"It's because her guiding senses are fogged and confused.\"
@Scarabsi grabs your arm. \"Can you help clear the Task Flotsam blocking her path? It may be hazardous, but we have to help her!\"",
- "questTurtleCompletion": "Your valiant work has cleared the waters for our sea turtle to find her beach. You, @Bambin, and @JaizakAripaik watch as she buries her brood of eggs deep in the sand so they can grow and hatch into hundreds of little sea turtles. Ever the lady, she gives you three eggs each, asking that you feed and nurture them so one day they become big sea turtles themselves.",
- "questTurtleBoss": "Task Flotsam",
+ "questAxolotlRageTitle": "蠑螈再生",
+ "questAxolotlRageDescription": "如果你沒有完成每日任務,這個進度條的進度就會前進。當它填滿的時候魔法蠑螈會回复它剩餘生命值的30%!",
+ "questAxolotlRageEffect": "`魔法蠑螈使用了蠑螈再生! `\n\n`七彩泡泡遮住了怪物,當它們消失時,魔法蠑螈的傷口也癒合了! `",
+ "questTurtleText": "引導海龜",
+ "questTurtleNotes": "救命啊!這隻巨大的海龜找不到回到她造巢的海灘的路了。她每年都回到這裡下蛋,但是今年未完成海灘充滿了由紅色每日任務和未完成的待辦事項構成的有毒的任務漂浮物。 @JessicaChase 說道:“她在恐慌中瑟瑟發抖!”
@UncommonCriminal 嘟噥道:“這是因為她的方向感變得不清晰和混亂。”
@Scarabsi 鉤住了你的手臂:“你能幫忙清除這些阻擋了她路線的任務漂浮物嗎?這可能是有危險的,但是我們必須幫助她!”",
+ "questTurtleCompletion": "你英勇地清理了水體,海龜能找到她的海灘了。你、@Bambin 和@JaizakAripaik 看著她把一窩的蛋埋在沙中,他們會成長並孵化出成百上千個小海龜。海龜小姐,她給了你三個蛋,請求你餵養並且教育他們,直到他們自己成為大海龜的那一天。",
+ "questTurtleBoss": "任務漂浮物",
"questTurtleDropTurtleEgg": "海龜 (蛋)",
"questTurtleUnlockText": "解鎖——可在市集中購買烏龜蛋",
- "questArmadilloText": "The Indulgent Armadillo",
- "questArmadilloNotes": "It's time to get outside and start your day. You swing open your door only to be met with what looks like a sheet of rock. \"I'm just giving you the day off!\" says a muffled voice through the blocked door. \"Don't be such a bummer, just relax today!\"
Suddenly, @Beffymaroo and @PainterProphet knock on your window. \"Looks like the Indulgent Armadillo has taken a liking to you! C'mon, we'll help you get her out of your way!\"",
- "questArmadilloCompletion": "Finally, after a long morning of convincing the Indulgent Armadillo that you do, in fact, want to work, she caves. \"I'm sorry!\" She apologizes. \"I just wanted to help. I thought everyone liked lazy days!\"
You smile, and let her know that next time you've earned a day off you'll invite her over. She grins back at you. Passers-by @Tipsy and @krajzega congratulate you on the good work as she rolls away, leaving a few eggs as an apology.",
- "questArmadilloBoss": "Indulgent Armadillo",
+ "questArmadilloText": "放縱的犰狳",
+ "questArmadilloNotes": "是時候走出去開始新的一天了。你搖晃著打開門,卻看到了一個看上去像石板一樣的東西\"我只給你一天時間休假!\"被堵住的門後傳來朦朧的聲音。 \"不要成為一個大懶漢,但是今天就好好休息吧\"
突然之間,@Beffymaroo 和 @PainterProphet 敲打著你的窗戶。 \"看上去放縱的犰狳已經帶給你了一個嗜好!來吧,我們讓她擺脫你的!\"",
+ "questArmadilloCompletion": "最終,本想去工作的你,用了一整個早晨的時間來勸說放縱的犰狳,她最終知錯了。 “真對不起!”她說,“我本來是想幫忙的. 我以為所有人都喜歡懶散度日!”
你笑了,並告訴她如果哪天你能休息的話一定會請她過來玩。她咧開嘴笑了。路人 @Tipsy 和 @krajzega 祝賀你做了這麼棒的一件事情,這時犰狳滾動著離開了,留下了一些蛋作為賠償。",
+ "questArmadilloBoss": "放縱的犰狳",
"questArmadilloDropArmadilloEgg": "穿山甲 (蛋)",
"questArmadilloUnlockText": "解鎖——可在市集中購買犰狳蛋",
- "questCowText": "The Mootant Cow",
- "questCowNotes": "It’s been a long, hot day at Sparring Farms, and there is nothing more you want than a long sip of water and some sleep. You're standing there daydreaming when @Soloana suddenly screams, \"Everyone run! The prize cow has mootated!\"
@eevachu gulps. \"It must be our bad habits that infected it.\"
\"Quick!\" @Feralem Tau says. \"Let’s do something before the udder cows mootate, too.\"
You’ve herd enough. No more daydreaming -- it's time to get those bad habits under control!",
- "questCowCompletion": "You milk your good habits for all they are worth until the cow reverts to its original form. The cow looks over at you with her pretty brown eyes and nudges over three eggs.
@fuzzytrees laughs and hands you the eggs, \"Maybe it still is mootated if there are baby cows in these eggs. But I trust you to stick to your good habits when you raise them!\"",
- "questCowBoss": "Mootant Cow",
+ "questCowText": "變異奶牛",
+ "questCowNotes": "那是在斯巴英農場中又熱又長的一天,除了痛快地喝口水後去睡覺,你再也不想做什麼別的了。正當你呆在那裡做白日夢的時候,@Soloana突然尖叫起來,“所有人快跑!被捕獲的奶牛開始暴動了!”
@eevachu 吞了一口唾沫,“它一定是被我們的壞習慣感染了。”
“快點!”Feralem Tau喊道,“在變異奶牛來臨前行動起來!”
你對自己的放羊時間已經夠長了,不要再做白日夢了,是時候獲取那些壞習慣的控制權了!",
+ "questCowCompletion": "當你的好習慣奶牛一直保持有價值的時候,你從中擠出牛奶, 直到好習慣奶牛回復成它原來的樣子。奶牛用它的棕色漂亮的眼睛看著你,並產出三個蛋。
@fuzzytrees 一邊笑著將這些蛋交給你,”如果蛋裡面有牛寶寶,也許它仍然是變異的。但是我相信你撫養牠們的時候,會堅持你的好習慣!”",
+ "questCowBoss": "變異奶牛",
"questCowDropCowEgg": "牛 (蛋)",
"questCowUnlockText": "解鎖——可在市集中購買乳牛蛋",
- "questBeetleText": "The CRITICAL BUG",
- "questBeetleNotes": "Something in the domain of Habitica has gone awry. The Blacksmiths' forges have extinguished, and strange errors are appearing everywhere. With an ominous tremor, an insidious foe worms from the earth... a CRITICAL BUG! You brace yourself as it infects the land, and glitches begin to overtake the Habiticans around you. @starsystemic yells, \"We need to help the Blacksmiths get this Bug under control!\" It looks like you'll have to make this programmer's pest your top priority.",
- "questBeetleCompletion": "With a final attack, you crush the CRITICAL BUG. @starsystemic and the Blacksmiths rush up to you, overjoyed. \"I can't thank you enough for smashing that bug! Here, take these.\" You are presented with three shiny beetle eggs. Hopefully these little bugs will grow up to help Habitica, not hurt it.",
+ "questBeetleText": "嚴重的BUG",
+ "questBeetleNotes": "Habitica域裡的好多東西出了岔子。鐵匠的熔爐熄滅了,到處都在出稀奇古怪的玄學BUG。伴隨著一場不祥的地震,一個傢伙悄無聲息地從地下蠕動了上來……一條巨大的蟲子!一個嚴重的BUG!看到它在感染這片大陸,你打起精神,發現身邊的Habitica居民們身上開始發生故障。 @starsystemic 喊道:“我們需要幫助鐵匠解決這個BUG!”看起來你必須得把對付程序員不喜歡的這個玩意作為最高優先級了。",
+ "questBeetleCompletion": "最後一擊,你粉碎了這個嚴重的BUG。 @starsystemic 和鐵匠歡呼雀躍著來到你面前:“我都不知道該如何感謝你消滅了這個BUG!這些給你。”他送給了你三個閃閃發光的甲殼蟲蛋。希望這些小蟲子們長大後能有益於Habitica,而不是傷害它。",
"questBeetleBoss": "CRITICAL BUG",
"questBeetleDropBeetleEgg": "獨角仙 (蛋)",
"questBeetleUnlockText": "解鎖——可在市集中購買獨角仙蛋",
- "questGroupTaskwoodsTerror": "Terror in the Taskwoods",
- "questTaskwoodsTerror1Text": "Terror in the Taskwoods, Part 1: The Blaze in the Taskwoods",
- "questTaskwoodsTerror1Notes": "You have never seen the Joyful Reaper so agitated. The ruler of the Flourishing Fields lands her skeleton gryphon mount right in the middle of Productivity Plaza and shouts without dismounting. \"Lovely Habiticans, we need your help! Something is starting fires in the Taskwoods, and we still haven't fully recovered from our battle against Burnout. If it's not halted, the flames could engulf all of our wild orchards and berry bushes!\"
You quickly volunteer, and hasten to the Taskwoods. As you creep into Habitica’s biggest fruit-bearing forest, you suddenly hear clanking and cracking voices from far ahead, and catch the faint smell of smoke. Soon enough, a horde of cackling, flaming skull-creatures flies by you, biting off branches and setting the treetops on fire!",
- "questTaskwoodsTerror1Completion": "With the help of the Joyful Reaper and the renowned pyromancer @Beffymaroo, you manage to drive back the swarm. In a show of solidarity, Beffymaroo offers you her Pyromancer's Turban as you move deeper into the forest.",
- "questTaskwoodsTerror1Boss": "Fire Skull Swarm",
- "questTaskwoodsTerror1RageTitle": "Swarm Respawn",
- "questTaskwoodsTerror1RageDescription": "Swarm Respawn: This bar fills when you don't complete your Dailies. When it is full, the Fire Skull Swarm will heal 30% of its remaining health!",
- "questTaskwoodsTerror1RageEffect": "`Fire Skull Swarm uses SWARM RESPAWN!`\n\nEmboldened by their victories, more skulls swirl around you in a gout of flame!",
- "questTaskwoodsTerror1DropSkeletonPotion": "Skeleton Hatching Potion",
+ "questGroupTaskwoodsTerror": "恐怖的任務森林",
+ "questTaskwoodsTerror1Text": "恐怖的任務森林,第1部:任務樹林中的大火",
+ "questTaskwoodsTerror1Notes": "你從未見過快樂收割者如此不安。繁榮土地的主人乘坐她的骷髏獅鷲降落在生產力廣場中央,來不及下坐騎便開始呼喊。 “可愛的habitica居民們,我們需要你們的幫忙!有些東西正開始在任務樹林中燃燒,而我們還沒有完全從戰鬥的勞累中恢復。如果火焰不停止,它會吞噬我們所有的野生果樹和漿果!”
你馬上答應幫忙,並加速到達了任務樹林。當你進入habitica最大的果林時,突然聽到叮噹聲和破裂聲從前方的遠處傳來,還嗅到了淡淡的煙味。很快,一群咯咯叫、燃燒著的頭骨怪物飛過你,咬斷樹枝並把樹梢扔到了火焰上!",
+ "questTaskwoodsTerror1Completion": "在快樂收割者和著名的火佔師@Beffymaroo 的幫助下,你嘗試著擊退他們。 Beffymaroo給了你她的烈焰術士頭巾以示團結,你們進入森林的更深處。",
+ "questTaskwoodsTerror1Boss": "火骷髏群",
+ "questTaskwoodsTerror1RageTitle": "骨群重生",
+ "questTaskwoodsTerror1RageDescription": "骨群重生:如果你沒有完成每日任務,這個進度條的進度會前進。當它填滿的時候烈焰骸骨群會回复它剩餘生命值的30%!",
+ "questTaskwoodsTerror1RageEffect": "`火骷髏群使用了骨群重生! `\n\n受到勝利的激勵,更多的骸骨從火焰中衝了出來,壯大隊伍!",
+ "questTaskwoodsTerror1DropSkeletonPotion": "骷髏孵化藥水",
"questTaskwoodsTerror1DropRedPotion": "紅色孵化藥水",
- "questTaskwoodsTerror1DropHeadgear": "Pyromancer's Turban (Headgear)",
- "questTaskwoodsTerror2Text": "Terror in the Taskwoods, Part 2: Finding the Flourishing Fairies",
- "questTaskwoodsTerror2Notes": "Having fought through the swarm of burning skulls, you reach a large group of refugee farmers at the forest's edge. \"Their village was burnt down by a renegade autumn spirit,\" says a familiar voice. It's @Kiwibot, the legendary tracker! \"I managed to gather the survivors, but there's no sign of the Flourishing Fairies who help to grow the wild fruit of the Taskwoods. Please, you have to help me rescue them!\"",
- "questTaskwoodsTerror2Completion": "You manage to locate the last dryad and lead her away from the monsters. When you return to the refugee farmers, you are greeted by the thankful faeries, who give you a robe woven of shining magic and silk. Suddenly, a deep rumbling sound echoes through the trees, shaking the very earth. \"That must be the renegade spirit,\" the Joyful Reaper says. \"Let's hurry!\"",
- "questTaskwoodsTerror2CollectPixies": "Pixies",
+ "questTaskwoodsTerror1DropHeadgear": "烈焰術士頭巾(頭飾)",
+ "questTaskwoodsTerror2Text": "恐怖的任務森林,第2部:找到豐收精靈",
+ "questTaskwoodsTerror2Notes": "在與火骷髏群的戰鬥之後,你在森林的邊緣遇到了一大群逃難的農民。 “他們的村莊被叛變的秋天精靈燒毀了,”一個熟悉的聲音說道,是@Kiwibot,傳奇的追踪者! “我已經把難民們都聚集到了這裡,但是卻沒有找到幫助森林裡的野生水果生長的豐收精靈的踪跡,你得幫我救救他們!”",
+ "questTaskwoodsTerror2Completion": "你嘗試著定位最後的樹妖並且引導她遠離怪物。當你回到逃難的農夫那裡時,你被充滿感激的妖精們迎接,他們用閃光魔法和絲綢為你編織了一件長袍。突然,一陣隆隆的迴聲從樹中傳出,震動地表。 “那一定是叛變的精靈,”快樂的收穫者說。 “快!”",
+ "questTaskwoodsTerror2CollectPixies": "小精靈",
"questTaskwoodsTerror2CollectBrownies": "布朗尼",
- "questTaskwoodsTerror2CollectDryads": "Dryads",
+ "questTaskwoodsTerror2CollectDryads": "樹妖",
"questTaskwoodsTerror2DropArmor": "火術士長袍 (盔甲)",
- "questTaskwoodsTerror3Text": "Terror in the Taskwoods, Part 3: Jacko of the Lantern",
- "questTaskwoodsTerror3Notes": "Ready for battle, your group marches to the heart of the forest, where the renegade spirit is trying to destroy an ancient apple tree surrounded by fruitful berry bushes. His pumpkin-like head radiates a terrible light wherever it turns, and in his left hand he holds a long rod, with a lantern hanging from its tip. Instead of fire or flame, however, the lantern contains a dark crystal that chills you to the very bone.
The Joyful Reaper raises a bony hand to her mouth. \"That's -- that's Jacko, the Lantern Spirit! But he's a helpful harvest ghost who guides our farmers. What could possibly drive the dear soul to act this way?\"
\"I don't know,\" says @bridgetteempress. \"But it looks like that 'dear soul' is about to attack us!\"",
- "questTaskwoodsTerror3Completion": "After a long battle, you manage to land a well-aimed blow at the lantern that Jacko carries, and the crystal within shatters. Jacko suddenly snaps back to his senses and bursts into glowing tears. \"Oh, my beautiful forest! What have I done?!\" he wails. His tears extinguish the remaining fires, and the apple tree and wild berries are saved.
After you help him relax, he explains, \"I met this charming lady named Tzina, and she gave me this glowing crystal as a gift. At her urging, I put it in my lantern... but that's the last thing I recall.\" He turns to you with a golden smile. \"Perhaps you should take it for safekeeping while I help the wild orchards to regrow.\"",
- "questTaskwoodsTerror3Boss": "Jacko of the Lantern",
+ "questTaskwoodsTerror3Text": "恐怖的任務森林,第3部:傑克南瓜燈",
+ "questTaskwoodsTerror3Notes": "你的隊伍走到森林深處,準備戰鬥。在那裡,一個叛變的精靈正試圖摧毀被肥沃漿果叢林包圍的古老蘋果樹。他的南瓜頭不管轉向哪裡都散發出一種可怕的光,左手持一根頂端掛著燈籠的長桿。然而,燈籠中的並不是火焰或者焰光,而是一種黑色晶體,令你脊背發寒。
快樂收割者用她骨瘦如柴的手摀住嘴。 “那是——那是Jacko,燈籠精靈!但他是一個對收穫有幫助的精靈,指導著我們的農民。是什麼讓這位親愛的精靈做這樣的事?”
“我不知道,”@bridgetteempress 說,“但看起來這個'親愛的精靈'要攻擊我們了!”",
+ "questTaskwoodsTerror3Completion": "一番爭鬥之後,你看準時機打落了Jacko攜帶的那個燈籠!裡面的晶體被砸碎了! Jacko突然恢復了理智,流下發光的淚水。 “哦,我美麗的森林!我做了什麼?!”他痛哭著。他的眼淚熄滅了余火,救下了蘋果樹和野生漿果。
在你讓他平靜下來之後,他解釋說:“我遇見了一個很有魅力的女士,叫Tzina,她給了我這個發光的晶體,作為禮物。在她的催促下,我把它放進我的燈籠……這是我能回憶起的最後一件事。”他金黃色的腦袋轉向你微笑著說:“也許在我幫助野生果園重建的時候,你可以保管著它。”",
+ "questTaskwoodsTerror3Boss": "傑克南瓜燈",
"questTaskwoodsTerror3DropStrawberry": "草莓 (食物)",
- "questTaskwoodsTerror3DropWeapon": "Taskwoods Lantern (Two-Handed Weapon)",
- "questFerretText": "The Nefarious Ferret",
- "questFerretNotes": "Walking through Habit City, you see an unhappy crowd surrounding a red-robed Ferret.
\"That productivity potion you sold me is useless!\" @Beffymaroo complains. \"I watched three hours of TV last night instead of doing my chores!\"
\"Yeah!\" shouts @Pandah. \"And today I spent an hour rearranging my books instead of reading them!\"
The Nefarious Ferret spreads his hands innocently. \"That's more TV watching and book organizing than you'd normally get done, isn't it?\"
The crowd erupts in anger.
\"No refunds!\" crows the Nefarious Ferret. He fires a bolt of magic into the crowd, preparing to escape in the smoke.
\"Please, Habitican!\" @Faye says, grabbing your arm. \"Defeat the ferret and make him refund his dishonest earnings!\"",
- "questFerretCompletion": "You defeat the soft-furred swindler and @UncommonCriminal gives the crowd their refunds. There's even a little gold left over for you. Plus, it looks like the Nefarious Ferret dropped some eggs in his hurry to get away!",
- "questFerretBoss": "Nefarious Ferret",
+ "questTaskwoodsTerror3DropWeapon": "任務森林的燈籠(雙手武器)",
+ "questFerretText": "那惡毒的雪貂",
+ "questFerretNotes": "你正走過習慣城市,突然看到一群不開心的人圍著一隻穿紅色長袍的雪貂。
“你賣給我的生產力藥水沒用!” @Beffymaroo控訴。 ”我昨晚看了三小時的電視,而不是做家務!”
“是的!”@Pandah大叫。 “而且今天我花了一個小時整理我的書,而不是讀它們!”
那惡毒的雪貂無辜地攤開手。 ”那你們看電視和整理書的時間比平常多了呀~不是嗎?”
人群中爆發出了憤怒。
“不!退!錢!”惡毒的雪貂洋洋得意地大叫著。他發射了一束魔法到人群中,準備在煙霧中逃離。
“拜託了!Habitican!”@Faye抓住你的胳膊說。 ”打敗那隻雪貂!讓他把不誠實的收益還回來!”",
+ "questFerretCompletion": "你擊敗了軟毛的騙子,並且@UncommonCriminal 給了你豐厚的報酬,甚至還有你的一小堆黃金。另外,看起來邪惡的雪貂匆忙逃走時落下了一些蛋!",
+ "questFerretBoss": "恶毒的雪貂",
"questFerretDropFerretEgg": "雪貂 (蛋)",
- "questFerretUnlockText": "Unlocks purchasable Ferret eggs in the Market",
- "questDustBunniesText": "The Feral Dust Bunnies",
- "questDustBunniesNotes": "It's been a while since you've done any dusting in here, but you're not too worried—a little dust never hurt anyone, right? It's not until you stick your hand into one of the dustiest corners and feel something bite that you remember @InspectorCaracal's warning: leaving harmless dust sit too long causes it to turn into vicious dust bunnies! You'd better defeat them before they cover all of Habitica in fine particles of dirt!",
- "questDustBunniesCompletion": "The dust bunnies vanish into a puff of... well, dust. As it clears, you look around. You'd forgotten how nice this place looks when it's clean. You spy a small pile of gold where the dust used to be. Huh, you'd been wondering where that was!",
- "questDustBunniesBoss": "Feral Dust Bunnies",
- "questGroupMoon": "Lunar Battle",
- "questMoon1Text": "Lunar Battle, Part 1: Find the Mysterious Shards",
- "questMoon1Notes": "Habiticans have been distracted from their tasks by something strange: twisted shards of stone are appearing across the land. Worried, @Starsystemic the Seer summons you to her tower. She says, \"I've been reading alarming omens about these shards, which have been blighting the land and driving hardworking Habiticans to distraction. I can track the source, but first I'll need to examine the shards. Can you bring some to me?\"",
- "questMoon1Completion": "@Starsystemic disappears into her tower to examine the shards you gathered. \"This may be more complicated than we feared,\" says @Beffymaroo, her trusted assistant. \"It will take us some time to discover the cause. Keep checking in every day, and when we know more, we'll send you the next quest scroll.\"",
- "questMoon1CollectShards": "Lunar Shards",
- "questMoon1DropHeadgear": "Lunar Warrior Helm (Headgear)",
- "questMoon2Text": "Lunar Battle, Part 2: Stop the Overshadowing Stress",
- "questMoon2Notes": "After studying the shards, @Starsystemic the Seer has some bad news. \"An ancient monster is approaching Habitica, and it is causing terrible stress to befall the citizens. I can draw the shadow out of people's hearts and into this tower, where it will take physical form, but you’ll need to defeat it before it breaks loose and spreads again.\" You nod, and she starts to chant. Dancing shadows fill the room, pressing tightly together. The cold wind swirls, the darkness deepens. The Overshadowing Stress rises from the floor, grins like a nightmare made real... and strikes!",
- "questMoon2Completion": "The shadow explodes in a puff of dark air, leaving the room brighter and your hearts lighter. The stress blanketing Habitica is diminished, and you can all breathe a sigh of relief. Still, as you look up at the sky, you sense that this is not over: the monster knows someone destroyed its shadow. \"We'll keep careful watch in the coming weeks,\" says @Starsystemic, \"and I'll send you a quest scroll when it manifests.\"",
- "questMoon2Boss": "Overshadowing Stress",
+ "questFerretUnlockText": "解鎖——可在市集中購買雪貂蛋",
+ "questDustBunniesText": "野生的灰塵兔子",
+ "questDustBunniesNotes": "距離你上次打掃這裡已經有一會兒了,但你不是很擔心——一點灰塵不會怎麼樣的,對吧?等你把手伸進其中一個灰塵最多的角落,感受到被什麼東西咬了之後,你才想起@InspectorCaracal的警告:在你家寄養的小灰塵兔子感受不到你的關愛,就會變成野生灰塵兔到處亂竄。你最好在所有灰塵兔子野化之前溫柔地再次馴養牠們!",
+ "questDustBunniesCompletion": "灰塵兔子們消失在……唔,灰塵中。這里幹淨了,你環顧四周。你一度遺忘這裡在乾淨的時候是多麼美好。你在之前灰塵所處的角落找到了一小堆金子。好吧,你都忘了這里之前是放金子的地方!",
+ "questDustBunniesBoss": "野生的灰塵兔子",
+ "questGroupMoon": "月亮之戰",
+ "questMoon1Text": "月亮戰爭,第1部:尋找神秘碎片",
+ "questMoon1Notes": "Habitica居民被一些奇怪的事情分心了:扭曲的石頭碎片出現在地面。出於擔心,@Starsystemic 先知召喚你去她的塔。她說,“我一直在研讀有關這些碎片的預警徵兆,這些碎片已經使大地被破壞,使努力的habitica居民分心。我可以追查它們的源頭,但首先我需要研究那些碎片。你能給我撿些碎片來嗎?”",
+ "questMoon1Completion": "@Starsystemic 進入她的塔樓研究你得到的碎片。 “這也許比我們擔心的更複雜” @Beffymaroo,她信任的助手說。 “找到原因還需要一些時間,繼續完成你的每日任務,我們了解更多後會寄給你下一個副本捲軸。”",
+ "questMoon1CollectShards": "月之碎片",
+ "questMoon1DropHeadgear": "月亮戰士頭盔(頭部裝備)",
+ "questMoon2Text": "月亮戰爭,第2部:驅逐遮天蔽日的壓力",
+ "questMoon2Notes": "研究了這些碎片後,@Starsystemic 先知有一些壞消息。 “一隻遠古時的怪物正在接近Habitica,它正在讓公民心中產生“壓力”的陰影。我可以把人們心中的陰影拖出來,放到塔中,但你得盡快打敗它,避免它再次逃脫。 ”你點點頭,於是先知開始詠唱……舞動的影子充滿房間,被推著擠在一起。冷風打著旋,黑暗漸深。遮天蔽日的壓力從地面上升起,笑得彷彿噩夢成真……它開始攻擊了!",
+ "questMoon2Completion": "陰影在一團黑氣中爆炸了,房間變得明亮,你也稍稍可以放鬆了。覆蓋著Habitica的壓力減少了,你終於可以大鬆一口氣。但看向天空時,你知道一切並沒有結束:那個怪物知道有人摧毀了它的陰影。 “我們會繼續小心觀察幾週,”@Starsystemic 說,“等怪物再有動靜,會繼續給你副本捲軸的。”",
+ "questMoon2Boss": "遮天蔽日的壓力",
"questMoon2DropArmor": "蒼月勇士盔甲 (盔甲)",
- "questMoon3Text": "Lunar Battle, Part 3: The Monstrous Moon",
- "questMoon3Notes": "You get @Starsystemic's urgent scroll at the stroke of midnight and gallop to her tower. \"The monster is using the full moon to try to cross over to our realm,\" she says. \"If it succeeds, the shockwave of stress will be overwhelming!\"
To your dismay, you see that the monster is indeed using the moon to manifest. A glowing eye opens in its rocky surface, and a long tongue rolls from a gaping, fanged mouth. There's no way you'll let it fully emerge!",
- "questMoon3Completion": "The emerging monster bursts into shadow, and the moon turns silver as the danger passes. The dragons start singing again, and the stars sparkle with a soothing light. @Starsystemic the Seer bends down and picks up a lunar shard. It shines silver in her hand, before changing into a magnificent crystal scythe.",
+ "questMoon3Text": "月亮戰爭,第3部:巨大的月亮",
+ "questMoon3Notes": "在午夜鐘聲敲響的時候,你得到@Starsystemic 的緊急捲軸,於是飛奔到她的塔。 “怪物正試圖利用滿月跨越到我們的地帶,”她說。 “如果成功了,壓力的衝擊波將勢不可擋!”
你正焦急時,看到怪物事實上是利用月亮來顯化的。一個發光的眼睛在岩石表面打開,一條長長的舌頭從一個張開的佈滿尖牙的口裡捲著出來。你絕對不能讓它完全顯形!",
+ "questMoon3Completion": "新興的怪物匆匆躲回陰影,月亮變成銀色昭示著危險已經過去。龍群再次開始吟唱,星星閃爍柔和的光。 @Starsystemic 先知彎腰撿起一片月球碎片。它閃耀著銀光在她的手中變成華麗的水晶鐮。",
"questMoon3Boss": "驚懼之月",
- "questMoon3DropWeapon": "Lunar Scythe (Two-Handed Weapon)",
- "questSlothText": "The Somnolent Sloth",
- "questSlothNotes": "As you and your party venture through the Somnolent Snowforest, you're relieved to see a glimmering of green among the white snowdrifts... until an enormous sloth emerges from the frosty trees! Green emeralds shimmer hypnotically on its back.
\"Hello, adventurers... why don't you take it slow? You've been walking for a while... so why not... stop? Just lie down, and rest...\"
You feel your eyelids grow heavy, and you realize: It's the Somnolent Sloth! According to @JaizakAripaik, it got its name from the emeralds on its back which are rumored to... send people to... sleep...
You shake yourself awake, fighting drowsiness. In the nick of time, @awakebyjava and @PainterProphet begin to shout spells, forcing your party awake. \"Now's our chance!\" @Kiwibot yells.",
- "questSlothCompletion": "You did it! As you defeat the Somnolent Sloth, its emeralds break off. \"Thank you for freeing me of my curse,\" says the sloth. \"I can finally sleep well, without those heavy emeralds on my back. Have these eggs as thanks, and you can have the emeralds too.\" The sloth gives you three sloth eggs and heads off for warmer climates.",
- "questSlothBoss": "Somnolent Sloth",
- "questSlothDropSlothEgg": "Sloth (Egg)",
- "questSlothUnlockText": "Unlocks purchasable Sloth eggs in the Market",
- "questTriceratopsText": "The Trampling Triceratops",
- "questTriceratopsNotes": "The snow-capped Stoïkalm Volcanoes are always bustling with hikers and sight-seers. One tourist, @plumilla, calls over a crowd. \"Look! I enchanted the ground to glow so that we can play field games on it for our outdoor activity Dailies!\" Sure enough, the ground is swirling with glowing red patterns. Even some of the prehistoric pets from the area come over to play.
Suddenly, there's a loud snap -- a curious Triceratops has stepped on @plumilla's wand! It's engulfed in a burst of magic energy, and the ground starts shaking and growing hot. The Triceratops' eyes shine red, and it roars and begins to stampede!
\"That's not good,\" calls @McCoyly, pointing in the distance. Each magic-fueled stomp is causing the volcanoes to erupt, and the glowing ground is turning to lava beneath the dinosaur's feet! Quickly, you must hold off the Trampling Triceratops until someone can reverse the spell!",
- "questTriceratopsCompletion": "With quick thinking, you herd the creature towards the soothing Stoïkalm Steppes so that @*~Seraphina~* and @PainterProphet can reverse the lava spell without distraction. The calming aura of the Steppes takes effect, and the Triceratops curls up as the volcanoes go dormant once more. @PainterProphet passes you some eggs that were rescued from the lava. \"Without you, we wouldn't have been able to concentrate to stop the eruptions. Give these pets a good home.\"",
- "questTriceratopsBoss": "Trampling Triceratops",
+ "questMoon3DropWeapon": "月鐮(雙手武器)",
+ "questSlothText": "昏昏欲睡的樹獺",
+ "questSlothNotes": "你和你的隊伍行走在昏睡雪林中,看著白色雪地中泛出的微弱綠光,你鬆了一口氣…直到一個巨大的懶惰怪突然出現在結霜的樹叢中!它背上的綠寶石閃爍著催眠的光芒。
“你們好,冒險者……為什麼你們不慢點走?你們已經走了太久了…為什麼不…停下來呢?只需要躺下,然後閉上眼睛休息…”
你感覺到你的眼皮變重了,你忽然意識到它是昏睡的懶惰怪!據@JaizakAripaik說,傳說它由於背上有散發出令人產生睡意的綠寶石得名.
你搖搖頭使自己清醒,對抗著倦意。就在這時,@awakebyjava 和@PainterProphet 開始吟唱咒語,使整個隊伍清醒過來。 “現在輪到我們了!”@Kiwibot 怒吼到。",
+ "questSlothCompletion": "你成功了!你擊敗了昏睡的懶惰怪,它的綠寶石掉落在地。 “謝謝你解除了我的詛咒”,懶惰怪如是說。 “我終於可以擺脫這些沉重的寶石好好的睡覺了。作為酬謝這些蛋給你,你也可以拿走那些綠寶石”。懶惰怪給你三個懶惰蛋然後轉身去尋找更溫暖的地方。",
+ "questSlothBoss": "昏昏欲睡的樹獺",
+ "questSlothDropSlothEgg": "樹獺(寵物蛋)",
+ "questSlothUnlockText": "解鎖——可在市集中購買樹獺蛋",
+ "questTriceratopsText": "那隻跺腳的三角龍",
+ "questTriceratopsNotes": "白雪皚皚的冷靜火山總是熙攘著旅者與觀光客。 @plumilla,一個旅行者,突然在人群中叫喊:“看啊!我使用魔法讓地面發光了,這樣我們就能在上面玩遊戲完成我們的戶外每日活動了!”果然,地面旋轉著熾熱的紅色圖案。甚至一些史前寵物也出來湊熱鬧了。
突然,喀嚓一聲——一隻好奇的三角龍正站在@plumilla 的魔杖上! !它被一股神奇的能量所吞噬,大地開始顫抖,並變得越來越熱。那隻三角龍的眼裡開始泛起紅光,它吼叫著開始蹬地。
“……這可不好,”@McCoyly 說,他指了指遠方。每一次魔法驅動的跺腳,都在引起火山的噴發,而發光的土地在恐龍足下也開始變成了熔岩!快,你必須控制住那隻在跺腳的三角龍,直到有人可以逆轉法術!",
+ "questTriceratopsCompletion": "快速的想了想,你把它驅趕向冷靜平原,讓@*~Seraphina~* 和 @PainterProphet 能不受干擾地逆轉那個熔岩法術。草原的平靜氣氛起了作用,三角龍繞圈跑的時候火山重新入睡。 @PainterProphet 給了你一些從熔岩中救出的蛋。 “沒有你,我們就不能專注地阻止火山爆發。給這些孩子一個好的家吧。”",
+ "questTriceratopsBoss": "跺腳的三角龍",
"questTriceratopsDropTriceratopsEgg": "三角龍 (蛋)",
- "questTriceratopsUnlockText": "Unlocks purchasable Triceratops eggs in the Market",
- "questGroupStoikalmCalamity": "Stoïkalm Calamity",
- "questStoikalmCalamity1Text": "Stoïkalm Calamity, Part 1: Earthen Enemies",
- "questStoikalmCalamity1Notes": "A terse missive arrives from @Kiwibot, and the frost-crusted scroll chills your heart as well as your fingertips. \"Visiting Stoïkalm Steppes -- monsters bursting from earth -- send help!\" You gather your party and ride north, but as soon as you venture down from the mountains, the snow beneath your feet explodes and gruesomely grinning skulls surround you!
Suddenly, a spear sails past, burying itself in a skull that was burrowing through the snow in an attempt to catch you unawares. A tall woman in finely-crafted armor gallops into the fray on the back of a mastodon, her long braid swinging as she yanks the spear unceremoniously from the crushed beast. It's time to fight off these foes with the help of Lady Glaciate, the leader of the Mammoth Riders!",
- "questStoikalmCalamity1Completion": "As you deliver a final blow to the skulls, they dissipate in a puff of magic. \"The dratted swarm may be gone,\" Lady Glaciate says, \"but we have bigger problems. Follow me.\" She tosses you a cloak to protect you from the chill air, and you ride off after her.",
- "questStoikalmCalamity1Boss": "Earth Skull Swarm",
- "questStoikalmCalamity1RageTitle": "Swarm Respawn",
- "questStoikalmCalamity1RageDescription": "Swarm Respawn: This bar fills when you don't complete your Dailies. When it is full, the Earth Skull Swarm will heal 30% of its remaining health!",
- "questStoikalmCalamity1RageEffect": "`Earth Skull Swarm uses SWARM RESPAWN!`\n\nMore skulls break free from the ground, their teeth chattering in the cold!",
+ "questTriceratopsUnlockText": "解鎖——可在市集中購買三角龍蛋",
+ "questGroupStoikalmCalamity": "Stoïkalm災難",
+ "questStoikalmCalamity1Text": "Stoïkalm災難,第1部:地上的敵人",
+ "questStoikalmCalamity1Notes": "@Kiwibot 寄來了一封簡短的信件,看著結了霜的捲軸,你的心和你的指尖一樣寒冷。 “來Stoïkalm大草原——怪物爆發——救命啊!”你集合了隊伍向北騎行,但剛剛硬著頭皮從山上下衝來,腳下的雪就炸開了,可怖的骷髏群笑嘻嘻地圍住了你!
突然,一隻矛掠過,穿過令你驚慌無措的漫天白雪,刺中了一隻想要偷襲的骷髏。一名穿著精製護甲的高大女子騎著長毛象殺入戰場,她的長辮隨著揮舞長矛的動作活潑地甩動,只留下碎了一地的骷髏屍體。該反擊了,habitica居民們!跟上冰川夫人——猛獁騎士團的首領!",
+ "questStoikalmCalamity1Completion": "當你對骷髏進行最後一擊時,它們在一陣魔法中消散了。 “這群可惡的玩意應該是走了,”冰川夫人說,“但我們有更大的問題,跟我來。” 她扔給你一件足以抵禦寒風的斗篷,你騎上坐騎跟在她身後。",
+ "questStoikalmCalamity1Boss": "土骷髏群",
+ "questStoikalmCalamity1RageTitle": "骨群重生",
+ "questStoikalmCalamity1RageDescription": "骨群重生:如果你沒有完成每日任務,這個進度條的進度會前進。當它填滿的時候地表頭骨群會回复它剩餘生命值的30%!",
+ "questStoikalmCalamity1RageEffect": "`土骷髏群使用了骨群重生! `\n\n更多的骸骨從地底掙脫出來,他們的牙齒在寒冷中顫動!",
"questStoikalmCalamity1DropSkeletonPotion": "骨骼孵化藥水",
"questStoikalmCalamity1DropDesertPotion": "沙漠孵化藥水",
- "questStoikalmCalamity1DropArmor": "Mammoth Rider Armor",
- "questStoikalmCalamity2Text": "Stoïkalm Calamity, Part 2: Seek the Icicle Caverns",
- "questStoikalmCalamity2Notes": "The stately hall of the Mammoth Riders is an austere masterpiece of architecture, but it is also entirely empty. There's no furniture, the weapons are missing, and even the columns were picked clean of their inlays.
\"Those skulls scoured the place,\" Lady Glaciate says, and there is a blizzard brewing in her tone. \"Humiliating. Not a soul is to mention this to the April Fool, or I will never hear the end of it.\"
\"How mysterious!\" says @Beffymaroo. \"But where did they--\"
\"The icicle drake caverns.\" Lady Glaciate gestures at shining coins spilled in the snow outside. \"Sloppy.\"
\"But aren't icicle drakes honorable creatures with their own treasure hoards?\" @Beffymaroo asks. \"Why would they possibly--\"
\"Mind control,\" says Lady Glaciate, utterly unfazed. \"Or something equally melodramatic and inconvenient.\" She begins to stride from the hall. \"Why are you just standing there?\"
Quickly, go follow the trail of Icicle Coins!",
- "questStoikalmCalamity2Completion": "The Icicle Coins lead you straight to the buried entrance of a cleverly hidden cavern. Though the weather outside is calm and lovely, with the sunlight sparkling across the expanse of snow, there is a howling within like a fierce winter wind. Lady Glaciate grimaces and hands you a Mammoth Rider helm. \"Wear this,\" she says. \"You'll need it.\"",
- "questStoikalmCalamity2CollectIcicleCoins": "Icicle Coins",
- "questStoikalmCalamity2DropHeadgear": "Mammoth Rider Helm (Headgear)",
- "questStoikalmCalamity3Text": "Stoïkalm Calamity, Part 3: Icicle Drake Quake",
- "questStoikalmCalamity3Notes": "The twining tunnels of the icicle drake caverns shimmer with frost... and with untold riches. You gape, but Lady Glaciate strides past without a glance. \"Excessively flashy,\" she says. \"Obtained admirably, though, from respectable mercenary work and prudent banking investments. Look further.\" Squinting, you spot a towering pile of stolen items hidden in the shadows.
A sibilant voice hisses as you approach. \"My delicious hoard! You shall not steal it back from me!\" A sinuous body slides from the heap: the Icicle Drake Queen herself! You have just enough time to note the strange bracelets glittering on her wrists and the wildness glinting in her eyes before she lets out a howl that shakes the earth around you.",
- "questStoikalmCalamity3Completion": "You subdue the Icicle Drake Queen, giving Lady Glaciate time to shatter the glowing bracelets. The Queen stiffens in apparent mortification, then quickly covers it with a haughty pose. \"Feel free to remove these extraneous items,\" she says. \"I'm afraid they simply don't fit our decor.\"
\"Also, you stole them,\" @Beffymaroo says. \"By summoning monsters from the earth.\"
The Icicle Drake Queen looks miffed. \"Take it up with that wretched bracelet saleswoman,\" she says. \"It's Tzina you want. I was essentially unaffiliated.\"
Lady Glaciate claps you on the arm. \"You did well today,\" she says, handing you a spear and a horn from the pile. \"Be proud.\"",
- "questStoikalmCalamity3Boss": "Icicle Drake Queen",
- "questStoikalmCalamity3DropBlueCottonCandy": "Blue Cotton Candy (Food)",
- "questStoikalmCalamity3DropShield": "Mammoth Rider's Horn (Off-Hand Item)",
- "questStoikalmCalamity3DropWeapon": "Mammoth Rider Spear (Weapon)",
- "questGuineaPigText": "The Guinea Pig Gang",
- "questGuineaPigNotes": "You're casually strolling through Habit City's famous Market when @Pandah waves you down. \"Hey, check these out!\" They're holding up a brown and beige egg you don't recognize.
Alexander the Merchant frowns at it. \"I don't remember putting that out. I wonder where it came--\" A small paw cuts him off.
\"Guinea all your gold, merchant!\" squeaks a tiny voice brimming with evil.
\"Oh no, the egg was a distraction!\" @mewrose exclaims. \"It's the gritty, greedy Guinea Pig Gang! They never do their Dailies, so they constantly steal gold to buy health potions.\"
\"Robbing the Market?\" says @emmavig. \"Not on our watch!\" Without further prompting, you leap to Alexander's aid.",
- "questGuineaPigCompletion": "\"We submit!\" The Guinea Pig Gang Boss waves his paws at you, fluffy head hanging in shame. From underneath his hat falls a list, and @snazzyorange quickly swipes it for evidence. \"Wait a minute,\" you say. \"It's no wonder you've been getting hurt! You've got way too many Dailies. You don't need health potions -- you just need help organizing.\"
\"Really?\" squeaks the Guinea Pig Gang Boss. \"We've robbed so many people because of this! Please take our eggs as an apology for our crooked ways.\"",
- "questGuineaPigBoss": "Guinea Pig Gang",
+ "questStoikalmCalamity1DropArmor": "猛獁騎士甲",
+ "questStoikalmCalamity2Text": "Stoïkalm災難,第2部:尋找冰柱洞穴",
+ "questStoikalmCalamity2Notes": "莊嚴的猛獁騎士廳是座一絲不苟的建築傑作,但它現在卻完全是空蕩蕩的。這裡沒有家具,看不到武器,甚至柱子裡鑲嵌的裝飾也不見了。
“那些骷髏強盜洗劫了這裡,”冰川夫人開口,語氣中彷彿醞釀著暴雪。 “太丟人了!誰都不許把這事告訴愚者,否則我不會對他善罷甘休的。”
“不可思議!”@Beffymaroo 也說著。 “不過它們在哪兒——”
“灞波兒奔的大洞穴裡。”冰川夫人指著廳外的雪地,一些閃爍著的硬幣還沒完全被雪掩埋。 “麻痺大意。”
“但灞波兒奔們不是很注重他們的名聲嗎?而且他們有自己的寶庫啊!”@Beffymaroo 還有疑問。 “他們怎麼可能——”
“精神控制,”冰川夫人打斷了他的話,“或者其它差不多的聳人聽聞的麻煩東西。”她開始大步離開大廳。 “杵在那愣著幹嘛?”
快,跟上那些冰凌硬幣!",
+ "questStoikalmCalamity2Completion": "冰凌硬幣直接把你帶到了一個被巧妙隱藏的地下洞穴入口。雖然外面的天氣平靜而可愛,陽光照在茫茫的雪地上,這裡卻仍有一股嚴冬的風在呼嘯。冰川夫人面露厭惡,並給了你一個巨大的騎士頭盔。 “戴上這個,”她說,“你需要它。”",
+ "questStoikalmCalamity2CollectIcicleCoins": "寒冰硬幣",
+ "questStoikalmCalamity2DropHeadgear": "猛獁騎士盔(頭部裝備)",
+ "questStoikalmCalamity3Text": "Stoïkalm災難,第3部:灞波兒奔地震",
+ "questStoikalmCalamity3Notes": "灞波兒奔洞裡,彎曲交錯的隧道閃爍著冰霜的微光……和無法描述的金銀珠寶的光芒。你目瞪口呆,但冰川夫人大步走過,吝予一瞥。 “過於浮華。”她說,“不管是從可敬的受僱打工還是從謹慎的銀行投資得到這些,都是令人欽佩的。但你再往前看看。”你瞇起眼睛,看到了陰暗角落裡堆成塔的贓物。
當你靠近時,一個嘶嘶的聲音響起。 “我美味的寶藏!你們不能把它從我這裡偷回去!”一個盤曲的身體從那堆財寶上滑下:是灞波兒奔女王本人!在她發出震動你周身地面的巨吼之前,你只來得及看到她手腕上閃爍的奇怪手鐲,和眼裡的野蠻凶光。",
+ "questStoikalmCalamity3Completion": "你制住了灞波兒奔女王,使冰川夫人來得及將那發光的手鐲打碎。那位女王在明顯的羞愧下不自在起來,然後馬上換上了一副傲慢的姿態。 “儘管把這些不相干的東西帶走吧,”她說。 “我想它們實在是不適合我們這裡的佈置。”
“餵,那是你偷來的,”@Beffymaroo 步步緊逼,“你從大地中召喚來了怪物。”< br>
灞波兒奔女王看起來惱羞成怒了:“那得算在賣給我這垃圾手鐲的女售貨員頭上,Tzina才是你要找的人。我跟她完全不是一伙的。 ”
冰川夫人拍了拍你的肩膀說:“幹得不錯。”她從那堆東西里拿了一把長矛和一隻角給你:“感到自豪吧。”",
+ "questStoikalmCalamity3Boss": "灞波兒奔女王",
+ "questStoikalmCalamity3DropBlueCottonCandy": "藍色棉花糖(食物)",
+ "questStoikalmCalamity3DropShield": "猛獁騎士角(副手裝備)",
+ "questStoikalmCalamity3DropWeapon": "猛獁騎士矛(武器裝備)",
+ "questGuineaPigText": "豚鼠團伙",
+ "questGuineaPigNotes": "當 @Pandah 揮手叫你的時候,你正在 Habit 城裡有名的市場中漫步 。 “嘿,看看這些東西!”他們舉起你從未見過的棕色和米色的蛋。
商人亞歷山大對此皺起了眉頭。 “我不記得我拿出了它們。我想知道這些是從哪裡——”一隻小爪子打斷了他的話。
“交出你所有的金幣,商人!”吱吱叫的充滿了邪惡的聲音響起。
“噢不,這些蛋裂開了!”@mewrose 驚呼道。 “這是頑固的,貪婪的豚鼠團伙!它們從來不做每日任務,所以他們時不時的竊取金幣來購買治療藥水。”
“搶劫市場?”@emmavig 問道。 “不要呆在我們的手錶上!”不遠處呼喊道,你急忙飛跑過去幫助亞歷山大。",
+ "questGuineaPigCompletion": "\"我們認輸啦!\"豚鼠頭目向你揮舞著爪子,毛茸茸的腦袋羞愧低垂。從豚鼠頭目的帽子掉落了一份清單,@snazzyorange迅速扒走做為證據。 \"等一下,\"你說。 \"難怪你已經受傷了!你的每日任務太多了。你不需要治療藥水──你只需要幫忙組織整理。\"
\"真的嗎?\"豚鼠頭目吱吱道。 \"我們就為了這個搶了那麽多人! 作為我們不當行徑的道歉,請拿些我們的蛋吧。\"",
+ "questGuineaPigBoss": "豚鼠團伙",
"questGuineaPigDropGuineaPigEgg": "豚鼠 (蛋)",
- "questGuineaPigUnlockText": "Unlocks purchasable Guinea Pig eggs in the Market",
- "questPeacockText": "The Push-and-Pull Peacock",
- "questPeacockNotes": "You trek through the Taskwoods, wondering which of the enticing new goals you should pick. As you go deeper into the forest, you realize that you're not alone in your indecision. \"I could learn a new language, or go to the gym...\" @Cecily Perez mutters. \"I could sleep more,\" muses @Lilith of Alfheim, \"or spend time with my friends...\" It looks like @PainterProphet, @Pfeffernusse, and @Draayder are equally paralyzed by the overwhelming options.
You realize that these ever-more-demanding feelings aren't really your own... you've stumbled straight into the trap of the pernicious Push-and-Pull Peacock! Before you can run, it leaps from the bushes. With each head pulling you in conflicting directions, you start to feel burnout overcoming you. You can't defeat both foes at once, so you only have one option -- concentrate on the nearest task to fight back!",
- "questPeacockCompletion": "The Push-and-Pull Peacock is caught off guard by your sudden conviction. Defeated by your single-minded drive, its heads merge back into one, revealing the most beautiful creature you've ever seen. \"Thank you,\" the peacock says. \"I’ve spent so long pulling myself in different directions that I lost sight of what I truly wanted. Please accept these eggs as a token of my gratitude.\"",
- "questPeacockBoss": "Push-and-Pull Peacock",
- "questPeacockDropPeacockEgg": "Peacock (Egg)",
- "questPeacockUnlockText": "Unlocks purchasable Peacock eggs in the Market",
- "questButterflyText": "Bye, Bye, Butterfry",
- "questButterflyNotes": "Your gardener friend @Megan sends you an invitation: “These warm days are the perfect time to visit Habitica’s butterfly garden in the Taskan countryside. Come see the butterflies migrate!” When you arrive, however, the garden is in shambles -- little more than scorched grass and dried-out weeds. It’s been so hot that the Habiticans haven’t come out to water the flowers, and the dark-red Dailies have turned it into a dry, sun-baked, fire-hazard. There's only one butterfly there, and there's something odd about it...
“Oh no! This is the perfect hatching ground for the Flaming Butterfry,” cries @Leephon.
“If we don’t catch it, it’ll destroy everything!” gasps @Eevachu.
Time to say bye, bye to Butterfry!",
- "questButterflyCompletion": "After a blazing battle, the Flaming Butterfry is captured. “Great job catching the that would-be arsonist,” says @Megan with a sigh of relief. “Still, it’s hard to vilify even the vilest butterfly. We’d better free this Butterfry someplace safe…like the desert.”
One of the other gardeners, @Beffymaroo, comes up to you, singed but smiling. “Will you help raise these foundling chrysalises we found? Perhaps next year we’ll have a greener garden for them.”",
- "questButterflyBoss": "Flaming Butterfry",
- "questButterflyDropButterflyEgg": "Caterpillar (Egg)",
- "questButterflyUnlockText": "Unlocks purchasable Caterpillar eggs in the Market",
+ "questGuineaPigUnlockText": "解鎖——可在市集中購買豚鼠蛋",
+ "questPeacockText": "拖拉孔雀",
+ "questPeacockNotes": "你正跋涉在任務森林中,思考著該選擇哪一個誘人的任務。在深入森林腹地後你意識到你並不是唯一一個在躊躇的人。 “我可以去學一門新語言,或者去健身房。”,@Cecily Perez咕噥著。 “我想多一些睡眠時間,但和朋友聚一聚也不錯”,@Lilith of Alfheim陷入了沉思。 @PainterProphet, @Pfeffernusse, 和@Draayder也處於選擇困難的境地之中。
你意識到這種越來越吃力的感覺並不是來自自己內心,讓你失足蹣跚的是拖拉孔雀的致命陷阱。你正要逃跑,它就從灌木叢裡魚躍而出,兩顆頭一起咬住你,要將你從中撕開。你開始感覺力不從心,無法同時招架兩顆頭的攻勢。你只有一個選擇,集中精力在最近的一個任務上,然後開始反擊!",
+ "questPeacockCompletion": "拖拉孔雀被你堅定的信念打了個措手不及,被你對當前任務的一心一意所擊敗。它的兩顆頭融合在一起,這是你見過的最美麗的生物。 “謝謝你”,孔雀說,“我一直把自己拖拽向不同的方向,以至於不再知道自己真正想要的是什麼。請接受這些蛋作為謝禮吧。”",
+ "questPeacockBoss": "拖拉孔雀",
+ "questPeacockDropPeacockEgg": "孔雀(寵物蛋)",
+ "questPeacockUnlockText": "解鎖——可在市集中購買孔雀蛋",
+ "questButterflyText": "再見啦,蝴蝶",
+ "questButterflyNotes": "你的園丁朋友@Megan 向你發來邀請:“現在這樣和煦的日子,是參觀位於任務汗國農村的Habitica蝴蝶公園的絕佳機會,來看看蝴蝶的大遷徙吧!”但當你到達後,公園內的景象卻已混亂一片——徒留了被燒焦的地坪和枯槁的雜草。環境如此炙熱以至於Habitica居民還沒來得及灑水救火,暗紅色的每日任務欄就已經把這裡變成了一個烈日灼人,火光四起的地獄!現在這兒只有一隻蝴蝶,而且看著有些不對勁。
“糟了!現在這種環境最適宜孵化火焰蝶了!”@Leephon驚呼道。
“如果我們不抓住它,那它將會摧毀一切!”@Eevachu倒吸了一口氣。
是時候說再見了,蝴蝶,再見了!",
+ "questButterflyCompletion": "經過熾烈的打鬥,火焰蝶被抓到了。 “幹得好,我們抓到了這個作案未遂的縱火犯,”@Megan 鬆了口氣說道,“但是它不該受到懲罰,即便它真的很可惡。我們最好將它放生到合適的地方·· ····比如沙漠!”
另一個園丁@Beffymaroo 跟了過來,雖然被輕微燒傷了,還是笑著說:“我們發現了一些被遺棄的蝶蛹,可以請你撫養牠們嗎?也許明年它們會見到更繁盛的花園。”",
+ "questButterflyBoss": "火蝴蝶",
+ "questButterflyDropButterflyEgg": "毛毛蟲(寵物蛋)",
+ "questButterflyUnlockText": "解鎖——可在市集中購買毛毛蟲蛋",
"questGroupMayhemMistiflying": "混亂薄霧之蝶",
- "questMayhemMistiflying1Text": "Mayhem in Mistiflying, Part 1: In Which Mistiflying Experiences a Dreadful Bother",
- "questMayhemMistiflying1Notes": "Although local soothsayers predicted pleasant weather, the afternoon is extremely breezy, so you gratefully follow your friend @Kiwibot into their house to escape the blustery day.
Neither of you expects to find the April Fool lounging at the kitchen table.
“Oh, hello,” he says. “Fancy seeing you here. Please, let me offer you some of this delicious tea.”
“That’s…” @Kiwibot begins. “That’s MY—“
“Yes, yes, of course,” says the April Fool, helping himself to some cookies. “Just thought I’d pop indoors and get a nice reprieve from all the tornado-summoning skulls.” He takes a casual sip from his teacup. “Incidentally, the city of Mistiflying is under attack.”
Horrified, you and your friends race to the Stables and saddle your fastest winged mounts. As you soar towards the floating city, you see that a swarm of chattering, flying skulls are laying siege to the city… and several turn their attentions towards you!",
- "questMayhemMistiflying1Completion": "The final skull drops from the sky, a shimmering set of rainbow robes clasped in its jaws, but the steady wind has not slackened. Something else is at play here. And where is that slacking April Fool? You pick up the robes, then swoop into the city.",
- "questMayhemMistiflying1Boss": "Air Skull Swarm",
- "questMayhemMistiflying1RageTitle": "Swarm Respawn",
- "questMayhemMistiflying1RageDescription": "Swarm Respawn: This bar fills when you don't complete your Dailies. When it is full, the Air Skull Swarm will heal 30% of its remaining health!",
- "questMayhemMistiflying1RageEffect": "`Air Skull Swarm uses SWARM RESPAWN!`\n\nEmboldened by their victories, more skulls come whirling out of the clouds!",
- "questMayhemMistiflying1DropSkeletonPotion": "Skeleton Hatching Potion",
- "questMayhemMistiflying1DropWhitePotion": "White Hatching Potion",
- "questMayhemMistiflying1DropArmor": "Roguish Rainbow Messenger Robes (Armor)",
- "questMayhemMistiflying2Text": "Mayhem in Mistiflying, Part 2: In Which the Wind Worsens",
- "questMayhemMistiflying2Notes": "Mistiflying dips and rocks as the magical bees keeping it afloat are buffeted by the gale. After a desperate search for the April Fool, you find him inside a cottage, blithely playing cards with an angry, trussed-up skull.
@Katy133 raises their voice over the whistling wind. “What’s causing this? We defeated the skulls, but it’s getting worse!”
“That is a pickle,” the April Fool agrees. “Please be a dear and don’t mention it to Lady Glaciate. She’s always threatening to call off our courtship on the grounds that I am ‘catastrophically irresponsible,’ and I fear that she might misread this situation.” He shuffles the deck. “Perhaps you might follow the Mistiflies? They’re immaterial, so the wind can’t blow them away, and they tend to swarm around threats.” He nods out the window, where several of the city’s patron creatures are fluttering towards the east. “Now let me concentrate — my opponent has quite the poker face.”",
- "questMayhemMistiflying2Completion": "You follow the Mistiflies to the site of a tornado, too stormy for you to enter.
“This should help,” says a voice directly in your ear, and you nearly fall off of your mount. The April Fool is somehow sitting directly behind you in the saddle. “I hear these messenger hoods emit an aura that guards against inclement weather — very useful to avoid losing missives as you fly around. Perhaps give it a try?”",
- "questMayhemMistiflying2CollectRedMistiflies": "Red Mistiflies",
- "questMayhemMistiflying2CollectBlueMistiflies": "Blue Mistiflies",
- "questMayhemMistiflying2CollectGreenMistiflies": "Green Mistiflies",
- "questMayhemMistiflying2DropHeadgear": "Roguish Rainbow Messenger Hood (Headgear)",
- "questMayhemMistiflying3Text": "Mayhem in Mistiflying, Part 3: In Which a Mailman is Extremely Rude",
- "questMayhemMistiflying3Notes": "The Mistiflies are whirling so thickly through the tornado that it’s hard to see. Squinting, you spot a many-winged silhouette floating at the center of the tremendous storm.
“Oh, dear,” the April Fool sighs, nearly drowned out by the howl of the weather. “Looks like Winny went and got himself possessed. Very relatable problem, that. Could happen to anybody.”
“The Wind-Worker!” @Beffymaroo hollers at you. “He’s Mistiflying’s most talented messenger-mage, since he’s so skilled with weather magic. Normally he’s a very polite mailman!”
As if to counteract this statement, the Wind-Worker lets out a scream of fury, and even with your magic robes, the storm nearly rips you from your mount.
“That gaudy mask is new,” the April Fool remarks. “Perhaps you should relieve him of it?”
It’s a good idea… but the enraged mage isn’t going to give it up without a fight.",
- "questMayhemMistiflying3Completion": "Just as you think you can’t withstand the wind any longer, you manage to snatch the mask from the Wind-Worker’s face. Instantly, the tornado is sucked away, leaving only balmy breezes and sunshine. The Wind-Worker looks around in bemusement. “Where did she go?”
“Who?” your friend @khdarkwolf asks.
“That sweet woman who offered to deliver a package for me. Tzina.” As he takes in the wind-swept city below him, his expression darkens. “Then again, maybe she wasn’t so sweet…”
The April Fool pats him on the back, then hands you two shimmering envelopes. “Here. Why don’t you let this distressed fellow rest, and take charge of the mail for a bit? I hear the magic in those envelopes will make them worth your while.”",
- "questMayhemMistiflying3Boss": "The Wind-Worker",
- "questMayhemMistiflying3DropPinkCottonCandy": "Pink Cotton Candy (Food)",
- "questMayhemMistiflying3DropShield": "Roguish Rainbow Message (Off-Hand Item)",
- "questMayhemMistiflying3DropWeapon": "Roguish Rainbow Message (Main-Hand Item)",
- "featheredFriendsText": "Feathered Friends Quest Bundle",
- "featheredFriendsNotes": "Contains 'Help! Harpy!,' 'The Night-Owl,' and 'The Birds of Preycrastination.' Available until May 31.",
- "questNudibranchText": "Infestation of the NowDo Nudibranchs",
- "questNudibranchNotes": "You finally get around to checking your To-dos on a lazy day in Habitica. Bright against your deepest red tasks are a gaggle of vibrant blue sea slugs. You are entranced! Their sapphire colors make your most intimidating tasks look as easy as your best Habits. In a feverish stupor you get to work, tackling one task after the other in a ceaseless frenzy...
The next thing you know, @LilithofAlfheim is pouring cold water over you. “The NowDo Nudibranches have been stinging you all over! You need to take a break!”
Shocked, you see that your skin is as bright red as your To-Do list was. \"Being productive is one thing,\" @beffymaroo says, \"but you've also got to take care of yourself. Hurry, let's get rid of them!\"",
- "questNudibranchCompletion": "You see the last of the NowDo Nudibranches sliding off of a pile of completed tasks as @amadshade washes them away. One leaves behind a cloth bag, and you open it to reveal some gold and a few little ellipsoids you guess are eggs.",
- "questNudibranchBoss": "NowDo Nudibranch",
- "questNudibranchDropNudibranchEgg": "Nudibranch (Egg)",
- "questNudibranchUnlockText": "Unlocks purchasable Nudibranch eggs in the Market",
- "splashyPalsText": "Splashy Pals Quest Bundle",
- "splashyPalsNotes": "Contains 'The Dilatory Derby', 'Guide the Turtle', and 'Wail of the Whale'. Available until July 31.",
- "questHippoText": "What a Hippo-Crite",
- "questHippoNotes": "You and @awesomekitty collapse into the shade of a palm tree, exhausted. The sun beats down over the Sloensteadi Savannah, scorching the ground below. It’s been a productive day so far, conquering your Dailies, and this oasis looks like a nice place to take a break and refresh. Stooping near the water to get a drink, you stumble back in shock as a massive hippopotamus rises. “Resting so soon? Don’t be so lazy, get back to work.” You try and protest that you’ve been working hard and need a break, but the hippo isn’t having any of it.
@khdarkwolf whispers to you, “Notice how it’s lounging around all day but has the nerve to call you lazy? It’s the Hippo-Crite!”
Your friend @jumorales nods. “Let’s show it what hard work looks like!”",
- "questHippoCompletion": "The hippo bows in surrender. “I underestimated you. It seems you weren’t being lazy. My apologies. Truth be told, I may have been projecting a bit. Perhaps I should get some work done myself. Here, take these eggs as a sign of my gratitude.” Grabbing them, you settle down by the water, ready to relax at last.",
- "questHippoBoss": "The Hippo-Crite",
- "questHippoDropHippoEgg": "Hippo (Egg)",
- "questHippoUnlockText": "Unlocks purchasable Hippo eggs in the Market",
- "farmFriendsText": "Farm Friends Quest Bundle",
- "farmFriendsNotes": "Contains 'The Mootant Cow', 'Ride the Night-Mare', and 'The Thunder Ram'. Available until September 30.",
- "witchyFamiliarsText": "Witchy Familiars Quest Bundle",
- "witchyFamiliarsNotes": "Contains 'The Rat King', 'The Icy Arachnid', and 'Swamp of the Clutter Frog'. Available until October 31.",
- "questGroupLostMasterclasser": "Mystery of the Masterclassers",
- "questUnlockLostMasterclasser": "To unlock this quest, complete the final quests of these quest chains: 'Dilatory Distress', 'Mayhem in Mistiflying', 'Stoïkalm Calamity', and 'Terror in the Taskwoods'.",
- "questLostMasterclasser1Text": "The Mystery of the Masterclassers, Part 1: Read Between the Lines",
- "questLostMasterclasser1Notes": "You’re unexpectedly summoned by @beffymaroo and @Lemoness to Habit Hall, where you’re astonished to find all four of Habitica’s Masterclassers awaiting you in the wan light of dawn. Even the Joyful Reaper looks somber.
“Oho, you’re here,” says the April Fool. “Now, we would not rouse you from your rest without a truly dire—”
“Help us investigate the recent bout of possessions,” interrupts Lady Glaciate. “All the victims blamed someone named Tzina.”
The April Fool is clearly affronted by the summary. “What about my speech?” he hisses to her. “With the fog and thunderstorm effects?”
“We’re in a hurry,” she mutters back. “And my mammoths are still soggy from your incessant practicing.”
“I’m afraid that the esteemed Master of Warriors is correct,” says King Manta. “Time is of the essence. Will you aid us?”
When you nod, he waves his hands to open a portal, revealing an underwater room. “Swim down with me to Dilatory, and we will scour my library for any references that might give us a clue.” At your look of confusion, he adds, “Don’t worry, the paper was enchanted long before Dilatory sank. None of the books are the slightest bit damp!” He winks.“Unlike Lady Glaciate’s mammoths.”
“I heard that, Manta.”
As you dive into the water after the Master of Mages, your legs magically fuse into fins. Though your body is buoyant, your heart sinks when you see the thousands of bookshelves. Better start reading…",
- "questLostMasterclasser1Completion": "After hours of poring through volumes, you still haven’t found any useful information.
“It seems impossible that there isn’t even the tiniest reference to anything relevant,” says head librarian @Tuqjoi, and their assistant @stefalupagus nods in frustration.
King Manta’s eyes narrow. “Not impossible…” he says. “Intentional.” For a moment, the water glows around his hands, and several of the books shudder. “Something is obscuring information,” he says. “Not just a static spell, but something with a will of its own. Something… alive.” He swims up from the table. “The Joyful Reaper needs to hear about this. Let’s pack a meal for the road.”",
- "questLostMasterclasser1CollectAncientTomes": "Ancient Tomes",
- "questLostMasterclasser1CollectForbiddenTomes": "Forbidden Tomes",
- "questLostMasterclasser1CollectHiddenTomes": "Hidden Tomes",
- "questLostMasterclasser2Text": "The Mystery of the Masterclassers, Part 2: Assembling the a'Voidant",
- "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": "Aether Mask (Eyewear)",
- "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",
- "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!",
- "questLostMasterclasser3DropBodyAccessory": "Aether Amulet (Body Accessory)",
- "questLostMasterclasser3DropBasePotion": "Base Hatching Potion",
- "questLostMasterclasser3DropGoldenPotion": "Golden Hatching Potion",
- "questLostMasterclasser3DropPinkPotion": "Cotton Candy Pink Hatching Potion",
- "questLostMasterclasser3DropShadePotion": "Shade Hatching Potion",
- "questLostMasterclasser3DropZombiePotion": "Zombie Hatching Potion",
- "questLostMasterclasser4Text": "The Mystery of the Masterclassers, Part 4: The Lost Masterclasser",
- "questLostMasterclasser4Notes": "You surface from the portal, but you’re still suspended in a strange, shifting netherworld. “That was bold,” says a cold voice. “I have to admit, I hadn’t planned for a direct confrontation yet.” A woman rises from the churning whirlpool of darkness. “Welcome to the Realm of Void.”
You try to fight back your rising nausea. “Are you Zinnya?” you ask.
“That old name for a young idealist,” she says, mouth twisting, and the world writhes beneath you. “No. If anything, you should call me the Anti’zinnya now, given all that I have done and undone.”
Suddenly, the portal reopens behind you, and as the four Masterclassers burst out, bolting towards you, Anti’zinnya’s eyes flash with hatred. “I see that my pathetic replacements have managed to follow you.”
You stare. “Replacements?”
“As the Master Aethermancer, I was the first Masterclasser — the only Masterclasser. These four are a mockery, each possessing only a fragment of what I once had! I commanded every spell and learned every skill. I shaped your very world to my whim — until the traitorous aether itself collapsed under the weight of my talents and my perfectly reasonable expectations. I have been trapped for millennia in this resulting void, recuperating. Imagine my disgust when I learned how my legacy had been corrupted.” She lets out a low, echoing laugh. “My plan was to destroy their domains before destroying them, but I suppose the order is irrelevant.” With a burst of uncanny strength, she charges forward, and the Realm of Void explodes into chaos.",
- "questLostMasterclasser4Completion": "Under the onslaught of your final attack, the Lost Masterclasser screams in frustration, her body flickering into translucence. The thrashing void stills around her as she slumps forward, and for a moment, she seems to change, becoming younger, calmer, with an expression of peace upon her face… but then everything melts away with scarcely a whisper, and you’re kneeling once more in the desert sand.
“It seems that we have much to learn about our own history,” King Manta says, staring at the broken ruins. “After the Master Aethermancer grew overwhelmed and lost control of her abilities, the outpouring of void must have leached the life from the entire land. Everything probably became deserts like this.”
“No wonder the ancients who founded Habitica stressed a balance of productivity and wellness,” the Joyful Reaper murmurs. “Rebuilding their world would have been a daunting task requiring considerable hard work, but they would have wanted to prevent such a catastrophe from happening again.”
“Oho, look at those formerly possessed items!” says the April Fool. Sure enough, all of them shimmer with a pale, glimmering translucence from the final burst of aether released when you laid Anti’zinnya’s spirit to rest. “What a dazzling effect. I must take notes.”
“The concentrated remnants of aether in this area probably caused these animals to go invisible, too,” says Lady Glaciate, scratching a patch of emptiness behind the ears. You feel an unseen fluffy head nudge your hand, and suspect that you’ll have to do some explaining at the Stables back home. As you look at the ruins one last time, you spot all that remains of the first Masterclasser: her shimmering cloak. Lifting it onto your shoulders, you head back to Habit City, pondering everything that you have learned.
",
+ "questMayhemMistiflying1Text": "Misti飛城的混亂,第1部:Misti飛城遇到可怕的麻煩",
+ "questMayhemMistiflying1Notes": "雖然本地的預言家預計天氣將會不錯,但這天下午卻異常風大,所以你跟隨著你的朋友@Kiwibot 去了她的家中,來躲避這場大風。
但沒有意料到的是,愚者正懶洋洋地躺在餐桌上呢。
“哦,你好,”他說,“你們怎麼來了,那麼,給我來點好茶吧。”
“但……”@Kiwibot說道,“那是我的——”
“那是,那是當然”,愚者一邊說道,一邊把曲奇餅乾往嘴邊送,“你只要想著,我突然出現在你家,只是為了緩解下這陣骷髏旋風對我的驚嚇。”他隨意了嘬了口茶,又說,“順便提一句,Misti飛城正在遭受攻擊。”
你和你的朋友有些驚慌失措,於是飛奔到馬厩,騎上了那匹速度最快的飛馬,奔向那座流動的城市。正如你所見,一大群在空中旋轉著的、發出噠噠聲響的骷髏,正包圍著整個城市……同時,一些骷髏也將注意力轉向了你們!",
+ "questMayhemMistiflying1Completion": "最後一顆骷髏從天上墜落下來,它銜著一件閃閃發光的彩虹長袍。但是,風依然在刮,不見鬆懈。還有什麼東西在作怪。那懶散的愚者又在哪呢?你收起長袍,沖向城市。",
+ "questMayhemMistiflying1Boss": "空中骷髏群",
+ "questMayhemMistiflying1RageTitle": "骨群重生",
+ "questMayhemMistiflying1RageDescription": "骨群重生:如果你沒有完成每日任務,這個進度條就會前進。當它填滿的時候旋風骸骨群會回复它剩餘生命值的30%!",
+ "questMayhemMistiflying1RageEffect": "空中骷髏群使用了骨群重生!\n\n受到勝利的激勵,更多的骷髏迴旋於天空!",
+ "questMayhemMistiflying1DropSkeletonPotion": "骷髏孵化藥水",
+ "questMayhemMistiflying1DropWhitePotion": "白色孵化藥水",
+ "questMayhemMistiflying1DropArmor": "俏皮彩虹信使長袍(護甲)",
+ "questMayhemMistiflying2Text": "Misti飛城的混亂,第2部:疾風更盛",
+ "questMayhemMistiflying2Notes": "Misti飛城起伏翻滾著,因為令這座城漂浮著的魔法蜜蜂們被暴風瘋狂地拍打。在一通不顧一切地尋找之後,你發現愚者在一間小屋裡,漫不經心地和一隻被五花大綁的、氣憤的骷髏頭打牌。
@Katy133 高聲蓋過狂風的呼嘯大喊著問:“怎麼回事?我們打敗了骷髏,但是更糟糕了!”
“那可麻煩了,”愚者贊同道,“拜託你們當個好人,別跟冰川夫人提這事。她總是威脅要不喜歡我了,因為我是個'災難性地不負責任'的傢伙,現在這狀況我怕她誤會。 ”他一邊洗牌,一邊回答:“也許你們可以跟著Misti蝴蝶?它們是無實體的,所以狂風吹不走它們,而且它們趨於一窩蜂湧向威脅。”他向窗外點點頭,這座城的一些守護神在那邊正飛向東方。 “現在我要認真打牌了——我的對手可頂著張撲克臉在玩牌吶。”",
+ "questMayhemMistiflying2Completion": "你跟著Misti蝴蝶進來到了風暴眼,可是風太大了,你無法衝進去。
“這個有用,”一個聲音在你耳中響起,你差點從坐騎上摔下來。愚者不知怎麼的坐在你背後的一截馬鞍上。 “我聽說信使兜帽會放射光環,在惡劣天氣下提供保護——非常有用,能避免飛來飛去的時候弄丟信件。來試試?”",
+ "questMayhemMistiflying2CollectRedMistiflies": "紅色Misti蝴蝶",
+ "questMayhemMistiflying2CollectBlueMistiflies": "藍色Misti蝴蝶",
+ "questMayhemMistiflying2CollectGreenMistiflies": "綠色Misti蝴蝶",
+ "questMayhemMistiflying2DropHeadgear": "俏皮彩虹信使兜帽(頭盔)",
+ "questMayhemMistiflying3Text": "Misti飛城的混亂,第3部:粗魯的郵遞員",
+ "questMayhemMistiflying3Notes": "Misti蝴蝶群在龍捲風密密麻麻地飛速旋轉,難以看清。你瞇著眼睛,發現一個多翼的影子漂浮在這巨大風暴的中心。
“噢,天哪,”愚者嘆息著,聲音幾乎被暴風的呼嘯淹沒了。 “看來是小風在那,並且陷入了瘋狂。這是個很像回事的問題,可能發生在任何人身上。”
“乘風者!”@Beffymaroo 朝你喊道, “他是Misti飛城最有天賦的信使法師,他對天氣魔法非常熟練。平常他是個很有禮貌的郵遞員!”
好像為了反對這個評價,乘風者發出了一聲憤怒的尖叫,即使你穿著魔法袍,風暴也幾乎把你從坐騎上刮下來。 ”
“那個花哨的面具是新的,”愚者說道,“也許你應該把它摘下來? ”
這是個好主意……但是不來一場戰鬥的話,這位憤怒的法師不會取下它的。",
+ "questMayhemMistiflying3Completion": "就在你認為你再也經受不住風的時候,你設法從乘風者的臉上摘下了面具。頓時,龍捲風被吸走,只留下溫和的微風和陽光。乘風者困惑地四處張望。 “她去哪兒了?”
“誰?”你的朋友@khdarkwolf 問道。
“那個可愛的女人Tzina,她主動說要幫我送一個包裹。”當他看到下方被風橫掃過的城市時,他的表情變得黯然。 “那麼,也許她不那麼可愛……”
愚者拍了拍他的背,然後遞給你兩個閃閃發光的信封。 “嘿。你為什麼不讓這個苦惱的傢伙休息一下,你來負責送一點郵件呢?我聽說這些信封裡的魔法會值得你這麼做的。”",
+ "questMayhemMistiflying3Boss": "乘風者",
+ "questMayhemMistiflying3DropPinkCottonCandy": "粉色棉花糖(食物)",
+ "questMayhemMistiflying3DropShield": "俏皮彩虹信使的信件(副手裝備)",
+ "questMayhemMistiflying3DropWeapon": "俏皮彩虹信使的信件(主要裝備)",
+ "featheredFriendsText": "“生有羽翼”副本集",
+ "featheredFriendsNotes": "包括‘救命!哈耳庇厄! ’,‘暗夜貓頭鷹’,‘掠食明天之鳥’,5月31日之前可購買。",
+ "questNudibranchText": "NowDo海兔的侵襲",
+ "questNudibranchNotes": "在Habitica度過懶散一天的你,總算是說服自己檢查一下你的待辦事項。緊挨著你那深紅的任務的,是一群明亮鮮豔的藍色海兔。你簡直入了迷!那蔚藍的顏色使你最嚇人的任務看起來也像最習以為常一樣簡單。你在一種狂熱的恍惚狀態中開始了工作,不眠不休地解決掉一個又一個任務……
直到@LilithofAlfheim 朝你潑了一桶冷水,你才醒了過來。 “NowDo海兔把你渾身上下都蜇傷了!你得休息一下!”
你驚訝地發現,自己的皮膚紅得和待辦列表一樣。 “高產是一方面,”@beffymaroo 說,“但是你也得照顧自己的身體,趕緊的,弄走這些海兔!”",
+ "questNudibranchCompletion": "你看見最後一隻NowDo海兔隨著@amadshade 的沖洗從一樁已完成的任務上滑走。它們留下了一個布袋,你打開之後發現裡面有一些金幣和看起來是蛋的小橢球。",
+ "questNudibranchBoss": "NowDo海兔",
+ "questNudibranchDropNudibranchEgg": "海兔(寵物蛋)",
+ "questNudibranchUnlockText": "解鎖——可在市集中購買海兔蛋",
+ "splashyPalsText": "“水花飛濺”副本集",
+ "splashyPalsNotes": "包含“拖拉比賽”,“引導海龜”和“鯨之哀嚎”。 7月31日前可購買。",
+ "questHippoText": "好一個偽君子",
+ "questHippoNotes": "你和@awesomekitty 筋疲力盡地倒在棕櫚樹的樹蔭下。陽光在堅定稀樹草原上灑下,炙烤著下方的地面。度過了高產的一天,征服了每日任務,這片綠洲看起來是個休息和放鬆的好地方。你在水邊彎下腰來喝些水時,一隻河馬突然爬了起來,嚇得你跌跌撞撞地退了幾步。 “這麼快就休息了?別這麼懶,快去工作。”你試著抗議說你一直在工作,現在需要休息,但河馬聽不進去。
@khdarkwolf 對你耳語道:“它可一整天都在閒逛,哪來的勇氣說你懶?可真是個偽君子!”
你的朋友@jumorales 點了點頭。 “咱們就讓他看看啥叫努力工作!”",
+ "questHippoCompletion": "河馬俯首投降:“是我小瞧你了。似乎你沒有在偷懶,我道歉。說句實話,我一直有在計劃當中。也許我應該自己做些工作。來,拿著這些蛋,這是我的謝禮。”接過這些蛋,你在水邊安頓下來,終於能好好休息了。",
+ "questHippoBoss": "河馬怪",
+ "questHippoDropHippoEgg": "河馬(寵物蛋)",
+ "questHippoUnlockText": "解鎖——可在市集中購買河馬蛋",
+ "farmFriendsText": "“農場好友”副本集",
+ "farmFriendsNotes": "包含“變異奶牛”、“駕馭噩夢”、“雷霆公羊”。 8月31日前可購買。",
+ "witchyFamiliarsText": "“巫師親信”副本集",
+ "witchyFamiliarsNotes": "包括“鼠王”、“寒霜蜘蛛”、“蛙澤”,10月31日前可購買。",
+ "questGroupLostMasterclasser": "大師鑑別者的秘密",
+ "questUnlockLostMasterclasser": "解鎖這個副本,需完成以下副本線的最終副本:“拖拉災難”,“Misti飛城的混亂”,“Stoïkalm災難”,“恐怖的任務森林”。",
+ "questLostMasterclasser1Text": "大師鑑別者的秘密,第1部:字裡行間",
+ "questLostMasterclasser1Notes": "@beffymaroo 和@Lemoness 突然把你叫到習慣大廳,你驚訝地發現Habitica的4個大師鑑別者全員居然在暗淡的晨光中等著你。即使是“快樂收割者”也掛著一副嚴峻的表情。
“哦豁,你來了,”愚者說。 “現在,要不是真的發生了這麼可怕的事情,我們也不會打擾你休息的——”
“幫我們調查一下這陣子惡靈附身的事件吧,”冰川夫人打斷了他,“所有的受害者都說是個叫Tzina的人幹的。”
很明顯,這麼簡單粗暴的總結冒犯到了愚者:“切,我還想演講一通呢。”< br>
“咱現在趕時間,”冰川夫人回懟道,“而且我的猛獁像還被你沒完沒了的小實驗澆了個濕透。”
“恐怕那位戰士大師說的是對的,”魟魚國王說道,“時間寶貴。你能幫助我們嗎?”
你點了點頭,他揮揮手便開啟了一個傳送陣,一間水下的屋子展露於眼前。 “和我一起向著拖拉城游過去,我們來找遍我的圖書館看看能不能從文獻裡得到點線索。”看到你一臉懵,他解釋說:“別擔心,早在拖拉城下沉之前,書卷就附過魔了。那些書一點都不會被水給弄糊。”他擠了擠眼:“不像冰川夫人的猛獁象。”
“魟魚,我聽見你在背後說我壞話了。”
你跟在法師大師身後潛下水底,雙腿神奇地變成了魚鰭。雖然你的身軀靈活輕快,但看到成千上萬的書架之後,你的心不由得沉了下去。趁早開工為妙……",
+ "questLostMasterclasser1Completion": "連續查閱了幾小時書籍後,你仍然沒有找到任何有用的信息。
“這簡直是不可能完成的任務,我們連一點相關的內容都找不到,”圖書管理員@Tuqjoi說道。 Ta的助手@stefalupagus挫敗地點了點頭。
魟魚國王瞇了瞇眼。 “不可能……”他說。 “有意為之。”他手上的水發起微光,幾本書抖動起來。 “有什麼東西在隱藏信息,”他說。 “不是靜態的咒語,而是某種有自己意願的東西。某種……活著的東西。”他從桌子上游起來。 “快樂收割者必須知道這件事。準備好路上的飯吧。”",
+ "questLostMasterclasser1CollectAncientTomes": "古籍",
+ "questLostMasterclasser1CollectForbiddenTomes": "禁書",
+ "questLostMasterclasser1CollectHiddenTomes": "藏書",
+ "questLostMasterclasser2Text": "大師鑑別者的秘密,第2部:召喚逃避者",
+ "questLostMasterclasser2Notes": "快樂收割者用她細瘦的手指敲著你借來的書。 “哦,親愛的,”這位醫者大師說。 “考慮到這些騷亂中都有蘇生的骷髏在進行攻擊,我猜是某種邪惡的生命本質作祟。”她的助手@tricksy.fox 搬來一個箱子,你看到@beffymaroo 拿出的東西後吃了一驚:竟然和神秘的Tzina用來對人下惡咒的東西一模一樣。
“我要放個共鳴治愈術讓這傢伙顯形,”快樂收割者說,你才想起他“骨子”裡是個天馬行空的醫者。 “你得把一會兒顯現的信息快速讀取出來,以免它們散佚掉。”
當她集中註意力,開始從書中抽取蜿蜒的迷霧縈繞在法器周圍。很快,你翻閱著書頁,試著閱讀一行行新寫入眼前的文字。你只跟上了幾個片段:“浪費時間之沙”——“巨大災難”——“分裂成4部分”——“永遠被侵蝕”——然後你的視線被一個名字吸引了:Zinnya。
突然,書頁扭動著從你的指尖掙脫而且撕碎了它們自己,形成了一個膨脹著、咆哮著的生物,聚集在這些被附靈的物品上。
“這是逃避者!”快樂收割者大喊道,甩出一道守護咒。 “它們是混亂無明的古老生物。如果Tzina能控制它,她肯定對生命魔法有嚇人的掌控力。快點,在它鑽進書本逃掉之前打敗它!”",
+ "questLostMasterclasser2Completion": "逃避者最終潰散了,你把讀到的片段告訴大家。
“就算是我這麼老的人,對你提到的事情也沒有一件聽起來耳熟,”快樂收割者說,“除了……浪費時間是一個地處Habitica環境最惡劣的邊緣地帶的遙遠沙漠。傳送陣在那附近總是失效,但迅捷的坐騎能讓你飛快到達。冰川夫人會樂意幫忙的。”她調皮地上揚了語調:“也就是說那位被迷倒了的盜賊大師毫無疑問也會跟去的。”她遞給你一副閃光的面具。 “也許你該循著這些物品上殘留的魔法痕跡去追溯源頭。我去為你的旅途收割點食糧。”",
+ "questLostMasterclasser2Boss": "逃避者",
+ "questLostMasterclasser2DropEyewear": "以太面具(眼鏡)",
+ "questLostMasterclasser3Text": "大師鑑別者的秘密,第3部:黃沙掩埋的城市",
+ "questLostMasterclasser3Notes": "當夜幕降臨於灼熱的浪費時間沙漠上時,你的嚮導@AnnDeLune、@Kiwibot 和@Katy133 引你前行。幾座褪色的石柱佇立在陰影中的沙丘上,隨著你接近它們,一陣奇怪的滑行聲迴響在這片似乎廢棄多時的廣場上。
“隱形生物!”愚者毫不掩飾他虎視眈眈的樣子,“哦嚯!想像一下這種可能性:這肯定是個鬼鬼祟祟的盜賊所為。”
“一個有可能盯著咱們的盜賊,”冰川夫人跳下坐騎,揚起長矛,“如果要正面打一架的話,盡量別激怒敵人。我可不想重蹈火山那時候的覆轍。”
愚者沖她粲然一笑,說:“但那是你最輝煌的營救行動之一。”
聽到這句恭維,冰川夫人頰上竟然泛起些許緋紅,你為此小小的驚訝了一下。她匆忙噔噔地跑去檢查這片遺跡。
“看上去像古城的殘骸,”@AnnDeLune 說,“我想知道……”
她還來不及說完話,一個傳送陣咆哮著出現在天空中。這片地方不是說魔法在這不靈的嗎?隱形動物蹄聲雷動,四散奔逃,你卻在鋪天蓋地的嘶叫著的骷髏潮湧面前穩住了身形。",
+ "questLostMasterclasser3Completion": "愚者用噴沙大法給最後一個骷髏來了個驚喜,那骷髏朝後一躲正撞上冰川夫人的長矛,立刻被攪得粉碎。你喘了口氣,仰望天空,看到某人的輪廓在徐徐關閉的傳送陣彼端一閃而過。心念電轉,你從那一箱被惡靈附過的東西里奪過護身符,並且非常確定,它指引向那個看不清的傢伙。無視了冰川夫人和愚者的大喊和警告,你蹭在傳送陣關閉前跳了過去,墜入漆黑無物的狹間。",
+ "questLostMasterclasser3Boss": "虛空骷髏群",
+ "questLostMasterclasser3RageTitle": "骨群重生",
+ "questLostMasterclasser3RageDescription": "骨群重生:你沒完成日常所受的傷害將會增加怒氣值。當怒氣槽攢滿時,虛空骷髏群會回复它們此刻生命值的30%!",
+ "questLostMasterclasser3RageEffect": "`虛空骷髏群使用了骨群重生! `\n\n受到勝利的鼓舞,更多骷髏尖叫著從天而降,加入了戰鬥的洪流!",
+ "questLostMasterclasser3DropBodyAccessory": "以太護符(身體配飾)",
+ "questLostMasterclasser3DropBasePotion": "普通孵化藥水",
+ "questLostMasterclasser3DropGoldenPotion": "金色孵化藥水",
+ "questLostMasterclasser3DropPinkPotion": "粉色棉花糖孵化藥水",
+ "questLostMasterclasser3DropShadePotion": "暗影孵化藥水",
+ "questLostMasterclasser3DropZombiePotion": "殭屍孵化藥水",
+ "questLostMasterclasser4Text": "大師鑑別者的秘密,第4部:迷失的大師鑑別者",
+ "questLostMasterclasser4Notes": "你浮出傳送陣的表面,但你仍然懸浮在一個奇怪的、變幻莫測的幽冥空間中。 “好大的膽子,”一個冷酷的聲音響起,“我得承認,我的計劃裡此前沒有當面對峙這項。”一個女人從翻騰的漩渦中升起。 “歡迎來到虛空領域。”
你拼命忍住一陣反胃嘔吐的感覺。 “你就是Zinnya?”你問她。
“一個年輕的理想主義者的曾用名,”她答道,撇了撇嘴,世界在你們下方痛苦地扭曲著,“我並不是。如果非得扯上點關係的話,你應該叫現在的我Zinnya的反對者,Anti'zinnya(Tzina),鑑於我的所作所為和還沒來及做的一切。”
傳送陣突然在你身後重新開啟,並且把4位大師鑑別者在你面前甩了出來。 Anti’zinnya的雙眼閃著仇恨的光芒。 “我看到我那些可憐的替代品們竟然跟著你來了。”
你盯著她問道:“替代品?”
“作為大師級的以太術士,我曾是第一位大師鑑別者——也是唯一的大師鑑別者。這4個人充其量算拙劣的模仿者,他們每個人只有我曾擁有的力量的一點零碎!我能夠調遣一切咒語,也學過任何一種技能。你們因我心血來潮的創世造物而存在,直到力量背叛了我,以太因無法承受我的才華,以及我完美而合理的願景之重而崩潰。我在此間被困千年,製造虛空,逐漸康復。想像一下當我知道我遺落世間的才學被玷污時那噁心的心情吧。”她瘋狂地大笑,笑聲在這詭異的空間中迴響。 “我的計劃是在毀滅他們之前先毀滅他們的領地,但現在我覺得順序也無關緊要了。”迸發出不可思議之力的同時,她衝上前來,整個虛空領域爆裂成一片混亂。",
+ "questLostMasterclasser4Completion": "在你的猛攻之下,迷失的大師鑑別者發出了充滿挫敗感的哀嚎,她的身形搖曳閃爍著變成了半透明狀。像鞭子一樣猛烈抽打著一切的虛空仍然環繞在跌落的她周圍,然而剎那之後,她的存在發生了變化。她變成了更年輕、冷靜、臉上浮現出平靜表情的樣子……然後,一切都悄無聲息地消散了,你又一次跪倒在沙漠的沙地上。
“看來咱們對自己的歷史有很多要去了解的啊。”魟魚國王凝視著殘破的廢墟,“在以太術士大師被自己的能力壓垮而失去控制之後,傾盆而出的空虛肯定讓整片大陸生靈塗炭了。可能一切都變成了像這樣的沙漠。”
“難怪建立Habitica的祖先們一再強調要保持生產力和健康的平衡,”快樂收割者低聲說,“想想重建世界那麼重的任務足以使人望而卻步了,但他們也曾想避免這種天災人禍再次發生。”
“哦嚯,看看這些惡靈附過的東西!”愚者說。顯然,在你讓Anti’zinnya的亡靈得以安息時,這些裝備沾最後一陣以太爆發的光,變成了影影綽綽的半透明質,閃著蒼白的光芒。 “真是令人眼花繚亂的效果,我得把這些記錄下來。”
“也許此地的動物能隱形也是因為殘存的以太凝聚在這裡。”冰川夫人把手伸向耳後,抓了一把空氣。你感覺到有個看不見的毛茸茸的小腦袋在蹭你的手,這下等回頭到家,你得跟馬厩裡的其他坐騎好好解釋一通了。你最後再看了一眼這片廢墟,發現史上第一的那位大師鑑別者最終唯一留下來的東西:她那件明滅閃爍的斗篷。你將它披在肩上,回頭向Habit城走去,回味著你剛剛經歷的一切。
",
"questLostMasterclasser4Boss": "Anti'zinnya",
- "questLostMasterclasser4RageTitle": "Siphoning Void",
- "questLostMasterclasser4RageDescription": "Siphoning Void: This bar fills when you don't complete your Dailies. When it is full, Anti'zinnya will remove the party's Mana!",
- "questLostMasterclasser4RageEffect": "`Anti'zinnya uses SIPHONING VOID!` In a twisted inversion of the Ethereal Surge spell, you feel your magic drain away into the darkness!",
- "questLostMasterclasser4DropBackAccessory": "Aether Cloak (Back Accessory)",
- "questLostMasterclasser4DropWeapon": "Aether Crystals (Two-Handed Weapon)",
- "questLostMasterclasser4DropMount": "Invisible Aether Mount",
- "questYarnText": "A Tangled Yarn",
- "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)",
- "questYarnUnlockText": "Unlocks purchasable Yarn eggs in the Market",
- "winterQuestsText": "Winter Quest Bundle",
- "winterQuestsNotes": "Contains 'Trapper Santa', 'Find the Cub', and 'The Fowl Frost'. Available until December 31.",
- "questPterodactylText": "The Pterror-dactyl",
- "questPterodactylNotes": "You're taking a stroll along the peaceful Stoïkalm Cliffs when an evil screech rends the air. You turn to find a hideous creature flying towards you and are overcome by a powerful terror. As you turn to flee, @Lilith of Alfheim grabs you. \"Don't panic! It's just a Pterror-dactyl.\"
@Procyon P nods. \"They nest nearby, but they're attracted to the scent of negative Habits and undone Dailies.\"
\"Don't worry,\" @Katy133 says. \"We just need to be extra productive to defeat it!\" You are filled with a renewed sense of purpose and turn to face your foe.",
- "questPterodactylCompletion": "With one last screech the Pterror-dactyl plummets over the side of the cliff. You run forward to watch it soar away over the distant steppes. \"Phew, I'm glad that's over,\" you say. \"Me too,\" replies @GeraldThePixel. \"But look! It's left some eggs behind for us.\" @Edge passes you three eggs, and you vow to raise them in tranquility, surrounded by positive Habits and blue Dailies.",
- "questPterodactylBoss": "Pterror-dactyl",
- "questPterodactylDropPterodactylEgg": "Pterodactyl (Egg)",
- "questPterodactylUnlockText": "Unlocks purchasable Pterodactyl eggs in the Market",
- "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.",
+ "questLostMasterclasser4RageTitle": "虛空抽取",
+ "questLostMasterclasser4RageDescription": "虛空抽取:當你沒完成每日任務時,Boss的怒氣值會增加。當怒氣槽滿時,Anti'zinnya將會抽空全隊的魔法值!",
+ "questLostMasterclasser4RageEffect": "`Anti'zinnya 使用了 虛 空 抽 取! `在一陣澎湃靈泉的反向咒術中,你感到魔法被無盡的黑暗抽乾了!",
+ "questLostMasterclasser4DropBackAccessory": "以太斗篷(背部挂件)",
+ "questLostMasterclasser4DropWeapon": "以太水晶(雙手武器)",
+ "questLostMasterclasser4DropMount": "隱形以太坐騎",
+ "questYarnText": "一條纏繞的毛線",
+ "questYarnNotes": "今天天氣真好,適合去任務汗國的郊外散步。你路過一家有名的毛線商店時,一聲慘叫刺破長空,驚飛了鳥兒,嚇跑了蝴蝶。你向聲源跑去,看見@Arcosine 迎面向你跑來。一團巨大的毛線,上面插著大大小小的毛衣針、大頭針,叮咣作響地攆在他屁股後面窮追不捨。
毛線店的店主也追了出來,@stefalupagus 一把抓住了你的胳膊,上氣不接下氣地說:“看看這一堆沒完成的計劃吧,呼… …哈……它們讓毛線商店裡的線團變形了,嘶……呼……成了這麼一大團纏繞的毛線!”
“有時候,生活當中會出現一些困難,計劃執行不下去了,結果事情就變得很讓人糾結和迷茫,”@khdarkwolf 說,“這種迷茫甚至可能會影響其他方面的工作,最後就成了疲於應付一大堆半途而廢的工作,沒有一件是好好做完的!”
必須當機立斷:完成你陷入停滯的計劃……或者重新梳理一下,重定計劃。不管你選哪個,你都得趕緊提高效率了,趕在這一大團纏繞的毛線把迷茫和矛盾心態傳播到Habitica的其他地方之前解決掉它!",
+ "questYarnCompletion": "大線團無力地用針線包掄了最後一下,發出虛弱的嘶吼,終於被拆成一大堆小毛線球。
“照顧好這些毛線,”毛線店店主@JinjooHat 把它們遞給了你,“如果你好好餵養照顧它們,它們會長成新意滿滿、激動人心的項目,能讓你平步青雲,一飛沖天……”",
+ "questYarnBoss": "可怕的大團毛線",
+ "questYarnDropYarnEgg": "毛線(寵物蛋)",
+ "questYarnUnlockText": "解鎖——可在市集中購買毛線蛋",
+ "winterQuestsText": "“冬天”副本集",
+ "winterQuestsNotes": "包括“聖誕陷阱獵手”、“找熊仔”和“冰霜禽類”。 1月31日前可購買。注意,聖誕陷阱獵手和找熊崽獎勵可堆疊的副本成就,但會獎勵的稀有寵物和坐騎只能添加到你的馬厩一次。",
+ "questPterodactylText": "翼龍",
+ "questPterodactylNotes": "你在Stoïkalm懸崖邊散步時,一聲邪惡的尖嘯劃破長空。你轉過頭來,看到一隻醜陋的生物向著你從天而降,你立刻為巨大的恐懼所支配。當你扭頭想逃跑時,@Lilith of Alfheim 一把抓住了你,說道:“別害怕!那隻是一隻翼龍。”
@Procyon P 點頭贊同道:“它們的巢在附近,翼龍會被壞習慣和完不成的每日任務的氣味吸引過來。”
“不用擔心,”@Katy133 說,“我們只要提高效率多幹活,就能戰勝它!”你重新充滿了決心,擺出了接敵的架勢。",
+ "questPterodactylCompletion": "伴隨著翼龍的最後一聲慘叫,它從懸崖邊上跌了下去。你跑到懸崖邊向下看去,看見翼龍展翅重新飛上天空,掠過廣袤的大草原。你鬆了口氣:“嚯,可算是完事了。”@GeraldThePixel 回了句話:“我也這麼覺得。”@Edge 遞給你3個蛋:“看!它給咱們留下了幾個蛋。 ”在好習慣和藍色的每日任務的圍繞下,你發誓要把它們平安養大。",
+ "questPterodactylBoss": "翼龍",
+ "questPterodactylDropPterodactylEgg": "翼龍(寵物蛋)",
+ "questPterodactylUnlockText": "解鎖——可在市集中購買翼龍蛋",
+ "questBadgerText": "快別纏著我了!",
+ "questBadgerNotes": "啊,寒冬的任務森林。柔軟的雪落下,樹枝上閃著霜華,豐收精靈……還沒有沉睡?
“他們怎麼還醒著啊?”@LilithofAlfheim 發出了一聲哀嚎,“如果他們不冬眠的話,來年播種季節的時候會無精打采的!”
你和@Willow the Witty 趕緊開展了調查,一個毛茸茸的腦袋從地裡探出頭來。在你尖叫出聲之前,@Willow the Witty 提醒你:“是糾纏不休的獾!”它搶走了精靈們“冬眠”這項待辦,丟出來了一大列討厭的任務,然後溜回它的洞穴!
@plumilla 說:“這些精靈一直被這樣打擾的話,難怪他們沒辦法休息。”你能攆走這只獾,守護任務森林的來年豐收嗎?",
+ "questBadgerCompletion": "你終於趕走了糾纏不休的獾,它匆忙逃回了自己的洞穴。在隧道的盡頭,你發現了一堆精靈們的“冬眠”待辦。這個巢穴看上去已經廢棄了,除了3個看起來可以孵的寵物蛋。",
"questBadgerBoss": "糾纏不休的獾",
"questBadgerDropBadgerEgg": "獾(寵物蛋)",
"questBadgerUnlockText": "解鎖獾蛋購買功能",
"questDysheartenerText": "失戀怪",
- "questDysheartenerNotes": "The sun is rising on Valentine’s Day when a shocking crash splinters the air. A blaze of sickly pink light lances through all the buildings, and bricks crumble as a deep crack rips through Habit City’s main street. An unearthly shrieking rises through the air, shattering windows as a hulking form slithers forth from the gaping earth.
Mandibles snap and a carapace glitters; legs upon legs unfurl in the air. The crowd begins to scream as the insectoid creature rears up, revealing itself to be none other than that cruelest of creatures: the fearsome Dysheartener itself. It howls in anticipation and lunges forward, hungering to gnaw on the hopes of hard-working Habiticans. With each rasping scrape of its spiny forelegs, you feel a vise of despair tightening in your chest.
“Take heart, everyone!” Lemoness shouts. “It probably thinks that we’re easy targets because so many of us have daunting New Year’s Resolutions, but it’s about to discover that Habiticans know how to stick to their goals!”
AnnDeLune raises her staff. “Let’s tackle our tasks and take this monster down!”",
- "questDysheartenerCompletion": "The Dysheartener is DEFEATED!
Together, everyone in Habitica strikes a final blow to their tasks, and the Dysheartener rears back, shrieking with dismay. “What's wrong, Dysheartener?” AnnDeLune calls, eyes sparkling. “Feeling discouraged?”
Glowing pink fractures crack across the Dysheartener's carapace, and it shatters in a puff of pink smoke. As a renewed sense of vigor and determination sweeps across the land, a flurry of delightful sweets rains down upon everyone.
The crowd cheers wildly, hugging each other as their pets happily chew on the belated Valentine's treats. Suddenly, a joyful chorus of song cascades through the air, and gleaming silhouettes soar across the sky.
Our newly-invigorated optimism has attracted a flock of Hopeful Hippogriffs! The graceful creatures alight upon the ground, ruffling their feathers with interest and prancing about. “It looks like we've made some new friends to help keep our spirits high, even when our tasks are daunting,” Lemoness says.
Beffymaroo already has her arms full with feathered fluffballs. “Maybe they'll help us rebuild the damaged areas of Habitica!”
Crooning and singing, the Hippogriffs lead the way as all the Habitcans work together to restore our beloved home.",
- "questDysheartenerCompletionChat": "`The Dysheartener is DEFEATED!`\n\nTogether, everyone in Habitica strikes a final blow to their tasks, and the Dysheartener rears back, shrieking with dismay. “What's wrong, Dysheartener?” AnnDeLune calls, eyes sparkling. “Feeling discouraged?”\n\nGlowing pink fractures crack across the Dysheartener's carapace, and it shatters in a puff of pink smoke. As a renewed sense of vigor and determination sweeps across the land, a flurry of delightful sweets rains down upon everyone.\n\nThe crowd cheers wildly, hugging each other as their pets happily chew on the belated Valentine's treats. Suddenly, a joyful chorus of song cascades through the air, and gleaming silhouettes soar across the sky.\n\nOur newly-invigorated optimism has attracted a flock of Hopeful Hippogriffs! The graceful creatures alight upon the ground, ruffling their feathers with interest and prancing about. “It looks like we've made some new friends to help keep our spirits high, even when our tasks are daunting,” Lemoness says.\n\nBeffymaroo already has her arms full with feathered fluffballs. “Maybe they'll help us rebuild the damaged areas of Habitica!”\n\nCrooning and singing, the Hippogriffs lead the way as all the Habitcans work together to restore our beloved home.",
+ "questDysheartenerNotes": "在情人節的早上,大家突然聽到震驚的摔聲。遍及所有建築物,都看到了令人作嘔的粉紅光。當深深的裂縫穿過Habit市的大街,磚塊崩潰了。一個怪異的尖叫升起,把窗口粉碎。從地上的裂口,一個巨大的生物向前走。
下頜骨咬合,甲殼閃閃發光;腿在空中鬆開。人群開始大叫時,這個類蟲生物起立,展現自己就是最殘酷的生物:令人恐懼的失戀怪。它期待中的叫,向前衝,想吃勤勞的Habitica居民的希望。
“大家振作起來!” Lemoness叫。 “因為很多人有艱鉅的新年決議,它可能以為我們是降服的獵物。但是,它會發現Habitica居民知道如何堅持的目標!”
AnnDeLune抬她的員工。 “我們開始做完我們的任務,殺死這個魔鬼吧!”",
+ "questDysheartenerCompletion": "失戀怪打敗了!
大家一起對任務產生了最後的打擊,讓失戀怪後退和沮喪地尖叫。 “怎麼了,失戀怪?” AnnDeLune叫,她的眼睛閃閃發光。 “覺得灰心嗎?”
發亮的粉紅色裂縫橫穿失戀怪的甲殼,把魔鬼在粉紅色的煙霧中破碎。當新的活力和決心席捲整個土地時,一連串甜蜜降落在每個人身上。
人群瘋狂地歡呼時,他們的寵物開心地享受遲來的情人節禮物。突然間,歡樂的歌聲在空中飛舞和亮晶晶輪廓在天空中飛。
我們剛充滿活力的樂觀情緒吸引了一群希望天馬!優雅的生物落在地上,饒有興致地揮舞著羽毛,躍躍欲試。 “我們好像交了許多新朋友,它們幫助大家保持精神振奮,甚至於在任務難的時候。”Lemoness解釋。
Beffymaroo的手臂已經滿是蓬鬆的寵物。 “它們可能會幫我們重建Habitica被破損的地方!”
唱歌的希望天馬引領著所有Habitica居民共同努力恢復心愛的家園。",
+ "questDysheartenerCompletionChat": "失戀怪打敗了!\n\n大家一起對任務產生了最後的打擊,讓失戀怪後退和沮喪地尖叫。 “怎麼了,失戀怪?” AnnDeLune叫,她的眼睛閃閃發光。 “覺得灰心嗎?”\n\n發亮的粉紅色裂縫橫穿失戀怪的甲殼,把魔鬼在粉紅色的煙霧中破碎。當新的活力和決心席捲整個土地時,一連串甜蜜降落在每個人身上。\n\n人群瘋狂地歡呼時,他們的寵物開心地享受遲來的情人節禮物。突然間,歡樂的歌聲在空中飛舞和亮晶晶輪廓在天空中飛。\n\n我們剛充滿活力的樂觀情緒吸引了一群希望天馬!優雅的生物落在地上,饒有興致地揮舞著羽毛,躍躍欲試。 “我們好像交了許多新朋友,它們幫助大家保持精神振奮,甚至於在任務難的時候。”Lemoness解釋。\n\nBeffymaroo的手臂已經滿是蓬鬆的寵物。 “它們可能會幫我們重建Habitica被破損的地方!”\n\n唱歌的希望天馬引領著所有Habitica居民共同努力恢復心愛的家園。",
"questDysheartenerBossRageTitle": "粉碎破心術",
- "questDysheartenerBossRageDescription": "The Rage Attack gauge fills when Habiticans miss their Dailies. If it fills up, the Dysheartener will unleash its Shattering Heartbreak attack on one of Habitica's shopkeepers, so be sure to do your tasks!",
- "questDysheartenerBossRageSeasonal": "`The Dysheartener uses SHATTERING HEARTBREAK!`\n\nOh, no! After feasting on our undone Dailies, the Dysheartener has gained the strength to unleash its Shattering Heartbreak attack. With a shrill shriek, it brings its spiny forelegs down upon the pavilion that houses the Seasonal Shop! The concussive blast of magic shreds the wood, and the Seasonal Sorceress is overcome by sorrow at the sight.\n\nQuickly, let's keep doing our Dailies so that the beast won't strike again!",
- "seasonalShopRageStrikeHeader": "The Seasonal Shop was Attacked!",
- "seasonalShopRageStrikeLead": "Leslie is Heartbroken!",
- "seasonalShopRageStrikeRecap": "On February 21, our beloved Leslie the Seasonal Sorceress was devastated when the Dysheartener shattered the Seasonal Shop. Quickly, tackle your tasks to defeat the monster and help rebuild!",
- "marketRageStrikeHeader": "The Market was Attacked!",
- "marketRageStrikeLead": "Alex is Heartbroken!",
- "marketRageStrikeRecap": "On February 28, our marvelous Alex the Merchant was horrified when the Dysheartener shattered the Market. Quickly, tackle your tasks to defeat the monster and help rebuild!",
- "questsRageStrikeHeader": "The Quest Shop was Attacked!",
- "questsRageStrikeLead": "Ian is Heartbroken!",
- "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)",
- "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.",
- "questSquirrelText": "The Sneaky Squirrel",
- "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": "Sneaky Squirrel",
- "questSquirrelDropSquirrelEgg": "Squirrel (Egg)",
- "questSquirrelUnlockText": "Unlocks purchasable Squirrel eggs in the Market",
- "cuddleBuddiesText": "Cuddle Buddies Quest Bundle",
- "cuddleBuddiesNotes": "Contains 'The Killer Bunny', 'The Nefarious Ferret', and 'The Guinea Pig Gang'. Available until May 31.",
- "aquaticAmigosText": "Aquatic Amigos Quest Bundle",
- "aquaticAmigosNotes": "Contains 'The Magical Axolotl', 'The Kraken of Inkomplete', and 'The Call of Octothulu'. Available until June 30.",
- "questSeaSerpentText": "Danger in the Depths: Sea Serpent Strike!",
- "questSeaSerpentNotes": "Your streaks have you feeling lucky—it’s the perfect time for a trip to the seahorse racetrack. You board the submarine at Diligent Docks and settle in for the trip to Dilatory, but you’ve barely submerged when an impact rocks the sub, sending its occupants tumbling. “What’s going on?” @AriesFaries shouts.
You glance through a nearby porthole and are shocked by the wall of shimmering scales passing by it. “Sea serpent!” Captain @Witticaster calls through the intercom. “Brace yourselves, it’s coming ‘round again!” As you grip the arms of your seat, your unfinished tasks flash before your eyes. ‘Maybe if we work together and complete them,’ you think, ‘we can drive this monster away!’",
- "questSeaSerpentCompletion": "Battered by your commitment, the sea serpent flees, disappearing into the depths. When you arrive in Dilatory, you breathe a sigh of relief before noticing @*~Seraphina~ approaching with three translucent eggs cradled in her arms. “Here, you should have these,” she says. “You know how to handle a sea serpent!” As you accept the eggs, you vow anew to remain steadfast in completing your tasks to ensure that there’s not a repeat occurrence.",
- "questSeaSerpentBoss": "The Mighty Sea Serpent",
- "questSeaSerpentDropSeaSerpentEgg": "Sea Serpent (Egg)",
- "questSeaSerpentUnlockText": "Unlocks purchasable Sea Serpent eggs in the Market",
- "questKangarooText": "Kangaroo Catastrophe",
- "questKangarooNotes": "Maybe you should have finished that last task… you know, the one you keep avoiding, even though it always comes back around? But @Mewrose and @LilithofAlfheim invited you and @stefalupagus to see a rare kangaroo troop hopping through the Sloensteadi Savannah; how could you say no?! As the troop comes into view, something hits you on the back of the head with a mighty whack!
Shaking the stars from your vision, you pick up the responsible object--a dark red boomerang, with the very task you continually push back etched into its surface. A quick glance around confirms the rest of your party met a similar fate. One larger kangaroo looks at you with a smug grin, like she’s daring you to face her and that dreaded task once and for all!",
- "questKangarooCompletion": "“NOW!” You signal your party to throw the boomerangs back at the kangaroo. The beast hops further away with each hit until she flees, leaving nothing more than a dark red cloud of dust, a few eggs, and some gold coins.
@Mewrose walks forward to where the kangaroo once stood. “Hey, where did the boomerangs go?”
“They probably dissolved into dust, making that dark red cloud, when we finished our respective tasks,” @stefalupagus speculates.
@LilithofAlfheim squints at the horizon. “Is that another kangaroo troop heading our way?”
You all break into a run back to Habit City. Better to face your difficult tasks than take another lump to the back of the head!",
- "questKangarooBoss": "Catastrophic Kangaroo",
+ "questDysheartenerBossRageDescription": "當Habitica居民錯過他們的每日任務時,憤怒攻擊的測量儀數據會增加。如果它被填滿,失戀怪將隨機對一個Habitica店主釋放它的心碎攻擊技能,所以一定要完成你的任務!",
+ "questDysheartenerBossRageSeasonal": "`沮喪鬼用心碎攻擊! `\n\n沮喪鬼吃完我們的未完成的每日任務後,聚集力量用心碎攻擊。它尖叫,把它的多刺的前腿放到了季度商店的涼亭上!震蕩的魔力粉碎了木頭,季節魔女被眼前的悲傷所克服。\n\n快點!我們做完我們的每日任務吧,避免魔鬼又攻擊!",
+ "seasonalShopRageStrikeHeader": "季度商店被攻擊了!",
+ "seasonalShopRageStrikeLead": "Leslie 心碎了!",
+ "seasonalShopRageStrikeRecap": "2月21日,我們深愛著的季度商店店主 Leslie 因為失戀怪對市場的攻擊而奄奄一息。快,完成你的任務,打敗怪物,幫助災區重建!",
+ "marketRageStrikeHeader": "市場被攻擊了!",
+ "marketRageStrikeLead": "Alex 心碎了!",
+ "marketRageStrikeRecap": "2月28日,我們的神秘商人Alex因為失戀怪對市場的攻擊而陷入了深深的恐懼。快,完成你的任務,打敗怪物,幫助重建!",
+ "questsRageStrikeHeader": "副本商店被攻擊了!",
+ "questsRageStrikeLead": "Ian 心碎了!",
+ "questsRageStrikeRecap": "3月6日,我們的探索副本嚮導Ian因為失戀怪對副本商店的攻擊而受了深深的驚嚇。快,完成你的任務,打敗怪物,幫助重建!",
+ "questDysheartenerBossRageMarket": "`沮喪鬼用心碎攻擊! `\n\n啊!沮喪鬼吃了我們又沒有做完每日任務後,又用了心碎攻擊,把市場的牆壁和地板弄碎!石頭下落時,商人Alex看著自己被粉碎的商品哭泣。\n\n我們不能讓這種情況再次發生!做完你的每日任務,避免沮喪鬼使用其最後的打擊。",
+ "questDysheartenerBossRageQuests": "`沮喪鬼用心碎攻擊! `\n\n啊!我們又沒有做完每日任務,給沮喪鬼聚集力量給我們心愛店主最後一擊。 Ian周圍的農村被震驚心碎攻擊撕開,讓Ian驚嚇過度。我們幾乎擊敗這個怪物.... 快點!現在不要停止!",
+ "questDysheartenerDropHippogriffPet": "希望天馬(寵物)",
+ "questDysheartenerDropHippogriffMount": "希望天馬(坐騎)",
+ "dysheartenerArtCredit": "插畫作者@AnnDeLune",
+ "hugabugText": "“蟲蟲抱抱”副本集",
+ "hugabugNotes": "包括“嚴重的BUG”、“苦差事淤泥蝸牛”和“再見啦,蝴蝶”。 3月31日前可購買。",
+ "questSquirrelText": "狡猾的松鼠",
+ "questSquirrelNotes": "你迷迷糊糊地起床,發現自己睡過頭了!鬧鐘怎麼沒響? ……鬧鐘的鈴鐺怎麼被松果給卡住了?
你要做早飯,卻發現烤麵包機裡塞滿了松果。你去馬厩準備把坐騎牽出來,卻發現@Shtut 在那開不開鎖了。他往鎖孔裡一瞄:“堵鎖孔的那玩意兒是個松果吧?”
@randomdaisy 喊了起來:“哦,NO,我早知道我的寵物松鼠溜出來了,但是我沒想到它們這麼能惹禍!你能幫我趕在它們闖更多禍之前,把它們找回來嗎?”
循著這些淘氣的到處亂塞的橡果的踪跡,你抓住了這些任性的松鼠,由@Cantras 把它們安全送回家。但就在你覺得事情快搞定了時候,一個松果砸在了你的頭盔上!你抬頭看見一隻巨大的松鼠怪獸,為了守衛一大堆被它認為是自己的種子而張牙舞爪。
“我的媽呀,”@randomdaisy 輕聲說,“它一直都是保護財產的一把好手。咱們得小心行事!”你們全隊集結完畢,準備對抗這場麻煩!",
+ "questSquirrelCompletion": "你們用比較溫柔的方式,建議松鼠來一把交易,念了些安撫性的咒術,成功把松鼠從囤積的東西上面哄走了,將它領回馬厩,那邊@Shtut 剛好把鎖裡的堅果搞出來。他們在旁邊的工作台上放了幾個橡子。 “這幾個是松鼠蛋!也許你能養幾隻不會老是玩自己吃的的松鼠。”",
+ "questSquirrelBoss": "狡猾的松鼠",
+ "questSquirrelDropSquirrelEgg": "松鼠(寵物蛋)",
+ "questSquirrelUnlockText": "解鎖——可在市集中購買松鼠蛋",
+ "cuddleBuddiesText": "“擁抱朋友”副本集",
+ "cuddleBuddiesNotes": "包括“殺人兔”、“那惡毒的雪貂”和“豚鼠團伙”。 5月31日前可購買。",
+ "aquaticAmigosText": "“水生生物”副本集",
+ "aquaticAmigosNotes": "包括“魔法蠑螈”、“未完成海妖”和“章魚克蘇魯的呼喚”。 6月30日前可購買。",
+ "questSeaSerpentText": "深度危险:海蛇冲撞!",
+ "questSeaSerpentNotes": "你很庆幸自己已经完成了这么多次连击——是时候来一次旅行,去围观海马赛跑了。你在勤勉码头搭上了一班潜艇,前往拖拉城。但刚准备下潜,潜艇就被什么东西猛地撞了一下,里面的乘客们跌了个东倒西歪。@AriesFaries 叫了一声:“怎么回事啊?”
你向身旁的舷窗看去,震惊地看见一堵墙一样的巨大身躯覆盖着闪亮的鳞片,从窗外经过。“海蛇!”船长@Witticaster 的声音从对讲机里传来,“坐稳扶好,它又过来了!”你紧张地抓住了座椅的扶手,还没来得及完成的任务像走马灯一般闪过你的脑海。“也许如果我们一起努力完成它们,”你想到,“我们就能把这条海蛇引走!”",
+ "questSeaSerpentCompletion": "你全力地用完成的任務糊了海蛇一臉,它終於撤退了,消失在深淵當中。你終於到達了拖拉城,不由得鬆了口氣,然後就注意到@*~Seraphina~ 拿著3個半透明的蛋走了過來。 “這是你應得的,”她說,“你懂得怎麼處理海蛇!”你接過寵物蛋,對天發誓你要保持完成任務的決心,保證不會再陷入這種境地了。",
+ "questSeaSerpentBoss": "強大的海蛇",
+ "questSeaSerpentDropSeaSerpentEgg": "海蛇(寵物蛋)",
+ "questSeaSerpentUnlockText": "解鎖——可在市集中購買海蛇蛋",
+ "questKangarooText": "袋鼠大災變",
+ "questKangarooNotes": "好像你真的得做剩到最後的那個任務了……你也很清楚自己一直在逃避的那個任務,即使它總會在你面前晃。但是@Mewrose、@LilithofAlfheim 請你和@stefalupagus 去看個稀罕,一隊袋鼠跳過堅定稀樹草原,這誰頂得住啊? !當一隊袋鼠出現在你眼前時,你感到後腦勺上狠狠挨了一下!
甩甩腦袋從一陣眼冒金星當中緩過來,你撿起了襲擊你的凶器——一隻深紅色的迴力鏢,上面刻著你一直拖著的那個任務。你環顧四周,發現全隊都中了一樣的招數。一隻大袋鼠沖你得意地咧嘴笑著,彷彿她在嘲諷你敢不敢一鼓作氣地面對她,還有你一直害怕的那個任務!",
+ "questKangarooCompletion": "災變袋鼠“就是現在!”你示意全隊朝著袋鼠甩出迴力鏢。袋鼠每挨一下就後跳一步,直到她徹底逃跑,絕塵而去。只留下幾個蛋和一些金幣。
@Mewrose 朝著袋鼠逃跑的方向走去,問道:“嘿,那些迴力鏢哪去了?”
@stefalupagus 推測說:“它們可能隨著咱們完成各自的任務而化作煙塵了,難怪我看袋鼠逃跑的時候那一溜煙的煙好像有點紅。”
@LilithofAlfheim 瞇著眼睛,看向遠方的地平線:“那是……又一隊袋鼠衝著咱們過來了嗎?”
你們立刻頭也不回地往Habit市區跑。還是在挨當頭棒喝之前就乾完困難的任務比較好!",
+ "questKangarooBoss": "災變袋鼠",
"questKangarooDropKangarooEgg": "袋鼠(寵物蛋)",
- "questKangarooUnlockText": "Unlocks purchasable Kangaroo eggs in the Market",
- "forestFriendsText": "Forest Friends Quest Bundle",
- "forestFriendsNotes": "Contains 'The Spirit of Spring', 'The Hedgebeast', and 'The Tangle Tree'. Available until September 30.",
- "questAlligatorText": "The Insta-Gator",
- "questAlligatorNotes": "“Crikey!” exclaims @gully. “An Insta-Gator in its natural habitat! Careful, it distracts its prey with things that seem urgent THIS INSTANT, and it feeds on the unchecked Dailies that result.” You fall silent to avoid attracting its attention, but to no avail. The Insta-Gator spots you and charges! Distracting voices rise up from Swamps of Stagnation, grabbing for your attention: “Read this post! See this photo! Pay attention to me THIS INSTANT!” You scramble to mount a counterattack, completing your Dailies and bolstering your good Habits to fight off the dreaded Insta-Gator.",
- "questAlligatorCompletion": "With your attention focused on what’s important and not the Insta-Gator’s distractions, the Insta-Gator flees. Victory! “Are those eggs? They look like gator eggs to me,” asks @mfonda. “If we care for them correctly, they’ll be loyal pets or faithful steeds,” answers @UncommonCriminal, handing you three to care for. Let’s hope so, or else the Insta-Gator might make a return…",
- "questAlligatorBoss": "Insta-Gator",
- "questAlligatorDropAlligatorEgg": "Alligator (Egg)",
- "questAlligatorUnlockText": "Unlocks purchasable Alligator eggs in the Market",
- "oddballsText": "Oddballs Quest Bundle",
- "oddballsNotes": "Contains 'The Jelly Regent,' 'Escape the Cave Creature,' and 'A Tangled Yarn.' Available until December 3.",
- "birdBuddiesText": "Bird Buddies Quest Bundle",
- "birdBuddiesNotes": "Contains 'The Fowl Frost,' 'Rooster Rampage,' and 'The Push-and-Pull Peacock.' Available until December 31.",
+ "questKangarooUnlockText": "解鎖——可在市集中購買袋鼠蛋",
+ "forestFriendsText": "“林深時見”副本集",
+ "forestFriendsNotes": "包括“春之幽靈”、“巨型刺猬”和“糾結樹”。 9月30日前可購買。",
+ "questAlligatorText": "鱷魚的煽動:此刻更要緊的事",
+ "questAlligatorNotes": "“當心!”@gully 大喊道,“這裡是短吻鱷的自然棲息地,咱們附近就有一頭!小心點,它會用此時此刻似乎很要緊的事情讓它的獵物分心,然後以因此完不成的每日任務為食。”你不敢吱聲,以免吸引鱷魚的注意,但毫無用處。那頭鱷魚發現了你,朝你衝了過來!整個淤塞之沼的上空都迴響著讓你分心的聲音,吸引著你的注意力:“刷動態!那誰發的圖真有意思!群聊裡搞了個大新聞!”你努力地抵抗並反擊著,完成每日任務,加強自己的好習慣,和短吻鱷的煽動作鬥爭。",
+ "questAlligatorCompletion": "當你的注意力集中在真正重要的事情上,置短吻鱷的引誘於不顧的境地,那頭鱷魚就逃跑了。勝利啦! @mfonda 問:“這些是蛋嗎?我覺得看起來像鱷魚蛋。”@UncommonCriminal 答:“如果咱們好好照顧它們,它們能長成忠於我們的寵物,或者可靠的坐騎。”他遞給你3個讓你來養的蛋。但願如此吧,否則養不好的話可能又要變成煽動人分心的鱷魚了……",
+ "questAlligatorBoss": "即刻教唆犯",
+ "questAlligatorDropAlligatorEgg": "鱷魚(寵物蛋)",
+ "questAlligatorUnlockText": "解鎖——可在市集中購買鱷魚蛋",
+ "oddballsText": "“神奇小球”副本集",
+ "oddballsNotes": "包括“果凍攝政王”、“逃離山洞生物”和“一團纏繞的毛線”。 2月3日前可購買。",
+ "birdBuddiesText": "“禽鳥”副本集",
+ "birdBuddiesNotes": "包括“冰霜禽類”、“狂暴公雞”和“拖拉孔雀”。12月31日之前可購買。",
"questVelociraptorText": "迅猛龍王",
"questVelociraptorNotes": "你正在和@*~Seraphina~*、@Procyon P還有@Lilith of Alfheim在Stoïkalm Steppes的湖畔享用蜂蜜蛋糕。 突然間,一陣哀傷的聲音打斷了你們的野餐。
我的習慣給了我重擊,我完成不了我的每日任務,
全都結束了,只剩下了自我懷疑和困惑。
在我的巔峰期時,我的效率飛快。
但現在我只能讓我的期限過期。
@*~Seraphina~*從草叢裡探頭出來看。\"那是迅猛龍王。但牠看起來......很懊惱的樣子?\"
你握緊了拳頭,充滿了決心: \"現在能做的只有一件事———Rap battle time!\"",
"questVelociraptorCompletion": "你從草叢跳出來,並站在迅猛龍王面前。
看這兒,迅猛龍王,你沒有時間休息,
你可是打擊壞習慣的好手阿!
別為一天的損失唉聲嘆氣了,
給我像個高手般的解決你的待辦事項!
對自己重新充滿了自信,牠邁著有力的步伐,迎向全新的一天,並在原地留下了三顆蛋做為謝禮。",
"questVelociraptorBoss": "迅猛龍王",
"questVelociraptorDropVelociraptorEgg": "迅猛龍 (蛋)",
"questVelociraptorUnlockText": "解鎖迅猛龍蛋購買功能",
- "mythicalMarvelsText": "\"神話傳說\"系列任務"
+ "mythicalMarvelsText": "\"神話傳說\"系列任務",
+ "questRobotCompletion": "@Rev和“問責好友”將最後一個螺栓固定到位時,時間機器嗡嗡作響。 @FolleMente和@McCoyly跳上船。 “感謝你的協助!我們將來會見!這些應該可以幫助你進行下一個發明!”這樣,時空穿越者消失了,但是在舊的生產力穩定器的殘骸中,他們留下了三個發條裝置蛋。也許這將是新的“問責好友”生產線的關鍵組成部分!",
+ "questRobotNotes": "在Max Capacity實驗室中,@Rev正在對他們的最新發明,機器人“問責好友”,進行最後的改進。突然,一輛奇怪的金屬車突然冒出一團煙霧,距離機器人的波動探測器只有幾英寸!它的乘員是兩個穿著銀色衣服的人物。他們脫下了太空頭盔,並以@FolleMente和@McCoyly的身份露面。
“我假設我們的生產力實施存在異常。”@FolleMente羞怯地說。
@McCoyly交叉雙臂。 “這意味著他們忽略了完成每日任務,讓我們的生產力穩定劑的瓦解。這是時間旅行的重要組成部分,需要一致性才能正常工作。我們的成就推動著我們穿越時空的運動!我沒有時間進一步解釋,@Rev。你將在37年後發現它,或者你的盟友神秘的時空穿越者可以滿足你的需求。現在,你可以幫助我們修復我們的時光機嗎?”",
+ "questRobotText": "神奇的機械奇蹟!",
+ "questSilverUnlockText": "解鎖——可在市集中購買銀孵化藥水",
+ "questRobotCollectBolts": "螺栓",
+ "questRobotCollectGears": "齒輪",
+ "questRobotCollectSprings": "彈簧",
+ "questRobotDropRobotEgg": "機器人(寵物蛋)",
+ "questRobotUnlockText": "解鎖——可在市集中購買機器人",
+ "rockingReptilesText": "“搖擺的爬行動物”副本集",
+ "rockingReptilesNotes": "包含“The Insta-Gator”,“分心蛇”,以及“The Veloci-Rapper”副本。 9月30日前有效。",
+ "delightfulDinosText": "“愉快的恐龍”副本集",
+ "delightfulDinosNotes": "包含“翼龍”,“那隻跺腳的三角龍”,以及“出土恐龍化石”副本。 11月30日前有效。",
+ "questAmberText": "琥珀聯盟",
+ "questAmberNotes": "當@Vikte衝進門,興奮地告訴你有關任務森林中隱藏的另一種魔術孵化藥水的謠言時,你正與@beffymaroo和@ -Tyr-坐在酒館。完成每日任務後,你們三個立即同意幫助@Vikte進行搜索。
畢竟,在一次小小的冒險中會有什麼害處?你任務森林走了很多小時後,你開始後悔加入這麼愚蠢的追逐。你將要回家,但是你聽到一聲驚訝叫聲。你轉身看到一隻巨大的蜥蜴,上面閃閃發光的琥珀色鱗片纏繞在樹上,用爪子抓著@Vikte。 @beffymaroo伸手去拿劍。
“等等!” @-Tyr-喊叫。 “是琥珀蜥蜴!她並不危險,只是愛纏人!”",
+ "questAmberCompletion": "“琥珀蜥蜴?”@-Tyr-平心靜氣的說。 “你能放手@Vikte嗎?我不認為他們喜歡高高在上。”
琥珀蜥蜴的琥珀色的皮膚變紅色。她輕輕將@Vikte降到地面。 “對不起!我很久沒有客人,我已經忘記註意我的舉止!”她滑行向前向你打招呼,然後消失在樹屋裡,並帶著幾個琥珀孵化藥水作為禮物送給你!
“孵化藥水!”@Vikte倒吸了一口氣。
“哦,這些舊東西?” 琥珀蜥蜴的舌頭如她所想的那樣顫悠。 “這個怎麼樣? 如果您答應經常拜訪我,我將為您提供全部的孵化藥水...”
因此,你離開任務森林,興奮地向所有人介紹新藥水-和你的新朋友!",
+ "questAmberBoss": "琥珀蜥蜴",
+ "questAmberDropAmberPotion": "琥珀孵化藥水",
+ "questAmberUnlockText": "解鎖——可在市集中購買琥珀孵化藥水",
+ "questSilverDropSilverPotion": "銀孵化藥水",
+ "questSilverCollectSilverIngots": "銀錠",
+ "questSilverCollectMoonRunes": "月亮盧恩",
+ "questSilverCollectCancerRunes": "巨蟹座盧恩",
+ "questSilverCompletion": "你鑽研了。你挖掘了。你清除了。你從地下城出來,滿是盧恩和銀條。雖然你的身體沾滿了污泥,但你興高采烈。你將返回Habit城,並開始在煉金術實驗室工作。你和@starsystemic在@Edge的仔細監督下,遵循@QuartzFox發現的公式。最後,在大量的油光和煙霧中,你的混合物變成了孵化藥!
@Edge一邊混合物入小瓶,一邊微笑。 “讓我們嘗試一下,好嗎?你們有蛋讓我們嘗試好嗎?”
你趕到馬厩,想知道還有什麼秘密尚未發現...",
+ "questSilverNotes": "青銅孵化藥水的最新發現引起了Habitica的廣泛關注。我們可以使用更亮的金屬藥水嗎?你跟@QuartzFox和@starsystemic去Habit城的公共圖書館,收集了大量有關煉金術的書籍以供學習。
經過很多小時的艱苦勞動後,@QuartzFox發出了不適合圖書館的歡呼聲。 “啊哈! 我找到了!”你急忙去看看。 “我們可以用巨蟹座盧恩製成銀孵化藥水,將其溶解在融化了火焰的純銀中,並註入月亮盧恩的力量。”
“我們將需要很多這樣的成分,” @starsystemic說。 “萬一嚐試出錯。”
“只有一個地方可以找到大量的這種隨機製作的材料,” @Edge雙臂交叉地站在堆疊的陰影下,說道。他們一直在那兒嗎? “差事地下城。 我們走吧。”",
+ "questSilverText": "銀溶液",
+ "questDolphinUnlockText": "解鎖——可在市集中購買海豚蛋",
+ "questDolphinDropDolphinEgg": "海豚(寵物蛋)",
+ "questDolphinCompletion": "你與海豚的意誌之戰使你疲倦而又勝利。在你的決心和鼓勵下,@mewrose,@khdarkwolf和@confusedcicada振作起來,擺脫了海豚的陰險心靈感應。你們四個人始終如一地堅持自己的每日任務,堅強的習慣和完成的待辦事項,以一種成就感來掩護自己,直到它默默地承認你的成功而睜開眼睛。這樣,它就滾落回到海灣。當您進行高昂的交易和祝賀時,你會注意到三個蛋被沖上岸。
“嗯,我想知道我們可以用這些蛋做什麼。” @khdarkwolf沉思。",
+ "questDolphinBoss": "懷疑海豚",
+ "questDolphinNotes": "你在未完成海灣漫步,思考著面前艱鉅的工作。水中濺起的水吸引了你的眼球。宏偉的海豚在海浪上盤旋。陽光照耀著它的鰭和尾巴。但是等等...那不是陽光,海豚也不會掉回海裡。它盯著@khdarkwolf。
“我永遠都不會完成所有這些日常工作。” @khdarkwolf說。
海豚把目光投向他們時,@confusedcicada說:“我不夠出色,無法實現自己的目標。”
“為什麼我還要又試呢?” @mewrose問,在野獸的目光下凋謝。在懷疑的眼光下,你的思想開始沉澱。你開始變得堅強; 有人必須擊敗這個生物,而這個人將是你!",
+ "questDolphinText": "懷疑海豚",
+ "questBronzeUnlockText": "解鎖——可在市集中購買青銅孵化藥水",
+ "questBronzeDropBronzePotion": "青銅孵化藥水",
+ "questBronzeBoss": "青銅甲蟲",
+ "questBronzeCompletion": "“好吧,戰士!”甲蟲在落地時說道。她在笑嗎?這些下頜骨很難分辨。 “你真的賺了這些魔藥!”
“哦,哇,我們從未贏得過像這樣的獎勵,因為之前贏得了戰鬥!” @UncommonCriminal一邊說,一邊轉過手中的閃閃發光的瓶子。 “我們去孵化我們的新寵物吧!”",
+ "questBronzeNotes": "在任務之間的休息時,你和一些朋友在任務森林小徑上漫步。你遇到一個大的有空心木,裡面的發光吸引了你的注意。
哦!這是孵化藥水的儲藏!當閃閃發光的青銅液體在瓶子中輕輕旋轉,@Hachiseiko伸手拿起瓶子對它進行檢查。
“停止!” 嘶嘶聲從你身後傳來。這是一隻巨大的甲蟲,有著閃閃發光的青銅甲殼,以戰鬥的姿勢抬起爪狀的腳。 “那些是我的魔藥,如果你想賺錢,就必須在戰鬥證明自己!”",
+ "questBronzeText": "青銅甲蟲戰鬥",
+ "mythicalMarvelsNotes": "包含“說服獨角獸女王”、“火紅的獅鷲”、“深度危險:海蛇衝撞!”,有效期到2月28日。",
+ "evilSantaAddlNotes": "注意,聖誕陷阱獵手和找熊崽獎勵可堆疊的副本成就,但會獎勵的稀有寵物和坐騎只能添加到你的馬厩一次。"
}
diff --git a/website/common/locales/zh_TW/rebirth.json b/website/common/locales/zh_TW/rebirth.json
index 65ea7116d3..1a5fe958fd 100644
--- a/website/common/locales/zh_TW/rebirth.json
+++ b/website/common/locales/zh_TW/rebirth.json
@@ -21,7 +21,7 @@
"rebirthOrb": "達到等級 <%= level %> 後即可使用重生球並開始新的冒險。",
"rebirthOrb100": "使用重生球在達到 100 級或更高級別後重新開始。",
"rebirthOrbNoLevel": "使用了重生球來重生。",
- "rebirthPop": "立即重置您的角色回到 1 等戰士,同時保留成就、收集物品、和裝備。您的任務和歷史資訊都將被保留,但將會被重置為黃色。您的連擊紀錄將會被刪除。您擁有的金幣、經驗、魔力、和技能都將被刪除。上述內容都將立即生效。更多訊息請查看 wiki 的重生球頁面。",
+ "rebirthPop": "立即重置你的角色成為1級戰士,同時保留成就、物品、裝備。將保留你的任務和歷史,但重置為黃色;移除挑戰任務和團隊套餐任務之外的任務歷史;移除金幣、經驗值以及魔法值和技能。上述內容將立即生效。更多信息請查看wiki重生球頁面。",
"rebirthName": "重生球",
"reborn": "重生球,最高等級 <%= reLevel %>",
"confirmReborn": "你確定嗎?",
diff --git a/website/common/locales/zh_TW/settings.json b/website/common/locales/zh_TW/settings.json
index 7508266b9b..a9115fa809 100644
--- a/website/common/locales/zh_TW/settings.json
+++ b/website/common/locales/zh_TW/settings.json
@@ -120,7 +120,7 @@
"giftedSubscriptionFull": "哈囉 <%= username %>,<%= sender %> 送您 <%= monthCount %> 個月的訂閱資格!",
"giftedSubscriptionWinterPromo": "哈囉 <%= username %>,您收到了 <%= monthCount %> 個月的訂閱資格以作為我們的假期送禮升級活動的一部份!",
"invitedParty": "您受邀加入隊伍",
- "invitedGuild": "您受邀加入公會",
+ "invitedGuild": "您收到了加入公會的邀請",
"importantAnnouncements": "提醒:登入以完成任務以及獲得獎勵",
"weeklyRecaps": "您的帳號上星期的活動彙整 (注意:這個彙整目前因為伺服器效能問題而暫時關閉,但是我們會盡快修復並再一次定期發送電子郵件!)",
"onboarding": "引導設定您的 Habitica 帳號",
@@ -210,5 +210,7 @@
"suggestMyUsername": "建議我的使用者名稱",
"mentioning": "回覆",
"chatExtensionDesc": "Habitica 的聊天室擴充功能會在 habitica.com 的網頁附加聊天視窗。讓用戶在酒館、加入的隊伍或公會聊天。",
- "chatExtension": "Chrome 聊天室擴充功能與Firefox 聊天室附加元件"
+ "chatExtension": "Chrome 聊天室擴充功能與Firefox 聊天室附加元件",
+ "onlyPrivateSpaces": "只在私人空間",
+ "everywhere": "每個地方"
}
diff --git a/website/common/locales/zh_TW/subscriber.json b/website/common/locales/zh_TW/subscriber.json
index 942981193e..b0247ef5c8 100644
--- a/website/common/locales/zh_TW/subscriber.json
+++ b/website/common/locales/zh_TW/subscriber.json
@@ -226,5 +226,8 @@
"mysterySet201906": "親切錦鯉套裝",
"mysterySet201907": "海灘夥伴套裝",
"mysterySet201909": "友善橡實套裝",
- "mysterySet201910": "秘匿火焰套裝"
+ "mysterySet201910": "秘匿火焰套裝",
+ "mysterySet202001": "寓言的狐狸套裝",
+ "mysterySet201912": "北極小精靈套裝",
+ "mysterySet201911": "水晶魔術師套裝"
}
diff --git a/website/common/script/content/appearance/sets.js b/website/common/script/content/appearance/sets.js
index 128a2c595f..0fce4e74b7 100644
--- a/website/common/script/content/appearance/sets.js
+++ b/website/common/script/content/appearance/sets.js
@@ -17,7 +17,7 @@ export default prefill({
setPrice: 5, availableFrom: '2019-10-08', availableUntil: '2019-11-02', text: t('hauntedColors'),
},
winteryHairColors: {
- setPrice: 5, availableFrom: '2019-01-08', availableUntil: '2019-02-02', text: t('winteryColors'),
+ setPrice: 5, availableFrom: '2020-01-10', availableUntil: '2020-02-02', text: t('winteryColors'),
},
rainbowSkins: { setPrice: 5, text: t('rainbowSkins') },
animalSkins: { setPrice: 5, text: t('animalSkins') },
@@ -32,6 +32,6 @@ export default prefill({
setPrice: 5, availableFrom: '2019-07-02', availableUntil: '2019-08-02', text: t('splashySkins'),
},
winterySkins: {
- setPrice: 5, availableFrom: '2019-01-08', availableUntil: '2019-02-02', text: t('winterySkins'),
+ setPrice: 5, availableFrom: '2020-01-10', availableUntil: '2020-02-02', text: t('winterySkins'),
},
});
diff --git a/website/common/script/content/loginIncentives.js b/website/common/script/content/loginIncentives.js
index c63b8b4fdd..4a53cd22d4 100644
--- a/website/common/script/content/loginIncentives.js
+++ b/website/common/script/content/loginIncentives.js
@@ -9,7 +9,10 @@ export default function getLoginIncentives (api) {
rewardKey: ['armor_special_bardRobes'],
reward: [api.gear.flat.armor_special_bardRobes],
assignReward: function assignReward (user) {
- user.items.gear.owned.armor_special_bardRobes = true; // eslint-disable-line camelcase
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ armor_special_bardRobes: true,
+ }; // eslint-disable-line camelcase
if (user.markModified) user.markModified('items.gear.owned');
},
},
@@ -30,7 +33,10 @@ export default function getLoginIncentives (api) {
rewardKey: ['head_special_bardHat'],
reward: [api.gear.flat.head_special_bardHat],
assignReward: function assignReward (user) {
- user.items.gear.owned.head_special_bardHat = true; // eslint-disable-line camelcase
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ head_special_bardHat: true,
+ }; // eslint-disable-line camelcase
if (user.markModified) user.markModified('items.gear.owned');
},
},
@@ -39,7 +45,10 @@ export default function getLoginIncentives (api) {
reward: [api.hatchingPotions.RoyalPurple],
assignReward: function assignReward (user) {
if (!user.items.hatchingPotions.RoyalPurple) user.items.hatchingPotions.RoyalPurple = 0;
- user.items.hatchingPotions.RoyalPurple += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ RoyalPurple: user.items.hatchingPotions.RoyalPurple + 1,
+ };
if (user.markModified) user.markModified('items.hatchingPotions');
},
},
@@ -48,11 +57,20 @@ export default function getLoginIncentives (api) {
reward: [api.food.Chocolate, api.food.Meat, api.food.CottonCandyPink],
assignReward: function assignReward (user) {
if (!user.items.food.Chocolate) user.items.food.Chocolate = 0;
- user.items.food.Chocolate += 1;
+ user.items.food = {
+ ...user.items.food,
+ Chocolate: user.items.food.Chocolate + 1,
+ };
if (!user.items.food.Meat) user.items.food.Meat = 0;
- user.items.food.Meat += 1;
+ user.items.food = {
+ ...user.items.food,
+ Meat: user.items.food.Meat + 1,
+ };
if (!user.items.food.CottonCandyPink) user.items.food.CottonCandyPink = 0;
- user.items.food.CottonCandyPink += 1;
+ user.items.food = {
+ ...user.items.food,
+ CottonCandyPink: user.items.food.CottonCandyPink + 1,
+ };
if (user.markModified) user.markModified('items.food');
},
},
@@ -61,7 +79,10 @@ export default function getLoginIncentives (api) {
reward: [api.quests.moon1],
assignReward: function assignReward (user) {
if (!user.items.quests.moon1) user.items.quests.moon1 = 0;
- user.items.quests.moon1 += 1;
+ user.items.quests = {
+ ...user.items.quests,
+ moon1: user.items.quests.moon1 + 1,
+ };
if (user.markModified) user.markModified('items.quests');
},
},
@@ -70,7 +91,10 @@ export default function getLoginIncentives (api) {
reward: [api.hatchingPotions.RoyalPurple],
assignReward: function assignReward (user) {
if (!user.items.hatchingPotions.RoyalPurple) user.items.hatchingPotions.RoyalPurple = 0;
- user.items.hatchingPotions.RoyalPurple += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ RoyalPurple: user.items.hatchingPotions.RoyalPurple + 1,
+ };
if (user.markModified) user.markModified('items.hatchingPotions');
},
},
@@ -79,11 +103,20 @@ export default function getLoginIncentives (api) {
reward: [api.food.Strawberry, api.food.Potatoe, api.food.CottonCandyBlue],
assignReward: function assignReward (user) {
if (!user.items.food.Strawberry) user.items.food.Strawberry = 0;
- user.items.food.Strawberry += 1;
+ user.items.food = {
+ ...user.items.food,
+ Strawberry: user.items.food.Strawberry + 1,
+ };
if (!user.items.food.Potatoe) user.items.food.Potatoe = 0;
- user.items.food.Potatoe += 1;
+ user.items.food = {
+ ...user.items.food,
+ Potatoe: user.items.food.Potatoe + 1,
+ };
if (!user.items.food.CottonCandyBlue) user.items.food.CottonCandyBlue = 0;
- user.items.food.CottonCandyBlue += 1;
+ user.items.food = {
+ ...user.items.food,
+ CottonCandyBlue: user.items.food.CottonCandyBlue + 1,
+ };
if (user.markModified) user.markModified('items.food');
},
},
@@ -91,7 +124,10 @@ export default function getLoginIncentives (api) {
rewardKey: ['weapon_special_bardInstrument'],
reward: [api.gear.flat.weapon_special_bardInstrument],
assignReward: function assignReward (user) {
- user.items.gear.owned.weapon_special_bardInstrument = true; // eslint-disable-line camelcase
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ weapon_special_bardInstrument: true,
+ }; // eslint-disable-line camelcase
if (user.markModified) user.markModified('items.gear.owned');
},
},
@@ -100,7 +136,10 @@ export default function getLoginIncentives (api) {
reward: [api.quests.moon2],
assignReward: function assignReward (user) {
if (!user.items.quests.moon2) user.items.quests.moon2 = 0;
- user.items.quests.moon2 += 1;
+ user.items.quests = {
+ ...user.items.quests,
+ moon2: user.items.quests.moon2 + 1,
+ };
if (user.markModified) user.markModified('items.quests');
},
},
@@ -109,7 +148,10 @@ export default function getLoginIncentives (api) {
reward: [api.hatchingPotions.RoyalPurple],
assignReward: function assignReward (user) {
if (!user.items.hatchingPotions.RoyalPurple) user.items.hatchingPotions.RoyalPurple = 0;
- user.items.hatchingPotions.RoyalPurple += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ RoyalPurple: user.items.hatchingPotions.RoyalPurple + 1,
+ };
if (user.markModified) user.markModified('items.hatchingPotions');
},
},
@@ -118,13 +160,25 @@ export default function getLoginIncentives (api) {
reward: [api.food.Fish, api.food.Milk, api.food.RottenMeat, api.food.Honey],
assignReward: function assignReward (user) {
if (!user.items.food.Fish) user.items.food.Fish = 0;
- user.items.food.Fish += 1;
+ user.items.food = {
+ ...user.items.food,
+ Fish: user.items.food.Fish + 1,
+ };
if (!user.items.food.Milk) user.items.food.Milk = 0;
- user.items.food.Milk += 1;
+ user.items.food = {
+ ...user.items.food,
+ Milk: user.items.food.Milk + 1,
+ };
if (!user.items.food.RottenMeat) user.items.food.RottenMeat = 0;
- user.items.food.RottenMeat += 1;
+ user.items.food = {
+ ...user.items.food,
+ RottenMeat: user.items.food.RottenMeat + 1,
+ };
if (!user.items.food.Honey) user.items.food.Honey = 0;
- user.items.food.Honey += 1;
+ user.items.food = {
+ ...user.items.food,
+ Honey: user.items.food.Honey + 1,
+ };
if (user.markModified) user.markModified('items.food');
},
},
@@ -133,7 +187,10 @@ export default function getLoginIncentives (api) {
reward: [api.hatchingPotions.RoyalPurple],
assignReward: function assignReward (user) {
if (!user.items.hatchingPotions.RoyalPurple) user.items.hatchingPotions.RoyalPurple = 0;
- user.items.hatchingPotions.RoyalPurple += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ RoyalPurple: user.items.hatchingPotions.RoyalPurple + 1,
+ };
if (user.markModified) user.markModified('items.hatchingPotions');
},
},
@@ -142,7 +199,10 @@ export default function getLoginIncentives (api) {
reward: [api.quests.moon3],
assignReward: function assignReward (user) {
if (!user.items.quests.moon3) user.items.quests.moon3 = 0;
- user.items.quests.moon3 += 1;
+ user.items.quests = {
+ ...user.items.quests,
+ moon3: user.items.quests.moon3 + 1,
+ };
if (user.markModified) user.markModified('items.quests');
},
},
@@ -151,7 +211,10 @@ export default function getLoginIncentives (api) {
reward: [api.hatchingPotions.RoyalPurple],
assignReward: function assignReward (user) {
if (!user.items.hatchingPotions.RoyalPurple) user.items.hatchingPotions.RoyalPurple = 0;
- user.items.hatchingPotions.RoyalPurple += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ RoyalPurple: user.items.hatchingPotions.RoyalPurple + 1,
+ };
if (user.markModified) user.markModified('items.hatchingPotions');
},
},
@@ -160,7 +223,10 @@ export default function getLoginIncentives (api) {
reward: [api.food.Saddle],
assignReward: function assignReward (user) {
if (!user.items.food.Saddle) user.items.food.Saddle = 0;
- user.items.food.Saddle += 1;
+ user.items.food = {
+ ...user.items.food,
+ Saddle: user.items.food.Saddle + 1,
+ };
if (user.markModified) user.markModified('items.food');
},
},
@@ -169,7 +235,10 @@ export default function getLoginIncentives (api) {
reward: [api.hatchingPotions.RoyalPurple],
assignReward: function assignReward (user) {
if (!user.items.hatchingPotions.RoyalPurple) user.items.hatchingPotions.RoyalPurple = 0;
- user.items.hatchingPotions.RoyalPurple += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ RoyalPurple: user.items.hatchingPotions.RoyalPurple + 1,
+ };
if (user.markModified) user.markModified('items.hatchingPotions');
},
},
@@ -177,7 +246,10 @@ export default function getLoginIncentives (api) {
rewardKey: ['slim_armor_special_pageArmor'],
reward: [api.gear.flat.armor_special_pageArmor],
assignReward: function assignReward (user) {
- user.items.gear.owned.armor_special_pageArmor = true; // eslint-disable-line camelcase
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ armor_special_pageArmor: true,
+ }; // eslint-disable-line camelcase
if (user.markModified) user.markModified('items.gear.owned');
},
},
@@ -186,7 +258,10 @@ export default function getLoginIncentives (api) {
reward: [api.hatchingPotions.RoyalPurple],
assignReward: function assignReward (user) {
if (!user.items.hatchingPotions.RoyalPurple) user.items.hatchingPotions.RoyalPurple = 0;
- user.items.hatchingPotions.RoyalPurple += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ RoyalPurple: user.items.hatchingPotions.RoyalPurple + 1,
+ };
if (user.markModified) user.markModified('items.hatchingPotions');
},
},
@@ -194,7 +269,10 @@ export default function getLoginIncentives (api) {
rewardKey: ['head_special_pageHelm'],
reward: [api.gear.flat.head_special_pageHelm],
assignReward: function assignReward (user) {
- user.items.gear.owned.head_special_pageHelm = true; // eslint-disable-line camelcase
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ head_special_pageHelm: true,
+ }; // eslint-disable-line camelcase
if (user.markModified) user.markModified('items.gear.owned');
},
},
@@ -203,7 +281,10 @@ export default function getLoginIncentives (api) {
reward: [api.hatchingPotions.RoyalPurple],
assignReward: function assignReward (user) {
if (!user.items.hatchingPotions.RoyalPurple) user.items.hatchingPotions.RoyalPurple = 0;
- user.items.hatchingPotions.RoyalPurple += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ RoyalPurple: user.items.hatchingPotions.RoyalPurple + 1,
+ };
if (user.markModified) user.markModified('items.hatchingPotions');
},
},
@@ -211,7 +292,10 @@ export default function getLoginIncentives (api) {
rewardKey: ['weapon_special_pageBanner'],
reward: [api.gear.flat.weapon_special_pageBanner],
assignReward: function assignReward (user) {
- user.items.gear.owned.weapon_special_pageBanner = true; // eslint-disable-line camelcase
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ weapon_special_pageBanner: true,
+ }; // eslint-disable-line camelcase
if (user.markModified) user.markModified('items.gear.owned');
},
},
@@ -220,7 +304,10 @@ export default function getLoginIncentives (api) {
reward: [api.hatchingPotions.RoyalPurple],
assignReward: function assignReward (user) {
if (!user.items.hatchingPotions.RoyalPurple) user.items.hatchingPotions.RoyalPurple = 0;
- user.items.hatchingPotions.RoyalPurple += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ RoyalPurple: user.items.hatchingPotions.RoyalPurple + 1,
+ };
if (user.markModified) user.markModified('items.hatchingPotions');
},
},
@@ -228,7 +315,10 @@ export default function getLoginIncentives (api) {
rewardKey: ['shield_special_diamondStave'],
reward: [api.gear.flat.shield_special_diamondStave],
assignReward: function assignReward (user) {
- user.items.gear.owned.shield_special_diamondStave = true; // eslint-disable-line camelcase
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ shield_special_diamondStave: true,
+ }; // eslint-disable-line camelcase
if (user.markModified) user.markModified('items.gear.owned');
},
},
@@ -237,7 +327,10 @@ export default function getLoginIncentives (api) {
reward: [api.hatchingPotions.RoyalPurple],
assignReward: function assignReward (user) {
if (!user.items.hatchingPotions.RoyalPurple) user.items.hatchingPotions.RoyalPurple = 0;
- user.items.hatchingPotions.RoyalPurple += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ RoyalPurple: user.items.hatchingPotions.RoyalPurple + 1,
+ };
if (user.markModified) user.markModified('items.hatchingPotions');
},
},
@@ -246,7 +339,10 @@ export default function getLoginIncentives (api) {
reward: [api.food.Saddle],
assignReward: function assignReward (user) {
if (!user.items.food.Saddle) user.items.food.Saddle = 0;
- user.items.food.Saddle += 1;
+ user.items.food = {
+ ...user.items.food,
+ Saddle: user.items.food.Saddle + 1,
+ };
if (user.markModified) user.markModified('items.food');
},
},
@@ -255,7 +351,10 @@ export default function getLoginIncentives (api) {
reward: [api.hatchingPotions.RoyalPurple],
assignReward: function assignReward (user) {
if (!user.items.hatchingPotions.RoyalPurple) user.items.hatchingPotions.RoyalPurple = 0;
- user.items.hatchingPotions.RoyalPurple += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ RoyalPurple: user.items.hatchingPotions.RoyalPurple + 1,
+ };
if (user.markModified) user.markModified('items.hatchingPotions');
},
},
@@ -268,23 +367,50 @@ export default function getLoginIncentives (api) {
rewardName: 'oneOfAllPetEggs',
assignReward: function assignReward (user) {
if (!user.items.eggs.BearCub) user.items.eggs.BearCub = 0;
- user.items.eggs.BearCub += 1;
+ user.items.eggs = {
+ ...user.items.eggs,
+ BearCub: user.items.eggs.BearCub + 1,
+ };
if (!user.items.eggs.Cactus) user.items.eggs.Cactus = 0;
- user.items.eggs.Cactus += 1;
+ user.items.eggs = {
+ ...user.items.eggs,
+ Cactus: user.items.eggs.Cactus + 1,
+ };
if (!user.items.eggs.Dragon) user.items.eggs.Dragon = 0;
- user.items.eggs.Dragon += 1;
+ user.items.eggs = {
+ ...user.items.eggs,
+ Dragon: user.items.eggs.Dragon + 1,
+ };
if (!user.items.eggs.FlyingPig) user.items.eggs.FlyingPig = 0;
- user.items.eggs.FlyingPig += 1;
+ user.items.eggs = {
+ ...user.items.eggs,
+ FlyingPig: user.items.eggs.FlyingPig + 1,
+ };
if (!user.items.eggs.Fox) user.items.eggs.Fox = 0;
- user.items.eggs.Fox += 1;
+ user.items.eggs = {
+ ...user.items.eggs,
+ Fox: user.items.eggs.Fox + 1,
+ };
if (!user.items.eggs.LionCub) user.items.eggs.LionCub = 0;
- user.items.eggs.LionCub += 1;
+ user.items.eggs = {
+ ...user.items.eggs,
+ LionCub: user.items.eggs.LionCub + 1,
+ };
if (!user.items.eggs.PandaCub) user.items.eggs.PandaCub = 0;
- user.items.eggs.PandaCub += 1;
+ user.items.eggs = {
+ ...user.items.eggs,
+ PandaCub: user.items.eggs.PandaCub + 1,
+ };
if (!user.items.eggs.TigerCub) user.items.eggs.TigerCub = 0;
- user.items.eggs.TigerCub += 1;
+ user.items.eggs = {
+ ...user.items.eggs,
+ TigerCub: user.items.eggs.TigerCub + 1,
+ };
if (!user.items.eggs.Wolf) user.items.eggs.Wolf = 0;
- user.items.eggs.Wolf += 1;
+ user.items.eggs = {
+ ...user.items.eggs,
+ Wolf: user.items.eggs.Wolf + 1,
+ };
if (user.markModified) user.markModified('items.eggs');
},
},
@@ -293,7 +419,10 @@ export default function getLoginIncentives (api) {
reward: [api.hatchingPotions.RoyalPurple],
assignReward: function assignReward (user) {
if (!user.items.hatchingPotions.RoyalPurple) user.items.hatchingPotions.RoyalPurple = 0;
- user.items.hatchingPotions.RoyalPurple += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ RoyalPurple: user.items.hatchingPotions.RoyalPurple + 1,
+ };
if (user.markModified) user.markModified('items.hatchingPotions');
},
},
@@ -309,29 +438,59 @@ export default function getLoginIncentives (api) {
rewardName: 'oneOfAllHatchingPotions',
assignReward: function assignReward (user) {
if (!user.items.hatchingPotions.Base) user.items.hatchingPotions.Base = 0;
- user.items.hatchingPotions.Base += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ Base: user.items.hatchingPotions.Base + 1,
+ };
if (!user.items.hatchingPotions.CottonCandyBlue) {
user.items.hatchingPotions.CottonCandyBlue = 0;
}
- user.items.hatchingPotions.CottonCandyBlue += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ CottonCandyBlue: user.items.hatchingPotions.CottonCandyBlue + 1,
+ };
if (!user.items.hatchingPotions.CottonCandyPink) {
user.items.hatchingPotions.CottonCandyPink = 0;
}
- user.items.hatchingPotions.CottonCandyPink += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ CottonCandyPink: user.items.hatchingPotions.CottonCandyPink + 1,
+ };
if (!user.items.hatchingPotions.Desert) user.items.hatchingPotions.Desert = 0;
- user.items.hatchingPotions.Desert += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ Desert: user.items.hatchingPotions.Desert + 1,
+ };
if (!user.items.hatchingPotions.Golden) user.items.hatchingPotions.Golden = 0;
- user.items.hatchingPotions.Golden += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ Golden: user.items.hatchingPotions.Golden + 1,
+ };
if (!user.items.hatchingPotions.Red) user.items.hatchingPotions.Red = 0;
- user.items.hatchingPotions.Red += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ Red: user.items.hatchingPotions.Red + 1,
+ };
if (!user.items.hatchingPotions.Shade) user.items.hatchingPotions.Shade = 0;
- user.items.hatchingPotions.Shade += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ Shade: user.items.hatchingPotions.Shade + 1,
+ };
if (!user.items.hatchingPotions.Skeleton) user.items.hatchingPotions.Skeleton = 0;
- user.items.hatchingPotions.Skeleton += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ Skeleton: user.items.hatchingPotions.Skeleton + 1,
+ };
if (!user.items.hatchingPotions.White) user.items.hatchingPotions.White = 0;
- user.items.hatchingPotions.White += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ White: user.items.hatchingPotions.White + 1,
+ };
if (!user.items.hatchingPotions.Zombie) user.items.hatchingPotions.Zombie = 0;
- user.items.hatchingPotions.Zombie += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ Zombie: user.items.hatchingPotions.Zombie + 1,
+ };
if (user.markModified) user.markModified('items.hatchingPotions');
},
},
@@ -340,7 +499,10 @@ export default function getLoginIncentives (api) {
reward: [api.hatchingPotions.RoyalPurple],
assignReward: function assignReward (user) {
if (!user.items.hatchingPotions.RoyalPurple) user.items.hatchingPotions.RoyalPurple = 0;
- user.items.hatchingPotions.RoyalPurple += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ RoyalPurple: user.items.hatchingPotions.RoyalPurple + 1,
+ };
if (user.markModified) user.markModified('items.hatchingPotions');
},
},
@@ -354,25 +516,55 @@ export default function getLoginIncentives (api) {
rewardName: 'threeOfEachFood',
assignReward: function assignReward (user) {
if (!user.items.food.Meat) user.items.food.Meat = 0;
- user.items.food.Meat += 3;
+ user.items.food = {
+ ...user.items.food,
+ Meat: user.items.food.Meat + 3,
+ };
if (!user.items.food.CottonCandyBlue) user.items.food.CottonCandyBlue = 0;
- user.items.food.CottonCandyBlue += 3;
+ user.items.food = {
+ ...user.items.food,
+ CottonCandyBlue: user.items.food.CottonCandyBlue + 3,
+ };
if (!user.items.food.CottonCandyPink) user.items.food.CottonCandyPink = 0;
- user.items.food.CottonCandyPink += 3;
+ user.items.food = {
+ ...user.items.food,
+ CottonCandyPink: user.items.food.CottonCandyPink + 3,
+ };
if (!user.items.food.Potatoe) user.items.food.Potatoe = 0;
- user.items.food.Potatoe += 3;
+ user.items.food = {
+ ...user.items.food,
+ Potatoe: user.items.food.Potatoe + 3,
+ };
if (!user.items.food.Honey) user.items.food.Honey = 0;
- user.items.food.Honey += 3;
+ user.items.food = {
+ ...user.items.food,
+ Honey: user.items.food.Honey + 3,
+ };
if (!user.items.food.Strawberry) user.items.food.Strawberry = 0;
- user.items.food.Strawberry += 3;
+ user.items.food = {
+ ...user.items.food,
+ Strawberry: user.items.food.Strawberry + 3,
+ };
if (!user.items.food.Chocolate) user.items.food.Chocolate = 0;
- user.items.food.Chocolate += 3;
+ user.items.food = {
+ ...user.items.food,
+ Chocolate: user.items.food.Chocolate + 3,
+ };
if (!user.items.food.Fish) user.items.food.Fish = 0;
- user.items.food.Fish += 3;
+ user.items.food = {
+ ...user.items.food,
+ Fish: user.items.food.Fish + 3,
+ };
if (!user.items.food.Milk) user.items.food.Milk = 0;
- user.items.food.Milk += 3;
+ user.items.food = {
+ ...user.items.food,
+ Milk: user.items.food.Milk + 3,
+ };
if (!user.items.food.RottenMeat) user.items.food.RottenMeat = 0;
- user.items.food.RottenMeat += 3;
+ user.items.food = {
+ ...user.items.food,
+ RottenMeat: user.items.food.RottenMeat + 3,
+ };
if (user.markModified) user.markModified('items.food');
},
},
@@ -381,7 +573,10 @@ export default function getLoginIncentives (api) {
reward: [api.hatchingPotions.RoyalPurple],
assignReward: function assignReward (user) {
if (!user.items.hatchingPotions.RoyalPurple) user.items.hatchingPotions.RoyalPurple = 0;
- user.items.hatchingPotions.RoyalPurple += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ RoyalPurple: user.items.hatchingPotions.RoyalPurple + 1,
+ };
if (user.markModified) user.markModified('items.hatchingPotions');
},
},
@@ -389,8 +584,14 @@ export default function getLoginIncentives (api) {
rewardKey: ['shop_weapon_special_skeletonKey', 'shop_shield_special_lootBag'],
reward: [api.gear.flat.weapon_special_skeletonKey, api.gear.flat.shield_special_lootBag],
assignReward: function assignReward (user) {
- user.items.gear.owned.weapon_special_skeletonKey = true; // eslint-disable-line camelcase
- user.items.gear.owned.shield_special_lootBag = true; // eslint-disable-line camelcase
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ weapon_special_skeletonKey: true,
+ }; // eslint-disable-line camelcase
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ shield_special_lootBag: true,
+ }; // eslint-disable-line camelcase
if (user.markModified) user.markModified('items.gear.owned');
},
},
@@ -399,7 +600,10 @@ export default function getLoginIncentives (api) {
reward: [api.hatchingPotions.RoyalPurple],
assignReward: function assignReward (user) {
if (!user.items.hatchingPotions.RoyalPurple) user.items.hatchingPotions.RoyalPurple = 0;
- user.items.hatchingPotions.RoyalPurple += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ RoyalPurple: user.items.hatchingPotions.RoyalPurple + 1,
+ };
if (user.markModified) user.markModified('items.hatchingPotions');
},
},
@@ -410,8 +614,14 @@ export default function getLoginIncentives (api) {
api.gear.flat.armor_special_sneakthiefRobes,
],
assignReward: function assignReward (user) {
- user.items.gear.owned.head_special_clandestineCowl = true; // eslint-disable-line camelcase
- user.items.gear.owned.armor_special_sneakthiefRobes = true; // eslint-disable-line camelcase
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ head_special_clandestineCowl: true,
+ }; // eslint-disable-line camelcase
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ armor_special_sneakthiefRobes: true,
+ }; // eslint-disable-line camelcase
if (user.markModified) user.markModified('items.gear.owned');
},
},
@@ -420,7 +630,10 @@ export default function getLoginIncentives (api) {
reward: [api.hatchingPotions.RoyalPurple],
assignReward: function assignReward (user) {
if (!user.items.hatchingPotions.RoyalPurple) user.items.hatchingPotions.RoyalPurple = 0;
- user.items.hatchingPotions.RoyalPurple += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ RoyalPurple: user.items.hatchingPotions.RoyalPurple + 1,
+ };
if (user.markModified) user.markModified('items.hatchingPotions');
},
},
@@ -431,8 +644,14 @@ export default function getLoginIncentives (api) {
api.gear.flat.armor_special_snowSovereignRobes,
],
assignReward: function assignReward (user) {
- user.items.gear.owned.head_special_snowSovereignCrown = true; // eslint-disable-line camelcase, max-len
- user.items.gear.owned.armor_special_snowSovereignRobes = true; // eslint-disable-line camelcase, max-len
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ head_special_snowSovereignCrown: true,
+ }; // eslint-disable-line camelcase, max-len
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ armor_special_snowSovereignRobes: true,
+ }; // eslint-disable-line camelcase, max-len
if (user.markModified) user.markModified('items.gear.owned');
},
},
@@ -441,7 +660,10 @@ export default function getLoginIncentives (api) {
reward: [api.hatchingPotions.RoyalPurple],
assignReward: function assignReward (user) {
if (!user.items.hatchingPotions.RoyalPurple) user.items.hatchingPotions.RoyalPurple = 0;
- user.items.hatchingPotions.RoyalPurple += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ RoyalPurple: user.items.hatchingPotions.RoyalPurple + 1,
+ };
if (user.markModified) user.markModified('items.hatchingPotions');
},
},
@@ -449,8 +671,14 @@ export default function getLoginIncentives (api) {
rewardKey: ['shop_shield_special_wintryMirror', 'shop_back_special_snowdriftVeil'],
reward: [api.gear.flat.shield_special_wintryMirror, api.gear.flat.back_special_snowdriftVeil],
assignReward: function assignReward (user) {
- user.items.gear.owned.shield_special_wintryMirror = true; // eslint-disable-line camelcase
- user.items.gear.owned.back_special_snowdriftVeil = true; // eslint-disable-line camelcase
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ shield_special_wintryMirror: true,
+ }; // eslint-disable-line camelcase
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ back_special_snowdriftVeil: true,
+ }; // eslint-disable-line camelcase
if (user.markModified) user.markModified('items.gear.owned');
},
},
@@ -459,7 +687,10 @@ export default function getLoginIncentives (api) {
reward: [api.hatchingPotions.RoyalPurple],
assignReward: function assignReward (user) {
if (!user.items.hatchingPotions.RoyalPurple) user.items.hatchingPotions.RoyalPurple = 0;
- user.items.hatchingPotions.RoyalPurple += 1;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ RoyalPurple: user.items.hatchingPotions.RoyalPurple + 1,
+ };
if (user.markModified) user.markModified('items.hatchingPotions');
},
},
@@ -468,7 +699,10 @@ export default function getLoginIncentives (api) {
reward: [api.food.Saddle],
assignReward: function assignReward (user) {
if (!user.items.food.Saddle) user.items.food.Saddle = 0;
- user.items.food.Saddle += 1;
+ user.items.food = {
+ ...user.items.food,
+ Saddle: user.items.food.Saddle + 1,
+ };
if (user.markModified) user.markModified('items.food');
},
},
@@ -479,8 +713,14 @@ export default function getLoginIncentives (api) {
api.gear.flat.armor_special_nomadsCuirass,
],
assignReward: function assignReward (user) {
- user.items.gear.owned.weapon_special_nomadsScimitar = true; // eslint-disable-line camelcase
- user.items.gear.owned.armor_special_nomadsCuirass = true; // eslint-disable-line camelcase
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ weapon_special_nomadsScimitar: true,
+ }; // eslint-disable-line camelcase
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ armor_special_nomadsCuirass: true,
+ }; // eslint-disable-line camelcase
if (user.markModified) user.markModified('items.gear.owned');
},
},
@@ -488,7 +728,10 @@ export default function getLoginIncentives (api) {
rewardKey: ['shop_head_special_spikedHelm'],
reward: [api.gear.flat.head_special_spikedHelm],
assignReward: function assignReward (user) {
- user.items.gear.owned.head_special_spikedHelm = true; // eslint-disable-line camelcase
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ head_special_spikedHelm: true,
+ }; // eslint-disable-line camelcase
if (user.markModified) user.markModified('items.gear.owned');
},
},
@@ -502,25 +745,55 @@ export default function getLoginIncentives (api) {
rewardName: 'threeOfEachFood',
assignReward: function assignReward (user) {
if (!user.items.food.Meat) user.items.food.Meat = 0;
- user.items.food.Meat += 3;
+ user.items.food = {
+ ...user.items.food,
+ Meat: user.items.food.Meat + 3,
+ };
if (!user.items.food.CottonCandyBlue) user.items.food.CottonCandyBlue = 0;
- user.items.food.CottonCandyBlue += 3;
+ user.items.food = {
+ ...user.items.food,
+ CottonCandyBlue: user.items.food.CottonCandyBlue + 3,
+ };
if (!user.items.food.CottonCandyPink) user.items.food.CottonCandyPink = 0;
- user.items.food.CottonCandyPink += 3;
+ user.items.food = {
+ ...user.items.food,
+ CottonCandyPink: user.items.food.CottonCandyPink + 3,
+ };
if (!user.items.food.Potatoe) user.items.food.Potatoe = 0;
- user.items.food.Potatoe += 3;
+ user.items.food = {
+ ...user.items.food,
+ Potatoe: user.items.food.Potatoe + 3,
+ };
if (!user.items.food.Honey) user.items.food.Honey = 0;
- user.items.food.Honey += 3;
+ user.items.food = {
+ ...user.items.food,
+ Honey: user.items.food.Honey + 3,
+ };
if (!user.items.food.Strawberry) user.items.food.Strawberry = 0;
- user.items.food.Strawberry += 3;
+ user.items.food = {
+ ...user.items.food,
+ Strawberry: user.items.food.Strawberry + 3,
+ };
if (!user.items.food.Chocolate) user.items.food.Chocolate = 0;
- user.items.food.Chocolate += 3;
+ user.items.food = {
+ ...user.items.food,
+ Chocolate: user.items.food.Chocolate + 3,
+ };
if (!user.items.food.Fish) user.items.food.Fish = 0;
- user.items.food.Fish += 3;
+ user.items.food = {
+ ...user.items.food,
+ Fish: user.items.food.Fish + 3,
+ };
if (!user.items.food.Milk) user.items.food.Milk = 0;
- user.items.food.Milk += 3;
+ user.items.food = {
+ ...user.items.food,
+ Milk: user.items.food.Milk + 3,
+ };
if (!user.items.food.RottenMeat) user.items.food.RottenMeat = 0;
- user.items.food.RottenMeat += 3;
+ user.items.food = {
+ ...user.items.food,
+ RottenMeat: user.items.food.RottenMeat + 3,
+ };
if (user.markModified) user.markModified('items.food');
},
},
@@ -533,23 +806,50 @@ export default function getLoginIncentives (api) {
rewardName: 'twoOfAllPetEggs',
assignReward: function assignReward (user) {
if (!user.items.eggs.BearCub) user.items.eggs.BearCub = 0;
- user.items.eggs.BearCub += 2;
+ user.items.eggs = {
+ ...user.items.eggs,
+ BearCub: user.items.eggs.BearCub + 2,
+ };
if (!user.items.eggs.Cactus) user.items.eggs.Cactus = 0;
- user.items.eggs.Cactus += 2;
+ user.items.eggs = {
+ ...user.items.eggs,
+ Cactus: user.items.eggs.Cactus + 2,
+ };
if (!user.items.eggs.Dragon) user.items.eggs.Dragon = 0;
- user.items.eggs.Dragon += 2;
+ user.items.eggs = {
+ ...user.items.eggs,
+ Dragon: user.items.eggs.Dragon + 2,
+ };
if (!user.items.eggs.FlyingPig) user.items.eggs.FlyingPig = 0;
- user.items.eggs.FlyingPig += 2;
+ user.items.eggs = {
+ ...user.items.eggs,
+ FlyingPig: user.items.eggs.FlyingPig + 2,
+ };
if (!user.items.eggs.Fox) user.items.eggs.Fox = 0;
- user.items.eggs.Fox += 2;
+ user.items.eggs = {
+ ...user.items.eggs,
+ Fox: user.items.eggs.Fox + 2,
+ };
if (!user.items.eggs.LionCub) user.items.eggs.LionCub = 0;
- user.items.eggs.LionCub += 2;
+ user.items.eggs = {
+ ...user.items.eggs,
+ LionCub: user.items.eggs.LionCub + 2,
+ };
if (!user.items.eggs.PandaCub) user.items.eggs.PandaCub = 0;
- user.items.eggs.PandaCub += 2;
+ user.items.eggs = {
+ ...user.items.eggs,
+ PandaCub: user.items.eggs.PandaCub + 2,
+ };
if (!user.items.eggs.TigerCub) user.items.eggs.TigerCub = 0;
- user.items.eggs.TigerCub += 2;
+ user.items.eggs = {
+ ...user.items.eggs,
+ TigerCub: user.items.eggs.TigerCub + 2,
+ };
if (!user.items.eggs.Wolf) user.items.eggs.Wolf = 0;
- user.items.eggs.Wolf += 2;
+ user.items.eggs = {
+ ...user.items.eggs,
+ Wolf: user.items.eggs.Wolf + 2,
+ };
if (user.markModified) user.markModified('items.eggs');
},
},
@@ -557,7 +857,10 @@ export default function getLoginIncentives (api) {
rewardKey: ['shop_head_special_dandyHat'],
reward: [api.gear.flat.head_special_dandyHat],
assignReward: function assignReward (user) {
- user.items.gear.owned.head_special_dandyHat = true; // eslint-disable-line camelcase
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ head_special_dandyHat: true,
+ }; // eslint-disable-line camelcase
if (user.markModified) user.markModified('items.gear.owned');
},
},
@@ -565,8 +868,14 @@ export default function getLoginIncentives (api) {
rewardKey: ['shop_weapon_special_fencingFoil', 'shop_armor_special_dandySuit'],
reward: [api.gear.flat.weapon_special_fencingFoil, api.gear.flat.armor_special_dandySuit],
assignReward: function assignReward (user) {
- user.items.gear.owned.weapon_special_fencingFoil = true; // eslint-disable-line camelcase
- user.items.gear.owned.armor_special_dandySuit = true; // eslint-disable-line camelcase
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ weapon_special_fencingFoil: true,
+ }; // eslint-disable-line camelcase
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ armor_special_dandySuit: true,
+ }; // eslint-disable-line camelcase
if (user.markModified) user.markModified('items.gear.owned');
},
},
@@ -576,7 +885,10 @@ export default function getLoginIncentives (api) {
rewardName: 'twoSaddles',
assignReward: function assignReward (user) {
if (!user.items.food.Saddle) user.items.food.Saddle = 0;
- user.items.food.Saddle += 2;
+ user.items.food = {
+ ...user.items.food,
+ Saddle: user.items.food.Saddle + 2,
+ };
if (user.markModified) user.markModified('items.food');
},
},
@@ -589,23 +901,50 @@ export default function getLoginIncentives (api) {
rewardName: 'threeOfAllPetEggs',
assignReward: function assignReward (user) {
if (!user.items.eggs.BearCub) user.items.eggs.BearCub = 0;
- user.items.eggs.BearCub += 3;
+ user.items.eggs = {
+ ...user.items.eggs,
+ BearCub: user.items.eggs.BearCub + 3,
+ };
if (!user.items.eggs.Cactus) user.items.eggs.Cactus = 0;
- user.items.eggs.Cactus += 3;
+ user.items.eggs = {
+ ...user.items.eggs,
+ Cactus: user.items.eggs.Cactus + 3,
+ };
if (!user.items.eggs.Dragon) user.items.eggs.Dragon = 0;
- user.items.eggs.Dragon += 3;
+ user.items.eggs = {
+ ...user.items.eggs,
+ Dragon: user.items.eggs.Dragon + 3,
+ };
if (!user.items.eggs.FlyingPig) user.items.eggs.FlyingPig = 0;
- user.items.eggs.FlyingPig += 3;
+ user.items.eggs = {
+ ...user.items.eggs,
+ FlyingPig: user.items.eggs.FlyingPig + 3,
+ };
if (!user.items.eggs.Fox) user.items.eggs.Fox = 0;
- user.items.eggs.Fox += 3;
+ user.items.eggs = {
+ ...user.items.eggs,
+ Fox: user.items.eggs.Fox + 3,
+ };
if (!user.items.eggs.LionCub) user.items.eggs.LionCub = 0;
- user.items.eggs.LionCub += 3;
+ user.items.eggs = {
+ ...user.items.eggs,
+ LionCub: user.items.eggs.LionCub + 3,
+ };
if (!user.items.eggs.PandaCub) user.items.eggs.PandaCub = 0;
- user.items.eggs.PandaCub += 3;
+ user.items.eggs = {
+ ...user.items.eggs,
+ PandaCub: user.items.eggs.PandaCub + 3,
+ };
if (!user.items.eggs.TigerCub) user.items.eggs.TigerCub = 0;
- user.items.eggs.TigerCub += 3;
+ user.items.eggs = {
+ ...user.items.eggs,
+ TigerCub: user.items.eggs.TigerCub + 3,
+ };
if (!user.items.eggs.Wolf) user.items.eggs.Wolf = 0;
- user.items.eggs.Wolf += 3;
+ user.items.eggs = {
+ ...user.items.eggs,
+ Wolf: user.items.eggs.Wolf + 3,
+ };
if (user.markModified) user.markModified('items.eggs');
},
},
@@ -619,25 +958,55 @@ export default function getLoginIncentives (api) {
rewardName: 'fourOfEachFood',
assignReward: function assignReward (user) {
if (!user.items.food.Meat) user.items.food.Meat = 0;
- user.items.food.Meat += 4;
+ user.items.food = {
+ ...user.items.food,
+ Meat: user.items.food.Meat + 4,
+ };
if (!user.items.food.CottonCandyBlue) user.items.food.CottonCandyBlue = 0;
- user.items.food.CottonCandyBlue += 4;
+ user.items.food = {
+ ...user.items.food,
+ CottonCandyBlue: user.items.food.CottonCandyBlue + 4,
+ };
if (!user.items.food.CottonCandyPink) user.items.food.CottonCandyPink = 0;
- user.items.food.CottonCandyPink += 4;
+ user.items.food = {
+ ...user.items.food,
+ CottonCandyPink: user.items.food.CottonCandyPink + 4,
+ };
if (!user.items.food.Potatoe) user.items.food.Potatoe = 0;
- user.items.food.Potatoe += 4;
+ user.items.food = {
+ ...user.items.food,
+ Potatoe: user.items.food.Potatoe + 4,
+ };
if (!user.items.food.Honey) user.items.food.Honey = 0;
- user.items.food.Honey += 4;
+ user.items.food = {
+ ...user.items.food,
+ Honey: user.items.food.Honey + 4,
+ };
if (!user.items.food.Strawberry) user.items.food.Strawberry = 0;
- user.items.food.Strawberry += 4;
+ user.items.food = {
+ ...user.items.food,
+ Strawberry: user.items.food.Strawberry + 4,
+ };
if (!user.items.food.Chocolate) user.items.food.Chocolate = 0;
- user.items.food.Chocolate += 4;
+ user.items.food = {
+ ...user.items.food,
+ Chocolate: user.items.food.Chocolate + 4,
+ };
if (!user.items.food.Fish) user.items.food.Fish = 0;
- user.items.food.Fish += 4;
+ user.items.food = {
+ ...user.items.food,
+ Fish: user.items.food.Fish + 4,
+ };
if (!user.items.food.Milk) user.items.food.Milk = 0;
- user.items.food.Milk += 4;
+ user.items.food = {
+ ...user.items.food,
+ Milk: user.items.food.Milk + 4,
+ };
if (!user.items.food.RottenMeat) user.items.food.RottenMeat = 0;
- user.items.food.RottenMeat += 4;
+ user.items.food = {
+ ...user.items.food,
+ RottenMeat: user.items.food.RottenMeat + 4,
+ };
if (user.markModified) user.markModified('items.food');
},
},
@@ -647,7 +1016,10 @@ export default function getLoginIncentives (api) {
rewardName: 'threeSaddles',
assignReward: function assignReward (user) {
if (!user.items.food.Saddle) user.items.food.Saddle = 0;
- user.items.food.Saddle += 3;
+ user.items.food = {
+ ...user.items.food,
+ Saddle: user.items.food.Saddle + 3,
+ };
if (user.markModified) user.markModified('items.food');
},
},
@@ -655,8 +1027,14 @@ export default function getLoginIncentives (api) {
rewardKey: ['shop_weapon_special_tachi', 'shop_armor_special_samuraiArmor'],
reward: [api.gear.flat.weapon_special_tachi, api.gear.flat.armor_special_samuraiArmor],
assignReward: function assignReward (user) {
- user.items.gear.owned.weapon_special_tachi = true; // eslint-disable-line camelcase
- user.items.gear.owned.armor_special_samuraiArmor = true; // eslint-disable-line camelcase
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ weapon_special_tachi: true,
+ }; // eslint-disable-line camelcase
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ armor_special_samuraiArmor: true,
+ }; // eslint-disable-line camelcase
if (user.markModified) user.markModified('items.gear.owned');
},
},
@@ -664,8 +1042,14 @@ export default function getLoginIncentives (api) {
rewardKey: ['shop_head_special_kabuto', 'shop_shield_special_wakizashi'],
reward: [api.gear.flat.head_special_kabuto, api.gear.flat.shield_special_wakizashi],
assignReward: function assignReward (user) {
- user.items.gear.owned.head_special_kabuto = true; // eslint-disable-line camelcase
- user.items.gear.owned.shield_special_wakizashi = true; // eslint-disable-line camelcase
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ head_special_kabuto: true,
+ }; // eslint-disable-line camelcase
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ shield_special_wakizashi: true,
+ }; // eslint-disable-line camelcase
if (user.markModified) user.markModified('items.gear.owned');
},
},
diff --git a/website/common/script/cron.js b/website/common/script/cron.js
index 53be939a4e..8afca4bcda 100644
--- a/website/common/script/cron.js
+++ b/website/common/script/cron.js
@@ -66,7 +66,7 @@ export function startOfWeek (options = {}) {
/*
This is designed for use with any date that has an important time portion
(e.g., when comparing the current date-time with the previous cron's date-time
- for determing if cron should run now).
+ for determining if cron should run now).
It changes the time portion of the date-time to be the Custom Day Start hour,
so that the date-time is now the user's correct start of day.
It SUBTRACTS a day if the date-time's original hour is before CDS
diff --git a/website/common/script/fns/randomDrop.js b/website/common/script/fns/randomDrop.js
index a3f8101424..beec977469 100644
--- a/website/common/script/fns/randomDrop.js
+++ b/website/common/script/fns/randomDrop.js
@@ -79,7 +79,10 @@ export default function randomDrop (user, options, req = {}, analytics) {
canDrop: true,
})));
- user.items.food[drop.key] = user.items.food[drop.key] || 0;
+ user.items.food = {
+ ...user.items.food,
+ [drop.key]: user.items.food[drop.key] || 0,
+ };
user.items.food[drop.key] += 1;
if (user.markModified) user.markModified('items.food');
@@ -91,7 +94,10 @@ export default function randomDrop (user, options, req = {}, analytics) {
} else if (rarity > 0.3) { // eggs 30% chance
drop = cloneDropItem(randomVal(content.dropEggs));
- user.items.eggs[drop.key] = user.items.eggs[drop.key] || 0;
+ user.items.eggs = {
+ ...user.items.eggs,
+ [drop.key]: user.items.eggs[drop.key] || 0,
+ };
user.items.eggs[drop.key] += 1;
if (user.markModified) user.markModified('items.eggs');
@@ -114,8 +120,12 @@ export default function randomDrop (user, options, req = {}, analytics) {
randomVal(pickBy(content.hatchingPotions, (v, k) => acceptableDrops.indexOf(k) >= 0)),
);
- user.items.hatchingPotions[drop.key] = user.items.hatchingPotions[drop.key] || 0;
+ user.items.hatchingPotions = {
+ ...user.items.hatchingPotions,
+ [drop.key]: user.items.hatchingPotions[drop.key] || 0,
+ };
user.items.hatchingPotions[drop.key] += 1;
+
if (user.markModified) user.markModified('items.hatchingPotions');
drop.type = 'HatchingPotion';
diff --git a/website/common/script/fns/updateStats.js b/website/common/script/fns/updateStats.js
index 49ca605959..79b4f660c7 100644
--- a/website/common/script/fns/updateStats.js
+++ b/website/common/script/fns/updateStats.js
@@ -71,9 +71,15 @@ export default function updateStats (user, stats, req = {}, analytics) {
if (user.addNotification) user.addNotification('DROPS_ENABLED');
if (user.items.eggs.Wolf > 0) {
- user.items.eggs.Wolf += 1;
+ user.items.eggs = {
+ ...user.items.eggs,
+ Wolf: user.items.eggs.Wolf + 1,
+ };
} else {
- user.items.eggs.Wolf = 1;
+ user.items.eggs = {
+ ...user.items.eggs,
+ Wolf: 1,
+ };
}
if (user.markModified) user.markModified('items.eggs');
@@ -89,7 +95,10 @@ export default function updateStats (user, stats, req = {}, analytics) {
if (user.markModified) user.markModified('flags.levelDrops');
if (!user.items.quests[k]) user.items.quests[k] = 0;
- user.items.quests[k] += 1;
+ user.items.quests = {
+ ...user.items.quests,
+ [k]: user.items.quests[k] + 1,
+ };
if (user.markModified) user.markModified('items.quests');
if (analytics) {
diff --git a/website/common/script/ops/buy/buyArmoire.js b/website/common/script/ops/buy/buyArmoire.js
index 97d5213aca..fab02460d7 100644
--- a/website/common/script/ops/buy/buyArmoire.js
+++ b/website/common/script/ops/buy/buyArmoire.js
@@ -90,7 +90,10 @@ export class BuyArmoireOperation extends AbstractGoldItemOperation { // eslint-d
throw new NotAuthorized(this.i18n('equipmentAlreadyOwned'));
}
- user.items.gear.owned[drop.key] = true;
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ [drop.key]: true,
+ };
if (user.markModified) user.markModified('items.gear.owned');
user.flags.armoireOpened = true;
@@ -126,7 +129,10 @@ export class BuyArmoireOperation extends AbstractGoldItemOperation { // eslint-d
canDrop: true,
}));
- user.items.food[drop.key] = user.items.food[drop.key] || 0;
+ user.items.food = {
+ ...user.items.food,
+ [drop.key]: user.items.food[drop.key] || 0,
+ };
user.items.food[drop.key] += 1;
if (user.markModified) user.markModified('items.food');
diff --git a/website/common/script/ops/buy/buyMount.js b/website/common/script/ops/buy/buyMount.js
index 660b78b1dd..dbc4517938 100644
--- a/website/common/script/ops/buy/buyMount.js
+++ b/website/common/script/ops/buy/buyMount.js
@@ -34,7 +34,10 @@ export class BuyHourglassMountOperation extends AbstractHourglassItemOperation {
}
executeChanges (user) {
- user.items.mounts[this.key] = true;
+ user.items.mounts = {
+ ...user.items.mounts,
+ [this.key]: true,
+ };
if (user.markModified) user.markModified('items.mounts');
diff --git a/website/common/script/ops/buy/buyMysterySet.js b/website/common/script/ops/buy/buyMysterySet.js
index 018322cba8..06ef1f9275 100644
--- a/website/common/script/ops/buy/buyMysterySet.js
+++ b/website/common/script/ops/buy/buyMysterySet.js
@@ -38,6 +38,11 @@ export default function buyMysterySet (user, req = {}, analytics) {
}
});
+ // Here we need to trigger vue reactivity through reassign object
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ };
+
if (user.markModified) user.markModified('items.gear.owned');
user.purchased.plan.consecutive.trinkets -= 1;
diff --git a/website/common/script/ops/buy/buyQuestGem.js b/website/common/script/ops/buy/buyQuestGem.js
index 3f099d2a3a..91f60ad6df 100644
--- a/website/common/script/ops/buy/buyQuestGem.js
+++ b/website/common/script/ops/buy/buyQuestGem.js
@@ -47,7 +47,10 @@ export class BuyQuestWithGemOperation extends AbstractGemItemOperation { // esli
!user.items.quests[item.key]
|| user.items.quests[item.key] < 0
) user.items.quests[item.key] = 0;
- user.items.quests[item.key] += this.quantity;
+ user.items.quests = {
+ ...user.items.quests,
+ [item.key]: user.items.quests[item.key] + this.quantity,
+ };
if (user.markModified) user.markModified('items.quests');
this.subtractCurrency(user, item, this.quantity);
diff --git a/website/common/script/ops/buy/buyQuestGold.js b/website/common/script/ops/buy/buyQuestGold.js
index ead059829c..a4f16d4bfd 100644
--- a/website/common/script/ops/buy/buyQuestGold.js
+++ b/website/common/script/ops/buy/buyQuestGold.js
@@ -67,7 +67,10 @@ export class BuyQuestWithGoldOperation extends AbstractGoldItemOperation { // es
!user.items.quests[item.key]
|| user.items.quests[item.key] < 0
) user.items.quests[item.key] = 0;
- user.items.quests[item.key] += this.quantity;
+ user.items.quests = {
+ ...user.items.quests,
+ [item.key]: user.items.quests[item.key] + this.quantity,
+ };
if (user.markModified) user.markModified('items.quests');
this.subtractCurrency(user, item, this.quantity);
diff --git a/website/common/script/ops/buy/hourglassPurchase.js b/website/common/script/ops/buy/hourglassPurchase.js
index f8bc8dac97..18db922eca 100644
--- a/website/common/script/ops/buy/hourglassPurchase.js
+++ b/website/common/script/ops/buy/hourglassPurchase.js
@@ -66,12 +66,18 @@ export default function purchaseHourglass (user, req = {}, analytics, quantity =
user.purchased.plan.consecutive.trinkets -= 1;
if (type === 'pets') {
- user.items.pets[key] = 5;
+ user.items.pets = {
+ ...user.items.pets,
+ [key]: 5,
+ };
if (user.markModified) user.markModified('items.pets');
}
if (type === 'mounts') {
- user.items.mounts[key] = true;
+ user.items.mounts = {
+ ...user.items.mounts,
+ [key]: true,
+ };
if (user.markModified) user.markModified('items.mounts');
}
}
diff --git a/website/common/script/ops/buy/purchase.js b/website/common/script/ops/buy/purchase.js
index f4156f7683..67b65224eb 100644
--- a/website/common/script/ops/buy/purchase.js
+++ b/website/common/script/ops/buy/purchase.js
@@ -46,7 +46,10 @@ function purchaseItem (user, item, price, type, key) {
user.balance -= price;
if (type === 'gear') {
- user.items.gear.owned[key] = true;
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ [key]: true,
+ };
if (user.markModified) user.markModified('items.gear.owned');
} else if (type === 'bundles') {
const subType = item.type;
diff --git a/website/common/script/ops/changeClass.js b/website/common/script/ops/changeClass.js
index 460786c6bd..a9d7104fa3 100644
--- a/website/common/script/ops/changeClass.js
+++ b/website/common/script/ops/changeClass.js
@@ -53,8 +53,16 @@ export default function changeClass (user, req = {}, analytics) {
addPinnedGearByClass(user);
- user.items.gear.owned[`weapon_${klass}_0`] = true;
- if (klass === 'rogue') user.items.gear.owned[`shield_${klass}_0`] = true;
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ [`weapon_${klass}_0`]: true,
+ };
+ if (klass === 'rogue') {
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ [`shield_${klass}_0`]: true,
+ };
+ }
if (user.markModified) user.markModified('items.gear.owned');
removePinnedItemsByOwnedGear(user);
diff --git a/website/common/script/ops/feed.js b/website/common/script/ops/feed.js
index b1031975db..36b99d2368 100644
--- a/website/common/script/ops/feed.js
+++ b/website/common/script/ops/feed.js
@@ -15,8 +15,11 @@ import { checkOnboardingStatus } from '../libs/onboarding';
function evolve (user, pet, req) {
user.items.pets[pet.key] = -1;
- user.items.mounts[pet.key] = true;
+ user.items.mounts = {
+ ...user.items.mounts,
+ [pet.key]: true,
+ };
if (user.markModified) {
user.markModified('items.pets');
user.markModified('items.mounts');
@@ -48,9 +51,8 @@ export default function feed (user, req = {}) {
throw new NotFound(errorMessage('invalidFoodName', req.language));
}
- const userPets = user.items.pets;
- if (!userPets[pet.key]) {
+ if (!user.items.pets[pet.key]) {
throw new NotFound(i18n.t('messagePetNotFound', req.language));
}
@@ -77,16 +79,16 @@ export default function feed (user, req = {}) {
};
if (food.target === pet.potion || pet.type === 'premium') {
- userPets[pet.key] += 5;
+ user.items.pets[pet.key] += 5;
message = i18n.t('messageLikesFood', messageParams, req.language);
} else {
- userPets[pet.key] += 2;
+ user.items.pets[pet.key] += 2;
message = i18n.t('messageDontEnjoyFood', messageParams, req.language);
}
if (user.markModified) user.markModified('items.pets');
- if (userPets[pet.key] >= 50 && !user.items.mounts[pet.key]) {
+ if (user.items.pets[pet.key] >= 50 && !user.items.mounts[pet.key]) {
message = evolve(user, pet, req);
}
@@ -117,7 +119,7 @@ export default function feed (user, req = {}) {
});
return [
- userPets[pet.key],
+ user.items.pets[pet.key],
message,
];
}
diff --git a/website/common/script/ops/hatch.js b/website/common/script/ops/hatch.js
index 1965cd6496..c21f76d1d9 100644
--- a/website/common/script/ops/hatch.js
+++ b/website/common/script/ops/hatch.js
@@ -41,7 +41,10 @@ export default function hatch (user, req = {}) {
throw new NotAuthorized(i18n.t('messageAlreadyPet', req.language));
}
- user.items.pets[pet] = 5;
+ user.items.pets = {
+ ...user.items.pets,
+ [pet]: 5,
+ };
user.items.eggs[egg] -= 1;
user.items.hatchingPotions[hatchingPotion] -= 1;
if (user.markModified) {
diff --git a/website/common/script/ops/openMysteryItem.js b/website/common/script/ops/openMysteryItem.js
index 0ab7926c40..7df705aeb3 100644
--- a/website/common/script/ops/openMysteryItem.js
+++ b/website/common/script/ops/openMysteryItem.js
@@ -23,7 +23,10 @@ export default function openMysteryItem (user, req = {}, analytics) {
item = cloneDeep(content.gear.flat[item]);
item.text = content.gear.flat[item.key].text(user.preferences.language);
- user.items.gear.owned[item.key] = true;
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ [item.key]: true,
+ };
if (user.markModified) {
user.markModified('purchased.plan.mysteryItems');
diff --git a/website/common/script/ops/pinnedGearUtils.js b/website/common/script/ops/pinnedGearUtils.js
index 1150fb6a2f..53b8c119d0 100644
--- a/website/common/script/ops/pinnedGearUtils.js
+++ b/website/common/script/ops/pinnedGearUtils.js
@@ -95,7 +95,10 @@ export function removePinnedGearAddPossibleNewOnes (user, itemPath, newItemKey)
// remove the old pinned gear items and add the new gear back
removePinnedGearByClass(user);
- user.items.gear.owned[newItemKey] = true;
+ user.items.gear.owned = {
+ ...user.items.gear.owned,
+ [newItemKey]: true,
+ };
if (user.markModified) user.markModified('items.gear.owned');
addPinnedGearByClass(user);
@@ -157,7 +160,7 @@ export function togglePinnedItem (user, { item, type, path }, req = {}) {
}
if (isOfficialPinned) {
- // if an offical item is also present in the user.pinnedItems array
+ // if an official item is also present in the user.pinnedItems array
const itemInUserItems = pathExistsInArray(user.pinnedItems, path);
if (itemInUserItems !== -1) {
diff --git a/website/common/script/ops/revive.js b/website/common/script/ops/revive.js
index e8ce46010b..8718030005 100644
--- a/website/common/script/ops/revive.js
+++ b/website/common/script/ops/revive.js
@@ -90,6 +90,7 @@ export default function revive (user, req = {}, analytics) {
removePinnedGearByClass(user);
user.items.gear.owned[lostItem] = false;
+
if (user.markModified) user.markModified('items.gear.owned');
addPinnedGearByClass(user);
diff --git a/website/raw_sprites/spritesmith_large/promo_seasonal_shop.png b/website/raw_sprites/spritesmith_large/promo_seasonal_shop.png
new file mode 100644
index 0000000000..bf18da469c
Binary files /dev/null and b/website/raw_sprites/spritesmith_large/promo_seasonal_shop.png differ
diff --git a/website/raw_sprites/spritesmith_large/promo_wintery_hair.png b/website/raw_sprites/spritesmith_large/promo_wintery_hair.png
new file mode 100644
index 0000000000..a23550ff04
Binary files /dev/null and b/website/raw_sprites/spritesmith_large/promo_wintery_hair.png differ
diff --git a/website/raw_sprites/spritesmith_large/promo_wintery_skins.png b/website/raw_sprites/spritesmith_large/promo_wintery_skins.png
new file mode 100644
index 0000000000..65d8c6b38c
Binary files /dev/null and b/website/raw_sprites/spritesmith_large/promo_wintery_skins.png differ
diff --git a/website/server/controllers/api-v3/content.js b/website/server/controllers/api-v3/content.js
index 727a56fa13..15cbf282c8 100644
--- a/website/server/controllers/api-v3/content.js
+++ b/website/server/controllers/api-v3/content.js
@@ -82,7 +82,7 @@ async function saveContentToDisk (language, content) {
* the user's configured language.
*
* @apiSuccess {Object} data Various data about the content of Habitica. The content route
- * contains many keys, but the data listed below are the recomended data to use.
+ * contains many keys, but the data listed below are the recommended data to use.
* @apiSuccess {Object} data.mystery The mystery sets awarded to paying subscribers.
* @apiSuccess {Object} data.gear The gear that can be equipped.
* @apiSuccess {Object} data.gear.tree Detailed information about the gear, organized by type.
@@ -101,7 +101,7 @@ async function saveContentToDisk (language, content) {
* @apiSuccess {Object} data.food All the food.
* @apiSuccess {Array} data.userCanOwnQuestCategories The types of quests that a user can own.
* @apiSuccess {Object} data.quests Data about the quests.
- * @apiSuccess {Object} data.appearances Data about the apperance properties.
+ * @apiSuccess {Object} data.appearances Data about the appearance properties.
* @apiSuccess {Object} data.appearances.hair Data about available hair options.
* @apiSuccess {Object} data.appearances.shirt Data about available shirt options.
* @apiSuccess {Object} data.appearances.size Data about available body size options.
@@ -109,7 +109,7 @@ async function saveContentToDisk (language, content) {
* @apiSuccess {Object} data.appearances.chair Data about available chair options.
* @apiSuccess {Object} data.appearances.background Data about available background options.
* @apiSuccess {Object} data.backgrounds Data about the background sets.
- * @apiSuccess {Object} data.subscriptionBlocks Data about the various subscirption blocks.
+ * @apiSuccess {Object} data.subscriptionBlocks Data about the various subscriptions blocks.
*
*/
api.getContent = {
diff --git a/website/server/controllers/api-v3/groups.js b/website/server/controllers/api-v3/groups.js
index dbfaac3ba2..1fb322e0f3 100644
--- a/website/server/controllers/api-v3/groups.js
+++ b/website/server/controllers/api-v3/groups.js
@@ -1049,7 +1049,7 @@ api.removeGroupMember = {
*
* @apiSuccess {Array} data The invites
* @apiSuccess {Object} data[0] If the invitation was a User ID, you'll receive back an object.
- * You'll receive one Object for each succesful User ID invite.
+ * You'll receive one Object for each successful User ID invite.
* @apiSuccess {String} data[1] If the invitation was an email, you'll receive back the email.
* You'll receive one String for each successful email invite.
*
diff --git a/website/server/controllers/api-v3/hall.js b/website/server/controllers/api-v3/hall.js
index 2874cd9b35..8e28fbc17a 100644
--- a/website/server/controllers/api-v3/hall.js
+++ b/website/server/controllers/api-v3/hall.js
@@ -267,7 +267,7 @@ api.updateHero = {
while (tierDiff) {
hero.balance += gemsPerTier[newTier] / 4; // balance is in $
tierDiff -= 1;
- newTier -= 1; // give them gems for the next tier down if they weren't aready that tier
+ newTier -= 1; // give them gems for the next tier down if they weren't already that tier
}
hero.addNotification('NEW_CONTRIBUTOR_LEVEL');
diff --git a/website/server/controllers/api-v3/members.js b/website/server/controllers/api-v3/members.js
index 74e5ea15d5..9a2736d0a8 100644
--- a/website/server/controllers/api-v3/members.js
+++ b/website/server/controllers/api-v3/members.js
@@ -486,7 +486,7 @@ api.getInvitesForGroup = {
* until you get less than 30 results.
* BETA You can also use ?includeAllMembers=true. This option is currently in BETA
* and may be removed in future.
- * Its use is discouraged and its performaces are not optimized especially for large challenges.
+ * Its use is discouraged and its performances are not optimized especially for large challenges.
*
* @apiName GetMembersForChallenge
* @apiGroup Member
diff --git a/website/server/controllers/api-v3/news.js b/website/server/controllers/api-v3/news.js
index 54a0627476..26b5b4be7a 100644
--- a/website/server/controllers/api-v3/news.js
+++ b/website/server/controllers/api-v3/news.js
@@ -4,7 +4,7 @@ const api = {};
// @TODO export this const, cannot export it from here because only routes are exported from
// controllers
-const LAST_ANNOUNCEMENT_TITLE = 'JANUARY BACKGROUNDS AND ARMOIRE ITEMS!';
+const LAST_ANNOUNCEMENT_TITLE = 'BLOG POST: SEASONAL SHOP';
const worldDmg = { // @TODO
bailey: false,
};
@@ -31,24 +31,21 @@ api.getNews = {
${res.t('newStuff')}
- 1/6/2020 - ${LAST_ANNOUNCEMENT_TITLE}
+ 1/16/2020 - ${LAST_ANNOUNCEMENT_TITLE}
- We’ve added three new backgrounds to the Background Shop! Now your avatar can celebrate
- at a Birthday Party, gaze at the quiet beauty of a Snowy Desert, and strike a festive
- pose In A Snowglobe. Check them out under User Icon > Backgrounds!
+ This month's featured Wiki article is about the Seasonal Shop! We hope that it
+ will help you get the most out of the Winter Wonderland Gala and many Galas to come. Be
+ sure to check it out, and let us know what you think by reaching out on Twitter, Tumblr, and Facebook.
- Plus, there’s new Gold-purchasable equipment in the Enchanted Armoire, including the
- Birthday Cake set. Better work hard on your real-life tasks to earn all the pieces!
- Enjoy :)
-
- by FolleMente, Shine Caramia, Aspiring Advocate, gawrone, katieslug, and SabreCat
-