Skip to content

Commit

Permalink
Update dusk Alcremies to show Counterclockwise rather than Any direction
Browse files Browse the repository at this point in the history
  • Loading branch information
wormania committed Jun 14, 2024
1 parent 8e7f8fe commit 415beb4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -79448,7 +79448,7 @@ const battleCafeToHumanReadableString = (battleCafeLocation) => {
const splitCamelCase = GameConstants.camelCaseToString(spinEnum).replace('3600', ' 3600');
const commaSeperated = splitCamelCase.replaceAll(' ', ', ');
const relativeSeconds = commaSeperated.replace('Above5', '5 or more').replace('Above10', '11 or more').replace('Below5', 'Less than 5');
const spinWording = relativeSeconds.replace('At5', 'Dusk, Any').replace('Any', 'Any direction');
const spinWording = relativeSeconds.replace('At5', 'Dusk, Counterclockwise').replace('Any', 'Any direction');
return `${sweetString} - ${spinWording} seconds`;
};

Expand Down
2 changes: 1 addition & 1 deletion scripts/pages/pokemon.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const battleCafeToHumanReadableString = (battleCafeLocation) => {
const splitCamelCase = GameConstants.camelCaseToString(spinEnum).replace('3600', ' 3600');
const commaSeperated = splitCamelCase.replaceAll(' ', ', ');
const relativeSeconds = commaSeperated.replace('Above5', '5 or more').replace('Above10', '11 or more').replace('Below5', 'Less than 5');
const spinWording = relativeSeconds.replace('At5', 'Dusk, Any').replace('Any', 'Any direction');
const spinWording = relativeSeconds.replace('At5', 'Dusk, Counterclockwise').replace('Any', 'Any direction');
return `${sweetString} - ${spinWording} seconds`;
};

Expand Down

0 comments on commit 415beb4

Please sign in to comment.