diff --git a/.gitignore b/.gitignore index 659dab86..70660058 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,7 @@ .vagrant Vagrantfile docker-compose.override.yaml -*.DS_Store \ No newline at end of file +*.DS_Store +maps/yarn.lock +maps/dist/computer.js +maps/dist/computer.js.map \ No newline at end of file diff --git a/front/dist/resources/customisation/character_accessories/mask.png b/front/dist/resources/customisation/character_accessories/mask.png new file mode 100644 index 00000000..aeca63eb Binary files /dev/null and b/front/dist/resources/customisation/character_accessories/mask.png differ diff --git a/front/dist/resources/customisation/character_accessories/mate_bottle1.png b/front/dist/resources/customisation/character_accessories/mate_bottle1.png new file mode 100644 index 00000000..82227afd Binary files /dev/null and b/front/dist/resources/customisation/character_accessories/mate_bottle1.png differ diff --git a/front/dist/resources/customisation/character_clothes/black_hoodie.png b/front/dist/resources/customisation/character_clothes/black_hoodie.png new file mode 100644 index 00000000..5e9b54d7 Binary files /dev/null and b/front/dist/resources/customisation/character_clothes/black_hoodie.png differ diff --git a/front/dist/resources/customisation/character_clothes/engelbert.png b/front/dist/resources/customisation/character_clothes/engelbert.png new file mode 100644 index 00000000..742e1534 Binary files /dev/null and b/front/dist/resources/customisation/character_clothes/engelbert.png differ diff --git a/front/dist/resources/customisation/character_clothes/pride_shirt.png b/front/dist/resources/customisation/character_clothes/pride_shirt.png new file mode 100644 index 00000000..cc50aa78 Binary files /dev/null and b/front/dist/resources/customisation/character_clothes/pride_shirt.png differ diff --git a/front/dist/resources/customisation/character_clothes/white_hoodie.png b/front/dist/resources/customisation/character_clothes/white_hoodie.png new file mode 100644 index 00000000..a4c2e85a Binary files /dev/null and b/front/dist/resources/customisation/character_clothes/white_hoodie.png differ diff --git a/front/dist/resources/customisation/character_hats/tinfoil_hat1.png b/front/dist/resources/customisation/character_hats/tinfoil_hat1.png new file mode 100644 index 00000000..15b1b960 Binary files /dev/null and b/front/dist/resources/customisation/character_hats/tinfoil_hat1.png differ diff --git a/front/src/Phaser/Entity/body_character.ts b/front/src/Phaser/Entity/body_character.ts index fd5fa467..b37b9864 100644 --- a/front/src/Phaser/Entity/body_character.ts +++ b/front/src/Phaser/Entity/body_character.ts @@ -226,6 +226,10 @@ export const CLOTHES_RESOURCES: Array = [ {name:"clothes_68",img: "resources/customisation/character_clothes/character_clothes67.png"}, {name:"clothes_69",img: "resources/customisation/character_clothes/character_clothes68.png"}, {name:"clothes_70",img: "resources/customisation/character_clothes/character_clothes69.png"}, + {name:"clothes_pride_shirt",img: "resources/customisation/character_clothes/pride_shirt.png"}, + {name:"clothes_black_hoodie",img: "resources/customisation/character_clothes/black_hoodie.png"}, + {name:"clothes_white_hoodie",img: "resources/customisation/character_clothes/white_hoodie.png"}, + {name:"clothes_engelbert",img: "resources/customisation/character_clothes/engelbert.png"} ]; export const HATS_RESOURCES: Array = [ @@ -254,7 +258,8 @@ export const HATS_RESOURCES: Array = [ {name: "hats_23", img: "resources/customisation/character_hats/character_hats23.png"}, {name: "hats_24", img: "resources/customisation/character_hats/character_hats24.png"}, {name: "hats_25", img: "resources/customisation/character_hats/character_hats25.png"}, - {name: "hats_26", img: "resources/customisation/character_hats/character_hats26.png"} + {name: "hats_26", img: "resources/customisation/character_hats/character_hats26.png"}, + {name: "tinfoil_hat1", img: "resources/customisation/character_hats/tinfoil_hat1.png"} ]; export const ACCESSORIES_RESOURCES: Array = [ @@ -289,7 +294,9 @@ export const ACCESSORIES_RESOURCES: Array = [ {name: "accessory_29", img: "resources/customisation/character_accessories/character_accessories29.png"}, {name: "accessory_30", img: "resources/customisation/character_accessories/character_accessories30.png"}, {name: "accessory_31", img: "resources/customisation/character_accessories/character_accessories31.png"}, - {name: "accessory_32", img: "resources/customisation/character_accessories/character_accessories32.png"} + {name: "accessory_32", img: "resources/customisation/character_accessories/character_accessories32.png"}, + {name: "accessory_mate_bottle", img: "resources/customisation/character_accessories/mate_bottle1.png"}, + {name: "accessory_mask", img: "resources/customisation/character_accessories/mask.png"} ]; export const LAYERS: Array> = [