86 lines
No EOL
2.5 KiB
Java
86 lines
No EOL
2.5 KiB
Java
package gregtech.api.damagesources;
|
|
|
|
import net.minecraft.entity.EntityLivingBase;
|
|
import net.minecraft.util.*;
|
|
|
|
public class GT_DamageSources {
|
|
public static DamageSource getElectricDamage() {
|
|
return ic2.api.info.Info.DMG_ELECTRIC;
|
|
}
|
|
|
|
public static DamageSource getRadioactiveDamage() {
|
|
return ic2.api.info.Info.DMG_RADIATION;
|
|
}
|
|
|
|
public static DamageSource getNukeExplosionDamage() {
|
|
return ic2.api.info.Info.DMG_NUKE_EXPLOSION;
|
|
}
|
|
|
|
public static DamageSource getExplodingDamage() {
|
|
return new DamageSourceExploding();
|
|
}
|
|
|
|
public static DamageSource getCombatDamage(String aType, EntityLivingBase aPlayer, IChatComponent aDeathMessage) {
|
|
return new DamageSourceCombat(aType, aPlayer, aDeathMessage);
|
|
}
|
|
|
|
public static DamageSource getHeatDamage() {
|
|
return new DamageSourceHeat();
|
|
}
|
|
|
|
public static DamageSource getFrostDamage() {
|
|
return new DamageSourceFrost();
|
|
}
|
|
|
|
private static class DamageSourceCombat extends EntityDamageSource {
|
|
private IChatComponent mDeathMessage;
|
|
|
|
public DamageSourceCombat(String aType, EntityLivingBase aPlayer, IChatComponent aDeathMessage) {
|
|
super(aType, aPlayer);
|
|
mDeathMessage = aDeathMessage;
|
|
}
|
|
|
|
@Override
|
|
public IChatComponent func_151519_b(EntityLivingBase aTarget) {
|
|
return mDeathMessage == null ? super.func_151519_b(aTarget) : mDeathMessage;
|
|
}
|
|
}
|
|
|
|
private static class DamageSourceFrost extends DamageSource {
|
|
public DamageSourceFrost() {
|
|
super("frost");
|
|
setDifficultyScaled();
|
|
}
|
|
|
|
@Override
|
|
public IChatComponent func_151519_b(EntityLivingBase aTarget) {
|
|
return new ChatComponentText(EnumChatFormatting.RED+aTarget.getCommandSenderName()+EnumChatFormatting.WHITE + " got frozen");
|
|
}
|
|
}
|
|
|
|
private static class DamageSourceHeat extends DamageSource {
|
|
public DamageSourceHeat() {
|
|
super("steam");
|
|
setDifficultyScaled();
|
|
}
|
|
|
|
@Override
|
|
public IChatComponent func_151519_b(EntityLivingBase aTarget) {
|
|
return new ChatComponentText(EnumChatFormatting.RED+aTarget.getCommandSenderName()+EnumChatFormatting.WHITE + " was boiled alive");
|
|
}
|
|
}
|
|
|
|
public static class DamageSourceExploding extends DamageSource {
|
|
public DamageSourceExploding() {
|
|
super("exploded");
|
|
setDamageAllowedInCreativeMode();
|
|
setDamageBypassesArmor();
|
|
setDamageIsAbsolute();
|
|
}
|
|
|
|
@Override
|
|
public IChatComponent func_151519_b(EntityLivingBase aTarget) {
|
|
return new ChatComponentText(EnumChatFormatting.RED+aTarget.getCommandSenderName()+EnumChatFormatting.WHITE + " exploded");
|
|
}
|
|
}
|
|
} |