mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-03 04:06:09 +00:00
f3de114d2b
* Add files via upload * Update trainer-type.ts * Update biomes.ts * Update trainer-config.ts * Update trainer-names.ts * Update trainer-names.ts * Update trainers.ts * Update trainers.ts * Added German translation Thanks to CodeTappert * Update trainers.ts * Update trainers.ts * Update trainers.ts * Update trainers.ts * Update trainers.ts * Update trainers.ts * Update trainers.ts to resolve conflicts * Fixed syntax error * Update biomes.ts * Re-added possible biomes for the Sailor trainer class * Added data for dialogue lines for the sailor class * Added dialogue from FRLG * Added locale * Added locale * Added locale * Update trainers.ts * Added locale * Added locale * Added Korean translation * Added locale * Added Portuguese translation * Added locale * Added locale * Added Mandarin Chinese translation * Added Cantonese Chinese translation * Added images * Recentered sprite * Added Spanish translation for the dialogue * Delete duplicate * Delete duplicate * Updated dialogue with requested changes * Update Spanish translation to reflect the changes * Update dialogue.ts * Update dialogue.ts * Update dialogue.ts * Update dialogue.ts * Update dialogue.ts * Update dialogue.ts * Update dialogue.ts
263 lines
6.8 KiB
TypeScript
263 lines
6.8 KiB
TypeScript
import {SimpleTranslationEntries} from "#app/plugins/i18n";
|
|
|
|
// Titles of special trainers like gym leaders, elite four, and the champion
|
|
export const titles: SimpleTranslationEntries = {
|
|
"elite_four": "Elite Four",
|
|
"elite_four_female": "Elite Four",
|
|
"gym_leader": "Gym Leader",
|
|
"gym_leader_female": "Gym Leader",
|
|
"gym_leader_double": "Gym Leader Duo",
|
|
"champion": "Champion",
|
|
"champion_female": "Champion",
|
|
"champion_double": "Champion Duo",
|
|
"rival": "Rival",
|
|
"professor": "Professor",
|
|
"frontier_brain": "Frontier Brain",
|
|
// Maybe if we add the evil teams we can add "Team Rocket" and "Team Aqua" etc. here as well as "Team Rocket Boss" and "Team Aqua Admin" etc.
|
|
} as const;
|
|
|
|
// Titles of trainers like "Youngster" or "Lass"
|
|
export const trainerClasses: SimpleTranslationEntries = {
|
|
"ace_trainer": "Ace Trainer",
|
|
"ace_trainer_female": "Ace Trainer",
|
|
"ace_duo": "Ace Duo",
|
|
"artist": "Artist",
|
|
"artist_female": "Artist",
|
|
"backers": "Backers",
|
|
"backpacker": "Backpacker",
|
|
"backpacker_female": "Backpacker",
|
|
"backpackers": "Backpackers",
|
|
"baker": "Baker",
|
|
"battle_girl": "Battle Girl",
|
|
"beauty": "Beauty",
|
|
"beginners": "Beginners",
|
|
"biker": "Biker",
|
|
"black_belt": "Black Belt",
|
|
"breeder": "Breeder",
|
|
"breeder_female": "Breeder",
|
|
"breeders": "Breeders",
|
|
"clerk": "Clerk",
|
|
"clerk_female": "Clerk",
|
|
"colleagues": "Colleagues",
|
|
"crush_kin": "Crush Kin",
|
|
"cyclist": "Cyclist",
|
|
"cyclist_female": "Cyclist",
|
|
"cyclists": "Cyclists",
|
|
"dancer": "Dancer",
|
|
"dancer_female": "Dancer",
|
|
"depot_agent": "Depot Agent",
|
|
"doctor": "Doctor",
|
|
"doctor_female": "Doctor",
|
|
"firebreather": "Firebreather",
|
|
"fisherman": "Fisherman",
|
|
"fisherman_female": "Fisherman",
|
|
"gentleman": "Gentleman",
|
|
"guitarist": "Guitarist",
|
|
"guitarist_female": "Guitarist",
|
|
"harlequin": "Harlequin",
|
|
"hiker": "Hiker",
|
|
"hooligans": "Hooligans",
|
|
"hoopster": "Hoopster",
|
|
"infielder": "Infielder",
|
|
"janitor": "Janitor",
|
|
"lady": "Lady",
|
|
"lass": "Lass",
|
|
"linebacker": "Linebacker",
|
|
"maid": "Maid",
|
|
"madame": "Madame",
|
|
"medical_team": "Medical Team",
|
|
"musician": "Musician",
|
|
"hex_maniac": "Hex Maniac",
|
|
"nurse": "Nurse",
|
|
"nursery_aide": "Nursery Aide",
|
|
"officer": "Officer",
|
|
"parasol_lady": "Parasol Lady",
|
|
"pilot": "Pilot",
|
|
"pokéfan": "Poké Fan",
|
|
"pokéfan_female": "Poké Fan",
|
|
"pokéfan_family": "Poké Fan Family",
|
|
"preschooler": "Preschooler",
|
|
"preschooler_female": "Preschooler",
|
|
"preschoolers": "Preschoolers",
|
|
"psychic": "Psychic",
|
|
"psychic_female": "Psychic",
|
|
"psychics": "Psychics",
|
|
"pokémon_ranger": "Pokémon Ranger",
|
|
"pokémon_ranger_female": "Pokémon Ranger",
|
|
"pokémon_rangers": "Pokémon Ranger",
|
|
"ranger": "Ranger",
|
|
"restaurant_staff": "Restaurant Staff",
|
|
"rich": "Rich",
|
|
"rich_female": "Rich",
|
|
"rich_boy": "Rich Boy",
|
|
"rich_couple": "Rich Couple",
|
|
"rich_kid": "Rich Kid",
|
|
"rich_kid_female": "Rich Kid",
|
|
"rich_kids": "Rich Kids",
|
|
"roughneck": "Roughneck",
|
|
"sailor": "Sailor",
|
|
"scientist": "Scientist",
|
|
"scientist_female": "Scientist",
|
|
"scientists": "Scientists",
|
|
"smasher": "Smasher",
|
|
"snow_worker": "Snow Worker",
|
|
"snow_worker_female": "Snow Worker",
|
|
"striker": "Striker",
|
|
"school_kid": "School Kid",
|
|
"school_kid_female": "School Kid",
|
|
"school_kids": "School Kids",
|
|
"swimmer": "Swimmer",
|
|
"swimmer_female": "Swimmer",
|
|
"swimmers": "Swimmers",
|
|
"twins": "Twins",
|
|
"veteran": "Veteran",
|
|
"veteran_female": "Veteran",
|
|
"veteran_duo": "Veteran Duo",
|
|
"waiter": "Waiter",
|
|
"waitress": "Waitress",
|
|
"worker": "Worker",
|
|
"worker_female": "Worker",
|
|
"workers": "Workers",
|
|
"youngster": "Youngster"
|
|
} as const;
|
|
|
|
// Names of special trainers like gym leaders, elite four, and the champion
|
|
export const trainerNames: SimpleTranslationEntries = {
|
|
"brock": "Brock",
|
|
"misty": "Misty",
|
|
"lt_surge": "Lt Surge",
|
|
"erika": "Erika",
|
|
"janine": "Janine",
|
|
"sabrina": "Sabrina",
|
|
"blaine": "Blaine",
|
|
"giovanni": "Giovanni",
|
|
"falkner": "Falkner",
|
|
"bugsy": "Bugsy",
|
|
"whitney": "Whitney",
|
|
"morty": "Morty",
|
|
"chuck": "Chuck",
|
|
"jasmine": "Jasmine",
|
|
"pryce": "Pryce",
|
|
"clair": "Clair",
|
|
"roxanne": "Roxanne",
|
|
"brawly": "Brawly",
|
|
"wattson": "Wattson",
|
|
"flannery": "Flannery",
|
|
"norman": "Norman",
|
|
"winona": "Winona",
|
|
"tate": "Tate",
|
|
"liza": "Liza",
|
|
"juan": "Juan",
|
|
"roark": "Roark",
|
|
"gardenia": "Gardenia",
|
|
"maylene": "Maylene",
|
|
"crasher_wake": "Crasher Wake",
|
|
"fantina": "Fantina",
|
|
"byron": "Byron",
|
|
"candice": "Candice",
|
|
"volkner": "Volkner",
|
|
"cilan": "Cilan",
|
|
"chili": "Chili",
|
|
"cress": "Cress",
|
|
"cheren": "Cheren",
|
|
"lenora": "Lenora",
|
|
"roxie": "Roxie",
|
|
"burgh": "Burgh",
|
|
"elesa": "Elesa",
|
|
"clay": "Clay",
|
|
"skyla": "Skyla",
|
|
"brycen": "Brycen",
|
|
"drayden": "Drayden",
|
|
"marlon": "Marlon",
|
|
"viola": "Viola",
|
|
"grant": "Grant",
|
|
"korrina": "Korrina",
|
|
"ramos": "Ramos",
|
|
"clemont": "Clemont",
|
|
"valerie": "Valerie",
|
|
"olympia": "Olympia",
|
|
"wulfric": "Wulfric",
|
|
"milo": "Milo",
|
|
"nessa": "Nessa",
|
|
"kabu": "Kabu",
|
|
"bea": "Bea",
|
|
"allister": "Allister",
|
|
"opal": "Opal",
|
|
"bede": "Bede",
|
|
"gordie": "Gordie",
|
|
"melony": "Melony",
|
|
"piers": "Piers",
|
|
"marnie": "Marnie",
|
|
"raihan": "Raihan",
|
|
"katy": "Katy",
|
|
"brassius": "Brassius",
|
|
"iono": "Iono",
|
|
"kofu": "Kofu",
|
|
"larry": "Larry",
|
|
"ryme": "Ryme",
|
|
"tulip": "Tulip",
|
|
"grusha": "Grusha",
|
|
"lorelei": "Lorelei",
|
|
"bruno": "Bruno",
|
|
"agatha": "Agatha",
|
|
"lance": "Lance",
|
|
"will": "Will",
|
|
"koga": "Koga",
|
|
"karen": "Karen",
|
|
"sidney": "Sidney",
|
|
"phoebe": "Phoebe",
|
|
"glacia": "Glacia",
|
|
"drake": "Drake",
|
|
"aaron": "Aaron",
|
|
"bertha": "Bertha",
|
|
"flint": "Flint",
|
|
"lucian": "Lucian",
|
|
"shauntal": "Shauntal",
|
|
"marshal": "Marshal",
|
|
"grimsley": "Grimsley",
|
|
"caitlin": "Caitlin",
|
|
"malva": "Malva",
|
|
"siebold": "Siebold",
|
|
"wikstrom": "Wikstrom",
|
|
"drasna": "Drasna",
|
|
"hala": "Hala",
|
|
"molayne": "Molayne",
|
|
"olivia": "Olivia",
|
|
"acerola": "Acerola",
|
|
"kahili": "Kahili",
|
|
"rika": "Rika",
|
|
"poppy": "Poppy",
|
|
"hassel": "Hassel",
|
|
"crispin": "Crispin",
|
|
"amarys": "Amarys",
|
|
"lacey": "Lacey",
|
|
"drayton": "Drayton",
|
|
"blue": "Blue",
|
|
"red": "Red",
|
|
"steven": "Steven",
|
|
"wallace": "Wallace",
|
|
"cynthia": "Cynthia",
|
|
"alder": "Alder",
|
|
"iris": "Iris",
|
|
"diantha": "Diantha",
|
|
"hau": "Hau",
|
|
"geeta": "Geeta",
|
|
"nemona": "Nemona",
|
|
"kieran": "Kieran",
|
|
"leon": "Leon",
|
|
"rival": "Finn",
|
|
"rival_female": "Ivy",
|
|
|
|
// Double Names
|
|
"blue_red_double": "Blue & Red",
|
|
"red_blue_double": "Red & Blue",
|
|
"tate_liza_double": "Tate & Liza",
|
|
"liza_tate_double": "Liza & Tate",
|
|
"steven_wallace_double": "Steven & Wallace",
|
|
"wallace_steven_double": "Wallace & Steven",
|
|
"alder_iris_double": "Alder & Iris",
|
|
"iris_alder_double": "Iris & Alder",
|
|
"marnie_piers_double": "Marnie & Piers",
|
|
"piers_marnie_double": "Piers & Marnie",
|
|
} as const;
|