@jsprismarine/bedrock-data 1.20.70 → 1.20.71-alpha.1

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.
Files changed (46) hide show
  1. package/LICENSE +8 -8
  2. package/README.md +15 -2
  3. package/{resources/biome_definitions.nbt → dist/biome_definitions-4bbc294108860f0d.nbt} +0 -0
  4. package/{resources/entity_identifiers.nbt → dist/entity_identifiers-0f1f67be198c6d13.nbt} +0 -0
  5. package/dist/index.js +7917 -0
  6. package/dist/r12_to_current_block_map-6aedb4171e4f37e6.bin +0 -0
  7. package/package.json +58 -25
  8. package/.gitmodules +0 -3
  9. package/.prettierrc +0 -10
  10. package/index.d.ts +0 -1
  11. package/index.js +0 -27
  12. package/jsp/block_id_map.json +0 -555
  13. package/jsp/item_id_map.json +0 -809
  14. package/renovate.json +0 -8
  15. package/resources/.gitattributes +0 -30
  16. package/resources/.minify_json.php +0 -32
  17. package/resources/LICENSE +0 -121
  18. package/resources/README.md +0 -40
  19. package/resources/banner_patterns.json +0 -320
  20. package/resources/biome_definitions_full.nbt +0 -0
  21. package/resources/biome_id_map.json +0 -88
  22. package/resources/block_id_to_item_id_map.json +0 -977
  23. package/resources/block_state_meta_map.json +0 -14129
  24. package/resources/canonical_block_states.nbt +0 -0
  25. package/resources/command_arg_types.json +0 -306
  26. package/resources/composer.json +0 -7
  27. package/resources/creativeitems.json +0 -6025
  28. package/resources/entity_id_map.json +0 -124
  29. package/resources/item_tags.json +0 -761
  30. package/resources/level_sound_id_map.json +0 -445
  31. package/resources/particle_id_map.json +0 -83
  32. package/resources/r12_to_current_block_map.bin +0 -0
  33. package/resources/r16_to_current_item_map.json +0 -426
  34. package/resources/recipes/potion_container_change.json +0 -16
  35. package/resources/recipes/potion_type.json +0 -2387
  36. package/resources/recipes/shaped_chemistry.json +0 -3539
  37. package/resources/recipes/shaped_crafting.json +0 -22463
  38. package/resources/recipes/shapeless_chemistry.json +0 -1126
  39. package/resources/recipes/shapeless_crafting.json +0 -20220
  40. package/resources/recipes/shapeless_shulker_box.json +0 -5762
  41. package/resources/recipes/smelting.json +0 -2013
  42. package/resources/recipes/smithing.json +0 -164
  43. package/resources/recipes/smithing_trim.json +0 -14
  44. package/resources/recipes/special_hardcoded.json +0 -16
  45. package/resources/required_item_list.json +0 -5846
  46. /package/{jsp/runtime_block_states.dat → dist/runtime_block_states-9230f3440ccad35e.dat} +0 -0
package/LICENSE CHANGED
@@ -1,8 +1,8 @@
1
- Copyright 2020 Filiph Sandström
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
-
5
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
-
7
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
8
-
1
+ Copyright 2020 Filiph Sandström
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
8
+
package/README.md CHANGED
@@ -1,2 +1,15 @@
1
- # bedrock-data
2
- BedrockData from PMMP exported in a nodejs friendly way.
1
+ # bedrock-data
2
+ BedrockData from PMMP exported in a nodejs friendly way.
3
+
4
+ ## Getting Started
5
+ ```bash
6
+ # clone with submodules
7
+ git clone --recurse-submodules
8
+
9
+ # pull submodules
10
+ git submodule update --init --recursive
11
+ ```
12
+
13
+ ## Building
14
+
15
+ You will need bun to build the project.