ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/misc/DamageSources.java

37 lines
1.3 KiB
Java
Raw Normal View History

/*
2016-05-16 22:52:27 +02:00
* 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
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.misc;
2018-05-10 11:38:58 +02:00
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.util.DamageSource;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.text.ITextComponent;
2016-05-27 18:54:17 +02:00
import net.minecraft.util.text.TextComponentTranslation;
public class DamageSources extends DamageSource{
2015-11-19 15:26:54 +01:00
public static final DamageSource DAMAGE_ATOMIC_RECONSTRUCTOR = new DamageSources("atomicReconstructor", 5).setDamageBypassesArmor();
2016-05-19 20:05:12 +02:00
private final int messageCount;
public DamageSources(String name, int messageCount){
super(name);
this.messageCount = messageCount;
}
@Override
2016-03-18 23:47:22 +01:00
public ITextComponent getDeathMessage(EntityLivingBase entity){
2018-05-10 11:38:58 +02:00
String locTag = "death."+ActuallyAdditions.MODID+"."+this.damageType+"."+(entity.world.rand.nextInt(this.messageCount)+1);
return new TextComponentTranslation(locTag, entity.getName());
}
}