Compatibility
Minecraft: Java Edition
b1.7.3
Platforms
Supported environments
Creators
Details
Licensed CC0-1.0
Published last year
Updated 4 months ago
This mod uses a modified version of Fabric (Babric) and is designed only for Better than Adventure!, a heavily modified version of Minecraft b1.7.3! For more information, join the discord server provided on this projects page.
Inspired by Optifine's CIT feature, this mod allows you to give labeled items custom textures via texturepacks! Simply add your textures, and a json file pointing at them in the required directory.
Please check below for a example "/textures/textures.json" file.
NOTE: Paintbrushes are a special item, in that they check for "texturePath_DYECOLOR)"
Other special items include; fishing rods (_cast), maps (_blank), dyables (_DYECOLOR), and the quiver (_empty)
{
"item": {
"id": "minecraft:item/paintbrush"
},
"textures": {
"Paint Can": "paintbrush/paintcan"
},
"conditional_textures": [
{
"meta": {
"EQUAL": 64
},
"textures": {
"Painted Brush": "paintbrush/brush/brush"
}
},
{
"meta": {
"GREATER_OR_EQUAL": 48,
"LESSER_OR_EQUAL": 63
},
"textures": {
"Painted Brush": "paintbrush/brush/brush_1"
}
},
{
"meta": {
"GREATER_OR_EQUAL": 32,
"LESSER_OR_EQUAL": 48
},
"textures": {
"Painted Brush": "paintbrush/brush/brush_2"
}
},
{
"meta": {
"LESSER": 32
},
"textures": {
"Painted Brush": "paintbrush/brush/brush_3"
}
}
]
}