ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/misc/DamageSources.java
2019-05-02 03:10:29 -04:00

36 lines
1.3 KiB
Java

/*
* This file ("DamageSources.java") is part of the Actually Additions mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
* http://ellpeck.de/actaddlicense
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
* © 2015-2017 Ellpeck
*/
package de.ellpeck.actuallyadditions.mod.misc;
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.util.DamageSource;
import net.minecraft.util.text.ITextComponent;
import net.minecraft.util.text.TextComponentTranslation;
public class DamageSources extends DamageSource {
public static final DamageSource DAMAGE_ATOMIC_RECONSTRUCTOR = new DamageSources("atomicReconstructor", 5).setDamageBypassesArmor();
private final int messageCount;
public DamageSources(String name, int messageCount) {
super(name);
this.messageCount = messageCount;
}
@Override
public ITextComponent getDeathMessage(EntityLivingBase entity) {
String locTag = "death." + ActuallyAdditions.MODID + "." + this.damageType + "." + (entity.world.rand.nextInt(this.messageCount) + 1);
return new TextComponentTranslation(locTag, entity.getName());
}
}