Adding stats and modifiers

How to make it iconic

Summary

Published: Jan 29 2024 by manavortex Last documented update: Jan 29 2024 by manavortex

This guide will show you an example for adding a modifier to an existing game item; in this case, making David's jacket iconic. It will point you towards further reading material in case you want to dig deeper.

How to mod it

Find The Cyberpunk 2077 Game Directory. Then, create the following text document (you can name it what you want):

r6/tweaks/my_improved_item.yaml

Paste the following contents into the text document and save it:

Items.MQ049_martinez_jacket:
  statModifiers:
    - !append Quality.IconicItem

That's it. When you start the game now, the item's quality will be iconic.

What the fuck did I just do?

You created a tweak edit.

Removing properties

If you want to safely delete a record property, set its value to None.

Last updated