Update slash authored by Lxlp's avatar Lxlp
## Mechanic: Slash
## Description
The Slash meta-mechanic can execute other skills in a slash-shaped pattern. The exact shape, size, location, rotation and other such elements of the slash itself can be tweaked via the attributes below.
## Attributes
......@@ -7,9 +7,9 @@ The Slash meta-mechanic can execute other skills in a slash-shaped pattern. The
| onStartSkill | onStart, oS | Meta-Skill executed at the start of the slash | |
| onEndSkill | onEnd, oE | Meta-Skill executed at the end of the slash | |
| onPointSkill | onPoint, oP | Meta-Skill executed at every point of the slash | |
| onHitEntitySkill | onHitEntity, ohe, oh | Meta-Skill executed when a point of the slash hits an entity. only triggered once per entity for every execution of the slash mechanic | |
| onHitEntitySkill | onHitEntity, ohe, oh | Meta-Skill executed when a point of the slash hits an entity. Only triggered once per entity for every execution of the slash mechanic | |
| Points | p | The amount of points in the slash | 32 |
| Duration | d | The amount of ticks the slash should "travel" for. A value of 0 executes an instant slash | 0 |
| Duration | d | The amount of ticks the slash should "travel" for. A value of 0 executes an instantaneous slash | 0 |
| Width | w | The width of the slash. Increasing this value makes the slash's arc less arched | 1 |
| Height | h | The height of the slash. Increasing this value makes the slash's arc more arched | 1 |
| Angle | arc, a | The size of the arch in degrees | 180 |
......@@ -27,20 +27,22 @@ The Slash meta-mechanic can execute other skills in a slash-shaped pattern. The
| HitConditions | conditions, cond, c, oC, hC | List of [Inline Conditions](/Skills/conditions/in-linetargetconditions) that an entity must met to be hit by the slash mechanic | |
## Examples
This is a basic example of how a slash mechanic might look like once implemented
```yaml
ExampleSkill:
Skills:
- slash{y=1.8;w=4;h=2;mpd=true;a=180;oP=[ - effect:particles{p=CRIT} ];roll=<random.-45to45>}
- slash{y=1.8;w=4;h=2;mpd=true;a=180;oP=[ - effect:particles{p=CRIT} ];roll=-45to45}
```
##
If you have [Crucible] installed, then the following is an example on how you can put the slash mechanic into an item
```yaml
SlashSword:
Id: NETHERITE_SWORD
Skills:
- slash{y=1.8;w=4;h=40;mpd=true;a=45;radius=2;
- slash{y=1.8;w=4;h=40;mpd=true;a=45;radius=2;roll=-30to30;fo=5;duration=5;
oP=[ - effect:particles{p=SPARK} ];
oH=[ - damage{a=2} ];
roll=<random.-30to30>;
fo=5;duration=5} @self ~onUse
oH=[ - damage{a=2} ]
} @self ~onUse
```
Note: `<random.-30to30>` used in this SlashSword example is a [Premium Feature](Premium-Features) used here to apply random tilting to the slash effect.
Note: [Crucible](https://mythiccraft.io/index.php?resources/crucible-create-unbelievable-mythic-items.2/) is required to add Skills directly onto Mythic Items.
\ No newline at end of file
[Crucible]: https://mythiccraft.io/index.php?resources/crucible-create-unbelievable-mythic-items.2
\ No newline at end of file