redscript-mc 1.0.0 → 1.2.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.
- package/.github/ISSUE_TEMPLATE/bug_report.yml +72 -0
- package/.github/ISSUE_TEMPLATE/feature_request.yml +57 -0
- package/.github/PULL_REQUEST_TEMPLATE.md +17 -25
- package/CHANGELOG.md +112 -0
- package/CONTRIBUTING.md +140 -0
- package/README.md +28 -19
- package/README.zh.md +28 -19
- package/dist/__tests__/cli.test.js +148 -10
- package/dist/__tests__/codegen.test.js +26 -1
- package/dist/__tests__/diagnostics.test.js +5 -5
- package/dist/__tests__/e2e.test.js +336 -17
- package/dist/__tests__/formatter.test.d.ts +1 -0
- package/dist/__tests__/formatter.test.js +40 -0
- package/dist/__tests__/lexer.test.js +12 -2
- package/dist/__tests__/lowering.test.js +200 -12
- package/dist/__tests__/mc-integration.test.js +370 -31
- package/dist/__tests__/mc-syntax.test.js +3 -3
- package/dist/__tests__/nbt.test.js +2 -2
- package/dist/__tests__/optimizer-advanced.test.js +5 -5
- package/dist/__tests__/parser.test.js +80 -0
- package/dist/__tests__/runtime.test.js +9 -9
- package/dist/__tests__/typechecker.test.js +158 -0
- package/dist/ast/types.d.ts +40 -3
- package/dist/cli.js +25 -7
- package/dist/codegen/mcfunction/index.d.ts +1 -1
- package/dist/codegen/mcfunction/index.js +38 -3
- package/dist/codegen/structure/index.js +32 -1
- package/dist/compile.d.ts +10 -0
- package/dist/compile.js +36 -5
- package/dist/events/types.d.ts +35 -0
- package/dist/events/types.js +59 -0
- package/dist/formatter/index.d.ts +1 -0
- package/dist/formatter/index.js +26 -0
- package/dist/index.js +3 -2
- package/dist/ir/builder.d.ts +2 -1
- package/dist/ir/types.d.ts +11 -2
- package/dist/ir/types.js +1 -1
- package/dist/lexer/index.d.ts +1 -1
- package/dist/lexer/index.js +2 -0
- package/dist/lowering/index.d.ts +34 -1
- package/dist/lowering/index.js +622 -23
- package/dist/mc-test/runner.d.ts +2 -2
- package/dist/mc-test/runner.js +3 -3
- package/dist/mc-test/setup.js +2 -2
- package/dist/parser/index.d.ts +4 -0
- package/dist/parser/index.js +153 -16
- package/dist/typechecker/index.d.ts +17 -0
- package/dist/typechecker/index.js +343 -17
- package/docs/COMPILATION_STATS.md +24 -24
- package/docs/ENTITY_TYPE_SYSTEM.md +242 -0
- package/docs/IMPLEMENTATION_GUIDE.md +1 -1
- package/docs/STRUCTURE_TARGET.md +1 -1
- package/editors/vscode/.vscodeignore +1 -0
- package/editors/vscode/CHANGELOG.md +9 -0
- package/editors/vscode/icons/mcrs.svg +7 -0
- package/editors/vscode/icons/redscript-icons.json +10 -0
- package/editors/vscode/out/extension.js +1295 -80
- package/editors/vscode/package-lock.json +2 -2
- package/editors/vscode/package.json +10 -3
- package/editors/vscode/src/hover.ts +55 -2
- package/editors/vscode/src/symbols.ts +42 -0
- package/package.json +1 -1
- package/src/__tests__/cli.test.ts +176 -10
- package/src/__tests__/codegen.test.ts +28 -1
- package/src/__tests__/diagnostics.test.ts +5 -5
- package/src/__tests__/e2e.test.ts +335 -17
- package/src/__tests__/fixtures/event-test.mcrs +13 -0
- package/src/__tests__/fixtures/impl-test.mcrs +46 -0
- package/src/__tests__/fixtures/interval-test.mcrs +11 -0
- package/src/__tests__/fixtures/is-check-test.mcrs +20 -0
- package/src/__tests__/fixtures/timeout-test.mcrs +7 -0
- package/src/__tests__/lexer.test.ts +14 -2
- package/src/__tests__/lowering.test.ts +226 -12
- package/src/__tests__/mc-integration.test.ts +421 -31
- package/src/__tests__/mc-syntax.test.ts +3 -3
- package/src/__tests__/nbt.test.ts +2 -2
- package/src/__tests__/optimizer-advanced.test.ts +5 -5
- package/src/__tests__/parser.test.ts +91 -5
- package/src/__tests__/runtime.test.ts +9 -9
- package/src/__tests__/typechecker.test.ts +171 -0
- package/src/ast/types.ts +44 -3
- package/src/cli.ts +10 -10
- package/src/codegen/mcfunction/index.ts +40 -3
- package/src/codegen/structure/index.ts +35 -1
- package/src/compile.ts +54 -6
- package/src/events/types.ts +69 -0
- package/src/examples/capture_the_flag.mcrs +208 -0
- package/src/examples/{counter.rs → counter.mcrs} +1 -1
- package/src/examples/hunger_games.mcrs +301 -0
- package/src/examples/new_features_demo.mcrs +193 -0
- package/src/examples/parkour_race.mcrs +233 -0
- package/src/examples/rpg.mcrs +13 -0
- package/src/examples/{shop.rs → shop.mcrs} +1 -1
- package/src/examples/{showcase_game.rs → showcase_game.mcrs} +3 -3
- package/src/examples/{turret.rs → turret.mcrs} +1 -1
- package/src/examples/zombie_survival.mcrs +314 -0
- package/src/index.ts +4 -3
- package/src/ir/builder.ts +3 -1
- package/src/ir/types.ts +12 -2
- package/src/lexer/index.ts +3 -1
- package/src/lowering/index.ts +684 -24
- package/src/mc-test/runner.ts +3 -3
- package/src/mc-test/setup.ts +2 -2
- package/src/parser/index.ts +170 -19
- package/src/stdlib/README.md +178 -140
- package/src/stdlib/bossbar.mcrs +68 -0
- package/src/stdlib/{cooldown.rs → cooldown.mcrs} +1 -1
- package/src/stdlib/effects.mcrs +64 -0
- package/src/stdlib/interactions.mcrs +195 -0
- package/src/stdlib/inventory.mcrs +38 -0
- package/src/stdlib/mobs.mcrs +99 -0
- package/src/stdlib/particles.mcrs +52 -0
- package/src/stdlib/sets.mcrs +20 -0
- package/src/stdlib/spawn.mcrs +41 -0
- package/src/stdlib/tags.mcrs +951 -0
- package/src/stdlib/teams.mcrs +68 -0
- package/src/stdlib/timer.mcrs +72 -0
- package/src/stdlib/world.mcrs +92 -0
- package/src/typechecker/index.ts +404 -18
- package/src/examples/rpg.rs +0 -13
- package/src/stdlib/mobs.rs +0 -99
- package/src/stdlib/timer.rs +0 -51
- /package/src/examples/{arena.rs → arena.mcrs} +0 -0
- /package/src/examples/{pvp_arena.rs → pvp_arena.mcrs} +0 -0
- /package/src/examples/{quiz.rs → quiz.mcrs} +0 -0
- /package/src/examples/{stdlib_demo.rs → stdlib_demo.mcrs} +0 -0
- /package/src/examples/{world_manager.rs → world_manager.mcrs} +0 -0
- /package/src/stdlib/{combat.rs → combat.mcrs} +0 -0
- /package/src/stdlib/{math.rs → math.mcrs} +0 -0
- /package/src/stdlib/{player.rs → player.mcrs} +0 -0
- /package/src/stdlib/{strings.rs → strings.mcrs} +0 -0
- /package/src/templates/{combat.rs → combat.mcrs} +0 -0
- /package/src/templates/{economy.rs → economy.mcrs} +0 -0
- /package/src/templates/{mini-game-framework.rs → mini-game-framework.mcrs} +0 -0
- /package/src/templates/{quest.rs → quest.mcrs} +0 -0
- /package/src/test_programs/{zombie_game.rs → zombie_game.mcrs} +0 -0
|
@@ -0,0 +1,951 @@
|
|
|
1
|
+
// Minecraft Java Edition tag constants generated from the Minecraft Fandom Tag page.
|
|
2
|
+
// Covers Java Edition block, entity type, item, fluid, and damage type tags listed on the page.
|
|
3
|
+
|
|
4
|
+
// ===== BLOCK TAGS =====
|
|
5
|
+
|
|
6
|
+
/// Blocks in `#minecraft:mineable/axe`.
|
|
7
|
+
const BLOCK_MINEABLE_AXE: string = "#minecraft:mineable/axe";
|
|
8
|
+
|
|
9
|
+
/// Blocks in `#minecraft:mineable/hoe`.
|
|
10
|
+
const BLOCK_MINEABLE_HOE: string = "#minecraft:mineable/hoe";
|
|
11
|
+
|
|
12
|
+
/// Blocks in `#minecraft:mineable/pickaxe`.
|
|
13
|
+
const BLOCK_MINEABLE_PICKAXE: string = "#minecraft:mineable/pickaxe";
|
|
14
|
+
|
|
15
|
+
/// Blocks in `#minecraft:mineable/shovel`.
|
|
16
|
+
const BLOCK_MINEABLE_SHOVEL: string = "#minecraft:mineable/shovel";
|
|
17
|
+
|
|
18
|
+
/// Blocks in `#minecraft:all_hanging_signs`.
|
|
19
|
+
const BLOCK_ALL_HANGING_SIGNS: string = "#minecraft:all_hanging_signs";
|
|
20
|
+
|
|
21
|
+
/// Blocks in `#minecraft:all_signs`.
|
|
22
|
+
const BLOCK_ALL_SIGNS: string = "#minecraft:all_signs";
|
|
23
|
+
|
|
24
|
+
/// Blocks in `#minecraft:ancient_city_replaceable`.
|
|
25
|
+
const BLOCK_ANCIENT_CITY_REPLACEABLE: string = "#minecraft:ancient_city_replaceable";
|
|
26
|
+
|
|
27
|
+
/// Blocks in `#minecraft:animals_spawnable_on`.
|
|
28
|
+
const BLOCK_ANIMALS_SPAWNABLE_ON: string = "#minecraft:animals_spawnable_on";
|
|
29
|
+
|
|
30
|
+
/// Blocks in `#minecraft:anvil`.
|
|
31
|
+
const BLOCK_ANVIL: string = "#minecraft:anvil";
|
|
32
|
+
|
|
33
|
+
/// Blocks in `#minecraft:axolotls_spawnable_on`.
|
|
34
|
+
const BLOCK_AXOLOTLS_SPAWNABLE_ON: string = "#minecraft:axolotls_spawnable_on";
|
|
35
|
+
|
|
36
|
+
/// Blocks in `#minecraft:azalea_grows_on`.
|
|
37
|
+
const BLOCK_AZALEA_GROWS_ON: string = "#minecraft:azalea_grows_on";
|
|
38
|
+
|
|
39
|
+
/// Blocks in `#minecraft:azalea_root_replaceable`.
|
|
40
|
+
const BLOCK_AZALEA_ROOT_REPLACEABLE: string = "#minecraft:azalea_root_replaceable";
|
|
41
|
+
|
|
42
|
+
/// Blocks in `#minecraft:acacia_logs`.
|
|
43
|
+
const BLOCK_ACACIA_LOGS: string = "#minecraft:acacia_logs";
|
|
44
|
+
|
|
45
|
+
/// Blocks in `#minecraft:bamboo_blocks`.
|
|
46
|
+
const BLOCK_BAMBOO_BLOCKS: string = "#minecraft:bamboo_blocks";
|
|
47
|
+
|
|
48
|
+
/// Blocks in `#minecraft:bamboo_plantable_on`.
|
|
49
|
+
const BLOCK_BAMBOO_PLANTABLE_ON: string = "#minecraft:bamboo_plantable_on";
|
|
50
|
+
|
|
51
|
+
/// Blocks in `#minecraft:banners`.
|
|
52
|
+
const BLOCK_BANNERS: string = "#minecraft:banners";
|
|
53
|
+
|
|
54
|
+
/// Blocks in `#minecraft:base_stone_nether`.
|
|
55
|
+
const BLOCK_BASE_STONE_NETHER: string = "#minecraft:base_stone_nether";
|
|
56
|
+
|
|
57
|
+
/// Blocks in `#minecraft:base_stone_overworld`.
|
|
58
|
+
const BLOCK_BASE_STONE_OVERWORLD: string = "#minecraft:base_stone_overworld";
|
|
59
|
+
|
|
60
|
+
/// Blocks in `#minecraft:beacon_base_blocks`.
|
|
61
|
+
const BLOCK_BEACON_BASE_BLOCKS: string = "#minecraft:beacon_base_blocks";
|
|
62
|
+
|
|
63
|
+
/// Blocks in `#minecraft:beds`.
|
|
64
|
+
const BLOCK_BEDS: string = "#minecraft:beds";
|
|
65
|
+
|
|
66
|
+
/// Blocks in `#minecraft:beehives`.
|
|
67
|
+
const BLOCK_BEEHIVES: string = "#minecraft:beehives";
|
|
68
|
+
|
|
69
|
+
/// Blocks in `#minecraft:bee_growables`.
|
|
70
|
+
const BLOCK_BEE_GROWABLES: string = "#minecraft:bee_growables";
|
|
71
|
+
|
|
72
|
+
/// Blocks in `#minecraft:big_dripleaf_placeable`.
|
|
73
|
+
const BLOCK_BIG_DRIPLEAF_PLACEABLE: string = "#minecraft:big_dripleaf_placeable";
|
|
74
|
+
|
|
75
|
+
/// Blocks in `#minecraft:birch_logs`.
|
|
76
|
+
const BLOCK_BIRCH_LOGS: string = "#minecraft:birch_logs";
|
|
77
|
+
|
|
78
|
+
/// Blocks in `#minecraft:buttons`.
|
|
79
|
+
const BLOCK_BUTTONS: string = "#minecraft:buttons";
|
|
80
|
+
|
|
81
|
+
/// Blocks in `#minecraft:camel_sand_step_sound_blocks`.
|
|
82
|
+
const BLOCK_CAMEL_SAND_STEP_SOUND_BLOCKS: string = "#minecraft:camel_sand_step_sound_blocks";
|
|
83
|
+
|
|
84
|
+
/// Blocks in `#minecraft:campfires`.
|
|
85
|
+
const BLOCK_CAMPFIRES: string = "#minecraft:campfires";
|
|
86
|
+
|
|
87
|
+
/// Blocks in `#minecraft:candle_cakes`.
|
|
88
|
+
const BLOCK_CANDLE_CAKES: string = "#minecraft:candle_cakes";
|
|
89
|
+
|
|
90
|
+
/// Blocks in `#minecraft:candles`.
|
|
91
|
+
const BLOCK_CANDLES: string = "#minecraft:candles";
|
|
92
|
+
|
|
93
|
+
/// Blocks in `#minecraft:cauldrons`.
|
|
94
|
+
const BLOCK_CAULDRONS: string = "#minecraft:cauldrons";
|
|
95
|
+
|
|
96
|
+
/// Blocks in `#minecraft:cave_vines`.
|
|
97
|
+
const BLOCK_CAVE_VINES: string = "#minecraft:cave_vines";
|
|
98
|
+
|
|
99
|
+
/// Blocks in `#minecraft:ceiling_hanging_signs`.
|
|
100
|
+
const BLOCK_CEILING_HANGING_SIGNS: string = "#minecraft:ceiling_hanging_signs";
|
|
101
|
+
|
|
102
|
+
/// Blocks in `#minecraft:cherry_logs`.
|
|
103
|
+
const BLOCK_CHERRY_LOGS: string = "#minecraft:cherry_logs";
|
|
104
|
+
|
|
105
|
+
/// Blocks in `#minecraft:climbable`.
|
|
106
|
+
const BLOCK_CLIMBABLE: string = "#minecraft:climbable";
|
|
107
|
+
|
|
108
|
+
/// Blocks in `#minecraft:coal_ores`.
|
|
109
|
+
const BLOCK_COAL_ORES: string = "#minecraft:coal_ores";
|
|
110
|
+
|
|
111
|
+
/// Blocks in `#minecraft:combination_step_sound_blocks`.
|
|
112
|
+
const BLOCK_COMBINATION_STEP_SOUND_BLOCKS: string = "#minecraft:combination_step_sound_blocks";
|
|
113
|
+
|
|
114
|
+
/// Blocks in `#minecraft:completes_find_tree_tutorial`.
|
|
115
|
+
const BLOCK_COMPLETES_FIND_TREE_TUTORIAL: string = "#minecraft:completes_find_tree_tutorial";
|
|
116
|
+
|
|
117
|
+
/// Blocks in `#minecraft:concrete_powder`.
|
|
118
|
+
const BLOCK_CONCRETE_POWDER: string = "#minecraft:concrete_powder";
|
|
119
|
+
|
|
120
|
+
/// Blocks in `#minecraft:convertable_to_mud`.
|
|
121
|
+
const BLOCK_CONVERTABLE_TO_MUD: string = "#minecraft:convertable_to_mud";
|
|
122
|
+
|
|
123
|
+
/// Blocks in `#minecraft:copper_ores`.
|
|
124
|
+
const BLOCK_COPPER_ORES: string = "#minecraft:copper_ores";
|
|
125
|
+
|
|
126
|
+
/// Blocks in `#minecraft:corals`.
|
|
127
|
+
const BLOCK_CORALS: string = "#minecraft:corals";
|
|
128
|
+
|
|
129
|
+
/// Blocks in `#minecraft:coral_blocks`.
|
|
130
|
+
const BLOCK_CORAL_BLOCKS: string = "#minecraft:coral_blocks";
|
|
131
|
+
|
|
132
|
+
/// Blocks in `#minecraft:coral_plants`.
|
|
133
|
+
const BLOCK_CORAL_PLANTS: string = "#minecraft:coral_plants";
|
|
134
|
+
|
|
135
|
+
/// Blocks in `#minecraft:crimson_stems`.
|
|
136
|
+
const BLOCK_CRIMSON_STEMS: string = "#minecraft:crimson_stems";
|
|
137
|
+
|
|
138
|
+
/// Blocks in `#minecraft:crops`.
|
|
139
|
+
const BLOCK_CROPS: string = "#minecraft:crops";
|
|
140
|
+
|
|
141
|
+
/// Blocks in `#minecraft:crystal_sound_blocks`.
|
|
142
|
+
const BLOCK_CRYSTAL_SOUND_BLOCKS: string = "#minecraft:crystal_sound_blocks";
|
|
143
|
+
|
|
144
|
+
/// Blocks in `#minecraft:dampens_vibrations`.
|
|
145
|
+
const BLOCK_DAMPENS_VIBRATIONS: string = "#minecraft:dampens_vibrations";
|
|
146
|
+
|
|
147
|
+
/// Blocks in `#minecraft:dark_oak_logs`.
|
|
148
|
+
const BLOCK_DARK_OAK_LOGS: string = "#minecraft:dark_oak_logs";
|
|
149
|
+
|
|
150
|
+
/// Blocks in `#minecraft:dead_bush_may_place_on`.
|
|
151
|
+
const BLOCK_DEAD_BUSH_MAY_PLACE_ON: string = "#minecraft:dead_bush_may_place_on";
|
|
152
|
+
|
|
153
|
+
/// Blocks in `#minecraft:deepslate_ore_replaceables`.
|
|
154
|
+
const BLOCK_DEEPSLATE_ORE_REPLACEABLES: string = "#minecraft:deepslate_ore_replaceables";
|
|
155
|
+
|
|
156
|
+
/// Blocks in `#minecraft:diamond_ores`.
|
|
157
|
+
const BLOCK_DIAMOND_ORES: string = "#minecraft:diamond_ores";
|
|
158
|
+
|
|
159
|
+
/// Blocks in `#minecraft:dirt`.
|
|
160
|
+
const BLOCK_DIRT: string = "#minecraft:dirt";
|
|
161
|
+
|
|
162
|
+
/// Blocks in `#minecraft:doors`.
|
|
163
|
+
const BLOCK_DOORS: string = "#minecraft:doors";
|
|
164
|
+
|
|
165
|
+
/// Blocks in `#minecraft:dragon_immune`.
|
|
166
|
+
const BLOCK_DRAGON_IMMUNE: string = "#minecraft:dragon_immune";
|
|
167
|
+
|
|
168
|
+
/// Blocks in `#minecraft:dragon_transparent`.
|
|
169
|
+
const BLOCK_DRAGON_TRANSPARENT: string = "#minecraft:dragon_transparent";
|
|
170
|
+
|
|
171
|
+
/// Blocks in `#minecraft:dripstone_replaceable_blocks`.
|
|
172
|
+
const BLOCK_DRIPSTONE_REPLACEABLE_BLOCKS: string = "#minecraft:dripstone_replaceable_blocks";
|
|
173
|
+
|
|
174
|
+
/// Blocks in `#minecraft:emerald_ores`.
|
|
175
|
+
const BLOCK_EMERALD_ORES: string = "#minecraft:emerald_ores";
|
|
176
|
+
|
|
177
|
+
/// Blocks in `#minecraft:enchantment_power_provider`.
|
|
178
|
+
const BLOCK_ENCHANTMENT_POWER_PROVIDER: string = "#minecraft:enchantment_power_provider";
|
|
179
|
+
|
|
180
|
+
/// Blocks in `#minecraft:enchantment_power_transmitter`.
|
|
181
|
+
const BLOCK_ENCHANTMENT_POWER_TRANSMITTER: string = "#minecraft:enchantment_power_transmitter";
|
|
182
|
+
|
|
183
|
+
/// Blocks in `#minecraft:enderman_holdable`.
|
|
184
|
+
const BLOCK_ENDERMAN_HOLDABLE: string = "#minecraft:enderman_holdable";
|
|
185
|
+
|
|
186
|
+
/// Blocks in `#minecraft:fall_damage_resetting`.
|
|
187
|
+
const BLOCK_FALL_DAMAGE_RESETTING: string = "#minecraft:fall_damage_resetting";
|
|
188
|
+
|
|
189
|
+
/// Blocks in `#minecraft:features_cannot_replace`.
|
|
190
|
+
const BLOCK_FEATURES_CANNOT_REPLACE: string = "#minecraft:features_cannot_replace";
|
|
191
|
+
|
|
192
|
+
/// Blocks in `#minecraft:fence_gates`.
|
|
193
|
+
const BLOCK_FENCE_GATES: string = "#minecraft:fence_gates";
|
|
194
|
+
|
|
195
|
+
/// Blocks in `#minecraft:fences`.
|
|
196
|
+
const BLOCK_FENCES: string = "#minecraft:fences";
|
|
197
|
+
|
|
198
|
+
/// Blocks in `#minecraft:fire`.
|
|
199
|
+
const BLOCK_FIRE: string = "#minecraft:fire";
|
|
200
|
+
|
|
201
|
+
/// Blocks in `#minecraft:flower_pots`.
|
|
202
|
+
const BLOCK_FLOWER_POTS: string = "#minecraft:flower_pots";
|
|
203
|
+
|
|
204
|
+
/// Blocks in `#minecraft:flowers`.
|
|
205
|
+
const BLOCK_FLOWERS: string = "#minecraft:flowers";
|
|
206
|
+
|
|
207
|
+
/// Blocks in `#minecraft:foxes_spawnable_on`.
|
|
208
|
+
const BLOCK_FOXES_SPAWNABLE_ON: string = "#minecraft:foxes_spawnable_on";
|
|
209
|
+
|
|
210
|
+
/// Blocks in `#minecraft:frog_prefer_jump_to`.
|
|
211
|
+
const BLOCK_FROG_PREFER_JUMP_TO: string = "#minecraft:frog_prefer_jump_to";
|
|
212
|
+
|
|
213
|
+
/// Blocks in `#minecraft:frogs_spawnable_on`.
|
|
214
|
+
const BLOCK_FROGS_SPAWNABLE_ON: string = "#minecraft:frogs_spawnable_on";
|
|
215
|
+
|
|
216
|
+
/// Blocks in `#minecraft:geode_invalid_blocks`.
|
|
217
|
+
const BLOCK_GEODE_INVALID_BLOCKS: string = "#minecraft:geode_invalid_blocks";
|
|
218
|
+
|
|
219
|
+
/// Blocks in `#minecraft:goats_spawnable_on`.
|
|
220
|
+
const BLOCK_GOATS_SPAWNABLE_ON: string = "#minecraft:goats_spawnable_on";
|
|
221
|
+
|
|
222
|
+
/// Blocks in `#minecraft:gold_ores`.
|
|
223
|
+
const BLOCK_GOLD_ORES: string = "#minecraft:gold_ores";
|
|
224
|
+
|
|
225
|
+
/// Blocks in `#minecraft:guarded_by_piglins`.
|
|
226
|
+
const BLOCK_GUARDED_BY_PIGLINS: string = "#minecraft:guarded_by_piglins";
|
|
227
|
+
|
|
228
|
+
/// Blocks in `#minecraft:hoglin_repellents`.
|
|
229
|
+
const BLOCK_HOGLIN_REPELLENTS: string = "#minecraft:hoglin_repellents";
|
|
230
|
+
|
|
231
|
+
/// Blocks in `#minecraft:ice`.
|
|
232
|
+
const BLOCK_ICE: string = "#minecraft:ice";
|
|
233
|
+
|
|
234
|
+
/// Blocks in `#minecraft:impermeable`.
|
|
235
|
+
const BLOCK_IMPERMEABLE: string = "#minecraft:impermeable";
|
|
236
|
+
|
|
237
|
+
/// Blocks in `#minecraft:infiniburn_end`.
|
|
238
|
+
const BLOCK_INFINIBURN_END: string = "#minecraft:infiniburn_end";
|
|
239
|
+
|
|
240
|
+
/// Blocks in `#minecraft:infiniburn_nether`.
|
|
241
|
+
const BLOCK_INFINIBURN_NETHER: string = "#minecraft:infiniburn_nether";
|
|
242
|
+
|
|
243
|
+
/// Blocks in `#minecraft:infiniburn_overworld`.
|
|
244
|
+
const BLOCK_INFINIBURN_OVERWORLD: string = "#minecraft:infiniburn_overworld";
|
|
245
|
+
|
|
246
|
+
/// Blocks in `#minecraft:inside_step_sound_blocks`.
|
|
247
|
+
const BLOCK_INSIDE_STEP_SOUND_BLOCKS: string = "#minecraft:inside_step_sound_blocks";
|
|
248
|
+
|
|
249
|
+
/// Blocks in `#minecraft:invalid_spawn_inside`.
|
|
250
|
+
const BLOCK_INVALID_SPAWN_INSIDE: string = "#minecraft:invalid_spawn_inside";
|
|
251
|
+
|
|
252
|
+
/// Blocks in `#minecraft:iron_ores`.
|
|
253
|
+
const BLOCK_IRON_ORES: string = "#minecraft:iron_ores";
|
|
254
|
+
|
|
255
|
+
/// Blocks in `#minecraft:jungle_logs`.
|
|
256
|
+
const BLOCK_JUNGLE_LOGS: string = "#minecraft:jungle_logs";
|
|
257
|
+
|
|
258
|
+
/// Blocks in `#minecraft:lapis_ores`.
|
|
259
|
+
const BLOCK_LAPIS_ORES: string = "#minecraft:lapis_ores";
|
|
260
|
+
|
|
261
|
+
/// Blocks in `#minecraft:lava_pool_stone_cannot_replace`.
|
|
262
|
+
const BLOCK_LAVA_POOL_STONE_CANNOT_REPLACE: string = "#minecraft:lava_pool_stone_cannot_replace";
|
|
263
|
+
|
|
264
|
+
/// Blocks in `#minecraft:leaves`.
|
|
265
|
+
const BLOCK_LEAVES: string = "#minecraft:leaves";
|
|
266
|
+
|
|
267
|
+
/// Blocks in `#minecraft:logs`.
|
|
268
|
+
const BLOCK_LOGS: string = "#minecraft:logs";
|
|
269
|
+
|
|
270
|
+
/// Blocks in `#minecraft:logs_that_burn`.
|
|
271
|
+
const BLOCK_LOGS_THAT_BURN: string = "#minecraft:logs_that_burn";
|
|
272
|
+
|
|
273
|
+
/// Blocks in `#minecraft:lush_ground_replaceable`.
|
|
274
|
+
const BLOCK_LUSH_GROUND_REPLACEABLE: string = "#minecraft:lush_ground_replaceable";
|
|
275
|
+
|
|
276
|
+
/// Blocks in `#minecraft:maintains_farmland`.
|
|
277
|
+
const BLOCK_MAINTAINS_FARMLAND: string = "#minecraft:maintains_farmland";
|
|
278
|
+
|
|
279
|
+
/// Blocks in `#minecraft:mangrove_logs`.
|
|
280
|
+
const BLOCK_MANGROVE_LOGS: string = "#minecraft:mangrove_logs";
|
|
281
|
+
|
|
282
|
+
/// Blocks in `#minecraft:mangrove_logs_can_grow_through`.
|
|
283
|
+
const BLOCK_MANGROVE_LOGS_CAN_GROW_THROUGH: string = "#minecraft:mangrove_logs_can_grow_through";
|
|
284
|
+
|
|
285
|
+
/// Blocks in `#minecraft:mangrove_roots_can_grow_through`.
|
|
286
|
+
const BLOCK_MANGROVE_ROOTS_CAN_GROW_THROUGH: string = "#minecraft:mangrove_roots_can_grow_through";
|
|
287
|
+
|
|
288
|
+
/// Blocks in `#minecraft:mooshrooms_spawnable_on`.
|
|
289
|
+
const BLOCK_MOOSHROOMS_SPAWNABLE_ON: string = "#minecraft:mooshrooms_spawnable_on";
|
|
290
|
+
|
|
291
|
+
/// Blocks in `#minecraft:moss_replaceable`.
|
|
292
|
+
const BLOCK_MOSS_REPLACEABLE: string = "#minecraft:moss_replaceable";
|
|
293
|
+
|
|
294
|
+
/// Blocks in `#minecraft:mushroom_grow_block`.
|
|
295
|
+
const BLOCK_MUSHROOM_GROW_BLOCK: string = "#minecraft:mushroom_grow_block";
|
|
296
|
+
|
|
297
|
+
/// Blocks in `#minecraft:needs_diamond_tool`.
|
|
298
|
+
const BLOCK_NEEDS_DIAMOND_TOOL: string = "#minecraft:needs_diamond_tool";
|
|
299
|
+
|
|
300
|
+
/// Blocks in `#minecraft:needs_iron_tool`.
|
|
301
|
+
const BLOCK_NEEDS_IRON_TOOL: string = "#minecraft:needs_iron_tool";
|
|
302
|
+
|
|
303
|
+
/// Blocks in `#minecraft:needs_stone_tool`.
|
|
304
|
+
const BLOCK_NEEDS_STONE_TOOL: string = "#minecraft:needs_stone_tool";
|
|
305
|
+
|
|
306
|
+
/// Blocks in `#minecraft:nether_carver_replaceables`.
|
|
307
|
+
const BLOCK_NETHER_CARVER_REPLACEABLES: string = "#minecraft:nether_carver_replaceables";
|
|
308
|
+
|
|
309
|
+
/// Blocks in `#minecraft:nylium`.
|
|
310
|
+
const BLOCK_NYLIUM: string = "#minecraft:nylium";
|
|
311
|
+
|
|
312
|
+
/// Blocks in `#minecraft:oak_logs`.
|
|
313
|
+
const BLOCK_OAK_LOGS: string = "#minecraft:oak_logs";
|
|
314
|
+
|
|
315
|
+
/// Blocks in `#minecraft:occludes_vibration_signals`.
|
|
316
|
+
const BLOCK_OCCLUDES_VIBRATION_SIGNALS: string = "#minecraft:occludes_vibration_signals";
|
|
317
|
+
|
|
318
|
+
/// Blocks in `#minecraft:overworld_carver_replaceables`.
|
|
319
|
+
const BLOCK_OVERWORLD_CARVER_REPLACEABLES: string = "#minecraft:overworld_carver_replaceables";
|
|
320
|
+
|
|
321
|
+
/// Blocks in `#minecraft:overworld_natural_logs`.
|
|
322
|
+
const BLOCK_OVERWORLD_NATURAL_LOGS: string = "#minecraft:overworld_natural_logs";
|
|
323
|
+
|
|
324
|
+
/// Blocks in `#minecraft:parrots_spawnable_on`.
|
|
325
|
+
const BLOCK_PARROTS_SPAWNABLE_ON: string = "#minecraft:parrots_spawnable_on";
|
|
326
|
+
|
|
327
|
+
/// Blocks in `#minecraft:piglin_repellents`.
|
|
328
|
+
const BLOCK_PIGLIN_REPELLENTS: string = "#minecraft:piglin_repellents";
|
|
329
|
+
|
|
330
|
+
/// Blocks in `#minecraft:planks`.
|
|
331
|
+
const BLOCK_PLANKS: string = "#minecraft:planks";
|
|
332
|
+
|
|
333
|
+
/// Blocks in `#minecraft:polar_bears_spawnable_on_alternate`.
|
|
334
|
+
const BLOCK_POLAR_BEARS_SPAWNABLE_ON_ALTERNATE: string = "#minecraft:polar_bears_spawnable_on_alternate";
|
|
335
|
+
|
|
336
|
+
/// Blocks in `#minecraft:portals`.
|
|
337
|
+
const BLOCK_PORTALS: string = "#minecraft:portals";
|
|
338
|
+
|
|
339
|
+
/// Blocks in `#minecraft:pressure_plates`.
|
|
340
|
+
const BLOCK_PRESSURE_PLATES: string = "#minecraft:pressure_plates";
|
|
341
|
+
|
|
342
|
+
/// Blocks in `#minecraft:prevent_mob_spawning_inside`.
|
|
343
|
+
const BLOCK_PREVENT_MOB_SPAWNING_INSIDE: string = "#minecraft:prevent_mob_spawning_inside";
|
|
344
|
+
|
|
345
|
+
/// Blocks in `#minecraft:rabbits_spawnable_on`.
|
|
346
|
+
const BLOCK_RABBITS_SPAWNABLE_ON: string = "#minecraft:rabbits_spawnable_on";
|
|
347
|
+
|
|
348
|
+
/// Blocks in `#minecraft:rails`.
|
|
349
|
+
const BLOCK_RAILS: string = "#minecraft:rails";
|
|
350
|
+
|
|
351
|
+
/// Blocks in `#minecraft:redstone_ores`.
|
|
352
|
+
const BLOCK_REDSTONE_ORES: string = "#minecraft:redstone_ores";
|
|
353
|
+
|
|
354
|
+
/// Blocks in `#minecraft:replaceable`.
|
|
355
|
+
const BLOCK_REPLACEABLE: string = "#minecraft:replaceable";
|
|
356
|
+
|
|
357
|
+
/// Blocks in `#minecraft:replaceable_by_trees`.
|
|
358
|
+
const BLOCK_REPLACEABLE_BY_TREES: string = "#minecraft:replaceable_by_trees";
|
|
359
|
+
|
|
360
|
+
/// Blocks in `#minecraft:sand`.
|
|
361
|
+
const BLOCK_SAND: string = "#minecraft:sand";
|
|
362
|
+
|
|
363
|
+
/// Blocks in `#minecraft:saplings`.
|
|
364
|
+
const BLOCK_SAPLINGS: string = "#minecraft:saplings";
|
|
365
|
+
|
|
366
|
+
/// Blocks in `#minecraft:sculk_replaceable`.
|
|
367
|
+
const BLOCK_SCULK_REPLACEABLE: string = "#minecraft:sculk_replaceable";
|
|
368
|
+
|
|
369
|
+
/// Blocks in `#minecraft:sculk_replaceable_worldgen`.
|
|
370
|
+
const BLOCK_SCULK_REPLACEABLE_WORLDGEN: string = "#minecraft:sculk_replaceable_worldgen";
|
|
371
|
+
|
|
372
|
+
/// Blocks in `#minecraft:shulker_boxes`.
|
|
373
|
+
const BLOCK_SHULKER_BOXES: string = "#minecraft:shulker_boxes";
|
|
374
|
+
|
|
375
|
+
/// Blocks in `#minecraft:signs`.
|
|
376
|
+
const BLOCK_SIGNS: string = "#minecraft:signs";
|
|
377
|
+
|
|
378
|
+
/// Blocks in `#minecraft:slabs`.
|
|
379
|
+
const BLOCK_SLABS: string = "#minecraft:slabs";
|
|
380
|
+
|
|
381
|
+
/// Blocks in `#minecraft:small_dripleaf_placeable`.
|
|
382
|
+
const BLOCK_SMALL_DRIPLEAF_PLACEABLE: string = "#minecraft:small_dripleaf_placeable";
|
|
383
|
+
|
|
384
|
+
/// Blocks in `#minecraft:small_flowers`.
|
|
385
|
+
const BLOCK_SMALL_FLOWERS: string = "#minecraft:small_flowers";
|
|
386
|
+
|
|
387
|
+
/// Blocks in `#minecraft:smelts_to_glass`.
|
|
388
|
+
const BLOCK_SMELTS_TO_GLASS: string = "#minecraft:smelts_to_glass";
|
|
389
|
+
|
|
390
|
+
/// Blocks in `#minecraft:snaps_goat_horn`.
|
|
391
|
+
const BLOCK_SNAPS_GOAT_HORN: string = "#minecraft:snaps_goat_horn";
|
|
392
|
+
|
|
393
|
+
/// Blocks in `#minecraft:sniffer_diggable_block`.
|
|
394
|
+
const BLOCK_SNIFFER_DIGGABLE_BLOCK: string = "#minecraft:sniffer_diggable_block";
|
|
395
|
+
|
|
396
|
+
/// Blocks in `#minecraft:sniffer_egg_hatch_boost`.
|
|
397
|
+
const BLOCK_SNIFFER_EGG_HATCH_BOOST: string = "#minecraft:sniffer_egg_hatch_boost";
|
|
398
|
+
|
|
399
|
+
/// Blocks in `#minecraft:snow`.
|
|
400
|
+
const BLOCK_SNOW: string = "#minecraft:snow";
|
|
401
|
+
|
|
402
|
+
/// Blocks in `#minecraft:snow_layer_can_survive_on`.
|
|
403
|
+
const BLOCK_SNOW_LAYER_CAN_SURVIVE_ON: string = "#minecraft:snow_layer_can_survive_on";
|
|
404
|
+
|
|
405
|
+
/// Blocks in `#minecraft:snow_layer_cannot_survive_on`.
|
|
406
|
+
const BLOCK_SNOW_LAYER_CANNOT_SURVIVE_ON: string = "#minecraft:snow_layer_cannot_survive_on";
|
|
407
|
+
|
|
408
|
+
/// Blocks in `#minecraft:soul_fire_base_blocks`.
|
|
409
|
+
const BLOCK_SOUL_FIRE_BASE_BLOCKS: string = "#minecraft:soul_fire_base_blocks";
|
|
410
|
+
|
|
411
|
+
/// Blocks in `#minecraft:soul_speed_blocks`.
|
|
412
|
+
const BLOCK_SOUL_SPEED_BLOCKS: string = "#minecraft:soul_speed_blocks";
|
|
413
|
+
|
|
414
|
+
/// Blocks in `#minecraft:spruce_logs`.
|
|
415
|
+
const BLOCK_SPRUCE_LOGS: string = "#minecraft:spruce_logs";
|
|
416
|
+
|
|
417
|
+
/// Blocks in `#minecraft:stairs`.
|
|
418
|
+
const BLOCK_STAIRS: string = "#minecraft:stairs";
|
|
419
|
+
|
|
420
|
+
/// Blocks in `#minecraft:standing_signs`.
|
|
421
|
+
const BLOCK_STANDING_SIGNS: string = "#minecraft:standing_signs";
|
|
422
|
+
|
|
423
|
+
/// Blocks in `#minecraft:stone_bricks`.
|
|
424
|
+
const BLOCK_STONE_BRICKS: string = "#minecraft:stone_bricks";
|
|
425
|
+
|
|
426
|
+
/// Blocks in `#minecraft:stone_buttons`.
|
|
427
|
+
const BLOCK_STONE_BUTTONS: string = "#minecraft:stone_buttons";
|
|
428
|
+
|
|
429
|
+
/// Blocks in `#minecraft:stone_ore_replaceables`.
|
|
430
|
+
const BLOCK_STONE_ORE_REPLACEABLES: string = "#minecraft:stone_ore_replaceables";
|
|
431
|
+
|
|
432
|
+
/// Blocks in `#minecraft:stone_pressure_plates`.
|
|
433
|
+
const BLOCK_STONE_PRESSURE_PLATES: string = "#minecraft:stone_pressure_plates";
|
|
434
|
+
|
|
435
|
+
/// Blocks in `#minecraft:strider_warm_blocks`.
|
|
436
|
+
const BLOCK_STRIDER_WARM_BLOCKS: string = "#minecraft:strider_warm_blocks";
|
|
437
|
+
|
|
438
|
+
/// Blocks in `#minecraft:sword_efficient`.
|
|
439
|
+
const BLOCK_SWORD_EFFICIENT: string = "#minecraft:sword_efficient";
|
|
440
|
+
|
|
441
|
+
/// Blocks in `#minecraft:tall_flowers`.
|
|
442
|
+
const BLOCK_TALL_FLOWERS: string = "#minecraft:tall_flowers";
|
|
443
|
+
|
|
444
|
+
/// Blocks in `#minecraft:terracotta`.
|
|
445
|
+
const BLOCK_TERRACOTTA: string = "#minecraft:terracotta";
|
|
446
|
+
|
|
447
|
+
/// Blocks in `#minecraft:trail_ruins_replaceable`.
|
|
448
|
+
const BLOCK_TRAIL_RUINS_REPLACEABLE: string = "#minecraft:trail_ruins_replaceable";
|
|
449
|
+
|
|
450
|
+
/// Blocks in `#minecraft:trapdoors`.
|
|
451
|
+
const BLOCK_TRAPDOORS: string = "#minecraft:trapdoors";
|
|
452
|
+
|
|
453
|
+
/// Blocks in `#minecraft:underwater_bonemeals`.
|
|
454
|
+
const BLOCK_UNDERWATER_BONEMEALS: string = "#minecraft:underwater_bonemeals";
|
|
455
|
+
|
|
456
|
+
/// Blocks in `#minecraft:unstable_bottom_center`.
|
|
457
|
+
const BLOCK_UNSTABLE_BOTTOM_CENTER: string = "#minecraft:unstable_bottom_center";
|
|
458
|
+
|
|
459
|
+
/// Blocks in `#minecraft:valid_spawn`.
|
|
460
|
+
const BLOCK_VALID_SPAWN: string = "#minecraft:valid_spawn";
|
|
461
|
+
|
|
462
|
+
/// Blocks in `#minecraft:walls`.
|
|
463
|
+
const BLOCK_WALLS: string = "#minecraft:walls";
|
|
464
|
+
|
|
465
|
+
/// Blocks in `#minecraft:wall_corals`.
|
|
466
|
+
const BLOCK_WALL_CORALS: string = "#minecraft:wall_corals";
|
|
467
|
+
|
|
468
|
+
/// Blocks in `#minecraft:wall_hanging_signs`.
|
|
469
|
+
const BLOCK_WALL_HANGING_SIGNS: string = "#minecraft:wall_hanging_signs";
|
|
470
|
+
|
|
471
|
+
/// Blocks in `#minecraft:wall_post_override`.
|
|
472
|
+
const BLOCK_WALL_POST_OVERRIDE: string = "#minecraft:wall_post_override";
|
|
473
|
+
|
|
474
|
+
/// Blocks in `#minecraft:wall_signs`.
|
|
475
|
+
const BLOCK_WALL_SIGNS: string = "#minecraft:wall_signs";
|
|
476
|
+
|
|
477
|
+
/// Blocks in `#minecraft:warped_stems`.
|
|
478
|
+
const BLOCK_WARPED_STEMS: string = "#minecraft:warped_stems";
|
|
479
|
+
|
|
480
|
+
/// Blocks in `#minecraft:wart_blocks`.
|
|
481
|
+
const BLOCK_WART_BLOCKS: string = "#minecraft:wart_blocks";
|
|
482
|
+
|
|
483
|
+
/// Blocks in `#minecraft:wither_immune`.
|
|
484
|
+
const BLOCK_WITHER_IMMUNE: string = "#minecraft:wither_immune";
|
|
485
|
+
|
|
486
|
+
/// Blocks in `#minecraft:wither_summon_base_blocks`.
|
|
487
|
+
const BLOCK_WITHER_SUMMON_BASE_BLOCKS: string = "#minecraft:wither_summon_base_blocks";
|
|
488
|
+
|
|
489
|
+
/// Blocks in `#minecraft:wolves_spawnable_on`.
|
|
490
|
+
const BLOCK_WOLVES_SPAWNABLE_ON: string = "#minecraft:wolves_spawnable_on";
|
|
491
|
+
|
|
492
|
+
/// Blocks in `#minecraft:wooden_buttons`.
|
|
493
|
+
const BLOCK_WOODEN_BUTTONS: string = "#minecraft:wooden_buttons";
|
|
494
|
+
|
|
495
|
+
/// Blocks in `#minecraft:wooden_doors`.
|
|
496
|
+
const BLOCK_WOODEN_DOORS: string = "#minecraft:wooden_doors";
|
|
497
|
+
|
|
498
|
+
/// Blocks in `#minecraft:wooden_fences`.
|
|
499
|
+
const BLOCK_WOODEN_FENCES: string = "#minecraft:wooden_fences";
|
|
500
|
+
|
|
501
|
+
/// Blocks in `#minecraft:wooden_pressure_plates`.
|
|
502
|
+
const BLOCK_WOODEN_PRESSURE_PLATES: string = "#minecraft:wooden_pressure_plates";
|
|
503
|
+
|
|
504
|
+
/// Blocks in `#minecraft:wooden_slabs`.
|
|
505
|
+
const BLOCK_WOODEN_SLABS: string = "#minecraft:wooden_slabs";
|
|
506
|
+
|
|
507
|
+
/// Blocks in `#minecraft:wooden_stairs`.
|
|
508
|
+
const BLOCK_WOODEN_STAIRS: string = "#minecraft:wooden_stairs";
|
|
509
|
+
|
|
510
|
+
/// Blocks in `#minecraft:wooden_trapdoors`.
|
|
511
|
+
const BLOCK_WOODEN_TRAPDOORS: string = "#minecraft:wooden_trapdoors";
|
|
512
|
+
|
|
513
|
+
/// Blocks in `#minecraft:wool`.
|
|
514
|
+
const BLOCK_WOOL: string = "#minecraft:wool";
|
|
515
|
+
|
|
516
|
+
/// Blocks in `#minecraft:wool_carpets`.
|
|
517
|
+
const BLOCK_WOOL_CARPETS: string = "#minecraft:wool_carpets";
|
|
518
|
+
|
|
519
|
+
// ===== ENTITY TYPE TAGS =====
|
|
520
|
+
|
|
521
|
+
/// Entity types in `#minecraft:arrows`.
|
|
522
|
+
const ENTITY_ARROWS: string = "#minecraft:arrows";
|
|
523
|
+
|
|
524
|
+
/// Entity types in `#minecraft:axolotl_always_hostiles`.
|
|
525
|
+
const ENTITY_AXOLOTL_ALWAYS_HOSTILES: string = "#minecraft:axolotl_always_hostiles";
|
|
526
|
+
|
|
527
|
+
/// Entity types in `#minecraft:axolotl_hunt_targets`.
|
|
528
|
+
const ENTITY_AXOLOTL_HUNT_TARGETS: string = "#minecraft:axolotl_hunt_targets";
|
|
529
|
+
|
|
530
|
+
/// Entity types in `#minecraft:beehive_inhabitors`.
|
|
531
|
+
const ENTITY_BEEHIVE_INHABITORS: string = "#minecraft:beehive_inhabitors";
|
|
532
|
+
|
|
533
|
+
/// Entity types in `#minecraft:dismounts_underwater`.
|
|
534
|
+
const ENTITY_DISMOUNTS_UNDERWATER: string = "#minecraft:dismounts_underwater";
|
|
535
|
+
|
|
536
|
+
/// Entity types in `#minecraft:fall_damage_immune`.
|
|
537
|
+
const ENTITY_FALL_DAMAGE_IMMUNE: string = "#minecraft:fall_damage_immune";
|
|
538
|
+
|
|
539
|
+
/// Entity types in `#minecraft:freeze_hurts_extra_types`.
|
|
540
|
+
const ENTITY_FREEZE_HURTS_EXTRA_TYPES: string = "#minecraft:freeze_hurts_extra_types";
|
|
541
|
+
|
|
542
|
+
/// Entity types in `#minecraft:freeze_immune_entity_types`.
|
|
543
|
+
const ENTITY_FREEZE_IMMUNE_ENTITY_TYPES: string = "#minecraft:freeze_immune_entity_types";
|
|
544
|
+
|
|
545
|
+
/// Entity types in `#minecraft:frog_food`.
|
|
546
|
+
const ENTITY_FROG_FOOD: string = "#minecraft:frog_food";
|
|
547
|
+
|
|
548
|
+
/// Entity types in `#minecraft:impact_projectiles`.
|
|
549
|
+
const ENTITY_IMPACT_PROJECTILES: string = "#minecraft:impact_projectiles";
|
|
550
|
+
|
|
551
|
+
/// Entity types in `#minecraft:non_controlling_rider`.
|
|
552
|
+
const ENTITY_NON_CONTROLLING_RIDER: string = "#minecraft:non_controlling_rider";
|
|
553
|
+
|
|
554
|
+
/// Entity types in `#minecraft:powder_snow_walkable_mobs`.
|
|
555
|
+
const ENTITY_POWDER_SNOW_WALKABLE_MOBS: string = "#minecraft:powder_snow_walkable_mobs";
|
|
556
|
+
|
|
557
|
+
/// Entity types in `#minecraft:raiders`.
|
|
558
|
+
const ENTITY_RAIDERS: string = "#minecraft:raiders";
|
|
559
|
+
|
|
560
|
+
/// Entity types in `#minecraft:skeletons`.
|
|
561
|
+
const ENTITY_SKELETONS: string = "#minecraft:skeletons";
|
|
562
|
+
|
|
563
|
+
// ===== ITEM TAGS =====
|
|
564
|
+
|
|
565
|
+
/// Items in `#minecraft:acacia_logs`.
|
|
566
|
+
const ITEM_ACACIA_LOGS: string = "#minecraft:acacia_logs";
|
|
567
|
+
|
|
568
|
+
/// Items in `#minecraft:anvil`.
|
|
569
|
+
const ITEM_ANVIL: string = "#minecraft:anvil";
|
|
570
|
+
|
|
571
|
+
/// Items in `#minecraft:arrows`.
|
|
572
|
+
const ITEM_ARROWS: string = "#minecraft:arrows";
|
|
573
|
+
|
|
574
|
+
/// Items in `#minecraft:axes`.
|
|
575
|
+
const ITEM_AXES: string = "#minecraft:axes";
|
|
576
|
+
|
|
577
|
+
/// Items in `#minecraft:axolotl_tempt_items`.
|
|
578
|
+
const ITEM_AXOLOTL_TEMPT_ITEMS: string = "#minecraft:axolotl_tempt_items";
|
|
579
|
+
|
|
580
|
+
/// Items in `#minecraft:bamboo_blocks`.
|
|
581
|
+
const ITEM_BAMBOO_BLOCKS: string = "#minecraft:bamboo_blocks";
|
|
582
|
+
|
|
583
|
+
/// Items in `#minecraft:banners`.
|
|
584
|
+
const ITEM_BANNERS: string = "#minecraft:banners";
|
|
585
|
+
|
|
586
|
+
/// Items in `#minecraft:beacon_payment_items`.
|
|
587
|
+
const ITEM_BEACON_PAYMENT_ITEMS: string = "#minecraft:beacon_payment_items";
|
|
588
|
+
|
|
589
|
+
/// Items in `#minecraft:beds`.
|
|
590
|
+
const ITEM_BEDS: string = "#minecraft:beds";
|
|
591
|
+
|
|
592
|
+
/// Items in `#minecraft:birch_logs`.
|
|
593
|
+
const ITEM_BIRCH_LOGS: string = "#minecraft:birch_logs";
|
|
594
|
+
|
|
595
|
+
/// Items in `#minecraft:boats`.
|
|
596
|
+
const ITEM_BOATS: string = "#minecraft:boats";
|
|
597
|
+
|
|
598
|
+
/// Items in `#minecraft:bookshelf_books`.
|
|
599
|
+
const ITEM_BOOKSHELF_BOOKS: string = "#minecraft:bookshelf_books";
|
|
600
|
+
|
|
601
|
+
/// Items in `#minecraft:breaks_decorated_pots`.
|
|
602
|
+
const ITEM_BREAKS_DECORATED_POTS: string = "#minecraft:breaks_decorated_pots";
|
|
603
|
+
|
|
604
|
+
/// Items in `#minecraft:buttons`.
|
|
605
|
+
const ITEM_BUTTONS: string = "#minecraft:buttons";
|
|
606
|
+
|
|
607
|
+
/// Items in `#minecraft:candles`.
|
|
608
|
+
const ITEM_CANDLES: string = "#minecraft:candles";
|
|
609
|
+
|
|
610
|
+
/// Items in `#minecraft:cherry_logs`.
|
|
611
|
+
const ITEM_CHERRY_LOGS: string = "#minecraft:cherry_logs";
|
|
612
|
+
|
|
613
|
+
/// Items in `#minecraft:chest_boats`.
|
|
614
|
+
const ITEM_CHEST_BOATS: string = "#minecraft:chest_boats";
|
|
615
|
+
|
|
616
|
+
/// Items in `#minecraft:cluster_max_harvestables`.
|
|
617
|
+
const ITEM_CLUSTER_MAX_HARVESTABLES: string = "#minecraft:cluster_max_harvestables";
|
|
618
|
+
|
|
619
|
+
/// Items in `#minecraft:coal_ores`.
|
|
620
|
+
const ITEM_COAL_ORES: string = "#minecraft:coal_ores";
|
|
621
|
+
|
|
622
|
+
/// Items in `#minecraft:coals`.
|
|
623
|
+
const ITEM_COALS: string = "#minecraft:coals";
|
|
624
|
+
|
|
625
|
+
/// Items in `#minecraft:compasses`.
|
|
626
|
+
const ITEM_COMPASSES: string = "#minecraft:compasses";
|
|
627
|
+
|
|
628
|
+
/// Items in `#minecraft:completes_find_tree_tutorial`.
|
|
629
|
+
const ITEM_COMPLETES_FIND_TREE_TUTORIAL: string = "#minecraft:completes_find_tree_tutorial";
|
|
630
|
+
|
|
631
|
+
/// Items in `#minecraft:copper_ores`.
|
|
632
|
+
const ITEM_COPPER_ORES: string = "#minecraft:copper_ores";
|
|
633
|
+
|
|
634
|
+
/// Items in `#minecraft:creeper_drop_music_discs`.
|
|
635
|
+
const ITEM_CREEPER_DROP_MUSIC_DISCS: string = "#minecraft:creeper_drop_music_discs";
|
|
636
|
+
|
|
637
|
+
/// Items in `#minecraft:creeper_igniters`.
|
|
638
|
+
const ITEM_CREEPER_IGNITERS: string = "#minecraft:creeper_igniters";
|
|
639
|
+
|
|
640
|
+
/// Items in `#minecraft:crimson_stems`.
|
|
641
|
+
const ITEM_CRIMSON_STEMS: string = "#minecraft:crimson_stems";
|
|
642
|
+
|
|
643
|
+
/// Items in `#minecraft:dampens_vibrations`.
|
|
644
|
+
const ITEM_DAMPENS_VIBRATIONS: string = "#minecraft:dampens_vibrations";
|
|
645
|
+
|
|
646
|
+
/// Items in `#minecraft:dark_oak_logs`.
|
|
647
|
+
const ITEM_DARK_OAK_LOGS: string = "#minecraft:dark_oak_logs";
|
|
648
|
+
|
|
649
|
+
/// Items in `#minecraft:decorated_pot_ingredients`.
|
|
650
|
+
const ITEM_DECORATED_POT_INGREDIENTS: string = "#minecraft:decorated_pot_ingredients";
|
|
651
|
+
|
|
652
|
+
/// Items in `#minecraft:decorated_pot_sherds`.
|
|
653
|
+
const ITEM_DECORATED_POT_SHERDS: string = "#minecraft:decorated_pot_sherds";
|
|
654
|
+
|
|
655
|
+
/// Items in `#minecraft:diamond_ores`.
|
|
656
|
+
const ITEM_DIAMOND_ORES: string = "#minecraft:diamond_ores";
|
|
657
|
+
|
|
658
|
+
/// Items in `#minecraft:dirt`.
|
|
659
|
+
const ITEM_DIRT: string = "#minecraft:dirt";
|
|
660
|
+
|
|
661
|
+
/// Items in `#minecraft:doors`.
|
|
662
|
+
const ITEM_DOORS: string = "#minecraft:doors";
|
|
663
|
+
|
|
664
|
+
/// Items in `#minecraft:emerald_ores`.
|
|
665
|
+
const ITEM_EMERALD_ORES: string = "#minecraft:emerald_ores";
|
|
666
|
+
|
|
667
|
+
/// Items in `#minecraft:fence_gates`.
|
|
668
|
+
const ITEM_FENCE_GATES: string = "#minecraft:fence_gates";
|
|
669
|
+
|
|
670
|
+
/// Items in `#minecraft:fences`.
|
|
671
|
+
const ITEM_FENCES: string = "#minecraft:fences";
|
|
672
|
+
|
|
673
|
+
/// Items in `#minecraft:fishes`.
|
|
674
|
+
const ITEM_FISHES: string = "#minecraft:fishes";
|
|
675
|
+
|
|
676
|
+
/// Items in `#minecraft:flowers`.
|
|
677
|
+
const ITEM_FLOWERS: string = "#minecraft:flowers";
|
|
678
|
+
|
|
679
|
+
/// Items in `#minecraft:fox_food`.
|
|
680
|
+
const ITEM_FOX_FOOD: string = "#minecraft:fox_food";
|
|
681
|
+
|
|
682
|
+
/// Items in `#minecraft:freeze_immune_wearables`.
|
|
683
|
+
const ITEM_FREEZE_IMMUNE_WEARABLES: string = "#minecraft:freeze_immune_wearables";
|
|
684
|
+
|
|
685
|
+
/// Items in `#minecraft:gold_ores`.
|
|
686
|
+
const ITEM_GOLD_ORES: string = "#minecraft:gold_ores";
|
|
687
|
+
|
|
688
|
+
/// Items in `#minecraft:hanging_signs`.
|
|
689
|
+
const ITEM_HANGING_SIGNS: string = "#minecraft:hanging_signs";
|
|
690
|
+
|
|
691
|
+
/// Items in `#minecraft:hoes`.
|
|
692
|
+
const ITEM_HOES: string = "#minecraft:hoes";
|
|
693
|
+
|
|
694
|
+
/// Items in `#minecraft:ignored_by_piglin_babies`.
|
|
695
|
+
const ITEM_IGNORED_BY_PIGLIN_BABIES: string = "#minecraft:ignored_by_piglin_babies";
|
|
696
|
+
|
|
697
|
+
/// Items in `#minecraft:iron_ores`.
|
|
698
|
+
const ITEM_IRON_ORES: string = "#minecraft:iron_ores";
|
|
699
|
+
|
|
700
|
+
/// Items in `#minecraft:jungle_logs`.
|
|
701
|
+
const ITEM_JUNGLE_LOGS: string = "#minecraft:jungle_logs";
|
|
702
|
+
|
|
703
|
+
/// Items in `#minecraft:lapis_ores`.
|
|
704
|
+
const ITEM_LAPIS_ORES: string = "#minecraft:lapis_ores";
|
|
705
|
+
|
|
706
|
+
/// Items in `#minecraft:leaves`.
|
|
707
|
+
const ITEM_LEAVES: string = "#minecraft:leaves";
|
|
708
|
+
|
|
709
|
+
/// Items in `#minecraft:lectern_books`.
|
|
710
|
+
const ITEM_LECTERN_BOOKS: string = "#minecraft:lectern_books";
|
|
711
|
+
|
|
712
|
+
/// Items in `#minecraft:logs`.
|
|
713
|
+
const ITEM_LOGS: string = "#minecraft:logs";
|
|
714
|
+
|
|
715
|
+
/// Items in `#minecraft:logs_that_burn`.
|
|
716
|
+
const ITEM_LOGS_THAT_BURN: string = "#minecraft:logs_that_burn";
|
|
717
|
+
|
|
718
|
+
/// Items in `#minecraft:mangrove_logs`.
|
|
719
|
+
const ITEM_MANGROVE_LOGS: string = "#minecraft:mangrove_logs";
|
|
720
|
+
|
|
721
|
+
/// Items in `#minecraft:music_discs`.
|
|
722
|
+
const ITEM_MUSIC_DISCS: string = "#minecraft:music_discs";
|
|
723
|
+
|
|
724
|
+
/// Items in `#minecraft:non_flammable_wood`.
|
|
725
|
+
const ITEM_NON_FLAMMABLE_WOOD: string = "#minecraft:non_flammable_wood";
|
|
726
|
+
|
|
727
|
+
/// Items in `#minecraft:noteblock_top_instruments`.
|
|
728
|
+
const ITEM_NOTEBLOCK_TOP_INSTRUMENTS: string = "#minecraft:noteblock_top_instruments";
|
|
729
|
+
|
|
730
|
+
/// Items in `#minecraft:oak_logs`.
|
|
731
|
+
const ITEM_OAK_LOGS: string = "#minecraft:oak_logs";
|
|
732
|
+
|
|
733
|
+
/// Items in `#minecraft:pickaxes`.
|
|
734
|
+
const ITEM_PICKAXES: string = "#minecraft:pickaxes";
|
|
735
|
+
|
|
736
|
+
/// Items in `#minecraft:piglin_food`.
|
|
737
|
+
const ITEM_PIGLIN_FOOD: string = "#minecraft:piglin_food";
|
|
738
|
+
|
|
739
|
+
/// Items in `#minecraft:piglin_loved`.
|
|
740
|
+
const ITEM_PIGLIN_LOVED: string = "#minecraft:piglin_loved";
|
|
741
|
+
|
|
742
|
+
/// Items in `#minecraft:piglin_repellents`.
|
|
743
|
+
const ITEM_PIGLIN_REPELLENTS: string = "#minecraft:piglin_repellents";
|
|
744
|
+
|
|
745
|
+
/// Items in `#minecraft:planks`.
|
|
746
|
+
const ITEM_PLANKS: string = "#minecraft:planks";
|
|
747
|
+
|
|
748
|
+
/// Items in `#minecraft:rails`.
|
|
749
|
+
const ITEM_RAILS: string = "#minecraft:rails";
|
|
750
|
+
|
|
751
|
+
/// Items in `#minecraft:redstone_ores`.
|
|
752
|
+
const ITEM_REDSTONE_ORES: string = "#minecraft:redstone_ores";
|
|
753
|
+
|
|
754
|
+
/// Items in `#minecraft:sand`.
|
|
755
|
+
const ITEM_SAND: string = "#minecraft:sand";
|
|
756
|
+
|
|
757
|
+
/// Items in `#minecraft:saplings`.
|
|
758
|
+
const ITEM_SAPLINGS: string = "#minecraft:saplings";
|
|
759
|
+
|
|
760
|
+
/// Items in `#minecraft:shovels`.
|
|
761
|
+
const ITEM_SHOVELS: string = "#minecraft:shovels";
|
|
762
|
+
|
|
763
|
+
/// Items in `#minecraft:signs`.
|
|
764
|
+
const ITEM_SIGNS: string = "#minecraft:signs";
|
|
765
|
+
|
|
766
|
+
/// Items in `#minecraft:slabs`.
|
|
767
|
+
const ITEM_SLABS: string = "#minecraft:slabs";
|
|
768
|
+
|
|
769
|
+
/// Items in `#minecraft:small_flowers`.
|
|
770
|
+
const ITEM_SMALL_FLOWERS: string = "#minecraft:small_flowers";
|
|
771
|
+
|
|
772
|
+
/// Items in `#minecraft:smelts_to_glass`.
|
|
773
|
+
const ITEM_SMELTS_TO_GLASS: string = "#minecraft:smelts_to_glass";
|
|
774
|
+
|
|
775
|
+
/// Items in `#minecraft:sniffer_food`.
|
|
776
|
+
const ITEM_SNIFFER_FOOD: string = "#minecraft:sniffer_food";
|
|
777
|
+
|
|
778
|
+
/// Items in `#minecraft:soul_fire_base_blocks`.
|
|
779
|
+
const ITEM_SOUL_FIRE_BASE_BLOCKS: string = "#minecraft:soul_fire_base_blocks";
|
|
780
|
+
|
|
781
|
+
/// Items in `#minecraft:spruce_logs`.
|
|
782
|
+
const ITEM_SPRUCE_LOGS: string = "#minecraft:spruce_logs";
|
|
783
|
+
|
|
784
|
+
/// Items in `#minecraft:stairs`.
|
|
785
|
+
const ITEM_STAIRS: string = "#minecraft:stairs";
|
|
786
|
+
|
|
787
|
+
/// Items in `#minecraft:stone_bricks`.
|
|
788
|
+
const ITEM_STONE_BRICKS: string = "#minecraft:stone_bricks";
|
|
789
|
+
|
|
790
|
+
/// Items in `#minecraft:stone_buttons`.
|
|
791
|
+
const ITEM_STONE_BUTTONS: string = "#minecraft:stone_buttons";
|
|
792
|
+
|
|
793
|
+
/// Items in `#minecraft:stone_crafting_materials`.
|
|
794
|
+
const ITEM_STONE_CRAFTING_MATERIALS: string = "#minecraft:stone_crafting_materials";
|
|
795
|
+
|
|
796
|
+
/// Items in `#minecraft:stone_tool_materials`.
|
|
797
|
+
const ITEM_STONE_TOOL_MATERIALS: string = "#minecraft:stone_tool_materials";
|
|
798
|
+
|
|
799
|
+
/// Items in `#minecraft:swords`.
|
|
800
|
+
const ITEM_SWORDS: string = "#minecraft:swords";
|
|
801
|
+
|
|
802
|
+
/// Items in `#minecraft:tall_flowers`.
|
|
803
|
+
const ITEM_TALL_FLOWERS: string = "#minecraft:tall_flowers";
|
|
804
|
+
|
|
805
|
+
/// Items in `#minecraft:terracotta`.
|
|
806
|
+
const ITEM_TERRACOTTA: string = "#minecraft:terracotta";
|
|
807
|
+
|
|
808
|
+
/// Items in `#minecraft:tools`.
|
|
809
|
+
const ITEM_TOOLS: string = "#minecraft:tools";
|
|
810
|
+
|
|
811
|
+
/// Items in `#minecraft:trapdoors`.
|
|
812
|
+
const ITEM_TRAPDOORS: string = "#minecraft:trapdoors";
|
|
813
|
+
|
|
814
|
+
/// Items in `#minecraft:trim_materials`.
|
|
815
|
+
const ITEM_TRIM_MATERIALS: string = "#minecraft:trim_materials";
|
|
816
|
+
|
|
817
|
+
/// Items in `#minecraft:trim_templates`.
|
|
818
|
+
const ITEM_TRIM_TEMPLATES: string = "#minecraft:trim_templates";
|
|
819
|
+
|
|
820
|
+
/// Items in `#minecraft:trimmable_armor`.
|
|
821
|
+
const ITEM_TRIMMABLE_ARMOR: string = "#minecraft:trimmable_armor";
|
|
822
|
+
|
|
823
|
+
/// Items in `#minecraft:villager_plantable_seeds`.
|
|
824
|
+
const ITEM_VILLAGER_PLANTABLE_SEEDS: string = "#minecraft:villager_plantable_seeds";
|
|
825
|
+
|
|
826
|
+
/// Items in `#minecraft:walls`.
|
|
827
|
+
const ITEM_WALLS: string = "#minecraft:walls";
|
|
828
|
+
|
|
829
|
+
/// Items in `#minecraft:warped_stems`.
|
|
830
|
+
const ITEM_WARPED_STEMS: string = "#minecraft:warped_stems";
|
|
831
|
+
|
|
832
|
+
/// Items in `#minecraft:wart_blocks`.
|
|
833
|
+
const ITEM_WART_BLOCKS: string = "#minecraft:wart_blocks";
|
|
834
|
+
|
|
835
|
+
/// Items in `#minecraft:wooden_buttons`.
|
|
836
|
+
const ITEM_WOODEN_BUTTONS: string = "#minecraft:wooden_buttons";
|
|
837
|
+
|
|
838
|
+
/// Items in `#minecraft:wooden_doors`.
|
|
839
|
+
const ITEM_WOODEN_DOORS: string = "#minecraft:wooden_doors";
|
|
840
|
+
|
|
841
|
+
/// Items in `#minecraft:wooden_fences`.
|
|
842
|
+
const ITEM_WOODEN_FENCES: string = "#minecraft:wooden_fences";
|
|
843
|
+
|
|
844
|
+
/// Items in `#minecraft:wooden_pressure_plates`.
|
|
845
|
+
const ITEM_WOODEN_PRESSURE_PLATES: string = "#minecraft:wooden_pressure_plates";
|
|
846
|
+
|
|
847
|
+
/// Items in `#minecraft:wooden_slabs`.
|
|
848
|
+
const ITEM_WOODEN_SLABS: string = "#minecraft:wooden_slabs";
|
|
849
|
+
|
|
850
|
+
/// Items in `#minecraft:wooden_stairs`.
|
|
851
|
+
const ITEM_WOODEN_STAIRS: string = "#minecraft:wooden_stairs";
|
|
852
|
+
|
|
853
|
+
/// Items in `#minecraft:wooden_trapdoors`.
|
|
854
|
+
const ITEM_WOODEN_TRAPDOORS: string = "#minecraft:wooden_trapdoors";
|
|
855
|
+
|
|
856
|
+
/// Items in `#minecraft:wool`.
|
|
857
|
+
const ITEM_WOOL: string = "#minecraft:wool";
|
|
858
|
+
|
|
859
|
+
/// Items in `#minecraft:wool_carpets`.
|
|
860
|
+
const ITEM_WOOL_CARPETS: string = "#minecraft:wool_carpets";
|
|
861
|
+
|
|
862
|
+
// ===== FLUID TAGS =====
|
|
863
|
+
|
|
864
|
+
/// Fluids in `#minecraft:lava`.
|
|
865
|
+
const FLUID_LAVA: string = "#minecraft:lava";
|
|
866
|
+
|
|
867
|
+
/// Fluids in `#minecraft:water`.
|
|
868
|
+
const FLUID_WATER: string = "#minecraft:water";
|
|
869
|
+
|
|
870
|
+
// ===== DAMAGE TYPE TAGS =====
|
|
871
|
+
|
|
872
|
+
/// Damage types in `#minecraft:always_hurts_ender_dragons`.
|
|
873
|
+
const DAMAGE_ALWAYS_HURTS_ENDER_DRAGONS: string = "#minecraft:always_hurts_ender_dragons";
|
|
874
|
+
|
|
875
|
+
/// Damage types in `#minecraft:always_kills_armor_stands`.
|
|
876
|
+
const DAMAGE_ALWAYS_KILLS_ARMOR_STANDS: string = "#minecraft:always_kills_armor_stands";
|
|
877
|
+
|
|
878
|
+
/// Damage types in `#minecraft:always_most_significant_fall`.
|
|
879
|
+
const DAMAGE_ALWAYS_MOST_SIGNIFICANT_FALL: string = "#minecraft:always_most_significant_fall";
|
|
880
|
+
|
|
881
|
+
/// Damage types in `#minecraft:always_triggers_silverfish`.
|
|
882
|
+
const DAMAGE_ALWAYS_TRIGGERS_SILVERFISH: string = "#minecraft:always_triggers_silverfish";
|
|
883
|
+
|
|
884
|
+
/// Damage types in `#minecraft:avoids_guardian_thorns`.
|
|
885
|
+
const DAMAGE_AVOIDS_GUARDIAN_THORNS: string = "#minecraft:avoids_guardian_thorns";
|
|
886
|
+
|
|
887
|
+
/// Damage types in `#minecraft:burns_armor_stands`.
|
|
888
|
+
const DAMAGE_BURNS_ARMOR_STANDS: string = "#minecraft:burns_armor_stands";
|
|
889
|
+
|
|
890
|
+
/// Damage types in `#minecraft:bypasses_armor`.
|
|
891
|
+
const DAMAGE_BYPASSES_ARMOR: string = "#minecraft:bypasses_armor";
|
|
892
|
+
|
|
893
|
+
/// Damage types in `#minecraft:bypasses_cooldown`.
|
|
894
|
+
const DAMAGE_BYPASSES_COOLDOWN: string = "#minecraft:bypasses_cooldown";
|
|
895
|
+
|
|
896
|
+
/// Damage types in `#minecraft:bypasses_effects`.
|
|
897
|
+
const DAMAGE_BYPASSES_EFFECTS: string = "#minecraft:bypasses_effects";
|
|
898
|
+
|
|
899
|
+
/// Damage types in `#minecraft:bypasses_enchantments`.
|
|
900
|
+
const DAMAGE_BYPASSES_ENCHANTMENTS: string = "#minecraft:bypasses_enchantments";
|
|
901
|
+
|
|
902
|
+
/// Damage types in `#minecraft:bypasses_invulnerability`.
|
|
903
|
+
const DAMAGE_BYPASSES_INVULNERABILITY: string = "#minecraft:bypasses_invulnerability";
|
|
904
|
+
|
|
905
|
+
/// Damage types in `#minecraft:bypasses_resistance`.
|
|
906
|
+
const DAMAGE_BYPASSES_RESISTANCE: string = "#minecraft:bypasses_resistance";
|
|
907
|
+
|
|
908
|
+
/// Damage types in `#minecraft:bypasses_shield`.
|
|
909
|
+
const DAMAGE_BYPASSES_SHIELD: string = "#minecraft:bypasses_shield";
|
|
910
|
+
|
|
911
|
+
/// Damage types in `#minecraft:damages_helmet`.
|
|
912
|
+
const DAMAGE_DAMAGES_HELMET: string = "#minecraft:damages_helmet";
|
|
913
|
+
|
|
914
|
+
/// Damage types in `#minecraft:ignites_armor_stands`.
|
|
915
|
+
const DAMAGE_IGNITES_ARMOR_STANDS: string = "#minecraft:ignites_armor_stands";
|
|
916
|
+
|
|
917
|
+
/// Damage types in `#minecraft:is_drowning`.
|
|
918
|
+
const DAMAGE_IS_DROWNING: string = "#minecraft:is_drowning";
|
|
919
|
+
|
|
920
|
+
/// Damage types in `#minecraft:is_explosion`.
|
|
921
|
+
const DAMAGE_IS_EXPLOSION: string = "#minecraft:is_explosion";
|
|
922
|
+
|
|
923
|
+
/// Damage types in `#minecraft:is_fall`.
|
|
924
|
+
const DAMAGE_IS_FALL: string = "#minecraft:is_fall";
|
|
925
|
+
|
|
926
|
+
/// Damage types in `#minecraft:is_fire`.
|
|
927
|
+
const DAMAGE_IS_FIRE: string = "#minecraft:is_fire";
|
|
928
|
+
|
|
929
|
+
/// Damage types in `#minecraft:is_freezing`.
|
|
930
|
+
const DAMAGE_IS_FREEZING: string = "#minecraft:is_freezing";
|
|
931
|
+
|
|
932
|
+
/// Damage types in `#minecraft:is_lightning`.
|
|
933
|
+
const DAMAGE_IS_LIGHTNING: string = "#minecraft:is_lightning";
|
|
934
|
+
|
|
935
|
+
/// Damage types in `#minecraft:is_projectile`.
|
|
936
|
+
const DAMAGE_IS_PROJECTILE: string = "#minecraft:is_projectile";
|
|
937
|
+
|
|
938
|
+
/// Damage types in `#minecraft:no_anger`.
|
|
939
|
+
const DAMAGE_NO_ANGER: string = "#minecraft:no_anger";
|
|
940
|
+
|
|
941
|
+
/// Damage types in `#minecraft:no_impact`.
|
|
942
|
+
const DAMAGE_NO_IMPACT: string = "#minecraft:no_impact";
|
|
943
|
+
|
|
944
|
+
/// Damage types in `#minecraft:no_knockback`.
|
|
945
|
+
const DAMAGE_NO_KNOCKBACK: string = "#minecraft:no_knockback";
|
|
946
|
+
|
|
947
|
+
/// Damage types in `#minecraft:witch_resistant_to`.
|
|
948
|
+
const DAMAGE_WITCH_RESISTANT_TO: string = "#minecraft:witch_resistant_to";
|
|
949
|
+
|
|
950
|
+
/// Damage types in `#minecraft:wither_immune_to`.
|
|
951
|
+
const DAMAGE_WITHER_IMMUNE_TO: string = "#minecraft:wither_immune_to";
|