aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/notenoughupdates/util/ItemUtil.kt
blob: d5b88812eb0b7c2a5e75c53c7d85a80722fa36b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package moe.nea.notenoughupdates.util

import net.minecraft.nbt.CompoundTag
import net.minecraft.nbt.ListTag
import net.minecraft.nbt.StringTag
import net.minecraft.network.chat.Component
import net.minecraft.world.item.ItemStack

fun ItemStack.appendLore(args: List<Component>) {
    val compoundTag = getOrCreateTagElement("display")
    val loreList = compoundTag.getOrCreateList("Lore", StringTag.TAG_STRING)
    for (arg in args) {
        loreList.add(StringTag.valueOf(Component.Serializer.toJson(arg)))
    }
}

fun CompoundTag.getOrCreateList(label: String, tag: Byte): ListTag = getList(label, tag.toInt()).also {
    put(label, it)
}

fun CompoundTag.getOrCreateCompoundTag(label: String): CompoundTag = getCompound(label).also {
    put(label, it)
}