diff --git a/package.json b/package.json index 5d0164c..4cb1b07 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/crew/bag.ts b/src/crew/bag.ts index 6722726..cd476ed 100644 --- a/src/crew/bag.ts +++ b/src/crew/bag.ts @@ -20,5 +20,6 @@ export const bagData: CrewItem = { hobbies: ["carrying", "eating", "sleeping"], favoriteFood: "grass", favoriteColor: "purple", + gender: 0, }, }; diff --git a/src/crew/bean.ts b/src/crew/bean.ts index 1326636..b9b1deb 100644 --- a/src/crew/bean.ts +++ b/src/crew/bean.ts @@ -19,5 +19,6 @@ export const beanData: CrewItem = { hobbies: ["jumping", "bouncing", "rolling"], favoriteFood: "rice", favoriteColor: "green", + gender: 1, }, }; diff --git a/src/crew/bobo.ts b/src/crew/bobo.ts index 5704922..64c6e0e 100644 --- a/src/crew/bobo.ts +++ b/src/crew/bobo.ts @@ -20,5 +20,6 @@ export const boboData: CrewItem = { hobbies: ["swimming", "singing", "dancing"], favoriteFood: "algae", favoriteColor: "blue", + gender: 0, }, }; diff --git a/src/crew/burpman.ts b/src/crew/burpman.ts index 6ed2fc3..7f52caf 100644 --- a/src/crew/burpman.ts +++ b/src/crew/burpman.ts @@ -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, + }, }; diff --git a/src/crew/ghostiny.ts b/src/crew/ghostiny.ts index ff9d320..e487ae2 100644 --- a/src/crew/ghostiny.ts +++ b/src/crew/ghostiny.ts @@ -19,5 +19,6 @@ export const ghostinyData: CrewItem = { origin: "unknown", species: "ghost", weight: -1, + gender: 0, }, }; diff --git a/src/crew/ghosty.ts b/src/crew/ghosty.ts index 826391a..4a84b53 100644 --- a/src/crew/ghosty.ts +++ b/src/crew/ghosty.ts @@ -19,5 +19,6 @@ export const ghostyData: CrewItem = { origin: "unknown", species: "ghost", weight: 0, + gender: 2, }, }; diff --git a/src/crew/gigagantrum.ts b/src/crew/gigagantrum.ts index e7b1f43..d3196ec 100644 --- a/src/crew/gigagantrum.ts +++ b/src/crew/gigagantrum.ts @@ -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, @@ -19,5 +19,6 @@ export const gigagantrumData: CrewItem = { origin: "Somewhere in KAWORLD", species: "rock", weight: 100, + gender: 2, }, }; diff --git a/src/crew/kat.ts b/src/crew/kat.ts index cf466ac..1bedf89 100644 --- a/src/crew/kat.ts +++ b/src/crew/kat.ts @@ -19,5 +19,6 @@ export const katData: CrewItem = { hobbies: ["sleeping", "eating", "playing"], origin: "space", species: "alien", + gender: 1, }, }; diff --git a/src/crew/mark.ts b/src/crew/mark.ts index 2988130..7e0b5fb 100644 --- a/src/crew/mark.ts +++ b/src/crew/mark.ts @@ -19,5 +19,6 @@ export const markData: CrewItem = { origin: "Bing Kabang", species: "mark", weight: 20, + gender: 0, }, }; diff --git a/src/crew/money_bag.ts b/src/crew/money_bag.ts index 07586e2..b82edcd 100644 --- a/src/crew/money_bag.ts +++ b/src/crew/money_bag.ts @@ -20,5 +20,6 @@ export const moneyBagData: CrewItem = { hobbies: ["coing", "greeding", "sleeping"], favoriteFood: "coin", favoriteColor: "yellow", + gender: 1, }, }; diff --git a/src/crew/tga.ts b/src/crew/tga.ts index 7d9f292..1827139 100644 --- a/src/crew/tga.ts +++ b/src/crew/tga.ts @@ -19,5 +19,6 @@ export const tgaData: CrewItem = { origin: "A red country", species: "dinosaaur", weight: 60, + gender: 0, }, }; diff --git a/src/types/crew.ts b/src/types/crew.ts index 4b76dba..a684e95 100644 --- a/src/types/crew.ts +++ b/src/types/crew.ts @@ -30,4 +30,5 @@ export type CrewMemberMeta = { hobbies: string[]; favoriteFood: string; favoriteColor: string; + gender: 0 | 1 | 2; };