Editing User:Vergir/AbilityInteractionGive feedback
The edit can be undone.
Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
| Latest revision | Your text | ||
| Line 1: | Line 1: | ||
< | <includeonly>{{#invoke:User:Vergir/InteractionTypes|render_row|{{{type|}}}|{{{text|}}}}}</includeonly><noinclude> | ||
== Overview == | |||
Renders a single styled interaction row for use inside the <code>interactions=</code> parameter of [[User:Vergir/AbilitySection]]. | |||
=== Parameters === | |||
{| class="wikitable" | |||
! Parameter !! Description !! Required | |||
|- | |||
| <code>type</code> || Interaction type key. Must match an entry in [[User:Vergir/Module:InteractionTypes]]. || Yes | |||
|- | |||
| <code>text</code> || Description of the interaction. Freeform wikitext; may span multiple lines and include links, templates, and bullet points. || Yes | |||
|} | |||
=== Valid type values === | |||
* <code>debuff_immunity</code> | |||
* <code>unstoppable</code> | |||
* <code>silence</code> | |||
* <code>stun</code> | |||
* <code>disjoint</code> | |||
* <code>invincibility</code> | |||
* <code>sleep</code> | |||
* <code>purge</code> | |||
* <code>lifestealing</code> | |||
* <code>barrier</code> | |||
* <code>illusions</code> | |||
* <code>phase</code> | |||
=== Example === | |||
<pre> | |||
{{User:Vergir/AbilityInteraction | |||
| type = disjoint | |||
| text = | |||
The projectile can be disjointed before impact. | |||
Disjointing prevents the impact damage and the explosion. | |||
}} | |||
</pre> | |||
</noinclude> | |||