1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- /*
- * This program is free software: you can redistribute it and/or modify it under
- * the terms of the GNU General Public License as published by the Free Software
- * Foundation, either version 3 of the License, or (at your option) any later
- * version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
- * details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package net.sf.l2j.gameserver.skills.effects;
- import net.sf.l2j.gameserver.model.L2Effect;
- import net.sf.l2j.gameserver.model.actor.L2Character;
- import net.sf.l2j.gameserver.model.actor.L2Npc;
- import net.sf.l2j.gameserver.skills.Env;
- import net.sf.l2j.gameserver.templates.effects.EffectTemplate;
- import net.sf.l2j.gameserver.templates.skills.L2EffectType;
- public class EffectGrow extends L2Effect
- {
-
- public EffectGrow(Env env, EffectTemplate template)
- {
- super(env, template);
- }
-
- /**
- *
- * @see net.sf.l2j.gameserver.model.L2Effect#getEffectType()
- */
- @Override
- public L2EffectType getEffectType()
- {
- return L2EffectType.BUFF;
- }
-
- /**
- *
- * @see net.sf.l2j.gameserver.model.L2Effect#onStart()
- */
- @Override
- public boolean onStart()
- {
- if (getEffected() instanceof L2Npc)
- {
- L2Npc npc = (L2Npc) getEffected();
- //TODO: Uncomment line when fix for mobs falling underground is found
- //npc.setCollisionHeight((int) (npc.getCollisionHeight() * 1.24));
- npc.setCollisionRadius((int) (npc.getCollisionRadius() * 1.19));
-
- getEffected().startAbnormalEffect(L2Character.ABNORMAL_EFFECT_GROW);
- return true;
- }
- return false;
- }
-
- /**
- *
- * @see net.sf.l2j.gameserver.model.L2Effect#onActionTime()
- */
- @Override
- public boolean onActionTime()
- {
- return false;
- }
-
- /**
- *
- * @see net.sf.l2j.gameserver.model.L2Effect#onExit()
- */
- @Override
- public void onExit()
- {
- if (getEffected() instanceof L2Npc)
- {
- L2Npc npc = (L2Npc) getEffected();
- //TODO: Uncomment line when fix for mobs falling underground is found
- //npc.setCollisionHeight(npc.getTemplate().collisionHeight);
- npc.setCollisionRadius(npc.getTemplate().collisionRadius);
-
- getEffected().stopAbnormalEffect(L2Character.ABNORMAL_EFFECT_GROW);
- }
- }
- }
|