Skip to content

Commit

Permalink
Merge pull request #76491 from RedMisao/RedMisao-patch-24
Browse files Browse the repository at this point in the history
Update JSON_INFO.md
  • Loading branch information
Maleclypse authored Sep 17, 2024
2 parents 69fc6e7 + 0236778 commit af75887
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/JSON_INFO.md
Original file line number Diff line number Diff line change
Expand Up @@ -3552,14 +3552,14 @@ See [GAME_BALANCE.md](GAME_BALANCE.md#to-hit-value)
},
```

Additionally, non-`"type": "AMMO"` items can be considered as ammo (capable of being shot, capable of being loaded into a `MAGAZINE` pocket), by adding the `ammo_data` field. Do note that a proper `ammunition_type` is also required:
Additionally, non-`"type": "AMMO"` items can be considered as ammo (capable of being shot, capable of being loaded into a `MAGAZINE` pocket), by adding the `ammo_data` field, which supports the same fields as the `AMMO` type. Do note that a proper `ammunition_type` is also required:

```json
{
"id": "water_clean",
"type": "COMESTIBLE",
...
"ammo_data": { "ammo_type": "water" },
"ammo_data": { "ammo_type": "water", "damage": { "damage_type": "cold", "amount": 2 }, "range": 4 },
...
},
{
Expand Down

0 comments on commit af75887

Please sign in to comment.