From 0ab0358799b24c0725c6471520c038e3bd49ae94 Mon Sep 17 00:00:00 2001 From: YoyoNow Date: Thu, 29 May 2025 08:19:46 +0200 Subject: [PATCH] Add main schem gui --- 9/assets/minecraft/models/item/bucket.json | 14 ++ .../item/bucket/schematic_show_private.json | 6 + 9/assets/minecraft/models/item/cauldron.json | 45 ++-- .../schematic_sort_type_ascending.json | 20 ++ .../schematic_sort_type_descending.json | 20 ++ 9/assets/minecraft/models/item/chest.json | 238 +++++++++--------- .../models/item/chest/schematic_folder.json | 6 + 9/assets/minecraft/models/item/clock.json | 20 ++ .../clock/schematic_sort_time_ascending.json | 6 + .../clock/schematic_sort_time_descending.json | 6 + 9/assets/minecraft/models/item/glass.json | 14 ++ .../item/glass/schematic_show_public.json | 20 ++ 9/assets/minecraft/models/item/name_tag.json | 45 ++-- .../item/name_tag/schematic_filter.json | 20 ++ 9/assets/minecraft/models/item/paper.json | 38 +-- .../paper/schematic_sort_name_ascending.json | 6 + .../paper/schematic_sort_name_descending.json | 6 + .../item/bucket/schematic_show_private.png | Bin 0 -> 247 bytes .../schematic_sort_type_ascending.png | Bin 0 -> 207 bytes .../schematic_sort_type_descending.png | Bin 0 -> 212 bytes .../textures/item/chest/schematic_folder.png | Bin 0 -> 204 bytes .../clock/schematic_sort_time_ascending.png | Bin 0 -> 246 bytes .../clock/schematic_sort_time_descending.png | Bin 0 -> 253 bytes .../item/glass/schematic_show_public.png | Bin 0 -> 246 bytes .../item/name_tag/schematic_filter.png | Bin 0 -> 232 bytes .../paper/schematic_sort_name_ascending.png | Bin 0 -> 209 bytes .../paper/schematic_sort_name_descending.png | Bin 0 -> 208 bytes 27 files changed, 360 insertions(+), 170 deletions(-) create mode 100644 9/assets/minecraft/models/item/bucket.json create mode 100644 9/assets/minecraft/models/item/bucket/schematic_show_private.json create mode 100644 9/assets/minecraft/models/item/cauldron/schematic_sort_type_ascending.json create mode 100644 9/assets/minecraft/models/item/cauldron/schematic_sort_type_descending.json create mode 100644 9/assets/minecraft/models/item/chest/schematic_folder.json create mode 100644 9/assets/minecraft/models/item/clock.json create mode 100644 9/assets/minecraft/models/item/clock/schematic_sort_time_ascending.json create mode 100644 9/assets/minecraft/models/item/clock/schematic_sort_time_descending.json create mode 100644 9/assets/minecraft/models/item/glass.json create mode 100644 9/assets/minecraft/models/item/glass/schematic_show_public.json create mode 100644 9/assets/minecraft/models/item/name_tag/schematic_filter.json create mode 100644 9/assets/minecraft/models/item/paper/schematic_sort_name_ascending.json create mode 100644 9/assets/minecraft/models/item/paper/schematic_sort_name_descending.json create mode 100644 9/assets/minecraft/textures/item/bucket/schematic_show_private.png create mode 100644 9/assets/minecraft/textures/item/cauldron/schematic_sort_type_ascending.png create mode 100644 9/assets/minecraft/textures/item/cauldron/schematic_sort_type_descending.png create mode 100644 9/assets/minecraft/textures/item/chest/schematic_folder.png create mode 100644 9/assets/minecraft/textures/item/clock/schematic_sort_time_ascending.png create mode 100644 9/assets/minecraft/textures/item/clock/schematic_sort_time_descending.png create mode 100644 9/assets/minecraft/textures/item/glass/schematic_show_public.png create mode 100644 9/assets/minecraft/textures/item/name_tag/schematic_filter.png create mode 100644 9/assets/minecraft/textures/item/paper/schematic_sort_name_ascending.png create mode 100644 9/assets/minecraft/textures/item/paper/schematic_sort_name_descending.png diff --git a/9/assets/minecraft/models/item/bucket.json b/9/assets/minecraft/models/item/bucket.json new file mode 100644 index 0000000..11559c5 --- /dev/null +++ b/9/assets/minecraft/models/item/bucket.json @@ -0,0 +1,14 @@ +{ + "parent": "item/handheld", + "textures": { + "layer0": "minecraft:item/bucket" + }, + "overrides": [ + { + "predicate": { + "custom_model_data": 1 + }, + "model": "item/bucket/schematic_show_private" + } + ] +} \ No newline at end of file diff --git a/9/assets/minecraft/models/item/bucket/schematic_show_private.json b/9/assets/minecraft/models/item/bucket/schematic_show_private.json new file mode 100644 index 0000000..1bcbe7c --- /dev/null +++ b/9/assets/minecraft/models/item/bucket/schematic_show_private.json @@ -0,0 +1,6 @@ +{ + "parent": "item/handheld", + "textures": { + "layer0": "item/bucket/schematic_show_private" + } +} \ No newline at end of file diff --git a/9/assets/minecraft/models/item/cauldron.json b/9/assets/minecraft/models/item/cauldron.json index 7590fe7..ca6a10f 100644 --- a/9/assets/minecraft/models/item/cauldron.json +++ b/9/assets/minecraft/models/item/cauldron.json @@ -2,22 +2,31 @@ "parent": "minecraft:item/generated", "textures": { "layer0": "minecraft:item/cauldron" - }, - "overrides": - [ - { - "predicate": - { - "custom_model_data":1 - }, - "model": "item/cauldron/1" - }, - { - "predicate": - { - "custom_model_data":2 - }, - "model": "item/cauldron/2" - } - ] + }, + "overrides": [ + { + "predicate": { + "custom_model_data": 1 + }, + "model": "item/cauldron/1" + }, + { + "predicate": { + "custom_model_data": 2 + }, + "model": "item/cauldron/2" + }, + { + "predicate": { + "custom_model_data": 3 + }, + "model": "item/cauldron/schematic_sort_type_ascending" + }, + { + "predicate": { + "custom_model_data": 4 + }, + "model": "item/cauldron/schematic_sort_type_descending" + } + ] } \ No newline at end of file diff --git a/9/assets/minecraft/models/item/cauldron/schematic_sort_type_ascending.json b/9/assets/minecraft/models/item/cauldron/schematic_sort_type_ascending.json new file mode 100644 index 0000000..a04d822 --- /dev/null +++ b/9/assets/minecraft/models/item/cauldron/schematic_sort_type_ascending.json @@ -0,0 +1,20 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/cauldron/schematic_sort_type_ascending" + }, + "display": { + "thirdperson_righthand": { + "scale": [0, 0, 0] + }, + "firstperson_righthand": { + "scale": [0, 0, 0] + }, + "thirdperson_lefthand": { + "scale": [0, 0, 0] + }, + "firstperson_lefthand": { + "scale": [0, 0, 0] + } + } +} \ No newline at end of file diff --git a/9/assets/minecraft/models/item/cauldron/schematic_sort_type_descending.json b/9/assets/minecraft/models/item/cauldron/schematic_sort_type_descending.json new file mode 100644 index 0000000..cacd5a2 --- /dev/null +++ b/9/assets/minecraft/models/item/cauldron/schematic_sort_type_descending.json @@ -0,0 +1,20 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/cauldron/schematic_sort_type_descending" + }, + "display": { + "thirdperson_righthand": { + "scale": [0, 0, 0] + }, + "firstperson_righthand": { + "scale": [0, 0, 0] + }, + "thirdperson_lefthand": { + "scale": [0, 0, 0] + }, + "firstperson_lefthand": { + "scale": [0, 0, 0] + } + } +} \ No newline at end of file diff --git a/9/assets/minecraft/models/item/chest.json b/9/assets/minecraft/models/item/chest.json index 8ffe0ef..882d873 100644 --- a/9/assets/minecraft/models/item/chest.json +++ b/9/assets/minecraft/models/item/chest.json @@ -1,120 +1,124 @@ { - "parent": "builtin/entity", - "textures": { - "layer0": "minecraft:item/chest" - }, - "overrides": - [ - { - "predicate": - { - "custom_model_data":1 - }, - "model": "item/chest/button_simulator_make_group" + "parent": "builtin/entity", + "textures": { + "layer0": "minecraft:item/chest" + }, + "overrides": [ + { + "predicate": { + "custom_model_data": 1 + }, + "model": "item/chest/button_simulator_make_group" + }, + { + "predicate": { + "custom_model_data": 2 + }, + "model": "item/chest/schematic_folder" + } + ], + "display": { + "gui": { + "rotation": [ + 30, + 45, + 0 + ], + "translation": [ + 0, + 0, + 0 + ], + "scale": [ + 0.625, + 0.625, + 0.625 + ] + }, + "ground": { + "rotation": [ + 0, + 0, + 0 + ], + "translation": [ + 0, + 3, + 0 + ], + "scale": [ + 0.25, + 0.25, + 0.25 + ] + }, + "head": { + "rotation": [ + 0, + 180, + 0 + ], + "translation": [ + 0, + 0, + 0 + ], + "scale": [ + 1, + 1, + 1 + ] + }, + "fixed": { + "rotation": [ + 0, + 180, + 0 + ], + "translation": [ + 0, + 0, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "thirdperson_righthand": { + "rotation": [ + 75, + 315, + 0 + ], + "translation": [ + 0, + 2.5, + 0 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + }, + "firstperson_righthand": { + "rotation": [ + 0, + 315, + 0 + ], + "translation": [ + 0, + 0, + 0 + ], + "scale": [ + 0.4, + 0.4, + 0.4 + ] + } } - ], - "display": { - "gui": { - "rotation": [ - 30, - 45, - 0 - ], - "translation": [ - 0, - 0, - 0 - ], - "scale": [ - 0.625, - 0.625, - 0.625 - ] - }, - "ground": { - "rotation": [ - 0, - 0, - 0 - ], - "translation": [ - 0, - 3, - 0 - ], - "scale": [ - 0.25, - 0.25, - 0.25 - ] - }, - "head": { - "rotation": [ - 0, - 180, - 0 - ], - "translation": [ - 0, - 0, - 0 - ], - "scale": [ - 1, - 1, - 1 - ] - }, - "fixed": { - "rotation": [ - 0, - 180, - 0 - ], - "translation": [ - 0, - 0, - 0 - ], - "scale": [ - 0.5, - 0.5, - 0.5 - ] - }, - "thirdperson_righthand": { - "rotation": [ - 75, - 315, - 0 - ], - "translation": [ - 0, - 2.5, - 0 - ], - "scale": [ - 0.375, - 0.375, - 0.375 - ] - }, - "firstperson_righthand": { - "rotation": [ - 0, - 315, - 0 - ], - "translation": [ - 0, - 0, - 0 - ], - "scale": [ - 0.4, - 0.4, - 0.4 - ] - } - } } \ No newline at end of file diff --git a/9/assets/minecraft/models/item/chest/schematic_folder.json b/9/assets/minecraft/models/item/chest/schematic_folder.json new file mode 100644 index 0000000..efe5cc2 --- /dev/null +++ b/9/assets/minecraft/models/item/chest/schematic_folder.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/chest/schematic_folder" + } +} \ No newline at end of file diff --git a/9/assets/minecraft/models/item/clock.json b/9/assets/minecraft/models/item/clock.json new file mode 100644 index 0000000..a9ddd37 --- /dev/null +++ b/9/assets/minecraft/models/item/clock.json @@ -0,0 +1,20 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "minecraft:item/clock" + }, + "overrides": [ + { + "predicate": { + "custom_model_data": 3 + }, + "model": "item/clock/schematic_sort_time_ascending" + }, + { + "predicate": { + "custom_model_data": 4 + }, + "model": "item/clock/schematic_sort_time_descending" + } + ] +} \ No newline at end of file diff --git a/9/assets/minecraft/models/item/clock/schematic_sort_time_ascending.json b/9/assets/minecraft/models/item/clock/schematic_sort_time_ascending.json new file mode 100644 index 0000000..b2b01aa --- /dev/null +++ b/9/assets/minecraft/models/item/clock/schematic_sort_time_ascending.json @@ -0,0 +1,6 @@ +{ + "parent": "item/handheld", + "textures": { + "layer0": "item/clock/schematic_sort_time_ascending" + } +} \ No newline at end of file diff --git a/9/assets/minecraft/models/item/clock/schematic_sort_time_descending.json b/9/assets/minecraft/models/item/clock/schematic_sort_time_descending.json new file mode 100644 index 0000000..c68f168 --- /dev/null +++ b/9/assets/minecraft/models/item/clock/schematic_sort_time_descending.json @@ -0,0 +1,6 @@ +{ + "parent": "item/handheld", + "textures": { + "layer0": "item/clock/schematic_sort_time_descending" + } +} \ No newline at end of file diff --git a/9/assets/minecraft/models/item/glass.json b/9/assets/minecraft/models/item/glass.json new file mode 100644 index 0000000..b6edd80 --- /dev/null +++ b/9/assets/minecraft/models/item/glass.json @@ -0,0 +1,14 @@ +{ + "parent": "minecraft:block/glass", + "textures": { + "layer0": "minecraft:block/glass" + }, + "overrides": [ + { + "predicate": { + "custom_model_data": 1 + }, + "model": "item/glass/schematic_show_public" + } + ] +} \ No newline at end of file diff --git a/9/assets/minecraft/models/item/glass/schematic_show_public.json b/9/assets/minecraft/models/item/glass/schematic_show_public.json new file mode 100644 index 0000000..8c5e765 --- /dev/null +++ b/9/assets/minecraft/models/item/glass/schematic_show_public.json @@ -0,0 +1,20 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "item/glass/schematic_show_public" + }, + "display": { + "thirdperson_righthand": { + "scale": [0, 0, 0] + }, + "firstperson_righthand": { + "scale": [0, 0, 0] + }, + "thirdperson_lefthand": { + "scale": [0, 0, 0] + }, + "firstperson_lefthand": { + "scale": [0, 0, 0] + } + } +} \ No newline at end of file diff --git a/9/assets/minecraft/models/item/name_tag.json b/9/assets/minecraft/models/item/name_tag.json index f898e35..9783ccf 100644 --- a/9/assets/minecraft/models/item/name_tag.json +++ b/9/assets/minecraft/models/item/name_tag.json @@ -1,23 +1,26 @@ { - "parent": "item/handheld", - "textures": { - "layer0": "item/name_tag" - }, - "overrides": - [ - { - "predicate": - { - "custom_model_data":1 - }, - "model": "item/name_tag/1" - }, - { - "predicate": - { - "custom_model_data":2 - }, - "model": "item/name_tag/2" - } - ] + "parent": "item/handheld", + "textures": { + "layer0": "item/name_tag" + }, + "overrides": [ + { + "predicate": { + "custom_model_data": 1 + }, + "model": "item/name_tag/1" + }, + { + "predicate": { + "custom_model_data": 2 + }, + "model": "item/name_tag/2" + }, + { + "predicate": { + "custom_model_data": 3 + }, + "model": "item/name_tag/schematic_filter" + } + ] } \ No newline at end of file diff --git a/9/assets/minecraft/models/item/name_tag/schematic_filter.json b/9/assets/minecraft/models/item/name_tag/schematic_filter.json new file mode 100644 index 0000000..458e76a --- /dev/null +++ b/9/assets/minecraft/models/item/name_tag/schematic_filter.json @@ -0,0 +1,20 @@ +{ + "parent": "item/handheld", + "textures": { + "layer0": "item/name_tag/schematic_filter" + }, + "display": { + "thirdperson_righthand": { + "scale": [0, 0, 0] + }, + "firstperson_righthand": { + "scale": [0, 0, 0] + }, + "thirdperson_lefthand": { + "scale": [0, 0, 0] + }, + "firstperson_lefthand": { + "scale": [0, 0, 0] + } + } +} \ No newline at end of file diff --git a/9/assets/minecraft/models/item/paper.json b/9/assets/minecraft/models/item/paper.json index 519c665..311f70e 100644 --- a/9/assets/minecraft/models/item/paper.json +++ b/9/assets/minecraft/models/item/paper.json @@ -1,16 +1,26 @@ { - "parent": "item/handheld", - "textures": { - "layer0": "item/paper" - }, - "overrides": - [ - { - "predicate": - { - "custom_model_data":1 - }, - "model": "item/paper/1" - } - ] + "parent": "item/handheld", + "textures": { + "layer0": "item/paper" + }, + "overrides": [ + { + "predicate": { + "custom_model_data": 1 + }, + "model": "item/paper/1" + }, + { + "predicate": { + "custom_model_data": 3 + }, + "model": "item/paper/schematic_sort_name_ascending" + }, + { + "predicate": { + "custom_model_data": 4 + }, + "model": "item/paper/schematic_sort_name_descending" + } + ] } \ No newline at end of file diff --git a/9/assets/minecraft/models/item/paper/schematic_sort_name_ascending.json b/9/assets/minecraft/models/item/paper/schematic_sort_name_ascending.json new file mode 100644 index 0000000..9770b1d --- /dev/null +++ b/9/assets/minecraft/models/item/paper/schematic_sort_name_ascending.json @@ -0,0 +1,6 @@ +{ + "parent": "item/handheld", + "textures": { + "layer0": "item/paper/schematic_sort_name_ascending" + } +} \ No newline at end of file diff --git a/9/assets/minecraft/models/item/paper/schematic_sort_name_descending.json b/9/assets/minecraft/models/item/paper/schematic_sort_name_descending.json new file mode 100644 index 0000000..6aa7bd7 --- /dev/null +++ b/9/assets/minecraft/models/item/paper/schematic_sort_name_descending.json @@ -0,0 +1,6 @@ +{ + "parent": "item/handheld", + "textures": { + "layer0": "item/paper/schematic_sort_name_descending" + } +} \ No newline at end of file diff --git a/9/assets/minecraft/textures/item/bucket/schematic_show_private.png b/9/assets/minecraft/textures/item/bucket/schematic_show_private.png new file mode 100644 index 0000000000000000000000000000000000000000..50f9ce91753289671e70fbddf13689fbf78dc504 GIT binary patch literal 247 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|HhQ`^hFJ6_ z*L-<#v7XK7;HjzFk`W0!MF&;}FPE5cVyi4$#0Ji|y#+F>lX98853wCES)HA+sN?>g z!nqHxd}QWHo5rW{C}J#dirD>U1+O*2s-g zPnIDB2pH1$(yl2Hr zpGFt0lTw?6j;;;O%wx)z@&5B)`1F+d!UD$5F0)wmZfP2Z&da+{1auUGr>mdKI;Vst E0OZ_D;{X5v literal 0 HcmV?d00001 diff --git a/9/assets/minecraft/textures/item/cauldron/schematic_sort_type_descending.png b/9/assets/minecraft/textures/item/cauldron/schematic_sort_type_descending.png new file mode 100644 index 0000000000000000000000000000000000000000..e0e62200eb4c50585cdcd92e07301523ac990be3 GIT binary patch literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|`aE46Lo9li zPB!E^V8G#;dop)diB`(%(!H)`2Q|I*Cs|lmN}B)x literal 0 HcmV?d00001 diff --git a/9/assets/minecraft/textures/item/chest/schematic_folder.png b/9/assets/minecraft/textures/item/chest/schematic_folder.png new file mode 100644 index 0000000000000000000000000000000000000000..c284695216f2fe2a78f1bae42a2ac4807fc204de GIT binary patch literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|+B{txLo9le zYred=SkGp3@YGao$%q7=q5~^~mrKkzu~n8WVuEG3zRdAe9=8unvS5|~f)>{!0YCEZ z?@_wPx`ScU>3wzoPbQ?jY`D!JD44kCPw{j81s^o|TwWbx(p#`}F?0IjYR1D1DMybm zysAz-`AGGNbc6oUhfGtd6Q7=%%Cp>WuF`D=hM?`rk*{QBegR#?;OXk;vd$@?2>{^9 BPE`N^ literal 0 HcmV?d00001 diff --git a/9/assets/minecraft/textures/item/clock/schematic_sort_time_ascending.png b/9/assets/minecraft/textures/item/clock/schematic_sort_time_ascending.png new file mode 100644 index 0000000000000000000000000000000000000000..e5814226ee687cad78200b727011defcad49d686 GIT binary patch literal 246 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|Hh8)?hFJ6_ z*L-<#v7XK7;HjzFk`W0!MF&;}FPE5cVyi5hhuMQyt&cTo#GJVH)%`!2koK}6lIdT-y+a?Ed@j#6&zF<{f*u~;2SvBornT@Yh(0iJaB-R8=uh4$z<7&_cOFzF%CCW%=I8yzk%%urmy@N2nC p$@_peOw*=nha1hYD(%W)X87!H;_IL%{2b_Z22WQ%mvv4FO#my$UZ(&6 literal 0 HcmV?d00001 diff --git a/9/assets/minecraft/textures/item/clock/schematic_sort_time_descending.png b/9/assets/minecraft/textures/item/clock/schematic_sort_time_descending.png new file mode 100644 index 0000000000000000000000000000000000000000..32b93daf25a5c42e254413bd693299bdf2cc05f4 GIT binary patch literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|wtKobhFJ6_ z*L-<#v7XK7;HjzFk`W0!MF&;}FPE5cVyi5hhuMQyt&cTo#GJVH)%`!2koMAH4tK(= ztEMIoXEZi8KD_dg`G_RLtaq8yt<;fiI;(4x~7S5Cg-jVKrb+Oy85}Sb4q9e0OoOGbN~PV literal 0 HcmV?d00001 diff --git a/9/assets/minecraft/textures/item/glass/schematic_show_public.png b/9/assets/minecraft/textures/item/glass/schematic_show_public.png new file mode 100644 index 0000000000000000000000000000000000000000..a854b7776cd06914d49bdc7c354a0e5f3d8eedbf GIT binary patch literal 246 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|Hh8)?hFJ6_ z*L-<#v7XK7;HjzFk`W0!MF&;}FPE5cVyi4$#0Ji|y#+F>lX988AMqprLBRD3E)VbT zDV+Q8%136Nv}t@Ak1F;Sd_Gp%Hrsq%vZ=swMuX>vO%`pw$QY*2(cO{QvA6Q`veUv!+;3to14C}L>9-<=I4Pjp89ZJ6T-G@yGywn{)m&fz literal 0 HcmV?d00001 diff --git a/9/assets/minecraft/textures/item/name_tag/schematic_filter.png b/9/assets/minecraft/textures/item/name_tag/schematic_filter.png new file mode 100644 index 0000000000000000000000000000000000000000..a7ea1f860c9dac604512fba074412899895c820d GIT binary patch literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|7J0fjhFJ6_ z*L-<#v7XK7;HjzFk`W0!MF&;}FPE5cVyi4$#01N5eHrx?4_|+u&yzNd?*?xI5CmMm zaAakqw|jfy$w#U?Vi)8lbY2&IelFf&qwL{^)#81^PnlAjJNR65Wo6eq(qPMwjxf5j zr%-lzTFLE=yBO{Y)Xdr_)sVxXc-Deffi+5mjR`4n;5oFW&ehB0azqwYf b+ZY*`xU9Oa`yMj|x|YGy)z4*}Q$iB}WQSEH literal 0 HcmV?d00001 diff --git a/9/assets/minecraft/textures/item/paper/schematic_sort_name_ascending.png b/9/assets/minecraft/textures/item/paper/schematic_sort_name_ascending.png new file mode 100644 index 0000000000000000000000000000000000000000..01325c78a0495ea385c2f83f9be33d9284d36dc2 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|x;;1vd z#l5fY|H*<^KN#oeT{7Enq=2=J`;3mPLClx0zy0UvIT$i5lXO$w&Ed9Ky6q9G)4GFf z0Xz=h>^HJ)5(skOxL~ikX!oQf@eONYc20VDWo2-RGy}ttbLNUn4>K+UoyFkk>gTe~ HDWM4fvTaQA literal 0 HcmV?d00001 diff --git a/9/assets/minecraft/textures/item/paper/schematic_sort_name_descending.png b/9/assets/minecraft/textures/item/paper/schematic_sort_name_descending.png new file mode 100644 index 0000000000000000000000000000000000000000..1ffeaf290874d69662bee9f8c8f5767b9e0982fa GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|x;$MRLo9le zYred=SkGp3@YGao$%q7=q5~^~mrKkzu~nAM!|cJU*2fw(Vlk6$u}yojvmv54BKE`A z-~MgE$N48bQQ{Gw5owjM3av#wFH>oP;kwgWte z)y_Aq>j-fOaypd8cv4gFu0Ypkrqdw%{N`G@ZewKFd&gvJf95w)psN@>UHx3vIVCg! E09q|h`v3p{ literal 0 HcmV?d00001