new companions

This commit is contained in:
_Bastler 2021-12-30 16:01:24 +01:00
parent 4ec2ba559a
commit fafa069dac
13 changed files with 17 additions and 5 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 779 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 804 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

View File

@ -1,7 +1,7 @@
export interface CompanionResourceDescriptionInterface { export interface CompanionResourceDescriptionInterface {
name: string; name: string;
img: string; img: string;
behaviour: "dog" | "cat" | "butterfly" | "chicken" | "bird"; behaviour: "dog" | "cat" | "other";
} }
export const COMPANION_RESOURCES: CompanionResourceDescriptionInterface[] = [ export const COMPANION_RESOURCES: CompanionResourceDescriptionInterface[] = [
@ -11,8 +11,20 @@ export const COMPANION_RESOURCES: CompanionResourceDescriptionInterface[] = [
{ name: "cat1", img: "resources/characters/pipoya/Cat 01-1.png", behaviour: "cat" }, { name: "cat1", img: "resources/characters/pipoya/Cat 01-1.png", behaviour: "cat" },
{ name: "cat2", img: "resources/characters/pipoya/Cat 01-2.png", behaviour: "cat" }, { name: "cat2", img: "resources/characters/pipoya/Cat 01-2.png", behaviour: "cat" },
{ name: "cat3", img: "resources/characters/pipoya/Cat 01-3.png", behaviour: "cat" }, { name: "cat3", img: "resources/characters/pipoya/Cat 01-3.png", behaviour: "cat" },
{ name: "butterfly1", img: "resources/characters/pipoya/Butterfly 01-1.png", behaviour: "butterfly" }, { name: "butterfly1", img: "resources/characters/pipoya/Butterfly 01-1.png", behaviour: "other" },
{ name: "chicken1", img: "resources/characters/pipoya/Chicken 01-1.png", behaviour: "chicken" }, { name: "chicken1", img: "resources/characters/pipoya/Chicken 01-1.png", behaviour: "other" },
{ name: "bird1", img: "resources/characters/pipoya/Bird 01-1.png", behaviour: "bird" }, { name: "bird1", img: "resources/characters/pipoya/Bird 01-1.png", behaviour: "other" },
{ name: "pokemon1", img: "resources/characters/pipoya/Pika 01-1.png", behaviour: "cat" }, { name: "pokemon1", img: "resources/characters/pipoya/Pika 01-1.png", behaviour: "other" },
{ name: "blauhai3", img: "resources/characters/pipoya/blauhai3.png", behaviour: "other" },
{ name: "Claymore_Roomba", img: "resources/characters/pipoya/Claymore_Roomba.png", behaviour: "other" },
{ name: "drone", img: "resources/characters/pipoya/Drone.png", behaviour: "other" },
{ name: "fairydust", img: "resources/characters/pipoya/fairydust.png", behaviour: "other" },
{ name: "littlechamp", img: "resources/characters/pipoya/littlechamp.png", behaviour: "other" },
{ name: "littlechamp2", img: "resources/characters/pipoya/littlechamp2.png", behaviour: "other" },
{ name: "littlechamp3", img: "resources/characters/pipoya/littlechamp3.png", behaviour: "other" },
{ name: "littlechamp4", img: "resources/characters/pipoya/littlechamp4.png", behaviour: "other" },
{ name: "penguin", img: "resources/characters/pipoya/Penguin.png", behaviour: "other" },
{ name: "robotvauum", img: "resources/characters/pipoya/RobotVacuum.png", behaviour: "other" },
{ name: "roomba", img: "resources/characters/pipoya/Roomba.png", behaviour: "other" },
{ name: "smiley", img: "resources/characters/pipoya/Smiley.png", behaviour: "other" },
]; ];