-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
77 additions
and
5 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters