Replacing SkyBlock Textures
To replace a SkyBlock item texture, you need to create a JSON file in the assets/skyblock/items/ folder with the id of the SkyBlock item you want to replace.
TIP
Some items like runes and attributes get special ids, to find the correct id use /catharsis dev hand_id
Replacing the Hyperion with a Diamond Sword
json
{
"model": {
"type": "minecraft:model",
"model": "minecraft:item/diamond_sword"
}
}Replacing the Hyperion with a Custom Model
json
{
"model": {
"type": "minecraft:model",
"model": "<namespace>:item/hyperion"
}
}json
{
"parent": "minecraft:item/handheld",
"textures": {
"layer0": "<namespace>:item/hyperion"
}
}