> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dotouch-emu.com/llms.txt
> Use this file to discover all available pages before exploring further.

# getBreed

> Obtenir l'identifiant de classe (race) du personnage.

Obtenir l'identifiant de classe (race) du personnage.

#### 🎮 Méthode

```lua theme={null}
fightCharacter:getBreed()
```

#### 💎 Valeur de retour

| Type  | Description                                                                                                                                                                                                                                  |
| ----- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `int` | Identifiant de classe (`1`–`15`). Voir BreedEnum : `1`=Feca, `2`=Osamodas, `3`=Enutrof, `4`=Sram, `5`=Xelor, `6`=Ecaflip, `7`=Eniripsa, `8`=Iop, `9`=Cra, `10`=Sadida, `11`=Sacrieur, `12`=Pandawa, `13`=Roublard, `14`=Zobal, `15`=Steamer. |

#### 💡 Exemple

```lua theme={null}
local breed = fightCharacter:getBreed()
local spellId = ATTACK_SPELLS[tostring(breed)]
```
