added clarification regarding the use of @ inside yaml files for the Targeter option authored by Lxlp's avatar Lxlp
......@@ -16,7 +16,7 @@ Spells are just Mythic Skills with extra options. All regular Mythic metaskill o
| Spell: true | Turns the skill into a spell and allows players to learn it if set to true |
| LearnConditions: [conditions]| A list of conditions that must be met to learn the spell. |
| Trigger: [trigger] | What triggers the spell. Defaults to `~onCombat` |
| Targeter: [targeter] | The main targeter for the spell. If this is set the spell will fail to cast and not consume resources if a valid target isn't found. Defaults to `@self` |
| Targeter: [targeter] | The main targeter for the spell. If this is set the spell will fail to cast and not consume resources if a valid target isn't found. Defaults to `@self`. <br> *Remember to put the targeter between string delimiters such as `"` or `'` so that the yaml file can parse correctly* |
| Cost: [reagents] | A list of reagents this spell costs to cast. |
| Global: true | Makes it a [global spell], causing it to be automatically applied to all players |
| Upgrades: [integer] | The maximum level the spell can reach. Defaults to `1` |
......@@ -47,7 +47,7 @@ MAGIC_MISSILE:
Learnable: true
LearnConditions:
- archetype{group=class;type=wizard}
Targeter: @target
Targeter: "@target"
Trigger: ~onUse
Cost:
- mana 40
......
......