From dc3df3edd5843bde0c1335d6a8e460b2c832aa48 Mon Sep 17 00:00:00 2001 From: Foghrye4 Date: Sat, 17 Jun 2017 08:12:18 +0300 Subject: full project files --- .../event/entity/living/EnderTeleportEvent.html | 375 +++++++++++++++++ .../event/entity/living/LivingAttackEvent.html | 360 +++++++++++++++++ .../event/entity/living/LivingDeathEvent.html | 345 ++++++++++++++++ .../event/entity/living/LivingDropsEvent.html | 411 +++++++++++++++++++ .../entity/living/LivingEvent.LivingJumpEvent.html | 315 +++++++++++++++ .../living/LivingEvent.LivingUpdateEvent.html | 315 +++++++++++++++ .../event/entity/living/LivingEvent.html | 345 ++++++++++++++++ .../event/entity/living/LivingFallEvent.html | 343 ++++++++++++++++ .../event/entity/living/LivingHealEvent.html | 342 ++++++++++++++++ .../event/entity/living/LivingHurtEvent.html | 360 +++++++++++++++++ .../event/entity/living/LivingPackSizeEvent.html | 337 ++++++++++++++++ .../entity/living/LivingSetAttackTargetEvent.html | 343 ++++++++++++++++ .../living/LivingSpawnEvent.AllowDespawn.html | 330 +++++++++++++++ .../entity/living/LivingSpawnEvent.CheckSpawn.html | 336 ++++++++++++++++ .../living/LivingSpawnEvent.SpecialSpawn.html | 342 ++++++++++++++++ .../event/entity/living/LivingSpawnEvent.html | 422 +++++++++++++++++++ .../entity/living/ZombieEvent.SummonAidEvent.html | 445 +++++++++++++++++++++ .../event/entity/living/ZombieEvent.html | 330 +++++++++++++++ .../event/entity/living/package-frame.html | 36 ++ .../event/entity/living/package-summary.html | 287 +++++++++++++ .../event/entity/living/package-tree.html | 160 ++++++++ 21 files changed, 6879 insertions(+) create mode 100644 javadoc/net/minecraftforge/event/entity/living/EnderTeleportEvent.html create mode 100644 javadoc/net/minecraftforge/event/entity/living/LivingAttackEvent.html create mode 100644 javadoc/net/minecraftforge/event/entity/living/LivingDeathEvent.html create mode 100644 javadoc/net/minecraftforge/event/entity/living/LivingDropsEvent.html create mode 100644 javadoc/net/minecraftforge/event/entity/living/LivingEvent.LivingJumpEvent.html create mode 100644 javadoc/net/minecraftforge/event/entity/living/LivingEvent.LivingUpdateEvent.html create mode 100644 javadoc/net/minecraftforge/event/entity/living/LivingEvent.html create mode 100644 javadoc/net/minecraftforge/event/entity/living/LivingFallEvent.html create mode 100644 javadoc/net/minecraftforge/event/entity/living/LivingHealEvent.html create mode 100644 javadoc/net/minecraftforge/event/entity/living/LivingHurtEvent.html create mode 100644 javadoc/net/minecraftforge/event/entity/living/LivingPackSizeEvent.html create mode 100644 javadoc/net/minecraftforge/event/entity/living/LivingSetAttackTargetEvent.html create mode 100644 javadoc/net/minecraftforge/event/entity/living/LivingSpawnEvent.AllowDespawn.html create mode 100644 javadoc/net/minecraftforge/event/entity/living/LivingSpawnEvent.CheckSpawn.html create mode 100644 javadoc/net/minecraftforge/event/entity/living/LivingSpawnEvent.SpecialSpawn.html create mode 100644 javadoc/net/minecraftforge/event/entity/living/LivingSpawnEvent.html create mode 100644 javadoc/net/minecraftforge/event/entity/living/ZombieEvent.SummonAidEvent.html create mode 100644 javadoc/net/minecraftforge/event/entity/living/ZombieEvent.html create mode 100644 javadoc/net/minecraftforge/event/entity/living/package-frame.html create mode 100644 javadoc/net/minecraftforge/event/entity/living/package-summary.html create mode 100644 javadoc/net/minecraftforge/event/entity/living/package-tree.html (limited to 'javadoc/net/minecraftforge/event/entity/living') diff --git a/javadoc/net/minecraftforge/event/entity/living/EnderTeleportEvent.html b/javadoc/net/minecraftforge/event/entity/living/EnderTeleportEvent.html new file mode 100644 index 0000000..d45d71a --- /dev/null +++ b/javadoc/net/minecraftforge/event/entity/living/EnderTeleportEvent.html @@ -0,0 +1,375 @@ + + + + + +EnderTeleportEvent (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraftforge.event.entity.living
+

Class EnderTeleportEvent

+
+
+ +
+
    +
  • +
    +
    +
    public class EnderTeleportEvent
    +extends LivingEvent
    +
    Event for when an Enderman teleports or an ender pearl is used. Can be used to either modify the target position, or cancel the teleport outright.
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        targetX

        +
        public double targetX
        +
      • +
      + + + +
        +
      • +

        targetY

        +
        public double targetY
        +
      • +
      + + + +
        +
      • +

        targetZ

        +
        public double targetZ
        +
      • +
      + + + +
        +
      • +

        attackDamage

        +
        public float attackDamage
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        EnderTeleportEvent

        +
        public EnderTeleportEvent(EntityLivingBase entity,
        +                  double targetX,
        +                  double targetY,
        +                  double targetZ,
        +                  float attackDamage)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraftforge/event/entity/living/LivingAttackEvent.html b/javadoc/net/minecraftforge/event/entity/living/LivingAttackEvent.html new file mode 100644 index 0000000..d904ac2 --- /dev/null +++ b/javadoc/net/minecraftforge/event/entity/living/LivingAttackEvent.html @@ -0,0 +1,360 @@ + + + + + +LivingAttackEvent (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraftforge.event.entity.living
+

Class LivingAttackEvent

+
+
+ +
+
    +
  • +
    +
    +
    public class LivingAttackEvent
    +extends LivingEvent
    +
    LivingAttackEvent is fired when a living Entity is attacked.
    + This event is fired whenever an Entity is attacked in + EntityLivingBase#attackEntityFrom(DamageSource, float) and + EntityPlayer#attackEntityFrom(DamageSource, float).
    +
    + This event is fired via the ForgeHooks#onLivingAttack(EntityLivingBase, DamageSource, float).
    +
    + source contains the DamageSource of the attack.
    + #amount contains the amount of damage dealt to the entity.
    +
    + This event is Cancelable.
    + If this event is canceled, the Entity does not take attack damage.
    +
    + This event does not have a result. HasResult
    +
    + This event is fired on the MinecraftForge#EVENT_BUS.
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + + + + + +
        +
      • +

        ammount

        +
        public final float ammount
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraftforge/event/entity/living/LivingDeathEvent.html b/javadoc/net/minecraftforge/event/entity/living/LivingDeathEvent.html new file mode 100644 index 0000000..821f522 --- /dev/null +++ b/javadoc/net/minecraftforge/event/entity/living/LivingDeathEvent.html @@ -0,0 +1,345 @@ + + + + + +LivingDeathEvent (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraftforge.event.entity.living
+

Class LivingDeathEvent

+
+
+ +
+
    +
  • +
    +
    +
    public class LivingDeathEvent
    +extends LivingEvent
    +
    LivingDeathEvent is fired when an Entity dies.
    + This event is fired whenever an Entity dies in + EntityLivingBase#onDeath(DamageSource), + EntityPlayer#onDeath(DamageSource), and + EntityPlayerMP#onDeath(DamageSource).
    +
    + This event is fired via the ForgeHooks#onLivingDeath(EntityLivingBase, DamageSource).
    +
    + source contains the DamageSource that caused the entity to die.
    +
    + This event is Cancelable.
    + If this event is canceled, the Entity does not die.
    +
    + This event does not have a result. HasResult
    +
    + This event is fired on the MinecraftForge#EVENT_BUS.
    +
  • +
+
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraftforge/event/entity/living/LivingDropsEvent.html b/javadoc/net/minecraftforge/event/entity/living/LivingDropsEvent.html new file mode 100644 index 0000000..69b3880 --- /dev/null +++ b/javadoc/net/minecraftforge/event/entity/living/LivingDropsEvent.html @@ -0,0 +1,411 @@ + + + + + +LivingDropsEvent (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraftforge.event.entity.living
+

Class LivingDropsEvent

+
+
+ +
+
    +
  • +
    +
    Direct Known Subclasses:
    +
    PlayerDropsEvent
    +
    +
    +
    +
    public class LivingDropsEvent
    +extends LivingEvent
    +
    LivingDropsEvent is fired when an Entity's death causes dropped items to appear.
    + This event is fired whenever an Entity dies and drops items in + EntityLivingBase#onDeath(DamageSource).
    +
    + This event is fired via the ForgeHooks#onLivingDrops(EntityLivingBase, DamageSource, ArrayList, int, boolean, int).
    +
    + source contains the DamageSource that caused the drop to occur.
    + drops contains the ArrayList of EntityItems that will be dropped.
    + lootingLevel contains the amount of loot that will be dropped.
    + recentlyHit determines whether the Entity doing the drop has recently been damaged.
    + specialDropValue contains the special drop value for this even.
    +
    + This event is Cancelable.
    + If this event is canceled, the Entity does not drop anything.
    +
    + This event does not have a result. HasResult
    +
    + This event is fired on the MinecraftForge#EVENT_BUS.
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + + + + + +
        +
      • +

        drops

        +
        public final java.util.ArrayList<EntityItem> drops
        +
      • +
      + + + +
        +
      • +

        lootingLevel

        +
        public final int lootingLevel
        +
      • +
      + + + +
        +
      • +

        recentlyHit

        +
        public final boolean recentlyHit
        +
      • +
      + + + +
        +
      • +

        specialDropValue

        +
        public final int specialDropValue
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LivingDropsEvent

        +
        public LivingDropsEvent(EntityLivingBase entity,
        +                DamageSource source,
        +                java.util.ArrayList<EntityItem> drops,
        +                int lootingLevel,
        +                boolean recentlyHit,
        +                int specialDropValue)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraftforge/event/entity/living/LivingEvent.LivingJumpEvent.html b/javadoc/net/minecraftforge/event/entity/living/LivingEvent.LivingJumpEvent.html new file mode 100644 index 0000000..70e92e5 --- /dev/null +++ b/javadoc/net/minecraftforge/event/entity/living/LivingEvent.LivingJumpEvent.html @@ -0,0 +1,315 @@ + + + + + +LivingEvent.LivingJumpEvent (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraftforge.event.entity.living
+

Class LivingEvent.LivingJumpEvent

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    LivingEvent
    +
    +
    +
    +
    public static class LivingEvent.LivingJumpEvent
    +extends LivingEvent
    +
    LivingJumpEvent is fired when an Entity jumps.
    + This event is fired whenever an Entity jumps in + EntityLivingBase#jump(), EntityMagmaCube#jump(), + and EntityHorse#jump().
    +
    + This event is fired via the ForgeHooks#onLivingJump(EntityLivingBase).
    +
    + This event is not Cancelable.
    +
    + This event does not have a result. HasResult
    +
    + This event is fired on the MinecraftForge#EVENT_BUS.
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LivingEvent.LivingJumpEvent

        +
        public LivingEvent.LivingJumpEvent(EntityLivingBase e)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraftforge/event/entity/living/LivingEvent.LivingUpdateEvent.html b/javadoc/net/minecraftforge/event/entity/living/LivingEvent.LivingUpdateEvent.html new file mode 100644 index 0000000..a730bf7 --- /dev/null +++ b/javadoc/net/minecraftforge/event/entity/living/LivingEvent.LivingUpdateEvent.html @@ -0,0 +1,315 @@ + + + + + +LivingEvent.LivingUpdateEvent (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraftforge.event.entity.living
+

Class LivingEvent.LivingUpdateEvent

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    LivingEvent
    +
    +
    +
    +
    public static class LivingEvent.LivingUpdateEvent
    +extends LivingEvent
    +
    LivingUpdateEvent is fired when an Entity is updated.
    + This event is fired whenever an Entity is updated in + EntityLivingBase#onUpdate().
    +
    + This event is fired via the ForgeHooks#onLivingUpdate(EntityLivingBase).
    +
    + This event is Cancelable.
    + If this event is canceled, the Entity does not update.
    +
    + This event does not have a result. HasResult
    +
    + This event is fired on the MinecraftForge#EVENT_BUS.
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LivingEvent.LivingUpdateEvent

        +
        public LivingEvent.LivingUpdateEvent(EntityLivingBase e)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraftforge/event/entity/living/LivingEvent.html b/javadoc/net/minecraftforge/event/entity/living/LivingEvent.html new file mode 100644 index 0000000..361a44c --- /dev/null +++ b/javadoc/net/minecraftforge/event/entity/living/LivingEvent.html @@ -0,0 +1,345 @@ + + + + + +LivingEvent (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraftforge.event.entity.living
+

Class LivingEvent

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraftforge/event/entity/living/LivingFallEvent.html b/javadoc/net/minecraftforge/event/entity/living/LivingFallEvent.html new file mode 100644 index 0000000..813601a --- /dev/null +++ b/javadoc/net/minecraftforge/event/entity/living/LivingFallEvent.html @@ -0,0 +1,343 @@ + + + + + +LivingFallEvent (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraftforge.event.entity.living
+

Class LivingFallEvent

+
+
+ +
+
    +
  • +
    +
    +
    public class LivingFallEvent
    +extends LivingEvent
    +
    LivingFallEvent is fired when an Entity is set to be falling.
    + This event is fired whenever an Entity is set to fall in + EntityLivingBase#fall(float).
    +
    + This event is fired via the ForgeHooks#onLivingFall(EntityLivingBase, float).
    +
    + distance contains the distance the Entity is to fall. If this event is canceled, this value is set to 0.0F. +
    + This event is Cancelable.
    + If this event is canceled, the Entity does not fall.
    +
    + This event does not have a result. HasResult
    +
    + This event is fired on the MinecraftForge#EVENT_BUS.
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        distance

        +
        public float distance
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LivingFallEvent

        +
        public LivingFallEvent(EntityLivingBase entity,
        +               float distance)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraftforge/event/entity/living/LivingHealEvent.html b/javadoc/net/minecraftforge/event/entity/living/LivingHealEvent.html new file mode 100644 index 0000000..47c1b19 --- /dev/null +++ b/javadoc/net/minecraftforge/event/entity/living/LivingHealEvent.html @@ -0,0 +1,342 @@ + + + + + +LivingHealEvent (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraftforge.event.entity.living
+

Class LivingHealEvent

+
+
+ +
+
    +
  • +
    +
    +
    public class LivingHealEvent
    +extends LivingEvent
    +
    LivingHealEvent is fired when an Entity is set to be healed.
    + This event is fired whenever an Entity is healed in EntityLivingBase#heal(float)
    +
    + This event is fired via the ForgeHooks#onLivingHeal(EntityLivingBase, float).
    +
    + amount contains the amount of healing done to the Entity that was healed.
    +
    + This event is Cancelable.
    + If this event is canceled, the Entity is not healed.
    +
    + This event does not have a result. HasResult
    +
    + This event is fired on the MinecraftForge#EVENT_BUS.
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        amount

        +
        public float amount
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LivingHealEvent

        +
        public LivingHealEvent(EntityLivingBase entity,
        +               float amount)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraftforge/event/entity/living/LivingHurtEvent.html b/javadoc/net/minecraftforge/event/entity/living/LivingHurtEvent.html new file mode 100644 index 0000000..8548353 --- /dev/null +++ b/javadoc/net/minecraftforge/event/entity/living/LivingHurtEvent.html @@ -0,0 +1,360 @@ + + + + + +LivingHurtEvent (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraftforge.event.entity.living
+

Class LivingHurtEvent

+
+
+ +
+
    +
  • +
    +
    +
    public class LivingHurtEvent
    +extends LivingEvent
    +
    LivingHurtEvent is fired when an Entity is set to be hurt.
    + This event is fired whenever an Entity is hurt in + EntityLivingBase#damageEntity(DamageSource, float) and + EntityPlayer#damageEntity(DamageSource, float).
    +
    + This event is fired via the ForgeHooks#onLivingHurt(EntityLivingBase, DamageSource, float).
    +
    + source contains the DamageSource that caused this Entity to be hurt.
    + #amount contains the amount of damage dealt to the Entity that was hurt.
    +
    + This event is Cancelable.
    + If this event is canceled, the Entity is not hurt.
    +
    + This event does not have a result. HasResult
    +
    + This event is fired on the MinecraftForge#EVENT_BUS.
    +
  • +
+
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraftforge/event/entity/living/LivingPackSizeEvent.html b/javadoc/net/minecraftforge/event/entity/living/LivingPackSizeEvent.html new file mode 100644 index 0000000..3cc040c --- /dev/null +++ b/javadoc/net/minecraftforge/event/entity/living/LivingPackSizeEvent.html @@ -0,0 +1,337 @@ + + + + + +LivingPackSizeEvent (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraftforge.event.entity.living
+

Class LivingPackSizeEvent

+
+
+ +
+
    +
  • +
    +
    +
    public class LivingPackSizeEvent
    +extends LivingEvent
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        maxPackSize

        +
        public int maxPackSize
        +
        This event is fired when the spawning system determines the + maximum amount of the selected entity that can spawn at the same + time. + + If you set the result to 'ALLOW', it means that you want to return + the value of maxPackSize as the maximum pack size for current entity.
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LivingPackSizeEvent

        +
        public LivingPackSizeEvent(EntityLiving entity)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraftforge/event/entity/living/LivingSetAttackTargetEvent.html b/javadoc/net/minecraftforge/event/entity/living/LivingSetAttackTargetEvent.html new file mode 100644 index 0000000..02279bb --- /dev/null +++ b/javadoc/net/minecraftforge/event/entity/living/LivingSetAttackTargetEvent.html @@ -0,0 +1,343 @@ + + + + + +LivingSetAttackTargetEvent (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraftforge.event.entity.living
+

Class LivingSetAttackTargetEvent

+
+
+ +
+
    +
  • +
    +
    +
    public class LivingSetAttackTargetEvent
    +extends LivingEvent
    +
    LivingSetAttackTargetEvent is fired when an Entity sets a target to attack.
    + This event is fired whenever an Entity sets a target to attack in + EntityLiving#setAttackTarget(EntityLivingBase) and + EntityLivingBase#setRevengeTarget(EntityLivingBase).
    +
    + This event is fired via the ForgeHooks#onLivingSetAttackTarget(EntityLivingBase, EntityLivingBase).
    +
    + target contains the newly targeted Entity.
    +
    + This event is not Cancelable.
    +
    + This event does not have a result. HasResult
    +
    + This event is fired on the MinecraftForge#EVENT_BUS.
    +
  • +
+
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraftforge/event/entity/living/LivingSpawnEvent.AllowDespawn.html b/javadoc/net/minecraftforge/event/entity/living/LivingSpawnEvent.AllowDespawn.html new file mode 100644 index 0000000..a0ac847 --- /dev/null +++ b/javadoc/net/minecraftforge/event/entity/living/LivingSpawnEvent.AllowDespawn.html @@ -0,0 +1,330 @@ + + + + + +LivingSpawnEvent.AllowDespawn (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraftforge.event.entity.living
+

Class LivingSpawnEvent.AllowDespawn

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    LivingSpawnEvent
    +
    +
    +
    +
    public static class LivingSpawnEvent.AllowDespawn
    +extends LivingSpawnEvent
    +
    Fired each tick for despawnable mobs to allow control over despawning. + Result#DEFAULT will pass the mob on to vanilla despawn mechanics. + Result#ALLOW will force the mob to despawn. + Result#DENY will force the mob to remain. + This is fired every tick for every despawnable entity. Be efficient in your handlers. + + Note: this is not fired if the mob is definitely going to otherwise despawn. It is fired to check if + the mob can be allowed to despawn. See EntityLiving.despawnEntity()
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LivingSpawnEvent.AllowDespawn

        +
        public LivingSpawnEvent.AllowDespawn(EntityLiving entity)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraftforge/event/entity/living/LivingSpawnEvent.CheckSpawn.html b/javadoc/net/minecraftforge/event/entity/living/LivingSpawnEvent.CheckSpawn.html new file mode 100644 index 0000000..ec0c98c --- /dev/null +++ b/javadoc/net/minecraftforge/event/entity/living/LivingSpawnEvent.CheckSpawn.html @@ -0,0 +1,336 @@ + + + + + +LivingSpawnEvent.CheckSpawn (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraftforge.event.entity.living
+

Class LivingSpawnEvent.CheckSpawn

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    LivingSpawnEvent
    +
    +
    +
    +
    public static class LivingSpawnEvent.CheckSpawn
    +extends LivingSpawnEvent
    +
    Fires before mob spawn events. + + Result is significant: + DEFAULT: use vanilla spawn rules + ALLOW: allow the spawn + DENY: deny the spawn
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LivingSpawnEvent.CheckSpawn

        +
        public LivingSpawnEvent.CheckSpawn(EntityLiving entity,
        +                           World world,
        +                           float x,
        +                           float y,
        +                           float z)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraftforge/event/entity/living/LivingSpawnEvent.SpecialSpawn.html b/javadoc/net/minecraftforge/event/entity/living/LivingSpawnEvent.SpecialSpawn.html new file mode 100644 index 0000000..890e224 --- /dev/null +++ b/javadoc/net/minecraftforge/event/entity/living/LivingSpawnEvent.SpecialSpawn.html @@ -0,0 +1,342 @@ + + + + + +LivingSpawnEvent.SpecialSpawn (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraftforge.event.entity.living
+

Class LivingSpawnEvent.SpecialSpawn

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    LivingSpawnEvent
    +
    +
    +
    +
    public static class LivingSpawnEvent.SpecialSpawn
    +extends LivingSpawnEvent
    +
    SpecialSpawn is fired when an Entity is to be spawned from a mob spawner.
    + This event is fired whenever an Entity is spawned in a mob spawner in
    + SpawnerAnimals#findChunksForSpawning(WorldServer, boolean, boolean, boolean).
    +
    + This event is fired via the ForgeHooks#doSpecialSpawn(EntityLiving, World, float, float, float).
    +
    + This event is Cancelable.
    + If this event is canceled, the Entity is not spawned.
    +
    + This event does not have a result. Event.HasResult
    +
    + This event is fired on the MinecraftForge#EVENT_BUS.
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LivingSpawnEvent.SpecialSpawn

        +
        public LivingSpawnEvent.SpecialSpawn(EntityLiving entity,
        +                             World world,
        +                             float x,
        +                             float y,
        +                             float z)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraftforge/event/entity/living/LivingSpawnEvent.html b/javadoc/net/minecraftforge/event/entity/living/LivingSpawnEvent.html new file mode 100644 index 0000000..a8ee2a7 --- /dev/null +++ b/javadoc/net/minecraftforge/event/entity/living/LivingSpawnEvent.html @@ -0,0 +1,422 @@ + + + + + +LivingSpawnEvent (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraftforge.event.entity.living
+

Class LivingSpawnEvent

+
+
+ +
+
    +
  • +
    +
    Direct Known Subclasses:
    +
    LivingSpawnEvent.AllowDespawn, LivingSpawnEvent.CheckSpawn, LivingSpawnEvent.SpecialSpawn
    +
    +
    +
    +
    public class LivingSpawnEvent
    +extends LivingEvent
    +
    LivingSpawnEvent is fired whenever a living Entity is spawned.
    + If a method utilizes this Event as its parameter, the method will + receive every child event of this class.
    +
    + world contains the world in which this living Entity is being spawned.
    + x contains the x-coordinate this entity is being spawned at.
    + y contains the y-coordinate this entity is being spawned at.
    + z contains the z-coordinate this entity is being spawned at.
    +
    + All children of this event are fired on the MinecraftForge#EVENT_BUS.
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        world

        +
        public final World world
        +
      • +
      + + + +
        +
      • +

        x

        +
        public final float x
        +
      • +
      + + + +
        +
      • +

        y

        +
        public final float y
        +
      • +
      + + + +
        +
      • +

        z

        +
        public final float z
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LivingSpawnEvent

        +
        public LivingSpawnEvent(EntityLiving entity,
        +                World world,
        +                float x,
        +                float y,
        +                float z)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraftforge/event/entity/living/ZombieEvent.SummonAidEvent.html b/javadoc/net/minecraftforge/event/entity/living/ZombieEvent.SummonAidEvent.html new file mode 100644 index 0000000..02f7d0f --- /dev/null +++ b/javadoc/net/minecraftforge/event/entity/living/ZombieEvent.SummonAidEvent.html @@ -0,0 +1,445 @@ + + + + + +ZombieEvent.SummonAidEvent (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraftforge.event.entity.living
+

Class ZombieEvent.SummonAidEvent

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    ZombieEvent
    +
    +
    +
    +
    public static class ZombieEvent.SummonAidEvent
    +extends ZombieEvent
    +
    SummonAidEvent is fired when a Zombie Entity is summoned. + This event is fired whenever a Zombie Entity is summoned in + EntityZombie#attackEntityFrom(DamageSource, float). + + This event is fired via the ForgeHooks#fireZombieSummonAid(EntityZombie, World, int, int, int, EntityLivingBase, double). + + customSummonedAid remains null, but can be populated with a custom EntityZombie which will be spawned. + world contains the world that this summoning is occurring in. + x contains the x-coordinate at which this summoning event is occurring. + y contains the y-coordinate at which this summoning event is occurring. + z contains the z-coordinate at which this summoning event is occurring. + attacker contains the living Entity that attacked and caused this event to fire. + summonChance contains the likelihood that a Zombie would successfully be summoned. + + This event is not Cancelable. + + This event has a result. Event.HasResult + Result#ALLOW Zombie is summoned. + Result#DENY Zombie is not summoned. + + This event is fired on the MinecraftForge#EVENT_BUS.
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        customSummonedAid

        +
        public EntityZombie customSummonedAid
        +
        Populate this field to have a custom zombie instead of a normal zombie summoned
        +
      • +
      + + + +
        +
      • +

        world

        +
        public final World world
        +
      • +
      + + + +
        +
      • +

        x

        +
        public final int x
        +
      • +
      + + + +
        +
      • +

        y

        +
        public final int y
        +
      • +
      + + + +
        +
      • +

        z

        +
        public final int z
        +
      • +
      + + + + + + + +
        +
      • +

        summonChance

        +
        public final double summonChance
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ZombieEvent.SummonAidEvent

        +
        public ZombieEvent.SummonAidEvent(EntityZombie entity,
        +                          World world,
        +                          int x,
        +                          int y,
        +                          int z,
        +                          EntityLivingBase attacker,
        +                          double summonChance)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraftforge/event/entity/living/ZombieEvent.html b/javadoc/net/minecraftforge/event/entity/living/ZombieEvent.html new file mode 100644 index 0000000..4683105 --- /dev/null +++ b/javadoc/net/minecraftforge/event/entity/living/ZombieEvent.html @@ -0,0 +1,330 @@ + + + + + +ZombieEvent (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraftforge.event.entity.living
+

Class ZombieEvent

+
+
+ +
+
    +
  • +
    +
    Direct Known Subclasses:
    +
    ZombieEvent.SummonAidEvent
    +
    +
    +
    +
    public class ZombieEvent
    +extends EntityEvent
    +
    ZombieEvent is fired whenever a zombie is spawned for aid. + If a method utilizes this Event as its parameter, the method will + receive every child event of this class. + + All children of this event are fired on the MinecraftForge#EVENT_BUS.
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ZombieEvent

        +
        public ZombieEvent(EntityZombie entity)
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraftforge/event/entity/living/package-frame.html b/javadoc/net/minecraftforge/event/entity/living/package-frame.html new file mode 100644 index 0000000..af8e23a --- /dev/null +++ b/javadoc/net/minecraftforge/event/entity/living/package-frame.html @@ -0,0 +1,36 @@ + + + + + +net.minecraftforge.event.entity.living (Forge API) + + + + +

net.minecraftforge.event.entity.living

+
+

Classes

+ +
+ + diff --git a/javadoc/net/minecraftforge/event/entity/living/package-summary.html b/javadoc/net/minecraftforge/event/entity/living/package-summary.html new file mode 100644 index 0000000..2015b7c --- /dev/null +++ b/javadoc/net/minecraftforge/event/entity/living/package-summary.html @@ -0,0 +1,287 @@ + + + + + +net.minecraftforge.event.entity.living (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Package net.minecraftforge.event.entity.living

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraftforge/event/entity/living/package-tree.html b/javadoc/net/minecraftforge/event/entity/living/package-tree.html new file mode 100644 index 0000000..5af11bc --- /dev/null +++ b/javadoc/net/minecraftforge/event/entity/living/package-tree.html @@ -0,0 +1,160 @@ + + + + + +net.minecraftforge.event.entity.living Class Hierarchy (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package net.minecraftforge.event.entity.living

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + +
+ + + + -- cgit v1.2.3