16 lines
678 B
TypeScript
16 lines
678 B
TypeScript
import { SimpleTranslationEntries } from "#app/plugins/i18n";
|
|
|
|
export const eggList: SimpleTranslationEntries = {
|
|
"egg": "Egg",
|
|
"common": "Common",
|
|
"rare": "Rare",
|
|
"epic": "Epic",
|
|
"legendary": "Legendary",
|
|
"5waves": "Sounds can be heard coming from inside! It will hatch soon!",
|
|
"15waves": "It appears to move occasionally. It may be close to hatching.",
|
|
"50waves": "What will hatch from this? It doesn't seem close to hatching.",
|
|
">50waves": "It looks like this Egg will take a long time to hatch.",
|
|
"legendaryRateUp": "Legendary Rate Up",
|
|
"rareEggMoveRateUp": "Rare Egg Move Rate Up",
|
|
"shinyRateUp": "Shiny Rate Up",
|
|
} as const; |