LTDV10Test/packet/kubejs/client_scripts/crop_tooltip.js
3944Realms 67a395b765
Some checks failed
Deploy to Remote Server / deploy (push) Failing after 1m11s
初始化
2026-04-14 18:20:56 +08:00

15 lines
679 B
JavaScript

ItemEvents.tooltip(e => {
e.addAdvancedToAll((item, advanced, text) => {
/**@type {Internal.Stream<Internal.TagKey<Internal.Item>>} */
let tags = item.getTags()
if (tags == null)
return
if (item.hasNBT() && item.nbt.contains("quality_food")) {
if (tags.anyMatch(tag => tag.location().toString().startsWith("eclipticseasons")))
text.add(Text.translate("tooltip.createdelight.quality_crop_grow"))
if (item.edible)
text.add(Text.translate("tooltip.createdelight.quality_food_eaten"))
text.add(Text.translate("tooltip.createdelight.quality_sell"))
}
})
})