Skip to content

Commit

Permalink
📃 feat: add property of flavor text
Browse files Browse the repository at this point in the history
  • Loading branch information
restrainhalation authored Jun 22, 2024
1 parent 580187c commit de0c21c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ export type Sex = {
mental: Mental;
/** アイコンコンポーネント */
icon: ForwardRefExoticComponent<Omit<IconProps, 'ref'> & RefAttributes<Icon>>;
/** フレーバーテキスト */
flavorText: string;
};

/** 年代 */
Expand All @@ -99,6 +101,8 @@ export type Period = {
mental: Mental;
/** 経歴(クーポン) */
coupons: Coupon[];
/** フレーバーテキスト */
flavorText: string;
};

/** 素質 */
Expand All @@ -125,6 +129,8 @@ export type Nature = {
baseNaturesId: number[];
/** アイコンコンポーネント */
icon: ForwardRefExoticComponent<Omit<IconProps, 'ref'> & RefAttributes<Icon>>;
/** フレーバーテキスト */
flavorText: string;
};

/** 特性 */
Expand All @@ -139,6 +145,8 @@ export type Characteristic = {
physical: Physical;
/** 精神的特徴 */
mental: Mental;
/** フレーバーテキスト */
flavorText: string;
};

/** 身体的特徴定数 */
Expand Down

0 comments on commit de0c21c

Please sign in to comment.