add tooltips

Signed-off-by: Pyritie <pyritie@gmail.com>
This commit is contained in:
Pyritie 2024-12-22 21:05:56 +00:00 committed by GitHub
parent 1b79284ea2
commit 73e06eb285
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,29 @@
ItemEvents.tooltip(event => {
event.addAdvanced(['tfc:red_kaolin_clay','tfc:pink_kaolin_clay','tfc:white_kaolin_clay','gtceu:brass_block'], (item, advanced, text) => {
text.add(1, [text.of('Used in glassblowing as a replacement for Brass Plated Blocks')])
})
event.addAdvanced(['gtceu:lv_macerator','gtceu:mv_macerator', 'gtceu:hp_steam_macerator'], (item, advanced, text) => {
text.add(1, [text.of('Only outputs the first slot shown in EMI/JEI until HV.')])
})
event.addAdvanced(['minecraft:name_tag'], (item, advanced, text) => {
text.add(1, [text.of('Used on a Scribing Table along with an item to name it, or with black dye to name the tag.')])
})
event.addAdvanced(['gtceu:greenhouse'], (item, advanced, text) => {
text.add(1, [text.of('Currently, due to some errors in GTCEu regarding forgeCapacities, outputs rotten food.')])
})
event.addAdvanced(['toolbelt:belt'], (item, advanced, text) => {
text.add(1, [text.of('Press the §o§6Swap Tool§r keybind to open the radial menu.')]),
text.add(2, [text.of(`You can also right click with it in hand to add or remove tools.`)])
text.add(3, [text.of(`§cDo not dye this or you won't be able to upgrade.`)])
})
event.addAdvanced(['toolbelt:pouch'], (item, advanced, text) => {
text.add(1, [text.of('Used to upgrade your toolbelt to add more slots')]),
text.add(2, [text.of(`Can't be used with §cd§ey§ae§9d §rbelts or belts that have tools inside.`)])
})
event.addAdvanced(['firmalife:bucket/yeast_starter'], (item, advanced, text) => {
text.add(1, [text.of('Created with dried fruit')])
})
event.addAdvanced(['firmalife:beehive'], (item, advanced, text) => {
text.add(1, [text.of('Needs to be filled with empty frames and surrounded by flowers to attract bees.')])
})
})