bc-minecraft-bedrock-vanilla-data 1.21.44-5 → 1.21.45-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 (57) hide show
  1. package/lib/src/Lib/Edu/BehaviorPack/features.d.ts +2 -0
  2. package/lib/src/Lib/Edu/BehaviorPack/features.js +6 -0
  3. package/lib/src/Lib/Edu/BehaviorPack/features.js.map +1 -0
  4. package/lib/src/Lib/Edu/BehaviorPack/index.d.ts +1 -0
  5. package/lib/src/Lib/Edu/BehaviorPack/index.js +1 -0
  6. package/lib/src/Lib/Edu/BehaviorPack/index.js.map +1 -1
  7. package/lib/src/Lib/General/biomes.d.ts +2 -0
  8. package/lib/src/Lib/General/biomes.js +94 -0
  9. package/lib/src/Lib/General/biomes.js.map +1 -0
  10. package/lib/src/Lib/General/camera_presets.d.ts +2 -0
  11. package/lib/src/Lib/General/camera_presets.js +13 -0
  12. package/lib/src/Lib/General/camera_presets.js.map +1 -0
  13. package/lib/src/Lib/General/cooldown_category.d.ts +2 -0
  14. package/lib/src/Lib/General/cooldown_category.js +12 -0
  15. package/lib/src/Lib/General/cooldown_category.js.map +1 -0
  16. package/lib/src/Lib/General/dimensions.d.ts +2 -0
  17. package/lib/src/Lib/General/dimensions.js +10 -0
  18. package/lib/src/Lib/General/dimensions.js.map +1 -0
  19. package/lib/src/Lib/General/effects.d.ts +1 -0
  20. package/lib/src/Lib/General/effects.js +37 -30
  21. package/lib/src/Lib/General/effects.js.map +1 -1
  22. package/lib/src/Lib/General/enchantments.d.ts +2 -0
  23. package/lib/src/Lib/General/enchantments.js +48 -0
  24. package/lib/src/Lib/General/enchantments.js.map +1 -0
  25. package/lib/src/Lib/General/index.d.ts +9 -0
  26. package/lib/src/Lib/General/index.js +9 -0
  27. package/lib/src/Lib/General/index.js.map +1 -1
  28. package/lib/src/Lib/General/potion_effects.d.ts +2 -0
  29. package/lib/src/Lib/General/potion_effects.js +27 -0
  30. package/lib/src/Lib/General/potion_effects.js.map +1 -0
  31. package/lib/src/Lib/General/potion_modifiers.d.ts +2 -0
  32. package/lib/src/Lib/General/potion_modifiers.js +10 -0
  33. package/lib/src/Lib/General/potion_modifiers.js.map +1 -0
  34. package/lib/src/Lib/General/potion_types.d.ts +2 -0
  35. package/lib/src/Lib/General/potion_types.js +10 -0
  36. package/lib/src/Lib/General/potion_types.js.map +1 -0
  37. package/lib/src/Lib/Types/BehaviorPack/BehaviorPack.d.ts +3 -0
  38. package/lib/src/Lib/Types/BehaviorPack/Feature.d.ts +4 -0
  39. package/lib/src/Lib/Types/BehaviorPack/Feature.js +3 -0
  40. package/lib/src/Lib/Types/BehaviorPack/Feature.js.map +1 -0
  41. package/lib/src/Lib/Types/BehaviorPack/index.d.ts +1 -0
  42. package/lib/src/Lib/Types/BehaviorPack/index.js +1 -0
  43. package/lib/src/Lib/Types/BehaviorPack/index.js.map +1 -1
  44. package/lib/src/Lib/Vanilla/BehaviorPack/blocks.js +940 -136
  45. package/lib/src/Lib/Vanilla/BehaviorPack/blocks.js.map +1 -1
  46. package/lib/src/Lib/Vanilla/BehaviorPack/features.d.ts +2 -0
  47. package/lib/src/Lib/Vanilla/BehaviorPack/features.js +24 -0
  48. package/lib/src/Lib/Vanilla/BehaviorPack/features.js.map +1 -0
  49. package/lib/src/Lib/Vanilla/BehaviorPack/index.d.ts +1 -0
  50. package/lib/src/Lib/Vanilla/BehaviorPack/index.js +1 -0
  51. package/lib/src/Lib/Vanilla/BehaviorPack/index.js.map +1 -1
  52. package/lib/src/Lib/Vanilla/BehaviorPack/items.js +2570 -426
  53. package/lib/src/Lib/Vanilla/BehaviorPack/items.js.map +1 -1
  54. package/lib/src/main.d.ts +24 -3
  55. package/lib/src/main.js +29 -3
  56. package/lib/src/main.js.map +1 -1
  57. package/package.json +1 -1
