Skip to content

Commit 9ee20f2

Browse files
authored
fix(text): Fixed typos and grammar in Destiny Deoxys quest line (pokeclicker#5958)
Fixed these Typos Step 1: The first sentence in the quest should say "There seems to be a big 'fuss' about 'the' new 'findings' in the Giant Chasm. Step 8: The quest description has a typo. It says 'isn' instead of 'isn't' Step 10: The quest description says 'Purple and Green Gemed Deoxys' instead of 'Purple and Green Gemmed Deoxys' Green Pulsing Gemstone The correct adjective order would be Pulsing Green Gemstone, but I'm not sure if the entire thing (or just Pulsing Gemstone) is a proper noun, in which case the ordering wouldn't apply
1 parent 68f0ea1 commit 9ee20f2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/scripts/quests/QuestLineHelper.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1455,10 +1455,10 @@ class QuestLineHelper {
14551455
public static createDestinyDeoxysQuestLine() {
14561456
const destinyDeoxysQuest = new QuestLine('Destiny Deoxys', 'Discover the mystery of the crashed meteor.', new QuestLineCompletedRequirement('Hollow Truth and Ideals'), GameConstants.BulletinBoards.Unova);
14571457

1458-
const clearGiantChasm = new DefeatDungeonQuest(5, 0, 'Giant Chasm').withDescription('There seems to be a big fuzz about new foundings in the Giant Chasm. Try finding it.');
1458+
const clearGiantChasm = new DefeatDungeonQuest(5, 0, 'Giant Chasm').withDescription('There seems to be a big fuss about a new discovery in the Giant Chasm. Try finding it.');
14591459
destinyDeoxysQuest.addQuest(clearGiantChasm);
14601460

1461-
const talkToGreenGem = new TalkToNPCQuest(destinyGem, 'You found a Green Pulsing Gemstone. Take a closer look.');
1461+
const talkToGreenGem = new TalkToNPCQuest(destinyGem, 'You found a pulsating Green Gemstone. Take a closer look.');
14621462
destinyDeoxysQuest.addQuest(talkToGreenGem);
14631463

14641464
const rayquazaDeoxysBattle = new DefeatTemporaryBattleQuest('Destiny Deoxys Rayquaza', 'Rayquaza and Deoxys are rampaging in the area. Try to calm them down.');
@@ -1481,13 +1481,13 @@ class QuestLineHelper {
14811481
destinyDeoxysQuest.addQuest(new MultipleQuestsQuest([
14821482
gainElectricGems,
14831483
gainSteelGems,
1484-
], 'The generator isn\t working. Look around for scraps to repair it.'));
1484+
], 'The generator isn\'t working. Look around for scraps to repair it.'));
14851485

14861486

14871487
const rayquazaBFBattle = new DefeatTemporaryBattleQuest('Destiny Rayquaza', 'Rayquaza attacks again. Calm it down for the last time.');
14881488
destinyDeoxysQuest.addQuest(rayquazaBFBattle);
14891489

1490-
const talkToDeoxys = new TalkToNPCQuest(destinyDeoxysReunion, 'Rayquaza realized that the Deoxys are no threat. Reunite the Purple and Green Gemed Deoxys.');
1490+
const talkToDeoxys = new TalkToNPCQuest(destinyDeoxysReunion, 'Rayquaza realized that the Deoxys are no threat. Reunite the Purple and Green Gemmed Deoxys.');
14911491
destinyDeoxysQuest.addQuest(talkToDeoxys);
14921492

14931493
App.game.quests.questLines().push(destinyDeoxysQuest);

0 commit comments

Comments
 (0)