# Supported plugin - PyroFishPro

### CONDITIONS

#### Check if fish is from PyroFishPro &#x20;

```yaml
// the rest of the quest ..
conditions:
    is_pyro_fish: true/false
```

{% hint style="warning" %}
This condition only work with quest type "FISH\_ITEM"
{% endhint %}

#### Check for certain fishes from PyroFishPro

```yaml
// the rest of the quest ..
conditions:
    is_pyro_fish:
      - "%tier%:%fishnumber%" #format
      - "Bronze:14"
      - "Diamond:52"
```

{% hint style="warning" %}
This condition only work with quest type "FISH\_ITEM"
{% endhint %}

#### Check for certain tiers from PyroFishPro

```yaml
// the rest of the quest ..
conditions:
    is_pyro_tier:
      - "bronze"
```

{% hint style="warning" %}
This condition only work with quest type "FISH\_ITEM"
{% endhint %}
