123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /*
- * 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 2, 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, write to the Free Software Foundation, Inc., 59 Temple
- * Place - Suite 330, Boston, MA 02111-1307, USA.
- *
- * http://www.gnu.org/copyleft/gpl.html
- */
- package net.sf.l2j.gameserver.skills.effects;
- import net.sf.l2j.gameserver.model.L2Effect;
- import net.sf.l2j.gameserver.model.actor.instance.L2PlayableInstance;
- import net.sf.l2j.gameserver.skills.Env;
- /**
- * @author Faror
- */
- final class EffectPhoenixBless extends L2Effect
- {
- public EffectPhoenixBless(Env env, EffectTemplate template)
- {
- super(env, template);
- }
-
- /**
- *
- * @see net.sf.l2j.gameserver.model.L2Effect#getEffectType()
- */
- @Override
- public EffectType getEffectType()
- {
- return EffectType.PHOENIX_BLESSING;
- }
-
- /**
- *
- * @see net.sf.l2j.gameserver.model.L2Effect#onStart()
- */
- @Override
- public void onStart()
- {
- if (getEffected() instanceof L2PlayableInstance)
- ((L2PlayableInstance) getEffected()).startPhoenixBlessing();
- }
-
- /**
- *
- * @see net.sf.l2j.gameserver.model.L2Effect#onExit()
- */
- @Override
- public void onExit()
- {
- if (getEffected() instanceof L2PlayableInstance)
- ((L2PlayableInstance) getEffected()).stopPhoenixBlessing(this);
- }
-
- /**
- *
- * @see net.sf.l2j.gameserver.model.L2Effect#onActionTime()
- */
- @Override
- public boolean onActionTime()
- {
- // just stop this effect
- return false;
- }
- }
|