Skip to content

Commit

Permalink
fix: fixed typo generaton -> generation
Browse files Browse the repository at this point in the history
  • Loading branch information
favna committed Jan 6, 2020
1 parent c6c1075 commit 379e2e0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions __tests__/MoveIntent.test.ts
Expand Up @@ -40,7 +40,7 @@ describe('MoveIntent', () => {
Dragon Claw has a base power of 80 and it has 15 pp.
Under normal conditions this move will have a priority of 0 and an accuracy of 100%.
In battles with multiple Pokémon on each side it will have an effect on regular targets.
Dragon Claw is available in the Generaton 8 games.</speak>
Dragon Claw is available in the generation 8 games.</speak>
`);
});

Expand Down Expand Up @@ -73,7 +73,7 @@ describe('MoveIntent', () => {
Dragon Dance is a status move and it has 20 pp.
Under normal conditions this move will have a priority of 0 and an accuracy of 100%.
In battles with multiple Pokémon on each side it will have an effect on the user.
Dragon Dance is available in the Generaton 8 games.</speak>
Dragon Dance is available in the generation 8 games.</speak>
`);
});

Expand Down Expand Up @@ -106,7 +106,7 @@ describe('MoveIntent', () => {
Pika Papow base power is calculated based on (happiness * 10) / 25 and it has 20 pp.
Under normal conditions this move will have a priority of 0 and an accuracy of 100%.
In battles with multiple Pokémon on each side it will have an effect on regular targets.
Pika Papow is available in the Generaton 8 games.</speak>
Pika Papow is available in the generation 8 games.</speak>
`);
});

Expand Down Expand Up @@ -206,7 +206,7 @@ describe('MoveIntent', () => {
Under normal conditions this move will have a priority of 0 and an accuracy of 100%.
In battles with multiple Pokémon on each side it will have an effect on all adjacent foes.
This move is a G MAX move and can only be used by G Max Pikachu.
G-max Volt Crash is available in the Generaton 8 games.</speak>
G-max Volt Crash is available in the generation 8 games.</speak>
`);
});
});
2 changes: 1 addition & 1 deletion src/dexa.ts
Expand Up @@ -149,7 +149,7 @@ export default class extends AlexaApp {
`In battles with multiple Pokémon on each side it will have an effect on ${c.parseMoveTarget(moveData.target)}.`,
moveData.isZ ? `This move is a Z Move and requires the Z-Crystal ${moveData.isZ}.` : null,
moveData.isGMax ? `This move is a G MAX move and can only be used by G Max ${moveData.isGMax}.` : null,
moveData.isNonstandard !== 'Past' ? `${titleCaseName} is available in the Generaton 8 games.` : null
moveData.isNonstandard !== 'Past' ? `${titleCaseName} is available in the generation 8 games.` : null
]
.filter(this.dFilter)
.join(' ');
Expand Down

0 comments on commit 379e2e0

Please sign in to comment.