changelog, fix invar crucible alloying, add tooltip to ice slush

This commit is contained in:
Pyritie 2026-01-12 01:04:03 +00:00
parent 5df4fcfcc6
commit 9fb45e2e0c
3 changed files with 16 additions and 6 deletions

View file

@ -428,10 +428,13 @@ const registerTooltips = (event) => {
})
event.addAdvanced(['gtceu:ethanol_bucket'], (item, advanced, text) => {
text.add(1, Text.translate("effect.minecraft.nausea").append(Text.of(" (01:00)")).red());
text.add(1, Text.translate("effect.minecraft.poison").append(Text.of(" II (00:30)")).red());
text.add(2, Text.translate("effect.minecraft.poison").append(Text.of(" II (00:30)")).red());
})
event.addAdvanced(['gtceu:methanol_bucket'], (item, advanced, text) => {
text.add(1, Text.translate("effect.minecraft.blindness").append(Text.of(" (05:00)")).red());
text.add(1, Text.translate("effect.minecraft.wither").append(Text.of(" II (01:00)")).red());
text.add(2, Text.translate("effect.minecraft.wither").append(Text.of(" II (01:00)")).red());
})
event.addAdvanced(['gtceu:ice_bucket'], (item, advanced, text) => {
text.add(1, Text.translate('tfg.tooltip.cooling_foods'));
})
}