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

long lace gloves in nine colours for fem V!

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

installation:
install via Vortex or unpack the .zip 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 to .\r6\tweaks.

                                                              


if you don't use Equipment-EX:
the left and right gloves can use different colours if you edit the .yaml of the gloves. if you download void_Lace_Gloves_combined and open up void_Lace_Gloves.yaml, you'll see the line:
    - { left: lace_black, right: lace_black, icon: 01 }

you can change this to:
    - { left: lace_black, right: lace_white, icon: 01 }

this will create an appearance where the left glove is black and the right glove is white. to create an entirely new, additional entry, simply duplicate one of the lines and change the name of the lace colour! valid entries for both left: and right: are:
lace_black
lace_blue
lace_green
lace_grey
lace_purple
lace_red
lace_sky
lace_white
lace_yellow

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_lace_gloves_lace_black_(LACE_COLOUR_HERE)",1)

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

                                                              


alternatively:
if you download void_Lace_Gloves_separate and open up void_Lace_Gloves.yaml, you'll see the lines:
Items.yv_lace_gloves_l_${base_color}:
  $base: Items.GenericOuterChestClothing

and:
Items.yv_lace_gloves_r_${base_color}:
  $base: Items.GenericOuterChestClothing

you can change GenericOuterChestClothing for one of the gloves to GenericFaceClothing to change the wardrobe slot where the glove appears. for example:
Items.yv_lace_gloves_l_${base_color}:
  $base: Items.GenericFaceClothing

this allows you to equip one glove in the Outer Torso slot and the other glove in the Face slot.

                                                              

CET codes (separate):
Game.AddToInventory("Items.yv_lace_gloves_l_lace_black",1)
Game.AddToInventory("Items.yv_lace_gloves_l_lace_blue",1)
Game.AddToInventory("Items.yv_lace_gloves_l_lace_green",1)
Game.AddToInventory("Items.yv_lace_gloves_l_lace_grey",1)
Game.AddToInventory("Items.yv_lace_gloves_l_lace_purple",1)
Game.AddToInventory("Items.yv_lace_gloves_l_lace_red",1)
Game.AddToInventory("Items.yv_lace_gloves_l_lace_sky",1)
Game.AddToInventory("Items.yv_lace_gloves_l_lace_white",1)
Game.AddToInventory("Items.yv_lace_gloves_l_lace_yellow",1)

Game.AddToInventory("Items.yv_lace_gloves_r_lace_black",1)
Game.AddToInventory("Items.yv_lace_gloves_r_lace_blue",1)
Game.AddToInventory("Items.yv_lace_gloves_r_lace_green",1)
Game.AddToInventory("Items.yv_lace_gloves_r_lace_grey",1)
Game.AddToInventory("Items.yv_lace_gloves_r_lace_purple",1)
Game.AddToInventory("Items.yv_lace_gloves_r_lace_red",1)
Game.AddToInventory("Items.yv_lace_gloves_r_lace_sky",1)
Game.AddToInventory("Items.yv_lace_gloves_r_lace_white",1)
Game.AddToInventory("Items.yv_lace_gloves_r_lace_yellow",1)


CET codes (combined):
Game.AddToInventory("Items.yv_lace_gloves_lace_black_lace_black",1)
Game.AddToInventory("Items.yv_lace_gloves_lace_blue_lace_blue",1)
Game.AddToInventory("Items.yv_lace_gloves_lace_green_lace_green",1)
Game.AddToInventory("Items.yv_lace_gloves_lace_grey_lace_grey",1)
Game.AddToInventory("Items.yv_lace_gloves_lace_purple_lace_purple",1)
Game.AddToInventory("Items.yv_lace_gloves_lace_red_lace_red",1)
Game.AddToInventory("Items.yv_lace_gloves_lace_sky_lace_sky",1)
Game.AddToInventory("Items.yv_lace_gloves_lace_white_lace_white",1)
Game.AddToInventory("Items.yv_lace_gloves_lace_yellow_lace_yellow",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 glove combinations.