.row
+ world-boss-info-modal
.col-12.col-sm-8.clearfix.standard-page
.row
.col-6.title-details
@@ -25,12 +26,65 @@
.row
.hr.col-12
chat-message(:chat.sync='group.chat', :group-id='group._id', :group-name='group.name')
-
.col-12.col-sm-4.sidebar
.section
.grassy-meadow-backdrop
.daniel_front
+ .boss-section
+ .world-boss(v-if='group && group.quest && group.quest.active', :style="{background: questData.colors.dark, 'border-color': questData.colors.extralight, 'outline-color': questData.colors.light}")
+ .corner-decoration(:style="{top: '-2px', right: '-2px'}")
+ .corner-decoration(:style="{top: '-2px', left: '-2px'}")
+ .corner-decoration(:style="{bottom: '-2px', right: '-2px'}")
+ .corner-decoration(:style="{bottom: '-2px', left: '-2px'}")
+ .text-center.float-bar
+ strong.reduce.boss-event(:style="{background: questData.colors.dark}") {{ $t('worldBossEvent') }}
+ .boss-gradient.pb-3.pt-3
+ p.text-center.reduce(:style="{color: questData.colors.extralight}") {{ $t(`${questData.key}ArtCredit`) }}
+ .quest-boss(:class="'background_' + questData.key")
+ .quest-boss(:class="'quest_' + questData.key")
+ .p-3
+ .row.d-flex.align-items-center.mb-2
+ .col-sm-6
+ strong.float-left {{ questData.boss.name() }}
+ .col-sm-6
+ span.d-flex.float-right
+ .svg-icon.boss-icon(v-html="icons.swordIcon")
+ span.ml-1.reduce(:style="{color: questData.colors.extralight}") {{ $t('pendingDamage', {damage: pendingDamage()}) }}
+ .grey-progress-bar.mb-1
+ .boss-health-bar(:style="{width: (group.quest.progress.hp / questData.boss.hp) * 100 + '%'}")
+ span.d-flex.align-items-center
+ .svg-icon.boss-icon(v-html="icons.healthIcon")
+ span.reduce.ml-1.pt-1 {{ $t('bossHealth', {currentHealth: bossCurrentHealth(), maxHealth: questData.boss.hp.toLocaleString()}) }}
+ .mt-3.mb-2
+ strong.mr-1 {{ $t('rageAttack') }}
+ span {{ questData.boss.rage.title() }}
+ .grey-progress-bar.mb-1
+ .boss-health-bar.rage-bar(:style="{width: (group.quest.progress.rage / questData.boss.rage.value) * 100 + '%'}")
+ span.d-flex.align-items-center
+ .svg-icon.boss-icon(v-html="icons.rageIcon")
+ span.reduce.ml-1.pt-1 {{ $t('bossRage', {currentRage: bossCurrentRage(), maxRage: questData.boss.rage.value.toLocaleString()}) }}
+ .row.d-flex.align-items-center.mb-2.mt-2
+ .col-sm-5.d-flex
+ strong {{ $t('rageStrikes') }}
+ .svg-icon.boss-icon.information-icon.ml-2(v-html="icons.informationIcon", v-b-tooltip.hover.top="questData.boss.rage.description()")
+ .col-sm-2
+ img.rage-strike(src="~assets/images/rage_strike2x.png")
+ .col-sm-2
+ img.rage-strike(src="~assets/images/rage_strike2x.png")
+ .col-sm-2
+ img.rage-strike(src="~assets/images/rage_strike2x.png")
+ .boss-description.p-3(:style="{'border-color': questData.colors.extralight}", @click="sections.worldBoss = !sections.worldBoss")
+ strong.float-left {{ $t('worldBossDescription') }}
+ .float-right
+ .toggle-down(v-if="!sections.worldBoss")
+ .svg-icon.boss-icon(v-html="icons.chevronIcon")
+ .toggle-up(v-if="sections.worldBoss")
+ .svg-icon.boss-icon.reverse(v-html="icons.chevronIcon")
+ .mt-3(v-if="sections.worldBoss", v-html="questData.notes()")
+ .text-center.mt-4
+ .world-boss-info-button(@click="showWorldBossInfo()") {{$t('whatIsWorldBoss') }}
+
.sleep.below-header-sections
strong(v-once) {{ $t('sleepDescription') }}
ul
@@ -194,7 +248,7 @@
padding: 0em;
.below-header-sections {
- padding: 1em;
+ padding: 1em 1.75em 1em 1.75em;
}
}
@@ -223,10 +277,6 @@
margin: 0 auto;
}
- .sleep {
- margin-top: 1em;
- }
-
.svg-icon {
width: 10px;
display: inline-block;
@@ -253,6 +303,16 @@
width: 8px;
}
+ .boss-icon {
+ width: 16px;
+ margin-top: .1em;
+ margin-left: 0;
+ }
+
+ .boss-icon-large {
+ width: 48px;
+ }
+
.staff {
margin-bottom: 1em;
@@ -335,6 +395,97 @@
color: $black;
}
+ .boss-section {
+ padding: 1.75em;
+ }
+
+ .world-boss {
+ color: $white;
+ border-style: solid;
+ border-width: 2px;
+ outline-style: solid;
+ outline-width: 2px;
+ margin: 2px;
+ position: relative;
+ }
+
+ .quest-boss {
+ margin: 1em auto;
+ }
+
+ .grey-progress-bar {
+ width: 100%;
+ height: 15px;
+ background-color: rgba(255, 255, 255, 0.24);
+ border-radius: 2px;
+ }
+
+ .boss-health-bar {
+ width: 80%;
+ height: 15px;
+ margin-bottom: .5em;
+ border-top-left-radius: 2px;
+ border-bottom-left-radius: 2px;
+ background-color: #f74e52;
+ }
+
+ .boss-health-bar.rage-bar {
+ background-color: #ff944c;
+ }
+
+ .boss-gradient {
+ background-image: linear-gradient(to bottom, #401f2a, #931f4d);
+ margin-top: -1.4em;
+ }
+
+ .boss-description {
+ border-top: 1px solid;
+ margin-left: -16px;
+ margin-right: -16px;
+ padding: .25em 0 0 .25em;
+ }
+
+ .float-bar {
+ position: relative;
+ top: -.75em;
+ }
+
+ .boss-event {
+ padding: .5em 3em .5em 3em;
+ border-radius: 2px;
+ }
+
+ .corner-decoration {
+ position: absolute;
+ width: 6px;
+ height: 6px;
+ background-color: inherit;
+ border: inherit;
+ outline: inherit;
+ }
+
+ .reverse {
+ transform: rotate(180deg);
+ }
+
+ .reduce {
+ font-size: 12px;
+ }
+
+ .rage-strike {
+ max-width: 50px;
+ height: auto;
+ }
+
+ .world-boss-info-button {
+ width: 100%;
+ background-color: $gray-500;
+ border-radius: 2px;
+ font-size: 14px;
+ color: $blue-10;
+ padding: 1em;
+ }
+
diff --git a/website/client/components/worldBossInfoModal.vue b/website/client/components/worldBossInfoModal.vue
new file mode 100644
index 0000000000..3bb8c96ef7
--- /dev/null
+++ b/website/client/components/worldBossInfoModal.vue
@@ -0,0 +1,135 @@
+
+ b-modal#world-boss-info(title="", size='md', :hide-footer="true", :hide-header="true")
+ .modal-header.d-flex
+ .left-hearts
+ .quest_dysheartener_modal
+ .right-hearts
+ .modal-body
+ .row
+ .col-12.text-center
+ h2 {{ $t('whatIsWorldBoss') }}
+ p.text-center {{ $t('worldBossDesc') }}
+ .row
+ .col-12
+ .bullet-point.d-flex.align-items-center.justify-content-left(v-for='bullet in bullets')
+ .check-icon
+ .svg-icon.red-check(v-html="icons.redCheck")
+ .info {{ $t(bullet) }}
+ .row
+ .col-12.text-center
+ a(href='http://habitica.wikia.com/wiki/World_Bosses' target='_blank').footer-link {{ $t('worldBossLink') }}
+
+
+
+
+
+
+
diff --git a/website/common/locales/bg/groups.json b/website/common/locales/bg/groups.json
index 11478eda3c..a2c2c79296 100644
--- a/website/common/locales/bg/groups.json
+++ b/website/common/locales/bg/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "Искате ли да участвате?",
"managerAdded": "Управителят е добавен успешно",
"managerRemoved": "Управителят е премахнат успешно.",
- "leaderChanged": "Водачът беше сменен"
+ "leaderChanged": "Водачът беше сменен",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/bg/npc.json b/website/common/locales/bg/npc.json
index 621156718d..1be68ad659 100644
--- a/website/common/locales/bg/npc.json
+++ b/website/common/locales/bg/npc.json
@@ -31,6 +31,8 @@
"danielText2": "Внимание: ако участвате в мисия срещу главатар, той ще Ви наранява, когато членовете на групата Ви не изпълняват ежедневните си задачи! Освен това, докато не напуснете странноприемницата, Вашите щети срещу главатаря (или събраните предмети) няма да бъдат взимани под внимание.",
"danielTextBroken": "Добре дошли в кръчмата… предполагам… Ако искате да си починете, ще Ви настаня в странноприемницата… Докато сте там, ежедневните Ви задачи няма да Ви нараняват в края на деня, но все пак ще можете да ги отмятате… ако имате сили…",
"danielText2Broken": "О… ако участвате в мисия срещу главатар, той ще Ви наранява, когато членовете на групата Ви не изпълняват ежедневните си задачи… Освен това, докато не напуснете странноприемницата, Вашите щети срещу главатаря няма да бъдат прилагани, както и няма да получите събраните си предмети…",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "Александър Търговеца",
"welcomeMarket": "Добре дошли на пазара! Купувайте трудни за намиране яйца и отвари! Продавайте ненужното! Възползвайте се от полезните ни услуги! Елате и вижте какво предлагаме.",
"welcomeMarketMobile": "Добре дошли на пазара! Купувайте трудни за намиране яйца и отвари! Елате и вижте какво предлагаме.",
diff --git a/website/common/locales/bg/pets.json b/website/common/locales/bg/pets.json
index b823933d4a..52563b6129 100644
--- a/website/common/locales/bg/pets.json
+++ b/website/common/locales/bg/pets.json
@@ -27,8 +27,8 @@
"royalPurpleGryphon": "Царствено лилав грифон",
"phoenix": "Феникс",
"magicalBee": "Вълшебна пчела",
- "hopefulHippogriffPet": "Hopeful Hippogriff",
- "hopefulHippogriffMount": "Hopeful Hippogriff",
+ "hopefulHippogriffPet": "Обнадежден хипогриф",
+ "hopefulHippogriffMount": "Обнадежден хипогриф",
"royalPurpleJackalope": "Царствено лилав рогат заек",
"invisibleAether": "Невидим етер",
"rarePetPop1": "Щракнете златната лапа, за да научите как може да получите този рядък любимец чрез принос към Хабитика!",
diff --git a/website/common/locales/bg/quests.json b/website/common/locales/bg/quests.json
index 7abd1f0c27..05634fc5ee 100644
--- a/website/common/locales/bg/quests.json
+++ b/website/common/locales/bg/quests.json
@@ -120,5 +120,10 @@
"createAccountQuest": "Получихте тази мисия като се присъединихте към Хабитика! Ако Ваш приятел се присъедини, той или тя също ще я получат.",
"questBundles": "Пакети мисии с отстъпка",
"buyQuestBundle": "Купуване на пакет мисии",
- "noQuestToStart": "Не можете да намерите мисия, която да започнете? Погледнете в магазина за мисии или на пазара за нови попълнения!"
+ "noQuestToStart": "Не можете да намерите мисия, която да започнете? Погледнете в магазина за мисии или на пазара за нови попълнения!",
+ "pendingDamage": "<%= damage %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/bg/questscontent.json b/website/common/locales/bg/questscontent.json
index 57fe2854f6..3775619b99 100644
--- a/website/common/locales/bg/questscontent.json
+++ b/website/common/locales/bg/questscontent.json
@@ -564,15 +564,16 @@
"questBadgerBoss": "Язовският тормоз",
"questBadgerDropBadgerEgg": "Язовец (яйце)",
"questBadgerUnlockText": "Отключва възможността за купуване на яйца на язовец от пазара.",
- "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.",
- "questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
- "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 gazebo 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!",
- "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)"
+ "questDysheartenerText": "Обезсърчителят",
+ "questDysheartenerNotes": "Слънцето изгрява на деня на св Валентин, когато някакъв трясък изведнъж нарушава спокойствието. Ярка розова светлина преминава през всички сгради, а паветата се разпадат на дребни парчета, когато на главната улица на Хабитград се отваря дълбока пукнатина. Неземен крясък разсича въздуха, чупейки прозорци, и от зейналата дупка се появява странна фигура.
Тракащи челюсти и бляскави черупки, и много, много крака. Тълпата започва да пищи от ужас, виждайки как насекомоподобното създание се изправя, показвайки целия си ръст, за да разкрие, че е най-ужасяващото от всички чудовища – самият Обезсърчител. Той надава вой и се впуска напред, жаден за надеждите на трудолюбивите хабитиканци. С всяко потракване на тънките му крака, усещаш как те обхваща засилващо се чувство отчаяние.
„Стегнете се, всички!“ — крещи Lemoness. — „Сигурно си мисли, че сме лесни мишени, тъй като много от нас имат обезсърчаващи новогодишни обещания, но скоро ще разбере, че хабитиканците знаят как да се придържат и стремят към целите си!“
AnnDeLune вдига жезъла си — „Да се справим със задачите си и да повалим това чудовище!“",
+ "questDysheartenerCompletion": "Обезсърчителят е ПОБЕДЕН!
Заедно, всички в Хабитика нанасят последен удар на задачите си. Обезсърчителят изревава и отстъпва. „Какво има, Обезсърчителю?“ — пита AnnDeLune, с блясък в очите. — „Обезкуражен ли си?“
По черупките на Обезсърчителя се появяват светещи розови пукнатини, и той се разпада в розов пушек. Ново чувство на жизненост и решителност залива страната и от небето започват да валят сладки неща.
Тълпата се радва, хората се прегръщат, а любимците им нападат сладките. Изведнъж, радостен хор от песни огласява въздуха, и из въздуха се появяват блестящи силуети.
Отново съживеният ни оптимизъм е привлякъл ято Обнадеждени хипогрифи! Грациозните същества кацат леко на земята, разрошвайки перата си, наперено и с интерес. „Изглежда имаме нови приятели, които ще поддържат духа ни, дори когато задачите ни ни отчайват.“ — казва Lemoness.
Beffymaroo вече гали пернатите пухкавковци. — „Може би те ще ни помогнат да поправим повредените части от Хабитика!“
Припявайки, хипогрифите повеждат всички хабитиканци, за да могат заедно да възстановят обичния ни дом.",
+ "questDysheartenerCompletionChat": "Обезсърчителят е ПОБЕДЕН!\n\nЗаедно, всички в Хабитика нанасят последен удар на задачите си. Обезсърчителят изревава и отстъпва. „Какво има, Обезсърчителю?“ — пита AnnDeLune, с блясък в очите. — „Обезкуражен ли си?“\n\nПо черупките на Обезсърчителя се появяват светещи розови пукнатини, и той се разпада в розов пушек. Ново чувство на жизненост и решителност залива страната и от небето започват да валят сладки неща.\n\nТълпата се радва, хората се прегръщат, а любимците им нападат сладките. Изведнъж, радостен хор от песни огласява въздуха, и из въздуха се появяват блестящи силуети.\n\nОтново съживеният ни оптимизъм е привлякъл ято Обнадеждени хипогрифи! Грациозните същества кацат леко на земята, разрошвайки перата си, наперено и с интерес. „Изглежда имаме нови приятели, които ще поддържат духа ни, дори когато задачите ни ни отчайват.“ — казва Lemoness.\n\nBeffymaroo вече гали пернатите пухкавковци. — „Може би те ще ни помогнат да поправим повредените части от Хабитика!“\n\nПрипявайки, хипогрифите повеждат всички хабитиканци, за да могат заедно да възстановят обичния ни дом.",
+ "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": "Обезсърчителят използва СЪРЦЕРАЗБИВАНЕ!`\n\nО, не! След като се нахрани с неизпълнените ни ежедневни задачи, Обезсърчителят вече има силата да нанесе своята атака – Сърцеразбиване. С пронизителен писък, той стоварва тънките си предни крака върху беседката, в която се намира Сезонният магазин! Магическата ударна вълна натрошава дъските и Сезонната магьосница се натъжава от гледката.\n\nБързо, да продължаваме да изпълняваме ежедневните си задачи, за да не ни удари отново чудовището!",
+ "questDysheartenerBossRageMarket": "Обезсърчителят използва СЪРЦЕРАЗБИВАНЕ!`\n\nО, не! След като се нахранва с неизпълнените ни ежедневни задачи, Обезсърчителят нанася още едно Сърцеразбиване, разбивайки стените и пода на пазара! Камъните му започват да падат, а Алекс Търговеца се разплаква, виждайки как стоката му е напълно унищожена.\n\nНе трябва да позволяваме на това да стане отново! Изпълнявайте ежедневните си задачи, за да не ни удари отново Обезсърчителят!",
+ "questDysheartenerBossRageQuests": "Обезсърчителят използва СЪРЦЕРАЗБИВАНЕ!`\n\nОоо! Отново оставихме ежедневните си задачи неизпълнени, и Обезсърчителят използва тази енергия, зад а нанесе последен удар на любимите ни продавачи. Земята около Пазителя на мисиите е опустошена от Сърцеразбиването, а Иън не може да понесе гледката. Толкова сме близо до победата над това чудовище… Побързайте! Не спирайте сега!",
+ "questDysheartenerDropHippogriffPet": "Обнадежден хипогриф (любимец)",
+ "questDysheartenerDropHippogriffMount": "Обнадежден хипогриф (превоз)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/common/locales/cs/groups.json b/website/common/locales/cs/groups.json
index 6b381e4076..f5235fb2d1 100644
--- a/website/common/locales/cs/groups.json
+++ b/website/common/locales/cs/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "Would you like to participate?",
"managerAdded": "Manager added successfully",
"managerRemoved": "Manager removed successfully",
- "leaderChanged": "Leader has been changed"
+ "leaderChanged": "Leader has been changed",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/cs/npc.json b/website/common/locales/cs/npc.json
index 351dfad6a1..44225a4704 100644
--- a/website/common/locales/cs/npc.json
+++ b/website/common/locales/cs/npc.json
@@ -31,6 +31,8 @@
"danielText2": "Dej pozor: Pokud se účastníš boje s příšerou, ublíží ti i za nesplněné denní úkoly ostatních členů tvé družiny! Navíc, jakákoliv újma, kterou uštědříš příšeře (nebo nasbírané předměty) se ti nepřipíšou dokud se z Hostince neodhlásíš.",
"danielTextBroken": "Tak asi vítej v krčmě... Pokud si potřebuješ odpočinout, nabízím ti pokoj v Hostinci... Zatímco tu budeš přihlášen, tvé denní úkoly ti na konci dne neublíží, ale klidně si je můžeš odškrtnout... Jestli na to máš energii",
"danielText2Broken": "Eh... Jestli se účastníš boje s příšerou, ublíží ti i za nesplněné denní úkoly ostatních členů tvé družiny... Navíc, jakákoliv újma, kterou uštědříš příšeře (nebo nasbírané předměty) se ti nepřipíšou dokud se z Hostince neodhlásíš...",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "Obchodník Alexander",
"welcomeMarket": "Vítej na trhu! Kup si vzácná vejce a lektvary! Prodej, co máš navíc! Objednej si užitečné služby! Přijď se podívat, co všechno nabízíme.",
"welcomeMarketMobile": "Welcome to the Market! Buy hard-to-find eggs and potions! Come see what we have to offer.",
diff --git a/website/common/locales/cs/quests.json b/website/common/locales/cs/quests.json
index 3f7b1af9f2..a63d3e2d09 100644
--- a/website/common/locales/cs/quests.json
+++ b/website/common/locales/cs/quests.json
@@ -120,5 +120,10 @@
"createAccountQuest": "You received this quest when you joined Habitica! If a friend joins, they'll get one too.",
"questBundles": "Discounted Quest Bundles",
"buyQuestBundle": "Buy Quest Bundle",
- "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!"
+ "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!",
+ "pendingDamage": "<%= damage %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/cs/questscontent.json b/website/common/locales/cs/questscontent.json
index dbfaa594d9..5f96a5460b 100644
--- a/website/common/locales/cs/questscontent.json
+++ b/website/common/locales/cs/questscontent.json
@@ -569,10 +569,11 @@
"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.",
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
+ "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 gazebo 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!",
"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)"
+ "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/common/locales/da/groups.json b/website/common/locales/da/groups.json
index b1f4781c1d..1009e579e3 100644
--- a/website/common/locales/da/groups.json
+++ b/website/common/locales/da/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "Would you like to participate?",
"managerAdded": "Manager added successfully",
"managerRemoved": "Manager removed successfully",
- "leaderChanged": "Leader has been changed"
+ "leaderChanged": "Leader has been changed",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/da/npc.json b/website/common/locales/da/npc.json
index 6bc25a82f2..c21a53a91b 100644
--- a/website/common/locales/da/npc.json
+++ b/website/common/locales/da/npc.json
@@ -31,6 +31,8 @@
"danielText2": "Advarsel: Hvis du deltager i en Boss-quest vil bossen stadig skade dig for de andre gruppemedlemmers oversprungne Daglige! Desuden kan du ikke skade Bossen (eller samle ting) før du tjekker ud af Kroen.",
"danielTextBroken": "Velkommen til Værtshuset... tror jeg... Hvis du har brug for at slappe af, så er der plads på Kroen. Når du er tjekket ind på Kroen, vil dine daglige opgaver ikke skade dig i slutningen af dagen, men du kan stadig markere dem som udført... hvis du har energien...",
"danielText2Broken": "Forresten... Hvis du deltager i en Boss quest, vil bossen stadig skade dig for dine gruppemedlemmers manglende daglige opgaver... Derudover kan du ikke skade Bossen (eller samle ting) før du forlader Kroen.",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "Købmanden Alexander",
"welcomeMarket": "Velkommen til Markedet! Her kan du købe æg og eliksirer, der er svære at finde, eller sælge dine overskydende! Bestil nyttige tjenester! Kom og se hvad vi har at tilbyde.",
"welcomeMarketMobile": "Welcome to the Market! Buy hard-to-find eggs and potions! Come see what we have to offer.",
diff --git a/website/common/locales/da/quests.json b/website/common/locales/da/quests.json
index ad5c7a1e99..2d11ed2898 100644
--- a/website/common/locales/da/quests.json
+++ b/website/common/locales/da/quests.json
@@ -120,5 +120,10 @@
"createAccountQuest": "Du fik denne quest da du sluttede dig til Habitica! Hvis en ven også opretter sig vil de også få en.",
"questBundles": "Nedsatte Quest Pakker",
"buyQuestBundle": "Køb Quest Pakke",
- "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!"
+ "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!",
+ "pendingDamage": "<%= damage %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/da/questscontent.json b/website/common/locales/da/questscontent.json
index 203e3ea040..61ae664ca9 100644
--- a/website/common/locales/da/questscontent.json
+++ b/website/common/locales/da/questscontent.json
@@ -569,10 +569,11 @@
"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.",
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
+ "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 gazebo 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!",
"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)"
+ "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/common/locales/de/content.json b/website/common/locales/de/content.json
index 4a67f9d720..bc9eb96992 100644
--- a/website/common/locales/de/content.json
+++ b/website/common/locales/de/content.json
@@ -164,9 +164,9 @@
"questEggPterodactylText": "Pterodactylus",
"questEggPterodactylMountText": "Pterodactylus",
"questEggPterodactylAdjective": "zutraulicher",
- "questEggBadgerText": "Badger",
- "questEggBadgerMountText": "Badger",
- "questEggBadgerAdjective": "bustling",
+ "questEggBadgerText": "Dachs-Jungtier",
+ "questEggBadgerMountText": "Dachs-Reittier",
+ "questEggBadgerAdjective": "eifriges",
"eggNotes": "Finde ein Schlüpfelixier, das Du über dieses Ei gießen kannst, damit ein <%= eggAdjective(locale) %> <%= eggText(locale) %> schlüpfen kann.",
"hatchingPotionBase": "Normales",
"hatchingPotionWhite": "Weißes",
diff --git a/website/common/locales/de/groups.json b/website/common/locales/de/groups.json
index 3608e4c36f..14747301ec 100644
--- a/website/common/locales/de/groups.json
+++ b/website/common/locales/de/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "Möchtest du gern teilnehmen?",
"managerAdded": "Manager erfolgreich hinzugefügt",
"managerRemoved": "Manager erfolgreich entfernt",
- "leaderChanged": "Gruppenleitung wurde gewechselt"
+ "leaderChanged": "Gruppenleitung wurde gewechselt",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/de/inventory.json b/website/common/locales/de/inventory.json
index 7fb3b87c3f..a823716930 100644
--- a/website/common/locales/de/inventory.json
+++ b/website/common/locales/de/inventory.json
@@ -4,5 +4,5 @@
"eggsItemType": "Eier",
"hatchingPotionsItemType": "Schlüpfelexier",
"specialItemType": "Besondere Gegenstände",
- "lockedItem": "Locked Item"
+ "lockedItem": "Gesperrter Gegenstand"
}
diff --git a/website/common/locales/de/npc.json b/website/common/locales/de/npc.json
index 39cea7e97e..99683fb932 100644
--- a/website/common/locales/de/npc.json
+++ b/website/common/locales/de/npc.json
@@ -31,6 +31,8 @@
"danielText2": "Sei gewarnt: Falls Du an einer Boss-Quest teilnimmst, wird Dir der Boss immer noch Schaden für die nicht abgehakten Aufgaben Deiner Gruppenmitglieder zufügen! Außerdem wird der Schaden, den Du dem Boss zufügst (sowie gefundene Gegenstände) erst angerechnet, wenn Du das Gasthaus verlässt.",
"danielTextBroken": "Willkommen im Gasthaus ... schätze ich ... Wenn Du Dich ausruhen möchtest, dann besorge ich Dir ein schönes Zimmer ... Solange Du dort eingecheckt bist, werden Deine täglichen Aufgaben Dir am Ende des Tages keinen Schaden zufügen, Du kannst sie trotzdem noch abhaken ... wenn Du die Kraft dazu hast ...",
"danielText2Broken": "Oh ... Falls Du an einer Boss-Quest teilnimmst, wird Dir der Boss immer noch Schaden für die nicht abgehakten Aufgaben Deiner Gruppenmitglieder zufügen ... Außerdem wird der Schaden, den Du dem Boss zufügst (sowie gefundene Gegenstände) erst angerechnet, wenn Du das Gasthaus verlässt ...",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "Alexander der Händler",
"welcomeMarket": "Willkommen auf dem Marktplatz! Kaufe schwer zu findende Eier und Tränke! Verkaufe Überflüssiges! Gib wichtige Dienste in Auftrag! Komm und schau, was wir anzubieten haben.",
"welcomeMarketMobile": "Willkommen auf dem Marktplatz! Kaufe schwer zu findende Eier und Tränke. Komm und schau, was wir anzubieten haben.",
diff --git a/website/common/locales/de/quests.json b/website/common/locales/de/quests.json
index 7517d0b2c6..562c9c0b8b 100644
--- a/website/common/locales/de/quests.json
+++ b/website/common/locales/de/quests.json
@@ -120,5 +120,10 @@
"createAccountQuest": "Du hast diese Quest beim Beitreten zu Habitica erhalten! Wenn einer Deiner Freunde beitritt, erhält er ebenfalls eine.",
"questBundles": "Reduzierte Quest-Pakete",
"buyQuestBundle": "Quest-Paket kaufen",
- "noQuestToStart": "Du findest keine Quest, die Du starten möchtest? Dann guck mal im Quest-Markt auf dem Marktplatz vorbei um neue Quests zu entdecken!"
+ "noQuestToStart": "Du findest keine Quest, die Du starten möchtest? Dann guck mal im Quest-Markt auf dem Marktplatz vorbei um neue Quests zu entdecken!",
+ "pendingDamage": "<%= damage %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/de/questscontent.json b/website/common/locales/de/questscontent.json
index 418311858f..e34495cf44 100644
--- a/website/common/locales/de/questscontent.json
+++ b/website/common/locales/de/questscontent.json
@@ -564,15 +564,16 @@
"questBadgerBoss": "The Badgering Bother",
"questBadgerDropBadgerEgg": "Badger (Egg)",
"questBadgerUnlockText": "Unlocks purchasable Badger eggs 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!”",
+ "questDysheartenerText": "Der Entmutiger",
+ "questDysheartenerNotes": "Es ist Valentinstag, die Sonne geht gerade auf, als plötzlich ein erschütternder Krach die Luft zerreißt. Ein kränkliches rosa Licht durchdringt die Gebäude, und Ziegel zerbrechen, als sich ein tiefer Riss auf Habit City's Hauptstraße auftut. Ein überirdisches Kreischen ertönt durch die Luft und lässt die Fenster zerspringen, während sich eine ungeschlachte Form aus der klaffenden Erde erhebt.
Mandibeln schnappen, der Panzer glitzert; Bein um Bein entfaltet sich in der Luft. Die Menge beginnt zu schreien, als die insektoide Kreatur aufsteht und sich als schrecklichste aller Kreaturen zu erkennen gibt: der furchterregende Entmutiger höchstselbst. Er heult erwartungsvoll und stürzt vor, um an den Hoffnungen hart arbeitender Habiticaner zu nagen. Mit jedem scharrenden Kratzen seiner stacheligen Vorderbeine fühlst Du, wie sich Dein Herz in der Brust vor Verzweiflung weiter zusammenzieht.
“Fasst Euch alle ein Herz!” ruft Lemoness. “Er denkt vielleicht, dass wir leichte Ziele sind, weil so viele von uns entmutigende Neujahrsvorsätze haben, aber er wird feststellen, dass Habiticaner wissen, wie man an seinen Zielen festhält!”
AnnDeLune hebt ihren Stab. “Lasst uns unsere Aufgaben angehen und dieses Monster erledigen!”",
"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.",
- "questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
- "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 gazebo 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!",
- "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.",
+ "questDysheartenerBossRageTitle": "Niederschmetternder Herzschmerz",
+ "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": "`Der Entmutiger entfesselt NIEDERSCHMETTERNDEN HERZSCHMERZ!`\n\nOh nein! Nachdem er sich an unseren unerledigten Tagesaufgaben gelabt hat, hat der Entmutiger genügend Stärke gesammelt, um seine Niederschmetternde Herzschmerz-Attacke einzusetzen. Mit einem schrillen Aufschrei treffen seine stacheligen Vorderbeine den Pavillon, unter dem der Jahreszeitenmarkt liegt! Die markerschütternde Explosion aus Magie lässt das Holz zersplittern, und die Jahreszeitenzauberin wird bei dem Anblick von Trauer überwältigt.\n\nRasch, lasst uns unsere Tagesaufgaben erledigen, damit das Biest kein weiteres Mal zuschlagen kann!",
+ "questDysheartenerBossRageMarket": "`Der Entmutiger entfesselt NIEDERSCHMETTERNDEN HERZSCHMERZ!`\n\nHilfe! Nachdem er sich an unseren unerledigten Tagesaufgaben gelabt hat, lässt der Entmutiger eine weitere Niederschmetternde Herzschmerz-Attacke los, die die Wände des Markts zerbersten lässt und ihn dem Erboden gleich macht! Unter den herabfallenden Steinen weint Alex der Händler um seine von der Zerstörung betroffenen Waren.\n\nWir dürfen nicht zulassen, dass dies noch einmal passiert! Sorgt dafür, dass alle Eure Tagesaufgaben erledigt werden, bevor der Entmutiger zu seinem letzten Schlag ansetzt.",
"questDysheartenerBossRageQuests": "`The Dysheartener uses SHATTERING HEARTBREAK!`\n\nAaaah! We've left our Dailies undone again, and the Dysheartener has mustered the energy for one final blow against our beloved shopkeepers. The countryside around Ian the Quest Master is ripped apart by its Shattering Heartbreak attack, and Ian is struck to the core by the horrific vision. We're so close to defeating this monster.... Hurry! Don't stop now!",
- "questDysheartenerDropHippogriffPet": "Hopeful Hippogriff (Pet)",
- "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)"
+ "questDysheartenerDropHippogriffPet": "Hoffnungsfroher Hippogreif (Haustier)",
+ "questDysheartenerDropHippogriffMount": "Hoffnungsfroher Hippogreif (Reittier)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/common/locales/en/groups.json b/website/common/locales/en/groups.json
index d2d1531a7e..e98f66076a 100644
--- a/website/common/locales/en/groups.json
+++ b/website/common/locales/en/groups.json
@@ -421,5 +421,13 @@
"managerAdded": "Manager added successfully",
"managerRemoved": "Manager removed successfully",
"leaderChanged": "Leader has been changed",
- "groupNoNotifications": "This Guild does not have notifications due to member size. Be sure to check back often for replies to your messages!"
+ "groupNoNotifications": "This Guild does not have notifications due to member size. Be sure to check back often for replies to your messages!",
+
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
diff --git a/website/common/locales/en/npc.json b/website/common/locales/en/npc.json
index bdfd160535..4b49e2ab65 100644
--- a/website/common/locales/en/npc.json
+++ b/website/common/locales/en/npc.json
@@ -35,6 +35,9 @@
"danielTextBroken": "Welcome to the Tavern... I guess... If you need to rest, I'll set you up at the Inn... While checked-in, your Dailies won't hurt you at the day's end, but you can still check them off... if you have the energy...",
"danielText2Broken": "Oh... If you are participating in a boss quest, the boss will still damage you for your party mates' missed Dailies... Also, your own damage to the Boss (or items collected) will not be applied until you check out of the Inn...",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
+
"alexander": "Alexander the Merchant",
"welcomeMarket": "Welcome to the Market! Buy hard-to-find eggs and potions! Sell your extras! Commission useful services! Come see what we have to offer.",
"welcomeMarketMobile": "Welcome to the Market! Buy hard-to-find eggs and potions! Come see what we have to offer.",
diff --git a/website/common/locales/en/quests.json b/website/common/locales/en/quests.json
index a32d9b91bc..c6671cf74e 100644
--- a/website/common/locales/en/quests.json
+++ b/website/common/locales/en/quests.json
@@ -121,5 +121,10 @@
"createAccountQuest": "You received this quest when you joined Habitica! If a friend joins, they'll get one too.",
"questBundles": "Discounted Quest Bundles",
"buyQuestBundle": "Buy Quest Bundle",
- "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!"
+ "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!",
+ "pendingDamage": "<%= damage %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
diff --git a/website/common/locales/en/questsContent.json b/website/common/locales/en/questsContent.json
index 9a5d5ca37b..74354df408 100644
--- a/website/common/locales/en/questsContent.json
+++ b/website/common/locales/en/questsContent.json
@@ -661,10 +661,11 @@
"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.",
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
+ "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 gazebo 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!",
"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)"
+ "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
diff --git a/website/common/locales/en@pirate/groups.json b/website/common/locales/en@pirate/groups.json
index 58133aa208..b17624d742 100644
--- a/website/common/locales/en@pirate/groups.json
+++ b/website/common/locales/en@pirate/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "Would you like to participate?",
"managerAdded": "Manager added successfully",
"managerRemoved": "Manager removed successfully",
- "leaderChanged": "Leader has been changed"
+ "leaderChanged": "Leader has been changed",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/en@pirate/npc.json b/website/common/locales/en@pirate/npc.json
index bc1aec1913..abb726ffef 100644
--- a/website/common/locales/en@pirate/npc.json
+++ b/website/common/locales/en@pirate/npc.json
@@ -31,6 +31,8 @@
"danielText2": "Be warned: If ye be participatin' in a boss quest, the boss will still damage you for your party mates' missed Dailies! Also, yer own damage t' th' Boss (or items collected) will not be applied until ye check out o' th' Inn.",
"danielTextBroken": "Welcome t' the Pub... I guess... If ye need to rest, I'll set ye up at the Inn... While checked-in, your Dailies won't hurt you at the day's end, but ye can still check them off... if you have the energy...",
"danielText2Broken": "Oh... If ye be participatin' in a boss quest, th' boss will still damage ye for yer party mates' missed Dailies... Also, yer own damage to the Boss (or booty collected) will not be applied 'til ye check out o' the Inn...",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "Alexander th' Sutler",
"welcomeMarket": "Welcome t' th' Market! Buy harrrd-to-find eggs 'n potions! Sell yer extras! Commission useful services! Come 'n see what we have to offer ye.",
"welcomeMarketMobile": "Welcome to the Market! Buy hard-to-find eggs and potions! Come see what we have to offer.",
diff --git a/website/common/locales/en@pirate/quests.json b/website/common/locales/en@pirate/quests.json
index eab145d24d..c2ecc509c0 100644
--- a/website/common/locales/en@pirate/quests.json
+++ b/website/common/locales/en@pirate/quests.json
@@ -120,5 +120,10 @@
"createAccountQuest": "You received this quest when you joined Habitica! If a friend joins, they'll get one too.",
"questBundles": "Discounted Quest Bundles",
"buyQuestBundle": "Buy Quest Bundle",
- "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!"
+ "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!",
+ "pendingDamage": "<%= damage %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/en@pirate/questscontent.json b/website/common/locales/en@pirate/questscontent.json
index dd16069214..906a9b37fa 100644
--- a/website/common/locales/en@pirate/questscontent.json
+++ b/website/common/locales/en@pirate/questscontent.json
@@ -569,10 +569,11 @@
"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.",
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
+ "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 gazebo 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!",
"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)"
+ "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/common/locales/en_GB/groups.json b/website/common/locales/en_GB/groups.json
index 6d0139e2a2..d889d067b5 100644
--- a/website/common/locales/en_GB/groups.json
+++ b/website/common/locales/en_GB/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "Would you like to participate?",
"managerAdded": "Manager added successfully",
"managerRemoved": "Manager removed successfully",
- "leaderChanged": "Leader has been changed"
+ "leaderChanged": "Leader has been changed",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/en_GB/npc.json b/website/common/locales/en_GB/npc.json
index 16bed59ddd..65ec03dd35 100644
--- a/website/common/locales/en_GB/npc.json
+++ b/website/common/locales/en_GB/npc.json
@@ -31,6 +31,8 @@
"danielText2": "Be warned: If you are participating in a boss quest, the boss will still damage you for your party mates' missed Dailies! Also, your own damage to the Boss (or items collected) will not be applied until you check out of the Inn.",
"danielTextBroken": "Welcome to the Tavern... I guess... If you need to rest, I'll set you up at the Inn... While checked-in, your Dailies won't hurt you at the day's end, but you can still check them off... if you have the energy...",
"danielText2Broken": "Oh... If you are participating in a boss quest, the boss will still damage you for your party mates' missed Dailies... Also, your own damage to the Boss (or items collected) will not be applied until you check out of the Inn...",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "Alexander the Merchant",
"welcomeMarket": "Welcome to the Market! Buy hard-to-find eggs and potions! Sell your extras! Commission useful services! Come see what we have to offer.",
"welcomeMarketMobile": "Welcome to the Market! Buy hard-to-find eggs and potions! Come see what we have to offer.",
diff --git a/website/common/locales/en_GB/quests.json b/website/common/locales/en_GB/quests.json
index c85b3d7f9a..72731b65da 100644
--- a/website/common/locales/en_GB/quests.json
+++ b/website/common/locales/en_GB/quests.json
@@ -120,5 +120,10 @@
"createAccountQuest": "You received this quest when you joined Habitica! If a friend joins, they'll get one too.",
"questBundles": "Discounted Quest Bundles",
"buyQuestBundle": "Buy Quest Bundle",
- "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!"
+ "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!",
+ "pendingDamage": "<%= damage %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/en_GB/questscontent.json b/website/common/locales/en_GB/questscontent.json
index 2df8391fb4..0c9ef7e019 100644
--- a/website/common/locales/en_GB/questscontent.json
+++ b/website/common/locales/en_GB/questscontent.json
@@ -569,10 +569,11 @@
"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.",
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
+ "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 gazebo 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!",
"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)"
+ "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/common/locales/es/groups.json b/website/common/locales/es/groups.json
index 3efca9364c..367f513854 100644
--- a/website/common/locales/es/groups.json
+++ b/website/common/locales/es/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "Would you like to participate?",
"managerAdded": "Manager added successfully",
"managerRemoved": "Manager removed successfully",
- "leaderChanged": "Leader has been changed"
+ "leaderChanged": "Leader has been changed",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/es/npc.json b/website/common/locales/es/npc.json
index c944e558d8..e7923ac4aa 100644
--- a/website/common/locales/es/npc.json
+++ b/website/common/locales/es/npc.json
@@ -31,6 +31,8 @@
"danielText2": "Ten cuidado: ¡Si estás participando en una mision contra un jefe, éste seguirá dañandote por las Tareas Diarias no completadas de tus compañeros de grupo! Además, tu daño al jefe (o los artículos recogidos) no se aplicarán hasta que salgas de la posada.",
"danielTextBroken": "Te damos la bienvenida a la Taberna... supongo. Si necesitas descansar, te buscaré una habitación en la posada. Mientras te alojes aquí, tus Tareas Diarias no te causarán daño al final del día, pero podrás marcarlas si quieres... y si tienes suficiente energía.",
"danielText2Broken": "Ah... Si participas en una misión contra un jefe, este seguirá infligiendo daño por las Tareas Diarias no completadas de tus compañeros de grupo. Además, el daño que causes al jefe (o los objetos que consigas) no se aplicará hasta que salgas de la posada.",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "Alexander el Mercader",
"welcomeMarket": "¡Bienvenido al Mercado! ¡Compra huevos dificiles de encontrar y pociones! ¡Vende los que te sobren! ¡Encarga servicios utiles! Ven a ver lo que tenemos que ofrecer.",
"welcomeMarketMobile": "Welcome to the Market! Buy hard-to-find eggs and potions! Come see what we have to offer.",
diff --git a/website/common/locales/es/quests.json b/website/common/locales/es/quests.json
index ac965502fc..bd451061c5 100644
--- a/website/common/locales/es/quests.json
+++ b/website/common/locales/es/quests.json
@@ -120,5 +120,10 @@
"createAccountQuest": "Recibiste esta misión al registrarte en Habitica. Si se apunta un amigo tuyo, conseguirá otra.",
"questBundles": "Packs de Misiones en Descuento",
"buyQuestBundle": "Compra Packs de Misiones ",
- "noQuestToStart": "¿No encuentras una misión con la que empezar? ¡Prueba a buscar nuevas en la Tienda de Misiones del Mercados!"
+ "noQuestToStart": "¿No encuentras una misión con la que empezar? ¡Prueba a buscar nuevas en la Tienda de Misiones del Mercados!",
+ "pendingDamage": "<%= damage %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/es/questscontent.json b/website/common/locales/es/questscontent.json
index a6ba7f2d3e..0321d92fbf 100644
--- a/website/common/locales/es/questscontent.json
+++ b/website/common/locales/es/questscontent.json
@@ -569,10 +569,11 @@
"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.",
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
+ "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 gazebo 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!",
"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)"
+ "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/common/locales/es/spells.json b/website/common/locales/es/spells.json
index 7658bd31f8..6fd8ce6f31 100644
--- a/website/common/locales/es/spells.json
+++ b/website/common/locales/es/spells.json
@@ -13,7 +13,7 @@
"spellWarriorDefensiveStanceText": "Postura defensiva",
"spellWarriorDefensiveStanceNotes": "¡Te agachas bien bajo potenciando tu constitución! (Basado en: reducción de CON)",
"spellWarriorValorousPresenceText": "Presencia Valerosa",
- "spellWarriorValorousPresenceNotes": "Your boldness buffs your whole Party's Strength! (Based on: Unbuffed STR)",
+ "spellWarriorValorousPresenceNotes": "¡Tu audacia potencia la Fuerza de todo tu grupo! (Basado en: Fuerza sin potenciar)",
"spellWarriorIntimidateText": "Mirada Intimidante.",
"spellWarriorIntimidateNotes": "¡Tu fiera mirada incrementa la constitución de tu grupo! (Basado en: CON reducida)",
"spellRoguePickPocketText": "Hurtar",
@@ -31,9 +31,9 @@
"spellHealerBrightnessText": "Claridad Abrasadora",
"spellHealerBrightnessNotes": "¡Una explosión de luz vuelve tus tareas más azul/menos roja! (Basado en: INT)",
"spellHealerProtectAuraText": "Aura Protectora",
- "spellHealerProtectAuraNotes": "You shield your Party by buffing their Constitution! (Based on: Unbuffed CON)",
+ "spellHealerProtectAuraNotes": "¡Proteges a tu grupo potenciando su Constitución! (Basado en: Constitución sin potenciar)",
"spellHealerHealAllText": "Bendición",
- "spellHealerHealAllNotes": "Your soothing spell restores your whole Party's health! (Based on: CON and INT)",
+ "spellHealerHealAllNotes": "¡Tu hechizo relajante recupera la salud de todo tu grupo! (Basado en: Constitución e Inteligencia)",
"spellSpecialSnowballAuraText": "Bola de Nieve",
"spellSpecialSnowballAuraNotes": "¡Transforma a un amigo en un muñeco de nieve!",
"spellSpecialSaltText": "Sal",
diff --git a/website/common/locales/es_419/achievements.json b/website/common/locales/es_419/achievements.json
index 0ed4eff676..6b8b3a2716 100644
--- a/website/common/locales/es_419/achievements.json
+++ b/website/common/locales/es_419/achievements.json
@@ -3,6 +3,6 @@
"onwards": "¡Adelante!",
"levelup": "¡Por realizar tus metas de la vida real, has subido de nivel y te has curado por completo!",
"reachedLevel": "Has alcanzado el nivel <%= level %>",
- "achievementLostMasterclasser": "Completista de Misiones: Serie Masterclasser",
- "achievementLostMasterclasserText": "Completed all sixteen quests in the Masterclasser Quest Series and solved the mystery of the Lost Masterclasser!"
+ "achievementLostMasterclasser": "Completista de Misiones: Serie Maestro de Clases",
+ "achievementLostMasterclasserText": "¡Completó todas las dieciséis misiones de la Serie Maestro de Clases y resolvió el misterio de el Maestro de Clases perdido!"
}
diff --git a/website/common/locales/es_419/content.json b/website/common/locales/es_419/content.json
index 67f360d20b..ebf553490f 100644
--- a/website/common/locales/es_419/content.json
+++ b/website/common/locales/es_419/content.json
@@ -157,8 +157,8 @@
"questEggNudibranchAdjective": "una interesante",
"questEggHippoText": "Hippo",
"questEggHippoMountText": "Hippo",
- "questEggHippoAdjective": "a happy",
- "questEggYarnText": "Yarn",
+ "questEggHippoAdjective": "un feliz",
+ "questEggYarnText": "Hilo",
"questEggYarnMountText": "Alfombra voladora",
"questEggYarnAdjective": "woolen",
"questEggPterodactylText": "Pterodactyl",
@@ -190,12 +190,12 @@
"hatchingPotionCupid": "Cupido",
"hatchingPotionShimmer": "Brillo",
"hatchingPotionFairy": "Hadas",
- "hatchingPotionStarryNight": "Starry Night",
+ "hatchingPotionStarryNight": "Noche Estrellada",
"hatchingPotionNotes": "Vierte esto sobre un huevo, y nacerá una mascota <%= potText(locale) %>.",
"premiumPotionAddlNotes": "No se puede usar con huevos de mascotas de misión.",
"foodMeat": "Carne",
- "foodMeatThe": "the Meat",
- "foodMeatA": "Meat",
+ "foodMeatThe": "la Carne",
+ "foodMeatA": "Carne",
"foodMilk": "Leche",
"foodMilkThe": "la Leche",
"foodMilkA": "Leche",
@@ -239,50 +239,50 @@
"foodCakeShadeThe": "el Pastel de Chocolate",
"foodCakeShadeA": "un Pastel de Chocolate",
"foodCakeWhite": "Pastel de crema",
- "foodCakeWhiteThe": "the Cream Cake",
- "foodCakeWhiteA": "a Cream Cake",
+ "foodCakeWhiteThe": "el Pastel de Crema",
+ "foodCakeWhiteA": "un Pastel de Crema",
"foodCakeGolden": "Pastel de miel",
- "foodCakeGoldenThe": "the Honey Cake",
- "foodCakeGoldenA": "a Honey Cake",
+ "foodCakeGoldenThe": "el Pastel de Miel",
+ "foodCakeGoldenA": "un Pastel de Miel",
"foodCakeZombie": "Pastel podrido",
- "foodCakeZombieThe": "the Rotten Cake",
- "foodCakeZombieA": "a Rotten Cake",
+ "foodCakeZombieThe": "el Pastel Podrido",
+ "foodCakeZombieA": "un Pastel Podrido",
"foodCakeDesert": "Pastel de Arena",
- "foodCakeDesertThe": "the Sand Cake",
- "foodCakeDesertA": "a Sand Cake",
+ "foodCakeDesertThe": "el Pastel de Arena",
+ "foodCakeDesertA": "un Pastel de Arena",
"foodCakeRed": "Pastel de Fresa",
- "foodCakeRedThe": "the Strawberry Cake",
- "foodCakeRedA": "a Strawberry Cake",
+ "foodCakeRedThe": "el Pastel de Fresa",
+ "foodCakeRedA": "un Pastel de Fresa",
"foodCandySkeleton": "Caramelo de Huesos",
- "foodCandySkeletonThe": "the Bare Bones Candy",
- "foodCandySkeletonA": "Bare Bones Candy",
+ "foodCandySkeletonThe": "el Dulce de Huesos",
+ "foodCandySkeletonA": "Dulce de Huesos",
"foodCandyBase": "Caramelo Básico",
- "foodCandyBaseThe": "the Basic Candy",
- "foodCandyBaseA": "Basic Candy",
+ "foodCandyBaseThe": "el Dulce Básico",
+ "foodCandyBaseA": "Dulce básico",
"foodCandyCottonCandyBlue": "Caramelo Azul Agrio",
- "foodCandyCottonCandyBlueThe": "the Sour Blue Candy",
- "foodCandyCottonCandyBlueA": "Sour Blue Candy",
+ "foodCandyCottonCandyBlueThe": "el Dulce Agrio Azul",
+ "foodCandyCottonCandyBlueA": "Dulce Agrio Azul",
"foodCandyCottonCandyPink": "Caramelo Rosa Agrio",
- "foodCandyCottonCandyPinkThe": "the Sour Pink Candy",
- "foodCandyCottonCandyPinkA": "Sour Pink Candy",
+ "foodCandyCottonCandyPinkThe": "el Dulce Agrio Rosa",
+ "foodCandyCottonCandyPinkA": "Dulce Agrio Rosa",
"foodCandyShade": "Caramelo de Chocolate",
- "foodCandyShadeThe": "the Chocolate Candy",
- "foodCandyShadeA": "Chocolate Candy",
+ "foodCandyShadeThe": "el Dulce de Chocolate",
+ "foodCandyShadeA": "Dulce de Chocolate",
"foodCandyWhite": "Caramelo de Vainilla",
- "foodCandyWhiteThe": "the Vanilla Candy",
- "foodCandyWhiteA": "Vanilla Candy",
+ "foodCandyWhiteThe": "un Dulce de Vainilla",
+ "foodCandyWhiteA": "Dulce de Vainilla",
"foodCandyGolden": "Caramelo de Miel",
- "foodCandyGoldenThe": "the Honey Candy",
- "foodCandyGoldenA": "Honey Candy",
+ "foodCandyGoldenThe": "el Dulce de Miel",
+ "foodCandyGoldenA": "Dulce de Miel",
"foodCandyZombie": "Caramelo Podrido",
- "foodCandyZombieThe": "the Rotten Candy",
- "foodCandyZombieA": "Rotten Candy",
+ "foodCandyZombieThe": "el Dulce Podrido",
+ "foodCandyZombieA": "Dulce Podrido",
"foodCandyDesert": "Caramelo de Arena",
- "foodCandyDesertThe": "the Sand Candy",
- "foodCandyDesertA": "Sand Candy",
+ "foodCandyDesertThe": "el Dulce de Arena",
+ "foodCandyDesertA": "Dulce de Arena",
"foodCandyRed": "Caramelo de Canela",
- "foodCandyRedThe": "the Cinnamon Candy",
- "foodCandyRedA": "Cinnamon Candy",
+ "foodCandyRedThe": "el Dulce de Canela",
+ "foodCandyRedA": "Dulce de Canela",
"foodSaddleText": "Silla de Montar",
"foodSaddleNotes": "Convierte instantáneamente a una de tus mascotas en una montura.",
"foodSaddleSellWarningNote": "¡Hey! ¡Este es un artículo bastante util! ¿Estas familiarizado con como usar una Silla de montar con tus mascotas?",
diff --git a/website/common/locales/es_419/groups.json b/website/common/locales/es_419/groups.json
index a7a1acf700..7cdc35feb5 100644
--- a/website/common/locales/es_419/groups.json
+++ b/website/common/locales/es_419/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "¿Te gustaría participar?",
"managerAdded": "Manager added successfully",
"managerRemoved": "Manager removed successfully",
- "leaderChanged": "El Líder se ha cambiado"
+ "leaderChanged": "El Líder se ha cambiado",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/es_419/npc.json b/website/common/locales/es_419/npc.json
index cc3a2897c6..f05023e68d 100644
--- a/website/common/locales/es_419/npc.json
+++ b/website/common/locales/es_419/npc.json
@@ -31,6 +31,8 @@
"danielText2": "Aviso: Si estás participando en una misión contra un jefe, ¡el jefe seguirá haciéndote daño si tus compañeros de equipo no completan sus Diarias! Además, el daño que tú le hagas al Jefe (o los objetos que hayas recolectado) no se aplicará hasta que salgas de la Posada.",
"danielTextBroken": "Bienvenido a la Taberna... Supongo... Si necesitas descansar, te instalaré en la Posada... Mientras estés registrado, tus Diarias no te harán daño al final del día, pero aún así puedes tildarlas... Si tienes la energía...",
"danielText2Broken": "Oh... Si estás participando en una misión contra un jefe, el jefe seguirá dañándote por las Diarias que tus compañeros de equipo no completen... Además, el daño que tú le causes al Jefe (o los objetos recolectados) no será aplicado hasta que salgas de la Posada...",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "Alexander el Comerciante",
"welcomeMarket": "¡Bienvenidos al Mercado! ¡Compra huevos difíciles de encontrar y pociones! ¡Vende tus extras! ¡Encarga servicios útiles! Ven a ver lo que tenemos para ofrecer.",
"welcomeMarketMobile": "¡Bienvenido al Mercado! ¡Compra huevos y pociones difíciles de encontrar! Ven a ver lo que tenemos para ofrecer.",
diff --git a/website/common/locales/es_419/quests.json b/website/common/locales/es_419/quests.json
index 320c198688..8973228569 100644
--- a/website/common/locales/es_419/quests.json
+++ b/website/common/locales/es_419/quests.json
@@ -120,5 +120,10 @@
"createAccountQuest": "¡Recibiste esta misión cuanto te uniste a Habitica! Si un amigo se une recibirá uno también.",
"questBundles": "Paquetes de misiones con descuento",
"buyQuestBundle": "Comprar paquete de misiones",
- "noQuestToStart": "¿No puedes encontrar una misión para iniciar? ¡Intenta revisar la Tienda de Misiones en el Mercado para ver nuevas misiones!"
+ "noQuestToStart": "¿No puedes encontrar una misión para iniciar? ¡Intenta revisar la Tienda de Misiones en el Mercado para ver nuevas misiones!",
+ "pendingDamage": "<%= damage %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/es_419/questscontent.json b/website/common/locales/es_419/questscontent.json
index da3d17bf38..69c9522f11 100644
--- a/website/common/locales/es_419/questscontent.json
+++ b/website/common/locales/es_419/questscontent.json
@@ -569,10 +569,11 @@
"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.",
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
+ "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 gazebo 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!",
"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)"
+ "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/common/locales/fr/groups.json b/website/common/locales/fr/groups.json
index f3b81d5f6e..bdce1bbc45 100644
--- a/website/common/locales/fr/groups.json
+++ b/website/common/locales/fr/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "Voulez-vous participer ?",
"managerAdded": "Gestionnaire ajouté avec succès",
"managerRemoved": "Gestionnaire retiré avec succès",
- "leaderChanged": "Le responsable a été changé"
+ "leaderChanged": "Le responsable a été changé",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/fr/npc.json b/website/common/locales/fr/npc.json
index 43cb634b6b..62743dba60 100644
--- a/website/common/locales/fr/npc.json
+++ b/website/common/locales/fr/npc.json
@@ -31,6 +31,8 @@
"danielText2": "Prenez garde : si vous êtes au milieu d'une quête contre un boss, celui-ci vous infligera tout de même des blessures en fonction des Quotidiennes manquées des membres de votre groupe ! De façon identique, vos propres dégâts au boss (ou les objets récoltés) ne seront pas appliqués tant que vous ne quitterez pas l'auberge.",
"danielTextBroken": "Bienvenue à la taverne... je suppose... Si vous avez besoin de vous reposer, je vous installerai à l'auberge... Pendant votre séjour, vos tâches Quotidiennes ne vous infligeront pas de dommages à la fin de la journée, mais vous pourrez quand même les réaliser... si vous en avez la force...",
"danielText2Broken": "Oh... si vous êtes au milieu d'une quête contre un boss, celui-ci vous infligera tout de même des blessures si les membres de votre groupe rate des Quotidiennes ! De plus, vos propres dégâts infligés au boss (ou les objets récoltés) ne seront pas appliqués tant que vous n'aurez pas quitté l'auberge.",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "Alexander le marchand",
"welcomeMarket": "Bienvenue au marché ! Achetez des œufs rares et des potions ! Vendez vos surplus ! Commandez des services utiles ! Venez voir ce que nous avons à proposer.",
"welcomeMarketMobile": "Voici le marché ! Achetez des œufs et des potions difficiles à trouver ! Venez voir ce que nous avons pour vous.",
diff --git a/website/common/locales/fr/quests.json b/website/common/locales/fr/quests.json
index ca26a3d883..5e53cc0fc8 100644
--- a/website/common/locales/fr/quests.json
+++ b/website/common/locales/fr/quests.json
@@ -120,5 +120,10 @@
"createAccountQuest": "Vous avez reçu cette quête en rejoignant Habitica. Si des amis vous rejoignent, ils l'auront 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 !"
+ "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 %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/fr/questscontent.json b/website/common/locales/fr/questscontent.json
index fd745179e8..2f113a0c33 100644
--- a/website/common/locales/fr/questscontent.json
+++ b/website/common/locales/fr/questscontent.json
@@ -569,10 +569,11 @@
"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.",
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
+ "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 gazebo 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!",
"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)"
+ "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/common/locales/he/groups.json b/website/common/locales/he/groups.json
index d04e011a35..6ad047f862 100644
--- a/website/common/locales/he/groups.json
+++ b/website/common/locales/he/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "Would you like to participate?",
"managerAdded": "Manager added successfully",
"managerRemoved": "Manager removed successfully",
- "leaderChanged": "Leader has been changed"
+ "leaderChanged": "Leader has been changed",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/he/npc.json b/website/common/locales/he/npc.json
index a5506e7380..31b26bd713 100644
--- a/website/common/locales/he/npc.json
+++ b/website/common/locales/he/npc.json
@@ -31,6 +31,8 @@
"danielText2": "הזהרו: אם אתם משתתפים בהרפתקת אוייב, האוייב עדיין יפגע בכם בגין פספוס מטלות יומיות של חבריכם לחבורה! כמו כן, הנזק שאתם גורמים לאוייב (או חפצים שנאספים) לא יחשבו עד שתצאו מהאכסנייה.",
"danielTextBroken": "ברוכים הבאים לפונדק... נראה לי... אם אתם צריכים לנוח, אארגן אתכם באכסנייה... כל עוד אתם רשומים שם, המשימות היומיות שלכם לא יפגעו בכם בסוף היום, אך עדיין תוכלו לסמן שביצעתם אותן... אם יש לכם כח...",
"danielText2Broken": "אה... אם אתם משתתפים בהרפתקת בוס, הבוס עדיין יפגע בכם בגין פספוסי משימות יומיות של חבריכם לחבורה... כמו כן, הנזק שאתם גורמים לבוס (או חפצים שנאספים) לא יחשבו עד אשר תצאו מהאכסנייה...",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "אלכסנדר הסוחר.",
"welcomeMarket": "ברוכים הבאים לשוק! רכשו ביצים ושיקויים נדירים! מכרו את העודפים שלכם! היעזרו בשירותיי המעולים! בואו וראו מה יש לי עבורכם.",
"welcomeMarketMobile": "Welcome to the Market! Buy hard-to-find eggs and potions! Come see what we have to offer.",
diff --git a/website/common/locales/he/quests.json b/website/common/locales/he/quests.json
index b1ff976171..24ebe876f3 100644
--- a/website/common/locales/he/quests.json
+++ b/website/common/locales/he/quests.json
@@ -120,5 +120,10 @@
"createAccountQuest": "You received this quest when you joined Habitica! If a friend joins, they'll get one too.",
"questBundles": "Discounted Quest Bundles",
"buyQuestBundle": "Buy Quest Bundle",
- "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!"
+ "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!",
+ "pendingDamage": "<%= damage %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/he/questscontent.json b/website/common/locales/he/questscontent.json
index c004b8f68f..085d8c3e5b 100644
--- a/website/common/locales/he/questscontent.json
+++ b/website/common/locales/he/questscontent.json
@@ -569,10 +569,11 @@
"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.",
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
+ "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 gazebo 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!",
"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)"
+ "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/common/locales/hu/gear.json b/website/common/locales/hu/gear.json
index daf5749021..0481d1a541 100644
--- a/website/common/locales/hu/gear.json
+++ b/website/common/locales/hu/gear.json
@@ -1,5 +1,5 @@
{
- "set": "Szett",
+ "set": "Set",
"equipmentType": "Típus",
"klass": "Kaszt",
"groupBy": "Rendezés <%= type %> szerint",
@@ -81,7 +81,7 @@
"weaponSpecial0Text": "Sötét lelkek pengéje",
"weaponSpecial0Notes": "Elszívja az ellenségeid életerejét, hogy növelje a csapásaid kegyetlenségét. Növeli az erődet <%= str %> ponttal.",
"weaponSpecial1Text": "Kristálypenge",
- "weaponSpecial1Notes": "A csillogó, csiszolt felület hőstettekről mesél. Növeli az összes tulajdonságodat <%= attrs %> ponttal.",
+ "weaponSpecial1Notes": "Ez a csillogó, csiszolt felület hőstettekről mesél. Növeli az összes tulajdonságodat <%= attrs %> ponttal.",
"weaponSpecial2Text": "Stephen Weber sárkánylándzsája",
"weaponSpecial2Notes": "Érezd, ahogy a sárkány tekintélye árad belőle! Növeli az erődet és az észlelésedet <%= attrs %> ponttal.",
"weaponSpecial3Text": "Mustaine mérföldkő zúzó tüskés buzogánya",
@@ -137,15 +137,15 @@
"weaponSpecialSummerMageText": "Moszatfogó",
"weaponSpecialSummerMageNotes": "Ez a háromágú szigony kiválóan alkalmas hínárfogásra és moszatgyűjtésre! Növeli az intelligenciádat <%= int %> ponttal és az észlelésedet <%= per %> ponttal. Limitált kiadású 2014-es nyári felszerelés.",
"weaponSpecialSummerHealerText": "A zátony varázspálcája",
- "weaponSpecialSummerHealerNotes": "Ez a varázspálca akvamarinból és élő korallból készült, nagyon tetszetős a halrajok számára. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2014-es nyári felszerelés.",
+ "weaponSpecialSummerHealerNotes": "Ez az akvamarinból és élő korallból készült varázspálca nagyon tetszetős a halrajok számára. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2014-es nyári felszerelés.",
"weaponSpecialFallRogueText": "Ezüst karó",
- "weaponSpecialFallRogueNotes": "Elteheted vele az előholtakat láb alól. Bónuszt ad vérfarkasok ellen is, mert sosem lehetsz elég óvatos. Növeli az erődet <%= str %> ponttal. Limitált kiadású 2014-es őszi felszerelés.",
+ "weaponSpecialFallRogueNotes": "Elteheted vele az élőholtakat láb alól. Bónuszt ad vérfarkasok ellen is, mert sosem lehetsz elég óvatos. Növeli az erődet <%= str %> ponttal. Limitált kiadású 2014-es őszi felszerelés.",
"weaponSpecialFallWarriorText": "A tudomány mohó karma",
"weaponSpecialFallWarriorNotes": "Ez a markolós karom a csúcstechnológia legjava. Növeli az erődet <%= str %> ponttal. Limitált kiadású 2014-es őszi felszerelés.",
"weaponSpecialFallMageText": "Mágikus seprű",
"weaponSpecialFallMageNotes": "Ez az elvarázsolt seprű gyorsabban repül, mint egy sárkány! Növeli az intelligenciádat <%= int %> ponttal és az észlelésedet <%= per %> ponttal. Limitált kiadású 2014-es őszi felszerelés.",
"weaponSpecialFallHealerText": "Szkarabeusz varázsbot",
- "weaponSpecialFallHealerNotes": "Ezen a varázspálcán lévő szkarabeusz megvédi és gyógyítja a használóját. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2014-es őszi felszerelés.",
+ "weaponSpecialFallHealerNotes": "Ezen a varázspálcán lévő szkarabeusz megvédi és gyógyítja használóját. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2014-es őszi felszerelés.",
"weaponSpecialWinter2015RogueText": "Jégszurony",
"weaponSpecialWinter2015RogueNotes": "Te tényleg csak most vetted fel ezeket a földről. Növeli az erődet <%= str %> ponttal. Limitált kiadású 2014-2015-ös téli felszerelés.",
"weaponSpecialWinter2015WarriorText": "Gumicukor kard",
@@ -175,7 +175,7 @@
"weaponSpecialFall2015WarriorText": "Palló",
"weaponSpecialFall2015WarriorNotes": "Hasznos különböző dolgok felemeléséshez és/vagy a feladataid elfenekeléséhez. Növeli az erődet <%= str %> ponttal. Limitált kiadású 2015-ös őszi felszerelés.",
"weaponSpecialFall2015MageText": "Elvarázsolt fonal",
- "weaponSpecialFall2015MageNotes": "Egy nagy erejű varró bszorkány képes arra hogy ezt az elvarázsolt fonalat irányítsa anélkül hogy hozzáérne! Növeli az intelligenciádat <%= int %> ponttal és az észlelésedet <%= per %> ponttal. Limitált kiadású 2015-ös őszi felszerelés.",
+ "weaponSpecialFall2015MageNotes": "Egy nagy erejű varró boszorkány képes arra hogy ezt az elvarázsolt fonalat irányítsa anélkül hogy hozzáérne! Növeli az intelligenciádat <%= int %> ponttal és az észlelésedet <%= per %> ponttal. Limitált kiadású 2015-ös őszi felszerelés.",
"weaponSpecialFall2015HealerText": "Lápi nyálka főzet",
"weaponSpecialFall2015HealerNotes": "Tökéletesre főzve! Mostmár csak meg kell győzni magadat arról, hogy megidd. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2015-ös őszi felszerelés.",
"weaponSpecialWinter2016RogueText": "Kakaós bögre",
@@ -195,17 +195,17 @@
"weaponSpecialSpring2016HealerText": "Tavaszi virág varázspálca",
"weaponSpecialSpring2016HealerNotes": "Egy legyintéssel és egy kacsintással virágba borítod a mezőket és az erdőket! Vagy esetleg rákoppinthatsz vele a neveletlen egérkék orrára. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2016-os tavaszi felszerelés. ",
"weaponSpecialSummer2016RogueText": "Elektromos rúd",
- "weaponSpecialSummer2016RogueNotes": "Bárki aki meg akar veled küzdeni számíthat egy felvillanyozó meglepetésre... Növeli az erődet <%= str %> ponttal. Limitált kiadású 2016-os nyári felszerelés. ",
+ "weaponSpecialSummer2016RogueNotes": "Bárki aki meg akar veled küzdeni számíthat egy felvillanyozó meglepetésre... Növeli az erődet <%= str %> ponttal. Limitált kiadású 2016-os nyári felszerelés.",
"weaponSpecialSummer2016WarriorText": "Kampós kard",
- "weaponSpecialSummer2016WarriorNotes": "Bökdösd meg a nehéz feladatokat ezzel a kampós karddal! Növeli az erődet <%= str %> ponttal. Limitált kiadású 2016-os nyári felszerelés. ",
+ "weaponSpecialSummer2016WarriorNotes": "Bökdösd meg azokat a nehéz feladatokat ezzel a kampós karddal! Növeli az erődet <%= str %> ponttal. Limitált kiadású 2016-os nyári felszerelés.",
"weaponSpecialSummer2016MageText": "Tengeri hab varázsbotja",
- "weaponSpecialSummer2016MageNotes": "A tenger összes ereje átáramlik ezen a varázsboton. Növeli az intelligenciádat <%= int %> ponttal és az észlelésedet <%= per %> ponttal. Limitált kiadású 2016-os nyári felszerelés. ",
+ "weaponSpecialSummer2016MageNotes": "A tenger összes ereje átáramlik ezen a varázsboton. Növeli az intelligenciádat <%= int %> ponttal és az észlelésedet <%= per %> ponttal. Limitált kiadású 2016-os nyári felszerelés.",
"weaponSpecialSummer2016HealerText": "Gyógyító szigony",
- "weaponSpecialSummer2016HealerNotes": "Az egyik ága fájdalmat okoz, a másik gyógyít. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2016-os nyári felszerelés. ",
+ "weaponSpecialSummer2016HealerNotes": "Az egyik ága fájdalmat okoz, a másik gyógyít. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2016-os nyári felszerelés.",
"weaponSpecialFall2016RogueText": "A pókcsípés tőre",
- "weaponSpecialFall2016RogueNotes": "Érezd mennyire csíp a pók harapása! Növeli az erődet <%= str %> ponttal. Limitált kiadású 2016-os őszi felszerelés. ",
+ "weaponSpecialFall2016RogueNotes": "Érezd mennyire csíp a pók harapása! Növeli az erődet <%= str %> ponttal. Limitált kiadású 2016-os őszi felszerelés.",
"weaponSpecialFall2016WarriorText": "Támadó gyökerek",
- "weaponSpecialFall2016WarriorNotes": "Rohamozd meg a feladataidat ezekkel a tekergő gyökerekkel! Növeli az erődet <%= str %> ponttal. Limitált kiadású 2016-os őszi felszerelés. ",
+ "weaponSpecialFall2016WarriorNotes": "Rohamozd meg a feladataidat ezekkel a tekergő gyökerekkel! Növeli az erődet <%= str %> ponttal. Limitált kiadású 2016-os őszi felszerelés.",
"weaponSpecialFall2016MageText": "Vészjósló jósgömb",
"weaponSpecialFall2016MageNotes": "Ne akard hogy ez a jósgömb megmondja a jövődet... Növeli az intelligenciádat <%= int %> ponttal és az észlelésedet <%= per %> ponttal. Limitált kiadású 2016-os őszi felszerelés.",
"weaponSpecialFall2016HealerText": "Mérges kígyó",
@@ -235,13 +235,13 @@
"weaponSpecialSummer2017HealerText": "Gyöngy varázspálca",
"weaponSpecialSummer2017HealerNotes": "Ez a gyöngyözött hegyű varázspálca egyetlen érintéssel csillapít minden fájdalmat. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2017-es nyári felszerelés.",
"weaponSpecialFall2017RogueText": "Kandírozott alma buzogány",
- "weaponSpecialFall2017RogueNotes": "Győzd le ellenfeleid az édességgel! Növeli az erődet <%= str %> ponttal. Limitált kiadású 2017-es őszi felszerelés.",
- "weaponSpecialFall2017WarriorText": "Kukorica cukorka lándzsa",
- "weaponSpecialFall2017WarriorNotes": "Az összes ellenfeled menekülni fog az ízletesnek tűnő lándzsád elől, legyenek szellemek, szörnyek vagy piros cetlik. Növeli az erődet <%= str %> ponttal. Limitált kiadású 2017-es őszi felszerelés.",
+ "weaponSpecialFall2017RogueNotes": "Győzd le ellenfeleidet édességgel! Növeli az erődet <%= str %> ponttal. Limitált kiadású 2017-es őszi felszerelés.",
+ "weaponSpecialFall2017WarriorText": "Selyemcukor lándzsa",
+ "weaponSpecialFall2017WarriorNotes": "Az összes ellenfeled menekülni fog ez elől az ízletesnek tűnő lándzsa elől, legyenek azok szellemek, szörnyek vagy piros tennivalók. Növeli az erődet <%= str %> ponttal. Limitált kiadású 2017-es őszi felszerelés.",
"weaponSpecialFall2017MageText": "Ijesztő varázsbot",
- "weaponSpecialFall2017MageNotes": "A varázsboton lévő világító koponya szemei mágiát és rejtélyt sugároznak. Növeli az intelligenciád <%= int %> ponttal, és az észlelésed <%= per %> ponttal. Limitált kiadású 2017-es őszi felszerelés.",
+ "weaponSpecialFall2017MageNotes": "A varázsboton lévő világító koponya szemei mágiát és rejtélyt sugároznak. Növeli az intelligenciádat <%= int %> ponttal és az észlelésedet <%= per %> ponttal. Limitált kiadású 2017-es őszi felszerelés.",
"weaponSpecialFall2017HealerText": "Ijesztő kandeláber",
- "weaponSpecialFall2017HealerNotes": "Ez a fény eloszlatja a félelmet, és tudatja másokkal, hogy segíteni akarsz. Növeli az intelligenciád <%= int %> ponttal. Limitált kiadású 2017-es őszi felszerelés.",
+ "weaponSpecialFall2017HealerNotes": "Ez a fény eloszlatja a félelmet és tudatja másokkal, hogy segíteni akarsz. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2017-es őszi felszerelés.",
"weaponSpecialWinter2018RogueText": "Borsmenta kampó",
"weaponSpecialWinter2018RogueNotes": "Tökéletes falak megmászására, vagy az ellenfeleid édes cukorkával való összezavarására. Növeli az erődet <%= str %> ponttal. Limitált kiadású 2017-2018-as téli felszerelés.",
"weaponSpecialWinter2018WarriorText": "Ünnepi masnis kalapács",
@@ -371,7 +371,7 @@
"armorSpecial0Text": "Szellempáncél",
"armorSpecial0Notes": "Sikolt, amikor megcsapják, mert a viselője helyett érez fájdalmat. Növeli a szívósságodat <%= con %> ponttal.",
"armorSpecial1Text": "Kristálypáncél",
- "armorSpecial1Notes": "Its tireless power inures the wearer to mundane discomfort. Increases all Stats by <%= attrs %>.",
+ "armorSpecial1Notes": "A fáradthatatlan ereje megedzi a viselőjét az evilági kellemetlenségekkel szemben. Növeli az összes tulajdonságodat <%= attrs %> ponttal.",
"armorSpecial2Text": "Jean Chalard nemesi tunikája",
"armorSpecial2Notes": "Igazán pihepuha leszel tőle! Növeli az intelligenciádat és a szívósságodat <%= attrs %> ponttal.",
"armorSpecialTakeThisText": "\"Take This\" páncél",
@@ -400,8 +400,8 @@
"armorSpecialDandySuitNotes": "Kétség kívül egyenes út vezet a sikerhez! Növeli az észlelésedet <%= per %> ponttal.",
"armorSpecialSamuraiArmorText": "Szamuráj páncél",
"armorSpecialSamuraiArmorNotes": "Ezt az erős pikkelypáncélt elegáns selyem fonal tartja össze. Növeli az észlelésedet <%= per %> ponttal.",
- "armorSpecialTurkeyArmorBaseText": "Turkey Armor",
- "armorSpecialTurkeyArmorBaseNotes": "Keep your drumsticks warm and cozy in this feathery armor! Confers no benefit.",
+ "armorSpecialTurkeyArmorBaseText": "Pulyka páncél",
+ "armorSpecialTurkeyArmorBaseNotes": "Tartsd a csülkeidet melegen és kényelmesen ebben a tollas páncélban! Nem változtat a tulajdonságaidon.",
"armorSpecialYetiText": "Jetiszelídítő köpeny",
"armorSpecialYetiNotes": "Bolyhos és vad. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2013-2014-es téli felszerelés.",
"armorSpecialSkiText": "Sí-gyilkos anorák",
@@ -418,10 +418,10 @@
"armorSpecialBirthday2016Notes": "Boldog születésnapot Habitica! Viseld ezt a nevetséges party köpenyt, hogy megünnepeld ezt a csodás napot. Nem változtat a tulajdonságaidon.",
"armorSpecialBirthday2017Text": "Hóbortos party köpeny",
"armorSpecialBirthday2017Notes": "Boldog születésnapot Habitica! Viseld ezt a hóbortos party köpenyt, hogy megünnepeld ezt a csodás napot. Nem változtat a tulajdonságaidon.",
- "armorSpecialBirthday2018Text": "Fanciful Party Robes",
- "armorSpecialBirthday2018Notes": "Happy Birthday, Habitica! Wear these Fanciful Party Robes to celebrate this wonderful day. Confers no benefit.",
- "armorSpecialGaymerxText": "Szivárvány harci páncél.",
- "armorSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special armor is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.",
+ "armorSpecialBirthday2018Text": "Furcsa party köpeny",
+ "armorSpecialBirthday2018Notes": "Boldog születésnapot Habitica! Viseld ezt a furcsa party köpenyt, hogy megünnepeld ezt a csodás napot. Nem változtat a tulajdonságaidon.",
+ "armorSpecialGaymerxText": "Szivárványos harci páncél",
+ "armorSpecialGaymerxNotes": "A GaymerX Konferencia ünnepléseként ez a különleges páncél a szívárvány minden színében pompázik! A GaymerX egy játék konferencia, ami az LGBTQ közösséget ünnepli a játékvilágban, valamint elérhető mindenki számára.",
"armorSpecialSpringRogueText": "Karcsú macskajelmez",
"armorSpecialSpringRogueNotes": "Hibátlanul ápolva. Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2014-es tavaszi felszerelés.",
"armorSpecialSpringWarriorText": "Lóhere-acél páncél",
@@ -433,19 +433,19 @@
"armorSpecialSummerRogueText": "Kalóz köpeny",
"armorSpecialSummerRogueNotes": "Ez a köpeny roppant kényelmes, harrrrr! Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2014-es nyári felszerelés.",
"armorSpecialSummerWarriorText": "Kalandorköpeny",
- "armorSpecialSummerWarriorNotes": "Csattal és hetvenkedéssel. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2014-es nyári felszerelés.",
+ "armorSpecialSummerWarriorNotes": "Csattal és hetvenkedéssel kiegészítve. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2014-es nyári felszerelés.",
"armorSpecialSummerMageText": "Smaragd farok",
"armorSpecialSummerMageNotes": "Ez a fényes pikkelyekből készült öltözet egy igazi Habmágussá változtatja a viselőjét! Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2014-es nyári felszerelés.",
"armorSpecialSummerHealerText": "Tengergyógyító farok",
- "armorSpecialSummerHealerNotes": "Ez a fényes pikkelyekből készült öltözet egy igazi Tengergyógyítóvá változtatja a viselőjét. Növeli a szívósságot <%= con %> ponttal. Limitált kiadású 2014-es nyári felszerelés.",
+ "armorSpecialSummerHealerNotes": "Ez a fényes pikkelyekből készült öltözet egy igazi Tengergyógyítóvá változtatja a viselőjét. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2014-es nyári felszerelés.",
"armorSpecialFallRogueText": "Vérvörös köpeny",
"armorSpecialFallRogueNotes": "Élénk. Bíbor. Vámpíros. Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2014-es őszi felszerelés.",
"armorSpecialFallWarriorText": "A tudósok laborköpenye",
- "armorSpecialFallWarriorNotes": "Megvéd a főzetek rejtélyes kiömlésétől. Növeli a szívósságot <%= con %> ponttal. Limitált kiadású 2014-es őszi felszerelés.",
- "armorSpecialFallMageText": "Boszorkányos Varázslóköpeny",
- "armorSpecialFallMageNotes": "Ennek a köpenynek sok zsebe van, hogy több adag gőteszemet és békanyelvet lehessen benne tartani. Növeli az intelligenciát <%= int %> ponttal. Limitált kiadású 2014-es őszi felszerelés.",
- "armorSpecialFallHealerText": "Fátyolszerű Felszerelés",
- "armorSpecialFallHealerNotes": "Rohanj a csatába előre bekötözve! Növeli a szívósságot <%= con %> ponttal. Limitált kiadású 2014-es őszi felszerelés.",
+ "armorSpecialFallWarriorNotes": "Megvéd a főzetek rejtélyes kiömlésétől. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2014-es őszi felszerelés.",
+ "armorSpecialFallMageText": "Boszorkányos varázslóköpeny",
+ "armorSpecialFallMageNotes": "Ennek a köpenynek sok zsebe van, hogy több adag gőteszemet és békanyelvet lehessen benne tárolni. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2014-es őszi felszerelés.",
+ "armorSpecialFallHealerText": "Átlátszó felszerelés",
+ "armorSpecialFallHealerNotes": "Rohanj a csatába előre bekötözve! Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2014-es őszi felszerelés.",
"armorSpecialWinter2015RogueText": "Jegtüskés sárkány páncél",
"armorSpecialWinter2015RogueNotes": "Ez a páncél rettentő fagyos, de mindenképp megéri viselni amikor megleled a tömérdek kincset a jégtüskés sárkányok fészkének közepén. Nem mintha bármiféle tömérdek kincs után kutakodnál, hiszen te igazán, biztosan és abszolút egy valódi jégtüskés sárkány vagy, ugye?! Ne kérdezz többet! Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2014-2015-ös téli felszerelés.",
"armorSpecialWinter2015WarriorText": "Mézeskalács páncél",
@@ -463,19 +463,19 @@
"armorSpecialSpring2015HealerText": "Megnyugtató macskajelmez",
"armorSpecialSpring2015HealerNotes": "Ez a puha macskajelmez kényelmes, és annyira megnyugtató mint a menta tea. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2015-ös tavaszi felszerelés.",
"armorSpecialSummer2015RogueText": "Rubin farok",
- "armorSpecialSummer2015RogueNotes": "Ez a csillogó pikkelyekből készített ruhadarab átváltoztatja viselőjét egy Renegát tengerésszé. Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2015-ös nyári felszerelés.",
+ "armorSpecialSummer2015RogueNotes": "Ez a csillogó pikkelyekből készített ruhadarab átváltoztatja viselőjét egy igazi Renegát tengerésszé. Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2015-ös nyári felszerelés.",
"armorSpecialSummer2015WarriorText": "Arany farok",
- "armorSpecialSummer2015WarriorNotes": "Ez a csillogó pikkelyekből készített ruhadarab átváltoztatja viselőjét egy Holdhal harcossá. Növeli a szívósságodat <%= con %> ponttal.Limitált kiadású 2015-ös nyári felszerelés.",
+ "armorSpecialSummer2015WarriorNotes": "Ez a csillogó pikkelyekből készített ruhadarab átváltoztatja viselőjét egy igazi Holdhal harcossá. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2015-ös nyári felszerelés.",
"armorSpecialSummer2015MageText": "A jósnő köpenye",
"armorSpecialSummer2015MageNotes": "Titokzatos erő rejtőzik ennek a köpenynek az ujjában. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2015-ös nyári felszerelés.",
- "armorSpecialSummer2015HealerText": "A tengerész páncélja",
- "armorSpecialSummer2015HealerNotes": "Ez a páncél mindenki tudomására hozza hogy te egy becsületes kereskedelmi tengerész vagy. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2015-ös nyári felszerelés.",
+ "armorSpecialSummer2015HealerText": "Tengerész páncél",
+ "armorSpecialSummer2015HealerNotes": "Ez a páncél mindenki tudomására hozza hogy te egy becsületes kereskedelmi tengerész vagy, aki sohasem viselkedne úgy mint egy semmirekellő. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2015-ös nyári felszerelés.",
"armorSpecialFall2015RogueText": "Dene-véres harci páncél",
"armorSpecialFall2015RogueNotes": "Repülj a csatába! Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2015-ös őszi felszerelés.",
"armorSpecialFall2015WarriorText": "Madárijesztő páncél",
"armorSpecialFall2015WarriorNotes": "Annak ellenére hogy ez a páncél szénával van kitömve, mégis rendkívül erős! Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2015-ös őszi felszerelés.",
"armorSpecialFall2015MageText": "Varrott köpeny",
- "armorSpecialFall2015MageNotes": "Ezen a péncélon lévő minden öltés varázslattal van átitatva. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2015-ös őszi felszerelés.",
+ "armorSpecialFall2015MageNotes": "Ezen a köpenyen lévő minden öltés varázslattal van átitatva. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2015-ös őszi felszerelés.",
"armorSpecialFall2015HealerText": "Bájitalkészítő köpeny",
"armorSpecialFall2015HealerNotes": "Micsoda? Persze hogy ez egy szívóssági bájital volt. Egyáltalán nem fogsz tőle békává változni. Ne legyél nevetséges. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2015-ös őszi felszerelés.",
"armorSpecialWinter2016RogueText": "Kakaó páncél",
@@ -499,17 +499,17 @@
"armorSpecialSummer2016WarriorText": "Cápa farok",
"armorSpecialSummer2016WarriorNotes": "Ez a durva anyagú ruhadarab átváltoztatja a viselőjét egy igazi Cápa harcossá! Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2016-os nyári felszerelés.",
"armorSpecialSummer2016MageText": "Delfin farok",
- "armorSpecialSummer2016MageNotes": "Ez a csíúszós anyagú ruhadarab átváltoztatja a viselőjét egy igazo Delfin mágussá! Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2016-os nyári felszerelés.",
+ "armorSpecialSummer2016MageNotes": "Ez a csúszós anyagú ruhadarab átváltoztatja a viselőjét egy igazi Delfin mágussá! Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2016-os nyári felszerelés.",
"armorSpecialSummer2016HealerText": "Csikóhal farok",
"armorSpecialSummer2016HealerNotes": "Ez a tüskés ruhadarab átváltoztatja a viselőjét egy igazi Csikóhal gyógyítóvá! Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2016-os nyári felszerelés.",
"armorSpecialFall2016RogueText": "Fekete özvegy páncél",
- "armorSpecialFall2016RogueNotes": "Ezen a páncélon lévő szemek állandóan pislognak. Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2016-os őszi felszerelés.",
+ "armorSpecialFall2016RogueNotes": "Ezen a páncélon lévő szemek folyamatosan pislognak. Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2016-os őszi felszerelés.",
"armorSpecialFall2016WarriorText": "Nyálkával csíkozott páncél",
"armorSpecialFall2016WarriorNotes": "Titokzatosan nedves és mohás! Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2016-os őszi felszerelés.",
"armorSpecialFall2016MageText": "A gonoszság palástja",
"armorSpecialFall2016MageNotes": "Mikor a palástod meglebben hangos vihogást hallasz. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2016-os őszi felszerelés.",
"armorSpecialFall2016HealerText": "Gorgó köpeny",
- "armorSpecialFall2016HealerNotes": "Ez a köpenyt kőből készítették. Akkor miért ilyen kényelmes? Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2016-os őszi felszerelés.",
+ "armorSpecialFall2016HealerNotes": "Ez a köpeny igazából kőből készült. Akkor miért ilyen kényelmes? Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2016-os őszi felszerelés.",
"armorSpecialWinter2017RogueText": "Jeges páncél",
"armorSpecialWinter2017RogueNotes": "Ez a rejtett öltözet visszaveri a fényt hogy elvakítsa a gyanútlan feladatokat, miközben te begyűjtöd értük a jutalmat! Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2016-2017-es téli felszerelés.",
"armorSpecialWinter2017WarriorText": "Jéghokis páncél",
@@ -531,17 +531,17 @@
"armorSpecialSummer2017WarriorText": "Homokos páncél",
"armorSpecialSummer2017WarriorNotes": "Ne hagyd hogy ez a omladozó külső megtévesszen: ez a páncél erősebb mint a vas. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2017-es nyári felszerelés.",
"armorSpecialSummer2017MageText": "Az örvény köpenye",
- "armorSpecialSummer2017MageNotes": "Vigyázz hogy ez a köpeny ne locsoljon le a beleszőtt megbűvölt vízzel! Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2017-es nyári felszerelés.",
- "armorSpecialSummer2017HealerText": "Ezüst tengerfenék",
+ "armorSpecialSummer2017MageNotes": "Vigyázz nehogy ez a megbűvölt vízből szőtt köpeny lelocsoljon! Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2017-es nyári felszerelés.",
+ "armorSpecialSummer2017HealerText": "Ezüsttenger uszony",
"armorSpecialSummer2017HealerNotes": "Ez az ezüstös pikkelyekből készült ruhadarab átváltoztatja a viselőjét egy igazi Tengergyógyítóvá! Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2017-es nyári felszerelés.",
- "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.",
- "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",
- "armorSpecialFall2017HealerNotes": "Your heart is an open door. And your shoulders are roofing tiles! Increases Constitution by <%= con %>. Limited Edition 2017 Autumn Gear.",
+ "armorSpecialFall2017RogueText": "Tökföld köpeny",
+ "armorSpecialFall2017RogueNotes": "El kell bújnod? Kuporodj le a töklámpások közé és ez a köpeny majd elrejt! Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2017-es őszi felszerelés.",
+ "armorSpecialFall2017WarriorText": "Erős és édes páncél",
+ "armorSpecialFall2017WarriorNotes": "Ez a páncél védelmet biztosít, akár egy cukorhéj. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2017-es őszi felszerelés.",
+ "armorSpecialFall2017MageText": "Álarcosbáli talár",
+ "armorSpecialFall2017MageNotes": "Milyen álarcosbáli öltözék lenne teljes drámai és suhanó palást nélkül? Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2017-es őszi felszerelés. ",
+ "armorSpecialFall2017HealerText": "Kísértetház páncél",
+ "armorSpecialFall2017HealerNotes": "A szíved egy nyitott ajtó. A vállaid pedig tetőcserepek! Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2017-es őszi felszerelés. ",
"armorSpecialWinter2018RogueText": "Rénszarvas jelmez",
"armorSpecialWinter2018RogueNotes": "Olyan aranyosnak és bolyhosnak nézel ki, ki gyanakodna arra hogy csak az ünnepi zsákmányra fáj a fogad? Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2017-2018-as téli felszerelés.",
"armorSpecialWinter2018WarriorText": "Csomagolópapír páncél",
@@ -589,7 +589,7 @@
"armorMystery201604Text": "Levélpáncél",
"armorMystery201604Notes": "Te is lehetsz egy kicsi, de félelmetes levélhalom. Nem változtat a tulajdonságaidon. 2016 áprilisi előfizetői tárgy.",
"armorMystery201605Text": "Masírozó lantos egyenruha",
- "armorMystery201605Notes": "Unlike the traditional bards who join adventuring parties, bards who join Habitican marching bands are known for grand parades, not dungeon raids. Confers no benefit. May 2016 Subscriber Item.",
+ "armorMystery201605Notes": "Tradícionális bárdokkal ellentétben akik kalandozó csapatokhoz csatlakoznak, azok a bárdok akik a Habitica masírozó zenekarához tartoznak nagy parádékról híresek nem pedig hadjáratokról. Nem változtat a tulajdonságaidon. 2016 májusi előfizetői tárgy.",
"armorMystery201606Text": "Fókatündér farokúszó",
"armorMystery201606Notes": "Ez az erős farokúszó úgy pompázik mint a tenger habjai a partnak csapódva. Nem változtat a tulajdonságaidon. 2016 júniusi előfieztői tárgy.",
"armorMystery201607Text": "Tengerfenéki tolvaj páncél",
@@ -741,7 +741,7 @@
"headSpecial0Text": "Szellemsisak",
"headSpecial0Notes": "Vér és hamu, láva és obszidián adják ennek a sisaknak a kinézetét és erejét. Növeli az intelligenciádat <%= int %> ponttal.",
"headSpecial1Text": "Kristálysisak",
- "headSpecial1Notes": "The favored crown of those who lead by example. Increases all Stats by <%= attrs %>.",
+ "headSpecial1Notes": "Azok fejét koronázza, akik példát mutatnak másoknak. Növeli az összes tulajdonságodat <%= attrs %> ponttal.",
"headSpecial2Text": "Névtelen sisak",
"headSpecial2Notes": "Egy testamentum azoknak, akik segítséget nyújtanak, miközben semmit sem kérnek cserébe. Növeli az intelligenciádat és az erődet <%= attrs %> ponttal.",
"headSpecialTakeThisText": "\"Take This\" sisak",
@@ -772,8 +772,8 @@
"headSpecialKabutoNotes": "Ez a sisak praktikus és gyönyörű! Elvonja ellenségeid figyelmét azzal, hogy csodálattal tölti el őket. Növeli az intelligenciádat <%= int %> ponttal.",
"headSpecialNamingDay2017Text": "Fejedelmi lila griff sisak",
"headSpecialNamingDay2017Notes": "Boldog névnapot! Viseld ezt az erős és tollas sisakot miközben a Habiticát ünnepled. Nem változtat a tulajdonságaidon.",
- "headSpecialTurkeyHelmBaseText": "Turkey Helm",
- "headSpecialTurkeyHelmBaseNotes": "Your Turkey Day look will be complete when you don this beaked helm! Confers no benefit.",
+ "headSpecialTurkeyHelmBaseText": "Pulyka sisak",
+ "headSpecialTurkeyHelmBaseNotes": "A Pulyka napi kinézetet teljes lesz, ha ezt a csőrös sisakot hordod! Nem változtat a tulajdonságaidon.",
"headSpecialNyeText": "Abszurd party süveg",
"headSpecialNyeNotes": "Megkaptad az abszurd party süveget! Viseld büszkén, miközben átlépsz az újévbe! Nem változtat a tulajdonságaidon.",
"headSpecialYetiText": "Jetiszelídítő sisak",
@@ -794,20 +794,20 @@
"headSpecialSpringHealerNotes": "Ez a korona lojalitást és bajtársiasságot szimbolizál. A kutya a kalandozó legjobb barátja ugyebár! Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2014-es tavaszi felszerelés.",
"headSpecialSummerRogueText": "Kalóz kalap",
"headSpecialSummerRogueNotes": "Csak a legeredményesebb kalózok hordhatják! Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2014-es nyári felszerelés.",
- "headSpecialSummerWarriorText": "Kalandor selyemkendő",
- "headSpecialSummerWarriorNotes": "Ez a puha és sós ruhadarab, megtölti a viselőjét erővel. Növeli az erődet <%= str %> ponttal. Limitált kiadású 2014-es nyári felszerelés.",
+ "headSpecialSummerWarriorText": "Kalandor fejkendő",
+ "headSpecialSummerWarriorNotes": "Ez a puha és csípős ruhadarab, erővel tölti fel viselőjét . Növeli az erődet <%= str %> ponttal. Limitált kiadású 2014-es nyári felszerelés.",
"headSpecialSummerMageText": "Moszatsapka",
- "headSpecialSummerMageNotes": "Mi lehetne mágikusabb egy hínárral borított sapkánál? Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2014-es nyári felszerelés.",
+ "headSpecialSummerMageNotes": "Mi lehetne varázslatosabb egy hínárral borított sapkánál? Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2014-es nyári felszerelés.",
"headSpecialSummerHealerText": "Korall korona",
- "headSpecialSummerHealerNotes": "A viselője képessé válik a sérült korallzátonyok meggyógyítására. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2014-es nyári felszerelés.",
- "headSpecialFallRogueText": "Vérvörös Csuklya",
- "headSpecialFallRogueNotes": "Egy Vámpír Sújtó kiléte mindig rejtve kell legyen. Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2014-es őszi felszerelés!",
- "headSpecialFallWarriorText": "A Tudomány Szörnyű Skalpja",
- "headSpecialFallWarriorNotes": "Ezt a sisakot csipázd! Csak ÉPPENHOGY használt. Növeli az erődet <%= str %> ponttal. Limitált kiadású 2014-es őszi felszerelés.",
+ "headSpecialSummerHealerNotes": "A képessé teszi viselőjét a sérült korallzátonyok meggyógyítására. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2014-es nyári felszerelés.",
+ "headSpecialFallRogueText": "Vérvörös csuklya",
+ "headSpecialFallRogueNotes": "Egy vámpírvadász kiléte mindig rejtve kell hogy legyen. Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2014-es őszi felszerelés.",
+ "headSpecialFallWarriorText": "A tudomány szörnyű skalpja",
+ "headSpecialFallWarriorNotes": "Ezt a sisakot figyeld! Csak ÉPPENHOGY használt. Növeli az erődet <%= str %> ponttal. Limitált kiadású 2014-es őszi felszerelés.",
"headSpecialFallMageText": "Hegyes kalap",
"headSpecialFallMageNotes": "Varázslat van beleszőve ennek a kalapnak minden fonalába. Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2014-es őszi felszerelés.",
- "headSpecialFallHealerText": "Géz fejre",
- "headSpecialFallHealerNotes": "Nagyon higiénikus és iszonyúan divatos. <%= int %> pontot ad az intelligenciához. Limitált kiadású 2014-es őszi felszerelés.",
+ "headSpecialFallHealerText": "Fejkötés",
+ "headSpecialFallHealerNotes": "Nagyon higiénikus és iszonyúan divatos. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2014-es őszi felszerelés.",
"headSpecialNye2014Text": "Idétlen party süveg",
"headSpecialNye2014Notes": "Megkaptad az idióta party süveget! Viseld büszkén, miközben átlépsz az Újévbe! Nem változtat a tulajdonságaidon.",
"headSpecialWinter2015RogueText": "Jégtüskés sárkány maszk",
@@ -826,22 +826,22 @@
"headSpecialSpring2015MageNotes": "Mi volt előbb, a nyuszi vagy a kalap? Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2015-ös tavaszi felszerelés.",
"headSpecialSpring2015HealerText": "Megnyugtató korona",
"headSpecialSpring2015HealerNotes": "A gyöngy ennek a koronának a közepén, megnyugtatja a körülötte lévőket. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2015-ös tavaszi felszerelés.",
- "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",
- "headSpecialSummer2015WarriorNotes": "Crafted of deep-ocean metal by the artisans of Dilatory, this helm is strong and handsome. Increases Strength by <%= str %>. Limited Edition 2015 Summer Gear.",
+ "headSpecialSummer2015RogueText": "Renegát kalap",
+ "headSpecialSummer2015RogueNotes": "Ez a kalóz kalap leesett a fedélzetről és tüzes korall darabokkal lett díszítve. Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2015-ös nyári felszerelés.",
+ "headSpecialSummer2015WarriorText": "Drágaköves óceáni sisak",
+ "headSpecialSummer2015WarriorNotes": "Ez a sisak, amelyet az óceán mélyéről származó fémekből kovácsoltak a Halogatás meseterei, erős ás csinos. Növeli az erődet <%= str %> ponttal. Limitált kiadású 2015-ös nyári felszerelés.",
"headSpecialSummer2015MageText": "A jósnő sálja",
- "headSpecialSummer2015MageNotes": "Hidden power shines in the threads of this scarf. Increases Perception by <%= per %>. Limited Edition 2015 Summer Gear.",
- "headSpecialSummer2015HealerText": "Sailor's Cap",
- "headSpecialSummer2015HealerNotes": "With your sailor's cap set firmly on your head, you can navigate even the stormiest seas! Increases Intelligence by <%= int %>. Limited Edition 2015 Summer Gear.",
+ "headSpecialSummer2015MageNotes": "Titokzatos erő ragyog ennek a sálnak a fonalaiból. Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2015-ös nyári felszerelés.",
+ "headSpecialSummer2015HealerText": "Tengerész sapka",
+ "headSpecialSummer2015HealerNotes": "A tengerész sapkáddal a fejeden, még a legviharosabb tengert is képes vagy navigálni! Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2015-ös nyári felszerelés.",
"headSpecialFall2015RogueText": "Dene-véres harci szárny",
- "headSpecialFall2015RogueNotes": "Echolocate your enemies with this powerful helm! Increases Perception by <%= per %>. Limited Edition 2015 Autumn Gear.",
- "headSpecialFall2015WarriorText": "Scarecrow Hat",
- "headSpecialFall2015WarriorNotes": "Everyone would want this hat--if they only had a brain. Increases Strength by <%= str %>. Limited Edition 2015 Autumn Gear.",
- "headSpecialFall2015MageText": "Stitched Hat",
- "headSpecialFall2015MageNotes": "Every stitch in this hat augments its power. Increases Perception by <%= per %>. Limited Edition 2015 Autumn Gear.",
+ "headSpecialFall2015RogueNotes": "Használj echolokációt hogy megtaláld az ellenfeleidet ezzel az erős fejfedővel! Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2015-ös őszi felszerelés.",
+ "headSpecialFall2015WarriorText": "Madárijesztő kalap",
+ "headSpecialFall2015WarriorNotes": "Mindenki ezt a kalapot akarná--hogyha volna eszük. Növeli az erődet <%= str %> ponttal. Limitált kiadású 2015-ös őszi felszerelés.",
+ "headSpecialFall2015MageText": "Varrott süveg",
+ "headSpecialFall2015MageNotes": "Ezen a süvegen lévő minden öltés növeli az erejét. Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2015-ös őszi felszerelés.",
"headSpecialFall2015HealerText": "A béka kalapja",
- "headSpecialFall2015HealerNotes": "This is an extremely serious hat that is worthy of only the most advanced potioners. Increases Intelligence by <%= int %>. Limited Edition 2015 Autumn Gear.",
+ "headSpecialFall2015HealerNotes": "Ez egy nagyon komoly kalap amit csak a legtapasztaltabb bájitalkészítők hordhatnak. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2015-ös őszi felszerelés.",
"headSpecialNye2015Text": "Nevetséges party süveg",
"headSpecialNye2015Notes": "Megkaptad a nevetséges party süveget! Viseld büszkén, miközben átlépsz az újévbe! Nem változtat a tulajdonságaidon.",
"headSpecialWinter2016RogueText": "Kakaó sisak",
@@ -860,24 +860,24 @@
"headSpecialSpring2016MageNotes": "Ruhadarab, ami segít kiemelkedned a közönséges mágusok közül. Növeli az erődet <%= per %> ponttal. Limitált kiadású 2016-os tavaszi felszerelés.",
"headSpecialSpring2016HealerText": "Virág diadém",
"headSpecialSpring2016HealerNotes": "Új élet születésének lehetőségével csillog. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2016-os tavaszi felszerelés.",
- "headSpecialSummer2016RogueText": "Eel Helm",
- "headSpecialSummer2016RogueNotes": "Peek out from rocky crevices while wearing this stealthy helm. Increases Perception by <%= per %>. Limited Edition 2016 Summer Gear.",
- "headSpecialSummer2016WarriorText": "Shark Helmet",
- "headSpecialSummer2016WarriorNotes": "Bite those tough tasks with this fearsome helm! Increases Strength by <%= str %>. Limited Edition 2016 Summer Gear.",
- "headSpecialSummer2016MageText": "Blowspout Hat",
- "headSpecialSummer2016MageNotes": "Magical water constantly sprays from this hat. Increases Perception by <%= per %>. Limited Edition 2016 Summer Gear.",
+ "headSpecialSummer2016RogueText": "Angolna sisak",
+ "headSpecialSummer2016RogueNotes": "Less ki a sziklák rései között miközben ezt a rejtőzködő sisakot hordod. Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2016-os nyári felszerelés.",
+ "headSpecialSummer2016WarriorText": "Cápa sisak",
+ "headSpecialSummer2016WarriorNotes": "Harapd meg azokat a nehéz feladatokat ezzel a félelmetes sisakkal! Növeli az erődet <%= str %> ponttal. Limitált kiadású 2016-os nyári felszerelés.",
+ "headSpecialSummer2016MageText": "Cet orrnyílás kalap",
+ "headSpecialSummer2016MageNotes": "Mágikus víz folyamatosan spriccel ebből a kalapból. Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2016-os nyári felszerelés.",
"headSpecialSummer2016HealerText": "Csikóhal sisak",
- "headSpecialSummer2016HealerNotes": "This helm indicates that the wearer was trained by the magical healing seahorses of Dilatory. Increases Intelligence by <%= int %>. Limited Edition 2016 Summer Gear.",
- "headSpecialFall2016RogueText": "Black Widow Helm",
- "headSpecialFall2016RogueNotes": "The legs on this helm are constantly twitching. Increases Perception by <%= per %>. Limited Edition 2016 Autumn Gear.",
- "headSpecialFall2016WarriorText": "Gnarled Bark Helm",
- "headSpecialFall2016WarriorNotes": "This swamp-sogged helm is covered with bits of bog. Increases Strength by <%= str %>. Limited Edition 2016 Autumn Gear.",
- "headSpecialFall2016MageText": "Hood of Wickedness",
- "headSpecialFall2016MageNotes": "Conceal your plotting beneath this shadowy hood. Increases Perception by <%= per %>. Limited Edition 2016 Autumn Gear.",
- "headSpecialFall2016HealerText": "Medusa's Crown",
- "headSpecialFall2016HealerNotes": "Woe to anyone who looks you in the eyes... Increases Intelligence by <%= int %>. Limited Edition 2016 Autumn Gear.",
+ "headSpecialSummer2016HealerNotes": "Ez a sisak arra utal, hogy viselőjét a Halogatás mágikus gyógyító csikóhalai képezték ki. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2016-os nyári felszerelés.",
+ "headSpecialFall2016RogueText": "Fekete özvegy sisak",
+ "headSpecialFall2016RogueNotes": "Ezen a sisakon lévő lábak folyamatosan rángatóznak. Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2016-os őszi felszerelés.",
+ "headSpecialFall2016WarriorText": "Bütykös kéregsisak",
+ "headSpecialFall2016WarriorNotes": "Ez a mocsaras sisak iszapdarabokkal van beborítva. Növeli az erődet <%= str %> ponttal. Limitált kiadású 2016-os őszi felszerelés.",
+ "headSpecialFall2016MageText": "A gonoszság csuklyája",
+ "headSpecialFall2016MageNotes": "Titkold el cselszövéseidet ezalatt a homályba burkolózott csuklya alatt. Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2016-os őszi felszerelés.",
+ "headSpecialFall2016HealerText": "Medúza koronája",
+ "headSpecialFall2016HealerNotes": "Jaj mindenkire aki a szemedbe mer nézni... Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2016-os őszi felszerelés.",
"headSpecialNye2016Text": "Hóbortos party süveg",
- "headSpecialNye2016Notes": "Megkaptad a hóbortos őarty süveget! Viseld büszkén, miközben átlépsz az újévbe! Nem változtat a tulajdonságaidon.",
+ "headSpecialNye2016Notes": "Megkaptad a hóbortos party süveget! Viseld büszkén, miközben átlépsz az újévbe! Nem változtat a tulajdonságaidon.",
"headSpecialWinter2017RogueText": "Jeges sisak",
"headSpecialWinter2017RogueNotes": "Ez a sisak, melyet jégkristályokból formáztak, segít abban hogy észrevétlenül utazz téli vidékeken. Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2016-2017-es téli felszerelés.",
"headSpecialWinter2017WarriorText": "Jéghokis sisak",
@@ -895,23 +895,23 @@
"headSpecialSpring2017HealerText": "Virágszirom diadém",
"headSpecialSpring2017HealerNotes": "Ez a törékeny korona a közelgő tavasz virágainak illatát árasztja magából. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2017-es tavaszi felszerelés.",
"headSpecialSummer2017RogueText": "Tengeri sárkány sisak",
- "headSpecialSummer2017RogueNotes": "This helm changes colors to help you blend in with your surroundings. Increases Perception by <%= per %>. Limited Edition 2017 Summer Gear.",
- "headSpecialSummer2017WarriorText": "Sandcastle Helm",
- "headSpecialSummer2017WarriorNotes": "The finest helm anyone could hope to wear... at least, until the tide comes in. Increases Strength by <%= str %>. Limited Edition 2017 Summer Gear.",
- "headSpecialSummer2017MageText": "Az örvény kaalapja",
- "headSpecialSummer2017MageNotes": "This hat is composed entirely of a swirling, inverted whirlpool. Increases Perception by <%= per %>. Limited Edition 2017 Summer Gear.",
- "headSpecialSummer2017HealerText": "Crown of Sea Creatures",
- "headSpecialSummer2017HealerNotes": "This helm is made up of friendly sea creatures who are temporarily resting on your head, giving you sage advice. Increases Intelligence by <%= int %>. Limited Edition 2017 Summer Gear.",
- "headSpecialFall2017RogueText": "Jack-o-Lantern Helm",
- "headSpecialFall2017RogueNotes": "Ready for treats? Time to don this festive, glowing helm! Increases Perception by <%= per %>. Limited Edition 2017 Autumn Gear.",
- "headSpecialFall2017WarriorText": "Candy Corn Helm",
- "headSpecialFall2017WarriorNotes": "This helm might look like a treat, but wayward tasks won't find it so sweet! Increases Strength by <%= str %>. Limited Edition 2017 Autumn Gear.",
- "headSpecialFall2017MageText": "Masquerade Helm",
- "headSpecialFall2017MageNotes": "When you appear in this feathery hat, everyone will be left guessing the identity of the magical stranger in the room! Increases Perception by <%= per %>. Limited Edition 2017 Autumn Gear.",
- "headSpecialFall2017HealerText": "Haunted House Helm",
- "headSpecialFall2017HealerNotes": "Invite spooky spirits and friendly creatures to seek your healing powers in this helm! Increases Intelligence by <%= int %>. Limited Edition 2017 Autumn Gear.",
- "headSpecialNye2017Text": "Fanciful Party Hat",
- "headSpecialNye2017Notes": "You've received a Fanciful Party Hat! Wear it with pride while ringing in the New Year! Confers no benefit.",
+ "headSpecialSummer2017RogueNotes": "Ez a sisak színváltó, hogy segítsen beleolvadni a környezetedbe. Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2017-es nyári felszerelés.",
+ "headSpecialSummer2017WarriorText": "Homokvár sisak",
+ "headSpecialSummer2017WarriorNotes": "A legpompásabb sisak amit bárki szívesen viselne... legalábbis amíg nem jön a dagály. Növeli az erődet <%= str %> ponttal. Limitált kiadású 2017-es nyári felszerelés.",
+ "headSpecialSummer2017MageText": "Az örvény kalapja",
+ "headSpecialSummer2017MageNotes": "Ez az egész sapka visszafelé kavargó örvényekből készült. Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2017-es nyári felszerelés.",
+ "headSpecialSummer2017HealerText": "Tengeri lények koronája",
+ "headSpecialSummer2017HealerNotes": "Ezt a koronát barátságos tengeri lények alkotják, akik ideiglenesen a fejeden pihennek, miközben bölcs tanáccsal látnak el. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2017-es nyári felszerelés.",
+ "headSpecialFall2017RogueText": "Töklámpás sisak",
+ "headSpecialFall2017RogueNotes": "Készen állsz a finom falatokra? Itt az idő hogy felvedd ezt az ünnepi, izzó sisakot! Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2017-es őszi felszerelés.",
+ "headSpecialFall2017WarriorText": "Selyemcukor sisak",
+ "headSpecialFall2017WarriorNotes": "Ez a sisak habár finom falatnak tűnik, de az önfejű feladatok nem fogják olyan finomnak találni! Növeli az erődet <%= str %> ponttal. Limitált kiadású 2017-es őszi felszerelés.",
+ "headSpecialFall2017MageText": "Álarcosbáli kalap",
+ "headSpecialFall2017MageNotes": "Amikor megjelensz ebben a tollas kalapban, mindenki azt fogja találgatni hogy ki ez a varázslatos idegen! Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2017-es őszi felszerelés.",
+ "headSpecialFall2017HealerText": "Kísértetház sisak",
+ "headSpecialFall2017HealerNotes": "Hívj meg ijesztő szellemeket és barátságos lényeket akik a sisakod gyógyító erejét keresik. Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2017-es őszi felszerelés.",
+ "headSpecialNye2017Text": "Furcsa party süveg",
+ "headSpecialNye2017Notes": "Megkaptad a furcsa party süveget! Viseld büszkén, miközben átlépsz az újévbe! Nem változtat a tulajdonságaidon.",
"headSpecialWinter2018RogueText": "Rénszarvas sisak",
"headSpecialWinter2018RogueNotes": "A tökéletes ünnepi álca beépített fényszóróval! Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2017-2018-as téli felszerelés.",
"headSpecialWinter2018WarriorText": "Ajándékdoboz sisak",
@@ -920,8 +920,8 @@
"headSpecialWinter2018MageNotes": "Készen állsz egy igazán különleges varázslatra? Ez a csillogó kalap kétségtelenül felerősíti a varázsigéidet! Növeli az észlelésedet <%= per %> ponttal. Limitált kiadású 2017-2018-as téli felszerelés.",
"headSpecialWinter2018HealerText": "Fagyöngy csuklya",
"headSpecialWinter2018HealerNotes": "Ez az elegáns csuklya melegen tart vidám ünnepi érzésekkel! Növeli az intelligenciádat <%= int %> ponttal. Limitált kiadású 2017-2018-as téli felszerelés.",
- "headSpecialGaymerxText": "Szívárványos harcisisak",
- "headSpecialGaymerxNotes": "In celebration of the GaymerX Conference, this special helmet is decorated with a radiant, colorful rainbow pattern! GaymerX is a game convention celebrating LGTBQ and gaming and is open to everyone.",
+ "headSpecialGaymerxText": "Szívárványos harci sisak",
+ "headSpecialGaymerxNotes": "A GaymerX Konferencia ünnepléseként ez a különleges sisak a szívárvány minden színében pompázik! A GaymerX egy játék konferencia, ami az LGBTQ közösséget ünnepli a játékvilágban, valamint elérhető mindenki számára.",
"headMystery201402Text": "Szárnyas sisak",
"headMystery201402Notes": "Ez a szárnyas diadém szélsebessé tesz! Nem változtat a tulajdonságaidon. 2014 februári előfizetői tárgy.",
"headMystery201405Text": "Az elme lángja",
@@ -957,7 +957,7 @@
"headMystery201604Text": "Virágkorona",
"headMystery201604Notes": "Ezek az összefűzött virágok meglepően erős sisakot alkotnak. Nem változtat a tulajdonságaidon. 2016 áprilisi előfizetői tárgy.",
"headMystery201605Text": "Masírozó lantos süveg",
- "headMystery201605Notes": "Seventy-six dragons led the big parade, with a hundred and ten gryphons close at hand! Confers no benefit. May 2016 Subscriber Item.",
+ "headMystery201605Notes": "Hatvanhét sárkány vezette a nagy parádét, száztíz griffmadár szorosan követve őket! Nem változtat a tulajdonságaidon. 2016 májusi előfizetői tárgy.",
"headMystery201606Text": "Fókatündér sapka",
"headMystery201606Notes": "Dúdold az óceán dallamát miközben elvegyülsz a mulatozó fókák között. Nem változtat a tulajdonságaidon. 2016 júniusi előfizetői tárgy.",
"headMystery201607Text": "Tengerfenéki tolvaj sisak",
@@ -1101,7 +1101,7 @@
"shieldSpecial0Text": "A gyötrelem koponyája",
"shieldSpecial0Notes": "A halál függönyén túli rémeket mutat az ellenségeidnek, hogy féljenek. Növeli az észlelésedet <%= per %> ponttal.",
"shieldSpecial1Text": "Kristálypajzs",
- "shieldSpecial1Notes": "Shatters arrows and deflects the words of naysayers. Increases all Stats by <%= attrs %>.",
+ "shieldSpecial1Notes": "Összezúzza a nyilakat és visszaveri a pesszimisták szavait. Növeli az összes tulajdonságodat <%= attrs %> ponttal.",
"shieldSpecialTakeThisText": "\"Take This\" pajzs",
"shieldSpecialTakeThisNotes": "Ezt a pajzsot azért érdemelted ki, mert részt vettél a 'Take This' által szponzorált kihívásban. Gratulálunk! Növeli az összes tulajdonságodat <%= attrs %> ponttal.",
"shieldSpecialGoldenknightText": "Mustaine mérföldkő zúzó tüskés buzogánya",
@@ -1132,13 +1132,13 @@
"shieldSpecialSpringHealerNotes": "Visszataszítóan kezd csipogni, amikor megcsapják, elüldözve ellenségeidet. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2014-es tavaszi felszerelés.",
"shieldSpecialSummerRogueText": "Kalóz vadászkés",
"shieldSpecialSummerRogueNotes": "Elég! Azok a napi feladatok hamar a tengerben kötnek majd ki! Növeli az erődet <%= str %> ponttal. Limitált kiadású 2014-es nyári felszerelés.",
- "shieldSpecialSummerWarriorText": "Uszadékfa Pajzs",
+ "shieldSpecialSummerWarriorText": "Uszadékfa pajzs",
"shieldSpecialSummerWarriorNotes": "Ez az elsüllyedt hajók fájából készült pajzs még a legviharosabb napi feladataidat is elrettenti. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2014-es nyári felszerelés.",
"shieldSpecialSummerHealerText": "A zátony pajzsa",
"shieldSpecialSummerHealerNotes": "Senki nem meri majd megtámadni a korallzátonyt, ezzel a fényes pajzzsal szemben! Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2014-es nyári felszerelés.",
"shieldSpecialFallRogueText": "Ezüst karó",
- "shieldSpecialFallRogueNotes": "Elteheted vele az előholtakat láb alól. Bónuszt ad vérfarkasok ellen is, mert sosem lehetsz elég óvatos. <%= str %> pontot ad az erőhöz. Limitált kiadású 2014-es őszi felszerelés.",
- "shieldSpecialFallWarriorText": "A Tudomány Erős Főzete",
+ "shieldSpecialFallRogueNotes": "Elteheted vele az élőholtakat láb alól. Bónuszt ad vérfarkasok ellen is, mert sosem lehetsz elég óvatos. Növeli az erődet <%= str %> ponttal. Limitált kiadású 2014-es őszi felszerelés.",
+ "shieldSpecialFallWarriorText": "A tudomány erős főzete",
"shieldSpecialFallWarriorNotes": "Rejtélyesen ráömlik a laborköpenyekre. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2014-es őszi felszerelés.",
"shieldSpecialFallHealerText": "Ékköves pajzs",
"shieldSpecialFallHealerNotes": "Ezt a csillogó pajzsot egy ősi sírban találták. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2014-es őszi felszerelés.",
@@ -1156,16 +1156,16 @@
"shieldSpecialSpring2015HealerNotes": "Pihentesd a fejedet ezen a puha párnán, vagy küzdj meg ellene félelmetes karmaiddal. Rawr! Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2015-ös tavaszi felszerelés.",
"shieldSpecialSummer2015RogueText": "Tüzes korall",
"shieldSpecialSummer2015RogueNotes": "Ez a tűzkorall családjába tartozó korall képes arra hogy a mérgét a vízen keresztül hajtsa. Növeli az erődet <%= str %> ponttal. Limitált kiadású 2015-ös nyári felszerelés.",
- "shieldSpecialSummer2015WarriorText": "Kardhal pajzs",
- "shieldSpecialSummer2015WarriorNotes": "Crafted of deep-ocean metal by the artisans of Dilatory, this shield shines like the sand and the sea. Increases Constitution by <%= con %>. Limited Edition 2015 Summer Gear.",
- "shieldSpecialSummer2015HealerText": "Strapping Shield",
- "shieldSpecialSummer2015HealerNotes": "Use this shield to bash away bilge rats. Increases Constitution by <%= con %>. Limited Edition 2015 Summer Gear.",
- "shieldSpecialFall2015RogueText": "Dene-véres fejsze",
- "shieldSpecialFall2015RogueNotes": "Fearsome To-Dos cower before the flapping of this ax. Increases Strength by <%= str %>. Limited Edition 2015 Autumn Gear.",
- "shieldSpecialFall2015WarriorText": "Birdseed Bag",
- "shieldSpecialFall2015WarriorNotes": "It's true that you're supposed to be SCARING the crows, but there's nothing wrong with making friends! Increases Constitution by <%= con %>. Limited Edition 2015 Autumn Gear.",
- "shieldSpecialFall2015HealerText": "Stirring Stick",
- "shieldSpecialFall2015HealerNotes": "This stick can stir anything without melting, dissolving, or bursting into flame! It can also be used to fiercely poke enemy tasks. Increases Constitution by <%= con %>. Limited Edition 2015 Autumn Gear.",
+ "shieldSpecialSummer2015WarriorText": "Holdhal pajzs",
+ "shieldSpecialSummer2015WarriorNotes": "Ez a pajzs, amelyet az óceán mélyéről származó fémekből kovácsoltak a Halogatás meseterei, úgy ragyog mint a homok és a tenger. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2015-ös nyári felszerelés.",
+ "shieldSpecialSummer2015HealerText": "Szíjjas pajzs",
+ "shieldSpecialSummer2015HealerNotes": "Használd ezt a pajzsot hogy eltángáld a hajófenékben rejtőző patkányokat. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2015-ös nyári felszerelés.",
+ "shieldSpecialFall2015RogueText": "Dene-véres harci fejsze",
+ "shieldSpecialFall2015RogueNotes": "A félelmetes tennivalók is elbújnak ha ezt a fejszét megsuhintják. Növeli az erődet <%= str %> ponttal. Limitált kiadású 2015-ös őszi felszerelés.",
+ "shieldSpecialFall2015WarriorText": "Madáreledeles zsák",
+ "shieldSpecialFall2015WarriorNotes": "Igaz hogy a madarakat IJESZTGETNED kellene, de nincs azzal semmi baj hogy barátokat akarsz szerezni! Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2015-ös őszi felszerelés. ",
+ "shieldSpecialFall2015HealerText": "Keverő bot",
+ "shieldSpecialFall2015HealerNotes": "Ezzel a bottal bármit lehet kavarni anélkül hogy elolvadna, megsemmisülne vagy lángokba borulna! Ádáz feladatok megbökéséhez is használható. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2015-ös őszi felszerelés. ",
"shieldSpecialWinter2016RogueText": "Kakaós bögre",
"shieldSpecialWinter2016RogueNotes": "Meleg ital vagy perzselő muníció? Te döntesz... Növeli az erődet <%= str %> ponttal. Limitált kiadású 2015-2016-os téli felszerelés. ",
"shieldSpecialWinter2016WarriorText": "Szánkó pajzs",
@@ -1180,16 +1180,16 @@
"shieldSpecialSpring2016HealerNotes": "Az április bolondja szerint ez a kis pajzs kivédi a csillogó magokat. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2016-os tavaszi felszerelés.",
"shieldSpecialSummer2016RogueText": "Elektromos rúd",
"shieldSpecialSummer2016RogueNotes": "Bárki aki meg akar veled küzdeni számíthat egy felvillanyozó meglepetésre... Növeli az erődet <%= str %> ponttal. Limitált kiadású 2016-os nyári felszerelés. ",
- "shieldSpecialSummer2016WarriorText": "Shark Tooth",
- "shieldSpecialSummer2016WarriorNotes": "Bite those tough tasks with this toothy shield! Increases Constitution by <%= con %>. Limited Edition 2016 Summer Gear.",
- "shieldSpecialSummer2016HealerText": "Sea Star Shield",
- "shieldSpecialSummer2016HealerNotes": "Sometimes mistakenly called a Starfish Shield. Increases Constitution by <%= con %>. Limited Edition 2016 Summer Gear.",
+ "shieldSpecialSummer2016WarriorText": "Cápafog",
+ "shieldSpecialSummer2016WarriorNotes": "Üsd ki azokat a nehéz feladatokat ezzel a fogas pajzzsal. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2016-os nyári felszerelés.",
+ "shieldSpecialSummer2016HealerText": "Tengeri csillag pajzs",
+ "shieldSpecialSummer2016HealerNotes": "Néha tévesen tengericsillag pajzsnak nevezik. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2016-os nyári felszerelés.",
"shieldSpecialFall2016RogueText": "A pókcsípés tőre",
- "shieldSpecialFall2016RogueNotes": "Feel the sting of the spider's bite! Increases Strength by <%= str %>. Limited Edition 2016 Autumn Gear.",
- "shieldSpecialFall2016WarriorText": "Defensive Roots",
- "shieldSpecialFall2016WarriorNotes": "Defend against Dailies with these writhing roots! Increases Constitution by <%= con %>. Limited Edition 2016 Autumn Gear.",
- "shieldSpecialFall2016HealerText": "Gorgon Shield",
- "shieldSpecialFall2016HealerNotes": "Don't admire your own reflection in this. Increases Constitution by <%= con %>. Limited Edition 2016 Autumn Gear.",
+ "shieldSpecialFall2016RogueNotes": "Érezd mennyire csíp a pók harapása! Növeli az erődet <%= str %> ponttal. Limitált kiadású 2016-os őszi felszerelés.",
+ "shieldSpecialFall2016WarriorText": "Védelmező gyökerek",
+ "shieldSpecialFall2016WarriorNotes": "Védd meg magad a napi feladatokkal szemben ezekkel a tekeredő gyökerekkel! Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2016-os őszi felszerelés.",
+ "shieldSpecialFall2016HealerText": "Gorgó pajzs",
+ "shieldSpecialFall2016HealerNotes": "Ebben ne csodáld a saját tükörképedet. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2016-os őszi felszerelés.",
"shieldSpecialWinter2017RogueText": "Jégfejsze",
"shieldSpecialWinter2017RogueNotes": "Ez a fejsze hasznos támadáshoz, védekezéshez, valamint jégmászáshoz! Növeli az erődet <%= str %> ponttal. Limitált kiadású 2016-2017-es téli felszerelés.",
"shieldSpecialWinter2017WarriorText": "Korong pajzs",
@@ -1203,17 +1203,17 @@
"shieldSpecialSpring2017HealerText": "Kosár pajzs",
"shieldSpecialSpring2017HealerNotes": "Védelmet biztosít, valamint arra is jól jön hogy a gyógyfüveidet és a páncélzatodat tárold benne. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2017-es tavaszi felszerelés.",
"shieldSpecialSummer2017RogueText": "Tengeri sárkány uszony",
- "shieldSpecialSummer2017RogueNotes": "The edges of these fins are razor-sharp. Increases Strength by <%= str %>. Limited Edition 2017 Summer Gear.",
- "shieldSpecialSummer2017WarriorText": "Scallop Shield",
- "shieldSpecialSummer2017WarriorNotes": "This shell that you just found is both decorative AND defensive! Increases Constitution by <%= con %>. Limited Edition 2017 Summer Gear.",
- "shieldSpecialSummer2017HealerText": "Oyster Shield",
- "shieldSpecialSummer2017HealerNotes": "This magical oyster constantly generates pearls as well as protection. Increases Constitution by <%= con %>. Limited Edition 2017 Summer Gear.",
- "shieldSpecialFall2017RogueText": "Candied Apple Mace",
- "shieldSpecialFall2017RogueNotes": "Defeat your foes with sweetness! Increases Strength by <%= str %>. Limited Edition 2017 Autumn Gear.",
- "shieldSpecialFall2017WarriorText": "Candy Corn Shield",
- "shieldSpecialFall2017WarriorNotes": "This candy shield has mighty protective powers, so try not to nibble on it! Increases Constitution by <%= con %>. Limited Edition 2017 Autumn Gear.",
- "shieldSpecialFall2017HealerText": "Haunted Orb",
- "shieldSpecialFall2017HealerNotes": "This orb occasionally screeches. We're sorry, we're not sure why. But it sure looks nifty! Increases Constitution by <%= con %>. Limited Edition 2017 Autumn Gear.",
+ "shieldSpecialSummer2017RogueNotes": "Ennek az uszonynak a széle pengeéles. Növeli az erődet <%= str %> ponttal. Limitált kiadású 2017-es nyári felszerelés.",
+ "shieldSpecialSummer2017WarriorText": "Kagyló pajzs",
+ "shieldSpecialSummer2017WarriorNotes": "Ez a kagyló amit most találtál dekoratív is ÉS védelmet is biztosít. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2017-es nyári felszerelés.",
+ "shieldSpecialSummer2017HealerText": "Osztriga pajzs",
+ "shieldSpecialSummer2017HealerNotes": "Eza mágikus osztriga folyamatosan állít elő gyöngyöket valamint védelmet is biztosít. Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2017-es nyári felszerelés.",
+ "shieldSpecialFall2017RogueText": "Kandírozott alma buzogány",
+ "shieldSpecialFall2017RogueNotes": "Győzd le ellenfeleidet édességgel! Növeli az erődet <%= str %> ponttal. Limitált kiadású 2017-es őszi felszerelés.",
+ "shieldSpecialFall2017WarriorText": "Selyemcukor pajzs",
+ "shieldSpecialFall2017WarriorNotes": "Ez a cukor pajzs hatalmas védelmező erővel bír, ezért próbáld meg nem majszolni! Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2017-es őszi felszerelés.",
+ "shieldSpecialFall2017HealerText": "Kísértetjárta gömb",
+ "shieldSpecialFall2017HealerNotes": "Ez a gömb időnként elkezd sikítozni. Ne haragudj, nem tudjuk hogy miért. De az biztos hogy klasszul néz ki! Növeli a szívósságodat <%= con %> ponttal. Limitált kiadású 2017-es őszi felszerelés.",
"shieldSpecialWinter2018RogueText": "Borsmenta kampó",
"shieldSpecialWinter2018RogueNotes": "Tökéletes falak megmászására, vagy az ellenfeleid édes cukorkával való összezavarására. Növeli az erődet <%= str %> ponttal. Limitált kiadású 2017-2018-as téli felszerelés.",
"shieldSpecialWinter2018WarriorText": "Varázslatos ajándékzsák",
@@ -1311,9 +1311,9 @@
"backSpecialSnowdriftVeilText": "Hófuvat fátyol",
"backSpecialSnowdriftVeilNotes": "Ettől az átlátszó fátyoltól úgy nézel ki mintha kavargó hó venne körül! Nem változtat a tulajdonságaidon.",
"backSpecialAetherCloakText": "Éterköpeny",
- "backSpecialAetherCloakNotes": "This cloak once belonged to the Lost Masterclasser herself. Increases Perception by <%= per %>.",
- "backSpecialTurkeyTailBaseText": "Turkey Tail",
- "backSpecialTurkeyTailBaseNotes": "Wear your noble Turkey Tail with pride while you celebrate! Confers no benefit.",
+ "backSpecialAetherCloakNotes": "Ez a palást egyszer az elveszett kasztmester birtokában volt. Növeli az észlelésedet <%= per %> ponttal.",
+ "backSpecialTurkeyTailBaseText": "Pulyka farok",
+ "backSpecialTurkeyTailBaseNotes": "Viseld büszkén ezt a nemes pulyka farkat amíg ünnepelsz! Nem változtat a tulajdonságaidon.",
"body": "Test kiegészítő",
"bodyCapitalized": "Test kiegészítő",
"bodyBase0Text": "Nincs test kiegésztő",
@@ -1327,19 +1327,19 @@
"bodySpecialTakeThisText": "\"Take This\" vállpáncél",
"bodySpecialTakeThisNotes": "Ezt a vállpáncélt azért érdemelted ki, mert részt vettél a 'Take This' által szponzorált kihívásban. Gratulálunk! Növeli az összes tulajdonságodat <%= attrs %> ponttal.",
"bodySpecialAetherAmuletText": "Éter amulett",
- "bodySpecialAetherAmuletNotes": "This amulet has a mysterious history. Increases Constitution and Strength by <%= attrs %> each.",
+ "bodySpecialAetherAmuletNotes": "Ennek az amulettnek titokzatos története van. Növeli a szívósságodat és az erődet <%= attrs %> ponttal.",
"bodySpecialSummerMageText": "Csillogó kis köpeny",
"bodySpecialSummerMageNotes": "Sem sósvíztől, sem édesvíztől nem lesz patinás ez a fémes kis köpeny. Nem változtat a tulajdonságaidon. Limitált kiadású 2014-es nyári felszerelés.",
"bodySpecialSummerHealerText": "Korall nyaklánc",
- "bodySpecialSummerHealerNotes": "Stílusos nyaklánc élő korallból. Nem változtat a tulajdonságaidon. Limitált kiadású 2014-es nyári felszerelés.",
- "bodySpecialSummer2015RogueText": "Renegade Sash",
- "bodySpecialSummer2015RogueNotes": "You can't be a true Renegade without panache... and a sash. Confers no benefit. Limited Edition 2015 Summer Gear.",
- "bodySpecialSummer2015WarriorText": "Oceanic Spikes",
- "bodySpecialSummer2015WarriorNotes": "Each spike drips jellyfish venom, defending the wearer. Confers no benefit. Limited Edition 2015 Summer Gear.",
+ "bodySpecialSummerHealerNotes": "Stílusos nyaklánc élő korallból! Nem változtat a tulajdonságaidon. Limitált kiadású 2014-es nyári felszerelés.",
+ "bodySpecialSummer2015RogueText": "Renegát selyemöv",
+ "bodySpecialSummer2015RogueNotes": "Nem lehetsz igazi renegát magabiztosság nélkül... és egy selyemöv nélkül. Nem változtat a tulajdonságaidon. Limitált kiadású 2015-ös nyári felszerelés.",
+ "bodySpecialSummer2015WarriorText": "Óceáni tüskék",
+ "bodySpecialSummer2015WarriorNotes": "Mindegyik tüske medúzaméregtől csöpög, ami megvédi a viselőjét. Limitált kiadású 2015-ös nyári felszerelés.",
"bodySpecialSummer2015MageText": "Arany csat",
- "bodySpecialSummer2015MageNotes": "This buckle adds no power at all, but it's shiny. Confers no benefit. Limited Edition 2015 Summer Gear.",
- "bodySpecialSummer2015HealerText": "Sailor's Neckerchief",
- "bodySpecialSummer2015HealerNotes": "Yo ho ho? No, no, no! Confers no benefit. Limited Edition 2015 Summer Gear.",
+ "bodySpecialSummer2015MageNotes": "Ebben a csatban semmilyen erő nem rejtőzik, csak fényesnek néz ki. Limitált kiadású 2015-ös nyári felszerelés.",
+ "bodySpecialSummer2015HealerText": "Tengerész sál",
+ "bodySpecialSummer2015HealerNotes": "Ho ho hó? Ne, ne, ne! Nem változtat a tulajdonságaidon. Limitált kiadású 2015-ös nyári felszerelés.",
"bodyMystery201705Text": "Redős tollas harci szárny",
"bodyMystery201705Notes": "Ezek a redős szárnyak nemcsak divatosak, de a felruháznak a griffmadár gyorsaságával és mozgékonyságával! Nem változtat a tulajdonságaidon. 2017 májusi előfizetői tárgy.",
"bodyMystery201706Text": "Rongyos kalóz köpeny",
@@ -1438,11 +1438,11 @@
"eyewearSpecialYellowTopFrameNotes": "Sárga félkeretes szemüveg. Nem változtat a tulajdonságaidon.",
"eyewearSpecialAetherMaskText": "Éter maszk",
"eyewearSpecialAetherMaskNotes": "Ennek a maszknak titokzatos története van. Növeli az intelligenciádat <%= int %> ponttal. ",
- "eyewearSpecialSummerRogueText": "Huncut szemkötő",
+ "eyewearSpecialSummerRogueText": "Bohókás szemkötő",
"eyewearSpecialSummerRogueNotes": "Nem kell csibésznek lenned, hogy meglásd ez mennyire stílusos. Nem változtat a tulajdonságaidon. Limitált kiadású 2014-es nyári felszerelés.",
- "eyewearSpecialSummerWarriorText": "Káprázatos Szemkötő",
+ "eyewearSpecialSummerWarriorText": "Káprázatos szemkötő",
"eyewearSpecialSummerWarriorNotes": "Nem kell egy senkiházinak lenned, hogy meglásd ez mennyire stílusos! Nem változtat a tulajdonságaidon. Limitált kiadású 2014-es nyári felszerelés.",
- "eyewearSpecialWonderconRedText": "Tekintélyes Maszk",
+ "eyewearSpecialWonderconRedText": "Tekintélyes maszk",
"eyewearSpecialWonderconRedNotes": "Milyen erős arcfelszerelés! Nem változtat a tulajdonságaidon. Külön kiadású tárgy.",
"eyewearSpecialWonderconBlackText": "Trükkös maszk",
"eyewearSpecialWonderconBlackNotes": "Az indítékaid határozottan törvényesek. Nem változtat a tulajdonságaidon. Külön kiadású tárgy.",
diff --git a/website/common/locales/hu/groups.json b/website/common/locales/hu/groups.json
index b6d1e038f4..26a4b4ec2f 100644
--- a/website/common/locales/hu/groups.json
+++ b/website/common/locales/hu/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "Would you like to participate?",
"managerAdded": "Manager added successfully",
"managerRemoved": "Manager removed successfully",
- "leaderChanged": "Leader has been changed"
+ "leaderChanged": "Leader has been changed",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/hu/limited.json b/website/common/locales/hu/limited.json
index c3eac3685a..841762d73a 100644
--- a/website/common/locales/hu/limited.json
+++ b/website/common/locales/hu/limited.json
@@ -11,7 +11,7 @@
"aquaticFriends": "Vízi barátok",
"aquaticFriendsText": "Csapattársaid <%= count %> alkalommal locsoltak le.",
"valentineCard": "Valentin-napi képeslap",
- "valentineCardExplanation": "Amiért mindketten elviseltétek ezt a mézes-mázas verset, mindkettek megkapjátok a \"Cuki barátok\" kitüntetést!",
+ "valentineCardExplanation": "Amiért mindketten elviseltétek ezt a mézes-mázas verset, mindketten megkapjátok a \"Cuki barátok\" kitüntetést!",
"valentineCardNotes": "Küldj egy Valentin-napi képeslapot az egyik csapattagodnak.",
"valentine0": "\"A rózsák veresek\n\na Napijaim kékesek\n\nörülök, hogy veled együtt\n\negy csapatban lehetek.\"",
"valentine1": "\"A rózsák veresek\n\na violák szépek\n\nvessünk együtt\n\nA rossz szokásoknak véget.\"",
@@ -35,97 +35,97 @@
"seasonalShopWinterText": "Happy Winter Wonderland!! Would you like to buy some rare items? They’ll only be available until January 31st!",
"seasonalShopFallTextBroken": "Oh... Üdvözöllek az szezonális boltban... Nyári szezonális áruink sorakoznak itt, vagy mi... Minden amit itt látsz megvásárolható az Őszi Kiszállásunk alatt. de csupán július 31-ig vagyunk nyitva...Szerintem menny biztosra és szerezd meg amire szükséged van, vagy várnod kell még... várnod kell... és várnod... *huh*",
"seasonalShopRebirth": "If you bought any of this equipment in the past but don't currently own it, you can repurchase it in the Rewards Column. Initially, you'll only be able to purchase the items for your current class (Warrior by default), but fear not, the other class-specific items will become available if you switch to that class.",
- "candycaneSet": "Botcukor (Varázsló)",
- "skiSet": "Orgyilkos (Tolvaj)",
- "snowflakeSet": "Hópehely (Gyógyító)",
- "yetiSet": "Jetiszelíditő (Harcos)",
- "northMageSet": "Észak Mágusa",
- "icicleDrakeSet": "Jégtüskés Sárkány (Tolvaj)",
- "soothingSkaterSet": "Gyógyító Korcsolya (Gyógyító)",
- "gingerbreadSet": "Mézeskalács Harcos (Harcos)",
+ "candycaneSet": "Cukorbot (mágus)",
+ "skiSet": "Sí-gyilkos (tolvaj)",
+ "snowflakeSet": "Hópehely (gyógyító)",
+ "yetiSet": "Jetiszelíditő (harcos)",
+ "northMageSet": "Észak mágusa (mágus)",
+ "icicleDrakeSet": "Jégtüskés sárkány (tolvaj)",
+ "soothingSkaterSet": "Andalító korcsolya (gyógyító)",
+ "gingerbreadSet": "Mézeskalács harcos (harcos)",
"snowDaySet": "Havas nap harcosa (harcos)",
"snowboardingSet": "Snowboardozó varázsló (mágus)",
"festiveFairySet": "Ünnepi tündér (gyógyító)",
"cocoaSet": "Kakaó tolvaj (tolvaj)",
- "toAndFromCard": "Fogadó: <%= toName %>, Küldő: <%= fromName %>",
- "nyeCard": "Új évi üdvözlőkártya",
- "nyeCardExplanation": "Az alkalomból, hogy együtt ünneplitek az újévet, mindketten megkapjátok a \"Régi Ismerős\" kitűzőt!",
- "nyeCardNotes": "Küldj egy Új évi üdvözlőkártyát az egyik csapattagodnak.",
+ "toAndFromCard": "Címzett: <%= toName %>, Feladó: <%= fromName %>",
+ "nyeCard": "Újévi üdvözlőkártya",
+ "nyeCardExplanation": "Az alkalomból, hogy együtt ünneplitek az új évet, mindketten megkapjátok a \"Régi Ismerős\" kitűzőt!",
+ "nyeCardNotes": "Küldj egy újévi üdvözlőkártyát az egyik csapattagodnak.",
"seasonalItems": "Szezonális tárgyak",
"nyeCardAchievementTitle": "Régi Ismerős",
- "nyeCardAchievementText": "Boldog Új Évet! Küldött vagy kapott <%= count %> újévi kártyák. ",
- "nye0": "Boldog új évet! Pusztíts el sok rossz Szokást.",
- "nye1": "Boldog új évet! Arass sok Jutalmat.",
- "nye2": "Boldog új évet! Legyen sok Tökéletes Napod.",
- "nye3": "Boldog Új Évet! Legyen a teendőid listája ugyanolyan rövid és aranyos mint mindig.",
- "nye4": "Boldog új évet! Ne támadjon meg téged egy dühöngő Hippogriff se.",
+ "nyeCardAchievementText": "Boldog új évet! Küldött vagy kapott <%= count %> újévi kártyák. ",
+ "nye0": "Boldog új évet! Kívánom hogy pusztíts el sok rossz szokást.",
+ "nye1": "Boldog új évet! Kívánom hogy arass sok jutalmat.",
+ "nye2": "Boldog új évet! Kívánom hogy legyen sok tökéletes napod.",
+ "nye3": "Boldog új évet! Kívánom hogy legyen a teendőid listája rövid és aranyos mint mindig.",
+ "nye4": "Boldog új évet! Kívánom hogy ne támadjon meg téged egy dühöngő hippogriff se.",
"holidayCard": "Egy ünnepi üdvözlőkártyád érkezett.",
- "mightyBunnySet": "A tekintélyes nyuszi (harcos)",
- "magicMouseSet": "Varázsegér (Mágus)",
- "lovingPupSet": "Loving Pup (Healer)",
- "stealthyKittySet": "Tolvaj Macska (Tolvaj)",
- "daringSwashbucklerSet": "Daring Swashbuckler (Warrior)",
- "emeraldMermageSet": "Emerald Mermage (Mage)",
+ "mightyBunnySet": "Tekintélyes nyuszi (harcos)",
+ "magicMouseSet": "Varázsegér (mágus)",
+ "lovingPupSet": "Szerető kutyus (gyógyító)",
+ "stealthyKittySet": "Óvatos macska (tolvaj)",
+ "daringSwashbucklerSet": "Vakmerő kalandor (harcos)",
+ "emeraldMermageSet": "Smaragd habmágus (mágus)",
"reefSeahealerSet": "Zátonyi tengergyógyító (gyógyító)",
- "roguishPirateSet": "Roguish Pirate (Rogue)",
- "monsterOfScienceSet": "Tudomány szörnye (Harcos)",
- "witchyWizardSet": "Witchy Wizard (Mage)",
- "mummyMedicSet": "Mummy Medic (Healer)",
- "vampireSmiterSet": "Vampire Smiter (Rogue)",
- "bewareDogSet": "Beware Dog (Warrior)",
+ "roguishPirateSet": "Bohókás kalóz (tolvaj)",
+ "monsterOfScienceSet": "A tudomány szörnye (harcos)",
+ "witchyWizardSet": "Boszorkányos varázsló (mágus)",
+ "mummyMedicSet": "Múmia orvos (gyógyító)",
+ "vampireSmiterSet": "Vámpírvadász (tolvaj)",
+ "bewareDogSet": "Óvakodó kutya (harcos)",
"magicianBunnySet": "A bűvész nyula (mágus)",
- "comfortingKittySet": "Comforting Kitty (Healer)",
- "sneakySqueakerSet": "Sneaky Squeaker (Rogue)",
+ "comfortingKittySet": "Megnyugtató cica (gyógyító)",
+ "sneakySqueakerSet": "Trükkös petárda (tolvaj)",
"sunfishWarriorSet": "Holdhal harcos (harcos)",
- "shipSoothsayerSet": "Ship Soothsayer (Mage)",
- "strappingSailorSet": "Strapping Sailor (Healer)",
+ "shipSoothsayerSet": "Hajó jövendőmondó (mágus)",
+ "strappingSailorSet": "Tagbaszakadt tengerész (gyógyító)",
"reefRenegadeSet": "Renegát tengerész (tolvaj)",
- "scarecrowWarriorSet": "Scarecrow Warrior (Warrior)",
- "stitchWitchSet": "Stitch Witch (Mage)",
- "potionerSet": "Potioner (Healer)",
- "battleRogueSet": "Bat-tle Rogue (Rogue)",
+ "scarecrowWarriorSet": "Madárijesztő harcos (harcos)",
+ "stitchWitchSet": "Varró boszorkány (mágus)",
+ "potionerSet": "Bájitalkészítő (gyógyító)",
+ "battleRogueSet": "Dene-véres tolvaj (tolvaj)",
"springingBunnySet": "Ugráló nyuszi (gyógyító)",
- "grandMalkinSet": "Grand Malkin (Mage)",
- "cleverDogSet": "Clever Dog (Rogue)",
- "braveMouseSet": "Brave Mouse (Warrior)",
+ "grandMalkinSet": "Előkelő macska (mágus)",
+ "cleverDogSet": "Okos kutya (tolvaj)",
+ "braveMouseSet": "Bátor egér (harcos)",
"summer2016SharkWarriorSet": "Cápa harcos (harcos)",
"summer2016DolphinMageSet": "Delfin mágus (mágus)",
"summer2016SeahorseHealerSet": "Csikóhal gyógyító (gyógyító)",
"summer2016EelSet": "Angolna tolvaj (tolvaj)",
- "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)",
+ "fall2016SwampThingSet": "Mocsaras lény (harcos)",
+ "fall2016WickedSorcererSet": "Gonosz varázsló (mágus)",
+ "fall2016GorgonHealerSet": "Gorgó gyógyító (gyógyító)",
+ "fall2016BlackWidowSet": "Fekete özvegy tolvaj (tolvaj)",
+ "winter2017IceHockeySet": "Jéghoki (harcos)",
+ "winter2017WinterWolfSet": "Téli farkas (mágus)",
+ "winter2017SugarPlumSet": "Cukorbonbon gyógyító (gyógyító)",
+ "winter2017FrostyRogueSet": "Jeges tolvaj (tolvaj)",
+ "spring2017FelineWarriorSet": "Macska harcos (harcos)",
+ "spring2017CanineConjurorSet": "Négylábú bűvész (mágus)",
+ "spring2017FloralMouseSet": "Virágos egér (gyógyító)",
"spring2017SneakyBunnySet": "Trükkös nyuszi (tolvaj)",
- "summer2017SandcastleWarriorSet": "Sandcastle Warrior (Warrior)",
- "summer2017WhirlpoolMageSet": "Whirlpool Mage (Mage)",
+ "summer2017SandcastleWarriorSet": "Homokvár harcos (harcos)",
+ "summer2017WhirlpoolMageSet": "Örvény mágus (mágus)",
"summer2017SeashellSeahealerSet": "Kagylóhéj tengerigyógyító (gyógyító)",
"summer2017SeaDragonSet": "Tengeri sárkány (tolvaj)",
- "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)",
+ "fall2017HabitoweenSet": "Habitoween harcos (harcos)",
+ "fall2017MasqueradeSet": "Álarcosbál mágus (mágus)",
+ "fall2017HauntedHouseSet": "Kísértetház gyógyító (gyógyító)",
+ "fall2017TrickOrTreatSet": "Csokit vagy csalunk tolvaj (tolvaj)",
+ "winter2018ConfettiSet": "Konfetti mágus (mágus)",
+ "winter2018GiftWrappedSet": "Becsomagolt harcos (harcos)",
+ "winter2018MistletoeSet": "Fagyöngy gyógyító (gyógyító)",
+ "winter2018ReindeerSet": "Rénszarvas tolvaj (tolvaj)",
"eventAvailability": "Available for purchase until <%= date(locale) %>.",
- "dateEndApril": "április 19.",
- "dateEndMay": "május 17.",
- "dateEndJune": "június 14.",
- "dateEndJuly": "júlus 29.",
- "dateEndAugust": "August 31",
- "dateEndOctober": "October 31",
- "dateEndNovember": "November 30",
- "dateEndJanuary": "January 31",
- "dateEndFebruary": "February 28",
+ "dateEndApril": "Április 19.",
+ "dateEndMay": "Május 17.",
+ "dateEndJune": "Június 14.",
+ "dateEndJuly": "Júlus 29.",
+ "dateEndAugust": "Augusztus 31.",
+ "dateEndOctober": "Október 31.",
+ "dateEndNovember": "November 30.",
+ "dateEndJanuary": "Január 31.",
+ "dateEndFebruary": "Február 28.",
"winterPromoGiftHeader": "GIFT A SUBSCRIPTION AND GET ONE FREE!",
"winterPromoGiftDetails1": "Until January 12th only, when you gift somebody a subscription, you get the same subscription for yourself for free!",
"winterPromoGiftDetails2": "Please note that if you or your gift recipient already have a recurring subscription, the gifted subscription will only start after that subscription is cancelled or has expired. Thanks so much for your support! <3",
diff --git a/website/common/locales/hu/npc.json b/website/common/locales/hu/npc.json
index a9acb9e21f..316c673d64 100644
--- a/website/common/locales/hu/npc.json
+++ b/website/common/locales/hu/npc.json
@@ -31,6 +31,8 @@
"danielText2": "De vigyázz! Ha éppen egy főellenséggel való küldetésben veszel részt, a főellenség továbbra is sebezni fog a csapattársaid kihagyott Napi feladatai miatt! Emellett a te általad okozott sebzés a főellenségnek (vagy a talált tárgyaid) sem fognak számítani, amíg ki nem jelentkezel a Fogadóból.",
"danielTextBroken": "Üdv a Fogadóban... azt'szem... Ha pihenni szeretnél, elszálássollak... Amíg itt vagy, a Napi feladatok nem fognak nap végén megsebezni, de ettől függetlenül még kipipálhatod őket... ha van elég energiád...",
"danielText2Broken": "Oh... Ha éppen egy főellenséggel való küldetésben veszel részt, a főellenség továbbra is sebezni fog a csapattársaid kihagyott Napi feladatai miatt... Emellett a te általad okozott sebzés a főellenségnek (vagy a talált tárgyaid) sem fognak számítani, amíg ki nem jelentkezel a Fogadóból...",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "Alexander a kereskedő",
"welcomeMarket": "Üdvözöllek a Piacon! Vegyél ritka tojásokat és főzeteket. Add el a feleselges készleted. Vegyél igénybe hasznos szolgáltatásokat! Nézd meg mit tudunk ajánlani.",
"welcomeMarketMobile": "Welcome to the Market! Buy hard-to-find eggs and potions! Come see what we have to offer.",
diff --git a/website/common/locales/hu/quests.json b/website/common/locales/hu/quests.json
index da6c915dd3..28b5d5fccb 100644
--- a/website/common/locales/hu/quests.json
+++ b/website/common/locales/hu/quests.json
@@ -120,5 +120,10 @@
"createAccountQuest": "You received this quest when you joined Habitica! If a friend joins, they'll get one too.",
"questBundles": "Leárazott Küldetéscsomag",
"buyQuestBundle": "Vásárolj Küldetéscsomagot!",
- "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!"
+ "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!",
+ "pendingDamage": "<%= damage %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/hu/questscontent.json b/website/common/locales/hu/questscontent.json
index e94805370a..524f9074bb 100644
--- a/website/common/locales/hu/questscontent.json
+++ b/website/common/locales/hu/questscontent.json
@@ -569,10 +569,11 @@
"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.",
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
+ "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 gazebo 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!",
"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)"
+ "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/common/locales/id/groups.json b/website/common/locales/id/groups.json
index 9323ed423d..e47306062b 100644
--- a/website/common/locales/id/groups.json
+++ b/website/common/locales/id/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "Apakah kamu mau berpartisipasi?",
"managerAdded": "Manajer berhasil ditambahkan",
"managerRemoved": "Manajer berhasil dikeluarkan",
- "leaderChanged": "Pemimpin telah diganti"
+ "leaderChanged": "Pemimpin telah diganti",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/id/npc.json b/website/common/locales/id/npc.json
index e50ecee8fc..3d29805c30 100644
--- a/website/common/locales/id/npc.json
+++ b/website/common/locales/id/npc.json
@@ -31,6 +31,8 @@
"danielText2": "Peringatan: Jika kamu sedang berpartisipasi dalam misi, musuh masih akan bisa melukaimu karena Keseharian yang dilewatkan oleh teman party-mu! Juga, kamu tidak akan bisa menyerang musuh (atau mengumpulkan item) kecuali kamu sudah keluar dari Penginapan.",
"danielTextBroken": "Selamat datang di Kedai Minuman... kukira... Jika kamu butuh istirahat, aku akan mengatur Penginapan untukmu... Ketika kamu menginap, Keseharian kamu tidak akan menyakitimu di akhir hari, tapi kamu masih dapat memberi tanda centang... jika kamu punya tenaga untuk melakukannya...",
"danielText2Broken": "Oh... Jika kamu sedang berpartisipasi dalam misi, musuh masih akan bisa melukaimu karena Keseharian yang dilewatkan oleh teman party-mu... Juga, kamu tidak akan bisa menyerang musuh (atau mengumpulkan item) kecuali kamu sudah keluar dari Penginapan...",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "Alexander Sang Saudagar",
"welcomeMarket": "Selamat datang di Pasar! Belilah telur dan ramuan langka! Jual benda milikmu! Komisi layanan berguna! Coba lihat-lihat dulu apa yang kami tawarkan.",
"welcomeMarketMobile": "Selamat datang di Pasar! Beli telur dan ramuan yang susah ditemukan! Datang dan lihat apa yang kami tawarkan.",
diff --git a/website/common/locales/id/quests.json b/website/common/locales/id/quests.json
index ccd613caa4..67a210d7ed 100644
--- a/website/common/locales/id/quests.json
+++ b/website/common/locales/id/quests.json
@@ -120,5 +120,10 @@
"createAccountQuest": "Kamu menerima misi ini ketika kamu bergabung dengan Habitica! Kalau ada temanmu bergabung, mereka akan dapat juga.",
"questBundles": "Bundel Misi Diskon",
"buyQuestBundle": "Beli Bundel Misi",
- "noQuestToStart": "Tidak dapat menemukan misi untuk dilakukan? Coba cek Toko Misi di Pasar untuk menemukan misi baru!"
+ "noQuestToStart": "Tidak dapat menemukan misi untuk dilakukan? Coba cek Toko Misi di Pasar untuk menemukan misi baru!",
+ "pendingDamage": "<%= damage %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/id/questscontent.json b/website/common/locales/id/questscontent.json
index a4a2f1befc..700d2de51a 100644
--- a/website/common/locales/id/questscontent.json
+++ b/website/common/locales/id/questscontent.json
@@ -569,10 +569,11 @@
"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.",
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
+ "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 gazebo 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!",
"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)"
+ "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/common/locales/it/groups.json b/website/common/locales/it/groups.json
index d92423f4c2..b9a22e2b9d 100644
--- a/website/common/locales/it/groups.json
+++ b/website/common/locales/it/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "Vuoi partecipare?",
"managerAdded": "Manager added successfully",
"managerRemoved": "Manager removed successfully",
- "leaderChanged": "Leader has been changed"
+ "leaderChanged": "Leader has been changed",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/it/npc.json b/website/common/locales/it/npc.json
index fca3596e3f..20e695bf2e 100644
--- a/website/common/locales/it/npc.json
+++ b/website/common/locales/it/npc.json
@@ -31,6 +31,8 @@
"danielText2": "Fai attenzione: se stai partecipando ad una missione Boss, il boss ti danneggerà comunque per le Daily non completate dei tuoi compagni di squadra! Inoltre, il tuo danno al Boss (o la raccolta di oggetti) non avrà effetto finchè non lasci la Locanda.",
"danielTextBroken": "Benvenuto nella Taverna... Credo... Se hai bisogno di riposare, ti sistemerò nella Locanda... Mentre riposi, le tue Daily non ti danneggeranno alla fine del giorno, ma potrai comunque spuntarle... se ne hai le forze...",
"danielText2Broken": "Oh... Se stai partecipando ad una missione Boss, il boss ti danneggerà comunque per le Daily non completate dei tuoi compagni di squadra... Inoltre, il tuo danno al Boss (o gli oggetti raccolti) non avrà effetto finché non lasci la Locanda...",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "Alexander il Mercante",
"welcomeMarket": "Benvenuto nel Mercato! Compra uova rare e pozioni! Vendi la merce che ti avanza! Commissiona servizi utili! Vieni a vedere cosa abbiamo da offrire.",
"welcomeMarketMobile": "Benvenuto nel Mercato! Compra uova e pozioni rare! Vieni a vedere cosa abbiamo da offrire.",
diff --git a/website/common/locales/it/quests.json b/website/common/locales/it/quests.json
index d037410b3f..93c2135c11 100644
--- a/website/common/locales/it/quests.json
+++ b/website/common/locales/it/quests.json
@@ -120,5 +120,10 @@
"createAccountQuest": "Hai ricevuto questa missione quando ti sei iscritto ad Habitica! Se un tuo amico si iscriverà, ne riceverà una anche lui.",
"questBundles": "Pacchetto missioni scontato",
"buyQuestBundle": "Compra pacchetto missioni",
- "noQuestToStart": "Non sai con quale missione cominciare? Fai un salto al Negozio Missioni nel Mercato per le nuove uscite!"
+ "noQuestToStart": "Non sai con quale missione cominciare? Fai un salto al Negozio Missioni nel Mercato per le nuove uscite!",
+ "pendingDamage": "<%= damage %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/it/questscontent.json b/website/common/locales/it/questscontent.json
index 32a1b54d9d..50528d66d5 100644
--- a/website/common/locales/it/questscontent.json
+++ b/website/common/locales/it/questscontent.json
@@ -569,10 +569,11 @@
"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.",
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
+ "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 gazebo 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!",
"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)"
+ "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/common/locales/ja/achievements.json b/website/common/locales/ja/achievements.json
index c031593c22..e00465c3cb 100644
--- a/website/common/locales/ja/achievements.json
+++ b/website/common/locales/ja/achievements.json
@@ -1,8 +1,8 @@
{
- "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!"
+ "share": "共有",
+ "onwards": "やった!",
+ "levelup": "実生活での目標達成でレベルアップしました!体力も最大まで回復しました!",
+ "reachedLevel": "レベル<%= level %>になりました",
+ "achievementLostMasterclasser": "クエスト完了者: クラス・マスターシリーズ",
+ "achievementLostMasterclasserText": "クラス・マスタークエストシリーズで16のクエストをすべて完了し、失われたクラス・マスターの謎を解き明かしました!"
}
diff --git a/website/common/locales/ja/challenge.json b/website/common/locales/ja/challenge.json
index 59842ecf03..f4ed35a239 100644
--- a/website/common/locales/ja/challenge.json
+++ b/website/common/locales/ja/challenge.json
@@ -6,8 +6,8 @@
"keepIt": "このまま残す",
"removeIt": "消す",
"brokenChallenge": "チャレンジのリンク切れ:このタスクはもともとチャレンジの一部でしたが、チャレンジ(もしくはグループ)が消されました。残されたタスクはどうしますか?",
- "keepThem": "Keep Tasks",
- "removeThem": "Remove Tasks",
+ "keepThem": "タスクを残す",
+ "removeThem": "タスクを消す",
"challengeCompleted": "チャレンジ終了です! <%= user %>が優勝しました! 残ったタスクはどうしますか?",
"unsubChallenge": "チャレンジのリンク切れ:このタスクはもともとチャレンジの一部でしたが、あなたがチャレンジ登録を取り消しました。残されたタスクはどうしますか?",
"challengeWinner": "以下のチャレンジで優勝しました。",
diff --git a/website/common/locales/ja/content.json b/website/common/locales/ja/content.json
index f5dcbe0b41..38dceb4972 100644
--- a/website/common/locales/ja/content.json
+++ b/website/common/locales/ja/content.json
@@ -164,9 +164,9 @@
"questEggPterodactylText": "翼竜",
"questEggPterodactylMountText": "翼竜",
"questEggPterodactylAdjective": "疑うことを知らない",
- "questEggBadgerText": "Badger",
- "questEggBadgerMountText": "Badger",
- "questEggBadgerAdjective": "bustling",
+ "questEggBadgerText": "アナグマ",
+ "questEggBadgerMountText": "アナグマ",
+ "questEggBadgerAdjective": "騒がしい",
"eggNotes": "たまごがえしの薬を見つけて、たまごにかけると、<%= eggAdjective(locale) %> <%= eggText(locale) %>が生まれます。",
"hatchingPotionBase": "普通の",
"hatchingPotionWhite": "白い",
diff --git a/website/common/locales/ja/groups.json b/website/common/locales/ja/groups.json
index 3ee0970fba..dcbc308105 100644
--- a/website/common/locales/ja/groups.json
+++ b/website/common/locales/ja/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "Would you like to participate?",
"managerAdded": "Manager added successfully",
"managerRemoved": "Manager removed successfully",
- "leaderChanged": "Leader has been changed"
+ "leaderChanged": "Leader has been changed",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/ja/npc.json b/website/common/locales/ja/npc.json
index 678f18dd5c..cfb5b9369f 100644
--- a/website/common/locales/ja/npc.json
+++ b/website/common/locales/ja/npc.json
@@ -31,6 +31,8 @@
"danielText2": "注意 : ボス クエストに参加している間は、パーティーの仲間が日課をサボると、ボスはあなたを攻撃しダメージを受けます! また、あなたがボスに与えるはずのダメージ ( そして集められたはずのアイテム ) はロッジをチェックアウトするまで適用されません。",
"danielTextBroken": "キャンプ場へようこそ...よろしければ...休息が必要なら、ロッジにお泊りください...チェックインしている間は、日課をやらずに1日を終えてもダメージを受けない。もちろん日課をやってもかまわない...もしエネルギーがあるのなら...",
"danielText2Broken": "おや...ボス クエストに参加しているのなら、ボスはパーティーの仲間が日課をサボった分のダメージは与えてきますよ...また、あなたからボスへのダメージ(または、落としていくアイテム) は、ロッジに泊まっている間は発生しません...",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "Alexanderの店",
"welcomeMarket": "マーケットへようこそ! そうそう見つからない「たまご」と「たまごがえしの薬」はいりませんか? 余ったアイテムを売ってください! 便利なサービスを受けてください! なんなりとお申しつけください。",
"welcomeMarketMobile": "市場へようこそ! なかなか見つからない「たまご」や「たまごがえしの薬」はいかがですか? どうぞ見ていってください。",
diff --git a/website/common/locales/ja/quests.json b/website/common/locales/ja/quests.json
index 37eb1ed47d..b0aef000d6 100644
--- a/website/common/locales/ja/quests.json
+++ b/website/common/locales/ja/quests.json
@@ -120,5 +120,10 @@
"createAccountQuest": "このクエストはHabiticaに参加した時に配布されます!もしあなたの友達が参加すれば、彼らも同じように受け取るでしょう。",
"questBundles": "割引されたクエスト セット",
"buyQuestBundle": "クエスト セットを買う",
- "noQuestToStart": "クエストを開始できませんか?新しいものがないか、クエストショップをチェックしてみましょう!"
+ "noQuestToStart": "クエストを開始できませんか?新しいものがないか、クエストショップをチェックしてみましょう!",
+ "pendingDamage": "<%= damage %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/ja/questscontent.json b/website/common/locales/ja/questscontent.json
index dfb598aa04..b0667a58b8 100644
--- a/website/common/locales/ja/questscontent.json
+++ b/website/common/locales/ja/questscontent.json
@@ -558,21 +558,22 @@
"questPterodactylBoss": "テラー・ダクティル",
"questPterodactylDropPterodactylEgg": "翼竜(たまご)",
"questPterodactylUnlockText": "市場での翼竜のたまご購入をアンロック",
- "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",
+ "questBadgerText": "おねだりはやめて!",
+ "questBadgerNotes": "ああ、タスクの森の冬です。ふわふわと降る雪、霜に輝く小枝、豊穣の妖精たち…はまだ眠っていない?
「どうしてまだ起きてるのさ?」@LilithofAlfheimが叫びます。「すぐにでも冬眠させないと、芽生えの季節のためのエネルギーがなくなっちゃうよ」
すぐさま調査に乗り出たあなたと@Willow the Wittyは、もさもさの頭が地面から突き出しているのを見つけました。あなたが叫ぶより前に、「厄介者のおねグマじゃないか!」 そいつは巣にもどってきたのです—妖精たちの「冬眠する」To-Doを奪い、彼らに大量の面倒なタスクを押し付けた後で。
「妖精たちが休めなかったのも仕方ないよ。こんなに絶えずおねだりをされていたんじゃあね!」@plumillaが言います。この獣を追い払い、今年のタスクの森の恵みを守ることはできるでしょうか?",
+ "questBadgerCompletion": "あなたはついに厄介者のおねグマを撃退し、巣の中へと急ぎます。トンネルの端で、あなたは奴が溜めこんだ妖精たちのTo-Do「冬眠する」を見つけました。巣穴のその他の場所は、かえりかけている3つのたまごを除いて放棄されていました。",
+ "questBadgerBoss": "厄介者のおねグマ",
+ "questBadgerDropBadgerEgg": "アナグマ( たまご )",
+ "questBadgerUnlockText": "市場でのアナグマのたまご購入をアンロック",
"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!”",
+ "questDysheartenerNotes": "ぞっとするような衝撃音が空気を引き裂いたそのとき、バレンタインデーの朝日が昇るところでした。青ざめたピンク色に輝く炎がすべての建物を貫き、Habitシティの大通り一帯のレンガは深い亀裂を生じて砕けます。この世のものではないような叫び声が響き渡り、無様な姿をさらす割れガラスの山が地割れからすべり落ちていきます。
顎がカチカチ鳴り、甲羅はギラギラと輝き、重なった足が宙に広がります。その虫のような怪物が後ろ足で立ち上がり、この世で最もおぞましい、恐るべきDysheartenerそのものを目にして人々は悲鳴を上げ始めました。それは勤勉なHabiticanの希望を食いちぎらんと、期待に満ちた吠え声をあげて突進してきます。とげとげの足がこすれてきしむ音を聞くと、あなたは胸が絶望で締め上げられるような気持ちに囚われます。
「皆さん、気を強く持って!」Lemonessが叫びます。「きっと私たちが食べやすいエサだと思っているのでしょうね。多くの人々が新年の誓いをあきらめてしまったから。ですが、Habiticanが目標をやり遂げる力を持っていることを、これから思い知らせてやろうじゃないですか!」
AnnDeLuneは杖をかかげました。「さあみんなでタスクに取り組んで、この怪物を倒しましょう!」",
"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.",
- "questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
- "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 gazebo 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!",
- "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)"
+ "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 は強烈なハートブレイクを使った!`\n\nなんということでしょう! 私たちのやり残した日課をおいしそうに食べた後、 力を増したDysheartenerは強烈なハートブレイクの一撃をHabiticaへ見舞いました。鋭い叫び声とともにとげとげの前足が季節の店の入ったあずまやへ振りおろされます! 激しい魔法の爆発が木材を粉々にし、季節の魔女はそれを見て深い悲しみに襲われます。\n\n怪物の攻撃が再び起こらぬよう、速やかに日課を実行しましょう!",
+ "questDysheartenerBossRageMarket": "`Dysheartenerは強烈なハートブレイクを使った!`\n\n助けて! 未完了の日課をおいしく頂いたあと、Dysheartenerは更なる強烈なハートブレイクを市場の壁と床に食らわせました! がれきが降り注ぎ、商人のAlexは壊れてしまった商品を見て涙しています。\n\nこの悲劇をまた起こすわけにはいきません。Dysheartenerに最後の攻撃を使わせないよう、確実に日課を行いましょう。",
+ "questDysheartenerBossRageQuests": "`Dysheartenerは強烈なハートブレイクを使った!`\n\nああああ!! またもや私たちが日課を終わらせずに残してしまい、Dysheartenerは愛すべき店主たちに向けて放つ最後の一撃のエネルギーを溜めました。クエストマスターのIanがいる郊外は強烈なハートブレイクによってずたずたに破壊され、Ianは恐るべき光景に徹底的に打ちのめされてしまいます。怪物が倒れるときは近づいています……急いでください! 今は立ち止まらないで!",
+ "questDysheartenerDropHippogriffPet": "希望に満ちたヒッポグリフ(ペット)",
+ "questDysheartenerDropHippogriffMount": "希望に満ちたヒッポグリフ(乗騎)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/common/locales/nl/groups.json b/website/common/locales/nl/groups.json
index 4fd2fcfc1a..1364f6816e 100644
--- a/website/common/locales/nl/groups.json
+++ b/website/common/locales/nl/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "Wil je deelnemen?",
"managerAdded": "Manager succesvol toegevoegd",
"managerRemoved": "Manager succesvol verwijderd",
- "leaderChanged": "Leader has been changed"
+ "leaderChanged": "Leader has been changed",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/nl/npc.json b/website/common/locales/nl/npc.json
index 28de3fbe31..1a589e7075 100644
--- a/website/common/locales/nl/npc.json
+++ b/website/common/locales/nl/npc.json
@@ -31,6 +31,8 @@
"danielText2": "Wees gewaarschuwd: Als je meedoet aan een queeste met een eindbaas, zal de eindbaas je nog steeds pijn doen voor de gemiste dagelijkse taken van je groepsgenoten, tenzij ze ook in de herberg verblijven! Je zult zelf ook geen schade toebrengen aan de eindbaas (of voorwerpen krijgen) totdat je de Herberg verlaat.",
"danielTextBroken": "Welkom in de herberg... Denk ik... Als je rust nodig hebt, zal ik je onderbrengen in de herberg... Zolang je ingecheckt bent, zullen je dagelijkse taken je geen pijn doen aan het eind van de dag... Je kunt ze nog wel afvinken... Als je daar de energie voor hebt...",
"danielText2Broken": "Oh... Als je meedoet aan een queeste met een eindbaas, zal de eindbaas je nog steeds pijn doen voor de gemiste dagelijkse taken van je groepsgenoten... Je zult zelf ook geen schade toebrengen aan de eindbaas (of voorwerpen vinden) totdat je de Herberg verlaat...",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "Alexander de Koopman",
"welcomeMarket": "Welkom op de markt! Koop zeldzame eieren en drankjes! Verkoop je overschot! Gebruik nuttige diensten! Kom langs en bekijk zelf wat we voor je hebben.",
"welcomeMarketMobile": "Welcome to the Market! Buy hard-to-find eggs and potions! Come see what we have to offer.",
diff --git a/website/common/locales/nl/quests.json b/website/common/locales/nl/quests.json
index 3ded7e1ee1..c4621214bb 100644
--- a/website/common/locales/nl/quests.json
+++ b/website/common/locales/nl/quests.json
@@ -120,5 +120,10 @@
"createAccountQuest": "Je hebt deze queeste verdiend toen je je aanmeldde voor Habitica! Als een van je vrienden zich aanmeldt krijgt deze er ook een.",
"questBundles": "Afgeprijsde queestebundels",
"buyQuestBundle": "Koop queestebundel",
- "noQuestToStart": "Kun je geen queeste vinden om mee te beginnen? Bekijk de queestenwinkel op de markt om nieuwe uitgaven te ontdekken!"
+ "noQuestToStart": "Kun je geen queeste vinden om mee te beginnen? Bekijk de queestenwinkel op de markt om nieuwe uitgaven te ontdekken!",
+ "pendingDamage": "<%= damage %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/nl/questscontent.json b/website/common/locales/nl/questscontent.json
index 67b625bf2a..9f83655188 100644
--- a/website/common/locales/nl/questscontent.json
+++ b/website/common/locales/nl/questscontent.json
@@ -569,10 +569,11 @@
"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.",
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
+ "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 gazebo 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!",
"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)"
+ "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/common/locales/pl/groups.json b/website/common/locales/pl/groups.json
index 1ea13d0fef..2e86676523 100644
--- a/website/common/locales/pl/groups.json
+++ b/website/common/locales/pl/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "Czy chcesz uczestniczyć?",
"managerAdded": "Pomyślnie dodano Managera",
"managerRemoved": "Pomyślnie usunięto Managera",
- "leaderChanged": "Lider/ka został/a zmieniony/a"
+ "leaderChanged": "Lider/ka został/a zmieniony/a",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/pl/npc.json b/website/common/locales/pl/npc.json
index 95a714a4a9..33c5848e4c 100644
--- a/website/common/locales/pl/npc.json
+++ b/website/common/locales/pl/npc.json
@@ -31,6 +31,8 @@
"danielText2": "Uważaj: Jeśli uczestniczysz w walce z bossem, wciąż może on zadać tobie obrażenia, jeśli członkowie twojej drużyny ominą Codzienne! Również twoje obrażenia dla bossa (lub zebrane przedmioty) nie zostaną zaaplikowane, dopóki nie zakończysz odpoczynku w Gospodzie.",
"danielTextBroken": "Witaj w Karczmie... czy jakoś tak... Jeśli potrzebujesz odpoczynku, znajdę dla ciebie pokój w gospodzie... Kiedy odpoczywasz, twoje Codzienne nie skrzywdzą ciebie na koniec dnia, jednak nadal możesz je odhaczać... jeśli starczy ci energii...",
"danielText2Broken": "Aha... Jeśli uczestniczysz w walce z bossem, wciąż może on zadać ci obrażenia, jeśli członkowie twojej drużyny ominą Codzienne... Twoje obrażenia dla bossa (lub zebrane przedmioty) też nie zostaną zaaplikowane, dopóki nie zakończysz odpoczynku w gospodzie...",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "Handlarz Aleksander",
"welcomeMarket": "Witaj na Targu! Tu kupisz rzadkie jaja oraz eliksiry! Sprzedasz nadmiar towaru! Zamówisz usługi! Zobacz, co dla Ciebie mamy.",
"welcomeMarketMobile": "Witamy na Targu! Kup ciężkie do znalezienia jajka i eliksiry! Zobacz co mamy na stanie.",
diff --git a/website/common/locales/pl/pets.json b/website/common/locales/pl/pets.json
index 70781145e1..0d0d0e0fe4 100644
--- a/website/common/locales/pl/pets.json
+++ b/website/common/locales/pl/pets.json
@@ -27,8 +27,8 @@
"royalPurpleGryphon": "Purpurowy królewski gryf",
"phoenix": "Feniks",
"magicalBee": "Magiczna Pszczoła",
- "hopefulHippogriffPet": "Hopeful Hippogriff",
- "hopefulHippogriffMount": "Hopeful Hippogriff",
+ "hopefulHippogriffPet": "Optymistyczny Hipogryf",
+ "hopefulHippogriffMount": "Optymistyczny Hipogryf",
"royalPurpleJackalope": "Purpurowy królewski Jackalope",
"invisibleAether": "Niewidzialny Eter",
"rarePetPop1": "Kliknij na złotą łapę, aby dowiedzieć się, jak możesz zdobyć tego rzadkiego chowańca poprzez pomoc w tworzeniu Habitiki!",
diff --git a/website/common/locales/pl/quests.json b/website/common/locales/pl/quests.json
index 3b42c818b0..5d624c3374 100644
--- a/website/common/locales/pl/quests.json
+++ b/website/common/locales/pl/quests.json
@@ -120,5 +120,10 @@
"createAccountQuest": "Otrzymałeś tą misję, kiedy dołączyłeś do Habitiki. Jeżeli twój przyjaciel dołączy, również otrzyma misję.",
"questBundles": "Przecenione pakiety misji",
"buyQuestBundle": "Kup pakiet misji",
- "noQuestToStart": "Nie możesz znaleźć żadnej misji? Wejdź do Sklepu Misji na Targu po nowe zadania!"
+ "noQuestToStart": "Nie możesz znaleźć żadnej misji? Wejdź do Sklepu Misji na Targu po nowe zadania!",
+ "pendingDamage": "<%= damage %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/pl/questscontent.json b/website/common/locales/pl/questscontent.json
index 37cfb185f9..36e86abb52 100644
--- a/website/common/locales/pl/questscontent.json
+++ b/website/common/locales/pl/questscontent.json
@@ -568,11 +568,12 @@
"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.",
- "questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
+ "questDysheartenerBossRageTitle": "Druzgoczące Złamanie Serca",
+ "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 gazebo 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!",
"questDysheartenerBossRageMarket": "`The Dysheartener uses SHATTERING HEARTBREAK!`\n\nHelp! After feasting on our incomplete Dailies, the Dysheartener lets out another Shattering Heartbreak attack, smashing the walls and floor of the Market! As stone rains down, Alex the Merchant weeps at his crushed merchandise, stricken by the destruction.\n\nWe can't let this happen again! Be sure to do all our your Dailies to prevent the Dysheartener from using its final strike.",
"questDysheartenerBossRageQuests": "`The Dysheartener uses SHATTERING HEARTBREAK!`\n\nAaaah! We've left our Dailies undone again, and the Dysheartener has mustered the energy for one final blow against our beloved shopkeepers. The countryside around Ian the Quest Master is ripped apart by its Shattering Heartbreak attack, and Ian is struck to the core by the horrific vision. We're so close to defeating this monster.... Hurry! Don't stop now!",
- "questDysheartenerDropHippogriffPet": "Hopeful Hippogriff (Pet)",
- "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)"
+ "questDysheartenerDropHippogriffPet": "Optymistyczny Hipogryf (Chowaniec)",
+ "questDysheartenerDropHippogriffMount": "Optymistyczny Hipogryf (Wierzchowiec)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/common/locales/pt/groups.json b/website/common/locales/pt/groups.json
index e2c415e9f5..cbef2e3f50 100644
--- a/website/common/locales/pt/groups.json
+++ b/website/common/locales/pt/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "Would you like to participate?",
"managerAdded": "Manager added successfully",
"managerRemoved": "Manager removed successfully",
- "leaderChanged": "Leader has been changed"
+ "leaderChanged": "Leader has been changed",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/pt/inventory.json b/website/common/locales/pt/inventory.json
index f9730a68bd..f00a4eaac1 100644
--- a/website/common/locales/pt/inventory.json
+++ b/website/common/locales/pt/inventory.json
@@ -1,8 +1,8 @@
{
- "noItemsAvailableForType": "You have no <%= type %>.",
- "foodItemType": "Food",
- "eggsItemType": "Eggs",
- "hatchingPotionsItemType": "Hatching Potions",
- "specialItemType": "Special items",
- "lockedItem": "Locked Item"
+ "noItemsAvailableForType": "Não tens <%= type %>.",
+ "foodItemType": "Comida",
+ "eggsItemType": "Ovos",
+ "hatchingPotionsItemType": "Poções de Eclosão",
+ "specialItemType": "Itens Especiais",
+ "lockedItem": "Itens Bloqueados"
}
diff --git a/website/common/locales/pt/npc.json b/website/common/locales/pt/npc.json
index cf56b73b60..fe7cc12273 100644
--- a/website/common/locales/pt/npc.json
+++ b/website/common/locales/pt/npc.json
@@ -31,6 +31,8 @@
"danielText2": "Tenha cuidado: Se estiver participando de uma missão contra um Chefão, ele ainda lhe causará danos pelas Tarefas Diárias perdidas dos seus companheiros de equipe! Além disso, o seu dano no chefão (ou itens coletados) não serão aplicados até que você saia da Pousada.",
"danielTextBroken": "Bem vindo à Taverna... Eu acho... Se você precisa descansar, eu irei te hospedar na Pousada... Enquanto estiver hospedado, suas Tarefas Diárias não te machucarão no final do dia, mas você ainda pode marcá-las como realizadas... se você tiver energia...",
"danielText2Broken": "Oh... Se você estiver participando de uma missão de Chefão, ele ainda te causará dano pelas Tarefas Diárias perdidas dos teus colegas de equipe... Além disso, seu dano no Chefão (ou itens coletados) não serão aplicados até que você saia da Pousada...",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "Alexander o Comerciante",
"welcomeMarket": "Bem-vindo ao Mercado! Compre ovos e poções difíceis de encontrar! Venda os seus extras! Encomende serviços úteis! Venha ver o que nós temos para oferecer.",
"welcomeMarketMobile": "Welcome to the Market! Buy hard-to-find eggs and potions! Come see what we have to offer.",
diff --git a/website/common/locales/pt/quests.json b/website/common/locales/pt/quests.json
index 84e4f059c9..e145fe308b 100644
--- a/website/common/locales/pt/quests.json
+++ b/website/common/locales/pt/quests.json
@@ -120,5 +120,10 @@
"createAccountQuest": "Você recebeu esta missão quando se juntou ao Habitica! Se um amigo se juntar, também receberão esta missão. ",
"questBundles": "Conjuntos de Missões em Desconto",
"buyQuestBundle": "Comprar Conjunto de Missões",
- "noQuestToStart": "Não encontra uma missão para começar? Tente ver se na Loja de Missões no Mercado há novas missões lançadas!"
+ "noQuestToStart": "Não encontra uma missão para começar? Tente ver se na Loja de Missões no Mercado há novas missões lançadas!",
+ "pendingDamage": "<%= damage %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/pt/questscontent.json b/website/common/locales/pt/questscontent.json
index 0eee1e173a..5760fa431c 100644
--- a/website/common/locales/pt/questscontent.json
+++ b/website/common/locales/pt/questscontent.json
@@ -569,10 +569,11 @@
"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.",
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
+ "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 gazebo 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!",
"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)"
+ "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/common/locales/pt_BR/groups.json b/website/common/locales/pt_BR/groups.json
index 72ca657358..7c10dcb987 100644
--- a/website/common/locales/pt_BR/groups.json
+++ b/website/common/locales/pt_BR/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "Você gostaria de participar?",
"managerAdded": "Gestor(a) adicionado(a) com sucesso.",
"managerRemoved": "Gestor(a) removido(a) com sucesso.",
- "leaderChanged": "O líder foi alterado"
+ "leaderChanged": "O líder foi alterado",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/pt_BR/npc.json b/website/common/locales/pt_BR/npc.json
index dde631dfaf..5f0a5637e6 100644
--- a/website/common/locales/pt_BR/npc.json
+++ b/website/common/locales/pt_BR/npc.json
@@ -31,6 +31,8 @@
"danielText2": "Tenha cuidado: Se estiver participando de uma missão contra um Chefão, ele ainda lhe causará danos pelas Diárias não feitas dos seus companheiros de grupo! Além disso, o seu dano no Chefão (ou itens coletados) não serão calculados até que você saia da Pousada.",
"danielTextBroken": "Boas vindas à Taverna... Eu acho... Se você precisa descansar, eu irei te hospedar na Pousada... Enquanto estiver na Pousada, suas Diárias não te machucarão no final do dia, mas você ainda pode marcá-las como realizadas... se você tiver energia...",
"danielText2Broken": "Oh... Se você estiver participando de uma missão de Chefão, ele ainda te causará dano pelas Diárias não feitas dos teus colegas de grupo... Além disso, seu dano no Chefão (ou itens coletados) não serão calculados até que você saia da Pousada...",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "Alexander, o Comerciante",
"welcomeMarket": "Boas vindas ao Mercado! Compre ovos e poções difíceis de encontrar! Venda seus extras! Encomende serviços úteis! Venha ver o que temos para oferecer.",
"welcomeMarketMobile": "Boas vindas ao Mercado! Compre ovos raros e poções! Venha ver o que temos a oferecer.",
diff --git a/website/common/locales/pt_BR/quests.json b/website/common/locales/pt_BR/quests.json
index bd9b733f20..07a75e7c5c 100644
--- a/website/common/locales/pt_BR/quests.json
+++ b/website/common/locales/pt_BR/quests.json
@@ -120,5 +120,10 @@
"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",
"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!"
+ "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 %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/pt_BR/questscontent.json b/website/common/locales/pt_BR/questscontent.json
index 797383a1c5..65b1d282f9 100644
--- a/website/common/locales/pt_BR/questscontent.json
+++ b/website/common/locales/pt_BR/questscontent.json
@@ -569,10 +569,11 @@
"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.",
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
+ "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 gazebo 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!",
"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)"
+ "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/common/locales/ro/groups.json b/website/common/locales/ro/groups.json
index 830b876754..2079d35a15 100644
--- a/website/common/locales/ro/groups.json
+++ b/website/common/locales/ro/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "Would you like to participate?",
"managerAdded": "Manager added successfully",
"managerRemoved": "Manager removed successfully",
- "leaderChanged": "Leader has been changed"
+ "leaderChanged": "Leader has been changed",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/ro/npc.json b/website/common/locales/ro/npc.json
index 816280b1bc..8082bc4279 100644
--- a/website/common/locales/ro/npc.json
+++ b/website/common/locales/ro/npc.json
@@ -31,6 +31,8 @@
"danielText2": "Be warned: If you are participating in a boss quest, the boss will still damage you for your party mates' missed Dailies! Also, your own damage to the Boss (or items collected) will not be applied until you check out of the Inn.",
"danielTextBroken": "Welcome to the Tavern... I guess... If you need to rest, I'll set you up at the Inn... While checked-in, your Dailies won't hurt you at the day's end, but you can still check them off... if you have the energy...",
"danielText2Broken": "Oh... If you are participating in a boss quest, the boss will still damage you for your party mates' missed Dailies... Also, your own damage to the Boss (or items collected) will not be applied until you check out of the Inn...",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "Negustorul Alexander",
"welcomeMarket": "Bine ai venit la Piață! Cumpără ouă și poțiuni greu de găsit! Vinde ce n-ai nevoie! Apelează la servicii utile! Vino să vezi ce avem de oferit.",
"welcomeMarketMobile": "Welcome to the Market! Buy hard-to-find eggs and potions! Come see what we have to offer.",
diff --git a/website/common/locales/ro/quests.json b/website/common/locales/ro/quests.json
index bf00d7172d..dcaa31e504 100644
--- a/website/common/locales/ro/quests.json
+++ b/website/common/locales/ro/quests.json
@@ -120,5 +120,10 @@
"createAccountQuest": "You received this quest when you joined Habitica! If a friend joins, they'll get one too.",
"questBundles": "Discounted Quest Bundles",
"buyQuestBundle": "Buy Quest Bundle",
- "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!"
+ "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!",
+ "pendingDamage": "<%= damage %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/ro/questscontent.json b/website/common/locales/ro/questscontent.json
index 9018af7100..90492c040d 100644
--- a/website/common/locales/ro/questscontent.json
+++ b/website/common/locales/ro/questscontent.json
@@ -569,10 +569,11 @@
"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.",
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
+ "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 gazebo 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!",
"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)"
+ "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/common/locales/ru/groups.json b/website/common/locales/ru/groups.json
index 36069cace5..4e8175812a 100644
--- a/website/common/locales/ru/groups.json
+++ b/website/common/locales/ru/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "Хотите ли вы поучаствовать?",
"managerAdded": "Менеджер успешно добавлен",
"managerRemoved": "Менеджер успешно удалён",
- "leaderChanged": "Лидер был сменен"
+ "leaderChanged": "Лидер был сменен",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/ru/npc.json b/website/common/locales/ru/npc.json
index c29da6beac..ae998accd5 100644
--- a/website/common/locales/ru/npc.json
+++ b/website/common/locales/ru/npc.json
@@ -31,6 +31,8 @@
"danielText2": "Будьте осторожны: если ваша команда сражается с Боссом, он все же будет наносить вам урон за Ежедневные задания, пропущенные вашими товарищами! Кроме того, нанесенный вами урон Боссу или найденные предметы не будут зарегистрированы, пока вы не покинете Гостиницу.",
"danielTextBroken": "Добро пожаловать в Таверну... Полагаю... Если вам нужен отдых, я размещу вас в Гостинице... При этом пропущенные ежедневные задания не будут наносить урон в конце дня, но вы все же сможете их отмечать... Если у вас хватит на это сил... ",
"danielText2Broken": "Ах да... Если вы участвуете в квесте с боссом, он все же будет наносить вам урон за ежедневные задания, не выполненные вашими друзьями по команде... Также, ваши повреждения боссу (или собранные квестовые предметы) не будут засчитаны, пока вы не покинете Гостиницу...",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "Торговец Александр",
"welcomeMarket": "Заходите на рынок! Купите редкие яйца и эликсиры! Продайте то, что вам не нужно! Воспользуйтесь полезными услугами! Загляните и ознакомьтесь со всеми предложениями.",
"welcomeMarketMobile": "Добро пожаловать на рынок! Купите редкие яйца и эликсиры! Загляните и ознакомьтесь со всеми предложениями.",
diff --git a/website/common/locales/ru/quests.json b/website/common/locales/ru/quests.json
index 709ca7e22a..33b46267fd 100644
--- a/website/common/locales/ru/quests.json
+++ b/website/common/locales/ru/quests.json
@@ -120,5 +120,10 @@
"createAccountQuest": "Вы получили этот квест, когда вы присоединились к Habitica! Если ваш друг присоединяется, он так-же получит это квест.",
"questBundles": "Наборы квестов со скидкой",
"buyQuestBundle": "Купить набор квестов",
- "noQuestToStart": "Не можете найти подходящий квест? Посетите магазин квестов на рынке. Возможно, что там есть новинки!"
+ "noQuestToStart": "Не можете найти подходящий квест? Посетите магазин квестов на рынке. Возможно, что там есть новинки!",
+ "pendingDamage": "<%= damage %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/ru/questscontent.json b/website/common/locales/ru/questscontent.json
index f1c129760e..7640e0bf92 100644
--- a/website/common/locales/ru/questscontent.json
+++ b/website/common/locales/ru/questscontent.json
@@ -569,10 +569,11 @@
"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.",
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
+ "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 gazebo 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!",
"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)"
+ "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/common/locales/sk/achievements.json b/website/common/locales/sk/achievements.json
index c031593c22..6b98a116ae 100644
--- a/website/common/locales/sk/achievements.json
+++ b/website/common/locales/sk/achievements.json
@@ -1,8 +1,8 @@
{
- "share": "Share",
- "onwards": "Onwards!",
- "levelup": "By accomplishing your real life goals, you leveled up and are now fully healed!",
- "reachedLevel": "You Reached Level <%= level %>",
+ "share": "Zdieľaj",
+ "onwards": "Vpred!",
+ "levelup": "Plnením cieľov v reálnom živote si získal level a bol si vyliečený!",
+ "reachedLevel": "Dosiahol si 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!"
}
diff --git a/website/common/locales/sk/backgrounds.json b/website/common/locales/sk/backgrounds.json
index 483bb12cc1..e744ecfb34 100644
--- a/website/common/locales/sk/backgrounds.json
+++ b/website/common/locales/sk/backgrounds.json
@@ -255,81 +255,81 @@
"backgroundMeanderingCaveNotes": "Explore the Meandering Cave.",
"backgroundMistiflyingCircusText": "Mistiflying Circus",
"backgroundMistiflyingCircusNotes": "Carouse in the Mistiflying Circus.",
- "backgrounds042017": "SET 35: Released April 2017",
+ "backgrounds042017": "35. sada: Vydaná v apríli 2017",
"backgroundBugCoveredLogText": "Bug-Covered Log",
"backgroundBugCoveredLogNotes": "Investigate a Bug-Covered Log.",
"backgroundGiantBirdhouseText": "Giant Birdhouse",
"backgroundGiantBirdhouseNotes": "Perch in a Giant Birdhouse.",
"backgroundMistShroudedMountainText": "Mist-Shrouded Mountain",
"backgroundMistShroudedMountainNotes": "Summit a Mist-Shrouded Mountain.",
- "backgrounds052017": "SET 36: Released May 2017",
+ "backgrounds052017": "36. sada: Vydaná v máji 2017",
"backgroundGuardianStatuesText": "Guardian Statues",
"backgroundGuardianStatuesNotes": "Stand vigil in front of Guardian Statues.",
"backgroundHabitCityStreetsText": "Habit City Streets",
"backgroundHabitCityStreetsNotes": "Explore the Streets of Habit City.",
"backgroundOnATreeBranchText": "On a Tree Branch",
"backgroundOnATreeBranchNotes": "Perch On a Tree Branch.",
- "backgrounds062017": "SET 37: Released June 2017",
+ "backgrounds062017": "37. sada: Vydaná v júni 2017",
"backgroundBuriedTreasureText": "Buried Treasure",
"backgroundBuriedTreasureNotes": "Unearth Buried Treasure.",
"backgroundOceanSunriseText": "Ocean Sunrise",
"backgroundOceanSunriseNotes": "Admire an Ocean Sunrise.",
"backgroundSandcastleText": "Sandcastle",
"backgroundSandcastleNotes": "Rule over a Sandcastle.",
- "backgrounds072017": "SET 38: Released July 2017",
+ "backgrounds072017": "38. sada: Vydaná v júli 2017",
"backgroundGiantSeashellText": "Giant Seashell",
"backgroundGiantSeashellNotes": "Lounge in a Giant Seashell.",
"backgroundKelpForestText": "Kelp Forest",
"backgroundKelpForestNotes": "Swim through a Kelp Forest.",
"backgroundMidnightLakeText": "Polnočné jazero",
"backgroundMidnightLakeNotes": "Rest by a Midnight Lake.",
- "backgrounds082017": "SET 39: Released August 2017",
+ "backgrounds082017": "39. sada: Vydaná v auguste 2017",
"backgroundBackOfGiantBeastText": "Back of a Giant Beast",
"backgroundBackOfGiantBeastNotes": "Ride on the Back of a Giant Beast.",
"backgroundDesertDunesText": "Púštne duny",
"backgroundDesertDunesNotes": "Boldly explore the Desert Dunes.",
"backgroundSummerFireworksText": "Letné ohňostroje",
"backgroundSummerFireworksNotes": "Celebrate Habitica's Naming Day with Summer Fireworks!",
- "backgrounds092017": "SET 40: Released September 2017",
+ "backgrounds092017": "40. sada: Vydaná v septembri 2017",
"backgroundBesideWellText": "Vedľa studne",
"backgroundBesideWellNotes": "Stroll Beside a Well.",
"backgroundGardenShedText": "Garden Shed",
"backgroundGardenShedNotes": "Work in a Garden Shed.",
"backgroundPixelistsWorkshopText": "Pixelist's Workshop",
"backgroundPixelistsWorkshopNotes": "Create masterpieces in the Pixelist's Workshop.",
- "backgrounds102017": "SET 41: Released October 2017",
+ "backgrounds102017": "41. sada: Vydaná v októbri 2017",
"backgroundMagicalCandlesText": "Magické sviečky",
"backgroundMagicalCandlesNotes": "Bask in the glow of Magical Candles.",
"backgroundSpookyHotelText": "Spooky Hotel",
"backgroundSpookyHotelNotes": "Sneak down the hall of a Spooky Hotel.",
"backgroundTarPitsText": "Tar Pits",
"backgroundTarPitsNotes": "Tiptoe through the Tar Pits.",
- "backgrounds112017": "SET 42: Released November 2017",
+ "backgrounds112017": "42. sada: Vydaná v novembri 2017",
"backgroundFiberArtsRoomText": "Fiber Arts Room",
"backgroundFiberArtsRoomNotes": "Spin thread in a Fiber Arts Room.",
- "backgroundMidnightCastleText": "Midnight Castle",
+ "backgroundMidnightCastleText": "Polnočný zámok",
"backgroundMidnightCastleNotes": "Stroll by the Midnight Castle.",
"backgroundTornadoText": "Tornádo",
"backgroundTornadoNotes": "Fly through a Tornado.",
- "backgrounds122017": "SET 43: Released December 2017",
+ "backgrounds122017": "43. sada: Vydaná v decembri 2017",
"backgroundCrosscountrySkiTrailText": "Cross-Country Ski Trail",
"backgroundCrosscountrySkiTrailNotes": "Glide along a Cross-Country Ski Trail.",
- "backgroundStarryWinterNightText": "Starry Winter Night",
- "backgroundStarryWinterNightNotes": "Admire a Starry Winter Night.",
+ "backgroundStarryWinterNightText": "Hviezdna zimná obloha",
+ "backgroundStarryWinterNightNotes": "Obdivuj Hviezdnu zimnú oblohu.",
"backgroundToymakersWorkshopText": "Toymaker's Workshop",
"backgroundToymakersWorkshopNotes": "Bask in the wonder of a Toymaker's Workshop.",
- "backgrounds012018": "SET 44: Released January 2018",
- "backgroundAuroraText": "Aurora",
+ "backgrounds012018": "44. sada: Vydaná v januári 2018",
+ "backgroundAuroraText": "Polárna žiara",
"backgroundAuroraNotes": "Bask in the wintry glow of an Aurora.",
- "backgroundDrivingASleighText": "Sleigh",
- "backgroundDrivingASleighNotes": "Drive a Sleigh over snow-covered fields.",
- "backgroundFlyingOverIcySteppesText": "Icy Steppes",
- "backgroundFlyingOverIcySteppesNotes": "Fly over Icy Steppes.",
- "backgrounds022018": "SET 45: Released February 2018",
- "backgroundChessboardLandText": "Chessboard Land",
- "backgroundChessboardLandNotes": "Play a game in Chessboard Land.",
- "backgroundMagicalMuseumText": "Magical Museum",
+ "backgroundDrivingASleighText": "Sane",
+ "backgroundDrivingASleighNotes": "Jazdi na Saniach cez snehom pokryté polia. ",
+ "backgroundFlyingOverIcySteppesText": "Ľadové stepi",
+ "backgroundFlyingOverIcySteppesNotes": "Leť ponad Ľadové stepi. ",
+ "backgrounds022018": "45. sada: Vydaná vo februári 2018",
+ "backgroundChessboardLandText": "Šachovnicová krajina",
+ "backgroundChessboardLandNotes": "Zahraj si hru v Šachovnicovej krajine.",
+ "backgroundMagicalMuseumText": "Čarovné múzeum",
"backgroundMagicalMuseumNotes": "Tour a Magical Museum.",
- "backgroundRoseGardenText": "Rose Garden",
- "backgroundRoseGardenNotes": "Dally in a fragrant Rose Garden."
+ "backgroundRoseGardenText": "Ružová záhrada",
+ "backgroundRoseGardenNotes": "Potĺkaj sa voňavou Ružovou záhradou."
}
\ No newline at end of file
diff --git a/website/common/locales/sk/groups.json b/website/common/locales/sk/groups.json
index 4f53391cff..b98f22c46f 100644
--- a/website/common/locales/sk/groups.json
+++ b/website/common/locales/sk/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "Would you like to participate?",
"managerAdded": "Manager added successfully",
"managerRemoved": "Manager removed successfully",
- "leaderChanged": "Leader has been changed"
+ "leaderChanged": "Leader has been changed",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/sk/npc.json b/website/common/locales/sk/npc.json
index 7c3aa335ce..875e150157 100644
--- a/website/common/locales/sk/npc.json
+++ b/website/common/locales/sk/npc.json
@@ -31,6 +31,8 @@
"danielText2": "Pozor: ak si na výprave proti bossovi, boss ti stále bude ubližovať za úlohy nesplnené tvojimi spolubojovníkmi! Taktiež tvoje vlastné poškodenie bossovi (alebo zozbierané predmety) sa nezarátajú až kým neodídeš z Hostinca.",
"danielTextBroken": "Vitaj v Hostinci... myslím... Ak si potrebuješ oddýchnuť, ubytujem ťa v Hostinci... Kým tu budeš, tvoje úlohy ti neublížia na konci dňa, ale stále ich môžeš odškrknúť... ak máš na to energiu...",
"danielText2Broken": "Och... ak sa účastníš na výprave proti bossovi, boss ti stále bude ubližovať za úlohy nesplnené tvojimi spolubojovníkmi... Taktiež tvoje vlastné poškodenie bossovi (alebo zozbierané predmety) sa nezarátajú až kým neodídeš z Hostinca...",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "Kupec Alexander",
"welcomeMarket": "Vitaj na trhu! Kúp si u nás vzácne vajcia a elixíry! Predaj všetko, čo máš navyše! Objednaj si užitočné služby. Pozri sa, čo všetko ponúkame.",
"welcomeMarketMobile": "Welcome to the Market! Buy hard-to-find eggs and potions! Come see what we have to offer.",
diff --git a/website/common/locales/sk/quests.json b/website/common/locales/sk/quests.json
index 7a0f585ddd..1c7becbbb8 100644
--- a/website/common/locales/sk/quests.json
+++ b/website/common/locales/sk/quests.json
@@ -120,5 +120,10 @@
"createAccountQuest": "Túto výpravu si získal keď si sa pridal k Habitike! Ak sa pridá aj kamarát, dostane výpravu tiež.",
"questBundles": "Discounted Quest Bundles",
"buyQuestBundle": "Buy Quest Bundle",
- "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!"
+ "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!",
+ "pendingDamage": "<%= damage %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/sk/questscontent.json b/website/common/locales/sk/questscontent.json
index bfddde60db..fe8217cfec 100644
--- a/website/common/locales/sk/questscontent.json
+++ b/website/common/locales/sk/questscontent.json
@@ -569,10 +569,11 @@
"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.",
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
+ "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 gazebo 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!",
"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)"
+ "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/common/locales/sr/groups.json b/website/common/locales/sr/groups.json
index 7731f99400..0ef71c291a 100644
--- a/website/common/locales/sr/groups.json
+++ b/website/common/locales/sr/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "Would you like to participate?",
"managerAdded": "Manager added successfully",
"managerRemoved": "Manager removed successfully",
- "leaderChanged": "Leader has been changed"
+ "leaderChanged": "Leader has been changed",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/sr/npc.json b/website/common/locales/sr/npc.json
index f9f8f5397c..eb5df36ce4 100644
--- a/website/common/locales/sr/npc.json
+++ b/website/common/locales/sr/npc.json
@@ -31,6 +31,8 @@
"danielText2": "Upozorenje: Ako učestvujete u borbi protiv bosa, trpećete štetu zbog propuštenih zadataka ostalih članova Vaše družine! Takođe, šteta koju nanesete bosu neće se videti dok ne napustite Gostionicu, niti će se predmeti koje nađete pojaviti u Vašem inventaru.",
"danielTextBroken": "Welcome to the Tavern... I guess... If you need to rest, I'll set you up at the Inn... While checked-in, your Dailies won't hurt you at the day's end, but you can still check them off... if you have the energy...",
"danielText2Broken": "Oh... If you are participating in a boss quest, the boss will still damage you for your party mates' missed Dailies... Also, your own damage to the Boss (or items collected) will not be applied until you check out of the Inn...",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "Trgovac Aleksander",
"welcomeMarket": "Dobro došli na Pijacu! Kupite jaja i napitke koje ne možete da nađete! Prodajte što Vam nije potrebno! Razgledajte našu robu.",
"welcomeMarketMobile": "Welcome to the Market! Buy hard-to-find eggs and potions! Come see what we have to offer.",
diff --git a/website/common/locales/sr/quests.json b/website/common/locales/sr/quests.json
index 404251633b..a86acd9598 100644
--- a/website/common/locales/sr/quests.json
+++ b/website/common/locales/sr/quests.json
@@ -120,5 +120,10 @@
"createAccountQuest": "You received this quest when you joined Habitica! If a friend joins, they'll get one too.",
"questBundles": "Discounted Quest Bundles",
"buyQuestBundle": "Buy Quest Bundle",
- "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!"
+ "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!",
+ "pendingDamage": "<%= damage %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/sr/questscontent.json b/website/common/locales/sr/questscontent.json
index a60544d269..ffeea84dbc 100644
--- a/website/common/locales/sr/questscontent.json
+++ b/website/common/locales/sr/questscontent.json
@@ -569,10 +569,11 @@
"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.",
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
+ "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 gazebo 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!",
"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)"
+ "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/common/locales/sv/groups.json b/website/common/locales/sv/groups.json
index e028c177b3..3becae4c5e 100644
--- a/website/common/locales/sv/groups.json
+++ b/website/common/locales/sv/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "Vill du vara med och delta?",
"managerAdded": "Direktör lades till",
"managerRemoved": "Direktör togs bort",
- "leaderChanged": "Ledaren har blivit utbytt"
+ "leaderChanged": "Ledaren har blivit utbytt",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/sv/npc.json b/website/common/locales/sv/npc.json
index 438da45c76..1684d359ee 100644
--- a/website/common/locales/sv/npc.json
+++ b/website/common/locales/sv/npc.json
@@ -31,6 +31,8 @@
"danielText2": "Varning: Om du deltar i ett bossuppdrag, kommer bossen fortfarande skada dig för dina sällskapsmedlemmars missade dagliga utmaningar! Din egen skada på bossen (eller hittade föremål) kommer inte appliceras förrän du lämnar Värdshuset.",
"danielTextBroken": "Välkommen till Värdshuset... Antar jag... Om du behöver vila kan jag ordna ett rum... Under tiden kommer inte dina Dagliga Utmaningar att skada dig vid dagens slut, men du kan fortfarande pricka av dem... Om du har energi nog...",
"danielText2Broken": "Åh... Om du deltar i ett Bossuppdrag kommer bossen fortfarande skada dig för ditt sällskaps missade Dagliga Utmaningar... Dessutom kommer din egna skada på bossen (eller hittade föremål) inte att appliceras förrän du lämnar värdshuset...",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "Köpmannen Alexander",
"welcomeMarket": "Välkommen till Marknaden! Köp svårfunna ägg och drycker! Sälj de du inte behöver! Beställ praktiska tjänster! Kom och se vad vi har att erbjuda.",
"welcomeMarketMobile": "Välkommen till Marknaden! Köp trolldrycker och ägg som är svåra att hitta! Kom och se vad vi har för erbjudanden.",
diff --git a/website/common/locales/sv/quests.json b/website/common/locales/sv/quests.json
index b0db83b415..4ddd7284ef 100644
--- a/website/common/locales/sv/quests.json
+++ b/website/common/locales/sv/quests.json
@@ -120,5 +120,10 @@
"createAccountQuest": "Du fick det här uppdraget när du gick med i Habitica! Om en vän går med får dom också en.",
"questBundles": "Rabatt på Uppdragsbuntar",
"buyQuestBundle": "Köp Uppdragsbunt",
- "noQuestToStart": "Kan du inte hitta ett uppdrag att starta? Kolla in Uppdragsaffären i Marknaden för nya utgåvor!"
+ "noQuestToStart": "Kan du inte hitta ett uppdrag att starta? Kolla in Uppdragsaffären i Marknaden för nya utgåvor!",
+ "pendingDamage": "<%= damage %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/sv/questscontent.json b/website/common/locales/sv/questscontent.json
index cb8f68860d..0e442d9f99 100644
--- a/website/common/locales/sv/questscontent.json
+++ b/website/common/locales/sv/questscontent.json
@@ -569,10 +569,11 @@
"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.",
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
+ "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 gazebo 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!",
"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)"
+ "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/common/locales/tr/groups.json b/website/common/locales/tr/groups.json
index d48bd07102..d3fa5e11da 100644
--- a/website/common/locales/tr/groups.json
+++ b/website/common/locales/tr/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "Would you like to participate?",
"managerAdded": "Manager added successfully",
"managerRemoved": "Manager removed successfully",
- "leaderChanged": "Leader has been changed"
+ "leaderChanged": "Leader has been changed",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/tr/npc.json b/website/common/locales/tr/npc.json
index e0a003c097..bd3c5854f2 100644
--- a/website/common/locales/tr/npc.json
+++ b/website/common/locales/tr/npc.json
@@ -31,6 +31,8 @@
"danielText2": "Dikkat et: Eğer bir canavar görevindeysen, diğer takım üyelerinin kaçırdığı Günlük işler hala sana hasar verebilir! Ayrıca, Canavara vereceğin hasar (ya da toplayacağın eşyalar) Handan ayrılana kadar geçerli olmayacaktır.",
"danielTextBroken": "Tavernaya hoş geldin... yani... Eğer biraz dinlenmeye ihtiyacın varsa sana Handa bir oda ayarlayayım... Handa kaldığın sürece Günlük İşlerin gün sonunda sana hasar vermeyecektir ama onları yine de tamamlayabilirsin... enerjin kaldıysa tabii...",
"danielText2Broken": "Bu arada... Eğer bir canavar görevindeysen, diğer takım üyelerinin kaçırdığı Günlük işler hala sana hasar verebilir... Bir de, Canavara vereceğin hasar (ya da toplayacağın eşyalar) Handan ayrılana kadar geçerli olmayacaktır...",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "Tüccar Alexander",
"welcomeMarket": "Pazara hoş geldin! Zor bulunan yumurtalardan ve iksirlerden al! Fazla mallarını sat! Hizmetlerden faydalan! Tekliflerimizi görmek için içeri buyur.",
"welcomeMarketMobile": "Dükkanıma hoş geldin. Burada bulunması zor olan yumurta ve kuluçka iksirlerini satın alabilirsin.buyur ve fiyatlara bir bak.",
diff --git a/website/common/locales/tr/quests.json b/website/common/locales/tr/quests.json
index e19ce887ee..7ce667506c 100644
--- a/website/common/locales/tr/quests.json
+++ b/website/common/locales/tr/quests.json
@@ -120,5 +120,10 @@
"createAccountQuest": "Habitica'ya katıldığında bu görevi kazandın! Eğer bir arkadaşın da katılırsa, o da aynısından kazanacak.",
"questBundles": "İndirimli Görev Paketleri",
"buyQuestBundle": "Görev Paketini Al",
- "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!"
+ "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!",
+ "pendingDamage": "<%= damage %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/tr/questscontent.json b/website/common/locales/tr/questscontent.json
index 59f22d1126..a6978bea3f 100644
--- a/website/common/locales/tr/questscontent.json
+++ b/website/common/locales/tr/questscontent.json
@@ -569,10 +569,11 @@
"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.",
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
+ "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 gazebo 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!",
"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)"
+ "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/common/locales/uk/groups.json b/website/common/locales/uk/groups.json
index bd4f614fe2..321fa8c678 100644
--- a/website/common/locales/uk/groups.json
+++ b/website/common/locales/uk/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "Would you like to participate?",
"managerAdded": "Manager added successfully",
"managerRemoved": "Manager removed successfully",
- "leaderChanged": "Leader has been changed"
+ "leaderChanged": "Leader has been changed",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/uk/npc.json b/website/common/locales/uk/npc.json
index b092aa71e8..507c157409 100644
--- a/website/common/locales/uk/npc.json
+++ b/website/common/locales/uk/npc.json
@@ -31,6 +31,8 @@
"danielText2": "Будьте уважні: якщо ви приймаєте участь у Квесті на Боса, Бос буде наносити вам ушкодження за пропущені Щоденні завдання вашими товаришами по групі! До того ж ви не будете наносити ушкоджень Босу (та отримувати речі) до виходу з господи.",
"danielTextBroken": "Welcome to the Tavern... I guess... If you need to rest, I'll set you up at the Inn... While checked-in, your Dailies won't hurt you at the day's end, but you can still check them off... if you have the energy...",
"danielText2Broken": "Oh... If you are participating in a boss quest, the boss will still damage you for your party mates' missed Dailies... Also, your own damage to the Boss (or items collected) will not be applied until you check out of the Inn...",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "Купець Олександр",
"welcomeMarket": "Вітаю на ринку! Купуйте тут рідкісні яйця та зілля! Продавайте непотріб! Оплачуйте корисні послуги! Погляньте, що тут є в продажу.",
"welcomeMarketMobile": "Welcome to the Market! Buy hard-to-find eggs and potions! Come see what we have to offer.",
diff --git a/website/common/locales/uk/quests.json b/website/common/locales/uk/quests.json
index c2d4217670..08e83f9a7a 100644
--- a/website/common/locales/uk/quests.json
+++ b/website/common/locales/uk/quests.json
@@ -120,5 +120,10 @@
"createAccountQuest": "You received this quest when you joined Habitica! If a friend joins, they'll get one too.",
"questBundles": "Discounted Quest Bundles",
"buyQuestBundle": "Buy Quest Bundle",
- "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!"
+ "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!",
+ "pendingDamage": "<%= damage %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/uk/questscontent.json b/website/common/locales/uk/questscontent.json
index b6af19d426..423cd1cae3 100644
--- a/website/common/locales/uk/questscontent.json
+++ b/website/common/locales/uk/questscontent.json
@@ -569,10 +569,11 @@
"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.",
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
+ "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 gazebo 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!",
"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)"
+ "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/common/locales/zh/groups.json b/website/common/locales/zh/groups.json
index 06c857a88b..203cd1d29f 100644
--- a/website/common/locales/zh/groups.json
+++ b/website/common/locales/zh/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "你希望参加吗?",
"managerAdded": "成功添加管理员",
"managerRemoved": "成功移除管理员",
- "leaderChanged": "首領被改變了"
+ "leaderChanged": "首領被改變了",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/zh/npc.json b/website/common/locales/zh/npc.json
index 3d392cd9e5..420da56735 100644
--- a/website/common/locales/zh/npc.json
+++ b/website/common/locales/zh/npc.json
@@ -31,6 +31,8 @@
"danielText2": "警告:如果你正在参与一个Boss战任务,你仍然会因为队友未完成的每日任务受到boss的伤害!同样,你对Boss的伤害(或者道具的收集)在你离开客栈之前不会结算。",
"danielTextBroken": "欢迎来到酒馆……我想……如果你需要休息,我会把你安置在客栈里……入住之后,你的每日任务就不会在一天结束时给你造成伤害,不过你仍然可以签到……只要你还有精力就行……",
"danielText2Broken": "哦……如果你正在一场BOSS战当中,你仍然会因为队友未完成的每日任务受到BOSS的伤害……同样,你对Boss的伤害(或者道具的收集)在你离开客栈之前不会结算……",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "商人Alexander",
"welcomeMarket": "欢迎来到市场!在这里购买稀有的蛋和药水!卖掉你多余的物品!委托服务!来瞧瞧我们能为你提供什么。",
"welcomeMarketMobile": "欢迎来到市场!在这里购买稀有的蛋和药水!来瞧瞧我们能为你提供什么。",
diff --git a/website/common/locales/zh/quests.json b/website/common/locales/zh/quests.json
index aab856ae11..3eb84e3634 100644
--- a/website/common/locales/zh/quests.json
+++ b/website/common/locales/zh/quests.json
@@ -120,5 +120,10 @@
"createAccountQuest": "当你加人Habitica的时候,你会收到这个任务!如果你的朋友加入,他们也会得到一个。",
"questBundles": "打折的任务包",
"buyQuestBundle": "购买任务包",
- "noQuestToStart": "找不到一个可以开始的任务? 尝试查看市场上新版本的任务商店!"
+ "noQuestToStart": "找不到一个可以开始的任务? 尝试查看市场上新版本的任务商店!",
+ "pendingDamage": "<%= damage %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/zh/questscontent.json b/website/common/locales/zh/questscontent.json
index 728d61b12c..2bbc7feed4 100644
--- a/website/common/locales/zh/questscontent.json
+++ b/website/common/locales/zh/questscontent.json
@@ -569,10 +569,11 @@
"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.",
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
+ "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 gazebo 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!",
"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)"
+ "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/common/locales/zh_TW/groups.json b/website/common/locales/zh_TW/groups.json
index 86629bb902..690282e44b 100644
--- a/website/common/locales/zh_TW/groups.json
+++ b/website/common/locales/zh_TW/groups.json
@@ -416,5 +416,12 @@
"wouldYouParticipate": "Would you like to participate?",
"managerAdded": "Manager added successfully",
"managerRemoved": "Manager removed successfully",
- "leaderChanged": "Leader has been changed"
+ "leaderChanged": "Leader has been changed",
+ "whatIsWorldBoss": "What is a World Boss?",
+ "worldBossDesc": "A World Boss is a special event that brings the Habitica community together to take down a powerful monster with their tasks! All Habitica users are rewarded upon its defeat, even those who have been resting in the Inn or have not used Habitica for the entirety of the quest.",
+ "worldBossLink": "Read more about the previous World Bosses of Habitica on the Wiki.",
+ "worldBossBullet1": "Complete tasks to damage the World Boss",
+ "worldBossBullet2": "The World Boss won’t damage you for missed tasks, but its Rage meter will go up. If the bar fills up, the Boss will attack one of Habitica’s shopkeepers!",
+ "worldBossBullet3": "You can continue with normal Quest Bosses, damage will apply to both",
+ "worldBossBullet4": "Check the Tavern regularly to see World Boss progress and Rage attacks"
}
\ No newline at end of file
diff --git a/website/common/locales/zh_TW/npc.json b/website/common/locales/zh_TW/npc.json
index 666f165cfb..0ab3a6c1e6 100644
--- a/website/common/locales/zh_TW/npc.json
+++ b/website/common/locales/zh_TW/npc.json
@@ -31,6 +31,8 @@
"danielText2": "警告:如果你正在參與一個boss戰任務,你仍然會因為隊友未完成的每日任務,受到boss的傷害。而且你給boss的傷害(或是收到東西)將會在妳離開旅館時才生效。",
"danielTextBroken": "歡迎來到酒館...痾應該是吧...如果你想休息,我會幫你安排到旅館...在旅館裡休息的期間,你的每日任務在每天結算時不會對你造成傷害,但你還是可以完成他們...如果你有體力的話...",
"danielText2Broken": "哦...如果你正參與一場 boss 任務,boss 還是會因為隊友未完成的每日任務而傷害你...另外,你無法對 Boss 造成傷害 ( 或獲得物品 ),直到你離開旅館為止...",
+ "worldBossEvent": "World Boss Event",
+ "worldBossDescription": "World Boss Description",
"alexander": "商人Alexander",
"welcomeMarket": "歡迎來到市場!在這裡買少見的蛋和藥水!賣掉你多餘的物品!委託服務!來瞧瞧我們能為你提供什麼。",
"welcomeMarketMobile": "Welcome to the Market! Buy hard-to-find eggs and potions! Come see what we have to offer.",
diff --git a/website/common/locales/zh_TW/quests.json b/website/common/locales/zh_TW/quests.json
index 83be4b30e9..40f727a896 100644
--- a/website/common/locales/zh_TW/quests.json
+++ b/website/common/locales/zh_TW/quests.json
@@ -120,5 +120,10 @@
"createAccountQuest": "You received this quest when you joined Habitica! If a friend joins, they'll get one too.",
"questBundles": "Discounted Quest Bundles",
"buyQuestBundle": "Buy Quest Bundle",
- "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!"
+ "noQuestToStart": "Can’t find a quest to start? Try checking out the Quest Shop in the Market for new releases!",
+ "pendingDamage": "<%= damage %> pending damage",
+ "bossHealth": "<%= currentHealth %> / <%= maxHealth %> Health",
+ "rageAttack": "Rage Attack:",
+ "bossRage": "<%= currentRage %> / <%= maxRage %> Rage",
+ "rageStrikes": "Rage Strikes"
}
\ No newline at end of file
diff --git a/website/common/locales/zh_TW/questscontent.json b/website/common/locales/zh_TW/questscontent.json
index f482288d07..d07d82541a 100644
--- a/website/common/locales/zh_TW/questscontent.json
+++ b/website/common/locales/zh_TW/questscontent.json
@@ -569,10 +569,11 @@
"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.",
"questDysheartenerBossRageTitle": "Shattering Heartbreak",
- "questDysheartenerBossRageDescription": "When this gauge fills, the Dysheartener will unleash its Shattering Heartbreak on Habitica!",
+ "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 gazebo 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!",
"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)"
+ "questDysheartenerDropHippogriffMount": "Hopeful Hippogriff (Mount)",
+ "dysheartenerArtCredit": "Artwork by @AnnDeLune"
}
\ No newline at end of file
diff --git a/website/raw_sprites/spritesmith/quests/bosses/background_dysheartener.png b/website/raw_sprites/spritesmith/quests/bosses/background_dysheartener.png
new file mode 100644
index 0000000000..a77ddbc8d7
Binary files /dev/null and b/website/raw_sprites/spritesmith/quests/bosses/background_dysheartener.png differ
diff --git a/website/raw_sprites/spritesmith/quests/bosses/phobia_dysheartener.png b/website/raw_sprites/spritesmith/quests/bosses/phobia_dysheartener.png
new file mode 100644
index 0000000000..ac998d9e60
Binary files /dev/null and b/website/raw_sprites/spritesmith/quests/bosses/phobia_dysheartener.png differ
diff --git a/website/raw_sprites/spritesmith_large/promo_dysheartener.png b/website/raw_sprites/spritesmith_large/promo_dysheartener.png
new file mode 100644
index 0000000000..9b3eb10cca
Binary files /dev/null and b/website/raw_sprites/spritesmith_large/promo_dysheartener.png differ
diff --git a/website/server/controllers/api-v3/news.js b/website/server/controllers/api-v3/news.js
index ab74c78a18..4dba59a44d 100644
--- a/website/server/controllers/api-v3/news.js
+++ b/website/server/controllers/api-v3/news.js
@@ -3,7 +3,7 @@ import { authWithHeaders } from '../../middlewares/auth';
let api = {};
// @TODO export this const, cannot export it from here because only routes are exported from controllers
-const LAST_ANNOUNCEMENT_TITLE = 'VALENTINE\'S DAY CELEBRATION AND CHAT IMPROVEMENTS';
+const LAST_ANNOUNCEMENT_TITLE = 'WORLD BOSS: THE DYSHEARTENER IS UNLEASHED';
const worldDmg = { // @TODO
bailey: false,
};
@@ -32,19 +32,22 @@ api.getNews = {
${res.t('newStuff')}
- 2/12/2018 - ${LAST_ANNOUNCEMENT_TITLE}
+ 2/14/2018 - ${LAST_ANNOUNCEMENT_TITLE}
- Habitica Celebrates Valentine's Day!
- In honor of Habitica's holiday celebrating all forms of love, whether it's friendship, familial, or romantic, some of the shopkeepers are dressed up! Take a look around to enjoy their new festive decorations.
- By Beffymaroo and Lemoness
-
- Send a Valentine
- Help motivate all of the lovely people in your life by sending them a caring Valentine. For the next week only, Valentines can be purchased for 10 gold from the Market. For spreading love and joy throughout the community, both the giver AND the receiver get a coveted "Adoring Friends" badge. Hooray!
- While you're there, why not check out the other cards that are available to send to your party? Each one gives a special achievement of its own...
- by Lemoness and SabreCat
- New Chat Performance Improvements
- We've deployed some behind-the-scenes improvements to the Tavern chat, which should cause the messages and avatars to load more quickly. Additionally, each chat message that you post in the Tavern and in Guilds will now remember the outfit your avatar was wearing when you post it, even on a refresh! We hope that these changes will make chatting even more enjoyable.
- By TheHollidayInn and Alys
+ Oh no, a World Boss is attacking Habitica! Head to the Tavern to see it now. If you're on mobile, make sure that you have the latest versions downloaded to get the full experience!
+
+ ~*~
+ 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 oozing 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!"
+ ~*~
+ Complete Habits, Dailies and To-Dos to damage the World Boss! Incomplete Dailies fill the Rage Strike Bar. When the Rage Strike bar is full, the World Boss will attack one of Habitica's shopkeepers. 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.
+ *If you’d prefer not to see the World Boss due to a phobia, check out the Phobia Protection Extension (and set it to hide “Beetles”) :)
+ by Lemoness, Beffymaroo, SabreCat, viirus, Apollo, and piyorii
+ Art by AnnDeLune, Lemoness, and Beffymaroo
+ Written by Lemoness
+ Phobia Protection Extension by Alys
`,