|
@@ -1,15 +1,17 @@
|
|
|
package com.gmail.nossr50.skills;
|
|
|
|
|
|
import org.bukkit.Material;
|
|
|
-import org.bukkit.World;
|
|
|
+import org.bukkit.entity.AnimalTamer;
|
|
|
import org.bukkit.entity.Entity;
|
|
|
import org.bukkit.entity.EntityType;
|
|
|
import org.bukkit.entity.LivingEntity;
|
|
|
import org.bukkit.entity.Player;
|
|
|
+import org.bukkit.entity.Tameable;
|
|
|
import org.bukkit.entity.Wolf;
|
|
|
import org.bukkit.event.entity.EntityDamageEvent;
|
|
|
import org.bukkit.event.entity.EntityDamageEvent.DamageCause;
|
|
|
import org.bukkit.inventory.ItemStack;
|
|
|
+import org.bukkit.metadata.FixedMetadataValue;
|
|
|
|
|
|
import com.gmail.nossr50.Users;
|
|
|
import com.gmail.nossr50.mcMMO;
|
|
@@ -18,152 +20,206 @@ import com.gmail.nossr50.datatypes.PlayerProfile;
|
|
|
import com.gmail.nossr50.datatypes.SkillType;
|
|
|
import com.gmail.nossr50.locale.mcLocale;
|
|
|
|
|
|
-public class Taming
|
|
|
-{
|
|
|
- public static void fastFoodService(PlayerProfile PPo, Wolf theWolf, EntityDamageEvent event)
|
|
|
- {
|
|
|
- int health = theWolf.getHealth();
|
|
|
- int maxHealth = theWolf.getMaxHealth();
|
|
|
- int damage = event.getDamage();
|
|
|
- if(PPo.getSkillLevel(SkillType.TAMING) >= 50)
|
|
|
- {
|
|
|
- if(health < maxHealth)
|
|
|
- {
|
|
|
- if(Math.random() * 10 > 5)
|
|
|
- {
|
|
|
- if(health + damage <= maxHealth)
|
|
|
- theWolf.setHealth(health + damage);
|
|
|
- else
|
|
|
- theWolf.setHealth(maxHealth);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- public static void sharpenedClaws(PlayerProfile PPo, EntityDamageEvent event)
|
|
|
- {
|
|
|
- if(PPo.getSkillLevel(SkillType.TAMING) >= 750)
|
|
|
- {
|
|
|
- event.setDamage(event.getDamage() + 2);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- public static void gore(PlayerProfile PPo, EntityDamageEvent event, Player master, mcMMO pluginx)
|
|
|
- {
|
|
|
- if(Math.random() * 1000 <= PPo.getSkillLevel(SkillType.TAMING))
|
|
|
- {
|
|
|
- Entity entity = event.getEntity();
|
|
|
- event.setDamage(event.getDamage() * 2);
|
|
|
-
|
|
|
- if(entity instanceof Player)
|
|
|
- {
|
|
|
- Player target = (Player)entity;
|
|
|
- target.sendMessage(mcLocale.getString("Combat.StruckByGore")); //$NON-NLS-1$
|
|
|
- Users.getProfile(target).setBleedTicks(2);
|
|
|
- }
|
|
|
- else
|
|
|
- pluginx.misc.addToBleedQue((LivingEntity)entity);
|
|
|
-
|
|
|
- master.sendMessage(mcLocale.getString("Combat.Gore")); //$NON-NLS-1$
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- public static String getOwnerName(Wolf theWolf)
|
|
|
- {
|
|
|
- Player owner = null;
|
|
|
-
|
|
|
- if (theWolf.getOwner() instanceof Player)
|
|
|
- {
|
|
|
- owner = (Player)theWolf.getOwner();
|
|
|
- return owner.getName();
|
|
|
- }
|
|
|
- else
|
|
|
- return "Offline Master";
|
|
|
- }
|
|
|
-
|
|
|
- public static void preventDamage(EntityDamageEvent event, mcMMO plugin)
|
|
|
- {
|
|
|
- DamageCause cause = event.getCause();
|
|
|
- Wolf wolf = (Wolf) event.getEntity();
|
|
|
+public class Taming {
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Apply the Fast Food Service ability.
|
|
|
+ *
|
|
|
+ * @param PPo The PlayerProfile of the wolf's owner
|
|
|
+ * @param theWolf The wolf using the ability
|
|
|
+ * @param event The event to modify
|
|
|
+ */
|
|
|
+ public static void fastFoodService (PlayerProfile PPo, Wolf theWolf, EntityDamageEvent event) {
|
|
|
+ final int SKILL_ACTIVATION_LEVEL = 50;
|
|
|
+ final int ACTIVATION_CHANCE = 50;
|
|
|
+
|
|
|
+ int health = theWolf.getHealth();
|
|
|
+ int maxHealth = theWolf.getMaxHealth();
|
|
|
+ int damage = event.getDamage();
|
|
|
+
|
|
|
+ if (PPo.getSkillLevel(SkillType.TAMING) >= SKILL_ACTIVATION_LEVEL) {
|
|
|
+ if (health < maxHealth) {
|
|
|
+ if (Math.random() * 100 < ACTIVATION_CHANCE) {
|
|
|
+ if (health + damage <= maxHealth) {
|
|
|
+ theWolf.setHealth(health + damage);
|
|
|
+ }
|
|
|
+ else {
|
|
|
+ theWolf.setHealth(maxHealth);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Apply the Sharpened Claws ability.
|
|
|
+ *
|
|
|
+ * @param PPo The PlayerProfile of the wolf's owner
|
|
|
+ * @param event The event to modify
|
|
|
+ */
|
|
|
+ public static void sharpenedClaws(PlayerProfile PPo, EntityDamageEvent event) {
|
|
|
+ final int SKILL_ACTIVATION_LEVEL = 750;
|
|
|
+ final int SHARPENED_CLAWS_BONUS = 2;
|
|
|
+
|
|
|
+ if (PPo.getSkillLevel(SkillType.TAMING) >= SKILL_ACTIVATION_LEVEL) {
|
|
|
+ event.setDamage(event.getDamage() + SHARPENED_CLAWS_BONUS);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Apply the Gore ability.
|
|
|
+ *
|
|
|
+ * @param PPo The PlayerProfile of the wolf's owner
|
|
|
+ * @param event The event to modify
|
|
|
+ * @param master The wolf's master
|
|
|
+ * @param plugin mcMMO plugin instance
|
|
|
+ */
|
|
|
+ public static void gore(PlayerProfile PPo, EntityDamageEvent event, Player master, mcMMO plugin) {
|
|
|
+ final int GORE_MULTIPLIER = 2;
|
|
|
+
|
|
|
+ if (Math.random() * 1000 <= PPo.getSkillLevel(SkillType.TAMING)) {
|
|
|
+ Entity entity = event.getEntity();
|
|
|
+ event.setDamage(event.getDamage() * GORE_MULTIPLIER);
|
|
|
+
|
|
|
+ if (entity instanceof Player) {
|
|
|
+ Player target = (Player) entity;
|
|
|
+
|
|
|
+ target.sendMessage(mcLocale.getString("Combat.StruckByGore"));
|
|
|
+ Users.getProfile(target).setBleedTicks(2);
|
|
|
+ }
|
|
|
+ else {
|
|
|
+ plugin.misc.addToBleedQue((LivingEntity)entity);
|
|
|
+ }
|
|
|
+
|
|
|
+ master.sendMessage(mcLocale.getString("Combat.Gore"));
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Get the name of a wolf's owner.
|
|
|
+ *
|
|
|
+ * @param theWolf The wolf whose owner's name to get
|
|
|
+ * @return the name of the wolf's owner, or "Offline Master" if the owner is offline
|
|
|
+ */
|
|
|
+ public static String getOwnerName(Wolf theWolf) {
|
|
|
+ AnimalTamer tamer = theWolf.getOwner();
|
|
|
+
|
|
|
+ if (tamer instanceof Player) {
|
|
|
+ Player owner = (Player) tamer;
|
|
|
+ return owner.getName();
|
|
|
+ }
|
|
|
+ else {
|
|
|
+ return "Offline Master";
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Prevent damage to wolves based on various skills.
|
|
|
+ *
|
|
|
+ * @param event The event to modify
|
|
|
+ * @param plugin mcMMO plugin instance
|
|
|
+ */
|
|
|
+ public static void preventDamage(EntityDamageEvent event, mcMMO plugin) {
|
|
|
+ final int ENVIRONMENTALLY_AWARE_LEVEL = 100;
|
|
|
+ final int THICK_FUR_LEVEL = 250;
|
|
|
+ final int SHOCK_PROOF_LEVEL = 500;
|
|
|
+
|
|
|
+ final int THICK_FUR_MODIFIER = 2;
|
|
|
+ final int SHOCK_PROOF_MODIFIER = 6;
|
|
|
+
|
|
|
+ DamageCause cause = event.getCause();
|
|
|
+ Wolf wolf = (Wolf) event.getEntity();
|
|
|
Player master = (Player) wolf.getOwner();
|
|
|
- int skillLevel = Users.getProfile(master).getSkillLevel(SkillType.TAMING);
|
|
|
-
|
|
|
- switch(cause)
|
|
|
- {
|
|
|
- //Environmentally Aware
|
|
|
- case CONTACT:
|
|
|
- case LAVA:
|
|
|
- case FIRE:
|
|
|
- if(skillLevel >= 100)
|
|
|
- {
|
|
|
- if(event.getDamage() >= wolf.getHealth())
|
|
|
- return;
|
|
|
-
|
|
|
- wolf.teleport(master.getLocation());
|
|
|
- master.sendMessage(mcLocale.getString("mcEntityListener.WolfComesBack")); //$NON-NLS-1$
|
|
|
- }
|
|
|
- break;
|
|
|
- case FALL:
|
|
|
- if(skillLevel >= 100)
|
|
|
- event.setCancelled(true);
|
|
|
- break;
|
|
|
-
|
|
|
- //Thick Fur
|
|
|
- case FIRE_TICK:
|
|
|
- if(skillLevel >= 250)
|
|
|
- wolf.setFireTicks(0);
|
|
|
- break;
|
|
|
- case ENTITY_ATTACK:
|
|
|
- case PROJECTILE:
|
|
|
- if(skillLevel >= 250)
|
|
|
- event.setDamage(event.getDamage() / 2);
|
|
|
- break;
|
|
|
-
|
|
|
- //Shock Proof
|
|
|
- case ENTITY_EXPLOSION:
|
|
|
- case BLOCK_EXPLOSION:
|
|
|
- if(skillLevel >= 500)
|
|
|
- event.setDamage(event.getDamage() / 6);
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- public static void animalSummon(EntityType type, Player player)
|
|
|
- {
|
|
|
- ItemStack item = player.getItemInHand();
|
|
|
- Material summonItem = null;
|
|
|
- int summonAmount = 0;
|
|
|
-
|
|
|
- switch(type)
|
|
|
- {
|
|
|
- case WOLF:
|
|
|
- summonItem = Material.BONE;
|
|
|
- summonAmount = LoadProperties.bonesConsumedByCOTW;
|
|
|
- break;
|
|
|
- case OCELOT:
|
|
|
- summonItem = Material.RAW_FISH;
|
|
|
- summonAmount = LoadProperties.fishConsumedByCOTW;
|
|
|
- break;
|
|
|
- }
|
|
|
-
|
|
|
- if(item.getType().equals(summonItem) && item.getAmount() >= summonAmount)
|
|
|
- {
|
|
|
- for(Entity x : player.getNearbyEntities(40, 40, 40))
|
|
|
- {
|
|
|
- if(x.getType().equals(type))
|
|
|
- {
|
|
|
- player.sendMessage(mcLocale.getString("m.TamingSummonFailed"));
|
|
|
- return;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- World world = player.getWorld();
|
|
|
- world.spawnCreature(player.getLocation(), type);
|
|
|
-
|
|
|
- int amount = item.getAmount();
|
|
|
- amount = amount - summonAmount;
|
|
|
- player.setItemInHand(new ItemStack(summonItem, amount));
|
|
|
- player.sendMessage(mcLocale.getString("m.TamingSummon"));
|
|
|
- }
|
|
|
- }
|
|
|
+ int skillLevel = Users.getProfile(master).getSkillLevel(SkillType.TAMING);
|
|
|
+
|
|
|
+ switch (cause) {
|
|
|
+
|
|
|
+ /* Environmentally Aware */
|
|
|
+ case CONTACT:
|
|
|
+ case LAVA:
|
|
|
+ case FIRE:
|
|
|
+ if (skillLevel >= ENVIRONMENTALLY_AWARE_LEVEL) {
|
|
|
+ if (event.getDamage() >= wolf.getHealth()) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ wolf.teleport(master.getLocation());
|
|
|
+ master.sendMessage(mcLocale.getString("mcEntityListener.WolfComesBack"));
|
|
|
+ }
|
|
|
+ break;
|
|
|
+
|
|
|
+ case FALL:
|
|
|
+ if (skillLevel >= ENVIRONMENTALLY_AWARE_LEVEL) {
|
|
|
+ event.setCancelled(true);
|
|
|
+ }
|
|
|
+ break;
|
|
|
+
|
|
|
+ /* Thick Fur */
|
|
|
+ case FIRE_TICK:
|
|
|
+ if(skillLevel >= THICK_FUR_LEVEL) {
|
|
|
+ wolf.setFireTicks(0);
|
|
|
+ }
|
|
|
+ break;
|
|
|
+
|
|
|
+ case ENTITY_ATTACK:
|
|
|
+ case PROJECTILE:
|
|
|
+ if (skillLevel >= THICK_FUR_LEVEL) {
|
|
|
+ event.setDamage(event.getDamage() / THICK_FUR_MODIFIER);
|
|
|
+ }
|
|
|
+ break;
|
|
|
+
|
|
|
+ /* Shock Proof */
|
|
|
+ case ENTITY_EXPLOSION:
|
|
|
+ case BLOCK_EXPLOSION:
|
|
|
+ if (skillLevel >= SHOCK_PROOF_LEVEL) {
|
|
|
+ event.setDamage(event.getDamage() / SHOCK_PROOF_MODIFIER);
|
|
|
+ }
|
|
|
+ break;
|
|
|
+
|
|
|
+ default:
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Summon an animal.
|
|
|
+ *
|
|
|
+ * @param type Type of animal to summon
|
|
|
+ * @param player Player summoning the animal
|
|
|
+ */
|
|
|
+ public static void animalSummon(EntityType type, Player player, mcMMO plugin) {
|
|
|
+ ItemStack item = player.getItemInHand();
|
|
|
+ Material summonItem = null;
|
|
|
+ int summonAmount = 0;
|
|
|
+
|
|
|
+ switch (type) {
|
|
|
+ case WOLF:
|
|
|
+ summonItem = Material.BONE;
|
|
|
+ summonAmount = LoadProperties.bonesConsumedByCOTW;
|
|
|
+ break;
|
|
|
+
|
|
|
+ case OCELOT:
|
|
|
+ summonItem = Material.RAW_FISH;
|
|
|
+ summonAmount = LoadProperties.fishConsumedByCOTW;
|
|
|
+ break;
|
|
|
+
|
|
|
+ default:
|
|
|
+ break;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (item.getType().equals(summonItem) && item.getAmount() >= summonAmount) {
|
|
|
+ for (Entity x : player.getNearbyEntities(40, 40, 40)) {
|
|
|
+ if (x.getType().equals(type)) {
|
|
|
+ player.sendMessage(mcLocale.getString("m.TamingSummonFailed"));
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ LivingEntity entity = player.getWorld().spawnCreature(player.getLocation(), type);
|
|
|
+ entity.setMetadata("summoned", new FixedMetadataValue(plugin, true));
|
|
|
+ ((Tameable) entity).setOwner(player);
|
|
|
+
|
|
|
+ player.setItemInHand(new ItemStack(summonItem, item.getAmount() - summonAmount));
|
|
|
+ player.sendMessage(mcLocale.getString("m.TamingSummon"));
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|