Skip to content
Snippets Groups Projects
Commit 8c0f864e authored by Zoey76's avatar Zoey76
Browse files

BETA: Datapack part for [L6282].

parent 226540b4
No related branches found
No related tags found
No related merge requests found
...@@ -23,6 +23,7 @@ import java.util.List; ...@@ -23,6 +23,7 @@ import java.util.List;
import com.l2jserver.gameserver.model.StatsSet; import com.l2jserver.gameserver.model.StatsSet;
import com.l2jserver.gameserver.model.conditions.Condition; import com.l2jserver.gameserver.model.conditions.Condition;
import com.l2jserver.gameserver.model.effects.AbstractEffect; import com.l2jserver.gameserver.model.effects.AbstractEffect;
import com.l2jserver.gameserver.model.effects.L2EffectType;
import com.l2jserver.gameserver.model.skills.BuffInfo; import com.l2jserver.gameserver.model.skills.BuffInfo;
import com.l2jserver.gameserver.model.stats.Env; import com.l2jserver.gameserver.model.stats.Env;
import com.l2jserver.gameserver.model.stats.Formulas; import com.l2jserver.gameserver.model.stats.Formulas;
...@@ -46,6 +47,12 @@ public final class StealAbnormal extends AbstractEffect ...@@ -46,6 +47,12 @@ public final class StealAbnormal extends AbstractEffect
_max = getParameters().getInt("max", 0); _max = getParameters().getInt("max", 0);
} }
@Override
public L2EffectType getEffectType()
{
return L2EffectType.STEAL_ABNORMAL;
}
@Override @Override
public boolean isInstant() public boolean isInstant()
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment