Skip to content

Commit

Permalink
feat: the forgottens
Browse files Browse the repository at this point in the history
  • Loading branch information
lajbel committed Aug 18, 2024
1 parent 2c4f0fd commit 37acec5
Show file tree
Hide file tree
Showing 13 changed files with 77 additions and 5 deletions.
Binary file added assets/crew/goldfly-o.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/crew/goldfly.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/crew/lamp-o.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/crew/lamp.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/crew/onion-o.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/crew/onion.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/crew/src/goldfly.aseprite
Binary file not shown.
Binary file added assets/crew/src/lamp.aseprite
Binary file not shown.
Binary file added assets/crew/src/onion.aseprite
Binary file not shown.
24 changes: 24 additions & 0 deletions src/crew/goldfly.ts
Original file line number Diff line number Diff line change
@@ -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,
},
};
24 changes: 24 additions & 0 deletions src/crew/lamp.ts
Original file line number Diff line number Diff line change
@@ -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,
},
};
24 changes: 24 additions & 0 deletions src/crew/onion.ts
Original file line number Diff line number Diff line change
@@ -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,
},
};
10 changes: 5 additions & 5 deletions src/crew/tga.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
};

0 comments on commit 37acec5

Please sign in to comment.