# Эффекты

```yaml
  ef=5:
    type: EXPANDING-CIRCLE
    ticks: 36000
    timeUpdate: 4
    radius: 1.5
    end-radius: 7 
    step-radius: 0.3 
    count: 0
    viewDistance: 30
    step: 0.05
    offset-x: 0.5
    offset-y: 0.7
    offset-z: 0.5
    number-of-steps: 6.5
    particle: FLAME
    #only REDSTONE#
    size: 3
    color-rgb-r: 0
    color-rgb-g: 255
    color-rgb-b: 255
```

Все партиклы имеют type, взависимости от типа настройки могут меняться&#x20;

Эффект

{% embed url="<https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExMThhOTI0NzhkZWJhMjgzN2JmM2QwNzJlZTU5MTljMmU1YTU1NWNlMCZjdD1n/GAfcYScJpu8pQQi6zk/giphy.gif>" %}

Изменив timeUpdate: 4 на 1, radius: 1.5 на 0 и step-radius: 0.1 мы получим такой эффект<br>

{% embed url="<https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExOGFhZTU3MTFmN2Q0OTU0ZjkwMDg1OTg3NmE1YjkzMDYwYWZkYzc2ZCZjdD1n/mIdrjwrtgn1bqBjUbz/giphy.gif>" %}

После мы можем изменить particle: FLAME на FALLING\_OBSIDIAN\_TEAR чтобы получить такой рузультат

{% embed url="<https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExZWVmZDhjZTI3ZmU0YzI0YWZjMzQ1Mjk5OGIzMmZlMmVhMjc1OTk3NiZjdD1n/OpSwV652iqSK7SCJC3/giphy.gif>" %}

```yaml
  ef=5:
    type: EXPANDING-CIRCLE 
    ticks: 36000
    timeUpdate: 1
    radius: 0 
    end-radius: 7 
    step-radius: 0.1
    count: 0
    viewDistance: 30
    step: 0.05
    offset-x: 0.5
    offset-y: 0.7
    offset-z: 0.5
    number-of-steps: 6.5
    particle: FALLING_OBSIDIAN_TEAR
    #only REDSTONE#
    size: 3
    color-rgb-r: 0
    color-rgb-g: 255
    color-rgb-b: 255
```

Вот итоговый вариант, запустить мы его можем через команду в ивенте&#x20;

\[EFFECT\_START-ef=5-ef], а остановить \[EFFECT\_STOP-ef] или \[EFFECT\_STOP\_ALL]

Также эффекты можно комбинировать, например чтобы получить такой результат

{% embed url="<https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExNTg3YTkzNDhjMmRiNTQwYmUwMTlhODAzMTcyMzAzYTQ5MThmYzU4YyZjdD1n/YJXtHGDNTEgMnnDgXz/giphy.gif>" %}

нужно совместить эти два эффекта

```yaml
  ef=1: 
    type: CIRCLE 
    ticks: 36000 
    timeUpdate: 10 
    radius: 1.5 
    count: 0 
    viewDistance: 30 
    step: 0.05 
    offset-x: 0.5 
    offset-y: 0.3
    offset-z: 0.5
    number-of-steps: 6.5 
    particle: DRAGON_BREATH
    #only REDSTONE# 
    size: 3
    color-rgb-r: 0
    color-rgb-g: 255
    color-rgb-b: 255
    
  ef=1=1: 
    type: CIRCLE 
    ticks: 36000 
    timeUpdate: 20 
    radius: 1.5 
    count: 0 
    viewDistance: 30 
    step: 0.5 
    offset-x: 0.5 
    offset-y: 0.4
    offset-z: 0.5
    number-of-steps: 6.5 
    particle: VILLAGER_HAPPY
    #only REDSTONE# 
    size: 3
    color-rgb-r: 0
    color-rgb-g: 255
    color-rgb-b: 255
```

```
[EFFECT_START-ef=1-ef]
[EFFECT_START-ef=1=1-ef2]
```


---

# 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://by1337-developers.gitbook.io/bairdrop1/rukovodstvo/effekty.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.
