diff --git a/1.20 pack format.txt b/1.20 pack format.txt deleted file mode 100644 index 673ff66..0000000 --- a/1.20 pack format.txt +++ /dev/null @@ -1,116 +0,0 @@ -├───minecraft -│ ├───atlases -│ ├───blockstates -│ ├───font -│ │ └───include -│ ├───lang -│ ├───models -│ │ ├───block -│ │ └───item -│ ├───particles -│ ├───shaders -│ │ ├───core -│ │ ├───include -│ │ ├───post -│ │ └───program -│ ├───texts -│ └───textures -│ ├───block -│ ├───colormap -│ ├───effect -│ ├───entity -│ │ ├───allay -│ │ ├───armorstand -│ │ ├───axolotl -│ │ ├───banner -│ │ ├───bear -│ │ ├───bed -│ │ ├───bee -│ │ ├───bell -│ │ ├───boat -│ │ ├───camel -│ │ ├───cat -│ │ ├───chest -│ │ ├───chest_boat -│ │ ├───conduit -│ │ ├───cow -│ │ ├───creeper -│ │ ├───decorated_pot -│ │ ├───enderdragon -│ │ ├───enderman -│ │ ├───end_crystal -│ │ ├───fish -│ │ ├───fox -│ │ ├───frog -│ │ ├───ghast -│ │ ├───goat -│ │ ├───hoglin -│ │ ├───horse -│ │ │ └───armor -│ │ ├───illager -│ │ ├───iron_golem -│ │ ├───llama -│ │ │ └───decor -│ │ ├───panda -│ │ ├───parrot -│ │ ├───pig -│ │ ├───piglin -│ │ ├───player -│ │ │ ├───slim -│ │ │ └───wide -│ │ ├───projectiles -│ │ ├───rabbit -│ │ ├───sheep -│ │ ├───shield -│ │ ├───shulker -│ │ ├───signs -│ │ │ └───hanging -│ │ ├───skeleton -│ │ ├───slime -│ │ ├───sniffer -│ │ ├───spider -│ │ ├───squid -│ │ ├───strider -│ │ ├───tadpole -│ │ ├───turtle -│ │ ├───villager -│ │ │ ├───profession -│ │ │ ├───profession_level -│ │ │ └───type -│ │ ├───warden -│ │ ├───wither -│ │ ├───wolf -│ │ ├───zombie -│ │ └───zombie_villager -│ │ ├───profession -│ │ ├───profession_level -│ │ └───type -│ ├───environment -│ ├───font -│ ├───gui -│ │ ├───advancements -│ │ │ └───backgrounds -│ │ ├───container -│ │ │ └───creative_inventory -│ │ ├───hanging_signs -│ │ ├───presets -│ │ └───title -│ │ └───background -│ ├───item -│ ├───map -│ ├───misc -│ ├───mob_effect -│ ├───models -│ │ └───armor -│ ├───painting -│ ├───particle -│ └───trims -│ ├───color_palettes -│ ├───items -│ └───models -│ └───armor -└───realms - └───textures - └───gui - ├───realms - └───title diff --git a/1.8 pack format.txt b/1.8 pack format.txt deleted file mode 100644 index be16d1d..0000000 --- a/1.8 pack format.txt +++ /dev/null @@ -1,54 +0,0 @@ -└───minecraft - ├───blockstates - ├───font - ├───lang - ├───models - │ ├───block - │ └───item - ├───shaders - │ ├───post - │ └───program - ├───texts - └───textures - ├───blocks - ├───colormap - ├───effect - ├───entity - │ ├───armorstand - │ ├───banner - │ ├───cat - │ ├───chest - │ ├───cow - │ ├───creeper - │ ├───endercrystal - │ ├───enderdragon - │ ├───enderman - │ ├───ghast - │ ├───horse - │ │ └───armor - │ ├───pig - │ ├───rabbit - │ ├───sheep - │ ├───skeleton - │ ├───slime - │ ├───spider - │ ├───villager - │ ├───wither - │ ├───wolf - │ └───zombie - ├───environment - ├───font - ├───gui - │ ├───achievement - │ ├───container - │ │ └───creative_inventory - │ ├───presets - │ └───title - │ └───background - ├───items - ├───map - ├───misc - ├───models - │ └───armor - ├───painting - └───particle diff --git a/index.js b/index.js index 6290ac9..892b7be 100644 --- a/index.js +++ b/index.js @@ -1,13 +1,13 @@ const decompress = require('decompress'); const fs = require('fs'); const jsonfile = require('jsonfile'); -const blockRemaps = 'blocks.json'; +const blockRemaps = 'mappings/blocks.json'; let blocks; jsonfile.readFile(blockRemaps, function (err, obj) { if (err) console.error(err); blocks = obj; }); -const itemRemaps = 'items.json'; +const itemRemaps = 'mappings/items.json'; let items; jsonfile.readFile(itemRemaps, function (err, obj) { if (err) console.error(err); diff --git a/blocks.json b/mappings/blocks.json similarity index 100% rename from blocks.json rename to mappings/blocks.json diff --git a/items.json b/mappings/items.json similarity index 100% rename from items.json rename to mappings/items.json