|
@@ -16,49 +16,54 @@
|
|
|
* 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 handlers.skillhandlers;
|
|
|
+package handlers.effecthandlers;
|
|
|
|
|
|
import com.l2jserver.gameserver.RecipeController;
|
|
|
-import com.l2jserver.gameserver.handler.ISkillHandler;
|
|
|
-import com.l2jserver.gameserver.model.L2Object;
|
|
|
-import com.l2jserver.gameserver.model.actor.L2Character;
|
|
|
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
|
|
|
-import com.l2jserver.gameserver.model.skills.L2Skill;
|
|
|
-import com.l2jserver.gameserver.model.skills.L2SkillType;
|
|
|
+import com.l2jserver.gameserver.model.effects.EffectTemplate;
|
|
|
+import com.l2jserver.gameserver.model.effects.L2Effect;
|
|
|
+import com.l2jserver.gameserver.model.effects.L2EffectType;
|
|
|
+import com.l2jserver.gameserver.model.stats.Env;
|
|
|
import com.l2jserver.gameserver.network.SystemMessageId;
|
|
|
|
|
|
/**
|
|
|
- * @version $Revision: 1.1.2.2.2.4 $ $Date: 2005/04/06 16:13:48 $
|
|
|
+ * Open Common Recipe Book effect implementation.
|
|
|
+ * @author Adry_85
|
|
|
*/
|
|
|
-public class Craft implements ISkillHandler
|
|
|
+public class OpenCommonRecipeBook extends L2Effect
|
|
|
{
|
|
|
- private static final L2SkillType[] SKILL_IDS =
|
|
|
+ public OpenCommonRecipeBook(Env env, EffectTemplate template)
|
|
|
{
|
|
|
- L2SkillType.COMMON_CRAFT,
|
|
|
- L2SkillType.DWARVEN_CRAFT
|
|
|
- };
|
|
|
+ super(env, template);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public boolean calcSuccess()
|
|
|
+ {
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public L2EffectType getEffectType()
|
|
|
+ {
|
|
|
+ return L2EffectType.NONE;
|
|
|
+ }
|
|
|
|
|
|
@Override
|
|
|
- public void useSkill(L2Character activeChar, L2Skill skill, L2Object[] targets)
|
|
|
+ public boolean onStart()
|
|
|
{
|
|
|
- if (!activeChar.isPlayer())
|
|
|
+ if (!getEffector().isPlayer())
|
|
|
{
|
|
|
- return;
|
|
|
+ return false;
|
|
|
}
|
|
|
|
|
|
- L2PcInstance player = activeChar.getActingPlayer();
|
|
|
-
|
|
|
+ L2PcInstance player = getEffector().getActingPlayer();
|
|
|
if (player.getPrivateStoreType() != L2PcInstance.STORE_PRIVATE_NONE)
|
|
|
{
|
|
|
player.sendPacket(SystemMessageId.CANNOT_CREATED_WHILE_ENGAGED_IN_TRADING);
|
|
|
- return;
|
|
|
+ return false;
|
|
|
}
|
|
|
- RecipeController.getInstance().requestBookOpen(player, (skill.getSkillType() == L2SkillType.DWARVEN_CRAFT));
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public L2SkillType[] getSkillIds()
|
|
|
- {
|
|
|
- return SKILL_IDS;
|
|
|
+ RecipeController.getInstance().requestBookOpen(player, false);
|
|
|
+ return true;
|
|
|
}
|
|
|
}
|