]> git.lizzy.rs Git - are_we_minecraft_yet.git/commitdiff
Initial commit
authorLizzy Fleckenstein <eliasfleckenstein@web.de>
Fri, 21 Apr 2023 21:08:56 +0000 (23:08 +0200)
committerLizzy Fleckenstein <eliasfleckenstein@web.de>
Fri, 21 Apr 2023 21:08:56 +0000 (23:08 +0200)
.gitignore [new file with mode: 0644]
README.md [new file with mode: 0644]
compare.sh [new file with mode: 0755]
convert.sh [new file with mode: 0755]
extract.sh [new file with mode: 0755]
minecraft.csv [new file with mode: 0644]
minecraft.txt [new file with mode: 0644]
mod/init.lua [new file with mode: 0644]
mod/mod.conf [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..62d8af5
--- /dev/null
@@ -0,0 +1,2 @@
+/world
+/mineclonia.txt
diff --git a/README.md b/README.md
new file mode 100644 (file)
index 0000000..98764d4
--- /dev/null
+++ b/README.md
@@ -0,0 +1,13 @@
+# Are We Minecraft Yet?
+
+A simple script for [mineclonia](https://codeberg.org/mineclonia/mineclonia/) to compare it's list of items to Minecraft 1.19, going by descriptions. It has some flaws, but it gives an overview.
+
+Items with `not_in_creative_inventory` group are ignored to hide technical/state items, this leads to some wrong cases like barrier blocks (which aren't in creative inventory in minecraft either.)
+
+- `./extract.sh` extracts the current list of items from mineclonia to `mineclonia.txt` (this obviously requires minetest and mineclonia to be installed)
+- `./convert.sh` converts `minecraft.csv` to `minecraft.txt`
+- `./compare.sh` compares `mineclonia.txt` to `minecraft.txt`
+
+[delta](https://github.com/dandavison/delta) is used to compare the files, but you can also use `diff` or `git diff`.
+
+`minecraft.csv` is taken from a [google doc](https://docs.google.com/spreadsheets/d/1-Jf8VpmG-V2ytZ0ppAEDtVSaVYEjQ-CYAZMt-eQMNxQ/edit#gid=984941200) by CommandLeo (File -> Download -> CSV).
diff --git a/compare.sh b/compare.sh
new file mode 100755 (executable)
index 0000000..7077b6a
--- /dev/null
@@ -0,0 +1,3 @@
+#!/bin/bash
+# compares mineclonia item list to minecraft item list, using the delta diff viewer
+delta mineclonia.txt minecraft.txt
diff --git a/convert.sh b/convert.sh
new file mode 100755 (executable)
index 0000000..228f682
--- /dev/null
@@ -0,0 +1,3 @@
+#!/bin/bash
+# converts minecraft.csv to minecraft.txt
+cut -d',' -f2 < minecraft.csv | tail -n +2 | sort > minecraft.txt
diff --git a/extract.sh b/extract.sh
new file mode 100755 (executable)
index 0000000..5c76f96
--- /dev/null
@@ -0,0 +1,8 @@
+#!/bin/bash
+# extracts a list of items from mineclonia
+mkdir -p world/worldmods
+cp -r mod world/worldmods
+echo "gameid = mineclonia" > world/world.mt
+minetest --server --world world
+cp world/items.txt mineclonia.txt
+rm -rf world
diff --git a/minecraft.csv b/minecraft.csv
new file mode 100644 (file)
index 0000000..c37e61d
--- /dev/null
@@ -0,0 +1,1152 @@
+Survival Obtainable,Name,Id,Stackability,Storage,Numerical Id,Stack Size,Survival Obtainable\r
+YES,Stone,stone,64 Stackable,-,1,64,TRUE\r
+YES,Granite,granite,64 Stackable,-,2,64,TRUE\r
+YES,Polished Granite,polished_granite,64 Stackable,-,3,64,TRUE\r
+YES,Diorite,diorite,64 Stackable,-,4,64,TRUE\r
+YES,Polished Diorite,polished_diorite,64 Stackable,-,5,64,TRUE\r
+YES,Andesite,andesite,64 Stackable,-,6,64,TRUE\r
+YES,Polished Andesite,polished_andesite,64 Stackable,-,7,64,TRUE\r
+YES,Deepslate,deepslate,64 Stackable,-,8,64,TRUE\r
+YES,Cobbled Deepslate,cobbled_deepslate,64 Stackable,-,9,64,TRUE\r
+YES,Polished Deepslate,polished_deepslate,64 Stackable,-,10,64,TRUE\r
+YES,Calcite,calcite,64 Stackable,-,11,64,TRUE\r
+YES,Tuff,tuff,64 Stackable,-,12,64,TRUE\r
+YES,Dripstone Block,dripstone_block,64 Stackable,-,13,64,TRUE\r
+YES,Grass Block,grass_block,64 Stackable,-,14,64,TRUE\r
+YES,Dirt,dirt,64 Stackable,-,15,64,TRUE\r
+YES,Coarse Dirt,coarse_dirt,64 Stackable,-,16,64,TRUE\r
+YES,Podzol,podzol,64 Stackable,-,17,64,TRUE\r
+YES,Rooted Dirt,rooted_dirt,64 Stackable,-,18,64,TRUE\r
+YES,Mud,mud,64 Stackable,-,19,64,TRUE\r
+YES,Crimson Nylium,crimson_nylium,64 Stackable,-,20,64,TRUE\r
+YES,Warped Nylium,warped_nylium,64 Stackable,-,21,64,TRUE\r
+YES,Cobblestone,cobblestone,64 Stackable,-,22,64,TRUE\r
+YES,Oak Planks,oak_planks,64 Stackable,-,23,64,TRUE\r
+YES,Spruce Planks,spruce_planks,64 Stackable,-,24,64,TRUE\r
+YES,Birch Planks,birch_planks,64 Stackable,-,25,64,TRUE\r
+YES,Jungle Planks,jungle_planks,64 Stackable,-,26,64,TRUE\r
+YES,Acacia Planks,acacia_planks,64 Stackable,-,27,64,TRUE\r
+YES,Dark Oak Planks,dark_oak_planks,64 Stackable,-,28,64,TRUE\r
+YES,Mangrove Planks,mangrove_planks,64 Stackable,-,29,64,TRUE\r
+YES,Crimson Planks,crimson_planks,64 Stackable,-,30,64,TRUE\r
+YES,Warped Planks,warped_planks,64 Stackable,-,31,64,TRUE\r
+YES,Oak Sapling,oak_sapling,64 Stackable,-,32,64,TRUE\r
+YES,Spruce Sapling,spruce_sapling,64 Stackable,-,33,64,TRUE\r
+YES,Birch Sapling,birch_sapling,64 Stackable,-,34,64,TRUE\r
+YES,Jungle Sapling,jungle_sapling,64 Stackable,-,35,64,TRUE\r
+YES,Acacia Sapling,acacia_sapling,64 Stackable,-,36,64,TRUE\r
+YES,Dark Oak Sapling,dark_oak_sapling,64 Stackable,-,37,64,TRUE\r
+YES,Mangrove Propagule,mangrove_propagule,64 Stackable,-,38,64,TRUE\r
+YES,Sand,sand,64 Stackable,-,40,64,TRUE\r
+YES,Red Sand,red_sand,64 Stackable,-,41,64,TRUE\r
+YES,Gravel,gravel,64 Stackable,-,42,64,TRUE\r
+YES,Coal Ore,coal_ore,64 Stackable,-,43,64,TRUE\r
+YES,Deepslate Coal Ore,deepslate_coal_ore,64 Stackable,-,44,64,TRUE\r
+YES,Iron Ore,iron_ore,64 Stackable,-,45,64,TRUE\r
+YES,Deepslate Iron Ore,deepslate_iron_ore,64 Stackable,-,46,64,TRUE\r
+YES,Copper Ore,copper_ore,64 Stackable,-,47,64,TRUE\r
+YES,Deepslate Copper Ore,deepslate_copper_ore,64 Stackable,-,48,64,TRUE\r
+YES,Gold Ore,gold_ore,64 Stackable,-,49,64,TRUE\r
+YES,Deepslate Gold Ore,deepslate_gold_ore,64 Stackable,-,50,64,TRUE\r
+YES,Redstone Ore,redstone_ore,64 Stackable,-,51,64,TRUE\r
+YES,Deepslate Redstone Ore,deepslate_redstone_ore,64 Stackable,-,52,64,TRUE\r
+YES,Emerald Ore,emerald_ore,64 Stackable,-,53,64,TRUE\r
+YES,Deepslate Emerald Ore,deepslate_emerald_ore,64 Stackable,-,54,64,TRUE\r
+YES,Lapis Lazuli Ore,lapis_ore,64 Stackable,-,55,64,TRUE\r
+YES,Deepslate Lapis Lazuli Ore,deepslate_lapis_ore,64 Stackable,-,56,64,TRUE\r
+YES,Diamond Ore,diamond_ore,64 Stackable,-,57,64,TRUE\r
+YES,Deepslate Diamond Ore,deepslate_diamond_ore,64 Stackable,-,58,64,TRUE\r
+YES,Nether Gold Ore,nether_gold_ore,64 Stackable,-,59,64,TRUE\r
+YES,Nether Quartz Ore,nether_quartz_ore,64 Stackable,-,60,64,TRUE\r
+YES,Ancient Debris,ancient_debris,64 Stackable,-,61,64,TRUE\r
+YES,Block of Coal,coal_block,64 Stackable,-,62,64,TRUE\r
+YES,Block of Raw Iron,raw_iron_block,64 Stackable,-,63,64,TRUE\r
+YES,Block of Raw Copper,raw_copper_block,64 Stackable,-,64,64,TRUE\r
+YES,Block of Raw Gold,raw_gold_block,64 Stackable,-,65,64,TRUE\r
+YES,Block of Amethyst,amethyst_block,64 Stackable,-,66,64,TRUE\r
+YES,Block of Iron,iron_block,64 Stackable,-,68,64,TRUE\r
+YES,Block of Copper,copper_block,64 Stackable,-,69,64,TRUE\r
+YES,Block of Gold,gold_block,64 Stackable,-,70,64,TRUE\r
+YES,Block of Diamond,diamond_block,64 Stackable,-,71,64,TRUE\r
+YES,Block of Netherite,netherite_block,64 Stackable,-,72,64,TRUE\r
+YES,Exposed Copper,exposed_copper,64 Stackable,-,73,64,TRUE\r
+YES,Weathered Copper,weathered_copper,64 Stackable,-,74,64,TRUE\r
+YES,Oxidized Copper,oxidized_copper,64 Stackable,-,75,64,TRUE\r
+YES,Cut Copper,cut_copper,64 Stackable,-,76,64,TRUE\r
+YES,Exposed Cut Copper,exposed_cut_copper,64 Stackable,-,77,64,TRUE\r
+YES,Weathered Cut Copper,weathered_cut_copper,64 Stackable,-,78,64,TRUE\r
+YES,Oxidized Cut Copper,oxidized_cut_copper,64 Stackable,-,79,64,TRUE\r
+YES,Cut Copper Stairs,cut_copper_stairs,64 Stackable,-,80,64,TRUE\r
+YES,Exposed Cut Copper Stairs,exposed_cut_copper_stairs,64 Stackable,-,81,64,TRUE\r
+YES,Weathered Cut Copper Stairs,weathered_cut_copper_stairs,64 Stackable,-,82,64,TRUE\r
+YES,Oxidized Cut Copper Stairs,oxidized_cut_copper_stairs,64 Stackable,-,83,64,TRUE\r
+YES,Cut Copper Slab,cut_copper_slab,64 Stackable,-,84,64,TRUE\r
+YES,Exposed Cut Copper Slab,exposed_cut_copper_slab,64 Stackable,-,85,64,TRUE\r
+YES,Weathered Cut Copper Slab,weathered_cut_copper_slab,64 Stackable,-,86,64,TRUE\r
+YES,Oxidized Cut Copper Slab,oxidized_cut_copper_slab,64 Stackable,-,87,64,TRUE\r
+YES,Waxed Block of Copper,waxed_copper_block,64 Stackable,-,88,64,TRUE\r
+YES,Waxed Exposed Copper,waxed_exposed_copper,64 Stackable,-,89,64,TRUE\r
+YES,Waxed Weathered Copper,waxed_weathered_copper,64 Stackable,-,90,64,TRUE\r
+YES,Waxed Oxidized Copper,waxed_oxidized_copper,64 Stackable,-,91,64,TRUE\r
+YES,Waxed Cut Copper,waxed_cut_copper,64 Stackable,-,92,64,TRUE\r
+YES,Waxed Exposed Cut Copper,waxed_exposed_cut_copper,64 Stackable,-,93,64,TRUE\r
+YES,Waxed Weathered Cut Copper,waxed_weathered_cut_copper,64 Stackable,-,94,64,TRUE\r
+YES,Waxed Oxidized Cut Copper,waxed_oxidized_cut_copper,64 Stackable,-,95,64,TRUE\r
+YES,Waxed Cut Copper Stairs,waxed_cut_copper_stairs,64 Stackable,-,96,64,TRUE\r
+YES,Waxed Exposed Cut Copper Stairs,waxed_exposed_cut_copper_stairs,64 Stackable,-,97,64,TRUE\r
+YES,Waxed Weathered Cut Copper Stairs,waxed_weathered_cut_copper_stairs,64 Stackable,-,98,64,TRUE\r
+YES,Waxed Oxidized Cut Copper Stairs,waxed_oxidized_cut_copper_stairs,64 Stackable,-,99,64,TRUE\r
+YES,Waxed Cut Copper Slab,waxed_cut_copper_slab,64 Stackable,-,100,64,TRUE\r
+YES,Waxed Exposed Cut Copper Slab,waxed_exposed_cut_copper_slab,64 Stackable,-,101,64,TRUE\r
+YES,Waxed Weathered Cut Copper Slab,waxed_weathered_cut_copper_slab,64 Stackable,-,102,64,TRUE\r
+YES,Waxed Oxidized Cut Copper Slab,waxed_oxidized_cut_copper_slab,64 Stackable,-,103,64,TRUE\r
+YES,Oak Log,oak_log,64 Stackable,-,104,64,TRUE\r
+YES,Spruce Log,spruce_log,64 Stackable,-,105,64,TRUE\r
+YES,Birch Log,birch_log,64 Stackable,-,106,64,TRUE\r
+YES,Jungle Log,jungle_log,64 Stackable,-,107,64,TRUE\r
+YES,Acacia Log,acacia_log,64 Stackable,-,108,64,TRUE\r
+YES,Dark Oak Log,dark_oak_log,64 Stackable,-,109,64,TRUE\r
+YES,Mangrove Log,mangrove_log,64 Stackable,-,110,64,TRUE\r
+YES,Mangrove Roots,mangrove_roots,64 Stackable,-,111,64,TRUE\r
+YES,Muddy Mangrove Roots,muddy_mangrove_roots,64 Stackable,-,112,64,TRUE\r
+YES,Crimson Stem,crimson_stem,64 Stackable,-,113,64,TRUE\r
+YES,Warped Stem,warped_stem,64 Stackable,-,114,64,TRUE\r
+YES,Stripped Oak Log,stripped_oak_log,64 Stackable,-,115,64,TRUE\r
+YES,Stripped Spruce Log,stripped_spruce_log,64 Stackable,-,116,64,TRUE\r
+YES,Stripped Birch Log,stripped_birch_log,64 Stackable,-,117,64,TRUE\r
+YES,Stripped Jungle Log,stripped_jungle_log,64 Stackable,-,118,64,TRUE\r
+YES,Stripped Acacia Log,stripped_acacia_log,64 Stackable,-,119,64,TRUE\r
+YES,Stripped Dark Oak Log,stripped_dark_oak_log,64 Stackable,-,120,64,TRUE\r
+YES,Stripped Mangrove Log,stripped_mangrove_log,64 Stackable,-,121,64,TRUE\r
+YES,Stripped Crimson Stem,stripped_crimson_stem,64 Stackable,-,122,64,TRUE\r
+YES,Stripped Warped Stem,stripped_warped_stem,64 Stackable,-,123,64,TRUE\r
+YES,Stripped Oak Wood,stripped_oak_wood,64 Stackable,-,124,64,TRUE\r
+YES,Stripped Spruce Wood,stripped_spruce_wood,64 Stackable,-,125,64,TRUE\r
+YES,Stripped Birch Wood,stripped_birch_wood,64 Stackable,-,126,64,TRUE\r
+YES,Stripped Jungle Wood,stripped_jungle_wood,64 Stackable,-,127,64,TRUE\r
+YES,Stripped Acacia Wood,stripped_acacia_wood,64 Stackable,-,128,64,TRUE\r
+YES,Stripped Dark Oak Wood,stripped_dark_oak_wood,64 Stackable,-,129,64,TRUE\r
+YES,Stripped Mangrove Wood,stripped_mangrove_wood,64 Stackable,-,130,64,TRUE\r
+YES,Stripped Crimson Hyphae,stripped_crimson_hyphae,64 Stackable,-,131,64,TRUE\r
+YES,Stripped Warped Hyphae,stripped_warped_hyphae,64 Stackable,-,132,64,TRUE\r
+YES,Oak Wood,oak_wood,64 Stackable,-,133,64,TRUE\r
+YES,Spruce Wood,spruce_wood,64 Stackable,-,134,64,TRUE\r
+YES,Birch Wood,birch_wood,64 Stackable,-,135,64,TRUE\r
+YES,Jungle Wood,jungle_wood,64 Stackable,-,136,64,TRUE\r
+YES,Acacia Wood,acacia_wood,64 Stackable,-,137,64,TRUE\r
+YES,Dark Oak Wood,dark_oak_wood,64 Stackable,-,138,64,TRUE\r
+YES,Mangrove Wood,mangrove_wood,64 Stackable,-,139,64,TRUE\r
+YES,Crimson Hyphae,crimson_hyphae,64 Stackable,-,140,64,TRUE\r
+YES,Warped Hyphae,warped_hyphae,64 Stackable,-,141,64,TRUE\r
+YES,Oak Leaves,oak_leaves,64 Stackable,-,142,64,TRUE\r
+YES,Spruce Leaves,spruce_leaves,64 Stackable,-,143,64,TRUE\r
+YES,Birch Leaves,birch_leaves,64 Stackable,-,144,64,TRUE\r
+YES,Jungle Leaves,jungle_leaves,64 Stackable,-,145,64,TRUE\r
+YES,Acacia Leaves,acacia_leaves,64 Stackable,-,146,64,TRUE\r
+YES,Dark Oak Leaves,dark_oak_leaves,64 Stackable,-,147,64,TRUE\r
+YES,Mangrove Leaves,mangrove_leaves,64 Stackable,-,148,64,TRUE\r
+YES,Azalea Leaves,azalea_leaves,64 Stackable,-,149,64,TRUE\r
+YES,Flowering Azalea Leaves,flowering_azalea_leaves,64 Stackable,-,150,64,TRUE\r
+YES,Sponge,sponge,64 Stackable,-,151,64,TRUE\r
+YES,Wet Sponge,wet_sponge,64 Stackable,-,152,64,TRUE\r
+YES,Glass,glass,64 Stackable,-,153,64,TRUE\r
+YES,Tinted Glass,tinted_glass,64 Stackable,-,154,64,TRUE\r
+YES,Block of Lapis Lazuli,lapis_block,64 Stackable,-,155,64,TRUE\r
+YES,Sandstone,sandstone,64 Stackable,-,156,64,TRUE\r
+YES,Chiseled Sandstone,chiseled_sandstone,64 Stackable,-,157,64,TRUE\r
+YES,Cut Sandstone,cut_sandstone,64 Stackable,-,158,64,TRUE\r
+YES,Cobweb,cobweb,64 Stackable,-,159,64,TRUE\r
+YES,Grass,grass,64 Stackable,-,160,64,TRUE\r
+YES,Fern,fern,64 Stackable,-,161,64,TRUE\r
+YES,Azalea,azalea,64 Stackable,-,162,64,TRUE\r
+YES,Flowering Azalea,flowering_azalea,64 Stackable,-,163,64,TRUE\r
+YES,Dead Bush,dead_bush,64 Stackable,-,164,64,TRUE\r
+YES,Seagrass,seagrass,64 Stackable,-,165,64,TRUE\r
+YES,Sea Pickle,sea_pickle,64 Stackable,-,166,64,TRUE\r
+YES,White Wool,white_wool,64 Stackable,-,167,64,TRUE\r
+YES,Orange Wool,orange_wool,64 Stackable,-,168,64,TRUE\r
+YES,Magenta Wool,magenta_wool,64 Stackable,-,169,64,TRUE\r
+YES,Light Blue Wool,light_blue_wool,64 Stackable,-,170,64,TRUE\r
+YES,Yellow Wool,yellow_wool,64 Stackable,-,171,64,TRUE\r
+YES,Lime Wool,lime_wool,64 Stackable,-,172,64,TRUE\r
+YES,Pink Wool,pink_wool,64 Stackable,-,173,64,TRUE\r
+YES,Gray Wool,gray_wool,64 Stackable,-,174,64,TRUE\r
+YES,Light Gray Wool,light_gray_wool,64 Stackable,-,175,64,TRUE\r
+YES,Cyan Wool,cyan_wool,64 Stackable,-,176,64,TRUE\r
+YES,Purple Wool,purple_wool,64 Stackable,-,177,64,TRUE\r
+YES,Blue Wool,blue_wool,64 Stackable,-,178,64,TRUE\r
+YES,Brown Wool,brown_wool,64 Stackable,-,179,64,TRUE\r
+YES,Green Wool,green_wool,64 Stackable,-,180,64,TRUE\r
+YES,Red Wool,red_wool,64 Stackable,-,181,64,TRUE\r
+YES,Black Wool,black_wool,64 Stackable,-,182,64,TRUE\r
+YES,Dandelion,dandelion,64 Stackable,-,183,64,TRUE\r
+YES,Poppy,poppy,64 Stackable,-,184,64,TRUE\r
+YES,Blue Orchid,blue_orchid,64 Stackable,-,185,64,TRUE\r
+YES,Allium,allium,64 Stackable,-,186,64,TRUE\r
+YES,Azure Bluet,azure_bluet,64 Stackable,-,187,64,TRUE\r
+YES,Red Tulip,red_tulip,64 Stackable,-,188,64,TRUE\r
+YES,Orange Tulip,orange_tulip,64 Stackable,-,189,64,TRUE\r
+YES,White Tulip,white_tulip,64 Stackable,-,190,64,TRUE\r
+YES,Pink Tulip,pink_tulip,64 Stackable,-,191,64,TRUE\r
+YES,Oxeye Daisy,oxeye_daisy,64 Stackable,-,192,64,TRUE\r
+YES,Cornflower,cornflower,64 Stackable,-,193,64,TRUE\r
+YES,Lily of the Valley,lily_of_the_valley,64 Stackable,-,194,64,TRUE\r
+YES,Wither Rose,wither_rose,64 Stackable,-,195,64,TRUE\r
+YES,Spore Blossom,spore_blossom,64 Stackable,-,196,64,TRUE\r
+YES,Brown Mushroom,brown_mushroom,64 Stackable,-,197,64,TRUE\r
+YES,Red Mushroom,red_mushroom,64 Stackable,-,198,64,TRUE\r
+YES,Crimson Fungus,crimson_fungus,64 Stackable,-,199,64,TRUE\r
+YES,Warped Fungus,warped_fungus,64 Stackable,-,200,64,TRUE\r
+YES,Crimson Roots,crimson_roots,64 Stackable,-,201,64,TRUE\r
+YES,Warped Roots,warped_roots,64 Stackable,-,202,64,TRUE\r
+YES,Nether Sprouts,nether_sprouts,64 Stackable,-,203,64,TRUE\r
+YES,Weeping Vines,weeping_vines,64 Stackable,-,204,64,TRUE\r
+YES,Twisting Vines,twisting_vines,64 Stackable,-,205,64,TRUE\r
+YES,Sugar Cane,sugar_cane,64 Stackable,-,206,64,TRUE\r
+YES,Kelp,kelp,64 Stackable,-,207,64,TRUE\r
+YES,Moss Carpet,moss_carpet,64 Stackable,-,208,64,TRUE\r
+YES,Moss Block,moss_block,64 Stackable,-,209,64,TRUE\r
+YES,Hanging Roots,hanging_roots,64 Stackable,-,210,64,TRUE\r
+YES,Big Dripleaf,big_dripleaf,64 Stackable,-,211,64,TRUE\r
+YES,Small Dripleaf,small_dripleaf,64 Stackable,-,212,64,TRUE\r
+YES,Bamboo,bamboo,64 Stackable,-,213,64,TRUE\r
+YES,Oak Slab,oak_slab,64 Stackable,-,214,64,TRUE\r
+YES,Spruce Slab,spruce_slab,64 Stackable,-,215,64,TRUE\r
+YES,Birch Slab,birch_slab,64 Stackable,-,216,64,TRUE\r
+YES,Jungle Slab,jungle_slab,64 Stackable,-,217,64,TRUE\r
+YES,Acacia Slab,acacia_slab,64 Stackable,-,218,64,TRUE\r
+YES,Dark Oak Slab,dark_oak_slab,64 Stackable,-,219,64,TRUE\r
+YES,Mangrove Slab,mangrove_slab,64 Stackable,-,220,64,TRUE\r
+YES,Crimson Slab,crimson_slab,64 Stackable,-,221,64,TRUE\r
+YES,Warped Slab,warped_slab,64 Stackable,-,222,64,TRUE\r
+YES,Stone Slab,stone_slab,64 Stackable,-,223,64,TRUE\r
+YES,Smooth Stone Slab,smooth_stone_slab,64 Stackable,-,224,64,TRUE\r
+YES,Sandstone Slab,sandstone_slab,64 Stackable,-,225,64,TRUE\r
+YES,Cut Sandstone Slab,cut_sandstone_slab,64 Stackable,-,226,64,TRUE\r
+YES,Cobblestone Slab,cobblestone_slab,64 Stackable,-,228,64,TRUE\r
+YES,Brick Slab,brick_slab,64 Stackable,-,229,64,TRUE\r
+YES,Stone Brick Slab,stone_brick_slab,64 Stackable,-,230,64,TRUE\r
+YES,Mud Brick Slab,mud_brick_slab,64 Stackable,-,231,64,TRUE\r
+YES,Nether Brick Slab,nether_brick_slab,64 Stackable,-,232,64,TRUE\r
+YES,Quartz Slab,quartz_slab,64 Stackable,-,233,64,TRUE\r
+YES,Red Sandstone Slab,red_sandstone_slab,64 Stackable,-,234,64,TRUE\r
+YES,Cut Red Sandstone Slab,cut_red_sandstone_slab,64 Stackable,-,235,64,TRUE\r
+YES,Purpur Slab,purpur_slab,64 Stackable,-,236,64,TRUE\r
+YES,Prismarine Slab,prismarine_slab,64 Stackable,-,237,64,TRUE\r
+YES,Prismarine Brick Slab,prismarine_brick_slab,64 Stackable,-,238,64,TRUE\r
+YES,Dark Prismarine Slab,dark_prismarine_slab,64 Stackable,-,239,64,TRUE\r
+YES,Smooth Quartz Block,smooth_quartz,64 Stackable,-,240,64,TRUE\r
+YES,Smooth Red Sandstone,smooth_red_sandstone,64 Stackable,-,241,64,TRUE\r
+YES,Smooth Sandstone,smooth_sandstone,64 Stackable,-,242,64,TRUE\r
+YES,Smooth Stone,smooth_stone,64 Stackable,-,243,64,TRUE\r
+YES,Bricks,bricks,64 Stackable,-,244,64,TRUE\r
+YES,Bookshelf,bookshelf,64 Stackable,-,245,64,TRUE\r
+YES,Mossy Cobblestone,mossy_cobblestone,64 Stackable,-,246,64,TRUE\r
+YES,Obsidian,obsidian,64 Stackable,-,247,64,TRUE\r
+YES,Torch,torch,64 Stackable,-,248,64,TRUE\r
+YES,End Rod,end_rod,64 Stackable,-,249,64,TRUE\r
+YES,Chorus Flower,chorus_flower,64 Stackable,-,251,64,TRUE\r
+YES,Purpur Block,purpur_block,64 Stackable,-,252,64,TRUE\r
+YES,Purpur Pillar,purpur_pillar,64 Stackable,-,253,64,TRUE\r
+YES,Purpur Stairs,purpur_stairs,64 Stackable,-,254,64,TRUE\r
+YES,Chest,chest,64 Stackable,-,256,64,TRUE\r
+YES,Crafting Table,crafting_table,64 Stackable,-,257,64,TRUE\r
+YES,Furnace,furnace,64 Stackable,-,259,64,TRUE\r
+YES,Ladder,ladder,64 Stackable,-,260,64,TRUE\r
+YES,Cobblestone Stairs,cobblestone_stairs,64 Stackable,-,261,64,TRUE\r
+YES,Snow,snow,64 Stackable,-,262,64,TRUE\r
+YES,Ice,ice,64 Stackable,-,263,64,TRUE\r
+YES,Snow Block,snow_block,64 Stackable,-,264,64,TRUE\r
+YES,Cactus,cactus,64 Stackable,-,265,64,TRUE\r
+YES,Clay,clay,64 Stackable,-,266,64,TRUE\r
+YES,Jukebox,jukebox,64 Stackable,-,267,64,TRUE\r
+YES,Oak Fence,oak_fence,64 Stackable,-,268,64,TRUE\r
+YES,Spruce Fence,spruce_fence,64 Stackable,-,269,64,TRUE\r
+YES,Birch Fence,birch_fence,64 Stackable,-,270,64,TRUE\r
+YES,Jungle Fence,jungle_fence,64 Stackable,-,271,64,TRUE\r
+YES,Acacia Fence,acacia_fence,64 Stackable,-,272,64,TRUE\r
+YES,Dark Oak Fence,dark_oak_fence,64 Stackable,-,273,64,TRUE\r
+YES,Mangrove Fence,mangrove_fence,64 Stackable,-,274,64,TRUE\r
+YES,Crimson Fence,crimson_fence,64 Stackable,-,275,64,TRUE\r
+YES,Warped Fence,warped_fence,64 Stackable,-,276,64,TRUE\r
+YES,Pumpkin,pumpkin,64 Stackable,-,277,64,TRUE\r
+YES,Carved Pumpkin,carved_pumpkin,64 Stackable,-,278,64,TRUE\r
+YES,Jack o'Lantern,jack_o_lantern,64 Stackable,-,279,64,TRUE\r
+YES,Netherrack,netherrack,64 Stackable,-,280,64,TRUE\r
+YES,Soul Sand,soul_sand,64 Stackable,-,281,64,TRUE\r
+YES,Soul Soil,soul_soil,64 Stackable,-,282,64,TRUE\r
+YES,Basalt,basalt,64 Stackable,-,283,64,TRUE\r
+YES,Polished Basalt,polished_basalt,64 Stackable,-,284,64,TRUE\r
+YES,Smooth Basalt,smooth_basalt,64 Stackable,-,285,64,TRUE\r
+YES,Soul Torch,soul_torch,64 Stackable,-,286,64,TRUE\r
+YES,Glowstone,glowstone,64 Stackable,-,287,64,TRUE\r
+YES,Stone Bricks,stone_bricks,64 Stackable,-,295,64,TRUE\r
+YES,Mossy Stone Bricks,mossy_stone_bricks,64 Stackable,-,296,64,TRUE\r
+YES,Cracked Stone Bricks,cracked_stone_bricks,64 Stackable,-,297,64,TRUE\r
+YES,Chiseled Stone Bricks,chiseled_stone_bricks,64 Stackable,-,298,64,TRUE\r
+YES,Packed Mud,packed_mud,64 Stackable,-,299,64,TRUE\r
+YES,Mud Bricks,mud_bricks,64 Stackable,-,300,64,TRUE\r
+YES,Deepslate Bricks,deepslate_bricks,64 Stackable,-,301,64,TRUE\r
+YES,Cracked Deepslate Bricks,cracked_deepslate_bricks,64 Stackable,-,302,64,TRUE\r
+YES,Deepslate Tiles,deepslate_tiles,64 Stackable,-,303,64,TRUE\r
+YES,Cracked Deepslate Tiles,cracked_deepslate_tiles,64 Stackable,-,304,64,TRUE\r
+YES,Chiseled Deepslate,chiseled_deepslate,64 Stackable,-,305,64,TRUE\r
+YES,Brown Mushroom Block,brown_mushroom_block,64 Stackable,-,307,64,TRUE\r
+YES,Red Mushroom Block,red_mushroom_block,64 Stackable,-,308,64,TRUE\r
+YES,Mushroom Stem,mushroom_stem,64 Stackable,-,309,64,TRUE\r
+YES,Iron Bars,iron_bars,64 Stackable,-,310,64,TRUE\r
+YES,Chain,chain,64 Stackable,-,311,64,TRUE\r
+YES,Glass Pane,glass_pane,64 Stackable,-,312,64,TRUE\r
+YES,Melon,melon,64 Stackable,-,313,64,TRUE\r
+YES,Vines,vine,64 Stackable,-,314,64,TRUE\r
+YES,Glow Lichen,glow_lichen,64 Stackable,-,315,64,TRUE\r
+YES,Brick Stairs,brick_stairs,64 Stackable,-,316,64,TRUE\r
+YES,Stone Brick Stairs,stone_brick_stairs,64 Stackable,-,317,64,TRUE\r
+YES,Mud Brick Stairs,mud_brick_stairs,64 Stackable,-,318,64,TRUE\r
+YES,Mycelium,mycelium,64 Stackable,-,319,64,TRUE\r
+YES,Lily Pad,lily_pad,64 Stackable,-,320,64,TRUE\r
+YES,Nether Bricks,nether_bricks,64 Stackable,-,321,64,TRUE\r
+YES,Cracked Nether Bricks,cracked_nether_bricks,64 Stackable,-,322,64,TRUE\r
+YES,Chiseled Nether Bricks,chiseled_nether_bricks,64 Stackable,-,323,64,TRUE\r
+YES,Nether Brick Fence,nether_brick_fence,64 Stackable,-,324,64,TRUE\r
+YES,Nether Brick Stairs,nether_brick_stairs,64 Stackable,-,325,64,TRUE\r
+YES,Sculk,sculk,64 Stackable,-,326,64,TRUE\r
+YES,Sculk Vein,sculk_vein,64 Stackable,-,327,64,TRUE\r
+YES,Sculk Catalyst,sculk_catalyst,64 Stackable,-,328,64,TRUE\r
+YES,Sculk Shrieker,sculk_shrieker,64 Stackable,-,329,64,TRUE\r
+YES,Enchanting Table,enchanting_table,64 Stackable,-,330,64,TRUE\r
+YES,End Stone,end_stone,64 Stackable,-,332,64,TRUE\r
+YES,End Stone Bricks,end_stone_bricks,64 Stackable,-,333,64,TRUE\r
+YES,Dragon Egg,dragon_egg,64 Stackable,-,334,64,TRUE\r
+YES,Sandstone Stairs,sandstone_stairs,64 Stackable,-,335,64,TRUE\r
+YES,Ender Chest,ender_chest,64 Stackable,-,336,64,TRUE\r
+YES,Block of Emerald,emerald_block,64 Stackable,-,337,64,TRUE\r
+YES,Oak Stairs,oak_stairs,64 Stackable,-,338,64,TRUE\r
+YES,Spruce Stairs,spruce_stairs,64 Stackable,-,339,64,TRUE\r
+YES,Birch Stairs,birch_stairs,64 Stackable,-,340,64,TRUE\r
+YES,Jungle Stairs,jungle_stairs,64 Stackable,-,341,64,TRUE\r
+YES,Acacia Stairs,acacia_stairs,64 Stackable,-,342,64,TRUE\r
+YES,Dark Oak Stairs,dark_oak_stairs,64 Stackable,-,343,64,TRUE\r
+YES,Mangrove Stairs,mangrove_stairs,64 Stackable,-,344,64,TRUE\r
+YES,Crimson Stairs,crimson_stairs,64 Stackable,-,345,64,TRUE\r
+YES,Warped Stairs,warped_stairs,64 Stackable,-,346,64,TRUE\r
+YES,Beacon,beacon,64 Stackable,-,348,64,TRUE\r
+YES,Cobblestone Wall,cobblestone_wall,64 Stackable,-,349,64,TRUE\r
+YES,Mossy Cobblestone Wall,mossy_cobblestone_wall,64 Stackable,-,350,64,TRUE\r
+YES,Brick Wall,brick_wall,64 Stackable,-,351,64,TRUE\r
+YES,Prismarine Wall,prismarine_wall,64 Stackable,-,352,64,TRUE\r
+YES,Red Sandstone Wall,red_sandstone_wall,64 Stackable,-,353,64,TRUE\r
+YES,Mossy Stone Brick Wall,mossy_stone_brick_wall,64 Stackable,-,354,64,TRUE\r
+YES,Granite Wall,granite_wall,64 Stackable,-,355,64,TRUE\r
+YES,Stone Brick Wall,stone_brick_wall,64 Stackable,-,356,64,TRUE\r
+YES,Mud Brick Wall,mud_brick_wall,64 Stackable,-,357,64,TRUE\r
+YES,Nether Brick Wall,nether_brick_wall,64 Stackable,-,358,64,TRUE\r
+YES,Andesite Wall,andesite_wall,64 Stackable,-,359,64,TRUE\r
+YES,Red Nether Brick Wall,red_nether_brick_wall,64 Stackable,-,360,64,TRUE\r
+YES,Sandstone Wall,sandstone_wall,64 Stackable,-,361,64,TRUE\r
+YES,End Stone Brick Wall,end_stone_brick_wall,64 Stackable,-,362,64,TRUE\r
+YES,Diorite Wall,diorite_wall,64 Stackable,-,363,64,TRUE\r
+YES,Blackstone Wall,blackstone_wall,64 Stackable,-,364,64,TRUE\r
+YES,Polished Blackstone Wall,polished_blackstone_wall,64 Stackable,-,365,64,TRUE\r
+YES,Polished Blackstone Brick Wall,polished_blackstone_brick_wall,64 Stackable,-,366,64,TRUE\r
+YES,Cobbled Deepslate Wall,cobbled_deepslate_wall,64 Stackable,-,367,64,TRUE\r
+YES,Polished Deepslate Wall,polished_deepslate_wall,64 Stackable,-,368,64,TRUE\r
+YES,Deepslate Brick Wall,deepslate_brick_wall,64 Stackable,-,369,64,TRUE\r
+YES,Deepslate Tile Wall,deepslate_tile_wall,64 Stackable,-,370,64,TRUE\r
+YES,Anvil,anvil,64 Stackable,-,371,64,TRUE\r
+YES,Chipped Anvil,chipped_anvil,64 Stackable,-,372,64,TRUE\r
+YES,Damaged Anvil,damaged_anvil,64 Stackable,-,373,64,TRUE\r
+YES,Chiseled Quartz Block,chiseled_quartz_block,64 Stackable,-,374,64,TRUE\r
+YES,Block of Quartz,quartz_block,64 Stackable,-,375,64,TRUE\r
+YES,Quartz Bricks,quartz_bricks,64 Stackable,-,376,64,TRUE\r
+YES,Quartz Pillar,quartz_pillar,64 Stackable,-,377,64,TRUE\r
+YES,Quartz Stairs,quartz_stairs,64 Stackable,-,378,64,TRUE\r
+YES,White Terracotta,white_terracotta,64 Stackable,-,379,64,TRUE\r
+YES,Orange Terracotta,orange_terracotta,64 Stackable,-,380,64,TRUE\r
+YES,Magenta Terracotta,magenta_terracotta,64 Stackable,-,381,64,TRUE\r
+YES,Light Blue Terracotta,light_blue_terracotta,64 Stackable,-,382,64,TRUE\r
+YES,Yellow Terracotta,yellow_terracotta,64 Stackable,-,383,64,TRUE\r
+YES,Lime Terracotta,lime_terracotta,64 Stackable,-,384,64,TRUE\r
+YES,Pink Terracotta,pink_terracotta,64 Stackable,-,385,64,TRUE\r
+YES,Gray Terracotta,gray_terracotta,64 Stackable,-,386,64,TRUE\r
+YES,Light Gray Terracotta,light_gray_terracotta,64 Stackable,-,387,64,TRUE\r
+YES,Cyan Terracotta,cyan_terracotta,64 Stackable,-,388,64,TRUE\r
+YES,Purple Terracotta,purple_terracotta,64 Stackable,-,389,64,TRUE\r
+YES,Blue Terracotta,blue_terracotta,64 Stackable,-,390,64,TRUE\r
+YES,Brown Terracotta,brown_terracotta,64 Stackable,-,391,64,TRUE\r
+YES,Green Terracotta,green_terracotta,64 Stackable,-,392,64,TRUE\r
+YES,Red Terracotta,red_terracotta,64 Stackable,-,393,64,TRUE\r
+YES,Black Terracotta,black_terracotta,64 Stackable,-,394,64,TRUE\r
+YES,Hay Bale,hay_block,64 Stackable,-,397,64,TRUE\r
+YES,White Carpet,white_carpet,64 Stackable,-,398,64,TRUE\r
+YES,Orange Carpet,orange_carpet,64 Stackable,-,399,64,TRUE\r
+YES,Magenta Carpet,magenta_carpet,64 Stackable,-,400,64,TRUE\r
+YES,Light Blue Carpet,light_blue_carpet,64 Stackable,-,401,64,TRUE\r
+YES,Yellow Carpet,yellow_carpet,64 Stackable,-,402,64,TRUE\r
+YES,Lime Carpet,lime_carpet,64 Stackable,-,403,64,TRUE\r
+YES,Pink Carpet,pink_carpet,64 Stackable,-,404,64,TRUE\r
+YES,Gray Carpet,gray_carpet,64 Stackable,-,405,64,TRUE\r
+YES,Light Gray Carpet,light_gray_carpet,64 Stackable,-,406,64,TRUE\r
+YES,Cyan Carpet,cyan_carpet,64 Stackable,-,407,64,TRUE\r
+YES,Purple Carpet,purple_carpet,64 Stackable,-,408,64,TRUE\r
+YES,Blue Carpet,blue_carpet,64 Stackable,-,409,64,TRUE\r
+YES,Brown Carpet,brown_carpet,64 Stackable,-,410,64,TRUE\r
+YES,Green Carpet,green_carpet,64 Stackable,-,411,64,TRUE\r
+YES,Red Carpet,red_carpet,64 Stackable,-,412,64,TRUE\r
+YES,Black Carpet,black_carpet,64 Stackable,-,413,64,TRUE\r
+YES,Terracotta,terracotta,64 Stackable,-,414,64,TRUE\r
+YES,Packed Ice,packed_ice,64 Stackable,-,415,64,TRUE\r
+YES,Sunflower,sunflower,64 Stackable,-,417,64,TRUE\r
+YES,Lilac,lilac,64 Stackable,-,418,64,TRUE\r
+YES,Rose Bush,rose_bush,64 Stackable,-,419,64,TRUE\r
+YES,Peony,peony,64 Stackable,-,420,64,TRUE\r
+YES,Tall Grass,tall_grass,64 Stackable,-,421,64,TRUE\r
+YES,Large Fern,large_fern,64 Stackable,-,422,64,TRUE\r
+YES,White Stained Glass,white_stained_glass,64 Stackable,-,423,64,TRUE\r
+YES,Orange Stained Glass,orange_stained_glass,64 Stackable,-,424,64,TRUE\r
+YES,Magenta Stained Glass,magenta_stained_glass,64 Stackable,-,425,64,TRUE\r
+YES,Light Blue Stained Glass,light_blue_stained_glass,64 Stackable,-,426,64,TRUE\r
+YES,Yellow Stained Glass,yellow_stained_glass,64 Stackable,-,427,64,TRUE\r
+YES,Lime Stained Glass,lime_stained_glass,64 Stackable,-,428,64,TRUE\r
+YES,Pink Stained Glass,pink_stained_glass,64 Stackable,-,429,64,TRUE\r
+YES,Gray Stained Glass,gray_stained_glass,64 Stackable,-,430,64,TRUE\r
+YES,Light Gray Stained Glass,light_gray_stained_glass,64 Stackable,-,431,64,TRUE\r
+YES,Cyan Stained Glass,cyan_stained_glass,64 Stackable,-,432,64,TRUE\r
+YES,Purple Stained Glass,purple_stained_glass,64 Stackable,-,433,64,TRUE\r
+YES,Blue Stained Glass,blue_stained_glass,64 Stackable,-,434,64,TRUE\r
+YES,Brown Stained Glass,brown_stained_glass,64 Stackable,-,435,64,TRUE\r
+YES,Green Stained Glass,green_stained_glass,64 Stackable,-,436,64,TRUE\r
+YES,Red Stained Glass,red_stained_glass,64 Stackable,-,437,64,TRUE\r
+YES,Black Stained Glass,black_stained_glass,64 Stackable,-,438,64,TRUE\r
+YES,White Stained Glass Pane,white_stained_glass_pane,64 Stackable,-,439,64,TRUE\r
+YES,Orange Stained Glass Pane,orange_stained_glass_pane,64 Stackable,-,440,64,TRUE\r
+YES,Magenta Stained Glass Pane,magenta_stained_glass_pane,64 Stackable,-,441,64,TRUE\r
+YES,Light Blue Stained Glass Pane,light_blue_stained_glass_pane,64 Stackable,-,442,64,TRUE\r
+YES,Yellow Stained Glass Pane,yellow_stained_glass_pane,64 Stackable,-,443,64,TRUE\r
+YES,Lime Stained Glass Pane,lime_stained_glass_pane,64 Stackable,-,444,64,TRUE\r
+YES,Pink Stained Glass Pane,pink_stained_glass_pane,64 Stackable,-,445,64,TRUE\r
+YES,Gray Stained Glass Pane,gray_stained_glass_pane,64 Stackable,-,446,64,TRUE\r
+YES,Light Gray Stained Glass Pane,light_gray_stained_glass_pane,64 Stackable,-,447,64,TRUE\r
+YES,Cyan Stained Glass Pane,cyan_stained_glass_pane,64 Stackable,-,448,64,TRUE\r
+YES,Purple Stained Glass Pane,purple_stained_glass_pane,64 Stackable,-,449,64,TRUE\r
+YES,Blue Stained Glass Pane,blue_stained_glass_pane,64 Stackable,-,450,64,TRUE\r
+YES,Brown Stained Glass Pane,brown_stained_glass_pane,64 Stackable,-,451,64,TRUE\r
+YES,Green Stained Glass Pane,green_stained_glass_pane,64 Stackable,-,452,64,TRUE\r
+YES,Red Stained Glass Pane,red_stained_glass_pane,64 Stackable,-,453,64,TRUE\r
+YES,Black Stained Glass Pane,black_stained_glass_pane,64 Stackable,-,454,64,TRUE\r
+YES,Prismarine,prismarine,64 Stackable,-,455,64,TRUE\r
+YES,Prismarine Bricks,prismarine_bricks,64 Stackable,-,456,64,TRUE\r
+YES,Dark Prismarine,dark_prismarine,64 Stackable,-,457,64,TRUE\r
+YES,Prismarine Stairs,prismarine_stairs,64 Stackable,-,458,64,TRUE\r
+YES,Prismarine Brick Stairs,prismarine_brick_stairs,64 Stackable,-,459,64,TRUE\r
+YES,Dark Prismarine Stairs,dark_prismarine_stairs,64 Stackable,-,460,64,TRUE\r
+YES,Sea Lantern,sea_lantern,64 Stackable,-,461,64,TRUE\r
+YES,Red Sandstone,red_sandstone,64 Stackable,-,462,64,TRUE\r
+YES,Chiseled Red Sandstone,chiseled_red_sandstone,64 Stackable,-,463,64,TRUE\r
+YES,Cut Red Sandstone,cut_red_sandstone,64 Stackable,-,464,64,TRUE\r
+YES,Red Sandstone Stairs,red_sandstone_stairs,64 Stackable,-,465,64,TRUE\r
+YES,Magma Block,magma_block,64 Stackable,-,468,64,TRUE\r
+YES,Nether Wart Block,nether_wart_block,64 Stackable,-,469,64,TRUE\r
+YES,Warped Wart Block,warped_wart_block,64 Stackable,-,470,64,TRUE\r
+YES,Red Nether Bricks,red_nether_bricks,64 Stackable,-,471,64,TRUE\r
+YES,Bone Block,bone_block,64 Stackable,-,472,64,TRUE\r
+YES,Shulker Box,shulker_box,Unstackable,,474,1,TRUE\r
+YES,White Shulker Box,white_shulker_box,Unstackable,,475,1,TRUE\r
+YES,Orange Shulker Box,orange_shulker_box,Unstackable,,476,1,TRUE\r
+YES,Magenta Shulker Box,magenta_shulker_box,Unstackable,,477,1,TRUE\r
+YES,Light Blue Shulker Box,light_blue_shulker_box,Unstackable,,478,1,TRUE\r
+YES,Yellow Shulker Box,yellow_shulker_box,Unstackable,,479,1,TRUE\r
+YES,Lime Shulker Box,lime_shulker_box,Unstackable,,480,1,TRUE\r
+YES,Pink Shulker Box,pink_shulker_box,Unstackable,,481,1,TRUE\r
+YES,Gray Shulker Box,gray_shulker_box,Unstackable,,482,1,TRUE\r
+YES,Light Gray Shulker Box,light_gray_shulker_box,Unstackable,,483,1,TRUE\r
+YES,Cyan Shulker Box,cyan_shulker_box,Unstackable,,484,1,TRUE\r
+YES,Purple Shulker Box,purple_shulker_box,Unstackable,,485,1,TRUE\r
+YES,Blue Shulker Box,blue_shulker_box,Unstackable,,486,1,TRUE\r
+YES,Brown Shulker Box,brown_shulker_box,Unstackable,,487,1,TRUE\r
+YES,Green Shulker Box,green_shulker_box,Unstackable,,488,1,TRUE\r
+YES,Red Shulker Box,red_shulker_box,Unstackable,,489,1,TRUE\r
+YES,Black Shulker Box,black_shulker_box,Unstackable,,490,1,TRUE\r
+YES,White Glazed Terracotta,white_glazed_terracotta,64 Stackable,-,491,64,TRUE\r
+YES,Orange Glazed Terracotta,orange_glazed_terracotta,64 Stackable,-,492,64,TRUE\r
+YES,Magenta Glazed Terracotta,magenta_glazed_terracotta,64 Stackable,-,493,64,TRUE\r
+YES,Light Blue Glazed Terracotta,light_blue_glazed_terracotta,64 Stackable,-,494,64,TRUE\r
+YES,Yellow Glazed Terracotta,yellow_glazed_terracotta,64 Stackable,-,495,64,TRUE\r
+YES,Lime Glazed Terracotta,lime_glazed_terracotta,64 Stackable,-,496,64,TRUE\r
+YES,Pink Glazed Terracotta,pink_glazed_terracotta,64 Stackable,-,497,64,TRUE\r
+YES,Gray Glazed Terracotta,gray_glazed_terracotta,64 Stackable,-,498,64,TRUE\r
+YES,Light Gray Glazed Terracotta,light_gray_glazed_terracotta,64 Stackable,-,499,64,TRUE\r
+YES,Cyan Glazed Terracotta,cyan_glazed_terracotta,64 Stackable,-,500,64,TRUE\r
+YES,Purple Glazed Terracotta,purple_glazed_terracotta,64 Stackable,-,501,64,TRUE\r
+YES,Blue Glazed Terracotta,blue_glazed_terracotta,64 Stackable,-,502,64,TRUE\r
+YES,Brown Glazed Terracotta,brown_glazed_terracotta,64 Stackable,-,503,64,TRUE\r
+YES,Green Glazed Terracotta,green_glazed_terracotta,64 Stackable,-,504,64,TRUE\r
+YES,Red Glazed Terracotta,red_glazed_terracotta,64 Stackable,-,505,64,TRUE\r
+YES,Black Glazed Terracotta,black_glazed_terracotta,64 Stackable,-,506,64,TRUE\r
+YES,White Concrete,white_concrete,64 Stackable,-,507,64,TRUE\r
+YES,Orange Concrete,orange_concrete,64 Stackable,-,508,64,TRUE\r
+YES,Magenta Concrete,magenta_concrete,64 Stackable,-,509,64,TRUE\r
+YES,Light Blue Concrete,light_blue_concrete,64 Stackable,-,510,64,TRUE\r
+YES,Yellow Concrete,yellow_concrete,64 Stackable,-,511,64,TRUE\r
+YES,Lime Concrete,lime_concrete,64 Stackable,-,512,64,TRUE\r
+YES,Pink Concrete,pink_concrete,64 Stackable,-,513,64,TRUE\r
+YES,Gray Concrete,gray_concrete,64 Stackable,-,514,64,TRUE\r
+YES,Light Gray Concrete,light_gray_concrete,64 Stackable,-,515,64,TRUE\r
+YES,Cyan Concrete,cyan_concrete,64 Stackable,-,516,64,TRUE\r
+YES,Purple Concrete,purple_concrete,64 Stackable,-,517,64,TRUE\r
+YES,Blue Concrete,blue_concrete,64 Stackable,-,518,64,TRUE\r
+YES,Brown Concrete,brown_concrete,64 Stackable,-,519,64,TRUE\r
+YES,Green Concrete,green_concrete,64 Stackable,-,520,64,TRUE\r
+YES,Red Concrete,red_concrete,64 Stackable,-,521,64,TRUE\r
+YES,Black Concrete,black_concrete,64 Stackable,-,522,64,TRUE\r
+YES,White Concrete Powder,white_concrete_powder,64 Stackable,-,523,64,TRUE\r
+YES,Orange Concrete Powder,orange_concrete_powder,64 Stackable,-,524,64,TRUE\r
+YES,Magenta Concrete Powder,magenta_concrete_powder,64 Stackable,-,525,64,TRUE\r
+YES,Light Blue Concrete Powder,light_blue_concrete_powder,64 Stackable,-,526,64,TRUE\r
+YES,Yellow Concrete Powder,yellow_concrete_powder,64 Stackable,-,527,64,TRUE\r
+YES,Lime Concrete Powder,lime_concrete_powder,64 Stackable,-,528,64,TRUE\r
+YES,Pink Concrete Powder,pink_concrete_powder,64 Stackable,-,529,64,TRUE\r
+YES,Gray Concrete Powder,gray_concrete_powder,64 Stackable,-,530,64,TRUE\r
+YES,Light Gray Concrete Powder,light_gray_concrete_powder,64 Stackable,-,531,64,TRUE\r
+YES,Cyan Concrete Powder,cyan_concrete_powder,64 Stackable,-,532,64,TRUE\r
+YES,Purple Concrete Powder,purple_concrete_powder,64 Stackable,-,533,64,TRUE\r
+YES,Blue Concrete Powder,blue_concrete_powder,64 Stackable,-,534,64,TRUE\r
+YES,Brown Concrete Powder,brown_concrete_powder,64 Stackable,-,535,64,TRUE\r
+YES,Green Concrete Powder,green_concrete_powder,64 Stackable,-,536,64,TRUE\r
+YES,Red Concrete Powder,red_concrete_powder,64 Stackable,-,537,64,TRUE\r
+YES,Black Concrete Powder,black_concrete_powder,64 Stackable,-,538,64,TRUE\r
+YES,Turtle Egg,turtle_egg,64 Stackable,-,539,64,TRUE\r
+YES,Dead Tube Coral Block,dead_tube_coral_block,64 Stackable,-,540,64,TRUE\r
+YES,Dead Brain Coral Block,dead_brain_coral_block,64 Stackable,-,541,64,TRUE\r
+YES,Dead Bubble Coral Block,dead_bubble_coral_block,64 Stackable,-,542,64,TRUE\r
+YES,Dead Fire Coral Block,dead_fire_coral_block,64 Stackable,-,543,64,TRUE\r
+YES,Dead Horn Coral Block,dead_horn_coral_block,64 Stackable,-,544,64,TRUE\r
+YES,Tube Coral Block,tube_coral_block,64 Stackable,-,545,64,TRUE\r
+YES,Brain Coral Block,brain_coral_block,64 Stackable,-,546,64,TRUE\r
+YES,Bubble Coral Block,bubble_coral_block,64 Stackable,-,547,64,TRUE\r
+YES,Fire Coral Block,fire_coral_block,64 Stackable,-,548,64,TRUE\r
+YES,Horn Coral Block,horn_coral_block,64 Stackable,-,549,64,TRUE\r
+YES,Tube Coral,tube_coral,64 Stackable,-,550,64,TRUE\r
+YES,Brain Coral,brain_coral,64 Stackable,-,551,64,TRUE\r
+YES,Bubble Coral,bubble_coral,64 Stackable,-,552,64,TRUE\r
+YES,Fire Coral,fire_coral,64 Stackable,-,553,64,TRUE\r
+YES,Horn Coral,horn_coral,64 Stackable,-,554,64,TRUE\r
+YES,Dead Brain Coral,dead_brain_coral,64 Stackable,-,555,64,TRUE\r
+YES,Dead Bubble Coral,dead_bubble_coral,64 Stackable,-,556,64,TRUE\r
+YES,Dead Fire Coral,dead_fire_coral,64 Stackable,-,557,64,TRUE\r
+YES,Dead Horn Coral,dead_horn_coral,64 Stackable,-,558,64,TRUE\r
+YES,Dead Tube Coral,dead_tube_coral,64 Stackable,-,559,64,TRUE\r
+YES,Tube Coral Fan,tube_coral_fan,64 Stackable,-,560,64,TRUE\r
+YES,Brain Coral Fan,brain_coral_fan,64 Stackable,-,561,64,TRUE\r
+YES,Bubble Coral Fan,bubble_coral_fan,64 Stackable,-,562,64,TRUE\r
+YES,Fire Coral Fan,fire_coral_fan,64 Stackable,-,563,64,TRUE\r
+YES,Horn Coral Fan,horn_coral_fan,64 Stackable,-,564,64,TRUE\r
+YES,Dead Tube Coral Fan,dead_tube_coral_fan,64 Stackable,-,565,64,TRUE\r
+YES,Dead Brain Coral Fan,dead_brain_coral_fan,64 Stackable,-,566,64,TRUE\r
+YES,Dead Bubble Coral Fan,dead_bubble_coral_fan,64 Stackable,-,567,64,TRUE\r
+YES,Dead Fire Coral Fan,dead_fire_coral_fan,64 Stackable,-,568,64,TRUE\r
+YES,Dead Horn Coral Fan,dead_horn_coral_fan,64 Stackable,-,569,64,TRUE\r
+YES,Blue Ice,blue_ice,64 Stackable,-,570,64,TRUE\r
+YES,Conduit,conduit,64 Stackable,-,571,64,TRUE\r
+YES,Polished Granite Stairs,polished_granite_stairs,64 Stackable,-,572,64,TRUE\r
+YES,Smooth Red Sandstone Stairs,smooth_red_sandstone_stairs,64 Stackable,-,573,64,TRUE\r
+YES,Mossy Stone Brick Stairs,mossy_stone_brick_stairs,64 Stackable,-,574,64,TRUE\r
+YES,Polished Diorite Stairs,polished_diorite_stairs,64 Stackable,-,575,64,TRUE\r
+YES,Mossy Cobblestone Stairs,mossy_cobblestone_stairs,64 Stackable,-,576,64,TRUE\r
+YES,End Stone Brick Stairs,end_stone_brick_stairs,64 Stackable,-,577,64,TRUE\r
+YES,Stone Stairs,stone_stairs,64 Stackable,-,578,64,TRUE\r
+YES,Smooth Sandstone Stairs,smooth_sandstone_stairs,64 Stackable,-,579,64,TRUE\r
+YES,Smooth Quartz Stairs,smooth_quartz_stairs,64 Stackable,-,580,64,TRUE\r
+YES,Granite Stairs,granite_stairs,64 Stackable,-,581,64,TRUE\r
+YES,Andesite Stairs,andesite_stairs,64 Stackable,-,582,64,TRUE\r
+YES,Red Nether Brick Stairs,red_nether_brick_stairs,64 Stackable,-,583,64,TRUE\r
+YES,Polished Andesite Stairs,polished_andesite_stairs,64 Stackable,-,584,64,TRUE\r
+YES,Diorite Stairs,diorite_stairs,64 Stackable,-,585,64,TRUE\r
+YES,Cobbled Deepslate Stairs,cobbled_deepslate_stairs,64 Stackable,-,586,64,TRUE\r
+YES,Polished Deepslate Stairs,polished_deepslate_stairs,64 Stackable,-,587,64,TRUE\r
+YES,Deepslate Brick Stairs,deepslate_brick_stairs,64 Stackable,-,588,64,TRUE\r
+YES,Deepslate Tile Stairs,deepslate_tile_stairs,64 Stackable,-,589,64,TRUE\r
+YES,Polished Granite Slab,polished_granite_slab,64 Stackable,-,590,64,TRUE\r
+YES,Smooth Red Sandstone Slab,smooth_red_sandstone_slab,64 Stackable,-,591,64,TRUE\r
+YES,Mossy Stone Brick Slab,mossy_stone_brick_slab,64 Stackable,-,592,64,TRUE\r
+YES,Polished Diorite Slab,polished_diorite_slab,64 Stackable,-,593,64,TRUE\r
+YES,Mossy Cobblestone Slab,mossy_cobblestone_slab,64 Stackable,-,594,64,TRUE\r
+YES,End Stone Brick Slab,end_stone_brick_slab,64 Stackable,-,595,64,TRUE\r
+YES,Smooth Sandstone Slab,smooth_sandstone_slab,64 Stackable,-,596,64,TRUE\r
+YES,Smooth Quartz Slab,smooth_quartz_slab,64 Stackable,-,597,64,TRUE\r
+YES,Granite Slab,granite_slab,64 Stackable,-,598,64,TRUE\r
+YES,Andesite Slab,andesite_slab,64 Stackable,-,599,64,TRUE\r
+YES,Red Nether Brick Slab,red_nether_brick_slab,64 Stackable,-,600,64,TRUE\r
+YES,Polished Andesite Slab,polished_andesite_slab,64 Stackable,-,601,64,TRUE\r
+YES,Diorite Slab,diorite_slab,64 Stackable,-,602,64,TRUE\r
+YES,Cobbled Deepslate Slab,cobbled_deepslate_slab,64 Stackable,-,603,64,TRUE\r
+YES,Polished Deepslate Slab,polished_deepslate_slab,64 Stackable,-,604,64,TRUE\r
+YES,Deepslate Brick Slab,deepslate_brick_slab,64 Stackable,-,605,64,TRUE\r
+YES,Deepslate Tile Slab,deepslate_tile_slab,64 Stackable,-,606,64,TRUE\r
+YES,Scaffolding,scaffolding,64 Stackable,-,607,64,TRUE\r
+YES,Redstone Dust,redstone,64 Stackable,-,608,64,TRUE\r
+YES,Redstone Torch,redstone_torch,64 Stackable,-,609,64,TRUE\r
+YES,Block of Redstone,redstone_block,64 Stackable,-,610,64,TRUE\r
+YES,Redstone Repeater,repeater,64 Stackable,-,611,64,TRUE\r
+YES,Redstone Comparator,comparator,64 Stackable,-,612,64,TRUE\r
+YES,Piston,piston,64 Stackable,-,613,64,TRUE\r
+YES,Sticky Piston,sticky_piston,64 Stackable,-,614,64,TRUE\r
+YES,Slime Block,slime_block,64 Stackable,-,615,64,TRUE\r
+YES,Honey Block,honey_block,64 Stackable,-,616,64,TRUE\r
+YES,Observer,observer,64 Stackable,-,617,64,TRUE\r
+YES,Hopper,hopper,64 Stackable,-,618,64,TRUE\r
+YES,Dispenser,dispenser,64 Stackable,-,619,64,TRUE\r
+YES,Dropper,dropper,64 Stackable,-,620,64,TRUE\r
+YES,Lectern,lectern,64 Stackable,-,621,64,TRUE\r
+YES,Target,target,64 Stackable,-,622,64,TRUE\r
+YES,Lever,lever,64 Stackable,-,623,64,TRUE\r
+YES,Lightning Rod,lightning_rod,64 Stackable,-,624,64,TRUE\r
+YES,Daylight Detector,daylight_detector,64 Stackable,-,625,64,TRUE\r
+YES,Sculk Sensor,sculk_sensor,64 Stackable,-,626,64,TRUE\r
+YES,Tripwire Hook,tripwire_hook,64 Stackable,-,627,64,TRUE\r
+YES,Trapped Chest,trapped_chest,64 Stackable,-,628,64,TRUE\r
+YES,TNT,tnt,64 Stackable,-,629,64,TRUE\r
+YES,Redstone Lamp,redstone_lamp,64 Stackable,-,630,64,TRUE\r
+YES,Note Block,note_block,64 Stackable,-,631,64,TRUE\r
+YES,Stone Button,stone_button,64 Stackable,-,632,64,TRUE\r
+YES,Polished Blackstone Button,polished_blackstone_button,64 Stackable,-,633,64,TRUE\r
+YES,Oak Button,oak_button,64 Stackable,-,634,64,TRUE\r
+YES,Spruce Button,spruce_button,64 Stackable,-,635,64,TRUE\r
+YES,Birch Button,birch_button,64 Stackable,-,636,64,TRUE\r
+YES,Jungle Button,jungle_button,64 Stackable,-,637,64,TRUE\r
+YES,Acacia Button,acacia_button,64 Stackable,-,638,64,TRUE\r
+YES,Dark Oak Button,dark_oak_button,64 Stackable,-,639,64,TRUE\r
+YES,Mangrove Button,mangrove_button,64 Stackable,-,640,64,TRUE\r
+YES,Crimson Button,crimson_button,64 Stackable,-,641,64,TRUE\r
+YES,Warped Button,warped_button,64 Stackable,-,642,64,TRUE\r
+YES,Stone Pressure Plate,stone_pressure_plate,64 Stackable,-,643,64,TRUE\r
+YES,Polished Blackstone Pressure Plate,polished_blackstone_pressure_plate,64 Stackable,-,644,64,TRUE\r
+YES,Light Weighted Pressure Plate,light_weighted_pressure_plate,64 Stackable,-,645,64,TRUE\r
+YES,Heavy Weighted Pressure Plate,heavy_weighted_pressure_plate,64 Stackable,-,646,64,TRUE\r
+YES,Oak Pressure Plate,oak_pressure_plate,64 Stackable,-,647,64,TRUE\r
+YES,Spruce Pressure Plate,spruce_pressure_plate,64 Stackable,-,648,64,TRUE\r
+YES,Birch Pressure Plate,birch_pressure_plate,64 Stackable,-,649,64,TRUE\r
+YES,Jungle Pressure Plate,jungle_pressure_plate,64 Stackable,-,650,64,TRUE\r
+YES,Acacia Pressure Plate,acacia_pressure_plate,64 Stackable,-,651,64,TRUE\r
+YES,Dark Oak Pressure Plate,dark_oak_pressure_plate,64 Stackable,-,652,64,TRUE\r
+YES,Mangrove Pressure Plate,mangrove_pressure_plate,64 Stackable,-,653,64,TRUE\r
+YES,Crimson Pressure Plate,crimson_pressure_plate,64 Stackable,-,654,64,TRUE\r
+YES,Warped Pressure Plate,warped_pressure_plate,64 Stackable,-,655,64,TRUE\r
+YES,Iron Door,iron_door,64 Stackable,-,656,64,TRUE\r
+YES,Oak Door,oak_door,64 Stackable,-,657,64,TRUE\r
+YES,Spruce Door,spruce_door,64 Stackable,-,658,64,TRUE\r
+YES,Birch Door,birch_door,64 Stackable,-,659,64,TRUE\r
+YES,Jungle Door,jungle_door,64 Stackable,-,660,64,TRUE\r
+YES,Acacia Door,acacia_door,64 Stackable,-,661,64,TRUE\r
+YES,Dark Oak Door,dark_oak_door,64 Stackable,-,662,64,TRUE\r
+YES,Mangrove Door,mangrove_door,64 Stackable,-,663,64,TRUE\r
+YES,Crimson Door,crimson_door,64 Stackable,-,664,64,TRUE\r
+YES,Warped Door,warped_door,64 Stackable,-,665,64,TRUE\r
+YES,Iron Trapdoor,iron_trapdoor,64 Stackable,-,666,64,TRUE\r
+YES,Oak Trapdoor,oak_trapdoor,64 Stackable,-,667,64,TRUE\r
+YES,Spruce Trapdoor,spruce_trapdoor,64 Stackable,-,668,64,TRUE\r
+YES,Birch Trapdoor,birch_trapdoor,64 Stackable,-,669,64,TRUE\r
+YES,Jungle Trapdoor,jungle_trapdoor,64 Stackable,-,670,64,TRUE\r
+YES,Acacia Trapdoor,acacia_trapdoor,64 Stackable,-,671,64,TRUE\r
+YES,Dark Oak Trapdoor,dark_oak_trapdoor,64 Stackable,-,672,64,TRUE\r
+YES,Mangrove Trapdoor,mangrove_trapdoor,64 Stackable,-,673,64,TRUE\r
+YES,Crimson Trapdoor,crimson_trapdoor,64 Stackable,-,674,64,TRUE\r
+YES,Warped Trapdoor,warped_trapdoor,64 Stackable,-,675,64,TRUE\r
+YES,Oak Fence Gate,oak_fence_gate,64 Stackable,-,676,64,TRUE\r
+YES,Spruce Fence Gate,spruce_fence_gate,64 Stackable,-,677,64,TRUE\r
+YES,Birch Fence Gate,birch_fence_gate,64 Stackable,-,678,64,TRUE\r
+YES,Jungle Fence Gate,jungle_fence_gate,64 Stackable,-,679,64,TRUE\r
+YES,Acacia Fence Gate,acacia_fence_gate,64 Stackable,-,680,64,TRUE\r
+YES,Dark Oak Fence Gate,dark_oak_fence_gate,64 Stackable,-,681,64,TRUE\r
+YES,Mangrove Fence Gate,mangrove_fence_gate,64 Stackable,-,682,64,TRUE\r
+YES,Crimson Fence Gate,crimson_fence_gate,64 Stackable,-,683,64,TRUE\r
+YES,Warped Fence Gate,warped_fence_gate,64 Stackable,-,684,64,TRUE\r
+YES,Powered Rail,powered_rail,64 Stackable,-,685,64,TRUE\r
+YES,Detector Rail,detector_rail,64 Stackable,-,686,64,TRUE\r
+YES,Rail,rail,64 Stackable,-,687,64,TRUE\r
+YES,Activator Rail,activator_rail,64 Stackable,-,688,64,TRUE\r
+YES,Saddle,saddle,Unstackable,,689,1,TRUE\r
+YES,Minecart,minecart,Unstackable,,690,1,TRUE\r
+YES,Minecart with Chest,chest_minecart,Unstackable,,691,1,TRUE\r
+YES,Minecart with Furnace,furnace_minecart,Unstackable,,692,1,TRUE\r
+YES,Minecart with TNT,tnt_minecart,Unstackable,,693,1,TRUE\r
+YES,Minecart with Hopper,hopper_minecart,Unstackable,,694,1,TRUE\r
+YES,Carrot on a Stick,carrot_on_a_stick,Unstackable,,695,1,TRUE\r
+YES,Warped Fungus on a Stick,warped_fungus_on_a_stick,Unstackable,,696,1,TRUE\r
+YES,Elytra,elytra,Unstackable,,697,1,TRUE\r
+YES,Oak Boat,oak_boat,Unstackable,,698,1,TRUE\r
+YES,Oak Boat with Chest,oak_chest_boat,Unstackable,,699,1,TRUE\r
+YES,Spruce Boat,spruce_boat,Unstackable,,700,1,TRUE\r
+YES,Spruce Boat with Chest,spruce_chest_boat,Unstackable,,701,1,TRUE\r
+YES,Birch Boat,birch_boat,Unstackable,,702,1,TRUE\r
+YES,Birch Boat with Chest,birch_chest_boat,Unstackable,,703,1,TRUE\r
+YES,Jungle Boat,jungle_boat,Unstackable,,704,1,TRUE\r
+YES,Jungle Boat with Chest,jungle_chest_boat,Unstackable,,705,1,TRUE\r
+YES,Acacia Boat,acacia_boat,Unstackable,,706,1,TRUE\r
+YES,Acacia Boat with Chest,acacia_chest_boat,Unstackable,,707,1,TRUE\r
+YES,Dark Oak Boat,dark_oak_boat,Unstackable,,708,1,TRUE\r
+YES,Dark Oak Boat with Chest,dark_oak_chest_boat,Unstackable,,709,1,TRUE\r
+YES,Mangrove Boat,mangrove_boat,Unstackable,,710,1,TRUE\r
+YES,Mangrove Boat with Chest,mangrove_chest_boat,Unstackable,,711,1,TRUE\r
+YES,Turtle Shell,turtle_helmet,Unstackable,,714,1,TRUE\r
+YES,Scute,scute,64 Stackable,-,715,64,TRUE\r
+YES,Flint and Steel,flint_and_steel,Unstackable,,716,1,TRUE\r
+YES,Apple,apple,64 Stackable,-,717,64,TRUE\r
+YES,Bow,bow,Unstackable,,718,1,TRUE\r
+YES,Arrow,arrow,64 Stackable,-,719,64,TRUE\r
+YES,Coal,coal,64 Stackable,-,720,64,TRUE\r
+YES,Charcoal,charcoal,64 Stackable,-,721,64,TRUE\r
+YES,Diamond,diamond,64 Stackable,-,722,64,TRUE\r
+YES,Emerald,emerald,64 Stackable,-,723,64,TRUE\r
+YES,Lapis Lazuli,lapis_lazuli,64 Stackable,-,724,64,TRUE\r
+YES,Nether Quartz,quartz,64 Stackable,-,725,64,TRUE\r
+YES,Amethyst Shard,amethyst_shard,64 Stackable,-,726,64,TRUE\r
+YES,Raw Iron,raw_iron,64 Stackable,-,727,64,TRUE\r
+YES,Iron Ingot,iron_ingot,64 Stackable,-,728,64,TRUE\r
+YES,Raw Copper,raw_copper,64 Stackable,-,729,64,TRUE\r
+YES,Copper Ingot,copper_ingot,64 Stackable,-,730,64,TRUE\r
+YES,Raw Gold,raw_gold,64 Stackable,-,731,64,TRUE\r
+YES,Gold Ingot,gold_ingot,64 Stackable,-,732,64,TRUE\r
+YES,Netherite Ingot,netherite_ingot,64 Stackable,-,733,64,TRUE\r
+YES,Netherite Scrap,netherite_scrap,64 Stackable,-,734,64,TRUE\r
+YES,Wooden Sword,wooden_sword,Unstackable,,735,1,TRUE\r
+YES,Wooden Shovel,wooden_shovel,Unstackable,,736,1,TRUE\r
+YES,Wooden Pickaxe,wooden_pickaxe,Unstackable,,737,1,TRUE\r
+YES,Wooden Axe,wooden_axe,Unstackable,,738,1,TRUE\r
+YES,Wooden Hoe,wooden_hoe,Unstackable,,739,1,TRUE\r
+YES,Stone Sword,stone_sword,Unstackable,,740,1,TRUE\r
+YES,Stone Shovel,stone_shovel,Unstackable,,741,1,TRUE\r
+YES,Stone Pickaxe,stone_pickaxe,Unstackable,,742,1,TRUE\r
+YES,Stone Axe,stone_axe,Unstackable,,743,1,TRUE\r
+YES,Stone Hoe,stone_hoe,Unstackable,,744,1,TRUE\r
+YES,Golden Sword,golden_sword,Unstackable,,745,1,TRUE\r
+YES,Golden Shovel,golden_shovel,Unstackable,,746,1,TRUE\r
+YES,Golden Pickaxe,golden_pickaxe,Unstackable,,747,1,TRUE\r
+YES,Golden Axe,golden_axe,Unstackable,,748,1,TRUE\r
+YES,Golden Hoe,golden_hoe,Unstackable,,749,1,TRUE\r
+YES,Iron Sword,iron_sword,Unstackable,,750,1,TRUE\r
+YES,Iron Shovel,iron_shovel,Unstackable,,751,1,TRUE\r
+YES,Iron Pickaxe,iron_pickaxe,Unstackable,,752,1,TRUE\r
+YES,Iron Axe,iron_axe,Unstackable,,753,1,TRUE\r
+YES,Iron Hoe,iron_hoe,Unstackable,,754,1,TRUE\r
+YES,Diamond Sword,diamond_sword,Unstackable,,755,1,TRUE\r
+YES,Diamond Shovel,diamond_shovel,Unstackable,,756,1,TRUE\r
+YES,Diamond Pickaxe,diamond_pickaxe,Unstackable,,757,1,TRUE\r
+YES,Diamond Axe,diamond_axe,Unstackable,,758,1,TRUE\r
+YES,Diamond Hoe,diamond_hoe,Unstackable,,759,1,TRUE\r
+YES,Netherite Sword,netherite_sword,Unstackable,,760,1,TRUE\r
+YES,Netherite Shovel,netherite_shovel,Unstackable,,761,1,TRUE\r
+YES,Netherite Pickaxe,netherite_pickaxe,Unstackable,,762,1,TRUE\r
+YES,Netherite Axe,netherite_axe,Unstackable,,763,1,TRUE\r
+YES,Netherite Hoe,netherite_hoe,Unstackable,,764,1,TRUE\r
+YES,Stick,stick,64 Stackable,-,765,64,TRUE\r
+YES,Bowl,bowl,64 Stackable,-,766,64,TRUE\r
+YES,Mushroom Stew,mushroom_stew,Unstackable,,767,1,TRUE\r
+YES,String,string,64 Stackable,-,768,64,TRUE\r
+YES,Feather,feather,64 Stackable,-,769,64,TRUE\r
+YES,Gunpowder,gunpowder,64 Stackable,-,770,64,TRUE\r
+YES,Wheat Seeds,wheat_seeds,64 Stackable,-,771,64,TRUE\r
+YES,Wheat,wheat,64 Stackable,-,772,64,TRUE\r
+YES,Bread,bread,64 Stackable,-,773,64,TRUE\r
+YES,Leather Cap,leather_helmet,Unstackable,,774,1,TRUE\r
+YES,Leather Tunic,leather_chestplate,Unstackable,,775,1,TRUE\r
+YES,Leather Pants,leather_leggings,Unstackable,,776,1,TRUE\r
+YES,Leather Boots,leather_boots,Unstackable,,777,1,TRUE\r
+YES,Chainmail Helmet,chainmail_helmet,Unstackable,,778,1,TRUE\r
+YES,Chainmail Chestplate,chainmail_chestplate,Unstackable,,779,1,TRUE\r
+YES,Chainmail Leggings,chainmail_leggings,Unstackable,,780,1,TRUE\r
+YES,Chainmail Boots,chainmail_boots,Unstackable,,781,1,TRUE\r
+YES,Iron Helmet,iron_helmet,Unstackable,,782,1,TRUE\r
+YES,Iron Chestplate,iron_chestplate,Unstackable,,783,1,TRUE\r
+YES,Iron Leggings,iron_leggings,Unstackable,,784,1,TRUE\r
+YES,Iron Boots,iron_boots,Unstackable,,785,1,TRUE\r
+YES,Diamond Helmet,diamond_helmet,Unstackable,,786,1,TRUE\r
+YES,Diamond Chestplate,diamond_chestplate,Unstackable,,787,1,TRUE\r
+YES,Diamond Leggings,diamond_leggings,Unstackable,,788,1,TRUE\r
+YES,Diamond Boots,diamond_boots,Unstackable,,789,1,TRUE\r
+YES,Golden Helmet,golden_helmet,Unstackable,,790,1,TRUE\r
+YES,Golden Chestplate,golden_chestplate,Unstackable,,791,1,TRUE\r
+YES,Golden Leggings,golden_leggings,Unstackable,,792,1,TRUE\r
+YES,Golden Boots,golden_boots,Unstackable,,793,1,TRUE\r
+YES,Netherite Helmet,netherite_helmet,Unstackable,,794,1,TRUE\r
+YES,Netherite Chestplate,netherite_chestplate,Unstackable,,795,1,TRUE\r
+YES,Netherite Leggings,netherite_leggings,Unstackable,,796,1,TRUE\r
+YES,Netherite Boots,netherite_boots,Unstackable,,797,1,TRUE\r
+YES,Flint,flint,64 Stackable,-,798,64,TRUE\r
+YES,Raw Porkchop,porkchop,64 Stackable,-,799,64,TRUE\r
+YES,Cooked Porkchop,cooked_porkchop,64 Stackable,-,800,64,TRUE\r
+YES,Painting,painting,64 Stackable,-,801,64,TRUE\r
+YES,Golden Apple,golden_apple,64 Stackable,-,802,64,TRUE\r
+YES,Enchanted Golden Apple,enchanted_golden_apple,64 Stackable,-,803,64,TRUE\r
+YES,Oak Sign,oak_sign,16 Stackable,-,804,16,TRUE\r
+YES,Spruce Sign,spruce_sign,16 Stackable,-,805,16,TRUE\r
+YES,Birch Sign,birch_sign,16 Stackable,-,806,16,TRUE\r
+YES,Jungle Sign,jungle_sign,16 Stackable,-,807,16,TRUE\r
+YES,Acacia Sign,acacia_sign,16 Stackable,-,808,16,TRUE\r
+YES,Dark Oak Sign,dark_oak_sign,16 Stackable,-,809,16,TRUE\r
+YES,Mangrove Sign,mangrove_sign,16 Stackable,-,810,16,TRUE\r
+YES,Crimson Sign,crimson_sign,16 Stackable,-,811,16,TRUE\r
+YES,Warped Sign,warped_sign,16 Stackable,-,812,16,TRUE\r
+YES,Bucket,bucket,16 Stackable,-,813,16,TRUE\r
+YES,Water Bucket,water_bucket,Unstackable,,814,1,TRUE\r
+YES,Lava Bucket,lava_bucket,Unstackable,,815,1,TRUE\r
+YES,Powder Snow Bucket,powder_snow_bucket,Unstackable,,816,1,TRUE\r
+YES,Snowball,snowball,16 Stackable,-,817,16,TRUE\r
+YES,Leather,leather,64 Stackable,-,818,64,TRUE\r
+YES,Milk Bucket,milk_bucket,Unstackable,,819,1,TRUE\r
+YES,Bucket of Pufferfish,pufferfish_bucket,Unstackable,,820,1,TRUE\r
+YES,Bucket of Salmon,salmon_bucket,Unstackable,,821,1,TRUE\r
+YES,Bucket of Cod,cod_bucket,Unstackable,,822,1,TRUE\r
+YES,Bucket of Tropical Fish,tropical_fish_bucket,Unstackable,,823,1,TRUE\r
+YES,Bucket of Axolotl,axolotl_bucket,Unstackable,,824,1,TRUE\r
+YES,Bucket of Tadpole,tadpole_bucket,Unstackable,,825,1,TRUE\r
+YES,Brick,brick,64 Stackable,-,826,64,TRUE\r
+YES,Clay Ball,clay_ball,64 Stackable,-,827,64,TRUE\r
+YES,Dried Kelp Block,dried_kelp_block,64 Stackable,-,828,64,TRUE\r
+YES,Paper,paper,64 Stackable,-,829,64,TRUE\r
+YES,Book,book,64 Stackable,-,830,64,TRUE\r
+YES,Slimeball,slime_ball,64 Stackable,-,831,64,TRUE\r
+YES,Egg,egg,16 Stackable,-,832,16,TRUE\r
+YES,Compass,compass,64 Stackable,-,833,64,TRUE\r
+YES,Recovery Compass,recovery_compass,64 Stackable,-,834,64,TRUE\r
+YES,Fishing Rod,fishing_rod,Unstackable,,836,1,TRUE\r
+YES,Clock,clock,64 Stackable,-,837,64,TRUE\r
+YES,Spyglass,spyglass,Unstackable,,838,1,TRUE\r
+YES,Glowstone Dust,glowstone_dust,64 Stackable,-,839,64,TRUE\r
+YES,Raw Cod,cod,64 Stackable,-,840,64,TRUE\r
+YES,Raw Salmon,salmon,64 Stackable,-,841,64,TRUE\r
+YES,Tropical Fish,tropical_fish,64 Stackable,-,842,64,TRUE\r
+YES,Pufferfish,pufferfish,64 Stackable,-,843,64,TRUE\r
+YES,Cooked Cod,cooked_cod,64 Stackable,-,844,64,TRUE\r
+YES,Cooked Salmon,cooked_salmon,64 Stackable,-,845,64,TRUE\r
+YES,Ink Sac,ink_sac,64 Stackable,-,846,64,TRUE\r
+YES,Glow Ink Sac,glow_ink_sac,64 Stackable,-,847,64,TRUE\r
+YES,Cocoa Beans,cocoa_beans,64 Stackable,-,848,64,TRUE\r
+YES,White Dye,white_dye,64 Stackable,-,849,64,TRUE\r
+YES,Orange Dye,orange_dye,64 Stackable,-,850,64,TRUE\r
+YES,Magenta Dye,magenta_dye,64 Stackable,-,851,64,TRUE\r
+YES,Light Blue Dye,light_blue_dye,64 Stackable,-,852,64,TRUE\r
+YES,Yellow Dye,yellow_dye,64 Stackable,-,853,64,TRUE\r
+YES,Lime Dye,lime_dye,64 Stackable,-,854,64,TRUE\r
+YES,Pink Dye,pink_dye,64 Stackable,-,855,64,TRUE\r
+YES,Gray Dye,gray_dye,64 Stackable,-,856,64,TRUE\r
+YES,Light Gray Dye,light_gray_dye,64 Stackable,-,857,64,TRUE\r
+YES,Cyan Dye,cyan_dye,64 Stackable,-,858,64,TRUE\r
+YES,Purple Dye,purple_dye,64 Stackable,-,859,64,TRUE\r
+YES,Blue Dye,blue_dye,64 Stackable,-,860,64,TRUE\r
+YES,Brown Dye,brown_dye,64 Stackable,-,861,64,TRUE\r
+YES,Green Dye,green_dye,64 Stackable,-,862,64,TRUE\r
+YES,Red Dye,red_dye,64 Stackable,-,863,64,TRUE\r
+YES,Black Dye,black_dye,64 Stackable,-,864,64,TRUE\r
+YES,Bone Meal,bone_meal,64 Stackable,-,865,64,TRUE\r
+YES,Bone,bone,64 Stackable,-,866,64,TRUE\r
+YES,Sugar,sugar,64 Stackable,-,867,64,TRUE\r
+YES,Cake,cake,Unstackable,,868,1,TRUE\r
+YES,White Bed,white_bed,Unstackable,,869,1,TRUE\r
+YES,Orange Bed,orange_bed,Unstackable,,870,1,TRUE\r
+YES,Magenta Bed,magenta_bed,Unstackable,,871,1,TRUE\r
+YES,Light Blue Bed,light_blue_bed,Unstackable,,872,1,TRUE\r
+YES,Yellow Bed,yellow_bed,Unstackable,,873,1,TRUE\r
+YES,Lime Bed,lime_bed,Unstackable,,874,1,TRUE\r
+YES,Pink Bed,pink_bed,Unstackable,,875,1,TRUE\r
+YES,Gray Bed,gray_bed,Unstackable,,876,1,TRUE\r
+YES,Light Gray Bed,light_gray_bed,Unstackable,,877,1,TRUE\r
+YES,Cyan Bed,cyan_bed,Unstackable,,878,1,TRUE\r
+YES,Purple Bed,purple_bed,Unstackable,,879,1,TRUE\r
+YES,Blue Bed,blue_bed,Unstackable,,880,1,TRUE\r
+YES,Brown Bed,brown_bed,Unstackable,,881,1,TRUE\r
+YES,Green Bed,green_bed,Unstackable,,882,1,TRUE\r
+YES,Red Bed,red_bed,Unstackable,,883,1,TRUE\r
+YES,Black Bed,black_bed,Unstackable,,884,1,TRUE\r
+YES,Cookie,cookie,64 Stackable,-,885,64,TRUE\r
+YES,Map,filled_map,64 Stackable,-,886,64,TRUE\r
+YES,Shears,shears,Unstackable,,887,1,TRUE\r
+YES,Melon Slice,melon_slice,64 Stackable,-,888,64,TRUE\r
+YES,Dried Kelp,dried_kelp,64 Stackable,-,889,64,TRUE\r
+YES,Pumpkin Seeds,pumpkin_seeds,64 Stackable,-,890,64,TRUE\r
+YES,Melon Seeds,melon_seeds,64 Stackable,-,891,64,TRUE\r
+YES,Raw Beef,beef,64 Stackable,-,892,64,TRUE\r
+YES,Steak,cooked_beef,64 Stackable,-,893,64,TRUE\r
+YES,Raw Chicken,chicken,64 Stackable,-,894,64,TRUE\r
+YES,Cooked Chicken,cooked_chicken,64 Stackable,-,895,64,TRUE\r
+YES,Rotten Flesh,rotten_flesh,64 Stackable,-,896,64,TRUE\r
+YES,Ender Pearl,ender_pearl,16 Stackable,-,897,16,TRUE\r
+YES,Blaze Rod,blaze_rod,64 Stackable,-,898,64,TRUE\r
+YES,Ghast Tear,ghast_tear,64 Stackable,-,899,64,TRUE\r
+YES,Gold Nugget,gold_nugget,64 Stackable,-,900,64,TRUE\r
+YES,Nether Wart,nether_wart,64 Stackable,-,901,64,TRUE\r
+YES,Potion,potion,Unstackable,,902,1,TRUE\r
+YES,Glass Bottle,glass_bottle,64 Stackable,-,903,64,TRUE\r
+YES,Spider Eye,spider_eye,64 Stackable,-,904,64,TRUE\r
+YES,Fermented Spider Eye,fermented_spider_eye,64 Stackable,-,905,64,TRUE\r
+YES,Blaze Powder,blaze_powder,64 Stackable,-,906,64,TRUE\r
+YES,Magma Cream,magma_cream,64 Stackable,-,907,64,TRUE\r
+YES,Brewing Stand,brewing_stand,64 Stackable,-,908,64,TRUE\r
+YES,Cauldron,cauldron,64 Stackable,-,909,64,TRUE\r
+YES,Eye of Ender,ender_eye,64 Stackable,-,910,64,TRUE\r
+YES,Glistering Melon Slice,glistering_melon_slice,64 Stackable,-,911,64,TRUE\r
+YES,Bottle o' Enchanting,experience_bottle,64 Stackable,-,983,64,TRUE\r
+YES,Fire Charge,fire_charge,64 Stackable,-,984,64,TRUE\r
+YES,Book and Quill,writable_book,Unstackable,,985,1,TRUE\r
+YES,Written Book,written_book,16 Stackable,-,986,16,TRUE\r
+YES,Item Frame,item_frame,64 Stackable,-,987,64,TRUE\r
+YES,Glow Item Frame,glow_item_frame,64 Stackable,-,988,64,TRUE\r
+YES,Flower Pot,flower_pot,64 Stackable,-,989,64,TRUE\r
+YES,Carrot,carrot,64 Stackable,-,990,64,TRUE\r
+YES,Potato,potato,64 Stackable,-,991,64,TRUE\r
+YES,Baked Potato,baked_potato,64 Stackable,-,992,64,TRUE\r
+YES,Poisonous Potato,poisonous_potato,64 Stackable,-,993,64,TRUE\r
+YES,Empty Map,map,64 Stackable,-,994,64,TRUE\r
+YES,Golden Carrot,golden_carrot,64 Stackable,-,995,64,TRUE\r
+YES,Skeleton Skull,skeleton_skull,64 Stackable,-,996,64,TRUE\r
+YES,Wither Skeleton Skull,wither_skeleton_skull,64 Stackable,-,997,64,TRUE\r
+YES,Zombie Head,zombie_head,64 Stackable,-,999,64,TRUE\r
+YES,Creeper Head,creeper_head,64 Stackable,-,1000,64,TRUE\r
+YES,Dragon Head,dragon_head,64 Stackable,-,1001,64,TRUE\r
+YES,Nether Star,nether_star,64 Stackable,-,1002,64,TRUE\r
+YES,Pumpkin Pie,pumpkin_pie,64 Stackable,-,1003,64,TRUE\r
+YES,Firework Rocket,firework_rocket,64 Stackable,-,1004,64,TRUE\r
+YES,Firework Star,firework_star,64 Stackable,-,1005,64,TRUE\r
+YES,Enchanted Book,enchanted_book,Unstackable,,1006,1,TRUE\r
+YES,Nether Brick,nether_brick,64 Stackable,-,1007,64,TRUE\r
+YES,Prismarine Shard,prismarine_shard,64 Stackable,-,1008,64,TRUE\r
+YES,Prismarine Crystals,prismarine_crystals,64 Stackable,-,1009,64,TRUE\r
+YES,Raw Rabbit,rabbit,64 Stackable,-,1010,64,TRUE\r
+YES,Cooked Rabbit,cooked_rabbit,64 Stackable,-,1011,64,TRUE\r
+YES,Rabbit Stew,rabbit_stew,Unstackable,,1012,1,TRUE\r
+YES,Rabbit's Foot,rabbit_foot,64 Stackable,-,1013,64,TRUE\r
+YES,Rabbit Hide,rabbit_hide,64 Stackable,-,1014,64,TRUE\r
+YES,Armor Stand,armor_stand,16 Stackable,-,1015,16,TRUE\r
+YES,Iron Horse Armor,iron_horse_armor,Unstackable,,1016,1,TRUE\r
+YES,Golden Horse Armor,golden_horse_armor,Unstackable,,1017,1,TRUE\r
+YES,Diamond Horse Armor,diamond_horse_armor,Unstackable,,1018,1,TRUE\r
+YES,Leather Horse Armor,leather_horse_armor,Unstackable,,1019,1,TRUE\r
+YES,Lead,lead,64 Stackable,-,1020,64,TRUE\r
+YES,Name Tag,name_tag,64 Stackable,-,1021,64,TRUE\r
+YES,Raw Mutton,mutton,64 Stackable,-,1023,64,TRUE\r
+YES,Cooked Mutton,cooked_mutton,64 Stackable,-,1024,64,TRUE\r
+YES,White Banner,white_banner,16 Stackable,-,1025,16,TRUE\r
+YES,Orange Banner,orange_banner,16 Stackable,-,1026,16,TRUE\r
+YES,Magenta Banner,magenta_banner,16 Stackable,-,1027,16,TRUE\r
+YES,Light Blue Banner,light_blue_banner,16 Stackable,-,1028,16,TRUE\r
+YES,Yellow Banner,yellow_banner,16 Stackable,-,1029,16,TRUE\r
+YES,Lime Banner,lime_banner,16 Stackable,-,1030,16,TRUE\r
+YES,Pink Banner,pink_banner,16 Stackable,-,1031,16,TRUE\r
+YES,Gray Banner,gray_banner,16 Stackable,-,1032,16,TRUE\r
+YES,Light Gray Banner,light_gray_banner,16 Stackable,-,1033,16,TRUE\r
+YES,Cyan Banner,cyan_banner,16 Stackable,-,1034,16,TRUE\r
+YES,Purple Banner,purple_banner,16 Stackable,-,1035,16,TRUE\r
+YES,Blue Banner,blue_banner,16 Stackable,-,1036,16,TRUE\r
+YES,Brown Banner,brown_banner,16 Stackable,-,1037,16,TRUE\r
+YES,Green Banner,green_banner,16 Stackable,-,1038,16,TRUE\r
+YES,Red Banner,red_banner,16 Stackable,-,1039,16,TRUE\r
+YES,Black Banner,black_banner,16 Stackable,-,1040,16,TRUE\r
+YES,End Crystal,end_crystal,64 Stackable,-,1041,64,TRUE\r
+YES,Chorus Fruit,chorus_fruit,64 Stackable,-,1042,64,TRUE\r
+YES,Popped Chorus Fruit,popped_chorus_fruit,64 Stackable,-,1043,64,TRUE\r
+YES,Beetroot,beetroot,64 Stackable,-,1044,64,TRUE\r
+YES,Beetroot Seeds,beetroot_seeds,64 Stackable,-,1045,64,TRUE\r
+YES,Beetroot Soup,beetroot_soup,Unstackable,,1046,1,TRUE\r
+YES,Dragon's Breath,dragon_breath,64 Stackable,-,1047,64,TRUE\r
+YES,Splash Potion,splash_potion,Unstackable,,1048,1,TRUE\r
+YES,Spectral Arrow,spectral_arrow,64 Stackable,-,1049,64,TRUE\r
+YES,Tipped Arrow,tipped_arrow,64 Stackable,-,1050,64,TRUE\r
+YES,Lingering Potion,lingering_potion,Unstackable,,1051,1,TRUE\r
+YES,Shield,shield,Unstackable,,1052,1,TRUE\r
+YES,Totem of Undying,totem_of_undying,Unstackable,,1053,1,TRUE\r
+YES,Shulker Shell,shulker_shell,64 Stackable,-,1054,64,TRUE\r
+YES,Iron Nugget,iron_nugget,64 Stackable,-,1055,64,TRUE\r
+YES,Music Disc,music_disc_13,Unstackable,,1058,1,TRUE\r
+YES,Music Disc,music_disc_cat,Unstackable,,1059,1,TRUE\r
+YES,Music Disc,music_disc_blocks,Unstackable,,1060,1,TRUE\r
+YES,Music Disc,music_disc_chirp,Unstackable,,1061,1,TRUE\r
+YES,Music Disc,music_disc_far,Unstackable,,1062,1,TRUE\r
+YES,Music Disc,music_disc_mall,Unstackable,,1063,1,TRUE\r
+YES,Music Disc,music_disc_mellohi,Unstackable,,1064,1,TRUE\r
+YES,Music Disc,music_disc_stal,Unstackable,,1065,1,TRUE\r
+YES,Music Disc,music_disc_strad,Unstackable,,1066,1,TRUE\r
+YES,Music Disc,music_disc_ward,Unstackable,,1067,1,TRUE\r
+YES,Music Disc,music_disc_11,Unstackable,,1068,1,TRUE\r
+YES,Music Disc,music_disc_wait,Unstackable,,1069,1,TRUE\r
+YES,Music Disc,music_disc_otherside,Unstackable,,1070,1,TRUE\r
+YES,Music Disc,music_disc_5,Unstackable,,1071,1,TRUE\r
+YES,Music Disc,music_disc_pigstep,Unstackable,,1072,1,TRUE\r
+YES,Disc Fragment,disc_fragment_5,64 Stackable,-,1073,64,TRUE\r
+YES,Trident,trident,Unstackable,,1074,1,TRUE\r
+YES,Phantom Membrane,phantom_membrane,64 Stackable,-,1075,64,TRUE\r
+YES,Nautilus Shell,nautilus_shell,64 Stackable,-,1076,64,TRUE\r
+YES,Heart of the Sea,heart_of_the_sea,64 Stackable,-,1077,64,TRUE\r
+YES,Crossbow,crossbow,Unstackable,,1078,1,TRUE\r
+YES,Suspicious Stew,suspicious_stew,Unstackable,,1079,1,TRUE\r
+YES,Loom,loom,64 Stackable,-,1080,64,TRUE\r
+YES,Banner Pattern,flower_banner_pattern,Unstackable,,1081,1,TRUE\r
+YES,Banner Pattern,creeper_banner_pattern,Unstackable,,1082,1,TRUE\r
+YES,Banner Pattern,skull_banner_pattern,Unstackable,,1083,1,TRUE\r
+YES,Banner Pattern,mojang_banner_pattern,Unstackable,,1084,1,TRUE\r
+YES,Banner Pattern,globe_banner_pattern,Unstackable,,1085,1,TRUE\r
+YES,Banner Pattern,piglin_banner_pattern,Unstackable,,1086,1,TRUE\r
+YES,Goat Horn,goat_horn,Unstackable,,1087,1,TRUE\r
+YES,Composter,composter,64 Stackable,-,1088,64,TRUE\r
+YES,Barrel,barrel,64 Stackable,-,1089,64,TRUE\r
+YES,Smoker,smoker,64 Stackable,-,1090,64,TRUE\r
+YES,Blast Furnace,blast_furnace,64 Stackable,-,1091,64,TRUE\r
+YES,Cartography Table,cartography_table,64 Stackable,-,1092,64,TRUE\r
+YES,Fletching Table,fletching_table,64 Stackable,-,1093,64,TRUE\r
+YES,Grindstone,grindstone,64 Stackable,-,1094,64,TRUE\r
+YES,Smithing Table,smithing_table,64 Stackable,-,1095,64,TRUE\r
+YES,Stonecutter,stonecutter,64 Stackable,-,1096,64,TRUE\r
+YES,Bell,bell,64 Stackable,-,1097,64,TRUE\r
+YES,Lantern,lantern,64 Stackable,-,1098,64,TRUE\r
+YES,Soul Lantern,soul_lantern,64 Stackable,-,1099,64,TRUE\r
+YES,Sweet Berries,sweet_berries,64 Stackable,-,1100,64,TRUE\r
+YES,Glow Berries,glow_berries,64 Stackable,-,1101,64,TRUE\r
+YES,Campfire,campfire,64 Stackable,-,1102,64,TRUE\r
+YES,Soul Campfire,soul_campfire,64 Stackable,-,1103,64,TRUE\r
+YES,Shroomlight,shroomlight,64 Stackable,-,1104,64,TRUE\r
+YES,Honeycomb,honeycomb,64 Stackable,-,1105,64,TRUE\r
+YES,Bee Nest,bee_nest,64 Stackable,-,1106,64,TRUE\r
+YES,Beehive,beehive,64 Stackable,-,1107,64,TRUE\r
+YES,Honey Bottle,honey_bottle,16 Stackable,-,1108,16,TRUE\r
+YES,Honeycomb Block,honeycomb_block,64 Stackable,-,1109,64,TRUE\r
+YES,Lodestone,lodestone,64 Stackable,-,1110,64,TRUE\r
+YES,Crying Obsidian,crying_obsidian,64 Stackable,-,1111,64,TRUE\r
+YES,Blackstone,blackstone,64 Stackable,-,1112,64,TRUE\r
+YES,Blackstone Slab,blackstone_slab,64 Stackable,-,1113,64,TRUE\r
+YES,Blackstone Stairs,blackstone_stairs,64 Stackable,-,1114,64,TRUE\r
+YES,Gilded Blackstone,gilded_blackstone,64 Stackable,-,1115,64,TRUE\r
+YES,Polished Blackstone,polished_blackstone,64 Stackable,-,1116,64,TRUE\r
+YES,Polished Blackstone Slab,polished_blackstone_slab,64 Stackable,-,1117,64,TRUE\r
+YES,Polished Blackstone Stairs,polished_blackstone_stairs,64 Stackable,-,1118,64,TRUE\r
+YES,Chiseled Polished Blackstone,chiseled_polished_blackstone,64 Stackable,-,1119,64,TRUE\r
+YES,Polished Blackstone Bricks,polished_blackstone_bricks,64 Stackable,-,1120,64,TRUE\r
+YES,Polished Blackstone Brick Slab,polished_blackstone_brick_slab,64 Stackable,-,1121,64,TRUE\r
+YES,Polished Blackstone Brick Stairs,polished_blackstone_brick_stairs,64 Stackable,-,1122,64,TRUE\r
+YES,Cracked Polished Blackstone Bricks,cracked_polished_blackstone_bricks,64 Stackable,-,1123,64,TRUE\r
+YES,Respawn Anchor,respawn_anchor,64 Stackable,-,1124,64,TRUE\r
+YES,Candle,candle,64 Stackable,-,1125,64,TRUE\r
+YES,White Candle,white_candle,64 Stackable,-,1126,64,TRUE\r
+YES,Orange Candle,orange_candle,64 Stackable,-,1127,64,TRUE\r
+YES,Magenta Candle,magenta_candle,64 Stackable,-,1128,64,TRUE\r
+YES,Light Blue Candle,light_blue_candle,64 Stackable,-,1129,64,TRUE\r
+YES,Yellow Candle,yellow_candle,64 Stackable,-,1130,64,TRUE\r
+YES,Lime Candle,lime_candle,64 Stackable,-,1131,64,TRUE\r
+YES,Pink Candle,pink_candle,64 Stackable,-,1132,64,TRUE\r
+YES,Gray Candle,gray_candle,64 Stackable,-,1133,64,TRUE\r
+YES,Light Gray Candle,light_gray_candle,64 Stackable,-,1134,64,TRUE\r
+YES,Cyan Candle,cyan_candle,64 Stackable,-,1135,64,TRUE\r
+YES,Purple Candle,purple_candle,64 Stackable,-,1136,64,TRUE\r
+YES,Blue Candle,blue_candle,64 Stackable,-,1137,64,TRUE\r
+YES,Brown Candle,brown_candle,64 Stackable,-,1138,64,TRUE\r
+YES,Green Candle,green_candle,64 Stackable,-,1139,64,TRUE\r
+YES,Red Candle,red_candle,64 Stackable,-,1140,64,TRUE\r
+YES,Black Candle,black_candle,64 Stackable,-,1141,64,TRUE\r
+YES,Small Amethyst Bud,small_amethyst_bud,64 Stackable,-,1142,64,TRUE\r
+YES,Medium Amethyst Bud,medium_amethyst_bud,64 Stackable,-,1143,64,TRUE\r
+YES,Large Amethyst Bud,large_amethyst_bud,64 Stackable,-,1144,64,TRUE\r
+YES,Amethyst Cluster,amethyst_cluster,64 Stackable,-,1145,64,TRUE\r
+YES,Pointed Dripstone,pointed_dripstone,64 Stackable,-,1146,64,TRUE\r
+YES,Ochre Froglight,ochre_froglight,64 Stackable,-,1147,64,TRUE\r
+YES,Verdant Froglight,verdant_froglight,64 Stackable,-,1148,64,TRUE\r
+YES,Pearlescent Froglight,pearlescent_froglight,64 Stackable,-,1149,64,TRUE\r
+YES,Echo Shard,echo_shard,64 Stackable,-,1151,64,TRUE\r
+NO,Bedrock,bedrock,64 Stackable,,39,64,FALSE\r
+NO,Budding Amethyst,budding_amethyst,64 Stackable,,67,64,FALSE\r
+NO,Petrified Oak Slab,petrified_oak_slab,64 Stackable,,227,64,FALSE\r
+NO,Chorus Plant,chorus_plant,64 Stackable,,250,64,FALSE\r
+NO,Spawner,spawner,64 Stackable,,255,64,FALSE\r
+NO,Farmland,farmland,64 Stackable,,258,64,FALSE\r
+NO,Infested Stone,infested_stone,64 Stackable,,288,64,FALSE\r
+NO,Infested Cobblestone,infested_cobblestone,64 Stackable,,289,64,FALSE\r
+NO,Infested Stone Bricks,infested_stone_bricks,64 Stackable,,290,64,FALSE\r
+NO,Infested Mossy Stone Bricks,infested_mossy_stone_bricks,64 Stackable,,291,64,FALSE\r
+NO,Infested Cracked Stone Bricks,infested_cracked_stone_bricks,64 Stackable,,292,64,FALSE\r
+NO,Infested Chiseled Stone Bricks,infested_chiseled_stone_bricks,64 Stackable,,293,64,FALSE\r
+NO,Infested Deepslate,infested_deepslate,64 Stackable,,294,64,FALSE\r
+NO,Reinforced Deepslate,reinforced_deepslate,64 Stackable,,306,64,FALSE\r
+NO,End Portal Frame,end_portal_frame,64 Stackable,,331,64,FALSE\r
+NO,Command Block,command_block,64 Stackable,,347,64,FALSE\r
+NO,Barrier,barrier,64 Stackable,,395,64,FALSE\r
+NO,Light,light,64 Stackable,,396,64,FALSE\r
+NO,Dirt Path,dirt_path,64 Stackable,,416,64,FALSE\r
+NO,Repeating Command Block,repeating_command_block,64 Stackable,,466,64,FALSE\r
+NO,Chain Command Block,chain_command_block,64 Stackable,,467,64,FALSE\r
+NO,Structure Void,structure_void,64 Stackable,,473,64,FALSE\r
+NO,Structure Block,structure_block,64 Stackable,,712,64,FALSE\r
+NO,Jigsaw Block,jigsaw,64 Stackable,,713,64,FALSE\r
+NO,Bundle,bundle,Unstackable,,835,1,FALSE\r
+NO,Allay Spawn Egg,allay_spawn_egg,64 Stackable,,912,64,FALSE\r
+NO,Axolotl Spawn Egg,axolotl_spawn_egg,64 Stackable,,913,64,FALSE\r
+NO,Bat Spawn Egg,bat_spawn_egg,64 Stackable,,914,64,FALSE\r
+NO,Bee Spawn Egg,bee_spawn_egg,64 Stackable,,915,64,FALSE\r
+NO,Blaze Spawn Egg,blaze_spawn_egg,64 Stackable,,916,64,FALSE\r
+NO,Cat Spawn Egg,cat_spawn_egg,64 Stackable,,917,64,FALSE\r
+NO,Cave Spider Spawn Egg,cave_spider_spawn_egg,64 Stackable,,918,64,FALSE\r
+NO,Chicken Spawn Egg,chicken_spawn_egg,64 Stackable,,919,64,FALSE\r
+NO,Cod Spawn Egg,cod_spawn_egg,64 Stackable,,920,64,FALSE\r
+NO,Cow Spawn Egg,cow_spawn_egg,64 Stackable,,921,64,FALSE\r
+NO,Creeper Spawn Egg,creeper_spawn_egg,64 Stackable,,922,64,FALSE\r
+NO,Dolphin Spawn Egg,dolphin_spawn_egg,64 Stackable,,923,64,FALSE\r
+NO,Donkey Spawn Egg,donkey_spawn_egg,64 Stackable,,924,64,FALSE\r
+NO,Drowned Spawn Egg,drowned_spawn_egg,64 Stackable,,925,64,FALSE\r
+NO,Elder Guardian Spawn Egg,elder_guardian_spawn_egg,64 Stackable,,926,64,FALSE\r
+NO,Enderman Spawn Egg,enderman_spawn_egg,64 Stackable,,927,64,FALSE\r
+NO,Endermite Spawn Egg,endermite_spawn_egg,64 Stackable,,928,64,FALSE\r
+NO,Evoker Spawn Egg,evoker_spawn_egg,64 Stackable,,929,64,FALSE\r
+NO,Fox Spawn Egg,fox_spawn_egg,64 Stackable,,930,64,FALSE\r
+NO,Frog Spawn Egg,frog_spawn_egg,64 Stackable,,931,64,FALSE\r
+NO,Ghast Spawn Egg,ghast_spawn_egg,64 Stackable,,932,64,FALSE\r
+NO,Glow Squid Spawn Egg,glow_squid_spawn_egg,64 Stackable,,933,64,FALSE\r
+NO,Goat Spawn Egg,goat_spawn_egg,64 Stackable,,934,64,FALSE\r
+NO,Guardian Spawn Egg,guardian_spawn_egg,64 Stackable,,935,64,FALSE\r
+NO,Hoglin Spawn Egg,hoglin_spawn_egg,64 Stackable,,936,64,FALSE\r
+NO,Horse Spawn Egg,horse_spawn_egg,64 Stackable,,937,64,FALSE\r
+NO,Husk Spawn Egg,husk_spawn_egg,64 Stackable,,938,64,FALSE\r
+NO,Llama Spawn Egg,llama_spawn_egg,64 Stackable,,939,64,FALSE\r
+NO,Magma Cube Spawn Egg,magma_cube_spawn_egg,64 Stackable,,940,64,FALSE\r
+NO,Mooshroom Spawn Egg,mooshroom_spawn_egg,64 Stackable,,941,64,FALSE\r
+NO,Mule Spawn Egg,mule_spawn_egg,64 Stackable,,942,64,FALSE\r
+NO,Ocelot Spawn Egg,ocelot_spawn_egg,64 Stackable,,943,64,FALSE\r
+NO,Panda Spawn Egg,panda_spawn_egg,64 Stackable,,944,64,FALSE\r
+NO,Parrot Spawn Egg,parrot_spawn_egg,64 Stackable,,945,64,FALSE\r
+NO,Phantom Spawn Egg,phantom_spawn_egg,64 Stackable,,946,64,FALSE\r
+NO,Pig Spawn Egg,pig_spawn_egg,64 Stackable,,947,64,FALSE\r
+NO,Piglin Spawn Egg,piglin_spawn_egg,64 Stackable,,948,64,FALSE\r
+NO,Piglin Brute Spawn Egg,piglin_brute_spawn_egg,64 Stackable,,949,64,FALSE\r
+NO,Pillager Spawn Egg,pillager_spawn_egg,64 Stackable,,950,64,FALSE\r
+NO,Polar Bear Spawn Egg,polar_bear_spawn_egg,64 Stackable,,951,64,FALSE\r
+NO,Pufferfish Spawn Egg,pufferfish_spawn_egg,64 Stackable,,952,64,FALSE\r
+NO,Rabbit Spawn Egg,rabbit_spawn_egg,64 Stackable,,953,64,FALSE\r
+NO,Ravager Spawn Egg,ravager_spawn_egg,64 Stackable,,954,64,FALSE\r
+NO,Salmon Spawn Egg,salmon_spawn_egg,64 Stackable,,955,64,FALSE\r
+NO,Sheep Spawn Egg,sheep_spawn_egg,64 Stackable,,956,64,FALSE\r
+NO,Shulker Spawn Egg,shulker_spawn_egg,64 Stackable,,957,64,FALSE\r
+NO,Silverfish Spawn Egg,silverfish_spawn_egg,64 Stackable,,958,64,FALSE\r
+NO,Skeleton Spawn Egg,skeleton_spawn_egg,64 Stackable,,959,64,FALSE\r
+NO,Skeleton Horse Spawn Egg,skeleton_horse_spawn_egg,64 Stackable,,960,64,FALSE\r
+NO,Slime Spawn Egg,slime_spawn_egg,64 Stackable,,961,64,FALSE\r
+NO,Spider Spawn Egg,spider_spawn_egg,64 Stackable,,962,64,FALSE\r
+NO,Squid Spawn Egg,squid_spawn_egg,64 Stackable,,963,64,FALSE\r
+NO,Stray Spawn Egg,stray_spawn_egg,64 Stackable,,964,64,FALSE\r
+NO,Strider Spawn Egg,strider_spawn_egg,64 Stackable,,965,64,FALSE\r
+NO,Tadpole Spawn Egg,tadpole_spawn_egg,64 Stackable,,966,64,FALSE\r
+NO,Trader Llama Spawn Egg,trader_llama_spawn_egg,64 Stackable,,967,64,FALSE\r
+NO,Tropical Fish Spawn Egg,tropical_fish_spawn_egg,64 Stackable,,968,64,FALSE\r
+NO,Turtle Spawn Egg,turtle_spawn_egg,64 Stackable,,969,64,FALSE\r
+NO,Vex Spawn Egg,vex_spawn_egg,64 Stackable,,970,64,FALSE\r
+NO,Villager Spawn Egg,villager_spawn_egg,64 Stackable,,971,64,FALSE\r
+NO,Vindicator Spawn Egg,vindicator_spawn_egg,64 Stackable,,972,64,FALSE\r
+NO,Wandering Trader Spawn Egg,wandering_trader_spawn_egg,64 Stackable,,973,64,FALSE\r
+NO,Warden Spawn Egg,warden_spawn_egg,64 Stackable,,974,64,FALSE\r
+NO,Witch Spawn Egg,witch_spawn_egg,64 Stackable,,975,64,FALSE\r
+NO,Wither Skeleton Spawn Egg,wither_skeleton_spawn_egg,64 Stackable,,976,64,FALSE\r
+NO,Wolf Spawn Egg,wolf_spawn_egg,64 Stackable,,977,64,FALSE\r
+NO,Zoglin Spawn Egg,zoglin_spawn_egg,64 Stackable,,978,64,FALSE\r
+NO,Zombie Spawn Egg,zombie_spawn_egg,64 Stackable,,979,64,FALSE\r
+NO,Zombie Horse Spawn Egg,zombie_horse_spawn_egg,64 Stackable,,980,64,FALSE\r
+NO,Zombie Villager Spawn Egg,zombie_villager_spawn_egg,64 Stackable,,981,64,FALSE\r
+NO,Zombified Piglin Spawn Egg,zombified_piglin_spawn_egg,64 Stackable,,982,64,FALSE\r
+NO,Player Head,player_head,64 Stackable,,998,64,FALSE\r
+NO,Minecart with Command Block,command_block_minecart,Unstackable,,1022,1,FALSE\r
+NO,Knowledge Book,knowledge_book,Unstackable,,1056,1,FALSE\r
+NO,Debug Stick,debug_stick,Unstackable,,1057,1,FALSE\r
+NO,Frogspawn,frogspawn,64 Stackable,,1150,64,FALSE
\ No newline at end of file
diff --git a/minecraft.txt b/minecraft.txt
new file mode 100644 (file)
index 0000000..4ecb181
--- /dev/null
@@ -0,0 +1,1151 @@
+Acacia Boat
+Acacia Boat with Chest
+Acacia Button
+Acacia Door
+Acacia Fence
+Acacia Fence Gate
+Acacia Leaves
+Acacia Log
+Acacia Planks
+Acacia Pressure Plate
+Acacia Sapling
+Acacia Sign
+Acacia Slab
+Acacia Stairs
+Acacia Trapdoor
+Acacia Wood
+Activator Rail
+Allay Spawn Egg
+Allium
+Amethyst Cluster
+Amethyst Shard
+Ancient Debris
+Andesite
+Andesite Slab
+Andesite Stairs
+Andesite Wall
+Anvil
+Apple
+Armor Stand
+Arrow
+Axolotl Spawn Egg
+Azalea
+Azalea Leaves
+Azure Bluet
+Baked Potato
+Bamboo
+Banner Pattern
+Banner Pattern
+Banner Pattern
+Banner Pattern
+Banner Pattern
+Banner Pattern
+Barrel
+Barrier
+Basalt
+Bat Spawn Egg
+Beacon
+Bedrock
+Bee Nest
+Bee Spawn Egg
+Beehive
+Beetroot
+Beetroot Seeds
+Beetroot Soup
+Bell
+Big Dripleaf
+Birch Boat
+Birch Boat with Chest
+Birch Button
+Birch Door
+Birch Fence
+Birch Fence Gate
+Birch Leaves
+Birch Log
+Birch Planks
+Birch Pressure Plate
+Birch Sapling
+Birch Sign
+Birch Slab
+Birch Stairs
+Birch Trapdoor
+Birch Wood
+Black Banner
+Black Bed
+Black Candle
+Black Carpet
+Black Concrete
+Black Concrete Powder
+Black Dye
+Black Glazed Terracotta
+Black Shulker Box
+Black Stained Glass
+Black Stained Glass Pane
+Black Terracotta
+Black Wool
+Blackstone
+Blackstone Slab
+Blackstone Stairs
+Blackstone Wall
+Blast Furnace
+Blaze Powder
+Blaze Rod
+Blaze Spawn Egg
+Block of Amethyst
+Block of Coal
+Block of Copper
+Block of Diamond
+Block of Emerald
+Block of Gold
+Block of Iron
+Block of Lapis Lazuli
+Block of Netherite
+Block of Quartz
+Block of Raw Copper
+Block of Raw Gold
+Block of Raw Iron
+Block of Redstone
+Blue Banner
+Blue Bed
+Blue Candle
+Blue Carpet
+Blue Concrete
+Blue Concrete Powder
+Blue Dye
+Blue Glazed Terracotta
+Blue Ice
+Blue Orchid
+Blue Shulker Box
+Blue Stained Glass
+Blue Stained Glass Pane
+Blue Terracotta
+Blue Wool
+Bone
+Bone Block
+Bone Meal
+Book
+Book and Quill
+Bookshelf
+Bottle o' Enchanting
+Bow
+Bowl
+Brain Coral
+Brain Coral Block
+Brain Coral Fan
+Bread
+Brewing Stand
+Brick
+Brick Slab
+Brick Stairs
+Brick Wall
+Bricks
+Brown Banner
+Brown Bed
+Brown Candle
+Brown Carpet
+Brown Concrete
+Brown Concrete Powder
+Brown Dye
+Brown Glazed Terracotta
+Brown Mushroom
+Brown Mushroom Block
+Brown Shulker Box
+Brown Stained Glass
+Brown Stained Glass Pane
+Brown Terracotta
+Brown Wool
+Bubble Coral
+Bubble Coral Block
+Bubble Coral Fan
+Bucket
+Bucket of Axolotl
+Bucket of Cod
+Bucket of Pufferfish
+Bucket of Salmon
+Bucket of Tadpole
+Bucket of Tropical Fish
+Budding Amethyst
+Bundle
+Cactus
+Cake
+Calcite
+Campfire
+Candle
+Carrot
+Carrot on a Stick
+Cartography Table
+Carved Pumpkin
+Cat Spawn Egg
+Cauldron
+Cave Spider Spawn Egg
+Chain
+Chain Command Block
+Chainmail Boots
+Chainmail Chestplate
+Chainmail Helmet
+Chainmail Leggings
+Charcoal
+Chest
+Chicken Spawn Egg
+Chipped Anvil
+Chiseled Deepslate
+Chiseled Nether Bricks
+Chiseled Polished Blackstone
+Chiseled Quartz Block
+Chiseled Red Sandstone
+Chiseled Sandstone
+Chiseled Stone Bricks
+Chorus Flower
+Chorus Fruit
+Chorus Plant
+Clay
+Clay Ball
+Clock
+Coal
+Coal Ore
+Coarse Dirt
+Cobbled Deepslate
+Cobbled Deepslate Slab
+Cobbled Deepslate Stairs
+Cobbled Deepslate Wall
+Cobblestone
+Cobblestone Slab
+Cobblestone Stairs
+Cobblestone Wall
+Cobweb
+Cocoa Beans
+Cod Spawn Egg
+Command Block
+Compass
+Composter
+Conduit
+Cooked Chicken
+Cooked Cod
+Cooked Mutton
+Cooked Porkchop
+Cooked Rabbit
+Cooked Salmon
+Cookie
+Copper Ingot
+Copper Ore
+Cornflower
+Cow Spawn Egg
+Cracked Deepslate Bricks
+Cracked Deepslate Tiles
+Cracked Nether Bricks
+Cracked Polished Blackstone Bricks
+Cracked Stone Bricks
+Crafting Table
+Creeper Head
+Creeper Spawn Egg
+Crimson Button
+Crimson Door
+Crimson Fence
+Crimson Fence Gate
+Crimson Fungus
+Crimson Hyphae
+Crimson Nylium
+Crimson Planks
+Crimson Pressure Plate
+Crimson Roots
+Crimson Sign
+Crimson Slab
+Crimson Stairs
+Crimson Stem
+Crimson Trapdoor
+Crossbow
+Crying Obsidian
+Cut Copper
+Cut Copper Slab
+Cut Copper Stairs
+Cut Red Sandstone
+Cut Red Sandstone Slab
+Cut Sandstone
+Cut Sandstone Slab
+Cyan Banner
+Cyan Bed
+Cyan Candle
+Cyan Carpet
+Cyan Concrete
+Cyan Concrete Powder
+Cyan Dye
+Cyan Glazed Terracotta
+Cyan Shulker Box
+Cyan Stained Glass
+Cyan Stained Glass Pane
+Cyan Terracotta
+Cyan Wool
+Damaged Anvil
+Dandelion
+Dark Oak Boat
+Dark Oak Boat with Chest
+Dark Oak Button
+Dark Oak Door
+Dark Oak Fence
+Dark Oak Fence Gate
+Dark Oak Leaves
+Dark Oak Log
+Dark Oak Planks
+Dark Oak Pressure Plate
+Dark Oak Sapling
+Dark Oak Sign
+Dark Oak Slab
+Dark Oak Stairs
+Dark Oak Trapdoor
+Dark Oak Wood
+Dark Prismarine
+Dark Prismarine Slab
+Dark Prismarine Stairs
+Daylight Detector
+Dead Brain Coral
+Dead Brain Coral Block
+Dead Brain Coral Fan
+Dead Bubble Coral
+Dead Bubble Coral Block
+Dead Bubble Coral Fan
+Dead Bush
+Dead Fire Coral
+Dead Fire Coral Block
+Dead Fire Coral Fan
+Dead Horn Coral
+Dead Horn Coral Block
+Dead Horn Coral Fan
+Dead Tube Coral
+Dead Tube Coral Block
+Dead Tube Coral Fan
+Debug Stick
+Deepslate
+Deepslate Brick Slab
+Deepslate Brick Stairs
+Deepslate Brick Wall
+Deepslate Bricks
+Deepslate Coal Ore
+Deepslate Copper Ore
+Deepslate Diamond Ore
+Deepslate Emerald Ore
+Deepslate Gold Ore
+Deepslate Iron Ore
+Deepslate Lapis Lazuli Ore
+Deepslate Redstone Ore
+Deepslate Tile Slab
+Deepslate Tile Stairs
+Deepslate Tile Wall
+Deepslate Tiles
+Detector Rail
+Diamond
+Diamond Axe
+Diamond Boots
+Diamond Chestplate
+Diamond Helmet
+Diamond Hoe
+Diamond Horse Armor
+Diamond Leggings
+Diamond Ore
+Diamond Pickaxe
+Diamond Shovel
+Diamond Sword
+Diorite
+Diorite Slab
+Diorite Stairs
+Diorite Wall
+Dirt
+Dirt Path
+Disc Fragment
+Dispenser
+Dolphin Spawn Egg
+Donkey Spawn Egg
+Dragon Egg
+Dragon Head
+Dragon's Breath
+Dried Kelp
+Dried Kelp Block
+Dripstone Block
+Dropper
+Drowned Spawn Egg
+Echo Shard
+Egg
+Elder Guardian Spawn Egg
+Elytra
+Emerald
+Emerald Ore
+Empty Map
+Enchanted Book
+Enchanted Golden Apple
+Enchanting Table
+End Crystal
+End Portal Frame
+End Rod
+End Stone
+End Stone Brick Slab
+End Stone Brick Stairs
+End Stone Brick Wall
+End Stone Bricks
+Ender Chest
+Ender Pearl
+Enderman Spawn Egg
+Endermite Spawn Egg
+Evoker Spawn Egg
+Exposed Copper
+Exposed Cut Copper
+Exposed Cut Copper Slab
+Exposed Cut Copper Stairs
+Eye of Ender
+Farmland
+Feather
+Fermented Spider Eye
+Fern
+Fire Charge
+Fire Coral
+Fire Coral Block
+Fire Coral Fan
+Firework Rocket
+Firework Star
+Fishing Rod
+Fletching Table
+Flint
+Flint and Steel
+Flower Pot
+Flowering Azalea
+Flowering Azalea Leaves
+Fox Spawn Egg
+Frog Spawn Egg
+Frogspawn
+Furnace
+Ghast Spawn Egg
+Ghast Tear
+Gilded Blackstone
+Glass
+Glass Bottle
+Glass Pane
+Glistering Melon Slice
+Glow Berries
+Glow Ink Sac
+Glow Item Frame
+Glow Lichen
+Glow Squid Spawn Egg
+Glowstone
+Glowstone Dust
+Goat Horn
+Goat Spawn Egg
+Gold Ingot
+Gold Nugget
+Gold Ore
+Golden Apple
+Golden Axe
+Golden Boots
+Golden Carrot
+Golden Chestplate
+Golden Helmet
+Golden Hoe
+Golden Horse Armor
+Golden Leggings
+Golden Pickaxe
+Golden Shovel
+Golden Sword
+Granite
+Granite Slab
+Granite Stairs
+Granite Wall
+Grass
+Grass Block
+Gravel
+Gray Banner
+Gray Bed
+Gray Candle
+Gray Carpet
+Gray Concrete
+Gray Concrete Powder
+Gray Dye
+Gray Glazed Terracotta
+Gray Shulker Box
+Gray Stained Glass
+Gray Stained Glass Pane
+Gray Terracotta
+Gray Wool
+Green Banner
+Green Bed
+Green Candle
+Green Carpet
+Green Concrete
+Green Concrete Powder
+Green Dye
+Green Glazed Terracotta
+Green Shulker Box
+Green Stained Glass
+Green Stained Glass Pane
+Green Terracotta
+Green Wool
+Grindstone
+Guardian Spawn Egg
+Gunpowder
+Hanging Roots
+Hay Bale
+Heart of the Sea
+Heavy Weighted Pressure Plate
+Hoglin Spawn Egg
+Honey Block
+Honey Bottle
+Honeycomb
+Honeycomb Block
+Hopper
+Horn Coral
+Horn Coral Block
+Horn Coral Fan
+Horse Spawn Egg
+Husk Spawn Egg
+Ice
+Infested Chiseled Stone Bricks
+Infested Cobblestone
+Infested Cracked Stone Bricks
+Infested Deepslate
+Infested Mossy Stone Bricks
+Infested Stone
+Infested Stone Bricks
+Ink Sac
+Iron Axe
+Iron Bars
+Iron Boots
+Iron Chestplate
+Iron Door
+Iron Helmet
+Iron Hoe
+Iron Horse Armor
+Iron Ingot
+Iron Leggings
+Iron Nugget
+Iron Ore
+Iron Pickaxe
+Iron Shovel
+Iron Sword
+Iron Trapdoor
+Item Frame
+Jack o'Lantern
+Jigsaw Block
+Jukebox
+Jungle Boat
+Jungle Boat with Chest
+Jungle Button
+Jungle Door
+Jungle Fence
+Jungle Fence Gate
+Jungle Leaves
+Jungle Log
+Jungle Planks
+Jungle Pressure Plate
+Jungle Sapling
+Jungle Sign
+Jungle Slab
+Jungle Stairs
+Jungle Trapdoor
+Jungle Wood
+Kelp
+Knowledge Book
+Ladder
+Lantern
+Lapis Lazuli
+Lapis Lazuli Ore
+Large Amethyst Bud
+Large Fern
+Lava Bucket
+Lead
+Leather
+Leather Boots
+Leather Cap
+Leather Horse Armor
+Leather Pants
+Leather Tunic
+Lectern
+Lever
+Light
+Light Blue Banner
+Light Blue Bed
+Light Blue Candle
+Light Blue Carpet
+Light Blue Concrete
+Light Blue Concrete Powder
+Light Blue Dye
+Light Blue Glazed Terracotta
+Light Blue Shulker Box
+Light Blue Stained Glass
+Light Blue Stained Glass Pane
+Light Blue Terracotta
+Light Blue Wool
+Light Gray Banner
+Light Gray Bed
+Light Gray Candle
+Light Gray Carpet
+Light Gray Concrete
+Light Gray Concrete Powder
+Light Gray Dye
+Light Gray Glazed Terracotta
+Light Gray Shulker Box
+Light Gray Stained Glass
+Light Gray Stained Glass Pane
+Light Gray Terracotta
+Light Gray Wool
+Light Weighted Pressure Plate
+Lightning Rod
+Lilac
+Lily Pad
+Lily of the Valley
+Lime Banner
+Lime Bed
+Lime Candle
+Lime Carpet
+Lime Concrete
+Lime Concrete Powder
+Lime Dye
+Lime Glazed Terracotta
+Lime Shulker Box
+Lime Stained Glass
+Lime Stained Glass Pane
+Lime Terracotta
+Lime Wool
+Lingering Potion
+Llama Spawn Egg
+Lodestone
+Loom
+Magenta Banner
+Magenta Bed
+Magenta Candle
+Magenta Carpet
+Magenta Concrete
+Magenta Concrete Powder
+Magenta Dye
+Magenta Glazed Terracotta
+Magenta Shulker Box
+Magenta Stained Glass
+Magenta Stained Glass Pane
+Magenta Terracotta
+Magenta Wool
+Magma Block
+Magma Cream
+Magma Cube Spawn Egg
+Mangrove Boat
+Mangrove Boat with Chest
+Mangrove Button
+Mangrove Door
+Mangrove Fence
+Mangrove Fence Gate
+Mangrove Leaves
+Mangrove Log
+Mangrove Planks
+Mangrove Pressure Plate
+Mangrove Propagule
+Mangrove Roots
+Mangrove Sign
+Mangrove Slab
+Mangrove Stairs
+Mangrove Trapdoor
+Mangrove Wood
+Map
+Medium Amethyst Bud
+Melon
+Melon Seeds
+Melon Slice
+Milk Bucket
+Minecart
+Minecart with Chest
+Minecart with Command Block
+Minecart with Furnace
+Minecart with Hopper
+Minecart with TNT
+Mooshroom Spawn Egg
+Moss Block
+Moss Carpet
+Mossy Cobblestone
+Mossy Cobblestone Slab
+Mossy Cobblestone Stairs
+Mossy Cobblestone Wall
+Mossy Stone Brick Slab
+Mossy Stone Brick Stairs
+Mossy Stone Brick Wall
+Mossy Stone Bricks
+Mud
+Mud Brick Slab
+Mud Brick Stairs
+Mud Brick Wall
+Mud Bricks
+Muddy Mangrove Roots
+Mule Spawn Egg
+Mushroom Stem
+Mushroom Stew
+Music Disc
+Music Disc
+Music Disc
+Music Disc
+Music Disc
+Music Disc
+Music Disc
+Music Disc
+Music Disc
+Music Disc
+Music Disc
+Music Disc
+Music Disc
+Music Disc
+Music Disc
+Mycelium
+Name Tag
+Nautilus Shell
+Nether Brick
+Nether Brick Fence
+Nether Brick Slab
+Nether Brick Stairs
+Nether Brick Wall
+Nether Bricks
+Nether Gold Ore
+Nether Quartz
+Nether Quartz Ore
+Nether Sprouts
+Nether Star
+Nether Wart
+Nether Wart Block
+Netherite Axe
+Netherite Boots
+Netherite Chestplate
+Netherite Helmet
+Netherite Hoe
+Netherite Ingot
+Netherite Leggings
+Netherite Pickaxe
+Netherite Scrap
+Netherite Shovel
+Netherite Sword
+Netherrack
+Note Block
+Oak Boat
+Oak Boat with Chest
+Oak Button
+Oak Door
+Oak Fence
+Oak Fence Gate
+Oak Leaves
+Oak Log
+Oak Planks
+Oak Pressure Plate
+Oak Sapling
+Oak Sign
+Oak Slab
+Oak Stairs
+Oak Trapdoor
+Oak Wood
+Observer
+Obsidian
+Ocelot Spawn Egg
+Ochre Froglight
+Orange Banner
+Orange Bed
+Orange Candle
+Orange Carpet
+Orange Concrete
+Orange Concrete Powder
+Orange Dye
+Orange Glazed Terracotta
+Orange Shulker Box
+Orange Stained Glass
+Orange Stained Glass Pane
+Orange Terracotta
+Orange Tulip
+Orange Wool
+Oxeye Daisy
+Oxidized Copper
+Oxidized Cut Copper
+Oxidized Cut Copper Slab
+Oxidized Cut Copper Stairs
+Packed Ice
+Packed Mud
+Painting
+Panda Spawn Egg
+Paper
+Parrot Spawn Egg
+Pearlescent Froglight
+Peony
+Petrified Oak Slab
+Phantom Membrane
+Phantom Spawn Egg
+Pig Spawn Egg
+Piglin Brute Spawn Egg
+Piglin Spawn Egg
+Pillager Spawn Egg
+Pink Banner
+Pink Bed
+Pink Candle
+Pink Carpet
+Pink Concrete
+Pink Concrete Powder
+Pink Dye
+Pink Glazed Terracotta
+Pink Shulker Box
+Pink Stained Glass
+Pink Stained Glass Pane
+Pink Terracotta
+Pink Tulip
+Pink Wool
+Piston
+Player Head
+Podzol
+Pointed Dripstone
+Poisonous Potato
+Polar Bear Spawn Egg
+Polished Andesite
+Polished Andesite Slab
+Polished Andesite Stairs
+Polished Basalt
+Polished Blackstone
+Polished Blackstone Brick Slab
+Polished Blackstone Brick Stairs
+Polished Blackstone Brick Wall
+Polished Blackstone Bricks
+Polished Blackstone Button
+Polished Blackstone Pressure Plate
+Polished Blackstone Slab
+Polished Blackstone Stairs
+Polished Blackstone Wall
+Polished Deepslate
+Polished Deepslate Slab
+Polished Deepslate Stairs
+Polished Deepslate Wall
+Polished Diorite
+Polished Diorite Slab
+Polished Diorite Stairs
+Polished Granite
+Polished Granite Slab
+Polished Granite Stairs
+Popped Chorus Fruit
+Poppy
+Potato
+Potion
+Powder Snow Bucket
+Powered Rail
+Prismarine
+Prismarine Brick Slab
+Prismarine Brick Stairs
+Prismarine Bricks
+Prismarine Crystals
+Prismarine Shard
+Prismarine Slab
+Prismarine Stairs
+Prismarine Wall
+Pufferfish
+Pufferfish Spawn Egg
+Pumpkin
+Pumpkin Pie
+Pumpkin Seeds
+Purple Banner
+Purple Bed
+Purple Candle
+Purple Carpet
+Purple Concrete
+Purple Concrete Powder
+Purple Dye
+Purple Glazed Terracotta
+Purple Shulker Box
+Purple Stained Glass
+Purple Stained Glass Pane
+Purple Terracotta
+Purple Wool
+Purpur Block
+Purpur Pillar
+Purpur Slab
+Purpur Stairs
+Quartz Bricks
+Quartz Pillar
+Quartz Slab
+Quartz Stairs
+Rabbit Hide
+Rabbit Spawn Egg
+Rabbit Stew
+Rabbit's Foot
+Rail
+Ravager Spawn Egg
+Raw Beef
+Raw Chicken
+Raw Cod
+Raw Copper
+Raw Gold
+Raw Iron
+Raw Mutton
+Raw Porkchop
+Raw Rabbit
+Raw Salmon
+Recovery Compass
+Red Banner
+Red Bed
+Red Candle
+Red Carpet
+Red Concrete
+Red Concrete Powder
+Red Dye
+Red Glazed Terracotta
+Red Mushroom
+Red Mushroom Block
+Red Nether Brick Slab
+Red Nether Brick Stairs
+Red Nether Brick Wall
+Red Nether Bricks
+Red Sand
+Red Sandstone
+Red Sandstone Slab
+Red Sandstone Stairs
+Red Sandstone Wall
+Red Shulker Box
+Red Stained Glass
+Red Stained Glass Pane
+Red Terracotta
+Red Tulip
+Red Wool
+Redstone Comparator
+Redstone Dust
+Redstone Lamp
+Redstone Ore
+Redstone Repeater
+Redstone Torch
+Reinforced Deepslate
+Repeating Command Block
+Respawn Anchor
+Rooted Dirt
+Rose Bush
+Rotten Flesh
+Saddle
+Salmon Spawn Egg
+Sand
+Sandstone
+Sandstone Slab
+Sandstone Stairs
+Sandstone Wall
+Scaffolding
+Sculk
+Sculk Catalyst
+Sculk Sensor
+Sculk Shrieker
+Sculk Vein
+Scute
+Sea Lantern
+Sea Pickle
+Seagrass
+Shears
+Sheep Spawn Egg
+Shield
+Shroomlight
+Shulker Box
+Shulker Shell
+Shulker Spawn Egg
+Silverfish Spawn Egg
+Skeleton Horse Spawn Egg
+Skeleton Skull
+Skeleton Spawn Egg
+Slime Block
+Slime Spawn Egg
+Slimeball
+Small Amethyst Bud
+Small Dripleaf
+Smithing Table
+Smoker
+Smooth Basalt
+Smooth Quartz Block
+Smooth Quartz Slab
+Smooth Quartz Stairs
+Smooth Red Sandstone
+Smooth Red Sandstone Slab
+Smooth Red Sandstone Stairs
+Smooth Sandstone
+Smooth Sandstone Slab
+Smooth Sandstone Stairs
+Smooth Stone
+Smooth Stone Slab
+Snow
+Snow Block
+Snowball
+Soul Campfire
+Soul Lantern
+Soul Sand
+Soul Soil
+Soul Torch
+Spawner
+Spectral Arrow
+Spider Eye
+Spider Spawn Egg
+Splash Potion
+Sponge
+Spore Blossom
+Spruce Boat
+Spruce Boat with Chest
+Spruce Button
+Spruce Door
+Spruce Fence
+Spruce Fence Gate
+Spruce Leaves
+Spruce Log
+Spruce Planks
+Spruce Pressure Plate
+Spruce Sapling
+Spruce Sign
+Spruce Slab
+Spruce Stairs
+Spruce Trapdoor
+Spruce Wood
+Spyglass
+Squid Spawn Egg
+Steak
+Stick
+Sticky Piston
+Stone
+Stone Axe
+Stone Brick Slab
+Stone Brick Stairs
+Stone Brick Wall
+Stone Bricks
+Stone Button
+Stone Hoe
+Stone Pickaxe
+Stone Pressure Plate
+Stone Shovel
+Stone Slab
+Stone Stairs
+Stone Sword
+Stonecutter
+Stray Spawn Egg
+Strider Spawn Egg
+String
+Stripped Acacia Log
+Stripped Acacia Wood
+Stripped Birch Log
+Stripped Birch Wood
+Stripped Crimson Hyphae
+Stripped Crimson Stem
+Stripped Dark Oak Log
+Stripped Dark Oak Wood
+Stripped Jungle Log
+Stripped Jungle Wood
+Stripped Mangrove Log
+Stripped Mangrove Wood
+Stripped Oak Log
+Stripped Oak Wood
+Stripped Spruce Log
+Stripped Spruce Wood
+Stripped Warped Hyphae
+Stripped Warped Stem
+Structure Block
+Structure Void
+Sugar
+Sugar Cane
+Sunflower
+Suspicious Stew
+Sweet Berries
+TNT
+Tadpole Spawn Egg
+Tall Grass
+Target
+Terracotta
+Tinted Glass
+Tipped Arrow
+Torch
+Totem of Undying
+Trader Llama Spawn Egg
+Trapped Chest
+Trident
+Tripwire Hook
+Tropical Fish
+Tropical Fish Spawn Egg
+Tube Coral
+Tube Coral Block
+Tube Coral Fan
+Tuff
+Turtle Egg
+Turtle Shell
+Turtle Spawn Egg
+Twisting Vines
+Verdant Froglight
+Vex Spawn Egg
+Villager Spawn Egg
+Vindicator Spawn Egg
+Vines
+Wandering Trader Spawn Egg
+Warden Spawn Egg
+Warped Button
+Warped Door
+Warped Fence
+Warped Fence Gate
+Warped Fungus
+Warped Fungus on a Stick
+Warped Hyphae
+Warped Nylium
+Warped Planks
+Warped Pressure Plate
+Warped Roots
+Warped Sign
+Warped Slab
+Warped Stairs
+Warped Stem
+Warped Trapdoor
+Warped Wart Block
+Water Bucket
+Waxed Block of Copper
+Waxed Cut Copper
+Waxed Cut Copper Slab
+Waxed Cut Copper Stairs
+Waxed Exposed Copper
+Waxed Exposed Cut Copper
+Waxed Exposed Cut Copper Slab
+Waxed Exposed Cut Copper Stairs
+Waxed Oxidized Copper
+Waxed Oxidized Cut Copper
+Waxed Oxidized Cut Copper Slab
+Waxed Oxidized Cut Copper Stairs
+Waxed Weathered Copper
+Waxed Weathered Cut Copper
+Waxed Weathered Cut Copper Slab
+Waxed Weathered Cut Copper Stairs
+Weathered Copper
+Weathered Cut Copper
+Weathered Cut Copper Slab
+Weathered Cut Copper Stairs
+Weeping Vines
+Wet Sponge
+Wheat
+Wheat Seeds
+White Banner
+White Bed
+White Candle
+White Carpet
+White Concrete
+White Concrete Powder
+White Dye
+White Glazed Terracotta
+White Shulker Box
+White Stained Glass
+White Stained Glass Pane
+White Terracotta
+White Tulip
+White Wool
+Witch Spawn Egg
+Wither Rose
+Wither Skeleton Skull
+Wither Skeleton Spawn Egg
+Wolf Spawn Egg
+Wooden Axe
+Wooden Hoe
+Wooden Pickaxe
+Wooden Shovel
+Wooden Sword
+Written Book
+Yellow Banner
+Yellow Bed
+Yellow Candle
+Yellow Carpet
+Yellow Concrete
+Yellow Concrete Powder
+Yellow Dye
+Yellow Glazed Terracotta
+Yellow Shulker Box
+Yellow Stained Glass
+Yellow Stained Glass Pane
+Yellow Terracotta
+Yellow Wool
+Zoglin Spawn Egg
+Zombie Head
+Zombie Horse Spawn Egg
+Zombie Spawn Egg
+Zombie Villager Spawn Egg
+Zombified Piglin Spawn Egg
diff --git a/mod/init.lua b/mod/init.lua
new file mode 100644 (file)
index 0000000..6006e2d
--- /dev/null
@@ -0,0 +1,30 @@
+minetest.after(3, function()
+       local set = {}
+       local list = {}
+
+       for name, def in pairs(minetest.registered_items) do
+               if def.description and not def.groups.not_in_creative_inventory then
+                       local t = minetest.get_translated_string("", def.description)
+                       local idx = t:find("\n")
+
+                       t = minetest.strip_colors(t)
+
+                       if idx then
+                               t = t:sub(1, idx-1)
+                       end
+
+                       if t ~= "" and not set[t] then
+                               set[t] = true
+                               table.insert(list, t)
+                       end
+               end
+       end
+
+       table.sort(list)
+
+       local f = io.open(minetest.get_worldpath() .. "/items.txt", "w")
+       f:write(table.concat(list, "\n") .. "\n")
+       f:close()
+
+       minetest.request_shutdown()
+end)
diff --git a/mod/mod.conf b/mod/mod.conf
new file mode 100644 (file)
index 0000000..fdf341d
--- /dev/null
@@ -0,0 +1 @@
+name = item_list