mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-05 00:29:08 +01:00
36 lines
1.2 KiB
Java
36 lines
1.2 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.util.ModUtil;
|
|
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."+ModUtil.MOD_ID+"."+this.damageType+"."+(entity.world.rand.nextInt(this.messageCount)+1);
|
|
return new TextComponentTranslation(locTag, entity.getName());
|
|
}
|
|
}
|