public class EntityDamageEvent extends EntityEvent implements Cancellable
修飾子とタイプ | クラスと説明 |
---|---|
static class |
EntityDamageEvent.DamageCause
An enum to specify the cause of the damage
|
static class |
EntityDamageEvent.DamageModifier
An enum to specify the types of modifier
|
Event.Result
entity
コンストラクタと説明 |
---|
EntityDamageEvent(Entity damagee,
EntityDamageEvent.DamageCause cause,
double damage)
非推奨です。
|
EntityDamageEvent(Entity damagee,
EntityDamageEvent.DamageCause cause,
int damage)
非推奨です。
|
EntityDamageEvent(Entity damagee,
EntityDamageEvent.DamageCause cause,
Map<EntityDamageEvent.DamageModifier,Double> modifiers,
Map<EntityDamageEvent.DamageModifier,? extends com.google.common.base.Function<? super Double,Double>> modifierFunctions) |
修飾子とタイプ | メソッドと説明 |
---|---|
int |
_INVALID_getDamage()
非推奨です。
|
void |
_INVALID_setDamage(int damage)
非推奨です。
|
EntityDamageEvent.DamageCause |
getCause()
Gets the cause of the damage.
|
double |
getDamage()
Gets the raw amount of damage caused by the event
|
double |
getDamage(EntityDamageEvent.DamageModifier type)
Gets the damage change for some modifier
|
double |
getFinalDamage()
Gets the amount of damage caused by the event after all damage
reduction is applied.
|
static HandlerList |
getHandlerList() |
HandlerList |
getHandlers() |
double |
getOriginalDamage(EntityDamageEvent.DamageModifier type)
Gets the original damage for the specified modifier, as defined at this
event's construction.
|
boolean |
isApplicable(EntityDamageEvent.DamageModifier type)
This checks to see if a particular modifier is valid for this event's
caller, such that,
setDamage(DamageModifier, double) will not
throw an UnsupportedOperationException . |
boolean |
isCancelled()
Gets the cancellation state of this event.
|
void |
setCancelled(boolean cancel)
Sets the cancellation state of this event.
|
void |
setDamage(double damage)
Sets the raw amount of damage caused by the event.
|
void |
setDamage(EntityDamageEvent.DamageModifier type,
double damage)
Sets the damage for the specified modifier.
|
getEntity, getEntityType
getEventName, isAsynchronous
@Deprecated public EntityDamageEvent(Entity damagee, EntityDamageEvent.DamageCause cause, int damage)
@Deprecated public EntityDamageEvent(Entity damagee, EntityDamageEvent.DamageCause cause, double damage)
public EntityDamageEvent(Entity damagee, EntityDamageEvent.DamageCause cause, Map<EntityDamageEvent.DamageModifier,Double> modifiers, Map<EntityDamageEvent.DamageModifier,? extends com.google.common.base.Function<? super Double,Double>> modifierFunctions)
public boolean isCancelled()
Cancellable
isCancelled
インタフェース内 Cancellable
public void setCancelled(boolean cancel)
Cancellable
setCancelled
インタフェース内 Cancellable
cancel
- true if you wish to cancel this eventpublic double getOriginalDamage(EntityDamageEvent.DamageModifier type) throws IllegalArgumentException
type
- the modifierIllegalArgumentException
- if type is nullpublic void setDamage(EntityDamageEvent.DamageModifier type, double damage) throws IllegalArgumentException, UnsupportedOperationException
type
- the damage modifierdamage
- the scalar value of the damage's modifierIllegalArgumentException
- if type is nullUnsupportedOperationException
- if the caller does not support
the particular DamageModifier, or to rephrase, when isApplicable(DamageModifier)
returns falsegetFinalDamage()
public double getDamage(EntityDamageEvent.DamageModifier type) throws IllegalArgumentException
type
- the damage modifierIllegalArgumentException
- if type is nullEntityDamageEvent.DamageModifier.BASE
public boolean isApplicable(EntityDamageEvent.DamageModifier type) throws IllegalArgumentException
setDamage(DamageModifier, double)
will not
throw an UnsupportedOperationException
.
EntityDamageEvent.DamageModifier.BASE
is always applicable.
type
- the modifierIllegalArgumentException
- if type is nullpublic double getDamage()
EntityDamageEvent.DamageModifier.BASE
public final double getFinalDamage()
@Deprecated public int _INVALID_getDamage()
public void setDamage(double damage)
For compatibility this also recalculates the modifiers and scales them by the difference between the modifier for the previous damage value and the new one.
damage
- The raw amount of damage caused by the event@Deprecated public void _INVALID_setDamage(int damage)
damage
- the new damage valuepublic EntityDamageEvent.DamageCause getCause()
public HandlerList getHandlers()
getHandlers
クラス内 Event
public static HandlerList getHandlerList()
Copyright © 2016. All rights reserved.