Creation of 1.16.3 branch

Initial publishing of the 1.16.3 branch of the mod. A lot of systems are missing (such as Rituals and Living Armour), but enough is present for a decent Alpha release.
This commit is contained in:
WayofTime 2020-10-24 08:59:04 -04:00
parent 0e02b983f1
commit d617911d7a
1662 changed files with 18791 additions and 85075 deletions

View file

@ -1,24 +1,26 @@
package WayofTime.bloodmagic.util;
package wayoftime.bloodmagic.util;
import WayofTime.bloodmagic.util.helper.TextHelper;
import net.minecraft.entity.LivingEntity;
import net.minecraft.util.DamageSource;
import net.minecraft.util.text.ITextComponent;
import net.minecraft.util.text.StringTextComponent;
import wayoftime.bloodmagic.util.helper.TextHelper;
public class DamageSourceBloodMagic extends DamageSource {
public class DamageSourceBloodMagic extends DamageSource
{
public static final DamageSourceBloodMagic INSTANCE = new DamageSourceBloodMagic();
public static final DamageSourceBloodMagic INSTANCE = new DamageSourceBloodMagic();
public DamageSourceBloodMagic()
{
super("bloodMagic");
public DamageSourceBloodMagic() {
super("bloodMagic");
setDamageBypassesArmor();
setDamageIsAbsolute();
}
setDamageBypassesArmor();
setDamageIsAbsolute();
}
@Override
public ITextComponent getDeathMessage(LivingEntity livingBase) {
return new StringTextComponent(TextHelper.localizeEffect("chat.bloodmagic.damageSource", livingBase.getName()));
}
}
@Override
public ITextComponent getDeathMessage(LivingEntity livingBase)
{
return new StringTextComponent(TextHelper.localizeEffect("chat.bloodmagic.damageSource", livingBase.getName()));
}
}