use of net.minecraft.text.TranslatableText in project MCDoom by AzureDoom.
the class SantaDoomArmor method appendTooltip.
@Override
public void appendTooltip(ItemStack stack, World world, List<Text> tooltip, TooltipContext context) {
tooltip.add(new TranslatableText("doom.santadoomarmor.text").formatted(Formatting.YELLOW).formatted(Formatting.ITALIC));
super.appendTooltip(stack, world, tooltip, context);
}
use of net.minecraft.text.TranslatableText in project MCDoom by AzureDoom.
the class SentinelDoomArmor method appendTooltip.
@Override
public void appendTooltip(ItemStack stack, World world, List<Text> tooltip, TooltipContext context) {
tooltip.add(new TranslatableText("doom.sentinelarmor.text").formatted(Formatting.YELLOW).formatted(Formatting.ITALIC));
super.appendTooltip(stack, world, tooltip, context);
}
use of net.minecraft.text.TranslatableText in project MCDoom by AzureDoom.
the class ClassicBronzeDoomArmor method appendTooltip.
@Override
public void appendTooltip(ItemStack stack, World world, List<Text> tooltip, TooltipContext context) {
tooltip.add(new TranslatableText("doom.classicarmor.text").formatted(Formatting.YELLOW).formatted(Formatting.ITALIC));
super.appendTooltip(stack, world, tooltip, context);
}
use of net.minecraft.text.TranslatableText in project MCDoom by AzureDoom.
the class CrimsonDoomArmor method appendTooltip.
@Override
public void appendTooltip(ItemStack stack, World world, List<Text> tooltip, TooltipContext context) {
tooltip.add(new TranslatableText("doom.crimsonarmor.text").formatted(Formatting.YELLOW).formatted(Formatting.ITALIC));
super.appendTooltip(stack, world, tooltip, context);
}
use of net.minecraft.text.TranslatableText in project MCDoom by AzureDoom.
the class CultistDoomArmor method appendTooltip.
@Override
public void appendTooltip(ItemStack stack, World world, List<Text> tooltip, TooltipContext context) {
tooltip.add(new TranslatableText("doom.cultistarmor.text").formatted(Formatting.YELLOW).formatted(Formatting.ITALIC));
super.appendTooltip(stack, world, tooltip, context);
}
Aggregations