make folders

This commit is contained in:
2vb 2023-11-21 07:31:11 -08:00
parent 137cd8eeca
commit fd2b7e51a4
5 changed files with 2 additions and 172 deletions

View File

@ -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

View File

@ -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

View File

@ -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);