diff --git a/src/constants.ts b/src/constants.ts index b5837c7dd7f..17cf08aa7e2 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -103,7 +103,7 @@ export const ANTI_VARIANCE_WEIGHT_MODIFIER = 15; export const FAKE_TITLE_LOGO_CHANCE = 10000; /** - * The ceiling on friendshp amount that can be reached through the use of rare candies. + * The ceiling on friendship amount that can be reached through the use of rare candies. * Using rare candies will never increase friendship beyond this value. */ export const RARE_CANDY_FRIENDSHIP_CAP = 200; diff --git a/src/system/ribbons/ribbon-data.ts b/src/system/ribbons/ribbon-data.ts index 080b118e7f5..42c523afc0e 100644 --- a/src/system/ribbons/ribbon-data.ts +++ b/src/system/ribbons/ribbon-data.ts @@ -1,4 +1,5 @@ import type { Brander } from "#types/type-helpers"; + export type RibbonFlag = (number & Brander<"RibbonFlag">) | 0; /** diff --git a/src/system/ribbons/ribbon-methods.ts b/src/system/ribbons/ribbon-methods.ts index aa88f8e6c62..a465357ab8c 100644 --- a/src/system/ribbons/ribbon-methods.ts +++ b/src/system/ribbons/ribbon-methods.ts @@ -8,7 +8,7 @@ import { isNullOrUndefined } from "#utils/common"; * Award one or more ribbons to a species and its pre-evolutions * * @param id - The ID of the species to award ribbons to - * @param ribbons The ribbon(s) to award (use bitwise OR to combine multiple) + * @param ribbons - The ribbon(s) to award (use bitwise OR to combine multiple) */ export function awardRibbonsToSpeciesLine(id: SpeciesId, ribbons: RibbonFlag): void { const dexData = globalScene.gameData.dexData;