# Explosive Grenade

**Properties**

| Property                 | Type    | Description                                                          |
| ------------------------ | ------- | -------------------------------------------------------------------- |
| `MaxRadius`              | `float` | The maximum radius of the grenade's explosion.                       |
| `ScpDamageMultiplier`    | `float` | The damage multiplier against SCP players.                           |
| `BurnDuration`           | `float` | How long the `Burned` effect will last.                              |
| `DeafenDuration`         | `float` | How long the `Deafened` effect will last.                            |
| `ConcussDuration`        | `float` | How long the `Concussed` effect will last.                           |
| `FuseTime`               | `float` | The duration of the fuse.                                            |
| `PinPullTime`            | `float` | The time it takes to pull the pin.                                   |
| `PlayerDamageMultiplier` | `float` | The damage multiplier applied to players within the grenade’s range. |
| `DoorDamageMultiplier`   | `float` | The damage multiplier applied to doors within the grenade’s range.   |
| `Repickable`             | `bool`  | Whether players can pick up the grenade after it has been thrown.    |
| `ExplodeOnImpact`        | `bool`  | Determines if the grenade explodes upon impacting another object.    |

#### Example:

```yaml
CustomItemType: ExplosiveGrenade
CustomData:
  max_radius: 10.0
  scp_damage_multiplier: 2.0
  burn_duration: 5.0
  deafen_duration: 8.0
  concuss_duration: 4.0
  fuse_time: 3.5
  pin_pull_time: 0.5
  PlayerDamageMultiplier
  door_damage_multiplier: 2.5
  repickable: false
```


---

# Agent Instructions: 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:

```
GET https://docs.uci.ucserver.it/uncomplicatedcustomitems/api/custom-data/explosive-grenade.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