@@ -0,0 +1,2 @@
1
+ /** Notice: Auto generated file, do not edit */
2
+ export declare const Features: string[];
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ /** Notice: Auto generated file, do not edit */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.Features = void 0;
5
+ exports.Features = [];
6
+ //# sourceMappingURL=features.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"features.js","sourceRoot":"","sources":["../../../../../src/Lib/Edu/BehaviorPack/features.ts"],"names":[],"mappings":";AAAA,+CAA+C;;;AAGlC,QAAA,QAAQ,GACrB,EAAE,CAAA"}
@@ -1,5 +1,6 @@
1
1
  export * from "./blocks";
2
2
  export * from "./entities";
3
+ export * from "./features";
3
4
  export * from "./items";
4
5
  export * from "./loot_tables";
5
6
  export * from "./trading";
@@ -17,6 +17,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
17
17
  Object.defineProperty(exports, "__esModule", { value: true });
18
18
  __exportStar(require("./blocks"), exports);
19
19
  __exportStar(require("./entities"), exports);
20
+ __exportStar(require("./features"), exports);
20
21
  __exportStar(require("./items"), exports);
21
22
  __exportStar(require("./loot_tables"), exports);
22
23
  __exportStar(require("./trading"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/Lib/Edu/BehaviorPack/index.ts"],"names":[],"mappings":";AAAA,oBAAoB;;;;;;;;;;;;;;;;AAEpB,2CAAyB;AACzB,6CAA2B;AAC3B,0CAAwB;AACxB,gDAA8B;AAC9B,4CAA0B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/Lib/Edu/BehaviorPack/index.ts"],"names":[],"mappings":";AAAA,oBAAoB;;;;;;;;;;;;;;;;AAEpB,2CAAyB;AACzB,6CAA2B;AAC3B,6CAA2B;AAC3B,0CAAwB;AACxB,gDAA8B;AAC9B,4CAA0B"}
@@ -0,0 +1,2 @@
1
+ /** Notice: Auto generated file, do not edit */
2
+ export declare const Biomes: string[];
@@ -0,0 +1,94 @@
1
+ "use strict";
2
+ /** Notice: Auto generated file, do not edit */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.Biomes = void 0;
5
+ exports.Biomes = [
6
+ "minecraft:bamboo_jungle",
7
+ "minecraft:bamboo_jungle_hills",
8
+ "minecraft:basalt_deltas",
9
+ "minecraft:beach",
10
+ "minecraft:birch_forest",
11
+ "minecraft:birch_forest_hills",
12
+ "minecraft:birch_forest_hills_mutated",
13
+ "minecraft:birch_forest_mutated",
14
+ "minecraft:cherry_grove",
15
+ "minecraft:cold_beach",
16
+ "minecraft:cold_ocean",
17
+ "minecraft:cold_taiga",
18
+ "minecraft:cold_taiga_hills",
19
+ "minecraft:cold_taiga_mutated",
20
+ "minecraft:crimson_forest",
21
+ "minecraft:deep_cold_ocean",
22
+ "minecraft:deep_dark",
23
+ "minecraft:deep_frozen_ocean",
24
+ "minecraft:deep_lukewarm_ocean",
25
+ "minecraft:deep_ocean",
26
+ "minecraft:deep_warm_ocean",
27
+ "minecraft:desert",
28
+ "minecraft:desert_hills",
29
+ "minecraft:desert_mutated",
30
+ "minecraft:dripstone_caves",
31
+ "minecraft:extreme_hills",
32
+ "minecraft:extreme_hills_edge",
33
+ "minecraft:extreme_hills_mutated",
34
+ "minecraft:extreme_hills_plus_trees",
35
+ "minecraft:extreme_hills_plus_trees_mutated",
36
+ "minecraft:flower_forest",
37
+ "minecraft:forest",
38
+ "minecraft:forest_hills",
39
+ "minecraft:frozen_ocean",
40
+ "minecraft:frozen_peaks",
41
+ "minecraft:frozen_river",
42
+ "minecraft:grove",
43
+ "minecraft:hell",
44
+ "minecraft:ice_mountains",
45
+ "minecraft:ice_plains",
46
+ "minecraft:ice_plains_spikes",
47
+ "minecraft:jagged_peaks",
48
+ "minecraft:jungle",
49
+ "minecraft:jungle_edge",
50
+ "minecraft:jungle_edge_mutated",
51
+ "minecraft:jungle_hills",
52
+ "minecraft:jungle_mutated",
53
+ "minecraft:legacy_frozen_ocean",
54
+ "minecraft:lukewarm_ocean",
55
+ "minecraft:lush_caves",
56
+ "minecraft:mangrove_swamp",
57
+ "minecraft:meadow",
58
+ "minecraft:mega_taiga",
59
+ "minecraft:mega_taiga_hills",
60
+ "minecraft:mesa",
61
+ "minecraft:mesa_bryce",
62
+ "minecraft:mesa_plateau",
63
+ "minecraft:mesa_plateau_mutated",
64
+ "minecraft:mesa_plateau_stone",
65
+ "minecraft:mesa_plateau_stone_mutated",
66
+ "minecraft:mushroom_island",
67
+ "minecraft:mushroom_island_shore",
68
+ "minecraft:ocean",
69
+ "minecraft:pale_garden",
70
+ "minecraft:plains",
71
+ "minecraft:redwood_taiga_hills_mutated",
72
+ "minecraft:redwood_taiga_mutated",
73
+ "minecraft:river",
74
+ "minecraft:roofed_forest",
75
+ "minecraft:roofed_forest_mutated",
76
+ "minecraft:savanna",
77
+ "minecraft:savanna_mutated",
78
+ "minecraft:savanna_plateau",
79
+ "minecraft:savanna_plateau_mutated",
80
+ "minecraft:snowy_slopes",
81
+ "minecraft:soulsand_valley",
82
+ "minecraft:stone_beach",
83
+ "minecraft:stony_peaks",
84
+ "minecraft:sunflower_plains",
85
+ "minecraft:swampland",
86
+ "minecraft:swampland_mutated",
87
+ "minecraft:taiga",
88
+ "minecraft:taiga_hills",
89
+ "minecraft:taiga_mutated",
90
+ "minecraft:the_end",
91
+ "minecraft:warm_ocean",
92
+ "minecraft:warped_forest"
93
+ ];
94
+ //# sourceMappingURL=biomes.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"biomes.js","sourceRoot":"","sources":["../../../../src/Lib/General/biomes.ts"],"names":[],"mappings":";AAAA,+CAA+C;;;AAGlC,QAAA,MAAM,GACnB;IACE,yBAAyB;IACzB,+BAA+B;IAC/B,yBAAyB;IACzB,iBAAiB;IACjB,wBAAwB;IACxB,8BAA8B;IAC9B,sCAAsC;IACtC,gCAAgC;IAChC,wBAAwB;IACxB,sBAAsB;IACtB,sBAAsB;IACtB,sBAAsB;IACtB,4BAA4B;IAC5B,8BAA8B;IAC9B,0BAA0B;IAC1B,2BAA2B;IAC3B,qBAAqB;IACrB,6BAA6B;IAC7B,+BAA+B;IAC/B,sBAAsB;IACtB,2BAA2B;IAC3B,kBAAkB;IAClB,wBAAwB;IACxB,0BAA0B;IAC1B,2BAA2B;IAC3B,yBAAyB;IACzB,8BAA8B;IAC9B,iCAAiC;IACjC,oCAAoC;IACpC,4CAA4C;IAC5C,yBAAyB;IACzB,kBAAkB;IAClB,wBAAwB;IACxB,wBAAwB;IACxB,wBAAwB;IACxB,wBAAwB;IACxB,iBAAiB;IACjB,gBAAgB;IAChB,yBAAyB;IACzB,sBAAsB;IACtB,6BAA6B;IAC7B,wBAAwB;IACxB,kBAAkB;IAClB,uBAAuB;IACvB,+BAA+B;IAC/B,wBAAwB;IACxB,0BAA0B;IAC1B,+BAA+B;IAC/B,0BAA0B;IAC1B,sBAAsB;IACtB,0BAA0B;IAC1B,kBAAkB;IAClB,sBAAsB;IACtB,4BAA4B;IAC5B,gBAAgB;IAChB,sBAAsB;IACtB,wBAAwB;IACxB,gCAAgC;IAChC,8BAA8B;IAC9B,sCAAsC;IACtC,2BAA2B;IAC3B,iCAAiC;IACjC,iBAAiB;IACjB,uBAAuB;IACvB,kBAAkB;IAClB,uCAAuC;IACvC,iCAAiC;IACjC,iBAAiB;IACjB,yBAAyB;IACzB,iCAAiC;IACjC,mBAAmB;IACnB,2BAA2B;IAC3B,2BAA2B;IAC3B,mCAAmC;IACnC,wBAAwB;IACxB,2BAA2B;IAC3B,uBAAuB;IACvB,uBAAuB;IACvB,4BAA4B;IAC5B,qBAAqB;IACrB,6BAA6B;IAC7B,iBAAiB;IACjB,uBAAuB;IACvB,yBAAyB;IACzB,mBAAmB;IACnB,sBAAsB;IACtB,yBAAyB;CAC1B,CAAA"}
@@ -0,0 +1,2 @@
1
+ /** Notice: Auto generated file, do not edit */
2
+ export declare const CameraPresets: string[];
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ /** Notice: Auto generated file, do not edit */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.CameraPresets = void 0;
5
+ exports.CameraPresets = [
6
+ "minecraft:first_person",
7
+ "minecraft:fixed_boom",
8
+ "minecraft:follow_orbit",
9
+ "minecraft:free",
10
+ "minecraft:third_person",
11
+ "minecraft:third_person_front"
12
+ ];
13
+ //# sourceMappingURL=camera_presets.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"camera_presets.js","sourceRoot":"","sources":["../../../../src/Lib/General/camera_presets.ts"],"names":[],"mappings":";AAAA,+CAA+C;;;AAGlC,QAAA,aAAa,GAC1B;IACE,wBAAwB;IACxB,sBAAsB;IACtB,wBAAwB;IACxB,gBAAgB;IAChB,wBAAwB;IACxB,8BAA8B;CAC/B,CAAA"}
@@ -0,0 +1,2 @@
1
+ /** Notice: Auto generated file, do not edit */
2
+ export declare const CooldownCategory: string[];
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ /** Notice: Auto generated file, do not edit */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.CooldownCategory = void 0;
5
+ exports.CooldownCategory = [
6
+ "minecraft:chorusfruit",
7
+ "minecraft:ender_pearl",
8
+ "minecraft:goat_horn",
9
+ "minecraft:shield",
10
+ "minecraft:wind_charge"
11
+ ];
12
+ //# sourceMappingURL=cooldown_category.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cooldown_category.js","sourceRoot":"","sources":["../../../../src/Lib/General/cooldown_category.ts"],"names":[],"mappings":";AAAA,+CAA+C;;;AAGlC,QAAA,gBAAgB,GAC7B;IACE,uBAAuB;IACvB,uBAAuB;IACvB,qBAAqB;IACrB,kBAAkB;IAClB,uBAAuB;CACxB,CAAA"}
@@ -0,0 +1,2 @@
1
+ /** Notice: Auto generated file, do not edit */
2
+ export declare const Dimensions: string[];
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ /** Notice: Auto generated file, do not edit */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.Dimensions = void 0;
5
+ exports.Dimensions = [
6
+ "minecraft:nether",
7
+ "minecraft:overworld",
8
+ "minecraft:the_end"
9
+ ];
10
+ //# sourceMappingURL=dimensions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dimensions.js","sourceRoot":"","sources":["../../../../src/Lib/General/dimensions.ts"],"names":[],"mappings":";AAAA,+CAA+C;;;AAGlC,QAAA,UAAU,GACvB;IACE,kBAAkB;IAClB,qBAAqB;IACrB,mBAAmB;CACpB,CAAA"}
@@ -1 +1,2 @@
1
+ /** Notice: Auto generated file, do not edit */
1
2
  export declare const Effects: string[];
@@ -1,36 +1,43 @@
1
1
  "use strict";
2
+ /** Notice: Auto generated file, do not edit */
2
3
  Object.defineProperty(exports, "__esModule", { value: true });
3
4
  exports.Effects = void 0;
4
5
  exports.Effects = [
5
- "speed",
6
- "slowness",
7
- "haste",
8
- "mining_fatigue",
9
- "strength",
10
- "instant_health",
11
- "instant_damage",
12
- "jump_boost",
13
- "nausea",
14
- "regeneration",
15
- "resistance",
16
- "fire_resistance",
17
- "water_breathing",
18
- "invisibility",
19
- "blindness",
20
- "night_vision",
21
- "hunger",
22
- "weakness",
23
- "poison",
24
- "wither",
25
- "health_boost",
26
- "absorption",
27
- "saturation",
28
- "levitation",
29
- "fatal_poison",
30
- "conduit_power",
31
- "slow_falling",
32
- "bad_omen",
33
- "village_hero",
34
- "darkness"
6
+ "minecraft:absorption",
7
+ "minecraft:bad_omen",
8
+ "minecraft:blindness",
9
+ "minecraft:conduit_power",
10
+ "minecraft:darkness",
11
+ "minecraft:fatal_poison",
12
+ "minecraft:fire_resistance",
13
+ "minecraft:haste",
14
+ "minecraft:health_boost",
15
+ "minecraft:hunger",
16
+ "minecraft:infested",
17
+ "minecraft:instant_damage",
18
+ "minecraft:instant_health",
19
+ "minecraft:invisibility",
20
+ "minecraft:jump_boost",
21
+ "minecraft:levitation",
22
+ "minecraft:mining_fatigue",
23
+ "minecraft:nausea",
24
+ "minecraft:night_vision",
25
+ "minecraft:oozing",
26
+ "minecraft:poison",
27
+ "minecraft:raid_omen",
28
+ "minecraft:regeneration",
29
+ "minecraft:resistance",
30
+ "minecraft:saturation",
31
+ "minecraft:slow_falling",
32
+ "minecraft:slowness",
33
+ "minecraft:speed",
34
+ "minecraft:strength",
35
+ "minecraft:trial_omen",
36
+ "minecraft:village_hero",
37
+ "minecraft:water_breathing",
38
+ "minecraft:weakness",
39
+ "minecraft:weaving",
40
+ "minecraft:wind_charged",
41
+ "minecraft:wither"
35
42
  ];
36
43
  //# sourceMappingURL=effects.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"effects.js","sourceRoot":"","sources":["../../../../src/Lib/General/effects.ts"],"names":[],"mappings":";;;AAAa,QAAA,OAAO,GAAa;IAC/B,OAAO;IACP,UAAU;IACV,OAAO;IACP,gBAAgB;IAChB,UAAU;IACV,gBAAgB;IAChB,gBAAgB;IAChB,YAAY;IACZ,QAAQ;IACR,cAAc;IACd,YAAY;IACZ,iBAAiB;IACjB,iBAAiB;IACjB,cAAc;IACd,WAAW;IACX,cAAc;IACd,QAAQ;IACR,UAAU;IACV,QAAQ;IACR,QAAQ;IACR,cAAc;IACd,YAAY;IACZ,YAAY;IACZ,YAAY;IACZ,cAAc;IACd,eAAe;IACf,cAAc;IACd,UAAU;IACV,cAAc;IACd,UAAU;CACX,CAAC"}
1
+ {"version":3,"file":"effects.js","sourceRoot":"","sources":["../../../../src/Lib/General/effects.ts"],"names":[],"mappings":";AAAA,+CAA+C;;;AAGlC,QAAA,OAAO,GACpB;IACE,sBAAsB;IACtB,oBAAoB;IACpB,qBAAqB;IACrB,yBAAyB;IACzB,oBAAoB;IACpB,wBAAwB;IACxB,2BAA2B;IAC3B,iBAAiB;IACjB,wBAAwB;IACxB,kBAAkB;IAClB,oBAAoB;IACpB,0BAA0B;IAC1B,0BAA0B;IAC1B,wBAAwB;IACxB,sBAAsB;IACtB,sBAAsB;IACtB,0BAA0B;IAC1B,kBAAkB;IAClB,wBAAwB;IACxB,kBAAkB;IAClB,kBAAkB;IAClB,qBAAqB;IACrB,wBAAwB;IACxB,sBAAsB;IACtB,sBAAsB;IACtB,wBAAwB;IACxB,oBAAoB;IACpB,iBAAiB;IACjB,oBAAoB;IACpB,sBAAsB;IACtB,wBAAwB;IACxB,2BAA2B;IAC3B,oBAAoB;IACpB,mBAAmB;IACnB,wBAAwB;IACxB,kBAAkB;CACnB,CAAA"}
@@ -0,0 +1,2 @@
1
+ /** Notice: Auto generated file, do not edit */
2
+ export declare const Enchantments: string[];
@@ -0,0 +1,48 @@
1
+ "use strict";
2
+ /** Notice: Auto generated file, do not edit */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.Enchantments = void 0;
5
+ exports.Enchantments = [
6
+ "minecraft:aqua_affinity",
7
+ "minecraft:bane_of_arthropods",
8
+ "minecraft:binding",
9
+ "minecraft:blast_protection",
10
+ "minecraft:bow_infinity",
11
+ "minecraft:breach",
12
+ "minecraft:channeling",
13
+ "minecraft:density",
14
+ "minecraft:depth_strider",
15
+ "minecraft:efficiency",
16
+ "minecraft:feather_falling",
17
+ "minecraft:fire_aspect",
18
+ "minecraft:fire_protection",
19
+ "minecraft:flame",
20
+ "minecraft:fortune",
21
+ "minecraft:frost_walker",
22
+ "minecraft:impaling",
23
+ "minecraft:knockback",
24
+ "minecraft:looting",
25
+ "minecraft:loyalty",
26
+ "minecraft:luck_of_the_sea",
27
+ "minecraft:lure",
28
+ "minecraft:mending",
29
+ "minecraft:multishot",
30
+ "minecraft:piercing",
31
+ "minecraft:power",
32
+ "minecraft:projectile_protection",
33
+ "minecraft:protection",
34
+ "minecraft:punch",
35
+ "minecraft:quick_charge",
36
+ "minecraft:respiration",
37
+ "minecraft:riptide",
38
+ "minecraft:sharpness",
39
+ "minecraft:silk_touch",
40
+ "minecraft:smite",
41
+ "minecraft:soul_speed",
42
+ "minecraft:swift_sneak",
43
+ "minecraft:thorns",
44
+ "minecraft:unbreaking",
45
+ "minecraft:vanishing",
46
+ "minecraft:wind_burst"
47
+ ];
48
+ //# sourceMappingURL=enchantments.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"enchantments.js","sourceRoot":"","sources":["../../../../src/Lib/General/enchantments.ts"],"names":[],"mappings":";AAAA,+CAA+C;;;AAGlC,QAAA,YAAY,GACzB;IACE,yBAAyB;IACzB,8BAA8B;IAC9B,mBAAmB;IACnB,4BAA4B;IAC5B,wBAAwB;IACxB,kBAAkB;IAClB,sBAAsB;IACtB,mBAAmB;IACnB,yBAAyB;IACzB,sBAAsB;IACtB,2BAA2B;IAC3B,uBAAuB;IACvB,2BAA2B;IAC3B,iBAAiB;IACjB,mBAAmB;IACnB,wBAAwB;IACxB,oBAAoB;IACpB,qBAAqB;IACrB,mBAAmB;IACnB,mBAAmB;IACnB,2BAA2B;IAC3B,gBAAgB;IAChB,mBAAmB;IACnB,qBAAqB;IACrB,oBAAoB;IACpB,iBAAiB;IACjB,iCAAiC;IACjC,sBAAsB;IACtB,iBAAiB;IACjB,wBAAwB;IACxB,uBAAuB;IACvB,mBAAmB;IACnB,qBAAqB;IACrB,sBAAsB;IACtB,iBAAiB;IACjB,sBAAsB;IACtB,uBAAuB;IACvB,kBAAkB;IAClB,sBAAsB;IACtB,qBAAqB;IACrB,sBAAsB;CACvB,CAAA"}
@@ -1,5 +1,14 @@
1
+ export * from "./biomes";
1
2
  export * from "./blocks";
3
+ export * from "./camera_presets";
4
+ export * from "./cooldown_category";
5
+ export * from "./dimensions";
2
6
  export * from "./effects";
7
+ export * from "./enchantments";
3
8
  export * from "./entities";
4
9
  export * from "./format-version";
5
10
  export * from "./format";
11
+ export * from "./index";
12
+ export * from "./potion_effects";
13
+ export * from "./potion_modifiers";
14
+ export * from "./potion_types";
@@ -15,9 +15,18 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
16
16
  };
17
17
  Object.defineProperty(exports, "__esModule", { value: true });
18
+ __exportStar(require("./biomes"), exports);
18
19
  __exportStar(require("./blocks"), exports);
20
+ __exportStar(require("./camera_presets"), exports);
21
+ __exportStar(require("./cooldown_category"), exports);
22
+ __exportStar(require("./dimensions"), exports);
19
23
  __exportStar(require("./effects"), exports);
24
+ __exportStar(require("./enchantments"), exports);
20
25
  __exportStar(require("./entities"), exports);
21
26
  __exportStar(require("./format-version"), exports);
22
27
  __exportStar(require("./format"), exports);
28
+ __exportStar(require("./index"), exports);
29
+ __exportStar(require("./potion_effects"), exports);
30
+ __exportStar(require("./potion_modifiers"), exports);
31
+ __exportStar(require("./potion_types"), exports);
23
32
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/Lib/General/index.ts"],"names":[],"mappings":";AAAA,oBAAoB;;;;;;;;;;;;;;;;AAEpB,2CAAyB;AACzB,4CAA0B;AAC1B,6CAA2B;AAC3B,mDAAiC;AACjC,2CAAyB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/Lib/General/index.ts"],"names":[],"mappings":";AAAA,oBAAoB;;;;;;;;;;;;;;;;AAEpB,2CAAyB;AACzB,2CAAyB;AACzB,mDAAiC;AACjC,sDAAoC;AACpC,+CAA6B;AAC7B,4CAA0B;AAC1B,iDAA+B;AAC/B,6CAA2B;AAC3B,mDAAiC;AACjC,2CAAyB;AACzB,0CAAwB;AACxB,mDAAiC;AACjC,qDAAmC;AACnC,iDAA+B"}
@@ -0,0 +1,2 @@
1
+ /** Notice: Auto generated file, do not edit */
2
+ export declare const PotionEffects: string[];
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ /** Notice: Auto generated file, do not edit */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.PotionEffects = void 0;
5
+ exports.PotionEffects = [
6
+ "FireResistance",
7
+ "Harming",
8
+ "Healing",
9
+ "Infested",
10
+ "Invisibility",
11
+ "Leaping",
12
+ "NightVision",
13
+ "None",
14
+ "Oozing",
15
+ "Poison",
16
+ "SlowFalling",
17
+ "Slowing",
18
+ "Strength",
19
+ "Swiftness",
20
+ "TurtleMaster",
21
+ "WaterBreath",
22
+ "Weakness",
23
+ "Weaving",
24
+ "WindCharged",
25
+ "Wither"
26
+ ];
27
+ //# sourceMappingURL=potion_effects.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"potion_effects.js","sourceRoot":"","sources":["../../../../src/Lib/General/potion_effects.ts"],"names":[],"mappings":";AAAA,+CAA+C;;;AAGlC,QAAA,aAAa,GAC1B;IACE,gBAAgB;IAChB,SAAS;IACT,SAAS;IACT,UAAU;IACV,cAAc;IACd,SAAS;IACT,aAAa;IACb,MAAM;IACN,QAAQ;IACR,QAAQ;IACR,aAAa;IACb,SAAS;IACT,UAAU;IACV,WAAW;IACX,cAAc;IACd,aAAa;IACb,UAAU;IACV,SAAS;IACT,aAAa;IACb,QAAQ;CACT,CAAA"}
@@ -0,0 +1,2 @@
1
+ /** Notice: Auto generated file, do not edit */
2
+ export declare const PotionModifiers: string[];
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ /** Notice: Auto generated file, do not edit */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.PotionModifiers = void 0;
5
+ exports.PotionModifiers = [
6
+ "Long",
7
+ "Normal",
8
+ "Strong"
9
+ ];
10
+ //# sourceMappingURL=potion_modifiers.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"potion_modifiers.js","sourceRoot":"","sources":["../../../../src/Lib/General/potion_modifiers.ts"],"names":[],"mappings":";AAAA,+CAA+C;;;AAGlC,QAAA,eAAe,GAC5B;IACE,MAAM;IACN,QAAQ;IACR,QAAQ;CACT,CAAA"}
@@ -0,0 +1,2 @@
1
+ /** Notice: Auto generated file, do not edit */
2
+ export declare const PotionTypes: string[];
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ /** Notice: Auto generated file, do not edit */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.PotionTypes = void 0;
5
+ exports.PotionTypes = [
6
+ "Lingering",
7
+ "Regular",
8
+ "Splash"
9
+ ];
10
+ //# sourceMappingURL=potion_types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"potion_types.js","sourceRoot":"","sources":["../../../../src/Lib/General/potion_types.ts"],"names":[],"mappings":";AAAA,+CAA+C;;;AAGlC,QAAA,WAAW,GACxB;IACE,WAAW;IACX,SAAS;IACT,QAAQ;CACT,CAAA"}
@@ -1,5 +1,6 @@
1
1
  import { Block } from "./Block";
2
2
  import { Entity } from "./Entity";
3
+ import { Feature } from "./Feature";
3
4
  import { Item } from "./Item";
4
5
  import { LootTable } from "./LootTable";
5
6
  import { Trading } from "./Trading";
@@ -9,6 +10,8 @@ export interface BehaviorPack {
9
10
  readonly blocks: Block[];
10
11
  /**The collection of entities*/
11
12
  readonly entities: Entity[];
13
+ /**The collection of features*/
14
+ readonly features: Feature[];
12
15
  /**The collection of items*/
13
16
  readonly items: Item[];
14
17
  /**The collection of loot tables*/
@@ -0,0 +1,4 @@
1
+ /**
2
+ *
3
+ */
4
+ export type Feature = string;
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=Feature.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Feature.js","sourceRoot":"","sources":["../../../../../src/Lib/Types/BehaviorPack/Feature.ts"],"names":[],"mappings":""}
@@ -2,6 +2,7 @@ export * from "./BehaviorPack";
2
2
  export * from "./Block";
3
3
  export * from "./BlockState";
4
4
  export * from "./Entity";
5
+ export * from "./Feature";
5
6
  export * from "./Item";
6
7
  export * from "./LootTable";
7
8
  export * from "./Trading";
@@ -19,6 +19,7 @@ __exportStar(require("./BehaviorPack"), exports);
19
19
  __exportStar(require("./Block"), exports);
20
20
  __exportStar(require("./BlockState"), exports);
21
21
  __exportStar(require("./Entity"), exports);
22
+ __exportStar(require("./Feature"), exports);
22
23
  __exportStar(require("./Item"), exports);
23
24
  __exportStar(require("./LootTable"), exports);
24
25
  __exportStar(require("./Trading"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/Lib/Types/BehaviorPack/index.ts"],"names":[],"mappings":";AAAA,oBAAoB;;;;;;;;;;;;;;;;AAEpB,iDAA+B;AAC/B,0CAAwB;AACxB,+CAA6B;AAC7B,2CAAyB;AACzB,yCAAuB;AACvB,8CAA4B;AAC5B,4CAA0B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/Lib/Types/BehaviorPack/index.ts"],"names":[],"mappings":";AAAA,oBAAoB;;;;;;;;;;;;;;;;AAEpB,iDAA+B;AAC/B,0CAAwB;AACxB,+CAA6B;AAC7B,2CAAyB;AACzB,4CAA0B;AAC1B,yCAAuB;AACvB,8CAA4B;AAC5B,4CAA0B"}