/******************************************************************************* * Copyright 2014 Tob * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package de.tobiyas.racesandclasses.traitcontainer.traits.defaultraits.magic.MagicAreaHealTrait; import java.util.LinkedList; import java.util.List; import org.bukkit.ChatColor; import org.bukkit.entity.Entity; import org.bukkit.entity.LivingEntity; import org.bukkit.event.entity.EntityRegainHealthEvent.RegainReason; import de.tobiyas.racesandclasses.eventprocessing.events.entitydamage.EntityHealOtherEntityEvent; import de.tobiyas.racesandclasses.playermanagement.player.RaCPlayer; import de.tobiyas.racesandclasses.traitcontainer.interfaces.annotations.configuration.TraitConfigurationField; import de.tobiyas.racesandclasses.traitcontainer.interfaces.annotations.configuration.TraitConfigurationNeeded; import de.tobiyas.racesandclasses.traitcontainer.interfaces.annotations.configuration.TraitEventsUsed; import de.tobiyas.racesandclasses.traitcontainer.interfaces.annotations.configuration.TraitInfos; import de.tobiyas.racesandclasses.traitcontainer.interfaces.markerinterfaces.Trait; import de.tobiyas.racesandclasses.traitcontainer.traits.pattern.AbstractActivateAETrait; import de.tobiyas.racesandclasses.util.bukkit.versioning.compatibility.CompatibilityModifier; import de.tobiyas.racesandclasses.util.traitutil.TraitConfiguration; import de.tobiyas.racesandclasses.util.traitutil.TraitConfigurationFailedException; import de.tobiyas.racesandclasses.vollotile.ParticleContainer; import de.tobiyas.racesandclasses.vollotile.Vollotile; public class MagicAreaHealTrait extends AbstractActivateAETrait { /** * The Damage to do. */ protected double value = 1; protected ParticleContainer particles = new ParticleContainer(de.tobiyas.racesandclasses.vollotile.ParticleEffects.HEART, 1, 0); protected ParticleContainer particlesFromSelf = null; public MagicAreaHealTrait() { } @Override public String getName() { return "MagicAreaHealTrait"; } @TraitConfigurationNeeded( fields = { @TraitConfigurationField(fieldName = "value", classToExpect = Double.class, optional = false), @TraitConfigurationField(fieldName = "particle", classToExpect = String.class, optional = true), @TraitConfigurationField(fieldName = "particleFromSelf", classToExpect = String.class, optional = true), }) @Override public void setConfiguration(TraitConfiguration configMap) throws TraitConfigurationFailedException { super.setConfiguration(configMap); if(configMap.containsKey("value")){ value = configMap.getAsDouble("value"); } if(configMap.containsKey("particle")){ particles = configMap.getAsParticleContainer("particle"); } if(configMap.containsKey("particleFromSelf")){ particlesFromSelf = configMap.getAsParticleContainer("particleFromSelf"); } } public static List<String> getHelpForTrait(){ List<String> helpList = new LinkedList<String>(); helpList.add(ChatColor.YELLOW + "This Trait Does an AOE Heal."); return helpList; } @TraitInfos(category = "magic", traitName = "MagicAreaHealTrait", visible = true) @Override public void importTrait() { } @Override public boolean isBetterThan(Trait trait) { return false; } @TraitEventsUsed(registerdClasses = {}) @Override public void generalInit() { } @Override protected boolean triggerOnEntity(RaCPlayer player, Entity otherEntity) { if(!(otherEntity instanceof LivingEntity)) return false; double modHeal = modifyToPlayer(player, this.value, "value"); EntityHealOtherEntityEvent event = new EntityHealOtherEntityEvent(otherEntity, modHeal, RegainReason.MAGIC, player.getPlayer()); plugin.fireEventToBukkit(event); modHeal = event.getAmount(); if(modHeal <= 0 || event.isCancelled()) return false; CompatibilityModifier.LivingEntity.safeHealEntity((LivingEntity) otherEntity, modHeal); if(particles != null) Vollotile.get().sendOwnParticleEffectToAll(particles, otherEntity.getLocation()); if(particlesFromSelf != null) Vollotile.get().sendOwnParticleEffectToAll(particlesFromSelf, player.getLocation()); return true; } @Override protected String getPrettyConfigIntern() { return "Does Heal on Stuff around."; } }