# Gun Ammo Types

### Difficulty: 1/10 <img src="/files/-MfzUfw94jUTyreywn9u" alt="" data-size="original">&#x20;

if you want to set the type of ammo clip your gun uses to something different than the usual default.

<div align="left"><img src="/files/-MR-09mNXb_Okxys-uoW" alt=""></div>

you can do it by setting your guns default module's ammo type to something else, like so

```
 gun.DefaultModule.ammoType = GameUIAmmoType.AmmoType.FISH;
```

for this beautiful result &#x20;

![](/files/-MR-19vSkeekXOLPBojc)

however the GameUIAmmoType.AmmoType enum is limit to only these 13 basic types: SMALL\_BULLET , MEDIUM\_BULLET , BEAM , GRENADE , SHOTGUN , SMALL\_BLASTER , MEDIUM\_BLASTER , NAIL , MUSKETBALL , ARROW , MAGIC , BLUE\_SHOTGUN , SKULL , FISH.

however as you may have noticed, the game has many more types of ammo clips, and so in order to get something like pitchfork's fire clip you need to do this;

```
gun.DefaultModule.ammoType = GameUIAmmoType.AmmoType.CUSTOM;
gun.DefaultModule.customAmmoType = "burning hand";
```

to get this result.

![](/files/-MR-2JV079TvBkhjv0hp)

a full list of all the different ammo types is in the "various lists of ids, sounds, etc" section.

<https://mtgmodders.gitbook.io/etg-modding-guide/various-lists-of-ids-sounds-etc./all-custom-ammo-types>

it is also worth noting that if you're making a gun with a "final projectile" (like hammer or gunslingers gun) these lines also exist

`Gun.DefaultModule.finalAmmoType;`

`Gun.DefaultModule.finalCustomAmmoType;`


---

# 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://mtgmodders.gitbook.io/etg-modding-guide/making-a-gun/gun-ammo-types.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.
