Skip to content

Commit

Permalink
Add data for age system
Browse files Browse the repository at this point in the history
  • Loading branch information
delbertina committed Feb 5, 2024
1 parent 9b2d0c3 commit 063d782
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
7 changes: 7 additions & 0 deletions app/data/action-buttons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,21 @@ export const ActionButtonList: ActionButton[] = [
imgSrc: ["u1f41f_u2601-ufe0f.png"],
animateClass: styles.fade,
preDelay: 0,
ageRequirement: 10,
},
{
text: "Play",
imgSrc: ["u1f3c0_u1f41f.png", "u26bd_u1f41f.png"],
animateClass: styles.fade,
preDelay: 0,
ageRequirement: 10,
},
{
text: "Hit",
imgSrc: ["u1f41f_u1f4ab.png", "u1f41f_u1f62d.png"],
animateClass: styles.fade,
preDelay: 0,
ageRequirement: 20,
},
{
text: "Medicine",
Expand All @@ -42,18 +45,21 @@ export const ActionButtonList: ActionButton[] = [
],
animateClass: styles.fade,
preDelay: 0,
ageRequirement: 20,
},
{
text: "Joke",
imgSrc: ["u1f41f_u1f602.png", "u1f41f_u1f644.png"],
animateClass: styles.fade,
preDelay: 0,
ageRequirement: 20,
},
{
text: "Lights",
imgSrc: ["u1f41f_u1f634.png", "u1f41f_u1f31f.png"],
animateClass: styles.fade,
preDelay: 0,
ageRequirement: 30,
},
{
text: "Dress",
Expand All @@ -65,5 +71,6 @@ export const ActionButtonList: ActionButton[] = [
],
animateClass: styles.fade,
preDelay: 0,
ageRequirement: 30,
},
];
1 change: 1 addition & 0 deletions app/types/action-button.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ export interface ActionButton {
imgSrc: string[];
animateClass: string;
preDelay: number;
ageRequirement?: number;
}

0 comments on commit 063d782

Please sign in to comment.