@minecraft/creator-tools 0.10.0 → 0.10.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.
- package/app/IProjectItemData.js +1 -1
- package/app/Project.js +1 -1
- package/app/ProjectItemRelations.js +10 -0
- package/app/ProjectItemUtilities.js +7 -7
- package/cli/index.js +49 -43
- package/core/Constants.js +1 -1
- package/core/Utilities.js +16 -2
- package/data/forms/biome/biome_definition.form.json +56 -1
- package/data/forms/biome/biome_description.form.json +2 -1
- package/data/forms/biome/biome_json_file.form.json +57 -1
- package/data/forms/biome/biome_replacement.form.json +2 -1
- package/data/forms/biome/index.json +1 -1
- package/data/forms/biome/minecraft_capped_surface.form.json +7 -1
- package/data/forms/biome/minecraft_climate.form.json +2 -1
- package/data/forms/biome/minecraft_creature_spawn_probability.form.json +2 -1
- package/data/forms/biome/minecraft_frozen_ocean_surface.form.json +7 -1
- package/data/forms/biome/minecraft_mesa_surface.form.json +9 -1
- package/data/forms/biome/minecraft_mountain_parameters.form.json +5 -1
- package/data/forms/biome/minecraft_multinoise_generation_rules.form.json +2 -1
- package/data/forms/biome/minecraft_overworld_generation_rules.form.json +2 -1
- package/data/forms/biome/minecraft_overworld_height.form.json +2 -1
- package/data/forms/biome/minecraft_replace_biomes.form.json +2 -0
- package/data/forms/biome/minecraft_surface_material_adjustments.form.json +9 -1
- package/data/forms/biome/minecraft_surface_parameters.form.json +7 -1
- package/data/forms/biome/minecraft_swamp_surface.form.json +7 -1
- package/data/forms/biome/minecraft_tags.form.json +2 -1
- package/data/forms/block/minecraft_collision_box.form.json +42 -0
- package/data/forms/block/minecraft_destructible_by_explosion.form.json +74 -6
- package/data/forms/block/minecraft_destructible_by_mining.form.json +143 -0
- package/data/forms/block/minecraft_display_name.form.json +6 -0
- package/data/forms/block/minecraft_flammable.form.json +56 -2
- package/data/forms/block/minecraft_friction.form.json +12 -0
- package/data/forms/block/minecraft_geometry.form.json +42 -0
- package/data/forms/block/minecraft_liquid_detection.form.json +24 -0
- package/data/forms/block/minecraft_map_color.form.json +42 -0
- package/data/forms/block/minecraft_material_instances.form.json +140 -0
- package/data/forms/block/minecraft_selection_box.form.json +42 -0
- package/data/forms/client_biome/client_biome_definition.form.json +16 -1
- package/data/forms/client_biome/client_biome_description.form.json +2 -1
- package/data/forms/client_biome/client_biome_json_file.form.json +17 -1
- package/data/forms/client_biome/foliage_color_map.form.json +2 -1
- package/data/forms/client_biome/grass_color_map.form.json +2 -1
- package/data/forms/client_biome/minecraft_atmosphere_identifier.form.json +1 -0
- package/data/forms/client_biome/minecraft_biome_music.form.json +2 -1
- package/data/forms/client_biome/minecraft_color_grading_identifier.form.json +1 -0
- package/data/forms/client_biome/minecraft_dry_foliage_color.form.json +1 -0
- package/data/forms/client_biome/minecraft_fog_appearance.form.json +2 -1
- package/data/forms/client_biome/minecraft_foliage_appearance.form.json +2 -1
- package/data/forms/client_biome/minecraft_grass_appearance.form.json +2 -1
- package/data/forms/client_biome/minecraft_lighting_identifier.form.json +1 -0
- package/data/forms/client_biome/minecraft_sky_color.form.json +2 -1
- package/data/forms/client_biome/minecraft_water_appearance.form.json +2 -1
- package/data/forms/client_biome/minecraft_water_identifier.form.json +1 -0
- package/data/forms/client_block/block_culling.form.json +5 -1
- package/data/forms/client_item/index.json +1 -0
- package/data/forms/client_item/resource.form.json +33 -0
- package/data/forms/client_item/resource_animations.form.json +10 -0
- package/data/forms/client_item/resource_geometry.form.json +10 -0
- package/data/forms/client_item/resource_materials.form.json +9 -0
- package/data/forms/client_item/resource_textures.form.json +10 -0
- package/data/forms/config/commands.form.json +2 -1
- package/data/forms/entity/filter_test.form.json +2 -1
- package/data/forms/entity/minecraft_ageable.form.json +12 -0
- package/data/forms/entity/minecraft_annotation_open_door.form.json +6 -0
- package/data/forms/entity/minecraft_behavior_avoid_mob_type.form.json +85 -0
- package/data/forms/entity/minecraft_behavior_explore_outskirts.form.json +6 -0
- package/data/forms/entity/minecraft_behavior_float.form.json +8 -0
- package/data/forms/entity/minecraft_behavior_harvest_farm_block.form.json +6 -0
- package/data/forms/entity/minecraft_behavior_hide.form.json +29 -0
- package/data/forms/entity/minecraft_behavior_inspect_bookshelf.form.json +6 -0
- package/data/forms/entity/minecraft_behavior_look_at_player.form.json +10 -0
- package/data/forms/entity/minecraft_behavior_look_at_trading_player.form.json +14 -0
- package/data/forms/entity/minecraft_behavior_make_love.form.json +14 -0
- package/data/forms/entity/minecraft_behavior_mingle.form.json +6 -0
- package/data/forms/entity/minecraft_behavior_move_indoors.form.json +22 -0
- package/data/forms/entity/minecraft_behavior_panic.form.json +9 -0
- package/data/forms/entity/minecraft_behavior_pickup_items.form.json +18 -0
- package/data/forms/entity/minecraft_behavior_random_stroll.form.json +15 -0
- package/data/forms/entity/minecraft_behavior_receive_love.form.json +14 -0
- package/data/forms/entity/minecraft_behavior_share_items.form.json +24 -60
- package/data/forms/entity/minecraft_behavior_sleep.form.json +6 -0
- package/data/forms/entity/minecraft_behavior_take_flower.form.json +14 -0
- package/data/forms/entity/minecraft_behavior_trade_interest.form.json +138 -0
- package/data/forms/entity/minecraft_behavior_trade_with_player.form.json +14 -0
- package/data/forms/entity/minecraft_behavior_work.form.json +6 -0
- package/data/forms/entity/minecraft_breathable.form.json +9 -0
- package/data/forms/entity/minecraft_can_climb.form.json +6 -0
- package/data/forms/entity/minecraft_collision_box.form.json +9 -0
- package/data/forms/entity/minecraft_damage_sensor.form.json +44 -0
- package/data/forms/entity/minecraft_economy_trade_table.form.json +214 -0
- package/data/forms/entity/minecraft_follow_range.form.json +14 -0
- package/data/forms/entity/minecraft_hide.form.json +6 -0
- package/data/forms/entity/minecraft_hurt_on_condition.form.json +19 -0
- package/data/forms/entity/minecraft_inventory.form.json +9 -0
- package/data/forms/entity/minecraft_is_baby.form.json +6 -0
- package/data/forms/entity/minecraft_jump_static.form.json +6 -0
- package/data/forms/entity/minecraft_movement.form.json +8 -0
- package/data/forms/entity/minecraft_movement_basic.form.json +6 -0
- package/data/forms/entity/minecraft_nameable.form.json +6 -0
- package/data/forms/entity/minecraft_navigation_walk.form.json +11 -0
- package/data/forms/entity/minecraft_persistent.form.json +6 -0
- package/data/forms/entity/minecraft_physics.form.json +6 -0
- package/data/forms/entity/minecraft_preferred_path.form.json +350 -0
- package/data/forms/entity/minecraft_pushable.form.json +9 -0
- package/data/forms/entity/minecraft_scale.form.json +8 -0
- package/data/forms/entity/minecraft_shareables.form.json +83 -0
- package/data/forms/entity/minecraft_skin_id.form.json +38 -0
- package/data/forms/entity/minecraft_transformation.form.json +16 -0
- package/data/forms/entity/minecraft_variant.form.json +86 -0
- package/data/forms/entityfilters/has_biome_tag.form.json +288 -0
- package/data/forms/entityfilters/has_component.form.json +60 -0
- package/data/forms/entityfilters/in_lava.form.json +11 -0
- package/data/forms/entityfilters/is_difficulty.form.json +16 -0
- package/data/forms/entityfilters/is_family.form.json +194 -0
- package/data/forms/entityfilters/is_mark_variant.form.json +50 -0
- package/data/forms/entityfilters/is_skin_id.form.json +50 -0
- package/data/forms/index.json +1 -1
- package/data/forms/item/80.form.json +53 -1
- package/data/forms/item/description.form.json +3 -1
- package/data/forms/item/menu_category.form.json +2 -1
- package/data/forms/item/minecraft_block_placer.form.json +1 -0
- package/data/forms/item/minecraft_digger.form.json +2 -0
- package/data/forms/item/minecraft_durability.form.json +1 -0
- package/data/forms/item/minecraft_durability_sensor.form.json +1 -0
- package/data/forms/item/minecraft_durability_sensor_durability_threshold.form.json +2 -1
- package/data/forms/item/minecraft_entity_placer.form.json +2 -0
- package/data/forms/item/minecraft_fuel.form.json +10 -4
- package/data/forms/item/minecraft_icon.form.json +15 -67
- package/data/forms/item/minecraft_max_stack_size.form.json +1 -1
- package/data/forms/item/minecraft_projectile.form.json +27 -27
- package/data/forms/item/minecraft_repairable.form.json +2 -0
- package/data/forms/item/minecraft_shooter.form.json +38 -34
- package/data/forms/item/minecraft_use_duration.form.json +1 -0
- package/data/forms/item/minecraft_wearable.form.json +20 -19
- package/data/forms/misc/biome_replacement.form.json +2 -1
- package/data/forms/misc/bounds.form.json +2 -1
- package/data/forms/misc/class_v1_21_80_jigsawblockmetadata.form.json +2 -1
- package/data/forms/misc/crafting_catalog_category.form.json +6 -1
- package/data/forms/misc/crafting_catalog_document.form.json +7 -1
- package/data/forms/misc/crafting_catalog_group.form.json +5 -1
- package/data/forms/misc/crafting_catalog_group_icon.form.json +3 -1
- package/data/forms/misc/description.form.json +2 -1
- package/data/forms/misc/dimension.form.json +6 -1
- package/data/forms/misc/dimensiondocument.form.json +7 -1
- package/data/forms/misc/emitter_initialization.form.json +4 -1
- package/data/forms/misc/emitter_lifetime_events_proxy.form.json +8 -1
- package/data/forms/misc/emitter_lifetime_events_travel_distance_events.form.json +3 -1
- package/data/forms/misc/emitter_lifetime_expression.form.json +4 -1
- package/data/forms/misc/emitter_lifetime_looping.form.json +4 -1
- package/data/forms/misc/emitter_lifetime_once.form.json +3 -1
- package/data/forms/misc/emitter_local_space_proxy.form.json +2 -1
- package/data/forms/misc/emitter_rate_instant.form.json +3 -1
- package/data/forms/misc/emitter_rate_manual.form.json +3 -1
- package/data/forms/misc/emitter_rate_steady.form.json +4 -1
- package/data/forms/misc/emitter_shape_box.form.json +5 -1
- package/data/forms/misc/emitter_shape_custom.form.json +4 -1
- package/data/forms/misc/emitter_shape_disc.form.json +6 -1
- package/data/forms/misc/emitter_shape_entity_aabb.form.json +3 -1
- package/data/forms/misc/emitter_shape_point.form.json +4 -1
- package/data/forms/misc/emitter_shape_sphere.form.json +5 -1
- package/data/forms/misc/generation.form.json +2 -1
- package/data/forms/misc/minecraft_aim_assist_categories.form.json +5 -1
- package/data/forms/misc/minecraft_aim_assist_preset.form.json +3 -1
- package/data/forms/misc/minecraft_jigsaw_structure_metadata.form.json +3 -1
- package/data/forms/misc/particle_appearance_billboard.form.json +3 -1
- package/data/forms/misc/particle_appearance_billboard_flipbook_data.form.json +4 -1
- package/data/forms/misc/particle_appearance_tinting.form.json +6 -1
- package/data/forms/misc/particle_curve_bezier_chain.form.json +3 -1
- package/data/forms/misc/particle_curve_bezier_chain_node_proxy.form.json +2 -1
- package/data/forms/misc/particle_curve_linear.form.json +5 -1
- package/data/forms/misc/particle_effect.form.json +105 -1
- package/data/forms/misc/particle_effect_basic_render_parameters.form.json +2 -1
- package/data/forms/misc/particle_effect_component.form.json +71 -1
- package/data/forms/misc/particle_effect_description.form.json +3 -1
- package/data/forms/misc/particle_event_node.form.json +26 -1
- package/data/forms/misc/particle_event_random_node.form.json +26 -1
- package/data/forms/misc/particle_initial_spin.form.json +4 -1
- package/data/forms/misc/particle_initialization.form.json +4 -1
- package/data/forms/misc/particle_lifetime_expression.form.json +4 -1
- package/data/forms/misc/particle_motion_collision.form.json +5 -1
- package/data/forms/misc/particle_motion_collision_event.form.json +2 -1
- package/data/forms/misc/particle_motion_dynamic.form.json +6 -1
- package/data/forms/misc/particle_motion_parametric.form.json +5 -1
- package/data/forms/misc/particle_sound_effect_event.form.json +2 -1
- package/data/forms/misc/particle_visual_effect_event.form.json +3 -1
- package/data/forms/spawn/filter_test.form.json +2 -1
- package/data/forms/world/feature_rule_conditions.form.json +4 -1
- package/data/forms/world/feature_rule_definition.form.json +12 -1
- package/data/forms/world/feature_rule_description.form.json +2 -1
- package/data/forms/world/filter_test.form.json +2 -1
- package/data/forms/world/jigsawstructure.form.json +5 -1
- package/data/forms/world/scatter_params.form.json +7 -1
- package/data/mci/minecraft-samples-main.mci.json +1 -0
- package/data/mci/preview.mci.json +1 -0
- package/data/mci/release.mci.json +1 -1
- package/data/snippets/new-templates.json +23 -0
- package/docgen/FormJsonDocumentationGenerator.js +19 -1
- package/docgen/FormMarkdownDocumentationGenerator.js +4 -2
- package/info/StrictPlatformInfoGenerator.js +2 -2
- package/info/TypesInfoGenerator.js +2 -2
- package/integrations/BlockbenchModel.js +18 -1
- package/manager/FormatVersionManager.js +2 -2
- package/manager/ItemTypeManager.js +3 -3
- package/maps/app/IProjectItemData.js.map +1 -1
- package/maps/app/Project.js.map +1 -1
- package/maps/app/ProjectItemRelations.js.map +1 -1
- package/maps/app/ProjectItemUtilities.js.map +1 -1
- package/maps/cli/index.js.map +1 -1
- package/maps/core/Constants.js.map +1 -1
- package/maps/core/Utilities.js.map +1 -1
- package/maps/dataform/IField.js.map +1 -1
- package/maps/docgen/FormJsonDocumentationGenerator.js.map +1 -1
- package/maps/docgen/FormMarkdownDocumentationGenerator.js.map +1 -1
- package/maps/info/StrictPlatformInfoGenerator.js.map +1 -1
- package/maps/info/TypesInfoGenerator.js.map +1 -1
- package/maps/integrations/BlockbenchModel.js.map +1 -1
- package/maps/integrations/IBlockbenchModel.js.map +1 -1
- package/maps/manager/FormatVersionManager.js.map +1 -1
- package/maps/manager/ItemTypeManager.js.map +1 -1
- package/maps/minecraft/AttachableResourceDefinition.js.map +1 -1
- package/maps/minecraft/IModelGeometry.js.map +1 -1
- package/maps/minecraft/ItemTypeDefinition.js.map +1 -0
- package/maps/minecraft/MinecraftDefinitions.js.map +1 -1
- package/minecraft/AttachableResourceDefinition.js +26 -0
- package/minecraft/{ItemTypeBehaviorDefinition.js → ItemTypeDefinition.js} +70 -6
- package/minecraft/MinecraftDefinitions.js +2 -2
- package/package.json +1 -1
- package/data/forms/biome/minecraft_mountain_parameters_-_steep_material_adjustment_settings.form.json +0 -70
- package/data/forms/biome/minecraft_mountain_parameters_-_top_slide_settings.form.json +0 -12
- package/data/forms/biome/minecraft_surface_material_adjustments_-_surface_adjustment_materials_settings.form.json +0 -206
- package/data/forms/biome/minecraft_surface_material_adjustments_-_surface_adjustment_settings.form.json +0 -250
- package/maps/minecraft/ItemTypeBehaviorDefinition.js.map +0 -1
|
@@ -86,6 +86,12 @@
|
|
|
86
86
|
"path": "/minecraft:entity/components/minecraft:follow_range/",
|
|
87
87
|
"content": 128
|
|
88
88
|
}
|
|
89
|
+
],
|
|
90
|
+
"/samples/chill_oasis_blocks_and_features/chill_oasis_assets/behavior_packs/chill_oasis_assets/entities/beachager.behavior.json": [
|
|
91
|
+
{
|
|
92
|
+
"path": "/minecraft:entity/components/minecraft:follow_range/",
|
|
93
|
+
"content": 128
|
|
94
|
+
}
|
|
89
95
|
]
|
|
90
96
|
}
|
|
91
97
|
},
|
|
@@ -418,6 +424,14 @@
|
|
|
418
424
|
"value": 1024
|
|
419
425
|
}
|
|
420
426
|
}
|
|
427
|
+
],
|
|
428
|
+
"/samples/chill_oasis_blocks_and_features/chill_oasis_assets/behavior_packs/chill_oasis_assets/entities/beachager.behavior.json": [
|
|
429
|
+
{
|
|
430
|
+
"path": "/minecraft:entity/components/minecraft:follow_range/",
|
|
431
|
+
"content": {
|
|
432
|
+
"value": 128
|
|
433
|
+
}
|
|
434
|
+
}
|
|
421
435
|
]
|
|
422
436
|
}
|
|
423
437
|
}
|
|
@@ -9,6 +9,12 @@
|
|
|
9
9
|
"path": "/minecraft:entity/components/minecraft:hide/",
|
|
10
10
|
"content": {}
|
|
11
11
|
}
|
|
12
|
+
],
|
|
13
|
+
"/samples/chill_oasis_blocks_and_features/chill_oasis_assets/behavior_packs/chill_oasis_assets/entities/beachager.behavior.json": [
|
|
14
|
+
{
|
|
15
|
+
"path": "/minecraft:entity/components/minecraft:hide/",
|
|
16
|
+
"content": {}
|
|
17
|
+
}
|
|
12
18
|
]
|
|
13
19
|
}
|
|
14
20
|
}
|
|
@@ -1996,6 +1996,25 @@
|
|
|
1996
1996
|
]
|
|
1997
1997
|
}
|
|
1998
1998
|
}
|
|
1999
|
+
],
|
|
2000
|
+
"/samples/chill_oasis_blocks_and_features/chill_oasis_assets/behavior_packs/chill_oasis_assets/entities/beachager.behavior.json": [
|
|
2001
|
+
{
|
|
2002
|
+
"path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
|
|
2003
|
+
"content": {
|
|
2004
|
+
"damage_conditions": [
|
|
2005
|
+
{
|
|
2006
|
+
"filters": {
|
|
2007
|
+
"test": "in_lava",
|
|
2008
|
+
"subject": "self",
|
|
2009
|
+
"operator": "==",
|
|
2010
|
+
"value": true
|
|
2011
|
+
},
|
|
2012
|
+
"cause": "lava",
|
|
2013
|
+
"damage_per_tick": 4
|
|
2014
|
+
}
|
|
2015
|
+
]
|
|
2016
|
+
}
|
|
2017
|
+
}
|
|
1999
2018
|
]
|
|
2000
2019
|
},
|
|
2001
2020
|
"id": "minecraft:hurt_on_condition"
|
|
@@ -335,6 +335,15 @@
|
|
|
335
335
|
"additional_slots_per_strength": 3
|
|
336
336
|
}
|
|
337
337
|
}
|
|
338
|
+
],
|
|
339
|
+
"/samples/chill_oasis_blocks_and_features/chill_oasis_assets/behavior_packs/chill_oasis_assets/entities/beachager.behavior.json": [
|
|
340
|
+
{
|
|
341
|
+
"path": "/minecraft:entity/components/minecraft:inventory/",
|
|
342
|
+
"content": {
|
|
343
|
+
"inventory_size": 8,
|
|
344
|
+
"private": true
|
|
345
|
+
}
|
|
346
|
+
}
|
|
338
347
|
]
|
|
339
348
|
},
|
|
340
349
|
"id": "minecraft:inventory"
|
|
@@ -400,6 +400,12 @@
|
|
|
400
400
|
"path": "/minecraft:entity/component_groups/mike_eliz:eliza_baby/minecraft:is_baby/",
|
|
401
401
|
"content": {}
|
|
402
402
|
}
|
|
403
|
+
],
|
|
404
|
+
"/samples/chill_oasis_blocks_and_features/chill_oasis_assets/behavior_packs/chill_oasis_assets/entities/beachager.behavior.json": [
|
|
405
|
+
{
|
|
406
|
+
"path": "/minecraft:entity/component_groups/baby/minecraft:is_baby/",
|
|
407
|
+
"content": {}
|
|
408
|
+
}
|
|
403
409
|
]
|
|
404
410
|
},
|
|
405
411
|
"id": "minecraft:is_baby"
|
|
@@ -560,6 +560,12 @@
|
|
|
560
560
|
"path": "/minecraft:entity/components/minecraft:jump.static/",
|
|
561
561
|
"content": {}
|
|
562
562
|
}
|
|
563
|
+
],
|
|
564
|
+
"/samples/chill_oasis_blocks_and_features/chill_oasis_assets/behavior_packs/chill_oasis_assets/entities/beachager.behavior.json": [
|
|
565
|
+
{
|
|
566
|
+
"path": "/minecraft:entity/components/minecraft:jump.static/",
|
|
567
|
+
"content": {}
|
|
568
|
+
}
|
|
563
569
|
]
|
|
564
570
|
},
|
|
565
571
|
"id": "minecraft:jump.static"
|
|
@@ -1159,6 +1159,14 @@
|
|
|
1159
1159
|
"max": 0
|
|
1160
1160
|
}
|
|
1161
1161
|
}
|
|
1162
|
+
],
|
|
1163
|
+
"/samples/chill_oasis_blocks_and_features/chill_oasis_assets/behavior_packs/chill_oasis_assets/entities/beachager.behavior.json": [
|
|
1164
|
+
{
|
|
1165
|
+
"path": "/minecraft:entity/components/minecraft:movement/",
|
|
1166
|
+
"content": {
|
|
1167
|
+
"value": 0.5
|
|
1168
|
+
}
|
|
1169
|
+
}
|
|
1162
1170
|
]
|
|
1163
1171
|
}
|
|
1164
1172
|
}
|
|
@@ -518,6 +518,12 @@
|
|
|
518
518
|
"path": "/minecraft:entity/components/minecraft:movement.basic/",
|
|
519
519
|
"content": {}
|
|
520
520
|
}
|
|
521
|
+
],
|
|
522
|
+
"/samples/chill_oasis_blocks_and_features/chill_oasis_assets/behavior_packs/chill_oasis_assets/entities/beachager.behavior.json": [
|
|
523
|
+
{
|
|
524
|
+
"path": "/minecraft:entity/components/minecraft:movement.basic/",
|
|
525
|
+
"content": {}
|
|
526
|
+
}
|
|
521
527
|
]
|
|
522
528
|
},
|
|
523
529
|
"id": "minecraft:movement.basic"
|
|
@@ -755,6 +755,12 @@
|
|
|
755
755
|
"path": "/minecraft:entity/components/minecraft:nameable/",
|
|
756
756
|
"content": {}
|
|
757
757
|
}
|
|
758
|
+
],
|
|
759
|
+
"/samples/chill_oasis_blocks_and_features/chill_oasis_assets/behavior_packs/chill_oasis_assets/entities/beachager.behavior.json": [
|
|
760
|
+
{
|
|
761
|
+
"path": "/minecraft:entity/components/minecraft:nameable/",
|
|
762
|
+
"content": {}
|
|
763
|
+
}
|
|
758
764
|
]
|
|
759
765
|
},
|
|
760
766
|
"id": "minecraft:nameable"
|
|
@@ -1087,6 +1087,17 @@
|
|
|
1087
1087
|
"path": "/minecraft:entity/components/minecraft:navigation.walk/",
|
|
1088
1088
|
"content": {}
|
|
1089
1089
|
}
|
|
1090
|
+
],
|
|
1091
|
+
"/samples/chill_oasis_blocks_and_features/chill_oasis_assets/behavior_packs/chill_oasis_assets/entities/beachager.behavior.json": [
|
|
1092
|
+
{
|
|
1093
|
+
"path": "/minecraft:entity/components/minecraft:navigation.walk/",
|
|
1094
|
+
"content": {
|
|
1095
|
+
"can_path_over_water": true,
|
|
1096
|
+
"can_pass_doors": true,
|
|
1097
|
+
"can_open_doors": true,
|
|
1098
|
+
"avoid_water": true
|
|
1099
|
+
}
|
|
1100
|
+
}
|
|
1090
1101
|
]
|
|
1091
1102
|
},
|
|
1092
1103
|
"id": "minecraft:navigation.walk"
|
|
@@ -146,6 +146,12 @@
|
|
|
146
146
|
"path": "/minecraft:entity/components/minecraft:persistent/",
|
|
147
147
|
"content": {}
|
|
148
148
|
}
|
|
149
|
+
],
|
|
150
|
+
"/samples/chill_oasis_blocks_and_features/chill_oasis_assets/behavior_packs/chill_oasis_assets/entities/beachager.behavior.json": [
|
|
151
|
+
{
|
|
152
|
+
"path": "/minecraft:entity/components/minecraft:persistent/",
|
|
153
|
+
"content": {}
|
|
154
|
+
}
|
|
149
155
|
]
|
|
150
156
|
},
|
|
151
157
|
"id": "minecraft:persistent"
|
|
@@ -914,6 +914,12 @@
|
|
|
914
914
|
"path": "/minecraft:entity/components/minecraft:physics/",
|
|
915
915
|
"content": {}
|
|
916
916
|
}
|
|
917
|
+
],
|
|
918
|
+
"/samples/chill_oasis_blocks_and_features/chill_oasis_assets/behavior_packs/chill_oasis_assets/entities/beachager.behavior.json": [
|
|
919
|
+
{
|
|
920
|
+
"path": "/minecraft:entity/components/minecraft:physics/",
|
|
921
|
+
"content": {}
|
|
922
|
+
}
|
|
917
923
|
]
|
|
918
924
|
},
|
|
919
925
|
"id": "minecraft:physics"
|
|
@@ -22,6 +22,12 @@
|
|
|
22
22
|
"path": "/minecraft:entity/component_groups/adult/minecraft:preferred_path/",
|
|
23
23
|
"content": 3
|
|
24
24
|
}
|
|
25
|
+
],
|
|
26
|
+
"/samples/chill_oasis_blocks_and_features/chill_oasis_assets/behavior_packs/chill_oasis_assets/entities/beachager.behavior.json": [
|
|
27
|
+
{
|
|
28
|
+
"path": "/minecraft:entity/component_groups/adult/minecraft:preferred_path/",
|
|
29
|
+
"content": 3
|
|
30
|
+
}
|
|
25
31
|
]
|
|
26
32
|
}
|
|
27
33
|
},
|
|
@@ -47,6 +53,12 @@
|
|
|
47
53
|
"path": "/minecraft:entity/component_groups/adult/minecraft:preferred_path/",
|
|
48
54
|
"content": 20
|
|
49
55
|
}
|
|
56
|
+
],
|
|
57
|
+
"/samples/chill_oasis_blocks_and_features/chill_oasis_assets/behavior_packs/chill_oasis_assets/entities/beachager.behavior.json": [
|
|
58
|
+
{
|
|
59
|
+
"path": "/minecraft:entity/component_groups/adult/minecraft:preferred_path/",
|
|
60
|
+
"content": 20
|
|
61
|
+
}
|
|
50
62
|
]
|
|
51
63
|
}
|
|
52
64
|
},
|
|
@@ -608,6 +620,170 @@
|
|
|
608
620
|
}
|
|
609
621
|
]
|
|
610
622
|
}
|
|
623
|
+
],
|
|
624
|
+
"/samples/chill_oasis_blocks_and_features/chill_oasis_assets/behavior_packs/chill_oasis_assets/entities/beachager.behavior.json": [
|
|
625
|
+
{
|
|
626
|
+
"path": "/minecraft:entity/component_groups/baby/minecraft:preferred_path/",
|
|
627
|
+
"content": [
|
|
628
|
+
{
|
|
629
|
+
"cost": 0,
|
|
630
|
+
"blocks": [
|
|
631
|
+
"grass_path"
|
|
632
|
+
]
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
"cost": 1,
|
|
636
|
+
"blocks": [
|
|
637
|
+
"cobblestone",
|
|
638
|
+
"stone",
|
|
639
|
+
"stonebrick",
|
|
640
|
+
"sandstone",
|
|
641
|
+
"mossy_cobblestone",
|
|
642
|
+
"stone_slab",
|
|
643
|
+
"stone_slab2",
|
|
644
|
+
"stone_slab3",
|
|
645
|
+
"stone_slab4",
|
|
646
|
+
"double_stone_slab",
|
|
647
|
+
"double_stone_slab2",
|
|
648
|
+
"double_stone_slab3",
|
|
649
|
+
"double_stone_slab4",
|
|
650
|
+
"wooden_slab",
|
|
651
|
+
"double_wooden_slab",
|
|
652
|
+
"planks",
|
|
653
|
+
"brick_block",
|
|
654
|
+
"nether_brick",
|
|
655
|
+
"red_nether_brick",
|
|
656
|
+
"end_bricks",
|
|
657
|
+
"red_sandstone",
|
|
658
|
+
"stained_glass",
|
|
659
|
+
"glass",
|
|
660
|
+
"glowstone",
|
|
661
|
+
"prismarine",
|
|
662
|
+
"emerald_block",
|
|
663
|
+
"diamond_block",
|
|
664
|
+
"lapis_block",
|
|
665
|
+
"gold_block",
|
|
666
|
+
"redstone_block",
|
|
667
|
+
"purple_glazed_terracotta",
|
|
668
|
+
"white_glazed_terracotta",
|
|
669
|
+
"orange_glazed_terracotta",
|
|
670
|
+
"magenta_glazed_terracotta",
|
|
671
|
+
"light_blue_glazed_terracotta",
|
|
672
|
+
"yellow_glazed_terracotta",
|
|
673
|
+
"lime_glazed_terracotta",
|
|
674
|
+
"pink_glazed_terracotta",
|
|
675
|
+
"gray_glazed_terracotta",
|
|
676
|
+
"silver_glazed_terracotta",
|
|
677
|
+
"cyan_glazed_terracotta",
|
|
678
|
+
"blue_glazed_terracotta",
|
|
679
|
+
"brown_glazed_terracotta",
|
|
680
|
+
"green_glazed_terracotta",
|
|
681
|
+
"red_glazed_terracotta",
|
|
682
|
+
"black_glazed_terracotta"
|
|
683
|
+
]
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
"cost": 50,
|
|
687
|
+
"blocks": [
|
|
688
|
+
"bed",
|
|
689
|
+
"lectern",
|
|
690
|
+
"composter",
|
|
691
|
+
"grindstone",
|
|
692
|
+
"blast_furnace",
|
|
693
|
+
"smoker",
|
|
694
|
+
"fletching_table",
|
|
695
|
+
"cartography_table",
|
|
696
|
+
"brewing_stand",
|
|
697
|
+
"smithing_table",
|
|
698
|
+
"cauldron",
|
|
699
|
+
"barrel",
|
|
700
|
+
"loom",
|
|
701
|
+
"stonecutter"
|
|
702
|
+
]
|
|
703
|
+
}
|
|
704
|
+
]
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"path": "/minecraft:entity/component_groups/adult/minecraft:preferred_path/",
|
|
708
|
+
"content": [
|
|
709
|
+
{
|
|
710
|
+
"cost": 0,
|
|
711
|
+
"blocks": [
|
|
712
|
+
"grass_path"
|
|
713
|
+
]
|
|
714
|
+
},
|
|
715
|
+
{
|
|
716
|
+
"cost": 1,
|
|
717
|
+
"blocks": [
|
|
718
|
+
"cobblestone",
|
|
719
|
+
"stone",
|
|
720
|
+
"stonebrick",
|
|
721
|
+
"sandstone",
|
|
722
|
+
"mossy_cobblestone",
|
|
723
|
+
"stone_slab",
|
|
724
|
+
"stone_slab2",
|
|
725
|
+
"stone_slab3",
|
|
726
|
+
"stone_slab4",
|
|
727
|
+
"double_stone_slab",
|
|
728
|
+
"double_stone_slab2",
|
|
729
|
+
"double_stone_slab3",
|
|
730
|
+
"double_stone_slab4",
|
|
731
|
+
"wooden_slab",
|
|
732
|
+
"double_wooden_slab",
|
|
733
|
+
"planks",
|
|
734
|
+
"brick_block",
|
|
735
|
+
"nether_brick",
|
|
736
|
+
"red_nether_brick",
|
|
737
|
+
"end_bricks",
|
|
738
|
+
"red_sandstone",
|
|
739
|
+
"stained_glass",
|
|
740
|
+
"glass",
|
|
741
|
+
"glowstone",
|
|
742
|
+
"prismarine",
|
|
743
|
+
"emerald_block",
|
|
744
|
+
"diamond_block",
|
|
745
|
+
"lapis_block",
|
|
746
|
+
"gold_block",
|
|
747
|
+
"redstone_block",
|
|
748
|
+
"purple_glazed_terracotta",
|
|
749
|
+
"white_glazed_terracotta",
|
|
750
|
+
"orange_glazed_terracotta",
|
|
751
|
+
"magenta_glazed_terracotta",
|
|
752
|
+
"light_blue_glazed_terracotta",
|
|
753
|
+
"yellow_glazed_terracotta",
|
|
754
|
+
"lime_glazed_terracotta",
|
|
755
|
+
"pink_glazed_terracotta",
|
|
756
|
+
"gray_glazed_terracotta",
|
|
757
|
+
"silver_glazed_terracotta",
|
|
758
|
+
"cyan_glazed_terracotta",
|
|
759
|
+
"blue_glazed_terracotta",
|
|
760
|
+
"brown_glazed_terracotta",
|
|
761
|
+
"green_glazed_terracotta",
|
|
762
|
+
"red_glazed_terracotta",
|
|
763
|
+
"black_glazed_terracotta"
|
|
764
|
+
]
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
"cost": 50,
|
|
768
|
+
"blocks": [
|
|
769
|
+
"bed",
|
|
770
|
+
"lectern",
|
|
771
|
+
"composter",
|
|
772
|
+
"grindstone",
|
|
773
|
+
"blast_furnace",
|
|
774
|
+
"smoker",
|
|
775
|
+
"fletching_table",
|
|
776
|
+
"cartography_table",
|
|
777
|
+
"brewing_stand",
|
|
778
|
+
"smithing_table",
|
|
779
|
+
"cauldron",
|
|
780
|
+
"barrel",
|
|
781
|
+
"loom",
|
|
782
|
+
"stonecutter"
|
|
783
|
+
]
|
|
784
|
+
}
|
|
785
|
+
]
|
|
786
|
+
}
|
|
611
787
|
]
|
|
612
788
|
}
|
|
613
789
|
}
|
|
@@ -1163,6 +1339,180 @@
|
|
|
1163
1339
|
"max_fall_blocks": 20
|
|
1164
1340
|
}
|
|
1165
1341
|
}
|
|
1342
|
+
],
|
|
1343
|
+
"/samples/chill_oasis_blocks_and_features/chill_oasis_assets/behavior_packs/chill_oasis_assets/entities/beachager.behavior.json": [
|
|
1344
|
+
{
|
|
1345
|
+
"path": "/minecraft:entity/component_groups/baby/minecraft:preferred_path/",
|
|
1346
|
+
"content": {
|
|
1347
|
+
"max_fall_blocks": 1,
|
|
1348
|
+
"jump_cost": 5,
|
|
1349
|
+
"default_block_cost": 1.5,
|
|
1350
|
+
"preferred_path_blocks": [
|
|
1351
|
+
{
|
|
1352
|
+
"cost": 0,
|
|
1353
|
+
"blocks": [
|
|
1354
|
+
"grass_path"
|
|
1355
|
+
]
|
|
1356
|
+
},
|
|
1357
|
+
{
|
|
1358
|
+
"cost": 1,
|
|
1359
|
+
"blocks": [
|
|
1360
|
+
"cobblestone",
|
|
1361
|
+
"stone",
|
|
1362
|
+
"stonebrick",
|
|
1363
|
+
"sandstone",
|
|
1364
|
+
"mossy_cobblestone",
|
|
1365
|
+
"stone_slab",
|
|
1366
|
+
"stone_slab2",
|
|
1367
|
+
"stone_slab3",
|
|
1368
|
+
"stone_slab4",
|
|
1369
|
+
"double_stone_slab",
|
|
1370
|
+
"double_stone_slab2",
|
|
1371
|
+
"double_stone_slab3",
|
|
1372
|
+
"double_stone_slab4",
|
|
1373
|
+
"wooden_slab",
|
|
1374
|
+
"double_wooden_slab",
|
|
1375
|
+
"planks",
|
|
1376
|
+
"brick_block",
|
|
1377
|
+
"nether_brick",
|
|
1378
|
+
"red_nether_brick",
|
|
1379
|
+
"end_bricks",
|
|
1380
|
+
"red_sandstone",
|
|
1381
|
+
"stained_glass",
|
|
1382
|
+
"glass",
|
|
1383
|
+
"glowstone",
|
|
1384
|
+
"prismarine",
|
|
1385
|
+
"emerald_block",
|
|
1386
|
+
"diamond_block",
|
|
1387
|
+
"lapis_block",
|
|
1388
|
+
"gold_block",
|
|
1389
|
+
"redstone_block",
|
|
1390
|
+
"purple_glazed_terracotta",
|
|
1391
|
+
"white_glazed_terracotta",
|
|
1392
|
+
"orange_glazed_terracotta",
|
|
1393
|
+
"magenta_glazed_terracotta",
|
|
1394
|
+
"light_blue_glazed_terracotta",
|
|
1395
|
+
"yellow_glazed_terracotta",
|
|
1396
|
+
"lime_glazed_terracotta",
|
|
1397
|
+
"pink_glazed_terracotta",
|
|
1398
|
+
"gray_glazed_terracotta",
|
|
1399
|
+
"silver_glazed_terracotta",
|
|
1400
|
+
"cyan_glazed_terracotta",
|
|
1401
|
+
"blue_glazed_terracotta",
|
|
1402
|
+
"brown_glazed_terracotta",
|
|
1403
|
+
"green_glazed_terracotta",
|
|
1404
|
+
"red_glazed_terracotta",
|
|
1405
|
+
"black_glazed_terracotta"
|
|
1406
|
+
]
|
|
1407
|
+
},
|
|
1408
|
+
{
|
|
1409
|
+
"cost": 50,
|
|
1410
|
+
"blocks": [
|
|
1411
|
+
"bed",
|
|
1412
|
+
"lectern",
|
|
1413
|
+
"composter",
|
|
1414
|
+
"grindstone",
|
|
1415
|
+
"blast_furnace",
|
|
1416
|
+
"smoker",
|
|
1417
|
+
"fletching_table",
|
|
1418
|
+
"cartography_table",
|
|
1419
|
+
"brewing_stand",
|
|
1420
|
+
"smithing_table",
|
|
1421
|
+
"cauldron",
|
|
1422
|
+
"barrel",
|
|
1423
|
+
"loom",
|
|
1424
|
+
"stonecutter"
|
|
1425
|
+
]
|
|
1426
|
+
}
|
|
1427
|
+
]
|
|
1428
|
+
}
|
|
1429
|
+
},
|
|
1430
|
+
{
|
|
1431
|
+
"path": "/minecraft:entity/component_groups/adult/minecraft:preferred_path/",
|
|
1432
|
+
"content": {
|
|
1433
|
+
"max_fall_blocks": 1,
|
|
1434
|
+
"jump_cost": 20,
|
|
1435
|
+
"default_block_cost": 3,
|
|
1436
|
+
"preferred_path_blocks": [
|
|
1437
|
+
{
|
|
1438
|
+
"cost": 0,
|
|
1439
|
+
"blocks": [
|
|
1440
|
+
"grass_path"
|
|
1441
|
+
]
|
|
1442
|
+
},
|
|
1443
|
+
{
|
|
1444
|
+
"cost": 1,
|
|
1445
|
+
"blocks": [
|
|
1446
|
+
"cobblestone",
|
|
1447
|
+
"stone",
|
|
1448
|
+
"stonebrick",
|
|
1449
|
+
"sandstone",
|
|
1450
|
+
"mossy_cobblestone",
|
|
1451
|
+
"stone_slab",
|
|
1452
|
+
"stone_slab2",
|
|
1453
|
+
"stone_slab3",
|
|
1454
|
+
"stone_slab4",
|
|
1455
|
+
"double_stone_slab",
|
|
1456
|
+
"double_stone_slab2",
|
|
1457
|
+
"double_stone_slab3",
|
|
1458
|
+
"double_stone_slab4",
|
|
1459
|
+
"wooden_slab",
|
|
1460
|
+
"double_wooden_slab",
|
|
1461
|
+
"planks",
|
|
1462
|
+
"brick_block",
|
|
1463
|
+
"nether_brick",
|
|
1464
|
+
"red_nether_brick",
|
|
1465
|
+
"end_bricks",
|
|
1466
|
+
"red_sandstone",
|
|
1467
|
+
"stained_glass",
|
|
1468
|
+
"glass",
|
|
1469
|
+
"glowstone",
|
|
1470
|
+
"prismarine",
|
|
1471
|
+
"emerald_block",
|
|
1472
|
+
"diamond_block",
|
|
1473
|
+
"lapis_block",
|
|
1474
|
+
"gold_block",
|
|
1475
|
+
"redstone_block",
|
|
1476
|
+
"purple_glazed_terracotta",
|
|
1477
|
+
"white_glazed_terracotta",
|
|
1478
|
+
"orange_glazed_terracotta",
|
|
1479
|
+
"magenta_glazed_terracotta",
|
|
1480
|
+
"light_blue_glazed_terracotta",
|
|
1481
|
+
"yellow_glazed_terracotta",
|
|
1482
|
+
"lime_glazed_terracotta",
|
|
1483
|
+
"pink_glazed_terracotta",
|
|
1484
|
+
"gray_glazed_terracotta",
|
|
1485
|
+
"silver_glazed_terracotta",
|
|
1486
|
+
"cyan_glazed_terracotta",
|
|
1487
|
+
"blue_glazed_terracotta",
|
|
1488
|
+
"brown_glazed_terracotta",
|
|
1489
|
+
"green_glazed_terracotta",
|
|
1490
|
+
"red_glazed_terracotta",
|
|
1491
|
+
"black_glazed_terracotta"
|
|
1492
|
+
]
|
|
1493
|
+
},
|
|
1494
|
+
{
|
|
1495
|
+
"cost": 50,
|
|
1496
|
+
"blocks": [
|
|
1497
|
+
"bed",
|
|
1498
|
+
"lectern",
|
|
1499
|
+
"composter",
|
|
1500
|
+
"grindstone",
|
|
1501
|
+
"blast_furnace",
|
|
1502
|
+
"smoker",
|
|
1503
|
+
"fletching_table",
|
|
1504
|
+
"cartography_table",
|
|
1505
|
+
"brewing_stand",
|
|
1506
|
+
"smithing_table",
|
|
1507
|
+
"cauldron",
|
|
1508
|
+
"barrel",
|
|
1509
|
+
"loom",
|
|
1510
|
+
"stonecutter"
|
|
1511
|
+
]
|
|
1512
|
+
}
|
|
1513
|
+
]
|
|
1514
|
+
}
|
|
1515
|
+
}
|
|
1166
1516
|
]
|
|
1167
1517
|
},
|
|
1168
1518
|
"id": "minecraft:preferred_path"
|
|
@@ -1169,6 +1169,15 @@
|
|
|
1169
1169
|
"is_pushable_by_piston": true
|
|
1170
1170
|
}
|
|
1171
1171
|
}
|
|
1172
|
+
],
|
|
1173
|
+
"/samples/chill_oasis_blocks_and_features/chill_oasis_assets/behavior_packs/chill_oasis_assets/entities/beachager.behavior.json": [
|
|
1174
|
+
{
|
|
1175
|
+
"path": "/minecraft:entity/components/minecraft:pushable/",
|
|
1176
|
+
"content": {
|
|
1177
|
+
"is_pushable": true,
|
|
1178
|
+
"is_pushable_by_piston": true
|
|
1179
|
+
}
|
|
1180
|
+
}
|
|
1172
1181
|
]
|
|
1173
1182
|
},
|
|
1174
1183
|
"id": "minecraft:pushable"
|
|
@@ -584,6 +584,14 @@
|
|
|
584
584
|
"value": 1.3
|
|
585
585
|
}
|
|
586
586
|
}
|
|
587
|
+
],
|
|
588
|
+
"/samples/chill_oasis_blocks_and_features/chill_oasis_assets/behavior_packs/chill_oasis_assets/entities/beachager.behavior.json": [
|
|
589
|
+
{
|
|
590
|
+
"path": "/minecraft:entity/component_groups/baby/minecraft:scale/",
|
|
591
|
+
"content": {
|
|
592
|
+
"value": 0.5
|
|
593
|
+
}
|
|
594
|
+
}
|
|
587
595
|
]
|
|
588
596
|
},
|
|
589
597
|
"id": "minecraft:scale"
|