/* This file is part of the OdinMS Maple Story Server Copyright (C) 2008 Patrick Huy Matthias Butz Jan Christian Meyer This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation version 3 as published by the Free Software Foundation. You may not use, modify or distribute this program under any other version of the GNU Affero General Public License. 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 Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . */ package net.server.channel.handlers; import client.BuffStat; import client.Character; import client.Client; import client.Skill; import client.SkillFactory; import config.YamlConfig; import constants.id.MapId; import constants.skills.Bishop; import constants.skills.Evan; import constants.skills.FPArchMage; import constants.skills.ILArchMage; import database.drop.DropProvider; import net.netty.GameViolationException; import net.packet.InPacket; import net.packet.Packet; import server.StatEffect; import service.BanService; import tools.PacketCreator; import static java.util.concurrent.TimeUnit.SECONDS; public final class MagicDamageHandler extends AbstractDealDamageHandler { public MagicDamageHandler(DropProvider dropProvider, BanService banService) { super(dropProvider, banService); } @Override public final void handlePacket(InPacket p, Client c) { Character chr = c.getPlayer(); /*long timeElapsed = currentServerTime() - chr.getAutobanManager().getLastSpam(8); if(timeElapsed < 300) { AutobanFactory.FAST_ATTACK.alert(chr, "Time: " + timeElapsed); } chr.getAutobanManager().spam(8);*/ AttackInfo attack = parseDamage(p, chr, false, true); if (chr.getBuffEffect(BuffStat.MORPH) != null) { if (chr.getBuffEffect(BuffStat.MORPH).isMorphWithoutAttack()) { throw new GameViolationException("Attempt to attack with morph skill that disallows attacking"); } } if (MapId.isDojo(chr.getMap().getId()) && attack.numAttacked > 0) { chr.setDojoEnergy(chr.getDojoEnergy() + +YamlConfig.config.server.DOJO_ENERGY_ATK); c.sendPacket(PacketCreator.getEnergy("energy", chr.getDojoEnergy())); } int charge = (attack.skill == Evan.FIRE_BREATH || attack.skill == Evan.ICE_BREATH || attack.skill == FPArchMage.BIG_BANG || attack.skill == ILArchMage.BIG_BANG || attack.skill == Bishop.BIG_BANG) ? attack.charge : -1; Packet packet = PacketCreator.magicAttack(chr, attack.skill, attack.skilllevel, attack.stance, attack.numAttackedAndDamage, attack.targets, charge, attack.speed, attack.direction, attack.display); chr.getMap().broadcastMessage(chr, packet, false, true); StatEffect effect = attack.getAttackEffect(chr, null); Skill skill = SkillFactory.getSkill(attack.skill); StatEffect effect_ = skill.getEffect(chr.getSkillLevel(skill)); if (effect_.getCooldown() > 0) { if (chr.skillIsCooling(attack.skill)) { return; } else { c.sendPacket(PacketCreator.skillCooldown(attack.skill, effect_.getCooldown())); chr.addCooldown(attack.skill, currentServerTime(), SECONDS.toMillis(effect_.getCooldown())); } } applyAttack(attack, chr, effect.getAttackCount()); Skill eaterSkill = SkillFactory.getSkill((chr.getJob().getId() - (chr.getJob().getId() % 10)) * 10000);// MP Eater, works with right job int eaterLevel = chr.getSkillLevel(eaterSkill); if (eaterLevel > 0) { for (Integer oid : attack.targets.keySet()) { eaterSkill.getEffect(eaterLevel).applyPassive(chr, chr.getMap().getMapObject(oid), 0); } } } }