Skip to content

Commit

Permalink
feat: add gender
Browse files Browse the repository at this point in the history
  • Loading branch information
lajbel committed Aug 16, 2024
1 parent b7c361b commit 4bed225
Show file tree
Hide file tree
Showing 13 changed files with 24 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@kaplayjs/crew",
"description": "The home of the KAPLAY assets.",
"version": "1.1.0",
"version": "1.2.0",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
Expand Down
1 change: 1 addition & 0 deletions src/crew/bag.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ export const bagData: CrewItem = {
hobbies: ["carrying", "eating", "sleeping"],
favoriteFood: "grass",
favoriteColor: "purple",
gender: 0,
},
};
1 change: 1 addition & 0 deletions src/crew/bean.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@ export const beanData: CrewItem = {
hobbies: ["jumping", "bouncing", "rolling"],
favoriteFood: "rice",
favoriteColor: "green",
gender: 1,
},
};
1 change: 1 addition & 0 deletions src/crew/bobo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ export const boboData: CrewItem = {
hobbies: ["swimming", "singing", "dancing"],
favoriteFood: "algae",
favoriteColor: "blue",
gender: 0,
},
};
11 changes: 11 additions & 0 deletions src/crew/burpman.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,15 @@ export const burpmanData: CrewItem = {
type: "crew",
sprite: burpmanSprite,
outlined: burpmanSpriteO,
crewmeta: {
age: 50,
height: 1.6,
weight: 80,
species: "alien",
origin: "space",
hobbies: ["burping", "eating", "sleeping"],
favoriteFood: "beans",
favoriteColor: "green",
gender: 0,
},
};
1 change: 1 addition & 0 deletions src/crew/ghostiny.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@ export const ghostinyData: CrewItem = {
origin: "unknown",
species: "ghost",
weight: -1,
gender: 0,
},
};
1 change: 1 addition & 0 deletions src/crew/ghosty.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@ export const ghostyData: CrewItem = {
origin: "unknown",
species: "ghost",
weight: 0,
gender: 2,
},
};
3 changes: 2 additions & 1 deletion src/crew/gigagantrum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const gigagantrumData: CrewItem = {
name: "Gigagantrum",
author: "tga",
description: "A guy who is very strong",
secret: "Tga is his best friend.",
secret: "Tga is Gigagantrum best friend.",
type: "crew",
outlined: gigagantrumSpriteO,
sprite: gigagantrumSprite,
Expand All @@ -19,5 +19,6 @@ export const gigagantrumData: CrewItem = {
origin: "Somewhere in KAWORLD",
species: "rock",
weight: 100,
gender: 2,
},
};
1 change: 1 addition & 0 deletions src/crew/kat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@ export const katData: CrewItem = {
hobbies: ["sleeping", "eating", "playing"],
origin: "space",
species: "alien",
gender: 1,
},
};
1 change: 1 addition & 0 deletions src/crew/mark.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@ export const markData: CrewItem = {
origin: "Bing Kabang",
species: "mark",
weight: 20,
gender: 0,
},
};
1 change: 1 addition & 0 deletions src/crew/money_bag.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ export const moneyBagData: CrewItem = {
hobbies: ["coing", "greeding", "sleeping"],
favoriteFood: "coin",
favoriteColor: "yellow",
gender: 1,
},
};
1 change: 1 addition & 0 deletions src/crew/tga.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@ export const tgaData: CrewItem = {
origin: "A red country",
species: "dinosaaur",
weight: 60,
gender: 0,
},
};
1 change: 1 addition & 0 deletions src/types/crew.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@ export type CrewMemberMeta = {
hobbies: string[];
favoriteFood: string;
favoriteColor: string;
gender: 0 | 1 | 2;
};

0 comments on commit 4bed225

Please sign in to comment.