> For the complete documentation index, see [llms.txt](https://wiki.redmodding.org/cyberpunk-2077-modding/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.redmodding.org/cyberpunk-2077-modding/for-mod-creators-theory/references-lists-and-overviews/cheat-sheet-tweak-ids/weapons/cheat-sheet-weapon-damage-effects.md).

# Cheat Sheet: Weapon damage effects

Apply the effects to an item like this:

```yaml
  statModifierGroups: 
    - !append-once Items.Base_Melee_Status_Effect_Application_Stats
    - !append-once Items.Base_Melee_Weapon_Damage_Type_Electric
    - !append-once Items.Base_Melee_Weapon_Damage_Type_Electric_Min_Max
    - !append-once Items.Base_Melee_Weapon_Damage_Type_Thermal
    - !append-once Items.Base_Melee_Weapon_Damage_Type_Thermal_Min_Max
```

## Weapon damage types

|                                                       |                                                      |
| ----------------------------------------------------- | ---------------------------------------------------- |
| Base\_Melee\_Status\_Effect\_Application\_Stats       | enables the application of status effects to enemies |
| Base\_Melee\_Weapon\_Damage\_Type\_Chemical           | Chemical damage                                      |
| Base\_Melee\_Weapon\_Damage\_Type\_Chemical\_Min\_Max | ???                                                  |
| Base\_Melee\_Weapon\_Damage\_Type\_Electric           | Electric damage                                      |
| Base\_Melee\_Weapon\_Damage\_Type\_Electric\_Min\_Max | ???                                                  |
| Base\_Melee\_Weapon\_Damage\_Type\_Physical           | Physical damage                                      |
| Base\_Melee\_Weapon\_Damage\_Type\_Physical\_Min\_Max | ???                                                  |
| Base\_Melee\_Weapon\_Damage\_Type\_Thermal            | Fire damage                                          |
| Base\_Melee\_Weapon\_Damage\_Type\_Thermal\_Min\_Max  | ???                                                  |

## Testing

To test the applied effects, you can use [AngeVil's script](https://wiki.redmodding.org/redscript/references-and-examples/gameplay/weapons#weapon-damage-debugging). Simply copy the code into a new file inside of [Cyberpunk 2077](/cyberpunk-2077-modding/for-mod-users/users-modding-cyberpunk-2077/the-cyberpunk-2077-game-directory.md)`/r6/scripts/`, e.g. `debug_damage_types.reds`. After starting up the game and hitting people with your weapon, you can see the log output via CET.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://wiki.redmodding.org/cyberpunk-2077-modding/for-mod-creators-theory/references-lists-and-overviews/cheat-sheet-tweak-ids/weapons/cheat-sheet-weapon-damage-effects.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
