Update delay authored by Amy's avatar Amy
Mechanic: Delay Causes the current skill or mechanic to be delayed by X ticks.
===============
Causes the current skill list to be delayed by X ticks. Delay can also be used as an attribute directly inside of mechanics by adding `delay=TICKS`, see example below.
Delay can also be used as syntax directly inside other skills by adding Skill-delay and Attribute-delay do not function the same manner.
"delay=TICKS", see example below.
Skill-delay and Syntax-delay do not function the same manner. # Examples
Examples
--------
```yaml
Skills: Skills:
- ignite{ticks=60} - ignite{ticks=60}
- delay 60 - delay 60
- explode - explode
```
Also possible: This is an example of using the delay universal attribute. It will work inside any mechanic and will delay it from happening by the specified amount of ticks.
```yaml
Skills:
- ignite{ticks=60;delay=80}
- explode{delay=80}
or:
Skills: Skills:
- skill{skill=exampleskill;delay=200} - skill{skill=exampleskill;delay=200}
- explode{delay=80}
```
\ No newline at end of file