@jsprismarine/bedrock-data 1.20.51 → 1.20.71-alpha.0

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 (48) 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/dist/runtime_block_states-9230f3440ccad35e.dat +0 -0
  8. package/package.json +64 -10
  9. package/.gitmodules +0 -3
  10. package/.prettierrc +0 -10
  11. package/canonical_block_states.nbt +0 -0
  12. package/index.d.ts +0 -1
  13. package/index.js +0 -27
  14. package/jsp/block_id_map.json +0 -555
  15. package/jsp/item_id_map.json +0 -809
  16. package/jsp/runtime_block_states.dat +0 -0
  17. package/renovate.json +0 -5
  18. package/resources/.gitattributes +0 -30
  19. package/resources/.minify_json.php +0 -32
  20. package/resources/LICENSE +0 -121
  21. package/resources/README.md +0 -40
  22. package/resources/banner_patterns.json +0 -320
  23. package/resources/biome_definitions_full.nbt +0 -0
  24. package/resources/biome_id_map.json +0 -88
  25. package/resources/block_id_to_item_id_map.json +0 -977
  26. package/resources/block_state_meta_map.json +0 -14129
  27. package/resources/canonical_block_states.nbt +0 -0
  28. package/resources/command_arg_types.json +0 -306
  29. package/resources/composer.json +0 -7
  30. package/resources/creativeitems.json +0 -6025
  31. package/resources/entity_id_map.json +0 -124
  32. package/resources/item_tags.json +0 -761
  33. package/resources/level_sound_id_map.json +0 -445
  34. package/resources/particle_id_map.json +0 -83
  35. package/resources/r12_to_current_block_map.bin +0 -0
  36. package/resources/r16_to_current_item_map.json +0 -426
  37. package/resources/recipes/potion_container_change.json +0 -16
  38. package/resources/recipes/potion_type.json +0 -2387
  39. package/resources/recipes/shaped_chemistry.json +0 -3539
  40. package/resources/recipes/shaped_crafting.json +0 -22463
  41. package/resources/recipes/shapeless_chemistry.json +0 -1126
  42. package/resources/recipes/shapeless_crafting.json +0 -20220
  43. package/resources/recipes/shapeless_shulker_box.json +0 -5762
  44. package/resources/recipes/smelting.json +0 -2013
  45. package/resources/recipes/smithing.json +0 -164
  46. package/resources/recipes/smithing_trim.json +0 -14
  47. package/resources/recipes/special_hardcoded.json +0 -16
  48. package/resources/required_item_list.json +0 -5846
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.