Cyberpunk 2077

File information

Last updated

Original upload

Created by

CD PROJEKT RED and yellingintothevoid

Uploaded by

yellingintothevoid

Virus scan

Safe to use

Tags for this mod

About this mod

get that goth chique! comes in ten cloth colours, nine lace colours, and three chain colours! lace colour, and chain colour are modular and can be changed by editing the .yaml to create new appearances!

Requirements
Permissions and credits
Changelogs
this is a port of a modified in-game item with custom appearances.

by editing the .yaml file of the item, you can create your own colour variations of the skirt cloth and the chain colour! for example, if you open void_Chain_skirt.yaml, you'll see the line:
    - { cloth: purple, seam: purple, metal: silver, icon: 06 }

you can change this to:
    - { cloth: purple, seam: yellow, metal: gold, icon: 06 }

this will create an appearance where the cloth colour of the skirt is purple, the lace seam is yellow, and the chain is golden. to create an entirely new, additional entry, simply duplicate one of the lines and change the name of the lace or chain colours! see the attached image for some examples.

valid entries for seam: are:
black
blue
green
grey
purple
red
sky
white
yellow


valid entries for metal: are:
black
gold
silver


the in-game name of the item you've changed will change its name accordingly, but the icon will not. if you've changed an appearance, it will not show up in the Virtual Atelier. you will need to re-spawn it with its matching CET code:
Game.AddToInventory("Items.yv_chain_skirt_(CLOTH_HERE)_(SEAM_HERE)_(METAL_HERE)",1)

for example:
Game.AddToInventory("Items.yv_chain_skirt_blue_yellow_black",1)


installation:
install via Vortex or unpack the .zip files and copy its contents to the root folder of your Cyberpunk 2077 installation. this should add the .archive and the .xl files to .\archive\pc\mod and the .yaml files to .\r6\tweaks.

default CET codes:
Game.AddToInventory("Items.yv_chain_skirt_black_black_silver",1)
Game.AddToInventory("Items.yv_chain_skirt_blue_blue_silver",1)
Game.AddToInventory("Items.yv_chain_skirt_green_green_silver",1)
Game.AddToInventory("Items.yv_chain_skirt_grey_grey_silver",1)
Game.AddToInventory("Items.yv_chain_skirt_leather_leather_silver",1)
Game.AddToInventory("Items.yv_chain_skirt_purple_purple_silver",1)
Game.AddToInventory("Items.yv_chain_skirt_red_red_gold",1)
Game.AddToInventory("Items.yv_chain_skirt_sky_sky_silver",1)
Game.AddToInventory("Items.yv_chain_skirt_white_white_black",1)
Game.AddToInventory("Items.yv_chain_skirt_yellow_yellow_black",1)


also available in this Virtual Atelier.

massive thanks to manavortex for creating a Python script which i've used to generate the in-game names of all 270 appearance combinations.