@jsprismarine/bedrock-data 1.20.10-a → 1.20.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +6 -6
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
const fs = require('fs');
|
|
3
3
|
|
|
4
4
|
const banner_patterns = require('./resources/banner_patterns.json');
|
|
5
|
-
|
|
5
|
+
const block_id_map = require('./resources/block_id_map.json');
|
|
6
6
|
const creativeitems = require('./resources/creativeitems.json');
|
|
7
7
|
const entity_id_map = require('./resources/entity_id_map.json');
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
const item_id_map = require('./resources/item_id_map.json');
|
|
9
|
+
const recipes = require('./resources/recipes.json');
|
|
10
10
|
|
|
11
11
|
const biome_definitions = fs.readFileSync(__dirname + '/resources/biome_definitions.nbt');
|
|
12
12
|
const entity_identifiers = fs.readFileSync(__dirname + '/resources/entity_identifiers.nbt');
|
|
@@ -16,12 +16,12 @@ const r12_to_current_block_map = fs.readFileSync(__dirname + '/resources/r12_to_
|
|
|
16
16
|
module.exports = {
|
|
17
17
|
banner_patterns,
|
|
18
18
|
biome_definitions,
|
|
19
|
-
|
|
19
|
+
block_id_map,
|
|
20
20
|
creativeitems,
|
|
21
21
|
entity_id_map,
|
|
22
22
|
entity_identifiers,
|
|
23
|
-
|
|
23
|
+
item_id_map,
|
|
24
24
|
r12_to_current_block_map,
|
|
25
|
-
|
|
25
|
+
recipes,
|
|
26
26
|
canonical_block_states
|
|
27
27
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jsprismarine/bedrock-data",
|
|
3
3
|
"types": "./index.d.ts",
|
|
4
|
-
"version": "1.20.
|
|
4
|
+
"version": "1.20.10",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"repository": "https://github.com/filfat/bedrock-data",
|
|
7
7
|
"author": "Filiph Sandström <filiph.sandstrom@filfatstudios.com>",
|