> ## 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.

# isWalkable

> Vérifier si une cellule est praticable (ignore l'occupation).

Vérifier si une cellule est praticable (ignore l'occupation).

#### 🎮 Méthode

```lua theme={null}
fightAction:isWalkable(cellId)
```

#### 📝 Arguments

| Nom      | Type  | Description                           |
| -------- | ----- | ------------------------------------- |
| `cellId` | `int` | Identifiant de la cellule à vérifier. |

#### 💎 Valeur de retour

| Type      | Description                                                        |
| --------- | ------------------------------------------------------------------ |
| `boolean` | `true` si le terrain est praticable, `false` si c'est un obstacle. |

#### 💡 Exemple

```lua theme={null}
if fightAction:isWalkable(cell) then
    fightDebug:print("La cellule " .. cell .. " est praticable")
end
```
