diff --git a/assets/crew/goldfly-o.png b/assets/crew/goldfly-o.png new file mode 100644 index 0000000..1fff44d Binary files /dev/null and b/assets/crew/goldfly-o.png differ diff --git a/assets/crew/goldfly.png b/assets/crew/goldfly.png new file mode 100644 index 0000000..54983e0 Binary files /dev/null and b/assets/crew/goldfly.png differ diff --git a/assets/crew/lamp-o.png b/assets/crew/lamp-o.png new file mode 100644 index 0000000..59ae39b Binary files /dev/null and b/assets/crew/lamp-o.png differ diff --git a/assets/crew/lamp.png b/assets/crew/lamp.png new file mode 100644 index 0000000..4016aae Binary files /dev/null and b/assets/crew/lamp.png differ diff --git a/assets/crew/onion-o.png b/assets/crew/onion-o.png new file mode 100644 index 0000000..3e61508 Binary files /dev/null and b/assets/crew/onion-o.png differ diff --git a/assets/crew/onion.png b/assets/crew/onion.png new file mode 100644 index 0000000..0459869 Binary files /dev/null and b/assets/crew/onion.png differ diff --git a/assets/crew/src/goldfly.aseprite b/assets/crew/src/goldfly.aseprite new file mode 100644 index 0000000..a87e2f8 Binary files /dev/null and b/assets/crew/src/goldfly.aseprite differ diff --git a/assets/crew/src/lamp.aseprite b/assets/crew/src/lamp.aseprite new file mode 100644 index 0000000..d18e8f4 Binary files /dev/null and b/assets/crew/src/lamp.aseprite differ diff --git a/assets/crew/src/onion.aseprite b/assets/crew/src/onion.aseprite new file mode 100644 index 0000000..e87c011 Binary files /dev/null and b/assets/crew/src/onion.aseprite differ diff --git a/src/crew/goldfly.ts b/src/crew/goldfly.ts new file mode 100644 index 0000000..f7d3a90 --- /dev/null +++ b/src/crew/goldfly.ts @@ -0,0 +1,24 @@ +import goldflySpriteO from "../../assets/crew/goldfly-o.png"; +import goldflySprite from "../../assets/crew/goldfly.png"; +import type { CrewItem } from "../types/crew"; + +export const goldflyData: CrewItem = { + name: "goldfly", + description: "A ghost that likes to fly around.", + author: "lajbel", + secret: "She hates Ghosty and Ghostiny.", + type: "crew", + sprite: goldflySprite, + outlined: goldflySpriteO, + crewmeta: { + age: -50, + favoriteColor: "yellow", + favoriteFood: "...", + height: 0, + gender: 1, + hobbies: ["flying", "hating Ghosty and Ghostiny"], + origin: "The void", + species: "ghost", + weight: 0, + }, +}; diff --git a/src/crew/lamp.ts b/src/crew/lamp.ts new file mode 100644 index 0000000..e8b8d26 --- /dev/null +++ b/src/crew/lamp.ts @@ -0,0 +1,24 @@ +import lampSpriteO from "../../assets/crew/lamp-o.png"; +import lampSprite from "../../assets/crew/lamp.png"; +import type { CrewItem } from "../types/crew"; + +export const lampData: CrewItem = { + name: "lamp", + description: "A lamp that lights up the KAWorld.", + author: "lajbel", + secret: "Best Gigagantrum friend.", + type: "crew", + sprite: lampSprite, + outlined: lampSpriteO, + crewmeta: { + age: 1, + favoriteColor: "yellow", + favoriteFood: "electricity", + height: 0.5, + gender: 2, + hobbies: ["lighting up", "being a friend"], + origin: "The void", + species: "lamp", + weight: 0.5, + }, +}; diff --git a/src/crew/onion.ts b/src/crew/onion.ts new file mode 100644 index 0000000..53f5c11 --- /dev/null +++ b/src/crew/onion.ts @@ -0,0 +1,24 @@ +import onionSpriteO from "../../assets/crew/onion-o.png"; +import onionSprite from "../../assets/crew/onion.png"; +import type { CrewItem } from "../types/crew"; + +export const onionData: CrewItem = { + name: "onion", + description: "The Onion, is here, say hi, because he won't leave.", + author: "lajbel", + secret: "The forgotten", + type: "crew", + sprite: onionSprite, + outlined: onionSpriteO, + crewmeta: { + age: 4, + favoriteColor: "red", + favoriteFood: "beans", + gender: 0, + height: 0.5, + hobbies: ["being here", "not leaving"], + origin: "The void", + species: "onion", + weight: 0.5, + }, +}; diff --git a/src/crew/tga.ts b/src/crew/tga.ts index 1827139..f56d428 100644 --- a/src/crew/tga.ts +++ b/src/crew/tga.ts @@ -11,14 +11,14 @@ export const tgaData: CrewItem = { outlined: tgaSpriteO, sprite: tgaSprite, crewmeta: { - age: NaN, - favoriteColor: "green", - favoriteFood: "bombs", - height: 1.7, + age: 26, + favoriteColor: "unknown", + favoriteFood: "unknown", + height: 1.78, hobbies: ["coding", "playing"], origin: "A red country", species: "dinosaaur", - weight: 60, + weight: 59, gender: 0, }, };