new companions
BIN
front/dist/resources/characters/pipoya/Claymore_Roomba.png
vendored
Normal file
After Width: | Height: | Size: 9.8 KiB |
BIN
front/dist/resources/characters/pipoya/Drone.png
vendored
Normal file
After Width: | Height: | Size: 779 B |
BIN
front/dist/resources/characters/pipoya/Penguin.png
vendored
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
front/dist/resources/characters/pipoya/RobotVacuum.png
vendored
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
front/dist/resources/characters/pipoya/Roomba.png
vendored
Normal file
After Width: | Height: | Size: 804 B |
BIN
front/dist/resources/characters/pipoya/Smiley.png
vendored
Normal file
After Width: | Height: | Size: 8.9 KiB |
BIN
front/dist/resources/characters/pipoya/blauhai3.png
vendored
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
front/dist/resources/characters/pipoya/fairydust.png
vendored
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
front/dist/resources/characters/pipoya/littlechamp.png
vendored
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
front/dist/resources/characters/pipoya/littlechamp2.png
vendored
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
front/dist/resources/characters/pipoya/littlechamp3.png
vendored
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
front/dist/resources/characters/pipoya/littlechamp4.png
vendored
Normal file
After Width: | Height: | Size: 8.8 KiB |
@ -1,7 +1,7 @@
|
||||
export interface CompanionResourceDescriptionInterface {
|
||||
name: string;
|
||||
img: string;
|
||||
behaviour: "dog" | "cat" | "butterfly" | "chicken" | "bird";
|
||||
behaviour: "dog" | "cat" | "other";
|
||||
}
|
||||
|
||||
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: "cat2", img: "resources/characters/pipoya/Cat 01-2.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: "chicken1", img: "resources/characters/pipoya/Chicken 01-1.png", behaviour: "chicken" },
|
||||
{ name: "bird1", img: "resources/characters/pipoya/Bird 01-1.png", behaviour: "bird" },
|
||||
{ name: "pokemon1", img: "resources/characters/pipoya/Pika 01-1.png", behaviour: "cat" },
|
||||
{ name: "butterfly1", img: "resources/characters/pipoya/Butterfly 01-1.png", behaviour: "other" },
|
||||
{ name: "chicken1", img: "resources/characters/pipoya/Chicken 01-1.png", behaviour: "other" },
|
||||
{ name: "bird1", img: "resources/characters/pipoya/Bird 01-1.png", behaviour: "other" },
|
||||
{ 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" },
|
||||
];
|
||||
|