- Joined
- Nov 27, 2014
- Messages
- 1,966
I am currently doing an ability where the effect is an increase in attackspeed(already done with custom base ability) but also reduce the targeted unit's armor.
I do not want another buff to clutter the buff/debuff bar so I have been trying to use the Item Damage Increase ability with a negative value added to that unit.
However, it does not seem to either be adding the ability or either the ability's "effect" is not triggering.
I have tried to change it back to positive value but it has no difference(no effect on the unit's attack)
Is there a way to simulate the decrease in armor without another buff? I require this more than making the item ability work fyi.
I do not want another buff to clutter the buff/debuff bar so I have been trying to use the Item Damage Increase ability with a negative value added to that unit.
However, it does not seem to either be adding the ability or either the ability's "effect" is not triggering.
I have tried to change it back to positive value but it has no difference(no effect on the unit's attack)
-
WENDIGO Enrage Start
-
Events
-
Time - Elapsed game time is 1.00 seconds
-
-
Conditions
-
Actions
-
Set Wendigo_EnrageGroup = (Units in (Playable map area) matching (((Picked unit) has buff Enrage ) Equal to True))
-
Trigger - Turn on WENDIGO Enrage Loop <gen>
-
-
-
WENDIGO Enrage Cast
-
Events
-
Unit - A unit Finishes casting an ability
-
-
Conditions
-
(Ability being cast) Equal to Enrage
-
-
Actions
-
Unit - Add Wendigo Armor Decrease to (Target unit of ability being cast)
-
Unit Group - Add (Target unit of ability being cast) to Wendigo_EnrageGroup
-
-
-
WENDIGO Enrage Loop
-
Events
-
Time - Every 0.40 seconds of game time
-
-
Conditions
-
Actions
-
Unit Group - Pick every unit in Wendigo_EnrageGroup and do (Actions)
-
Loop - Actions
-
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
-
If - Conditions
-
((Picked unit) has buff Enrage ) Equal to True
-
-
Then - Actions
-
Do nothing
-
-
Else - Actions
-
-
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
-
If - Conditions
-
((Picked unit) has buff Enrage ) Equal to False
-
-
Then - Actions
-
Unit - Remove Wendigo Armor Decrease from (Picked unit)
-
Unit Group - Remove (Picked unit) from Wendigo_EnrageGroup
-
-
Else - Actions
-
-
-
-
-