diff --git a/behavior_pack/entities/allay.json b/behavior_pack/entities/allay.json index 2544a5149..9efa18c3a 100644 --- a/behavior_pack/entities/allay.json +++ b/behavior_pack/entities/allay.json @@ -1,12 +1,11 @@ { - "format_version": "1.16.0", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:allay", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { "pickup_item_delay": { @@ -64,10 +63,7 @@ "damage_conditions": [ { "filters": { - "test": "in_lava", - "subject": "self", - "operator": "==", - "value": true + "test": "in_lava", "subject": "self", "operator": "==", "value": true }, "cause": "lava", "damage_per_tick": 4 @@ -80,16 +76,8 @@ "on_damage": { "filters": { "all_of": [ - { - "test": "is_family", - "subject": "other", - "value": "player" - }, - { - "test": "is_owner", - "subject": "other", - "value": true - } + { "test": "is_family", "subject": "other", "value": "player" }, + { "test": "is_owner", "subject": "other", "value": true } ] } }, @@ -154,16 +142,8 @@ "on_interact": { "filters": { "all_of": [ - { - "test": "is_family", - "subject": "other", - "value": "player" - }, - { - "test": "is_sneak_held", - "subject": "other", - "value": false - } + { "test": "is_family", "subject": "other", "value": "player" }, + { "test": "is_sneak_held", "subject": "other", "value": false } ] } }, diff --git a/behavior_pack/entities/armadillo.json b/behavior_pack/entities/armadillo.json index 9017ade2b..8b27d817a 100644 --- a/behavior_pack/entities/armadillo.json +++ b/behavior_pack/entities/armadillo.json @@ -1,5 +1,5 @@ { - "format_version": "1.20.80", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:armadillo", diff --git a/behavior_pack/entities/bee.json b/behavior_pack/entities/bee.json index 9dbc8e532..afc30f4a6 100644 --- a/behavior_pack/entities/bee.json +++ b/behavior_pack/entities/bee.json @@ -37,10 +37,10 @@ "minecraft:lily_of_the_valley", "minecraft:yellow_flower", // Dandelion "minecraft:wither_rose", - "minecraft:double_plant:0", // Sunflower - "minecraft:double_plant:1", // Lilac - "minecraft:double_plant:4", // Rose Bush - "minecraft:double_plant:5", // Peony + "minecraft:sunflower", + "minecraft:lilac", + "minecraft:rose_bush", + "minecraft:peony", "minecraft:flowering_azalea", "minecraft:azalea_leaves_flowered", "minecraft:mangrove_propagule", @@ -92,10 +92,10 @@ "minecraft:lily_of_the_valley", "minecraft:yellow_flower", // Dandelion "minecraft:wither_rose", - "minecraft:double_plant:0", // Sunflower - "minecraft:double_plant:1", // Lilac - "minecraft:double_plant:4", // Rose Bush - "minecraft:double_plant:5", // Peony + "minecraft:sunflower", + "minecraft:lilac", + "minecraft:rose_bush", + "minecraft:peony", "minecraft:flowering_azalea", "minecraft:azalea_leaves_flowered", "minecraft:mangrove_propagule", @@ -232,10 +232,10 @@ "minecraft:lily_of_the_valley", "minecraft:yellow_flower", // Dandelion "minecraft:wither_rose", - "minecraft:double_plant:0", // Sunflower - "minecraft:double_plant:1", // Lilac - "minecraft:double_plant:4", // Rose Bush - "minecraft:double_plant:5", // Peony + "minecraft:sunflower", + "minecraft:lilac", + "minecraft:rose_bush", + "minecraft:peony", "minecraft:flowering_azalea", "minecraft:azalea_leaves_flowered", "minecraft:mangrove_propagule", @@ -455,10 +455,10 @@ "minecraft:lily_of_the_valley", "minecraft:yellow_flower", // Dandelion "minecraft:wither_rose", - "minecraft:double_plant:0", // Sunflower - "minecraft:double_plant:1", // Lilac - "minecraft:double_plant:4", // Rose Bush - "minecraft:double_plant:5", // Peony + "minecraft:sunflower", + "minecraft:lilac", + "minecraft:rose_bush", + "minecraft:peony", "minecraft:flowering_azalea", "minecraft:azalea_leaves_flowered", "minecraft:mangrove_propagule", diff --git a/behavior_pack/entities/bogged.json b/behavior_pack/entities/bogged.json new file mode 100644 index 000000000..c0aca39a5 --- /dev/null +++ b/behavior_pack/entities/bogged.json @@ -0,0 +1,541 @@ +{ + "format_version": "1.21.0", + "minecraft:entity": { + "description": { + "identifier": "minecraft:bogged", + "spawn_category": "monster", + "is_spawnable": true, + "is_summonable": true + }, + + "component_groups": { + "minecraft:bogged_sheared": { + "minecraft:is_sheared": { + } + }, + "minecraft:ranged_attack": { + "minecraft:behavior.ranged_attack": { + "priority": 0, + "attack_interval": 3.5, + "attack_radius": 15.0 + }, + "minecraft:shooter": { + "def": "minecraft:arrow", + "sound": "bow", + "aux_val": 26 + }, + "minecraft:environment_sensor": { + "triggers": [ + { + "filters": { + "test": "is_underwater", + "subject": "self", + "operator": "==", + "value": true + }, + "event": "minecraft:melee_mode" + }, + { + "filters": { + "test": "has_ranged_weapon", + "subject": "self", + "operator": "==", + "value": false + }, + "event": "minecraft:melee_mode" + } + ] + } + }, + "minecraft:melee_attack": { + "minecraft:behavior.melee_box_attack": { + "priority": 4, + "track_target": true, + "speed_multiplier": 1.25 + }, + "minecraft:attack": { + "damage": 3, + "effect_name": "slowness", + "effect_duration": 10 + }, + "minecraft:environment_sensor": { + "triggers": [ + { + "filters": { + "all_of": [ + { + "test": "in_water", + "subject": "self", + "operator": "==", + "value": false + }, + { + "test": "has_ranged_weapon", + "subject": "self", + "operator": "==", + "value": true + } + ] + }, + "event": "minecraft:ranged_mode" + } + ] + } + } + }, + "components": { + "minecraft:is_hidden_when_invisible": { + }, + "minecraft:experience_reward": { + "on_death": "query.last_hit_by_player ? 5 + (query.equipment_count * Math.Random(1,3)) : 0" + }, + "minecraft:breathable": { + "total_supply": 15, + "suffocate_time": 0, + "breathes_water": true + }, + "minecraft:equip_item": { + "excluded_items": [ + { + "item": "minecraft:banner:15" + } + ] + }, + "minecraft:collision_box": { + "width": 0.6, + "height": 1.9 + }, + "minecraft:burns_in_daylight": {}, + "minecraft:nameable": {}, + "minecraft:health": { + "value": 16, + "max": 16 + }, + "minecraft:hurt_on_condition": { + "damage_conditions": [ + { + "filters": { "test": "in_lava", "subject": "self", "operator": "==", "value": true }, + "cause": "lava", + "damage_per_tick": 4 + } + ] + }, + "minecraft:loot": { + "table": "loot_tables/entities/bogged.json" + }, + "minecraft:movement": { + "value": 0.25 + }, + "minecraft:navigation.walk": { + "is_amphibious": true, + "avoid_sun": true, + "avoid_water": true + }, + "minecraft:movement.basic": { + }, + "minecraft:jump.static": { + }, + "minecraft:can_climb": { + }, + "minecraft:equipment": { + "table": "loot_tables/entities/skeleton_gear.json" + }, + "minecraft:environment_sensor": { + "triggers": [ + { + "filters": { + "test": "is_underwater", + "subject": "self", + "operator": "==", + "value": true + }, + "event": "minecraft:melee_mode" + }, + { + "filters": { + "test": "has_ranged_weapon", + "subject": "self", + "operator": "==", + "value": false + }, + "event": "minecraft:melee_mode" + } + ] + }, + "minecraft:despawn": { + "despawn_from_distance": {} + }, + "minecraft:shareables": { + "singular_pickup": true, + "items": [ + { + "item": "minecraft:netherite_sword", + "want_amount": 1, + "surplus_amount": 1, + "priority": 0 + }, + { + "item": "minecraft:diamond_sword", + "want_amount": 1, + "surplus_amount": 1, + "priority": 1 + }, + { + "item": "minecraft:iron_sword", + "want_amount": 1, + "surplus_amount": 1, + "priority": 2 + }, + { + "item": "minecraft:stone_sword", + "want_amount": 1, + "surplus_amount": 1, + "priority": 3 + }, + { + "item": "minecraft:golden_sword", + "want_amount": 1, + "surplus_amount": 1, + "priority": 4 + }, + { + "item": "minecraft:wooden_sword", + "want_amount": 1, + "surplus_amount": 1, + "priority": 5 + }, + { + "item": "minecraft:bow", + "want_amount": 1, + "surplus_amount": 1, + "priority": 6 + }, + { + "item": "minecraft:netherite_helmet", + "want_amount": 1, + "surplus_amount": 1, + "priority": 0 + }, + { + "item": "minecraft:diamond_helmet", + "want_amount": 1, + "surplus_amount": 1, + "priority": 1 + }, + { + "item": "minecraft:iron_helmet", + "want_amount": 1, + "surplus_amount": 1, + "priority": 2 + }, + { + "item": "minecraft:chainmail_helmet", + "want_amount": 1, + "surplus_amount": 1, + "priority": 3 + }, + { + "item": "minecraft:golden_helmet", + "want_amount": 1, + "surplus_amount": 1, + "priority": 4 + }, + { + "item": "minecraft:leather_helmet", + "want_amount": 1, + "surplus_amount": 1, + "priority": 5 + }, + { + "item": "minecraft:turtle_helmet", + "want_amount": 1, + "surplus_amount": 1, + "priority": 6 + }, + { + "item": "minecraft:skull:0", + "want_amount": 1, + "surplus_amount": 1, + "priority": 7 + }, + { + "item": "minecraft:skull:1", + "want_amount": 1, + "surplus_amount": 1, + "priority": 7 + }, + { + "item": "minecraft:carved_pumpkin", + "want_amount": 1, + "surplus_amount": 1, + "priority": 7 + }, + { + "item": "minecraft:netherite_chestplate", + "want_amount": 1, + "surplus_amount": 1, + "priority": 0 + }, + { + "item": "minecraft:diamond_chestplate", + "want_amount": 1, + "surplus_amount": 1, + "priority": 1 + }, + { + "item": "minecraft:iron_chestplate", + "want_amount": 1, + "surplus_amount": 1, + "priority": 2 + }, + { + "item": "minecraft:chainmail_chestplate", + "want_amount": 1, + "surplus_amount": 1, + "priority": 3 + }, + { + "item": "minecraft:golden_chestplate", + "want_amount": 1, + "surplus_amount": 1, + "priority": 4 + }, + { + "item": "minecraft:leather_chestplate", + "want_amount": 1, + "surplus_amount": 1, + "priority": 5 + }, + { + "item": "minecraft:netherite_leggings", + "want_amount": 1, + "surplus_amount": 1, + "priority": 0 + }, + { + "item": "minecraft:diamond_leggings", + "want_amount": 1, + "surplus_amount": 1, + "priority": 1 + }, + { + "item": "minecraft:iron_leggings", + "want_amount": 1, + "surplus_amount": 1, + "priority": 2 + }, + { + "item": "minecraft:chainmail_leggings", + "want_amount": 1, + "surplus_amount": 1, + "priority": 3 + }, + { + "item": "minecraft:golden_leggings", + "want_amount": 1, + "surplus_amount": 1, + "priority": 4 + }, + { + "item": "minecraft:leather_leggings", + "want_amount": 1, + "surplus_amount": 1, + "priority": 5 + }, + { + "item": "minecraft:netherite_boots", + "want_amount": 1, + "surplus_amount": 1, + "priority": 0 + }, + { + "item": "minecraft:diamond_boots", + "want_amount": 1, + "surplus_amount": 1, + "priority": 1 + }, + { + "item": "minecraft:iron_boots", + "want_amount": 1, + "surplus_amount": 1, + "priority": 2 + }, + { + "item": "minecraft:chainmail_boots", + "want_amount": 1, + "surplus_amount": 1, + "priority": 3 + }, + { + "item": "minecraft:golden_boots", + "want_amount": 1, + "surplus_amount": 1, + "priority": 4 + }, + { + "item": "minecraft:leather_boots", + "want_amount": 1, + "surplus_amount": 1, + "priority": 5 + } + ] + }, + "minecraft:behavior.hurt_by_target": { + "priority": 1, + "entity_types": [ + { + "filters": { + "test": "is_family", + "subject": "other", + "operator": "!=", + "value": "breeze" + } + } + ] + }, + "minecraft:behavior.nearest_attackable_target": { + "priority": 2, + "must_see": true, + "reselect_targets": true, + + "entity_types": [ + { + "filters": { + "test": "is_family", + "subject": "other", + "value": "player" + }, + "max_dist": 16 + }, + { + "filters": { + "test": "is_family", + "subject": "other", + "value": "irongolem" + }, + "max_dist": 16 + }, + { + "filters": { + "all_of": [ + { + "test": "is_family", + "subject": "other", + "value": "baby_turtle" + }, + { + "test": "in_water", + "subject": "other", + "operator": "!=", + "value": true + } + ] + }, + "max_dist": 16 + } + ] + }, + + "minecraft:behavior.flee_sun": { + "priority": 2, + "speed_multiplier": 1 + }, + "minecraft:behavior.equip_item": { + "priority": 3 + }, + "minecraft:behavior.avoid_mob_type": { + "priority": 4, + "entity_types": [ + { + "filters": { + "test": "is_family", + "subject": "other", + "value": "wolf" + }, + "max_dist": 6, + "walk_speed_multiplier": 1.2, + "sprint_speed_multiplier": 1.2 + } + ] + }, + "minecraft:behavior.pickup_items": { + "priority": 5, + "max_dist": 3, + "goal_radius": 2, + "speed_multiplier": 1.0, + "pickup_based_on_chance": true, + "can_pickup_any_item": true + }, + "minecraft:behavior.random_stroll": { + "priority": 6, + "speed_multiplier": 1 + }, + "minecraft:behavior.look_at_player": { + "priority": 7, + "look_distance": 8 + }, + "minecraft:behavior.random_look_around": { + "priority": 8 + }, + "minecraft:type_family": { + "family": [ "bogged", "skeleton", "monster", "mob", "undead" ] + }, + "minecraft:physics": { + }, + "minecraft:pushable": { + "is_pushable": true, + "is_pushable_by_piston": true + }, + "minecraft:conditional_bandwidth_optimization": { + }, + "minecraft:interact": { + "interactions": [ + { + "on_interact": { + "filters": { + "all_of": [ + { "test": "has_equipment", "subject": "other", "domain": "hand", "value": "shears"}, + { "test": "has_component", "operator": "!=", "value": "minecraft:is_sheared"} + ] + }, + "event": "be_sheared", + "target": "self" + }, + "use_item": false, + "hurt_item": 1, + "play_sounds": "shear", + "spawn_items": { "table": "loot_tables/entities/bogged_shear.json" }, + "interact_text": "action.interact.shear" + } + ] + } + }, + + "events": { + "minecraft:entity_spawned": { + "add": { + "component_groups": [ + "minecraft:ranged_attack" + ] + } + }, + "minecraft:melee_mode": { + "remove": { "component_groups": [ "minecraft:ranged_attack" ] }, + "add": { "component_groups": [ "minecraft:melee_attack" ] } + }, + "minecraft:ranged_mode": { + "remove": { "component_groups": [ "minecraft:melee_attack" ] }, + "add": { "component_groups": [ "minecraft:ranged_attack" ] } + }, + "be_sheared": { + "remove": { + }, + "add": { + "component_groups": [ + "minecraft:bogged_sheared" + ] + } + } + } + } +} diff --git a/behavior_pack/entities/breeze.json b/behavior_pack/entities/breeze.json new file mode 100644 index 000000000..8159df9c3 --- /dev/null +++ b/behavior_pack/entities/breeze.json @@ -0,0 +1,312 @@ +{ + "format_version": "1.21.0", + "minecraft:entity": { + "description": { + "identifier": "minecraft:breeze", + "spawn_category": "monster", + "is_spawnable": true, + "is_summonable": true, + "properties": { + "minecraft:is_playing_idle_ground_sound": { + "type": "bool", + "client_sync": false, + "default": false + } + } + }, + "components": { + "minecraft:type_family": { + "family": [ + "breeze", + "monster", + "mob" + ] + }, + "minecraft:nameable": {}, + "minecraft:health": { + "value": 30, + "max": 30 + }, + "minecraft:loot": { + "table": "loot_tables/entities/breeze.json" + }, + "minecraft:collision_box": { + "width": 0.6, + "height": 1.77 + }, + "minecraft:knockback_resistance": { + "value": 0.0 + }, + "minecraft:jump.static": { + }, + "minecraft:physics": {}, + "minecraft:pushable": { + "is_pushable": true, + "is_pushable_by_piston": true + }, + "minecraft:persistent": { + }, + "minecraft:experience_reward": { + "on_bred": "Math.Random(1,7)", + "on_death": "query.last_hit_by_player ? 10 : 0" + }, + "minecraft:is_hidden_when_invisible": { + }, + "minecraft:breathable": { + "total_supply": 15, + "suffocate_time": 0 + }, + "minecraft:movement": { + "value": 0.4 + }, + "minecraft:follow_range": { + "value": 32.0 + }, + "minecraft:navigation.walk": { + "blocks_to_avoid": [ + { + "tags": "query.any_tag('trapdoors')" + } + ] + }, + "minecraft:movement.basic": {}, + "minecraft:can_climb": {}, + "minecraft:conditional_bandwidth_optimization": { + }, + "minecraft:hurt_on_condition": { + "damage_conditions": [ + { + "filters": { + "test": "in_lava", + "subject": "self", + "operator": "==", + "value": true + }, + "cause": "lava", + "damage_per_tick": 4 + } + ] + }, + "minecraft:damage_sensor": { + "triggers": [ + { + "cause": "fall", + "deals_damage": false + }, + { + "on_damage": { + "filters": { "test" : "is_family", "subject" : "damager", "operator": "!=", "value" : "wind_charge" } + }, + "cause": "projectile", + "deals_damage": false + } + ] + }, + "minecraft:environment_sensor": { + "triggers": [ + { + "filters": { + "all_of": [ + {"test": "on_ground", "subject": "self", "value": true}, + {"test": "has_target", "subject": "self", "value": true}, + {"test": "bool_property", "operator": "==", "domain": "minecraft:is_playing_idle_ground_sound"} + ] + }, + "event": "minecraft:stop_playing_idle_ground_sound" + }, + { + "filters": { + "all_of": [ + {"test": "bool_property", "operator": "!=", "domain": "minecraft:is_playing_idle_ground_sound"}, + { + "any_of": [ + {"test": "on_ground", "subject": "self", "value": false}, + {"test": "has_target", "subject": "self", "value": false} + ] + } + ] + }, + "event": "minecraft:start_playing_idle_ground_sound" + } + ] + }, + "minecraft:reflect_projectiles": { + "reflected_projectiles": [ + "xp_bottle", + "thrown_trident", + "shulker_bullet", + "dragon_fireball", + "arrow", + "snowball", + "egg", + "fireball", + "splash_potion", + "ender_pearl", + "wither_skull", + "wither_skull_dangerous", + "small_fireball", + "lingering_potion", + "llama_spit", + "fireworks_rocket", + "fishing_hook" + ], + "azimuth_angle": "180.0 + Math.random(-20.0, 20.0)", + "reflection_scale": "0.5" + }, + "minecraft:behavior.float": { + "priority": 0 + }, + "minecraft:behavior.nearest_attackable_target": { + "priority": 1, + "within_radius": 24, + "scan_interval": 10, + "entity_types": [ + { + "filters": { + "test": "is_family", + "subject": "other", + "value": "player" + }, + "max_dist": 24 + }, + { + "filters": { + "test": "is_family", + "subject": "other", + "value": "irongolem" + }, + "max_dist": 24 + } + ], + "must_see": true + }, + "minecraft:behavior.move_away_from_target": { + "priority": 2, + "destination_position_range": [4.0, 8.0], + "movement_speed": 1.2, + "destination_pos_spread_degrees": 90, + "filters": { + "all_of": [ + { + "test": "on_ground", + "value": true + }, + { + "test": "target_distance", + "subject": "self", + "value": 4.0, + "operator": "<=" + } + ] + } + }, + "minecraft:behavior.fire_at_target": { + "projectile_def": "minecraft:breeze_wind_charge_projectile", + "priority": 3, + "attack_range": [ 2, 16 ], + "attack_cooldown": 0.5, + "pre_shoot_delay": 0.75, + "post_shoot_delay": 0.2, + "ranged_fov": 90.0, + "owner_anchor": 2, + "owner_offset": [ 0.0, 0.3, 0.0 ], + "target_anchor": 0, + "target_offset": [ 0.0, 0.5, 0.0 ] + }, + "minecraft:behavior.hurt_by_target": { + "priority": 4, + "entity_types": [ + { + "filters": { + "all_of": [ + { + "test": "is_family", "subject": "other", "operator": "!=", "value": "skeleton" + }, + { + "test": "is_family", "subject": "other", "operator": "!=", "value": "stray" + }, + { + "test": "is_family", "subject": "other", "operator": "!=", "value": "zombie" + }, + { + "test": "is_family", "subject": "other", "operator": "!=", "value": "husk" + }, + { + "test": "is_family", "subject": "other", "operator": "!=", "value": "spider" + }, + { + "test": "is_family", "subject": "other", "operator": "!=", "value": "cavespider" + }, + { + "test": "is_family", "subject": "other", "operator": "!=", "value": "slime" + } + ] + } + } + ] + }, + "minecraft:behavior.jump_around_target": { + "priority": 5, + "filters": { + "all_of": [ + { + "any_of": [ + { "test": "in_water", "value": true }, + { "test": "on_ground", "value": true } + ] + }, + { "test": "is_riding", "value": false }, + { "test": "in_lava", "value": false } + ] + }, + "jump_cooldown_duration": 0.5, + "jump_cooldown_when_hurt_duration": 0.1, + "last_hurt_duration": 2.0, + "prepare_jump_duration": 0.5, + "max_jump_velocity": 1.4, + "check_collision": false, + "entity_bounding_box_scale": 0.7, + "line_of_sight_obstruction_height_ignore": 4, + "valid_distance_to_target": [4.0, 20.0], + "landing_position_spread_degrees": 90, + "landing_distance_from_target": [4.0, 8.0], + "required_vertical_space": 4, + "snap_to_surface_block_range": 10, + "jump_angles": [40.0, 55.0, 60.0, 75.0, 80.0] + }, + "minecraft:behavior.random_stroll": { + "priority": 6, + "speed_multiplier": 1.0 + }, + "minecraft:behavior.look_at_player": { + "priority": 7, + "look_distance": 16 + }, + "minecraft:behavior.random_look_around": { + "priority": 8 + } + }, + "events": { + "minecraft:start_playing_idle_ground_sound": { + "add": { + "component_groups": [ + "minecraft:playing_idle_ground_sound" + ] + }, + "set_property": { + "minecraft:is_playing_idle_ground_sound": true + } + }, + "minecraft:stop_playing_idle_ground_sound": { + "remove": { + "component_groups": [ + "minecraft:playing_idle_ground_sound" + ] + }, + "set_property": { + "minecraft:is_playing_idle_ground_sound": false + } + } + } + } +} diff --git a/behavior_pack/entities/breeze_wind_charge_projectile.json b/behavior_pack/entities/breeze_wind_charge_projectile.json new file mode 100644 index 000000000..06123c6fb --- /dev/null +++ b/behavior_pack/entities/breeze_wind_charge_projectile.json @@ -0,0 +1,61 @@ +{ + "format_version": "1.21.0", + "minecraft:entity": { + "description": { + "identifier": "minecraft:breeze_wind_charge_projectile", + "is_spawnable": false, + "is_summonable": false + }, + "components": { + "minecraft:wind_burst": { + "radius": 3.0, + "particle_effect": "breeze_wind_burst", + "sound_effect": "breeze_wind_charge.burst", + "knockback_scaling": 1.0, + "negates_fall_damage": false + }, + "minecraft:collision_box": { + "width": 0.3125, + "height": 0.3125 + }, + "minecraft:projectile": { + "on_hit": { + "impact_damage": { + "damage": 1, + "knockback": true + }, + "remove_on_hit": {} + }, + "power": 0.7, + "gravity": 0.00, + "inertia": 1.0, + "liquid_inertia": 1.0, + "uncertainty_base": 5.0, + "uncertainty_multiplier": 4.0, + "reflect_on_hurt": true, + "ignored_entities": [ + "ender_crystal", + "wind_charge_projectile", + "breeze_wind_charge_projectile" + ], + "hit_nearest_passenger": true + }, + "minecraft:physics": { + }, + "minecraft:pushable": { + "is_pushable": false, + "is_pushable_by_piston": true + }, + "minecraft:conditional_bandwidth_optimization": { + "default_values": { + "max_optimized_distance": 80.0, + "max_dropped_ticks": 7, + "use_motion_prediction_hints": true + } + }, + "minecraft:type_family": { + "family": ["wind_charge", "wind_charge_projectile"] + } + } + } +} diff --git a/behavior_pack/entities/camel.json b/behavior_pack/entities/camel.json index f161e2471..aabe3dba0 100644 --- a/behavior_pack/entities/camel.json +++ b/behavior_pack/entities/camel.json @@ -1,12 +1,11 @@ { - "format_version": "1.16.0", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:camel", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { "minecraft:camel_saddled": { @@ -75,7 +74,7 @@ }, "target": "self" }, - "equip_item_slot": 0, + "equip_item_slot": "0", "interact_text": "action.interact.saddle" } ] diff --git a/behavior_pack/entities/cat.json b/behavior_pack/entities/cat.json index 73953fb2c..72177db22 100644 --- a/behavior_pack/entities/cat.json +++ b/behavior_pack/entities/cat.json @@ -1,13 +1,13 @@ { - "format_version": "1.18.10", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:cat", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, + "component_groups": { "minecraft:cat_baby": { "minecraft:is_baby": { @@ -24,7 +24,6 @@ } } }, - "minecraft:cat_adult": { "minecraft:experience_reward": { "on_bred": "Math.Random(1,7)", @@ -84,25 +83,15 @@ "entity_types": [ { "filters": { - "test": "is_family", - "subject": "other", - "value": "rabbit" + "test": "is_family", "subject": "other", "value": "rabbit" }, "max_dist": 8 }, { "filters": { "all_of": [ - { - "test": "is_family", - "subject": "other", - "value": "baby_turtle" - }, - { - "test": "in_water", - "subject": "other", - "operator": "!=", - "value": true + { "test": "is_family", "subject": "other", "value": "baby_turtle" }, + { "test": "in_water", "subject": "other", "operator": "!=", "value": true } ] }, diff --git a/behavior_pack/entities/cave_spider.json b/behavior_pack/entities/cave_spider.json index f3840ed1b..893c81fe4 100644 --- a/behavior_pack/entities/cave_spider.json +++ b/behavior_pack/entities/cave_spider.json @@ -1,5 +1,5 @@ { - "format_version": "1.20.80", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:cave_spider", @@ -259,7 +259,17 @@ "priority": 7 }, "minecraft:behavior.hurt_by_target": { - "priority": 1 + "priority": 1, + "entity_types": [ + { + "filters": { + "test": "is_family", + "subject": "other", + "operator": "!=", + "value": "breeze" + } + } + ] }, "minecraft:rideable": { "seat_count": 1, diff --git a/behavior_pack/entities/chicken.json b/behavior_pack/entities/chicken.json index f19d21030..3701cb2a7 100644 --- a/behavior_pack/entities/chicken.json +++ b/behavior_pack/entities/chicken.json @@ -1,13 +1,13 @@ { - "format_version": "1.16.0", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:chicken", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, + "component_groups": { "minecraft:chicken_baby": { "minecraft:is_baby": { diff --git a/behavior_pack/entities/cow.json b/behavior_pack/entities/cow.json index bbca59433..62fdf1c64 100644 --- a/behavior_pack/entities/cow.json +++ b/behavior_pack/entities/cow.json @@ -1,13 +1,13 @@ { - "format_version": "1.16.0", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:cow", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, + "component_groups": { "minecraft:cow_baby": { "minecraft:is_baby": { @@ -23,13 +23,11 @@ "target": "self" } }, - "minecraft:behavior.follow_parent": { "priority": 6, "speed_multiplier": 1.1 } }, - "minecraft:cow_adult": { "minecraft:experience_reward": { "on_bred": "Math.Random(1,7)", @@ -91,7 +89,6 @@ "avoid_damage_blocks": true }, "minecraft:movement.basic": { - }, "minecraft:jump.static": { }, @@ -251,4 +248,4 @@ } } } -} \ No newline at end of file +} diff --git a/behavior_pack/entities/dolphin.json b/behavior_pack/entities/dolphin.json index ed839323e..5d8f63a92 100644 --- a/behavior_pack/entities/dolphin.json +++ b/behavior_pack/entities/dolphin.json @@ -1,12 +1,11 @@ { - "format_version": "1.18.10", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:dolphin", "spawn_category": "water_creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { "dolphin_adult": { @@ -84,16 +83,8 @@ { "filters": { "all_of": [ - { - "test": "on_ground", - "operator": "==", - "value": true - }, - { - "test": "in_water", - "operator": "!=", - "value": true - } + { "test": "on_ground", "operator": "==", "value": true }, + { "test": "in_water", "operator": "!=", "value": true } ] }, "event": "navigation_on_land" @@ -137,17 +128,13 @@ "triggers": [ { "filters": { - "test": "in_water", - "operator": "==", - "value": true + "test": "in_water", "operator": "==", "value": true }, "event": "navigation_off_land" }, { "filters": { - "test": "in_water_or_rain", - "operator": "!=", - "value": true + "test": "in_water_or_rain", "operator": "!=", "value": true }, "event": "start_dryingout" } diff --git a/behavior_pack/entities/donkey.json b/behavior_pack/entities/donkey.json index 5b0457789..24296f853 100644 --- a/behavior_pack/entities/donkey.json +++ b/behavior_pack/entities/donkey.json @@ -1,12 +1,11 @@ { - "format_version": "1.16.0", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:donkey", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { "minecraft:donkey_baby": { @@ -183,7 +182,7 @@ }, "target": "self" }, - "equip_item_slot": 0, + "equip_item_slot": "0", "interact_text": "action.interact.equip" } ] @@ -253,7 +252,7 @@ }, "target": "self" }, - "equip_item_slot": 0, + "equip_item_slot": "0", "interact_text": "action.interact.saddle" }, { @@ -294,7 +293,7 @@ }, "target": "self" }, - "equip_item_slot": 0, + "equip_item_slot": "0", "interact_text": "action.interact.saddle" } ] diff --git a/behavior_pack/entities/fox.json b/behavior_pack/entities/fox.json index a9bfe9506..1688e303e 100644 --- a/behavior_pack/entities/fox.json +++ b/behavior_pack/entities/fox.json @@ -1,12 +1,11 @@ { - "format_version": "1.17.10", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:fox", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { @@ -27,7 +26,6 @@ "target": "self" } }, - "minecraft:behavior.follow_parent": { "priority": 9, "speed_multiplier": 1.1 @@ -344,52 +342,17 @@ "mob_detect_height": 6.0, "can_nap_filters": { "all_of": [ - { - "test": "in_water", - "subject": "self", - "operator": "==", - "value": false - }, - { - "test": "on_ground", - "subject": "self", - "operator": "==", - "value": true - }, - { - "test": "is_underground", - "subject": "self", - "operator": "==", - "value": true - }, - { - "test": "weather_at_position", - "subject": "self", - "operator": "!=", - "value": "thunderstorm" - } + { "test": "in_water", "subject": "self", "operator": "==", "value": false }, + { "test": "on_ground", "subject": "self", "operator": "==", "value": true }, + { "test": "is_underground", "subject": "self", "operator": "==", "value": true }, + { "test": "weather_at_position", "subject": "self", "operator": "!=", "value": "thunderstorm" } ] }, "wake_mob_exceptions": { "any_of": [ - { - "test": "trusts", - "subject": "other", - "operator": "==", - "value": true - }, - { - "test": "is_family", - "subject": "other", - "operator": "==", - "value": "fox" - }, - { - "test": "is_sneaking", - "subject": "other", - "operator": "==", - "value": true - } + { "test": "trusts", "subject": "other", "operator": "==", "value": true }, + { "test": "is_family", "subject": "other", "operator": "==", "value": "fox" }, + { "test": "is_sneaking", "subject": "other", "operator": "==", "value": true } ] } }, @@ -884,4 +847,4 @@ } } } -} \ No newline at end of file +} diff --git a/behavior_pack/entities/frog.json b/behavior_pack/entities/frog.json index 0062f38e0..b5c79b781 100644 --- a/behavior_pack/entities/frog.json +++ b/behavior_pack/entities/frog.json @@ -1,12 +1,11 @@ { - "format_version": "1.16.0", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:frog", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { "temperate_frog": { diff --git a/behavior_pack/entities/goat.json b/behavior_pack/entities/goat.json index 2d19beaf5..725a86164 100644 --- a/behavior_pack/entities/goat.json +++ b/behavior_pack/entities/goat.json @@ -1,12 +1,11 @@ { - "format_version": "1.18.10", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:goat", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { "goat_baby": { @@ -113,23 +112,9 @@ "on_interact": { "filters": { "all_of": [ - { - "test": "has_component", - "subject": "self", - "operator": "!=", - "value": "minecraft:is_baby" - }, - { - "test": "is_family", - "subject": "other", - "value": "player" - }, - { - "test": "has_equipment", - "domain": "hand", - "subject": "other", - "value": "bucket:0" - } + { "test": "has_component", "subject": "self", "operator": "!=", "value": "minecraft:is_baby" }, + { "test": "is_family", "subject": "other", "value": "player" }, + { "test": "has_equipment", "domain": "hand", "subject": "other", "value": "bucket:0" } ] } }, @@ -323,18 +308,8 @@ { "filters": { "all_of": [ - { - "test": "is_family", - "subject": "other", - "operator": "!=", - "value": "goat" - }, - { - "test": "has_component", - "subject": "self", - "operator": "!=", - "value": "minecraft:attack_cooldown" - } + { "test": "is_family", "subject": "other", "operator": "!=", "value": "goat" }, + { "test": "has_component", "subject": "self", "operator": "!=", "value": "minecraft:attack_cooldown" } ] }, "max_dist": 16 @@ -448,4 +423,4 @@ } } } -} \ No newline at end of file +} diff --git a/behavior_pack/entities/hoglin.json b/behavior_pack/entities/hoglin.json index 5e30a050c..5f0d41d94 100644 --- a/behavior_pack/entities/hoglin.json +++ b/behavior_pack/entities/hoglin.json @@ -1,12 +1,11 @@ { - "format_version": "1.18.30", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:hoglin", "spawn_category": "monster", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { @@ -70,6 +69,7 @@ } } }, + "attack_cooldown": { "minecraft:attack_cooldown": { "attack_cooldown_time": [ 10.0, 15.0 ], @@ -79,6 +79,7 @@ } } }, + "minecraft:hoglin_baby": { "minecraft:type_family": { "family": [ "hoglin", "hoglin_baby", "mob" ] @@ -150,6 +151,7 @@ "speed_multiplier": 1 } }, + "minecraft:hoglin_adult": { "minecraft:collision_box": { "width": 1.4, @@ -189,7 +191,7 @@ "minecraft:on_target_acquired": { "event": "become_angry_event", "target": "self" - }, + }, "minecraft:loot": { "table": "loot_tables/entities/hoglin.json" }, @@ -225,11 +227,13 @@ "breed_items": [ "crimson_fungus" ] } }, + "unhuntable_adult": { "minecraft:type_family": { "family": [ "hoglin", "hoglin_adult", "mob" ] } }, + "huntable_adult": { "minecraft:type_family": { "family": [ "hoglin", "hoglin_adult", "hoglin_huntable", "mob" ] @@ -260,16 +264,8 @@ { "filters": { "all_of": [ - { - "test": "is_family", - "subject": "other", - "value": "player" - }, - { - "test": "has_component", - "subject": "self", - "operator": "!=", - "value": "minecraft:attack_cooldown" + { "test": "is_family", "subject": "other", "value": "player" }, + { "test": "has_component", "subject": "self", "operator": "!=", "value": "minecraft:attack_cooldown" } ] }, @@ -286,10 +282,7 @@ "damage_conditions": [ { "filters": { - "test": "in_lava", - "subject": "self", - "operator": "==", - "value": true + "test": "in_lava", "subject": "self", "operator": "==", "value": true }, "cause": "lava", "damage_per_tick": 4 @@ -303,16 +296,8 @@ { "filters": { "all_of": [ - { - "test": "has_target", - "subject": "other", - "value": true - }, - { - "test": "is_family", - "subject": "other", - "value": "piglin" - } + { "test": "has_target", "subject": "other", "value": true }, + { "test": "is_family", "subject": "other", "value": "piglin" } ] }, "check_if_outnumbered": true, diff --git a/behavior_pack/entities/horse.json b/behavior_pack/entities/horse.json index 84535745a..b42ffb96d 100644 --- a/behavior_pack/entities/horse.json +++ b/behavior_pack/entities/horse.json @@ -1,12 +1,11 @@ { - "format_version": "1.16.0", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:horse", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { @@ -196,7 +195,7 @@ }, "target": "self" }, - "equip_item_slot": 1, + "equip_item_slot": "1", "interact_text": "action.interact.equiphorsearmor" }, { @@ -212,7 +211,7 @@ }, "target": "self" }, - "equip_item_slot": 0, + "equip_item_slot": "0", "interact_text": "action.interact.saddle" } ] @@ -257,10 +256,11 @@ "variant": 0.111 // ~1/9 }, "mutation_strategy": "random", - "random_variant_mutation_interval": [0, 7], - "random_extra_variant_mutation_interval": [0, 5] + "random_variant_mutation_interval": [ 0, 7 ], + "random_extra_variant_mutation_interval": [ 0, 5 ] } }, + "minecraft:horse_saddled": { "minecraft:is_saddled": { }, @@ -277,56 +277,67 @@ "value": 0 } }, + "minecraft:base_creamy": { "minecraft:variant": { "value": 1 } }, + "minecraft:base_chestnut": { "minecraft:variant": { "value": 2 } }, + "minecraft:base_brown": { "minecraft:variant": { "value": 3 } }, + "minecraft:base_black": { "minecraft:variant": { "value": 4 } }, + "minecraft:base_gray": { "minecraft:variant": { "value": 5 } }, + "minecraft:base_darkbrown": { "minecraft:variant": { "value": 6 } }, + "minecraft:markings_none": { "minecraft:mark_variant": { "value": 0 } }, + "minecraft:markings_white_details": { "minecraft:mark_variant": { "value": 1 } }, + "minecraft:markings_white_fields": { "minecraft:mark_variant": { "value": 2 } }, + "minecraft:markings_white_dots": { "minecraft:mark_variant": { "value": 3 } }, + "minecraft:markings_black_dots": { "minecraft:mark_variant": { "value": 4 @@ -620,6 +631,15 @@ } }, + "minecraft:spawn_tame_adult": { + "add": { + "component_groups": [ + "minecraft:horse_adult", + "minecraft:horse_tamed" + ] + } + }, + "minecraft:on_tame": { "remove": { "component_groups": [ @@ -667,31 +687,37 @@ "component_groups": [ "minecraft:base_white" ] } }, + "minecraft:make_creamy": { "add": { "component_groups": [ "minecraft:base_creamy" ] } }, + "minecraft:make_chestnut": { "add": { "component_groups": [ "minecraft:base_chestnut" ] } }, + "minecraft:make_brown": { "add": { "component_groups": [ "minecraft:base_brown" ] } }, + "minecraft:make_black": { "add": { "component_groups": [ "minecraft:base_black" ] } }, + "minecraft:make_gray": { "add": { "component_groups": [ "minecraft:base_gray" ] } }, + "minecraft:make_darkbrown": { "add": { "component_groups": [ "minecraft:base_darkbrown" ] diff --git a/behavior_pack/entities/husk.json b/behavior_pack/entities/husk.json index 5de44628a..64a52e41e 100644 --- a/behavior_pack/entities/husk.json +++ b/behavior_pack/entities/husk.json @@ -1,12 +1,11 @@ { - "format_version": "1.20.10", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:husk", "spawn_category": "monster", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { @@ -453,7 +452,17 @@ "priority": 9 }, "minecraft:behavior.hurt_by_target": { - "priority": 1 + "priority": 1, + "entity_types": [ + { + "filters": { + "test": "is_family", + "subject": "other", + "operator": "!=", + "value": "breeze" + } + } + ] }, "minecraft:behavior.nearest_attackable_target": { "priority": 2, diff --git a/behavior_pack/entities/iron_golem.json b/behavior_pack/entities/iron_golem.json index bc787c3c7..a9963f8c2 100644 --- a/behavior_pack/entities/iron_golem.json +++ b/behavior_pack/entities/iron_golem.json @@ -164,7 +164,13 @@ "stonebrick", "sandstone", "mossy_cobblestone", - "stone_slab", + "smooth_stone_slab", + "sandstone_slab", + "cobblestone_slab", + "brick_slab", + "stone_brick_slab", + "quartz_slab", + "nether_brick_slab", "stone_slab2", "stone_slab3", "stone_slab4", diff --git a/behavior_pack/entities/llama.json b/behavior_pack/entities/llama.json index 2dd8ec8f9..2689ee707 100644 --- a/behavior_pack/entities/llama.json +++ b/behavior_pack/entities/llama.json @@ -1,12 +1,11 @@ { - "format_version": "1.19.0", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:llama", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { @@ -33,7 +32,6 @@ "target": "self" } }, - "minecraft:behavior.follow_parent": { "priority": 5, "speed_multiplier": 1.0 @@ -76,24 +74,28 @@ "max": 5 } }, + "minecraft:strength_2": { "minecraft:strength": { "value": 2, "max": 5 } }, + "minecraft:strength_3": { "minecraft:strength": { "value": 3, "max": 5 } }, + "minecraft:strength_4": { "minecraft:strength": { "value": 4, "max": 5 } }, + "minecraft:strength_5": { "minecraft:strength": { "value": 5, @@ -106,16 +108,19 @@ "value": 0 } }, + "minecraft:llama_white": { "minecraft:variant": { "value": 1 } }, + "minecraft:llama_brown": { "minecraft:variant": { "value": 2 } }, + "minecraft:llama_gray": { "minecraft:variant": { "value": 3 @@ -132,7 +137,6 @@ "seats": { "position": [ 0.0, 1.17, -0.3 ] } - }, "minecraft:tamemount": { "min_temper": 0, @@ -156,7 +160,6 @@ } }, - "minecraft:llama_tamed": { "minecraft:is_tamed": { }, @@ -170,7 +173,6 @@ "seats": { "position": [ 0.0, 1.17, -0.3 ] } - }, "minecraft:inventory": { "inventory_size": 16, @@ -219,7 +221,7 @@ }, "target": "self" }, - "equip_item_slot": 0, + "equip_item_slot": "0", "interact_text": "action.interact.equipcarpet" } ] @@ -244,7 +246,7 @@ }, "target": "self" }, - "equip_item_slot": 0, + "equip_item_slot": "0", "interact_text": "action.interact.equipcarpet" } ] @@ -267,6 +269,7 @@ "charge_charged_trigger": 1 } }, + "minecraft:llama_angry_wolf": { "minecraft:angry": { "duration": -1, @@ -283,6 +286,7 @@ "charge_charged_trigger": 1 } }, + "minecraft:in_caravan": { "minecraft:damage_sensor": { "triggers": { @@ -291,10 +295,8 @@ } } } - }, - "components": { "minecraft:is_hidden_when_invisible": { }, @@ -320,10 +322,7 @@ "damage_conditions": [ { "filters": { - "test": "in_lava", - "subject": "self", - "operator": "==", - "value": true + "test": "in_lava", "subject": "self" }, "cause": "lava", "damage_per_tick": 4 @@ -431,8 +430,7 @@ "deals_damage": true, "on_damage": { "filters": { - "test": "in_caravan", - "value": false + "test": "in_caravan", "value": false }, "event": "minecraft:become_angry" } @@ -445,17 +443,8 @@ { "filters": { "all_of": [ - { - "test": "is_family", - "subject": "other", - "value": "wolf" - }, - { - "test": "has_component", - "subject": "other", - "operator": "!=", - "value": "minecraft:is_tamed" - } + { "test": "is_family", "subject": "other", "value": "wolf" }, + { "test": "has_component", "subject": "other", "operator": "!=", "value": "minecraft:is_tamed" } ] }, "max_dist": 10 @@ -467,17 +456,8 @@ "minecraft:on_target_acquired": { "filters": { "all_of": [ - { - "test": "is_family", - "subject": "target", - "value": "wolf" - }, - { - "test": "has_component", - "subject": "target", - "operator": "!=", - "value": "minecraft:is_tamed" - } + { "test": "is_family", "subject": "target", "value": "wolf" }, + { "test": "has_component", "subject": "target", "operator": "!=", "value": "minecraft:is_tamed" } ] }, "event": "minecraft:mad_at_wolf", @@ -486,17 +466,8 @@ "minecraft:on_target_escape": { "filters": { "all_of": [ - { - "test": "is_family", - "subject": "target", - "value": "wolf" - }, - { - "test": "has_component", - "subject": "target", - "operator": "!=", - "value": "minecraft:is_tamed" - } + { "test": "is_family", "subject": "target", "value": "wolf" }, + { "test": "has_component", "subject": "target", "operator": "!=", "value": "minecraft:is_tamed" } ] }, "event": "minecraft:on_calm", @@ -514,7 +485,6 @@ } }, - "events": { "minecraft:entity_spawned": { "sequence": [ @@ -568,6 +538,7 @@ ] } }, + "minecraft:join_caravan": { "add": { "component_groups": [ @@ -575,6 +546,7 @@ ] } }, + "minecraft:leave_caravan": { "remove": { "component_groups": [ @@ -582,6 +554,7 @@ ] } }, + "minecraft:mad_at_wolf": { "add": { "component_groups": [ @@ -589,6 +562,7 @@ ] } }, + "minecraft:become_angry": { "add": { "component_groups": [ @@ -596,6 +570,7 @@ ] } }, + "minecraft:on_calm": { "remove": { "component_groups": [ @@ -720,6 +695,17 @@ ] }, "trigger": "minecraft:add_attributes" + }, + + "minecraft:spawn_tame_adult": { + "add": { + "component_groups": [ + "minecraft:llama_adult", + "minecraft:llama_tamed", + "minecraft:llama_unchested" + ] + }, + "trigger": "minecraft:add_attributes" } } } diff --git a/behavior_pack/entities/mooshroom.json b/behavior_pack/entities/mooshroom.json index c05fc9687..bc423f261 100644 --- a/behavior_pack/entities/mooshroom.json +++ b/behavior_pack/entities/mooshroom.json @@ -1,12 +1,11 @@ { - "format_version": "1.16.0", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:mooshroom", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { @@ -418,7 +417,7 @@ "value": 10 } }, - + "minecraft:mooshroom_red": { "minecraft:variant": { "value": 0 diff --git a/behavior_pack/entities/mule.json b/behavior_pack/entities/mule.json index 0ce2420e5..cbc59f644 100644 --- a/behavior_pack/entities/mule.json +++ b/behavior_pack/entities/mule.json @@ -1,12 +1,11 @@ { - "format_version": "1.16.0", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:mule", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { @@ -212,7 +211,7 @@ }, "target": "self" }, - "equip_item_slot": 0, + "equip_item_slot": "0", "interact_text": "action.interact.saddle" } ] @@ -237,7 +236,7 @@ }, "target": "self" }, - "equip_item_slot": 0, + "equip_item_slot": "0", "interact_text": "action.interact.saddle" } ] diff --git a/behavior_pack/entities/ocelot.json b/behavior_pack/entities/ocelot.json index bd20f1d8a..60f283d94 100644 --- a/behavior_pack/entities/ocelot.json +++ b/behavior_pack/entities/ocelot.json @@ -1,12 +1,11 @@ { - "format_version": "1.18.20", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:ocelot", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { @@ -224,26 +223,15 @@ "entity_types": [ { "filters": { - "test": "is_family", - "subject": "other", - "value": "chicken" + "test": "is_family", "subject": "other", "value": "chicken" }, "max_dist": 8 }, { "filters": { "all_of": [ - { - "test": "is_family", - "subject": "other", - "value": "baby_turtle" - }, - { - "test": "in_water", - "subject": "other", - "operator": "!=", - "value": true - } + { "test": "is_family", "subject": "other", "value": "baby_turtle" }, + { "test": "in_water", "subject": "other", "operator": "!=", "value": true } ] }, "max_dist": 8 diff --git a/behavior_pack/entities/ominous_item_spawner.json b/behavior_pack/entities/ominous_item_spawner.json new file mode 100644 index 000000000..ea69870a1 --- /dev/null +++ b/behavior_pack/entities/ominous_item_spawner.json @@ -0,0 +1,10 @@ +{ + "format_version": "1.21.0", + "minecraft:entity": { + "description": { + "identifier": "minecraft:ominous_item_spawner", + "is_spawnable": false, + "is_summonable": false + } + } +} diff --git a/behavior_pack/entities/panda.json b/behavior_pack/entities/panda.json index 29672257e..b49eded3b 100644 --- a/behavior_pack/entities/panda.json +++ b/behavior_pack/entities/panda.json @@ -1,12 +1,11 @@ { - "format_version": "1.18.10", + "format_version": "1.21.10", "minecraft:entity": { "description": { "identifier": "minecraft:panda", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { "minecraft:panda_baby": { @@ -44,28 +43,10 @@ { "filters": { "all_of": [ - { - "test": "has_component", - "subject": "other", - "operator": "!=", - "value": "minecraft:is_baby" - }, - { - "test": "is_family", - "subject": "other", - "value": "panda" - }, - { - "test": "in_water", - "subject": "other", - "operator": "!=", - "value": true - }, - { - "test": "on_ground", - "operator": "==", - "value": true - } + { "test": "has_component", "subject": "other", "operator": "!=", "value": "minecraft:is_baby" }, + { "test": "is_family", "subject": "other", "value": "panda" }, + { "test": "in_water", "subject": "other", "operator": "!=", "value": true }, + { "test": "on_ground", "operator": "==", "value": true } ] }, "max_dist": 10 @@ -318,7 +299,6 @@ } }, - "components": { "minecraft:is_hidden_when_invisible": { }, diff --git a/behavior_pack/entities/parrot.json b/behavior_pack/entities/parrot.json index 7b58e5fb5..fff2798ea 100644 --- a/behavior_pack/entities/parrot.json +++ b/behavior_pack/entities/parrot.json @@ -1,12 +1,11 @@ { - "format_version": "1.19.0", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:parrot", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { @@ -99,25 +98,19 @@ }, "minecraft:parrot_not_riding_player": { "minecraft:entity_sensor": { - "sensor_range": 2.0, "relative_range": false, - "event_filters": { - "all_of": [ - { - "test": "is_riding", - "subject": "self", - "operator": "equals", - "value": true + "subsensors": [ + { + "range": [ 2.0, 2.0 ], + "event_filters": { + "all_of": [ + { "test": "is_riding", "subject": "self", "operator": "equals", "value": true }, + { "test": "has_component", "subject": "self", "operator": "equals", "value": "minecraft:behavior.look_at_player" } + ] }, - { - "test": "has_component", - "subject": "self", - "operator": "equals", - "value": "minecraft:behavior.look_at_player" - } - ] - }, - "event": "minecraft:on_riding_player" + "event": "minecraft:on_riding_player" + } + ] }, "minecraft:behavior.look_at_player": { "priority": 1, @@ -126,25 +119,19 @@ }, "minecraft:parrot_riding_player": { "minecraft:entity_sensor": { - "sensor_range": 2.0, "relative_range": false, - "event_filters": { - "all_of": [ - { - "test": "is_riding", - "subject": "self", - "operator": "equals", - "value": false + "subsensors": [ + { + "range": [ 2.0, 2.0 ], + "event_filters": { + "all_of": [ + { "test": "is_riding", "subject": "self", "operator": "equals", "value": false }, + { "test": "has_component", "subject": "self", "operator": "not", "value": "minecraft:behavior.look_at_player" } + ] }, - { - "test": "has_component", - "subject": "self", - "operator": "not", - "value": "minecraft:behavior.look_at_player" - } - ] - }, - "event": "minecraft:on_not_riding_player" + "event": "minecraft:on_not_riding_player" + } + ] } } }, @@ -170,10 +157,7 @@ "damage_conditions": [ { "filters": { - "test": "in_lava", - "subject": "self", - "operator": "==", - "value": true + "test": "in_lava", "subject": "self", "operator": "==", "value": true }, "cause": "lava", "damage_per_tick": 4 diff --git a/behavior_pack/entities/pig.json b/behavior_pack/entities/pig.json index e3f772a7d..339fab9e4 100644 --- a/behavior_pack/entities/pig.json +++ b/behavior_pack/entities/pig.json @@ -1,12 +1,11 @@ { - "format_version": "1.20.0", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:pig", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { "minecraft:pig_baby": { @@ -125,7 +124,6 @@ } }, - "components": { "minecraft:is_hidden_when_invisible": { }, @@ -246,7 +244,6 @@ } }, - "events": { "become_zombie": { "remove": { @@ -276,7 +273,6 @@ } ] }, - "minecraft:entity_born": { "remove": { }, @@ -286,7 +282,6 @@ ] } }, - "minecraft:ageable_grow_up": { "remove": { "component_groups": [ @@ -300,7 +295,6 @@ ] } }, - "minecraft:on_saddled": { "remove": { "component_groups": [ diff --git a/behavior_pack/entities/piglin.json b/behavior_pack/entities/piglin.json index 0a1823df2..ab95b0b86 100644 --- a/behavior_pack/entities/piglin.json +++ b/behavior_pack/entities/piglin.json @@ -1,12 +1,11 @@ { - "format_version": "1.16.0", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:piglin", "spawn_category": "monster", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { @@ -14,10 +13,7 @@ "minecraft:environment_sensor": { "triggers": { "filters": { - "test": "in_nether", - "subject": "self", - "operator": "==", - "value": false + "test": "in_nether", "subject": "self", "operator": "==", "value": false }, "event": "start_zombification_event" } @@ -49,7 +45,7 @@ "become_zombie": { "minecraft:transformation": { "into": "minecraft:zombie_pigman", - "transformation_sound" : "converted_to_zombified", + "transformation_sound": "converted_to_zombified", "keep_level": true, "drop_inventory": true, "preserve_equipment": true @@ -116,18 +112,8 @@ }, "filters": { "all_of": [ - { - "test": "is_family", - "subject": "other", - "operator": "!=", - "value": "piglin" - }, - { - "test": "has_component", - "subject": "self", - "operator": "!=", - "value": "minecraft:attack_cooldown" - } + { "test": "is_family", "subject": "other", "operator": "!=", "value": "piglin" }, + { "test": "has_component", "subject": "self", "operator": "!=", "value": "minecraft:attack_cooldown" } ] }, "angry_sound": "angry", @@ -299,11 +285,7 @@ { "filters": { "any_of": [ - { - "test": "is_family", - "subject": "other", - "value": "wither" - } + { "test": "is_family", "subject": "other", "value": "wither" } ] }, "max_dist": 16 @@ -311,28 +293,10 @@ { "filters": { "all_of": [ - { - "test": "is_family", - "subject": "self", - "value": "piglin_hunter" - }, - { - "test": "is_family", - "subject": "other", - "value": "hoglin_huntable" - }, - { - "test": "has_component", - "subject": "other", - "operator": "!=", - "value": "minecraft:is_baby" - }, - { - "test": "has_component", - "subject": "self", - "operator": "!=", - "value": "minecraft:attack_cooldown" - } + { "test": "is_family", "subject": "self", "value": "piglin_hunter" }, + { "test": "is_family", "subject": "other", "value": "hoglin_huntable" }, + { "test": "has_component", "subject": "other", "operator": "!=", "value": "minecraft:is_baby" }, + { "test": "has_component", "subject": "self", "operator": "!=", "value": "minecraft:attack_cooldown" } ] }, "max_dist": 16 @@ -340,39 +304,11 @@ { "filters": { "all_of": [ - { - "test": "is_family", - "subject": "other", - "value": "player" - }, - { - "test": "has_equipment", - "subject": "other", - "domain": "head", - "operator": "!=", - "value": "golden_helmet" - }, - { - "test": "has_equipment", - "subject": "other", - "domain": "torso", - "operator": "!=", - "value": "golden_chestplate" - }, - { - "test": "has_equipment", - "subject": "other", - "domain": "leg", - "operator": "!=", - "value": "golden_leggings" - }, - { - "test": "has_equipment", - "subject": "other", - "domain": "feet", - "operator": "!=", - "value": "golden_boots" - } + { "test": "is_family", "subject": "other", "value": "player" }, + { "test": "has_equipment", "subject": "other", "domain": "head", "operator": "!=", "value": "golden_helmet" }, + { "test": "has_equipment", "subject": "other", "domain": "torso", "operator": "!=", "value": "golden_chestplate" }, + { "test": "has_equipment", "subject": "other", "domain": "leg", "operator": "!=", "value": "golden_leggings" }, + { "test": "has_equipment", "subject": "other", "domain": "feet", "operator": "!=", "value": "golden_boots" } ] }, "max_dist": 16, @@ -381,12 +317,7 @@ { "filters": { "any_of": [ - { - "test": "has_container_open", - "subject": "other", - "operator": "==", - "value": true - } + { "test": "has_container_open", "subject": "other", "operator": "==", "value": true } ] }, "max_dist": 16 @@ -402,9 +333,7 @@ "entity_types": [ { "filters": { - "test": "is_family", - "subject": "other", - "value": "player" + "test": "is_family", "subject": "other", "value": "player" }, "max_dist": 16 } @@ -456,10 +385,7 @@ "damage_conditions": [ { "filters": { - "test": "in_lava", - "subject": "self", - "operator": "==", - "value": true + "test": "in_lava", "subject": "self", "operator": "==", "value": true }, "cause": "lava", "damage_per_tick": 4 @@ -515,11 +441,7 @@ { "filters": { "any_of": [ - { - "test": "is_family", - "subject": "other", - "value": "zombie_pigman" - } + { "test": "is_family", "subject": "other", "value": "zombie_pigman" } ] }, "max_dist": 6 @@ -527,11 +449,7 @@ { "filters": { "any_of": [ - { - "test": "is_family", - "subject": "other", - "value": "zoglin" - } + { "test": "is_family", "subject": "other", "value": "zoglin" } ] }, "max_dist": 6 @@ -539,16 +457,8 @@ { "filters": { "all_of": [ - { - "test": "has_target", - "subject": "other", - "value": true - }, - { - "test": "is_family", - "subject": "other", - "value": "hoglin" - } + { "test": "has_target", "subject": "other", "value": true }, + { "test": "is_family", "subject": "other", "value": "hoglin" } ] }, "sprint_speed_multiplier": 1.2, diff --git a/behavior_pack/entities/pillager.json b/behavior_pack/entities/pillager.json index 8632edd7c..8b97e4bc7 100644 --- a/behavior_pack/entities/pillager.json +++ b/behavior_pack/entities/pillager.json @@ -1,12 +1,11 @@ { - "format_version": "1.16.0", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:pillager", "spawn_category": "monster", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { @@ -113,26 +112,8 @@ } ] }, - "minecraft:damage_sensor": { - "triggers": { - "on_damage": { - "filters": { - "all_of": [ - { - "test": "has_damage", - "value": "fatal" - }, - { - "test": "is_family", - "subject": "other", - "value": "player" - } - ] - }, - "event": "minecraft:gain_bad_omen", - "target": "other" - } - } + "minecraft:loot": { + "table": "loot_tables/entities/pillager_captain.json" }, "minecraft:on_hurt": { "event": "minecraft:ranged_mode", @@ -158,26 +139,8 @@ } ] }, - "minecraft:damage_sensor": { - "triggers": { - "on_damage": { - "filters": { - "all_of": [ - { - "test": "has_damage", - "value": "fatal" - }, - { - "test": "is_family", - "subject": "other", - "value": "player" - } - ] - }, - "event": "minecraft:gain_bad_omen", - "target": "other" - } - } + "minecraft:loot": { + "table": "loot_tables/entities/pillager_captain.json" }, "minecraft:on_hurt": { "event": "minecraft:ranged_mode", diff --git a/behavior_pack/entities/player.json b/behavior_pack/entities/player.json index a33b2b078..3cfa94e55 100644 --- a/behavior_pack/entities/player.json +++ b/behavior_pack/entities/player.json @@ -1,36 +1,35 @@ { - "format_version": "1.18.20", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:player", "spawn_category": "creature", "is_spawnable": false, - "is_summonable": false, - "is_experimental": false + "is_summonable": false }, "component_groups": { - "minecraft:add_bad_omen": { + "minecraft:add_raid_omen": { "minecraft:spell_effects": { "add_effects": [ { - "effect": "bad_omen", - "duration": 6000, - "visible": false, + "effect": "raid_omen", + "duration": 30, "display_on_screen_animation": true } - ] + ], + "remove_effects": "bad_omen" }, "minecraft:timer": { "time": [ 0.0, 0.0 ], "looping": false, "time_down_event": { - "event": "minecraft:clear_add_bad_omen", + "event": "minecraft:clear_add_raid_omen", "target": "self" } } }, - "minecraft:clear_bad_omen_spell_effect": { + "minecraft:clear_raid_omen_spell_effect": { "minecraft:spell_effects": { } }, @@ -40,9 +39,6 @@ "event": "minecraft:remove_raid_trigger", "target": "self" } - }, - "minecraft:spell_effects": { - "remove_effects": "bad_omen" } } }, @@ -172,28 +168,28 @@ } ] }, - "event": "minecraft:trigger_raid" + "event": "minecraft:gain_raid_omen" } } }, "events": { - "minecraft:gain_bad_omen": { + "minecraft:gain_raid_omen": { "add": { "component_groups": [ - "minecraft:add_bad_omen" + "minecraft:add_raid_omen" ] } }, - "minecraft:clear_add_bad_omen": { + "minecraft:clear_add_raid_omen": { "remove": { "component_groups": [ - "minecraft:add_bad_omen" + "minecraft:add_raid_omen" ] }, "add": { "component_groups": [ - "minecraft:clear_bad_omen_spell_effect" + "minecraft:clear_raid_omen_spell_effect" ] } }, diff --git a/behavior_pack/entities/polar_bear.json b/behavior_pack/entities/polar_bear.json index fb8054fb4..3eb6c0e3a 100644 --- a/behavior_pack/entities/polar_bear.json +++ b/behavior_pack/entities/polar_bear.json @@ -1,12 +1,11 @@ { - "format_version": "1.18.10", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:polar_bear", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { @@ -23,7 +22,6 @@ "target": "self" } }, - "minecraft:behavior.follow_parent": { "priority": 4, "speed_multiplier": 1.25 @@ -81,9 +79,7 @@ "entity_types": [ { "filters": { - "test": "is_family", - "subject": "other", - "value": "fox" + "test": "is_family", "subject": "other", "value": "fox" }, "max_dist": 16 } diff --git a/behavior_pack/entities/rabbit.json b/behavior_pack/entities/rabbit.json index deca67106..da9c35f09 100644 --- a/behavior_pack/entities/rabbit.json +++ b/behavior_pack/entities/rabbit.json @@ -1,12 +1,11 @@ { - "format_version": "1.17.20", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:rabbit", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { diff --git a/behavior_pack/entities/sheep.json b/behavior_pack/entities/sheep.json index 98c15e4cd..3c6e29666 100644 --- a/behavior_pack/entities/sheep.json +++ b/behavior_pack/entities/sheep.json @@ -1,12 +1,11 @@ { - "format_version": "1.16.0", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:sheep", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { "minecraft:loot_sheared": { @@ -187,26 +186,10 @@ "on_interact": { "filters": { "all_of": [ - { - "test": "has_equipment", - "subject": "other", - "domain": "hand", - "value": "shears" - }, - { - "test": "is_family", - "subject": "other", - "value": "player" - }, - { - "test": "has_component", - "operator": "!=", - "value": "minecraft:is_baby" - }, - { - "test": "has_component", - "value": "minecraft:is_dyeable" - } + { "test": "has_equipment", "subject": "other", "domain": "hand", "value": "shears" }, + { "test": "is_family", "subject": "other", "value": "player" }, + { "test": "has_component", "operator": "!=", "value": "minecraft:is_baby" }, + { "test": "has_component", "value": "minecraft:is_dyeable" } ] }, "event": "minecraft:on_sheared", @@ -440,9 +423,7 @@ { "filters": { "subject": "self", - "test": "has_component", - "operator": "!=", - "value": "minecraft:is_baby" + "test": "has_component", "operator": "!=", "value": "minecraft:is_baby" }, "add": { "component_groups": [ diff --git a/behavior_pack/entities/silverfish.json b/behavior_pack/entities/silverfish.json index 28ccdc920..7329e638d 100644 --- a/behavior_pack/entities/silverfish.json +++ b/behavior_pack/entities/silverfish.json @@ -1,12 +1,11 @@ { - "format_version": "1.17.10", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:silverfish", "spawn_category": "monster", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { @@ -124,6 +123,9 @@ "minecraft:conditional_bandwidth_optimization": { }, "minecraft:block_climber": { + }, + "minecraft:mob_effect_immunity": { + "mob_effects": [ "infested" ] } }, "events": { @@ -158,4 +160,4 @@ } } } -} \ No newline at end of file +} diff --git a/behavior_pack/entities/skeleton.json b/behavior_pack/entities/skeleton.json index 2dbdbef95..8cc553303 100644 --- a/behavior_pack/entities/skeleton.json +++ b/behavior_pack/entities/skeleton.json @@ -1,12 +1,11 @@ { - "format_version": "1.18.20", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:skeleton", "spawn_category": "monster", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { "in_powder_snow": { @@ -502,7 +501,17 @@ "attack_radius": 15.0 }, "minecraft:behavior.hurt_by_target": { - "priority": 1 + "priority": 1, + "entity_types": [ + { + "filters": { + "test": "is_family", + "subject": "other", + "operator": "!=", + "value": "breeze" + } + } + ] }, "minecraft:behavior.nearest_attackable_target": { "priority": 2, diff --git a/behavior_pack/entities/skeleton_horse.json b/behavior_pack/entities/skeleton_horse.json index 166a38aaf..d9a52ee5c 100644 --- a/behavior_pack/entities/skeleton_horse.json +++ b/behavior_pack/entities/skeleton_horse.json @@ -1,12 +1,11 @@ { - "format_version": "1.16.0", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:skeleton_horse", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { "minecraft:skeleton_horse_r5_upgrade": { @@ -70,9 +69,7 @@ "triggers": { "on_damage": { "filters": { - "test": "is_family", - "subject": "other", - "value": "lightning" + "test": "is_family", "subject": "other", "value": "lightning" } }, "deals_damage": false @@ -225,4 +222,4 @@ } } } -} \ No newline at end of file +} diff --git a/behavior_pack/entities/slime.json b/behavior_pack/entities/slime.json index 8f79ef64e..ed0826261 100644 --- a/behavior_pack/entities/slime.json +++ b/behavior_pack/entities/slime.json @@ -1,12 +1,11 @@ { - "format_version": "1.19.50", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:slime", "spawn_category": "monster", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { "minecraft:slime_large": { @@ -213,6 +212,9 @@ "is_pushable_by_piston": true }, "minecraft:conditional_bandwidth_optimization": { + }, + "minecraft:mob_effect_immunity": { + "mob_effects": [ "oozing" ] } }, @@ -273,4 +275,4 @@ } } } -} \ No newline at end of file +} diff --git a/behavior_pack/entities/sniffer.json b/behavior_pack/entities/sniffer.json index 9ee64511f..7cd6b11e4 100644 --- a/behavior_pack/entities/sniffer.json +++ b/behavior_pack/entities/sniffer.json @@ -1,12 +1,11 @@ { - "format_version": "1.16.0", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:sniffer", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { "sniffer_baby": { diff --git a/behavior_pack/entities/spider.json b/behavior_pack/entities/spider.json index b8e8e4bc3..fbbcd757f 100644 --- a/behavior_pack/entities/spider.json +++ b/behavior_pack/entities/spider.json @@ -1,5 +1,5 @@ { - "format_version": "1.20.80", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:spider", @@ -216,7 +216,17 @@ "priority": 7 }, "minecraft:behavior.hurt_by_target": { - "priority": 1 + "priority": 1, + "entity_types": [ + { + "filters": { + "test": "is_family", + "subject": "other", + "operator": "!=", + "value": "breeze" + } + } + ] }, "minecraft:rideable": { "seat_count": 1, diff --git a/behavior_pack/entities/stray.json b/behavior_pack/entities/stray.json index 924e44e39..481125c95 100644 --- a/behavior_pack/entities/stray.json +++ b/behavior_pack/entities/stray.json @@ -1,12 +1,11 @@ { - "format_version": "1.16.0", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:stray", "spawn_category": "monster", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { @@ -396,7 +395,17 @@ "attack_radius": 15.0 }, "minecraft:behavior.hurt_by_target": { - "priority": 1 + "priority": 1, + "entity_types": [ + { + "filters": { + "test": "is_family", + "subject": "other", + "operator": "!=", + "value": "breeze" + } + } + ] }, "minecraft:behavior.nearest_attackable_target": { "priority": 2, diff --git a/behavior_pack/entities/strider.json b/behavior_pack/entities/strider.json index 7f0f2caba..24f96f4d7 100644 --- a/behavior_pack/entities/strider.json +++ b/behavior_pack/entities/strider.json @@ -1,12 +1,11 @@ { - "format_version": "1.20.0", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:strider", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { "minecraft:strider_saddled": { @@ -52,10 +51,7 @@ { "on_interact": { "filters": { - "test": "has_equipment", - "subject": "other", - "domain": "hand", - "value": "saddle" + "test": "has_equipment", "subject": "other", "domain": "hand", "value": "saddle" }, "event": "minecraft:on_saddled" }, @@ -157,18 +153,8 @@ { "filters": { "any_of": [ - { - "test": "in_lava", - "subject": "self", - "operator": "==", - "value": true - }, - { - "test": "in_lava", - "subject": "other", - "operator": "==", - "value": true - } + { "test": "in_lava", "subject": "self", "operator": "==", "value": true }, + { "test": "in_lava", "subject": "other", "operator": "==", "value": true } ] }, "event": "stop_suffocating" @@ -176,18 +162,8 @@ { "filters": { "all_of": [ - { - "test": "is_riding", - "subject": "self", - "operator": "equals", - "value": false - }, - { - "test": "has_component", - "subject": "self", - "operator": "not", - "value": "minecraft:behavior.move_to_liquid" - } + { "test": "is_riding", "subject": "self", "operator": "equals", "value": false }, + { "test": "has_component", "subject": "self", "operator": "not", "value": "minecraft:behavior.move_to_liquid" } ] }, "event": "on_not_riding_parent" @@ -202,26 +178,11 @@ { "filters": { "all_of": [ - { - "test": "in_lava", - "subject": "self", - "operator": "==", - "value": false - }, + { "test": "in_lava", "subject": "self", "operator": "==", "value": false }, { "any_of": [ - { - "test": "is_riding", - "subject": "self", - "operator": "==", - "value": false - }, - { - "test": "in_lava", - "subject": "other", - "operator": "==", - "value": false - } + { "test": "is_riding", "subject": "self", "operator": "==", "value": false }, + { "test": "in_lava", "subject": "other", "operator": "==", "value": false } ] } ] @@ -231,18 +192,8 @@ { "filters": { "all_of": [ - { - "test": "is_riding", - "subject": "self", - "operator": "equals", - "value": false - }, - { - "test": "has_component", - "subject": "self", - "operator": "not", - "value": "minecraft:behavior.move_to_liquid" - } + { "test": "is_riding", "subject": "self", "operator": "equals", "value": false }, + { "test": "has_component", "subject": "self", "operator": "not", "value": "minecraft:behavior.move_to_liquid" } ] }, "event": "on_not_riding_parent" @@ -291,9 +242,7 @@ "damage_conditions": [ { "filters": { - "test": "in_contact_with_water", - "operator": "==", - "value": true + "test": "in_contact_with_water", "operator": "==", "value": true }, "cause": "drowning", "damage_per_tick": 1 diff --git a/behavior_pack/entities/tadpole.json b/behavior_pack/entities/tadpole.json index 76fafc90a..0e8933cc8 100644 --- a/behavior_pack/entities/tadpole.json +++ b/behavior_pack/entities/tadpole.json @@ -1,12 +1,11 @@ { - "format_version": "1.16.0", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:tadpole", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { "grow_up": { @@ -42,10 +41,7 @@ "damage_conditions": [ { "filters": { - "test": "in_lava", - "subject": "self", - "operator": "==", - "value": true + "test": "in_lava", "subject": "self", "operator": "==", "value": true }, "cause": "lava", "damage_per_tick": 4 diff --git a/behavior_pack/entities/trader_llama.json b/behavior_pack/entities/trader_llama.json index f4430721e..f2413fd5f 100644 --- a/behavior_pack/entities/trader_llama.json +++ b/behavior_pack/entities/trader_llama.json @@ -1,12 +1,11 @@ { - "format_version": "1.13.0", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:trader_llama", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { "minecraft:llama_baby": { @@ -133,17 +132,8 @@ { "filters": { "all_of": [ - { - "test": "is_leashed", - "subject": "self", - "value": false - }, - { - "test": "has_component", - "subject": "self", - "operator": "!=", - "value": "minecraft:is_tamed" - } + { "test": "is_leashed", "subject": "self", "value": false }, + { "test": "has_component", "subject": "self", "operator": "!=", "value": "minecraft:is_tamed" } ] }, "event": "minecraft:on_tame" @@ -151,17 +141,8 @@ { "filters": { "all_of": [ - { - "test": "is_leashed", - "subject": "self", - "value": false - }, - { - "test": "has_component", - "subject": "self", - "operator": "==", - "value": "minecraft:persistent" - } + { "test": "is_leashed", "subject": "self", "value": false }, + { "test": "has_component", "subject": "self", "operator": "==", "value": "minecraft:persistent" } ] }, "event": "minecraft:remove_persistence" @@ -261,17 +242,8 @@ "on_interact": { "filters": { "all_of": [ - { - "test": "is_family", - "subject": "other", - "value": "player" - }, - { - "test": "has_equipment", - "domain": "hand", - "subject": "other", - "value": "chest" - } + { "test": "is_family", "subject": "other", "value": "player" }, + { "test": "has_equipment", "domain": "hand", "subject": "other", "value": "chest" } ] }, "event": "minecraft:on_chest", @@ -514,16 +486,8 @@ "on_damage": { "filters": { "all_of": [ - { - "test": "is_family", - "subject": "other", - "operator": "!=", - "value": "trader_llama" - }, - { - "test": "in_caravan", - "value": false - } + { "test": "is_family", "subject": "other", "operator": "!=", "value": "trader_llama" }, + { "test": "in_caravan", "value": false } ] }, "event": "minecraft:become_angry" @@ -533,17 +497,8 @@ "minecraft:on_target_acquired": { "filters": { "all_of": [ - { - "test": "is_family", - "subject": "target", - "value": "wolf" - }, - { - "test": "has_component", - "subject": "target", - "operator": "!=", - "value": "minecraft:is_tamed" - } + { "test": "is_family", "subject": "target", "value": "wolf" }, + { "test": "has_component", "subject": "target", "operator": "!=", "value": "minecraft:is_tamed" } ] }, "event": "minecraft:mad_at_wolf", @@ -552,17 +507,8 @@ "minecraft:on_target_escape": { "filters": { "all_of": [ - { - "test": "is_family", - "subject": "target", - "value": "wolf" - }, - { - "test": "has_component", - "subject": "target", - "operator": "!=", - "value": "minecraft:is_tamed" - } + { "test": "is_family", "subject": "target", "value": "wolf" }, + { "test": "has_component", "subject": "target", "operator": "!=", "value": "minecraft:is_tamed" } ] }, "event": "minecraft:on_calm", diff --git a/behavior_pack/entities/turtle.json b/behavior_pack/entities/turtle.json index d03dca938..e0f9fa8f6 100644 --- a/behavior_pack/entities/turtle.json +++ b/behavior_pack/entities/turtle.json @@ -1,12 +1,11 @@ { - "format_version": "1.18.20", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:turtle", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { diff --git a/behavior_pack/entities/villager.json b/behavior_pack/entities/villager.json index e44fa2c7d..be2a02611 100644 --- a/behavior_pack/entities/villager.json +++ b/behavior_pack/entities/villager.json @@ -1,11 +1,10 @@ { - "format_version": "1.19.60", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:villager", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { diff --git a/behavior_pack/entities/villager_v2.json b/behavior_pack/entities/villager_v2.json index 2b1f820df..06bd03a96 100644 --- a/behavior_pack/entities/villager_v2.json +++ b/behavior_pack/entities/villager_v2.json @@ -1,13 +1,11 @@ { - "format_version": "1.19.60", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:villager_v2", "is_spawnable": true, - "is_summonable": false, - "is_experimental": false + "is_summonable": false }, - "component_groups": { "minecraft:celebrate": { "minecraft:behavior.celebrate_survive": { @@ -45,7 +43,7 @@ "keep_level": true } }, - + "work_schedule": { "minecraft:scheduler": { "min_delay_secs": 0, @@ -396,9 +394,9 @@ ] } }, - - //every goal that has to do with villagers working should go here (work goals, secondary goals) - //so they can be successfuly removed on schedule change + + // Every goal that has to do with villagers working should go here (work goals, secondary goals) + // so they can be successfuly removed on schedule change "job_specific_goals": { "minecraft:behavior.inspect_bookshelf": {}, "minecraft:behavior.harvest_farm_block": {}, @@ -408,7 +406,7 @@ "minecraft:behavior.mingle": {}, "minecraft:behavior.sleep": {} }, - + "work_schedule_villager": { "minecraft:behavior.work": { "priority": 7, @@ -710,7 +708,7 @@ "minecraft:behavior.trade_interest": {}, "minecraft:economy_trade_table": {} }, - + "unskilled": { "minecraft:type_family": { "family": [ "villager", "peasant", "unskilled", "mob" ] @@ -1210,21 +1208,27 @@ "jump_cost" : 5, "default_block_cost" : 1.5, "preferred_path_blocks" : [ - { + { "cost" : 0, - "blocks" : [ + "blocks" : [ "grass_path" ] }, - { + { "cost" : 1, - "blocks" : [ - "cobblestone", + "blocks" : [ + "cobblestone", "stone", "stonebrick", "sandstone", "mossy_cobblestone", - "stone_slab", + "smooth_stone_slab", + "sandstone_slab", + "cobblestone_slab", + "brick_slab", + "stone_brick_slab", + "quartz_slab", + "nether_brick_slab", "stone_slab2", "stone_slab3", "stone_slab4", @@ -1282,9 +1286,9 @@ "black_glazed_terracotta" ] }, - { + { "cost" : 50, - "blocks" : [ + "blocks" : [ "bed", "lectern", "composter", @@ -1318,21 +1322,27 @@ "jump_cost" : 20, "default_block_cost" : 3, "preferred_path_blocks" : [ - { + { "cost" : 0, - "blocks" : [ + "blocks" : [ "grass_path" ] }, - { + { "cost" : 1, - "blocks" : [ - "cobblestone", + "blocks" : [ + "cobblestone", "stone", "stonebrick", "sandstone", "mossy_cobblestone", - "stone_slab", + "smooth_stone_slab", + "sandstone_slab", + "cobblestone_slab", + "brick_slab", + "stone_brick_slab", + "quartz_slab", + "nether_brick_slab", "stone_slab2", "stone_slab3", "stone_slab4", @@ -1390,9 +1400,9 @@ "black_glazed_terracotta" ] }, - { + { "cost" : 50, - "blocks" : [ + "blocks" : [ "bed", "lectern", "composter", @@ -1568,16 +1578,8 @@ { "on_damage": { "filters": [ - { - "test": "is_family", - "subject": "other", - "value": "lightning" - }, - { - "test": "is_difficulty", - "operator": "!=", - "value": "peaceful" - } + { "test": "is_family", "subject": "other", "value": "lightning" }, + { "test": "is_difficulty", "operator": "!=", "value": "peaceful" } ], "event": "become_witch" }, @@ -1636,7 +1638,7 @@ "priority": 4, "entity_types": [ { - "filters": { + "filters": { "any_of": [ { "test" : "is_family", "subject" : "other", "value" : "zombie"}, { "test" : "is_family", "subject" : "other", "value" : "zombie_villager"}, @@ -1995,7 +1997,7 @@ ] }, { - "filters": { + "filters": { "any_of": [ { "test": "has_biome_tag", "value": "desert" }, { "test": "has_biome_tag", "value": "mesa" } @@ -2014,7 +2016,7 @@ { "filters": { "any_of": [ - { + { "all_of": [ { "test": "has_biome_tag", "value": "cold" }, { "test": "has_biome_tag", "operator": "!=", "value": "ocean" } @@ -2067,7 +2069,7 @@ { // Transform to adult villager "filters": { "test": "has_component", "subject": "other", "operator": "!=", "value": "minecraft:is_baby" }, - "sequence": [ + "sequence": [ // Transform to adult villager { "add": { "component_groups": [ "adult", "make_and_receive_love" ] } @@ -2245,7 +2247,7 @@ { "filters": { "any_of": [ - { + { "all_of": [ { "test": "has_biome_tag", "value": "cold" }, { "test": "has_biome_tag", "operator": "!=", "value": "ocean" } @@ -2366,7 +2368,7 @@ } ] }, - + "minecraft:spawn_farmer": { "randomize": [ { @@ -2396,7 +2398,7 @@ } ] }, - + "minecraft:spawn_librarian": { "randomize": [ { @@ -2411,12 +2413,12 @@ } ] }, - + "minecraft:spawn_cleric": { "add": { "component_groups": [ "cleric", "adult", "make_and_receive_love", "behavior_non_peasant", "basic_schedule" ] }, "remove": { "component_groups": [ "baby", "child_schedule" ] } }, - + "minecraft:spawn_armorer": { "randomize": [ { @@ -2436,7 +2438,7 @@ } ] }, - + "minecraft:spawn_butcher": { "randomize": [ { @@ -2451,7 +2453,7 @@ } ] }, - + "minecraft:ageable_grow_up": { "randomize": [ { @@ -2471,108 +2473,107 @@ "remove": { "component_groups": [ "baby", "child_schedule", "job_specific_goals", "trade_components" ] }, "add": { "component_groups": [ "adult", "make_and_receive_love", "unskilled", "behavior_peasant", "basic_schedule" ] } }, - + "minecraft:become_cleric": { "remove": { "component_groups": [ "baby", "child_schedule", "job_specific_goals", "trade_components" ] }, "add": { "component_groups": [ "cleric", "adult", "make_and_receive_love", "behavior_non_peasant", "work_schedule" ] } }, - + "minecraft:become_farmer": { "remove": { "component_groups": [ "baby", "child_schedule", "job_specific_goals", "trade_components" ] }, "add": { "component_groups": [ "farmer", "adult", "make_and_receive_love", "behavior_peasant", "farmer_schedule" ] } }, - + "minecraft:become_fisherman": { "remove": { "component_groups": [ "baby", "child_schedule", "job_specific_goals", "trade_components" ] }, "add": { "component_groups": [ "fisherman", "adult", "make_and_receive_love", "behavior_non_peasant", "fisher_schedule" ] } }, - + "minecraft:become_fletcher": { "remove": { "component_groups": [ "baby", "child_schedule", "job_specific_goals", "trade_components" ] }, "add": { "component_groups": [ "fletcher", "adult", "make_and_receive_love", "behavior_non_peasant", "work_schedule" ] } }, - + "minecraft:become_librarian": { "remove": { "component_groups": [ "baby", "child_schedule", "job_specific_goals", "trade_components" ] }, "add": { "component_groups": [ "librarian", "adult", "make_and_receive_love", "behavior_non_peasant", "librarian_schedule" ] } }, - + "minecraft:become_cartographer": { "remove": { "component_groups": [ "baby", "child_schedule", "job_specific_goals", "trade_components" ] }, "add": { "component_groups": [ "cartographer", "adult", "make_and_receive_love", "behavior_non_peasant", "work_schedule" ] } }, - + "minecraft:become_armorer": { "remove": { "component_groups": [ "baby", "child_schedule", "job_specific_goals", "trade_components" ] }, "add": { "component_groups": [ "armorer", "adult", "make_and_receive_love", "behavior_non_peasant", "work_schedule" ] } }, - + "minecraft:become_weaponsmith": { "remove": { "component_groups": [ "baby", "child_schedule", "job_specific_goals", "trade_components" ] }, "add": { "component_groups": [ "weaponsmith", "adult", "make_and_receive_love", "behavior_non_peasant", "work_schedule" ] } }, - + "minecraft:become_toolsmith": { "remove": { "component_groups": [ "baby", "child_schedule", "job_specific_goals", "trade_components" ] }, "add": { "component_groups": [ "toolsmith", "adult", "make_and_receive_love", "behavior_non_peasant", "work_schedule" ] } }, - + "minecraft:become_butcher": { "remove": { "component_groups": [ "baby", "child_schedule", "job_specific_goals", "trade_components" ] }, "add": { "component_groups": [ "butcher", "adult", "make_and_receive_love", "behavior_non_peasant", "work_schedule" ] } }, - + "minecraft:become_leatherworker": { "remove": { "component_groups": [ "baby", "child_schedule", "job_specific_goals", "trade_components" ] }, "add": { "component_groups": [ "leatherworker", "adult", "make_and_receive_love", "behavior_non_peasant", "work_schedule" ] } }, - + "minecraft:become_sheperd": { "remove": { "component_groups": [ "baby", "child_schedule", "job_specific_goals", "trade_components" ] }, "add": { "component_groups": [ "shepherd", "adult", "make_and_receive_love", "behavior_non_peasant", "work_schedule" ] } }, - + "minecraft:become_mason": { "remove": { "component_groups": [ "baby", "child_schedule", "job_specific_goals", "trade_components" ] }, "add": { "component_groups": [ "mason", "adult", "make_and_receive_love", "behavior_non_peasant", "work_schedule" ] } }, - - + "minecraft:schedule_wander_villager": { "remove": { "component_groups": [ "home_schedule_villager", "bed_schedule_villager", "wander_schedule_villager", "job_specific_goals", "play_schedule_villager", "trade_resupply_component_group" ] }, "add": { "component_groups": [ "make_and_receive_love", "wander_schedule_villager" ] } }, - + "minecraft:schedule_gather_villager": { "remove": { "component_groups": [ "bed_schedule_villager", "wander_schedule_villager", "home_schedule_villager", "job_specific_goals", "play_schedule_villager", "trade_resupply_component_group" ] }, "add": { "component_groups": [ "make_and_receive_love", "gather_schedule_villager" ] } }, - + "minecraft:schedule_home_villager": { "remove": { "component_groups": [ "bed_schedule_villager", "wander_schedule_villager", "gather_schedule_villager", "job_specific_goals", "play_schedule_villager", "trade_resupply_component_group" ] }, "add": { "component_groups": [ "make_and_receive_love", "home_schedule_villager" ] } }, - + "minecraft:schedule_bed_villager": { "remove": { "component_groups": [ "make_and_receive_love", "home_schedule_villager", "gather_schedule_villager", "wander_schedule_villager", "job_specific_goals", "play_schedule_villager", "trade_resupply_component_group" ] }, "add": { "component_groups": [ "bed_schedule_villager" ] } }, - + "minecraft:schedule_play_villager": { "remove": { "component_groups": [ "home_schedule_villager", "gather_schedule_villager", "wander_schedule_villager", "bed_schedule_villager", "job_specific_goals", "trade_resupply_component_group" ] }, "add": { "component_groups": [ "play_schedule_villager" ] } }, - + "minecraft:schedule_work_pro_villager": { "remove": { "component_groups": [ "home_schedule_villager", "gather_schedule_villager", "wander_schedule_villager", "bed_schedule_villager", "play_schedule_villager" ] }, "add": { "component_groups": [ "make_and_receive_love", "work_schedule_villager" ] } }, - + "minecraft:schedule_work_farmer": { "remove": { "component_groups": [ "home_schedule_villager", "gather_schedule_villager", "wander_schedule_villager", "bed_schedule_villager", "job_specific_goals", "play_schedule_villager" ] }, "add": { "component_groups": [ "make_and_receive_love", "work_schedule_farmer" ] } }, - + "minecraft:schedule_work_fisher": { "remove": { "component_groups": [ "home_schedule_villager", "gather_schedule_villager", "wander_schedule_villager", "bed_schedule_villager", "job_specific_goals", "play_schedule_villager" ] }, "add": { "component_groups": [ "make_and_receive_love", "work_schedule_fisher" ] } @@ -2582,6 +2583,7 @@ "remove": { "component_groups": [ "home_schedule_villager", "gather_schedule_villager", "wander_schedule_villager", "bed_schedule_villager", "job_specific_goals", "play_schedule_villager" ] }, "add": { "component_groups": [ "make_and_receive_love", "work_schedule_librarian" ] } }, + "minecraft:resupply_trades": { "add": { "component_groups": [ "trade_resupply_component_group" ] } }, diff --git a/behavior_pack/entities/vindicator.json b/behavior_pack/entities/vindicator.json index 05a2467c3..d4617db37 100644 --- a/behavior_pack/entities/vindicator.json +++ b/behavior_pack/entities/vindicator.json @@ -1,12 +1,11 @@ { - "format_version": "1.16.0", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:vindicator", "spawn_category": "monster", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { @@ -145,26 +144,8 @@ } ] }, - "minecraft:damage_sensor": { - "triggers": { - "on_damage": { - "filters": { - "all_of": [ - { - "test": "has_damage", - "value": "fatal" - }, - { - "test": "is_family", - "subject": "other", - "value": "player" - } - ] - }, - "event": "minecraft:gain_bad_omen", - "target": "other" - } - } + "minecraft:loot": { + "table": "loot_tables/entities/pillager_captain.json" } }, "minecraft:patrol_captain": { @@ -182,26 +163,8 @@ } ] }, - "minecraft:damage_sensor": { - "triggers": { - "on_damage": { - "filters": { - "all_of": [ - { - "test": "has_damage", - "value": "fatal" - }, - { - "test": "is_family", - "subject": "other", - "value": "player" - } - ] - }, - "event": "minecraft:gain_bad_omen", - "target": "other" - } - } + "minecraft:loot": { + "table": "loot_tables/entities/pillager_captain.json" }, "minecraft:behavior.move_to_random_block": { "priority": 5, diff --git a/behavior_pack/entities/wandering_trader.json b/behavior_pack/entities/wandering_trader.json index 2c399acbf..b5c2a4190 100644 --- a/behavior_pack/entities/wandering_trader.json +++ b/behavior_pack/entities/wandering_trader.json @@ -1,12 +1,11 @@ { - "format_version": "1.19.60", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:wandering_trader", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { diff --git a/behavior_pack/entities/wind_charge_projectile.json b/behavior_pack/entities/wind_charge_projectile.json new file mode 100644 index 000000000..933dc698e --- /dev/null +++ b/behavior_pack/entities/wind_charge_projectile.json @@ -0,0 +1,60 @@ +{ + "format_version": "1.21.0", + "minecraft:entity": { + "description": { + "identifier": "minecraft:wind_charge_projectile", + "is_spawnable": false, + "is_summonable": false + }, + "components": { + "minecraft:wind_burst": { + "radius": 1.2, + "particle_effect": "wind_burst", + "sound_effect": "wind_charge.burst", + "knockback_scaling": 1.1 + }, + "minecraft:collision_box": { + "width": 0.3125, + "height": 0.3125 + }, + "minecraft:projectile": { + "on_hit": { + "impact_damage": { + "damage": 1, + "knockback": true + }, + "remove_on_hit": {} + }, + "power": 1.0, + "gravity": 0.00, + "inertia": 1.0, + "liquid_inertia": 1.0, + "uncertainty_base": 1.0, + "uncertainty_multiplier": 0.0, + "reflect_on_hurt": true, + "multiple_targets": false, + "ignored_entities": [ + "ender_crystal", + "wind_charge_projectile", + "breeze_wind_charge_projectile" + ] + }, + "minecraft:physics": { + }, + "minecraft:pushable": { + "is_pushable": false, + "is_pushable_by_piston": true + }, + "minecraft:conditional_bandwidth_optimization": { + "default_values": { + "max_optimized_distance": 80.0, + "max_dropped_ticks": 7, + "use_motion_prediction_hints": true + } + }, + "minecraft:type_family": { + "family": ["wind_charge", "wind_charge_projectile"] + } + } + } +} diff --git a/behavior_pack/entities/zombie.json b/behavior_pack/entities/zombie.json index 762af398b..c6ad19f13 100644 --- a/behavior_pack/entities/zombie.json +++ b/behavior_pack/entities/zombie.json @@ -1,12 +1,11 @@ { - "format_version": "1.20.10", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:zombie", "spawn_category": "monster", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { "minecraft:look_to_start_drowned_transformation": { @@ -445,7 +444,17 @@ "priority": 9 }, "minecraft:behavior.hurt_by_target": { - "priority": 1 + "priority": 1, + "entity_types": [ + { + "filters": { + "test": "is_family", + "subject": "other", + "operator": "!=", + "value": "breeze" + } + } + ] }, "minecraft:behavior.nearest_attackable_target": { "priority": 2, diff --git a/behavior_pack/entities/zombie_horse.json b/behavior_pack/entities/zombie_horse.json index 01dd8b521..c7d056446 100644 --- a/behavior_pack/entities/zombie_horse.json +++ b/behavior_pack/entities/zombie_horse.json @@ -1,12 +1,11 @@ { - "format_version": "1.16.0", + "format_version": "1.21.0", "minecraft:entity": { "description": { "identifier": "minecraft:zombie_horse", "spawn_category": "creature", "is_spawnable": true, - "is_summonable": true, - "is_experimental": false + "is_summonable": true }, "component_groups": { "minecraft:horse_baby": { @@ -52,7 +51,6 @@ "track_target": true }, "minecraft:behavior.player_ride_tamed": { - } } }, @@ -178,4 +176,4 @@ } } } -} \ No newline at end of file +} diff --git a/behavior_pack/items/breeze_rod.json b/behavior_pack/items/breeze_rod.json new file mode 100644 index 000000000..a2221e08a --- /dev/null +++ b/behavior_pack/items/breeze_rod.json @@ -0,0 +1,16 @@ +{ + "format_version": "1.10", + "minecraft:item": { + "description": { + "identifier": "minecraft:breeze_rod" + }, + "components": { + "minecraft:icon": { + "texture": "breeze_rod" + }, + "minecraft:display_name": { + "value": "item.breeze_rod.name" + } + } + } +} \ No newline at end of file diff --git a/behavior_pack/items/ominous_trial_key.json b/behavior_pack/items/ominous_trial_key.json new file mode 100644 index 000000000..d3372756a --- /dev/null +++ b/behavior_pack/items/ominous_trial_key.json @@ -0,0 +1,17 @@ +{ + "format_version": "1.20.50", + "minecraft:item": { + "description": { + "identifier": "minecraft:ominous_trial_key", + "category": "Items" + }, + "components": { + "minecraft:icon": { + "texture": "ominous_trial_key" + }, + "minecraft:display_name": { + "value": "item.ominous_trial_key.name" + } + } + } +} diff --git a/behavior_pack/items/trial_key.json b/behavior_pack/items/trial_key.json new file mode 100644 index 000000000..23b850937 --- /dev/null +++ b/behavior_pack/items/trial_key.json @@ -0,0 +1,17 @@ +{ + "format_version": "1.20.50", + "minecraft:item": { + "description": { + "identifier": "minecraft:trial_key", + "category": "Items" + }, + "components": { + "minecraft:icon": { + "texture": "trial_key" + }, + "minecraft:display_name": { + "value": "item.trial_key.name" + } + } + } +} diff --git a/behavior_pack/items/wind_charge.json b/behavior_pack/items/wind_charge.json new file mode 100644 index 000000000..ddfb4d458 --- /dev/null +++ b/behavior_pack/items/wind_charge.json @@ -0,0 +1,31 @@ +{ + "format_version": "1.20.50", + "minecraft:item": { + "description": { + "identifier": "minecraft:wind_charge", + "category": "Items" + }, + "components": { + "minecraft:icon": { + "texture": "wind_charge" + }, + "minecraft:projectile": { + "projectile_entity": "wind_charge_projectile" + }, + "minecraft:throwable": { + "do_swing_animation": true, + "launch_power_scale": 1.5, + "max_launch_power": 1.5, + "default_offset_scale": 0.8, + "inside_block_offset_scale": 0.05 + }, + "minecraft:cooldown": { + "category": "wind_charge", + "duration": 0.5 + }, + "minecraft:display_name": { + "value": "item.wind_charge.name" + } + } + } +} diff --git a/behavior_pack/loot_tables/chests/trial_chambers/corridor.json b/behavior_pack/loot_tables/chests/trial_chambers/corridor.json new file mode 100644 index 000000000..57a1d73d7 --- /dev/null +++ b/behavior_pack/loot_tables/chests/trial_chambers/corridor.json @@ -0,0 +1,167 @@ +{ + "pools": [ + { + "rolls": { + "min": 1, + "max": 3 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:iron_axe", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": 1.0 + }, + { + "function": "set_damage", + "damage": { + "min": 0.4, + "max": 0.9 + } + }, + { + "function": "enchant_randomly" + } + ] + }, + { + "type": "item", + "name": "minecraft:honeycomb", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:stone_axe", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": 1.0 + }, + { + "function": "set_damage", + "damage": { + "min": 0.15, + "max": 0.8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:stone_pickaxe", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": 1.0 + }, + { + "function": "set_damage", + "damage": { + "min": 0.15, + "max": 0.8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:ender_pearl", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:bamboo_hanging_sign", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:bamboo_planks", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:scaffolding", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 10 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:torch", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:tuff", + "weight": 3, + "functions": [ + { + "function": "set_count", + "count": { + "min": 8, + "max": 20 + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/chests/trial_chambers/entrance.json b/behavior_pack/loot_tables/chests/trial_chambers/entrance.json new file mode 100644 index 000000000..98f6a1eb4 --- /dev/null +++ b/behavior_pack/loot_tables/chests/trial_chambers/entrance.json @@ -0,0 +1,76 @@ +{ + "pools": [ + { + "rolls": { + "min": 2, + "max": 3 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:trial_key", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": 1.0 + } + ] + }, + { + "type": "item", + "name": "minecraft:stick", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:wooden_axe", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": 1.0 + } + ] + }, + { + "type": "item", + "name": "minecraft:honeycomb", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:arrow", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/chests/trial_chambers/intersection.json b/behavior_pack/loot_tables/chests/trial_chambers/intersection.json new file mode 100644 index 000000000..4c7dc6cfc --- /dev/null +++ b/behavior_pack/loot_tables/chests/trial_chambers/intersection.json @@ -0,0 +1,129 @@ +{ + "pools": [ + { + "rolls": { + "min": 1, + "max": 3 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:diamond_block", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": 1.0 + } + ] + }, + { + "type": "item", + "name": "minecraft:emerald_block", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:diamond_axe", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": 1.0 + }, + { + "function": "set_damage", + "damage": { + "min": 0.1, + "max": 0.5 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:diamond_pickaxe", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": 1.0 + }, + { + "function": "set_damage", + "damage": { + "min": 0.1, + "max": 0.5 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:diamond", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:cake", + "weight": 20, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:amethyst_shard", + "weight": 20, + "functions": [ + { + "function": "set_count", + "count": { + "min": 8, + "max": 20 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:iron_block", + "weight": 20, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/chests/trial_chambers/intersection_barrel.json b/behavior_pack/loot_tables/chests/trial_chambers/intersection_barrel.json new file mode 100644 index 000000000..39719c04c --- /dev/null +++ b/behavior_pack/loot_tables/chests/trial_chambers/intersection_barrel.json @@ -0,0 +1,161 @@ +{ + "pools": [ + { + "rolls": { + "min": 1, + "max": 3 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:diamond_axe", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": 1.0 + }, + { + "function": "set_damage", + "damage": { + "min": 0.4, + "max": 0.9 + } + }, + { + "function": "enchant_randomly" + } + ] + }, + { + "type": "item", + "name": "minecraft:diamond_pickaxe", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": 1.0 + }, + { + "function": "set_damage", + "damage": { + "min": 0.15, + "max": 0.8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:diamond", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:compass", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": 1.0 + }, + { + "function": "set_damage", + "damage": { + "min": 0.15, + "max": 0.8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:bucket", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:golden_axe", + "weight": 4, + "functions": [ + { + "function": "set_count", + "count": 1.0 + }, + { + "function": "set_damage", + "damage": { + "min": 0.15, + "max": 0.8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:golden_pickaxe", + "weight": 4, + "functions": [ + { + "function": "set_count", + "count": 1.0 + }, + { + "function": "set_damage", + "damage": { + "min": 0.15, + "max": 0.8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:bamboo_planks", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 5, + "max": 15 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:baked_potato", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": { + "min": 6, + "max": 10 + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/chests/trial_chambers/reward.json b/behavior_pack/loot_tables/chests/trial_chambers/reward.json new file mode 100644 index 000000000..82cdcc0da --- /dev/null +++ b/behavior_pack/loot_tables/chests/trial_chambers/reward.json @@ -0,0 +1,48 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "loot_table", + "name": "loot_tables/chests/trial_chambers/reward_common.json", + "weight": 8 + }, + { + "type": "loot_table", + "name": "loot_tables/chests/trial_chambers/reward_rare.json", + "weight": 2 + } + ] + }, + { + "rolls": { + "min": 1, + "max": 3 + }, + "entries": [ + { + "type": "loot_table", + "name": "loot_tables/chests/trial_chambers/reward_common.json", + "weight": 1 + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "loot_table", + "name": "loot_tables/chests/trial_chambers/reward_unique.json", + "weight": 1 + } + ], + "conditions": [ + { + "condition": "random_chance", + "chance": 0.25 + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/chests/trial_chambers/reward_common.json b/behavior_pack/loot_tables/chests/trial_chambers/reward_common.json new file mode 100644 index 000000000..ec5d72530 --- /dev/null +++ b/behavior_pack/loot_tables/chests/trial_chambers/reward_common.json @@ -0,0 +1,144 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:arrow", + "weight": 4, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:arrow", + "weight": 4, + "aux_val": 26, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 8 + } + }, + { + "function": "set_data", + "data": 26 + } + ] + }, + { + "type": "item", + "name": "minecraft:emerald", + "weight": 4, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:wind_charge", + "weight": 3, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:iron_ingot", + "weight": 3, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:honey_bottle", + "weight": 3, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:ominous_bottle", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": 1.0 + }, + { + "function": "set_ominous_bottle_amplifier", + "amplifier": { + "min": 0, + "max": 1 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:wind_charge", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 12 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:diamond", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/chests/trial_chambers/reward_ominous.json b/behavior_pack/loot_tables/chests/trial_chambers/reward_ominous.json new file mode 100644 index 000000000..12dd7306b --- /dev/null +++ b/behavior_pack/loot_tables/chests/trial_chambers/reward_ominous.json @@ -0,0 +1,48 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "loot_table", + "name": "loot_tables/chests/trial_chambers/reward_ominous_common.json", + "weight": 8 + }, + { + "type": "loot_table", + "name": "loot_tables/chests/trial_chambers/reward_ominous_rare.json", + "weight": 2 + } + ] + }, + { + "rolls": { + "min": 1, + "max": 3 + }, + "entries": [ + { + "type": "loot_table", + "name": "loot_tables/chests/trial_chambers/reward_ominous_common.json", + "weight": 1 + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "loot_table", + "name": "loot_tables/chests/trial_chambers/reward_ominous_unique.json", + "weight": 1 + } + ], + "conditions": [ + { + "condition": "random_chance", + "chance": 0.75 + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/chests/trial_chambers/reward_ominous_common.json b/behavior_pack/loot_tables/chests/trial_chambers/reward_ominous_common.json new file mode 100644 index 000000000..c40f08bfa --- /dev/null +++ b/behavior_pack/loot_tables/chests/trial_chambers/reward_ominous_common.json @@ -0,0 +1,88 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:emerald", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 10 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:wind_charge", + "weight": 4, + "functions": [ + { + "function": "set_count", + "count": { + "min": 8, + "max": 12 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:arrow", + "weight": 3, + "aux_val": 43, + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 12 + } + }, + { + "function": "set_data", + "data": 43 + } + ] + }, + { + "type": "item", + "name": "minecraft:diamond", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 3 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:ominous_bottle", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": 1.0 + }, + { + "function": "set_ominous_bottle_amplifier", + "amplifier": { + "min": 2, + "max": 4 + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/chests/trial_chambers/reward_ominous_rare.json b/behavior_pack/loot_tables/chests/trial_chambers/reward_ominous_rare.json new file mode 100644 index 000000000..058c2f3a8 --- /dev/null +++ b/behavior_pack/loot_tables/chests/trial_chambers/reward_ominous_rare.json @@ -0,0 +1,150 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:emerald_block", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:iron_block", + "weight": 4 + }, + { + "type": "item", + "name": "minecraft:crossbow", + "weight": 4, + "functions": [ + { + "function": "enchant_with_levels", + "levels": { + "min": 5.0, + "max": 20.0 + }, + "treasure": true + } + ] + }, + { + "type": "item", + "name": "minecraft:golden_apple", + "weight": 3 + }, + { + "type": "item", + "name": "minecraft:diamond_axe", + "weight": 3, + "functions": [ + { + "function": "enchant_with_levels", + "levels": { + "min": 10.0, + "max": 20.0 + }, + "treasure": true + } + ] + }, + { + "type": "item", + "name": "minecraft:diamond_chestplate", + "weight": 3, + "functions": [ + { + "function": "enchant_with_levels", + "levels": { + "min": 10.0, + "max": 20.0 + }, + "treasure": true + } + ] + }, + { + "type": "item", + "name": "minecraft:book", + "weight": 2, + "functions": [ + { + "function": "enchant_book_for_trading", + "enchantments": [ + { + "name": "knockback", + "min": 1, + "max": 2 + }, + { + "name": "punch", + "min": 1, + "max": 2 + }, + { + "name": "smite", + "min": 1, + "max": 5 + }, + { + "name": "looting", + "min": 1, + "max": 3 + }, + { + "name": "multishot", + "min": 1, + "max": 1 + } + ] + } + ] + }, + { + "type": "item", + "name": "minecraft:book", + "weight": 2, + "functions": [ + { + "function": "enchant_book_for_trading", + "enchantments": [ + { + "name": "breach", + "min": 1, + "max": 4 + }, + { + "name": "density", + "min": 1, + "max": 5 + } + ] + } + ] + }, + { + "type": "item", + "name": "minecraft:book", + "weight": 2, + "functions": [ + { + "function": "enchant_book_for_trading", + "enchantments": [ + { + "name": "wind_burst", + "min": 1, + "max": 1 + } + ] + } + ] + }, + { + "type": "item", + "name": "minecraft:diamond_block", + "weight": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/chests/trial_chambers/reward_ominous_unique.json b/behavior_pack/loot_tables/chests/trial_chambers/reward_ominous_unique.json new file mode 100644 index 000000000..718dff395 --- /dev/null +++ b/behavior_pack/loot_tables/chests/trial_chambers/reward_ominous_unique.json @@ -0,0 +1,34 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:enchanted_golden_apple", + "weight": 3 + }, + { + "type": "item", + "name": "minecraft:flow_armor_trim_smithing_template", + "weight": 3 + }, + { + "type": "item", + "name": "minecraft:flow_banner_pattern", + "weight": 2 + }, + { + "type": "item", + "name": "minecraft:music_disc_creator", + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:heavy_core", + "weight": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/chests/trial_chambers/reward_rare.json b/behavior_pack/loot_tables/chests/trial_chambers/reward_rare.json new file mode 100644 index 000000000..a40fbd20c --- /dev/null +++ b/behavior_pack/loot_tables/chests/trial_chambers/reward_rare.json @@ -0,0 +1,220 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:emerald", + "weight": 3, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:shield", + "weight": 3, + "functions": [ + { + "function": "set_damage", + "damage": { + "min": 0.5, + "max": 1.0 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:bow", + "weight": 3, + "functions": [ + { + "function": "enchant_with_levels", + "levels": { + "min": 5.0, + "max": 15.0 + }, + "treasure": true + } + ] + }, + { + "type": "item", + "name": "minecraft:crossbow", + "weight": 2, + "functions": [ + { + "function": "enchant_with_levels", + "levels": { + "min": 5.0, + "max": 20.0 + }, + "treasure": true + } + ] + }, + { + "type": "item", + "name": "minecraft:iron_axe", + "weight": 2, + "functions": [ + { + "function": "enchant_with_levels", + "levels": { + "min": 0.0, + "max": 10.0 + }, + "treasure": true + } + ] + }, + { + "type": "item", + "name": "minecraft:iron_chestplate", + "weight": 2, + "functions": [ + { + "function": "enchant_with_levels", + "levels": { + "min": 0.0, + "max": 10.0 + }, + "treasure": true + } + ] + }, + { + "type": "item", + "name": "minecraft:golden_carrot", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:book", + "weight": 2, + "functions": [ + { + "function": "enchant_book_for_trading", + "enchantments": [ + { + "name": "sharpness", + "min": 1, + "max": 5 + }, + { + "name": "bane_of_arthropods", + "min": 1, + "max": 5 + }, + { + "name": "efficiency", + "min": 1, + "max": 5 + }, + { + "name": "fortune", + "min": 1, + "max": 3 + }, + { + "name": "silk_touch", + "min": 1, + "max": 1 + }, + { + "name": "feather_falling", + "min": 1, + "max": 4 + } + ] + } + ] + }, + { + "type": "item", + "name": "minecraft:book", + "weight": 2, + "functions": [ + { + "function": "enchant_book_for_trading", + "enchantments": [ + { + "name": "riptide", + "min": 1, + "max": 3 + }, + { + "name": "loyalty", + "min": 1, + "max": 3 + }, + { + "name": "channeling", + "min": 1, + "max": 1 + }, + { + "name": "impaling", + "min": 1, + "max": 5 + }, + { + "name": "mending", + "min": 1, + "max": 1 + } + ] + } + ] + }, + { + "type": "item", + "name": "minecraft:diamond_chestplate", + "weight": 1, + "functions": [ + { + "function": "enchant_with_levels", + "levels": { + "min": 5.0, + "max": 15.0 + }, + "treasure": true + } + ] + }, + { + "type": "item", + "name": "minecraft:diamond_axe", + "weight": 1, + "functions": [ + { + "function": "enchant_with_levels", + "levels": { + "min": 5.0, + "max": 15.0 + }, + "treasure": true + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/chests/trial_chambers/reward_unique.json b/behavior_pack/loot_tables/chests/trial_chambers/reward_unique.json new file mode 100644 index 000000000..5acf15c1b --- /dev/null +++ b/behavior_pack/loot_tables/chests/trial_chambers/reward_unique.json @@ -0,0 +1,34 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:golden_apple", + "weight": 4 + }, + { + "type": "item", + "name": "minecraft:bolt_armor_trim_smithing_template", + "weight": 3 + }, + { + "type": "item", + "name": "minecraft:guster_banner_pattern", + "weight": 2 + }, + { + "type": "item", + "name": "minecraft:music_disc_precipice", + "weight": 2 + }, + { + "type": "item", + "name": "minecraft:trident", + "weight": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/chests/trial_chambers/supply.json b/behavior_pack/loot_tables/chests/trial_chambers/supply.json new file mode 100644 index 000000000..94ad262ff --- /dev/null +++ b/behavior_pack/loot_tables/chests/trial_chambers/supply.json @@ -0,0 +1,223 @@ +{ + "pools": [ + { + "rolls": { + "min": 3, + "max": 5 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:arrow", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 14 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:arrow", + "weight": 1, + "aux_val": 26, + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 8 + } + }, + { + "function": "set_data", + "data": 26 + } + ] + }, + { + "type": "item", + "name": "minecraft:arrow", + "weight": 1, + "aux_val": 18, + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 8 + } + }, + { + "function": "set_data", + "data": 18 + } + ] + }, + { + "type": "item", + "name": "minecraft:baked_potato", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:glow_berries", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 10 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:acacia_planks", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:moss_block", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:bone_meal", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:tuff", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": { + "min": 5, + "max": 10 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:torch", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": { + "min": 3, + "max": 6 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:potion", + "weight": 1, + "aux_val": 28, + "functions": [ + { + "function": "set_count", + "count": 2.0 + }, + { + "function": "set_data", + "data": 28 + } + ] + }, + { + "type": "item", + "name": "minecraft:potion", + "weight": 1, + "aux_val": 31, + "functions": [ + { + "function": "set_count", + "count": 2.0 + }, + { + "function": "set_data", + "data": 31 + } + ] + }, + { + "type": "item", + "name": "minecraft:stone_pickaxe", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": 1.0 + }, + { + "function": "set_damage", + "damage": { + "min": 0.15, + "max": 0.8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:milk_bucket", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": 1.0 + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/dispensers/trial_chambers/chamber.json b/behavior_pack/loot_tables/dispensers/trial_chambers/chamber.json new file mode 100644 index 000000000..0079efa8f --- /dev/null +++ b/behavior_pack/loot_tables/dispensers/trial_chambers/chamber.json @@ -0,0 +1,209 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:water_bucket", + "weight": 4, + "functions": [ + { + "function": "set_count", + "count": 1.0 + } + ] + }, + { + "type": "item", + "name": "minecraft:arrow", + "weight": 4, + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:snowball", + "weight": 6, + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:egg", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:fire_charge", + "weight": 6, + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:splash_potion", + "weight": 1, + "aux_val": 17, + "functions": [ + { + "function": "set_data", + "data": 17 + }, + { + "function": "set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:splash_potion", + "weight": 1, + "aux_val": 25, + "functions": [ + { + "function": "set_data", + "data": 25 + }, + { + "function": "set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:splash_potion", + "weight": 1, + "aux_val": 34, + "functions": [ + { + "function": "set_data", + "data": 34 + }, + { + "function": "set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:lingering_potion", + "weight": 1, + "aux_val": 17, + "functions": [ + { + "function": "set_data", + "data": 17 + }, + { + "function": "set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:lingering_potion", + "weight": 1, + "aux_val": 25, + "functions": [ + { + "function": "set_data", + "data": 25 + }, + { + "function": "set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:lingering_potion", + "weight": 1, + "aux_val": 34, + "functions": [ + { + "function": "set_data", + "data": 34 + }, + { + "function": "set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:lingering_potion", + "weight": 1, + "aux_val": 21, + "functions": [ + { + "function": "set_data", + "data": 21 + }, + { + "function": "set_count", + "count": { + "min": 2, + "max": 5 + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/dispensers/trial_chambers/corridor.json b/behavior_pack/loot_tables/dispensers/trial_chambers/corridor.json new file mode 100644 index 000000000..6fd08a1f7 --- /dev/null +++ b/behavior_pack/loot_tables/dispensers/trial_chambers/corridor.json @@ -0,0 +1,23 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:arrow", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 8 + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/dispensers/trial_chambers/water.json b/behavior_pack/loot_tables/dispensers/trial_chambers/water.json new file mode 100644 index 000000000..456471ef2 --- /dev/null +++ b/behavior_pack/loot_tables/dispensers/trial_chambers/water.json @@ -0,0 +1,20 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:water_bucket", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": 1.0 + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/entities/bogged.json b/behavior_pack/loot_tables/entities/bogged.json new file mode 100644 index 000000000..6edd759be --- /dev/null +++ b/behavior_pack/loot_tables/entities/bogged.json @@ -0,0 +1,93 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:arrow", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": { + "min": 0, + "max": 2 + } + }, + { + "function": "looting_enchant", + "count": { + "min": 0, + "max": 1 + } + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:bone", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": { + "min": 0, + "max": 2 + } + }, + { + "function": "looting_enchant", + "count": { + "min": 0, + "max": 1 + } + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:arrow", + "weight": 1, + "auxVal": 26, + "functions": [ + { + "function": "set_count", + "count": { + "min": 0, + "max": 1 + } + }, + { + "function": "looting_enchant", + "count": { + "min": 0, + "max": 1 + }, + "limit": 1 + }, + { + "function": "minecraft:set_data", + "data": 26 + } + ] + } + ], + "conditions": [ + { + "condition": "killed_by_player" + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/entities/bogged_shear.json b/behavior_pack/loot_tables/entities/bogged_shear.json new file mode 100644 index 000000000..b62e2932f --- /dev/null +++ b/behavior_pack/loot_tables/entities/bogged_shear.json @@ -0,0 +1,37 @@ +{ + "pools": [ + { + "rolls": 2, + "entries": [ + { + "type": "item", + "name": "minecraft:brown_mushroom", + "weight": 1, + "functions": [ + { + "function": "minecraft:set_data_from_color_index" + }, + { + "function": "set_count", + "count": 1 + } + ] + }, + { + "type": "item", + "name": "minecraft:red_mushroom", + "weight": 1, + "functions": [ + { + "function": "minecraft:set_data_from_color_index" + }, + { + "function": "set_count", + "count": 1 + } + ] + } + ] + } + ] +} diff --git a/behavior_pack/loot_tables/entities/breeze.json b/behavior_pack/loot_tables/entities/breeze.json new file mode 100644 index 000000000..4ec7318a8 --- /dev/null +++ b/behavior_pack/loot_tables/entities/breeze.json @@ -0,0 +1,35 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:breeze_rod", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "looting_enchant", + "count": { + "min": 1, + "max": 2 + } + } + ] + } + ], + "conditions": [ + { + "condition": "killed_by_player_or_pets" + } + ] + } + ] +} diff --git a/behavior_pack/loot_tables/entities/pillager_captain.json b/behavior_pack/loot_tables/entities/pillager_captain.json new file mode 100644 index 000000000..b683cfdc4 --- /dev/null +++ b/behavior_pack/loot_tables/entities/pillager_captain.json @@ -0,0 +1,32 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:ominous_bottle", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": 1 + }, + { + "function": "set_ominous_bottle_amplifier", + "amplifier": { + "min": 0, + "max": 4 + } + } + ] + } + ], + "conditions": [ + { + "condition": "killed_by_player" + } + ] + } + ] +} diff --git a/behavior_pack/loot_tables/equipment/trial_chamber.json b/behavior_pack/loot_tables/equipment/trial_chamber.json new file mode 100644 index 000000000..a06f967de --- /dev/null +++ b/behavior_pack/loot_tables/equipment/trial_chamber.json @@ -0,0 +1,24 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "loot_table", + "name": "loot_tables/equipment/trial_chamber_chainmail.json", + "weight": 4 + }, + { + "type": "loot_table", + "name": "loot_tables/equipment/trial_chamber_iron.json", + "weight": 2 + }, + { + "type": "loot_table", + "name": "loot_tables/equipment/trial_chamber_diamond.json", + "weight": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/equipment/trial_chamber_chainmail.json b/behavior_pack/loot_tables/equipment/trial_chamber_chainmail.json new file mode 100644 index 000000000..4e4a31e1d --- /dev/null +++ b/behavior_pack/loot_tables/equipment/trial_chamber_chainmail.json @@ -0,0 +1,82 @@ +{ + "pools": [ + { + "rolls": 1, + "conditions": [ + { + "chance": 0.5, + "condition": "random_chance" + } + ], + "entries": [ + { + "type": "item", + "functions": [ + { + "function": "set_armor_trim", + "material": "copper", + "pattern": "bolt" + }, + { + "function": "specific_enchants", + "enchants": [ + { + "id": "protection", + "level": 4 + }, + { + "id": "fire_protection", + "level": 4 + }, + { + "id": "projectile_protection", + "level": 4 + } + ] + } + ], + "name": "minecraft:chainmail_helmet" + } + ] + }, + { + "rolls": 1, + "conditions": [ + { + "chance": 0.5, + "condition": "random_chance" + } + ], + "entries": [ + { + "type": "item", + "functions": [ + { + "function": "set_armor_trim", + "material": "copper", + "pattern": "bolt" + }, + { + "function": "specific_enchants", + "enchants": [ + { + "id": "protection", + "level": 4 + }, + { + "id": "fire_protection", + "level": 4 + }, + { + "id": "projectile_protection", + "level": 4 + } + ] + } + ], + "name": "minecraft:chainmail_chestplate" + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/equipment/trial_chamber_diamond.json b/behavior_pack/loot_tables/equipment/trial_chamber_diamond.json new file mode 100644 index 000000000..f22cae3ce --- /dev/null +++ b/behavior_pack/loot_tables/equipment/trial_chamber_diamond.json @@ -0,0 +1,82 @@ +{ + "pools": [ + { + "rolls": 1, + "conditions": [ + { + "chance": 0.5, + "condition": "random_chance" + } + ], + "entries": [ + { + "type": "item", + "functions": [ + { + "function": "set_armor_trim", + "material": "copper", + "pattern": "flow" + }, + { + "function": "specific_enchants", + "enchants": [ + { + "id": "protection", + "level": 4 + }, + { + "id": "fire_protection", + "level": 4 + }, + { + "id": "projectile_protection", + "level": 4 + } + ] + } + ], + "name": "minecraft:diamond_helmet" + } + ] + }, + { + "rolls": 1, + "conditions": [ + { + "chance": 0.5, + "condition": "random_chance" + } + ], + "entries": [ + { + "type": "item", + "functions": [ + { + "function": "set_armor_trim", + "material": "copper", + "pattern": "flow" + }, + { + "function": "specific_enchants", + "enchants": [ + { + "id": "protection", + "level": 4 + }, + { + "id": "fire_protection", + "level": 4 + }, + { + "id": "projectile_protection", + "level": 4 + } + ] + } + ], + "name": "minecraft:diamond_chestplate" + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/equipment/trial_chamber_iron.json b/behavior_pack/loot_tables/equipment/trial_chamber_iron.json new file mode 100644 index 000000000..b4d198d2a --- /dev/null +++ b/behavior_pack/loot_tables/equipment/trial_chamber_iron.json @@ -0,0 +1,82 @@ +{ + "pools": [ + { + "rolls": 1, + "conditions": [ + { + "chance": 0.5, + "condition": "random_chance" + } + ], + "entries": [ + { + "type": "item", + "functions": [ + { + "function": "set_armor_trim", + "material": "copper", + "pattern": "flow" + }, + { + "function": "specific_enchants", + "enchants": [ + { + "id": "protection", + "level": 4 + }, + { + "id": "fire_protection", + "level": 4 + }, + { + "id": "projectile_protection", + "level": 4 + } + ] + } + ], + "name": "minecraft:iron_helmet" + } + ] + }, + { + "rolls": 1, + "conditions": [ + { + "chance": 0.5, + "condition": "random_chance" + } + ], + "entries": [ + { + "type": "item", + "functions": [ + { + "function": "set_armor_trim", + "material": "copper", + "pattern": "flow" + }, + { + "function": "specific_enchants", + "enchants": [ + { + "id": "protection", + "level": 4 + }, + { + "id": "fire_protection", + "level": 4 + }, + { + "id": "projectile_protection", + "level": 4 + } + ] + } + ], + "name": "minecraft:iron_chestplate" + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/equipment/trial_chamber_melee.json b/behavior_pack/loot_tables/equipment/trial_chamber_melee.json new file mode 100644 index 000000000..7fc169b66 --- /dev/null +++ b/behavior_pack/loot_tables/equipment/trial_chamber_melee.json @@ -0,0 +1,61 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "loot_table", + "name": "loot_tables/equipment/trial_chamber.json", + "weight": 1 + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:iron_sword", + "weight": 4 + }, + { + "type": "item", + "name": "minecraft:iron_sword", + "functions": [ + { + "function": "specific_enchants", + "enchants": [ + { + "id": "sharpness", + "level": 1 + } + ] + } + ], + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:iron_sword", + "functions": [ + { + "function": "specific_enchants", + "enchants": [ + { + "id": "knockback", + "level": 1 + } + ] + } + ], + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:diamond_sword", + "weight": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/equipment/trial_chamber_ranged.json b/behavior_pack/loot_tables/equipment/trial_chamber_ranged.json new file mode 100644 index 000000000..bdb4a5f95 --- /dev/null +++ b/behavior_pack/loot_tables/equipment/trial_chamber_ranged.json @@ -0,0 +1,56 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "loot_table", + "name": "loot_tables/equipment/trial_chamber.json", + "weight": 1 + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:bow", + "weight": 2 + }, + { + "type": "item", + "name": "minecraft:bow", + "functions": [ + { + "function": "specific_enchants", + "enchants": [ + { + "id": "power", + "level": 1 + } + ] + } + ], + "weight": 1 + }, + { + "type": "item", + "name": "minecraft:bow", + "functions": [ + { + "function": "specific_enchants", + "enchants": [ + { + "id": "punch", + "level": 1 + } + ] + } + ], + "weight": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/pots/trial_chambers/corridor.json b/behavior_pack/loot_tables/pots/trial_chambers/corridor.json new file mode 100644 index 000000000..fe8f61311 --- /dev/null +++ b/behavior_pack/loot_tables/pots/trial_chambers/corridor.json @@ -0,0 +1,103 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:emerald", + "weight": 125, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:arrow", + "weight": 100, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 8 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:iron_ingot", + "weight": 100, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:trial_key", + "weight": 10, + "functions": [ + { + "function": "set_count", + "count": 1.0 + } + ] + }, + { + "type": "item", + "name": "minecraft:music_disc_creator_music_box", + "weight": 5 + }, + { + "type": "item", + "name": "minecraft:diamond", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:emerald_block", + "weight": 5, + "functions": [ + { + "function": "set_count", + "count": 1.0 + } + ] + }, + { + "type": "item", + "name": "minecraft:diamond_block", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": 1.0 + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/spawners/ominous/trial_chamber/consumables.json b/behavior_pack/loot_tables/spawners/ominous/trial_chamber/consumables.json new file mode 100644 index 000000000..7fb035c2d --- /dev/null +++ b/behavior_pack/loot_tables/spawners/ominous/trial_chamber/consumables.json @@ -0,0 +1,83 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:cooked_beef", + "weight": 3, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:baked_potato", + "weight": 3, + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:golden_carrot", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:potion", + "weight": 1, + "aux_val": 28, + "functions": [ + { + "function": "set_count", + "count": 1.0 + }, + { + "function": "set_data", + "data": 28 + } + ] + }, + { + "type": "item", + "name": "minecraft:potion", + "weight": 1, + "aux_val": 31, + "functions": [ + { + "function": "set_count", + "count": 1.0 + }, + { + "function": "set_data", + "data": 31 + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/spawners/ominous/trial_chamber/key.json b/behavior_pack/loot_tables/spawners/ominous/trial_chamber/key.json new file mode 100644 index 000000000..c1fa780e0 --- /dev/null +++ b/behavior_pack/loot_tables/spawners/ominous/trial_chamber/key.json @@ -0,0 +1,14 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:ominous_trial_key", + "weight": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/spawners/trial_chamber/consumables.json b/behavior_pack/loot_tables/spawners/trial_chamber/consumables.json new file mode 100644 index 000000000..8d2dd3f9b --- /dev/null +++ b/behavior_pack/loot_tables/spawners/trial_chamber/consumables.json @@ -0,0 +1,80 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:cooked_chicken", + "weight": 3, + "functions": [ + { + "function": "set_count", + "count": 1.0 + } + ] + }, + { + "type": "item", + "name": "minecraft:bread", + "weight": 3, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:baked_potato", + "weight": 2, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:potion", + "weight": 1, + "aux_val": 28, + "functions": [ + { + "function": "set_count", + "count": 1.0 + }, + { + "function": "set_data", + "data": 28 + } + ] + }, + { + "type": "item", + "name": "minecraft:potion", + "weight": 1, + "aux_val": 14, + "functions": [ + { + "function": "set_count", + "count": 1.0 + }, + { + "function": "set_data", + "data": 14 + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/spawners/trial_chamber/items_to_drop_when_ominous.json b/behavior_pack/loot_tables/spawners/trial_chamber/items_to_drop_when_ominous.json new file mode 100644 index 000000000..4f84cb018 --- /dev/null +++ b/behavior_pack/loot_tables/spawners/trial_chamber/items_to_drop_when_ominous.json @@ -0,0 +1,197 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:lingering_potion", + "weight": 1, + "aux_val": 43, + "functions": [ + { + "function": "set_count", + "count": 1.0 + }, + { + "function": "set_data", + "data": 43 + } + ] + }, + { + "type": "item", + "name": "minecraft:lingering_potion", + "weight": 1, + "aux_val": 45, + "functions": [ + { + "function": "set_count", + "count": 1.0 + }, + { + "function": "set_data", + "data": 45 + } + ] + }, + { + "type": "item", + "name": "minecraft:lingering_potion", + "weight": 1, + "aux_val": 44, + "functions": [ + { + "function": "set_count", + "count": 1.0 + }, + { + "function": "set_data", + "data": 44 + } + ] + }, + { + "type": "item", + "name": "minecraft:lingering_potion", + "weight": 1, + "aux_val": 46, + "functions": [ + { + "function": "set_count", + "count": 1.0 + }, + { + "function": "set_data", + "data": 46 + } + ] + }, + { + "type": "item", + "name": "minecraft:lingering_potion", + "weight": 1, + "aux_val": 31, + "functions": [ + { + "function": "set_count", + "count": 1.0 + }, + { + "function": "set_data", + "data": 31 + } + ] + }, + { + "type": "item", + "name": "minecraft:lingering_potion", + "weight": 1, + "aux_val": 14, + "functions": [ + { + "function": "set_count", + "count": 1.0 + }, + { + "function": "set_data", + "data": 14 + } + ] + }, + { + "type": "item", + "name": "minecraft:lingering_potion", + "weight": 1, + "aux_val": 40, + "functions": [ + { + "function": "set_count", + "count": 1.0 + }, + { + "function": "set_data", + "data": 40 + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:arrow", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": 1.0 + } + ] + }, + { + "type": "item", + "name": "minecraft:arrow", + "weight": 1, + "aux_val": 26, + "functions": [ + { + "function": "set_count", + "count": 1.0 + }, + { + "function": "set_data", + "data": 26 + } + ] + }, + { + "type": "item", + "name": "minecraft:arrow", + "weight": 1, + "aux_val": 43, + "functions": [ + { + "function": "set_count", + "count": 1.0 + }, + { + "function": "set_data", + "data": 43 + } + ] + }, + { + "type": "item", + "name": "minecraft:fire_charge", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:wind_charge", + "weight": 1, + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/loot_tables/spawners/trial_chamber/key.json b/behavior_pack/loot_tables/spawners/trial_chamber/key.json new file mode 100644 index 000000000..fde79b497 --- /dev/null +++ b/behavior_pack/loot_tables/spawners/trial_chamber/key.json @@ -0,0 +1,14 @@ +{ + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "item", + "name": "minecraft:trial_key", + "weight": 1 + } + ] + } + ] +} \ No newline at end of file diff --git a/behavior_pack/manifest.json b/behavior_pack/manifest.json index c0b4411f0..fd296f13b 100644 --- a/behavior_pack/manifest.json +++ b/behavior_pack/manifest.json @@ -5,7 +5,7 @@ "name": "Vanilla Behavior Pack", "uuid": "ee649bcf-256c-4013-9068-6a802b89d756", "version": [ 0, 0, 1 ], - "min_engine_version": [ 1, 20, 80 ] + "min_engine_version": [ 1, 21, 0 ] }, "modules": [ { diff --git a/behavior_pack/recipes/armor_stand.json b/behavior_pack/recipes/armor_stand.json index 38e298b90..34409ba13 100644 --- a/behavior_pack/recipes/armor_stand.json +++ b/behavior_pack/recipes/armor_stand.json @@ -17,14 +17,12 @@ "item": "minecraft:stick" }, "_": { - "item": "minecraft:double_stone_slab", - "data": 0 + "item": "minecraft:smooth_stone_slab" } }, "unlock": [ { - "item": "minecraft:double_stone_slab", - "data": 0 + "item": "minecraft:smooth_stone_slab" } ], "result": { diff --git a/behavior_pack/recipes/bolt_armor_trim_smithing_template_duplicate.json b/behavior_pack/recipes/bolt_armor_trim_smithing_template_duplicate.json new file mode 100644 index 000000000..aef905911 --- /dev/null +++ b/behavior_pack/recipes/bolt_armor_trim_smithing_template_duplicate.json @@ -0,0 +1,34 @@ +{ + "format_version": "1.20.60", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:bolt_armor_trim_smithing_template_duplicate" + }, + "tags": [ "crafting_table" ], + "pattern": [ + "#S#", + "#C#", + "###" + ], + "key": { + "S": { + "item": "minecraft:bolt_armor_trim_smithing_template" + }, + "#": { + "item": "minecraft:diamond" + }, + "C": { + "item": "minecraft:copper_block" + } + }, + "unlock": [ + { + "item": "minecraft:bolt_armor_trim_smithing_template" + } + ], + "result": { + "item": "minecraft:bolt_armor_trim_smithing_template", + "count": 2 + } + } +} diff --git a/behavior_pack/recipes/bolt_armor_trim_smithing_template_duplicate_waxed.json b/behavior_pack/recipes/bolt_armor_trim_smithing_template_duplicate_waxed.json new file mode 100644 index 000000000..88d9cdcdc --- /dev/null +++ b/behavior_pack/recipes/bolt_armor_trim_smithing_template_duplicate_waxed.json @@ -0,0 +1,34 @@ +{ + "format_version": "1.20.60", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:bolt_armor_trim_smithing_template_duplicate_waxed" + }, + "tags": [ "crafting_table" ], + "pattern": [ + "#S#", + "#C#", + "###" + ], + "key": { + "S": { + "item": "minecraft:bolt_armor_trim_smithing_template" + }, + "#": { + "item": "minecraft:diamond" + }, + "C": { + "item": "minecraft:waxed_copper" + } + }, + "unlock": [ + { + "item": "minecraft:bolt_armor_trim_smithing_template" + } + ], + "result": { + "item": "minecraft:bolt_armor_trim_smithing_template", + "count": 2 + } + } +} diff --git a/behavior_pack/recipes/brew_awkward_breeze_rod.json b/behavior_pack/recipes/brew_awkward_breeze_rod.json new file mode 100644 index 000000000..ec60f8672 --- /dev/null +++ b/behavior_pack/recipes/brew_awkward_breeze_rod.json @@ -0,0 +1,15 @@ +{ + "format_version": "1.12", + "minecraft:recipe_brewing_mix": { + "description": { + "identifier": "minecraft:brew_awkward_breeze_rod" + }, + + "tags": [ "brewing_stand" ], + + "input": "minecraft:potion_type:awkward", + "reagent": "minecraft:breeze_rod", + "output": "minecraft:potion_type:wind_charged" + } + +} diff --git a/behavior_pack/recipes/brew_awkward_slime_block.json b/behavior_pack/recipes/brew_awkward_slime_block.json new file mode 100644 index 000000000..70c4fa31c --- /dev/null +++ b/behavior_pack/recipes/brew_awkward_slime_block.json @@ -0,0 +1,15 @@ +{ + "format_version": "1.12", + "minecraft:recipe_brewing_mix": { + "description": { + "identifier": "minecraft:brew_awkward_slime_block" + }, + + "tags": [ "brewing_stand" ], + + "input": "minecraft:potion_type:awkward", + "reagent": "minecraft:slime", + "output": "minecraft:potion_type:oozing" + } + +} diff --git a/behavior_pack/recipes/brew_awkward_stone.json b/behavior_pack/recipes/brew_awkward_stone.json new file mode 100644 index 000000000..78333b33c --- /dev/null +++ b/behavior_pack/recipes/brew_awkward_stone.json @@ -0,0 +1,15 @@ +{ + "format_version": "1.12", + "minecraft:recipe_brewing_mix": { + "description": { + "identifier": "minecraft:brew_awkward_stone" + }, + + "tags": [ "brewing_stand" ], + + "input": "minecraft:potion_type:awkward", + "reagent": "minecraft:stone", + "output": "minecraft:potion_type:infested" + } + +} diff --git a/behavior_pack/recipes/brew_awkward_web.json b/behavior_pack/recipes/brew_awkward_web.json new file mode 100644 index 000000000..904530923 --- /dev/null +++ b/behavior_pack/recipes/brew_awkward_web.json @@ -0,0 +1,15 @@ +{ + "format_version": "1.12", + "minecraft:recipe_brewing_mix": { + "description": { + "identifier": "minecraft:brew_awkward_web" + }, + + "tags": [ "brewing_stand" ], + + "input": "minecraft:potion_type:awkward", + "reagent": "minecraft:web", + "output": "minecraft:potion_type:weaving" + } + +} diff --git a/behavior_pack/recipes/brew_water_breeze_rod.json b/behavior_pack/recipes/brew_water_breeze_rod.json new file mode 100644 index 000000000..2a8682a4a --- /dev/null +++ b/behavior_pack/recipes/brew_water_breeze_rod.json @@ -0,0 +1,15 @@ +{ + "format_version": "1.12", + "minecraft:recipe_brewing_mix": { + "description": { + "identifier": "minecraft:brew_water_breeze_rod" + }, + + "tags": [ "brewing_stand" ], + + "input": "minecraft:potion_type:water", + "reagent": "minecraft:breeze_rod", + "output": "minecraft:potion_type:mundane" + } + +} diff --git a/behavior_pack/recipes/brew_water_slime_block.json b/behavior_pack/recipes/brew_water_slime_block.json new file mode 100644 index 000000000..f403f9d9a --- /dev/null +++ b/behavior_pack/recipes/brew_water_slime_block.json @@ -0,0 +1,15 @@ +{ + "format_version": "1.12", + "minecraft:recipe_brewing_mix": { + "description": { + "identifier": "minecraft:brew_water_slime_block" + }, + + "tags": [ "brewing_stand" ], + + "input": "minecraft:potion_type:water", + "reagent": "minecraft:slime", + "output": "minecraft:potion_type:mundane" + } + +} diff --git a/behavior_pack/recipes/brew_water_stone.json b/behavior_pack/recipes/brew_water_stone.json new file mode 100644 index 000000000..cd513291f --- /dev/null +++ b/behavior_pack/recipes/brew_water_stone.json @@ -0,0 +1,15 @@ +{ + "format_version": "1.12", + "minecraft:recipe_brewing_mix": { + "description": { + "identifier": "minecraft:brew_water_stone" + }, + + "tags": [ "brewing_stand" ], + + "input": "minecraft:potion_type:water", + "reagent": "minecraft:stone", + "output": "minecraft:potion_type:mundane" + } + +} diff --git a/behavior_pack/recipes/brew_water_web.json b/behavior_pack/recipes/brew_water_web.json new file mode 100644 index 000000000..e499a72bf --- /dev/null +++ b/behavior_pack/recipes/brew_water_web.json @@ -0,0 +1,15 @@ +{ + "format_version": "1.12", + "minecraft:recipe_brewing_mix": { + "description": { + "identifier": "minecraft:brew_water_web" + }, + + "tags": [ "brewing_stand" ], + + "input": "minecraft:potion_type:water", + "reagent": "minecraft:web", + "output": "minecraft:potion_type:mundane" + } + +} diff --git a/behavior_pack/recipes/chiseled_nether_bricks.json b/behavior_pack/recipes/chiseled_nether_bricks.json index c2a7440ee..e8d89f109 100644 --- a/behavior_pack/recipes/chiseled_nether_bricks.json +++ b/behavior_pack/recipes/chiseled_nether_bricks.json @@ -11,16 +11,14 @@ ], "key": { "#": { - "item": "minecraft:stone_slab", - "data": 7 + "item": "minecraft:nether_brick_slab" } }, - "unlock": [ - { - "item": "minecraft:stone_slab", - "data": 7 - } - ], + "unlock": [ + { + "item": "minecraft:nether_brick_slab" + } + ], "result": { "item": "minecraft:chiseled_nether_bricks" } diff --git a/behavior_pack/recipes/chiseled_tuff.json b/behavior_pack/recipes/chiseled_tuff.json new file mode 100644 index 000000000..d81b3a258 --- /dev/null +++ b/behavior_pack/recipes/chiseled_tuff.json @@ -0,0 +1,29 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:chiseled_tuff" + }, + "tags": [ + "crafting_table" + ], + "key": { + "#": { + "item": "minecraft:tuff_slab" + } + }, + "pattern": [ + "#", + "#" + ], + "unlock": [ + { + "item": "minecraft:tuff_slab" + } + ], + "priority": 1, + "result": { + "item": "minecraft:chiseled_tuff" + } + } +} diff --git a/behavior_pack/recipes/chiseled_tuff_bricks.json b/behavior_pack/recipes/chiseled_tuff_bricks.json new file mode 100644 index 000000000..4947d0d85 --- /dev/null +++ b/behavior_pack/recipes/chiseled_tuff_bricks.json @@ -0,0 +1,29 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:chiseled_tuff_bricks" + }, + "tags": [ + "crafting_table" + ], + "key": { + "#": { + "item": "minecraft:tuff_brick_slab" + } + }, + "pattern": [ + "#", + "#" + ], + "unlock": [ + { + "item": "minecraft:tuff_brick_slab" + } + ], + "priority": 1, + "result": { + "item": "minecraft:chiseled_tuff_bricks" + } + } +} diff --git a/behavior_pack/recipes/crafter.json b/behavior_pack/recipes/crafter.json new file mode 100644 index 000000000..958f3361a --- /dev/null +++ b/behavior_pack/recipes/crafter.json @@ -0,0 +1,37 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:crafter" + }, + + "tags": [ "crafting_table" ], + "pattern": [ + "###", + "#C#", + "RDR" + ], + "key": { + "R": { + "item": "minecraft:redstone" + }, + "#": { + "item": "minecraft:iron_ingot" + }, + "D": { + "item": "minecraft:dropper" + }, + "C": { + "item": "minecraft:crafting_table" + } + }, + "unlock": [ + { + "item": "minecraft:dropper" + } + ], + "result": { + "item": "minecraft:crafter" + } + } +} diff --git a/behavior_pack/recipes/crafting_table_chiseled_copper.json b/behavior_pack/recipes/crafting_table_chiseled_copper.json new file mode 100644 index 000000000..9caf97596 --- /dev/null +++ b/behavior_pack/recipes/crafting_table_chiseled_copper.json @@ -0,0 +1,29 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:crafting_table_chiseled_copper" + }, + "tags": [ + "crafting_table" + ], + "key": { + "#": { + "item": "minecraft:cut_copper_slab" + } + }, + "pattern": [ + "#", + "#" + ], + "unlock": [ + { + "item": "minecraft:cut_copper_slab" + } + ], + "priority": 1, + "result": { + "item": "minecraft:chiseled_copper" + } + } +} diff --git a/behavior_pack/recipes/crafting_table_copper_bulb.json b/behavior_pack/recipes/crafting_table_copper_bulb.json new file mode 100644 index 000000000..5ee1cc626 --- /dev/null +++ b/behavior_pack/recipes/crafting_table_copper_bulb.json @@ -0,0 +1,35 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:copper_bulb" + }, + + "tags": [ "crafting_table" ], + "pattern": [ + " # ", + "#B#", + " R " + ], + "key": { + "R": { + "item": "minecraft:redstone" + }, + "#": { + "item": "minecraft:copper_block" + }, + "B": { + "item": "minecraft:blaze_rod" + } + }, + "unlock": [ + { + "item": "minecraft:copper_block" + } + ], + "result": { + "item": "minecraft:copper_bulb", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/crafting_table_copper_door.json b/behavior_pack/recipes/crafting_table_copper_door.json new file mode 100644 index 000000000..c2dc324c7 --- /dev/null +++ b/behavior_pack/recipes/crafting_table_copper_door.json @@ -0,0 +1,30 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:copper_door" + }, + "tags": [ + "crafting_table" + ], + "pattern": [ + "##", + "##", + "##" + ], + "key": { + "#": { + "item": "minecraft:copper_ingot" + } + }, + "unlock": [ + { + "item": "minecraft:copper_ingot" + } + ], + "result": { + "item": "minecraft:copper_door", + "count": 3 + } + } +} \ No newline at end of file diff --git a/behavior_pack/recipes/crafting_table_copper_grate.json b/behavior_pack/recipes/crafting_table_copper_grate.json new file mode 100644 index 000000000..e24f0b425 --- /dev/null +++ b/behavior_pack/recipes/crafting_table_copper_grate.json @@ -0,0 +1,28 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:copper_grate" + }, + "tags": [ "crafting_table" ], + "pattern": [ + " # ", + "# #", + " # " + ], + "key": { + "#": { + "item": "minecraft:copper_block" + } + }, + "unlock": [ + { + "item": "minecraft:copper_block" + } + ], + "result": { + "item": "minecraft:copper_grate", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/crafting_table_copper_trapdoor.json b/behavior_pack/recipes/crafting_table_copper_trapdoor.json new file mode 100644 index 000000000..ce35f8026 --- /dev/null +++ b/behavior_pack/recipes/crafting_table_copper_trapdoor.json @@ -0,0 +1,29 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:copper_trapdoor" + }, + "tags": [ + "crafting_table" + ], + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:copper_ingot" + } + }, + "unlock": [ + { + "item": "minecraft:copper_ingot" + } + ], + "result": { + "item": "minecraft:copper_trapdoor", + "count": 2 + } + } +} \ No newline at end of file diff --git a/behavior_pack/recipes/crafting_table_exposed_chiseled_copper.json b/behavior_pack/recipes/crafting_table_exposed_chiseled_copper.json new file mode 100644 index 000000000..8a419871d --- /dev/null +++ b/behavior_pack/recipes/crafting_table_exposed_chiseled_copper.json @@ -0,0 +1,29 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:exposed_chiseled_copper" + }, + "tags": [ + "crafting_table" + ], + "pattern": [ + "#", + "#" + ], + "key": { + "#": { + "item": "minecraft:exposed_cut_copper_slab" + } + }, + "unlock": [ + { + "item": "minecraft:exposed_cut_copper_slab" + } + ], + "result": { + "count": 1, + "item": "minecraft:exposed_chiseled_copper" + } + } +} \ No newline at end of file diff --git a/behavior_pack/recipes/crafting_table_exposed_copper_bulb.json b/behavior_pack/recipes/crafting_table_exposed_copper_bulb.json new file mode 100644 index 000000000..9151a0e6b --- /dev/null +++ b/behavior_pack/recipes/crafting_table_exposed_copper_bulb.json @@ -0,0 +1,35 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:exposed_copper_bulb" + }, + + "tags": [ "crafting_table" ], + "pattern": [ + " # ", + "#B#", + " R " + ], + "key": { + "R": { + "item": "minecraft:redstone" + }, + "#": { + "item": "minecraft:exposed_copper" + }, + "B": { + "item": "minecraft:blaze_rod" + } + }, + "unlock": [ + { + "item": "minecraft:exposed_copper" + } + ], + "result": { + "item": "minecraft:exposed_copper_bulb", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/crafting_table_exposed_copper_grate.json b/behavior_pack/recipes/crafting_table_exposed_copper_grate.json new file mode 100644 index 000000000..8c49f4656 --- /dev/null +++ b/behavior_pack/recipes/crafting_table_exposed_copper_grate.json @@ -0,0 +1,28 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:exposed_copper_grate" + }, + "tags": [ "crafting_table" ], + "pattern": [ + " # ", + "# #", + " # " + ], + "key": { + "#": { + "item": "minecraft:exposed_copper" + } + }, + "unlock": [ + { + "item": "minecraft:exposed_copper" + } + ], + "result": { + "item": "minecraft:exposed_copper_grate", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/crafting_table_oxidized_chiseled_copper.json b/behavior_pack/recipes/crafting_table_oxidized_chiseled_copper.json new file mode 100644 index 000000000..8cbe92e19 --- /dev/null +++ b/behavior_pack/recipes/crafting_table_oxidized_chiseled_copper.json @@ -0,0 +1,29 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:oxidized_chiseled_copper" + }, + "tags": [ + "crafting_table" + ], + "pattern": [ + "#", + "#" + ], + "key": { + "#": { + "item": "minecraft:oxidized_cut_copper_slab" + } + }, + "unlock": [ + { + "item": "minecraft:oxidized_cut_copper_slab" + } + ], + "result": { + "count": 1, + "item": "minecraft:oxidized_chiseled_copper" + } + } +} \ No newline at end of file diff --git a/behavior_pack/recipes/crafting_table_oxidized_copper_bulb.json b/behavior_pack/recipes/crafting_table_oxidized_copper_bulb.json new file mode 100644 index 000000000..28d260369 --- /dev/null +++ b/behavior_pack/recipes/crafting_table_oxidized_copper_bulb.json @@ -0,0 +1,35 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:oxidized_copper_bulb" + }, + + "tags": [ "crafting_table" ], + "pattern": [ + " # ", + "#B#", + " R " + ], + "key": { + "R": { + "item": "minecraft:redstone" + }, + "#": { + "item": "minecraft:oxidized_copper" + }, + "B": { + "item": "minecraft:blaze_rod" + } + }, + "unlock": [ + { + "item": "minecraft:oxidized_copper" + } + ], + "result": { + "item": "minecraft:oxidized_copper_bulb", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/crafting_table_oxidized_copper_grate.json b/behavior_pack/recipes/crafting_table_oxidized_copper_grate.json new file mode 100644 index 000000000..fc1bcdcdf --- /dev/null +++ b/behavior_pack/recipes/crafting_table_oxidized_copper_grate.json @@ -0,0 +1,28 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:oxidized_copper_grate" + }, + "tags": [ "crafting_table" ], + "pattern": [ + " # ", + "# #", + " # " + ], + "key": { + "#": { + "item": "minecraft:oxidized_copper" + } + }, + "unlock": [ + { + "item": "minecraft:oxidized_copper" + } + ], + "result": { + "item": "minecraft:oxidized_copper_grate", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/crafting_table_waxed_chiseled_copper.json b/behavior_pack/recipes/crafting_table_waxed_chiseled_copper.json new file mode 100644 index 000000000..70a4146d8 --- /dev/null +++ b/behavior_pack/recipes/crafting_table_waxed_chiseled_copper.json @@ -0,0 +1,29 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:waxed_chiseled_copper" + }, + "tags": [ + "crafting_table" + ], + "pattern": [ + "#", + "#" + ], + "key": { + "#": { + "item": "minecraft:waxed_cut_copper_slab" + } + }, + "unlock": [ + { + "item": "minecraft:waxed_cut_copper_slab" + } + ], + "result": { + "count": 1, + "item": "minecraft:waxed_chiseled_copper" + } + } +} \ No newline at end of file diff --git a/behavior_pack/recipes/crafting_table_waxed_copper_bulb.json b/behavior_pack/recipes/crafting_table_waxed_copper_bulb.json new file mode 100644 index 000000000..de3c74740 --- /dev/null +++ b/behavior_pack/recipes/crafting_table_waxed_copper_bulb.json @@ -0,0 +1,35 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:waxed_copper_bulb" + }, + + "tags": [ "crafting_table" ], + "pattern": [ + " # ", + "#B#", + " R " + ], + "key": { + "R": { + "item": "minecraft:redstone" + }, + "#": { + "item": "minecraft:waxed_copper" + }, + "B": { + "item": "minecraft:blaze_rod" + } + }, + "unlock": [ + { + "item": "minecraft:waxed_copper" + } + ], + "result": { + "item": "minecraft:waxed_copper_bulb", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/crafting_table_waxed_copper_door.json b/behavior_pack/recipes/crafting_table_waxed_copper_door.json new file mode 100644 index 000000000..77bbae31e --- /dev/null +++ b/behavior_pack/recipes/crafting_table_waxed_copper_door.json @@ -0,0 +1,30 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:crafting_table_waxed_copper_door" + }, + "tags": [ + "crafting_table" + ], + "pattern": [ + "##", + "##", + "##" + ], + "key": { + "#": { + "item": "minecraft:waxed_copper" + } + }, + "unlock": [ + { + "item": "minecraft:waxed_copper" + } + ], + "result": { + "item": "minecraft:waxed_copper_door", + "count": 3 + } + } +} diff --git a/behavior_pack/recipes/crafting_table_waxed_copper_grate.json b/behavior_pack/recipes/crafting_table_waxed_copper_grate.json new file mode 100644 index 000000000..9d48f5d09 --- /dev/null +++ b/behavior_pack/recipes/crafting_table_waxed_copper_grate.json @@ -0,0 +1,30 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:waxed_copper_grate" + }, + "tags": [ + "crafting_table" + ], + "pattern": [ + " M ", + "M M", + " M " + ], + "key": { + "M": { + "item": "minecraft:waxed_copper" + } + }, + "unlock": [ + { + "item": "minecraft:waxed_copper" + } + ], + "result": { + "count": 4, + "item": "minecraft:waxed_copper_grate" + } + } +} \ No newline at end of file diff --git a/behavior_pack/recipes/crafting_table_waxed_exposed_chiseled_copper.json b/behavior_pack/recipes/crafting_table_waxed_exposed_chiseled_copper.json new file mode 100644 index 000000000..6ac16d1b8 --- /dev/null +++ b/behavior_pack/recipes/crafting_table_waxed_exposed_chiseled_copper.json @@ -0,0 +1,29 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:waxed_exposed_chiseled_copper" + }, + "tags": [ + "crafting_table" + ], + "pattern": [ + "#", + "#" + ], + "key": { + "#": { + "item": "minecraft:waxed_exposed_cut_copper_slab" + } + }, + "unlock": [ + { + "item": "minecraft:waxed_exposed_cut_copper_slab" + } + ], + "result": { + "count": 1, + "item": "minecraft:waxed_exposed_chiseled_copper" + } + } +} \ No newline at end of file diff --git a/behavior_pack/recipes/crafting_table_waxed_exposed_copper_bulb.json b/behavior_pack/recipes/crafting_table_waxed_exposed_copper_bulb.json new file mode 100644 index 000000000..456e91b07 --- /dev/null +++ b/behavior_pack/recipes/crafting_table_waxed_exposed_copper_bulb.json @@ -0,0 +1,35 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:waxed_exposed_copper_bulb" + }, + + "tags": [ "crafting_table" ], + "pattern": [ + " # ", + "#B#", + " R " + ], + "key": { + "R": { + "item": "minecraft:redstone" + }, + "#": { + "item": "minecraft:waxed_exposed_copper" + }, + "B": { + "item": "minecraft:blaze_rod" + } + }, + "unlock": [ + { + "item": "minecraft:waxed_exposed_copper" + } + ], + "result": { + "item": "minecraft:waxed_exposed_copper_bulb", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/crafting_table_waxed_exposed_copper_grate.json b/behavior_pack/recipes/crafting_table_waxed_exposed_copper_grate.json new file mode 100644 index 000000000..97e159c33 --- /dev/null +++ b/behavior_pack/recipes/crafting_table_waxed_exposed_copper_grate.json @@ -0,0 +1,30 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:waxed_exposed_copper_grate" + }, + "tags": [ + "crafting_table" + ], + "pattern": [ + " M ", + "M M", + " M " + ], + "key": { + "M": { + "item": "minecraft:waxed_exposed_copper" + } + }, + "unlock": [ + { + "item": "minecraft:waxed_exposed_copper" + } + ], + "result": { + "count": 4, + "item": "minecraft:waxed_exposed_copper_grate" + } + } +} \ No newline at end of file diff --git a/behavior_pack/recipes/crafting_table_waxed_oxidized_chiseled_copper.json b/behavior_pack/recipes/crafting_table_waxed_oxidized_chiseled_copper.json new file mode 100644 index 000000000..09e7bffec --- /dev/null +++ b/behavior_pack/recipes/crafting_table_waxed_oxidized_chiseled_copper.json @@ -0,0 +1,29 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:waxed_oxidized_chiseled_copper" + }, + "tags": [ + "crafting_table" + ], + "pattern": [ + "#", + "#" + ], + "key": { + "#": { + "item": "minecraft:waxed_oxidized_cut_copper_slab" + } + }, + "unlock": [ + { + "item": "minecraft:waxed_oxidized_cut_copper_slab" + } + ], + "result": { + "count": 1, + "item": "minecraft:waxed_oxidized_chiseled_copper" + } + } +} \ No newline at end of file diff --git a/behavior_pack/recipes/crafting_table_waxed_oxidized_copper_bulb.json b/behavior_pack/recipes/crafting_table_waxed_oxidized_copper_bulb.json new file mode 100644 index 000000000..1758614a2 --- /dev/null +++ b/behavior_pack/recipes/crafting_table_waxed_oxidized_copper_bulb.json @@ -0,0 +1,35 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:waxed_oxidized_copper_bulb" + }, + + "tags": [ "crafting_table" ], + "pattern": [ + " # ", + "#B#", + " R " + ], + "key": { + "R": { + "item": "minecraft:redstone" + }, + "#": { + "item": "minecraft:waxed_oxidized_copper" + }, + "B": { + "item": "minecraft:blaze_rod" + } + }, + "unlock": [ + { + "item": "minecraft:waxed_oxidized_copper" + } + ], + "result": { + "item": "minecraft:waxed_oxidized_copper_bulb", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/crafting_table_waxed_oxidized_copper_grate.json b/behavior_pack/recipes/crafting_table_waxed_oxidized_copper_grate.json new file mode 100644 index 000000000..4c53f2b99 --- /dev/null +++ b/behavior_pack/recipes/crafting_table_waxed_oxidized_copper_grate.json @@ -0,0 +1,30 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:waxed_oxidized_copper_grate" + }, + "tags": [ + "crafting_table" + ], + "pattern": [ + " M ", + "M M", + " M " + ], + "key": { + "M": { + "item": "minecraft:waxed_oxidized_copper" + } + }, + "unlock": [ + { + "item": "minecraft:waxed_oxidized_copper" + } + ], + "result": { + "count": 4, + "item": "minecraft:waxed_oxidized_copper_grate" + } + } +} \ No newline at end of file diff --git a/behavior_pack/recipes/crafting_table_waxed_weathered_chiseled_copper.json b/behavior_pack/recipes/crafting_table_waxed_weathered_chiseled_copper.json new file mode 100644 index 000000000..a8b7f28e0 --- /dev/null +++ b/behavior_pack/recipes/crafting_table_waxed_weathered_chiseled_copper.json @@ -0,0 +1,29 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:waxed_weathered_chiseled_copper" + }, + "tags": [ + "crafting_table" + ], + "pattern": [ + "#", + "#" + ], + "key": { + "#": { + "item": "minecraft:waxed_weathered_cut_copper_slab" + } + }, + "unlock": [ + { + "item": "minecraft:waxed_weathered_cut_copper_slab" + } + ], + "result": { + "count": 1, + "item": "minecraft:waxed_weathered_chiseled_copper" + } + } +} \ No newline at end of file diff --git a/behavior_pack/recipes/crafting_table_waxed_weathered_copper_bulb.json b/behavior_pack/recipes/crafting_table_waxed_weathered_copper_bulb.json new file mode 100644 index 000000000..7e1a98669 --- /dev/null +++ b/behavior_pack/recipes/crafting_table_waxed_weathered_copper_bulb.json @@ -0,0 +1,35 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:waxed_weathered_copper_bulb" + }, + + "tags": [ "crafting_table" ], + "pattern": [ + " # ", + "#B#", + " R " + ], + "key": { + "R": { + "item": "minecraft:redstone" + }, + "#": { + "item": "minecraft:waxed_weathered_copper" + }, + "B": { + "item": "minecraft:blaze_rod" + } + }, + "unlock": [ + { + "item": "minecraft:waxed_weathered_copper" + } + ], + "result": { + "item": "minecraft:waxed_weathered_copper_bulb", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/crafting_table_waxed_weathered_copper_grate.json b/behavior_pack/recipes/crafting_table_waxed_weathered_copper_grate.json new file mode 100644 index 000000000..7bb3b2393 --- /dev/null +++ b/behavior_pack/recipes/crafting_table_waxed_weathered_copper_grate.json @@ -0,0 +1,30 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:waxed_weathered_copper_grate" + }, + "tags": [ + "crafting_table" + ], + "pattern": [ + " M ", + "M M", + " M " + ], + "key": { + "M": { + "item": "minecraft:waxed_weathered_copper" + } + }, + "unlock": [ + { + "item": "minecraft:waxed_weathered_copper" + } + ], + "result": { + "count": 4, + "item": "minecraft:waxed_weathered_copper_grate" + } + } +} \ No newline at end of file diff --git a/behavior_pack/recipes/crafting_table_weathered_chiseled_copper.json b/behavior_pack/recipes/crafting_table_weathered_chiseled_copper.json new file mode 100644 index 000000000..7f18844a7 --- /dev/null +++ b/behavior_pack/recipes/crafting_table_weathered_chiseled_copper.json @@ -0,0 +1,29 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:weathered_chiseled_copper" + }, + "tags": [ + "crafting_table" + ], + "pattern": [ + "#", + "#" + ], + "key": { + "#": { + "item": "minecraft:weathered_cut_copper_slab" + } + }, + "unlock": [ + { + "item": "minecraft:weathered_cut_copper_slab" + } + ], + "result": { + "count": 1, + "item": "minecraft:weathered_chiseled_copper" + } + } +} \ No newline at end of file diff --git a/behavior_pack/recipes/crafting_table_weathered_copper_bulb.json b/behavior_pack/recipes/crafting_table_weathered_copper_bulb.json new file mode 100644 index 000000000..0a3c08fcc --- /dev/null +++ b/behavior_pack/recipes/crafting_table_weathered_copper_bulb.json @@ -0,0 +1,35 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:weathered_copper_bulb" + }, + + "tags": [ "crafting_table" ], + "pattern": [ + " # ", + "#B#", + " R " + ], + "key": { + "R": { + "item": "minecraft:redstone" + }, + "#": { + "item": "minecraft:weathered_copper" + }, + "B": { + "item": "minecraft:blaze_rod" + } + }, + "unlock": [ + { + "item": "minecraft:weathered_copper" + } + ], + "result": { + "item": "minecraft:weathered_copper_bulb", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/crafting_table_weathered_copper_grate.json b/behavior_pack/recipes/crafting_table_weathered_copper_grate.json new file mode 100644 index 000000000..fc6757657 --- /dev/null +++ b/behavior_pack/recipes/crafting_table_weathered_copper_grate.json @@ -0,0 +1,28 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:weathered_copper_grate" + }, + "tags": [ "crafting_table" ], + "pattern": [ + " # ", + "# #", + " # " + ], + "key": { + "#": { + "item": "minecraft:weathered_copper" + } + }, + "unlock": [ + { + "item": "minecraft:weathered_copper" + } + ], + "result": { + "item": "minecraft:weathered_copper_grate", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/flow_armor_trim_smithing_template_duplicate.json b/behavior_pack/recipes/flow_armor_trim_smithing_template_duplicate.json new file mode 100644 index 000000000..92ea22db9 --- /dev/null +++ b/behavior_pack/recipes/flow_armor_trim_smithing_template_duplicate.json @@ -0,0 +1,34 @@ +{ + "format_version": "1.20.60", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:flow_armor_trim_smithing_template_duplicate" + }, + "tags": [ "crafting_table" ], + "pattern": [ + "#S#", + "#C#", + "###" + ], + "key": { + "S": { + "item": "minecraft:flow_armor_trim_smithing_template" + }, + "#": { + "item": "minecraft:diamond" + }, + "C": { + "item": "minecraft:breeze_rod" + } + }, + "unlock": [ + { + "item": "minecraft:flow_armor_trim_smithing_template" + } + ], + "result": { + "item": "minecraft:flow_armor_trim_smithing_template", + "count": 2 + } + } +} diff --git a/behavior_pack/recipes/grindstone_from_crimson_planks.json b/behavior_pack/recipes/grindstone_from_crimson_planks.json index 31ad5cd81..d25518c7c 100644 --- a/behavior_pack/recipes/grindstone_from_crimson_planks.json +++ b/behavior_pack/recipes/grindstone_from_crimson_planks.json @@ -4,27 +4,25 @@ "description": { "identifier": "minecraft:grindstone_from_crimson_planks" }, - "tags": [ - "crafting_table" - ], + "tags": [ "crafting_table" ], "pattern": [ - "ABA", - "C C" + "|_|", + "# #" ], "key": { - "A": { - "item": "stick" - }, - "B": { - "item": "stone_slab" - }, - "C": { - "item": "crimson_planks" - } + "|": { + "item": "minecraft:stick" + }, + "#": { + "item": "minecraft:crimson_planks" + }, + "_": { + "item": "minecraft:double_stone_slab4", + "data": 2 + } }, "result": { - "item": "grindstone", - "count": 1 + "item": "minecraft:grindstone" }, "priority": 2 } diff --git a/behavior_pack/recipes/grindstone_from_crimson_planks2.json b/behavior_pack/recipes/grindstone_from_crimson_planks2.json index cd8a7d12f..b3ee2e4c1 100644 --- a/behavior_pack/recipes/grindstone_from_crimson_planks2.json +++ b/behavior_pack/recipes/grindstone_from_crimson_planks2.json @@ -5,27 +5,18 @@ "identifier": "minecraft:grindstone_from_crimson_planks2" }, "tags": [ - "crafting_table" + "deprecated" ], "pattern": [ - "ABA", - "C C" + "#" ], "key": { - "A": { - "item": "stick" - }, - "B": { - "item": "stone_slab2" - }, - "C": { - "item": "crimson_planks" + "#": { + "item": "grindstone" } }, "result": { - "item": "grindstone", - "count": 1 - }, - "priority": 2 + "item": "grindstone" + } } } \ No newline at end of file diff --git a/behavior_pack/recipes/grindstone_from_crimson_planks3.json b/behavior_pack/recipes/grindstone_from_crimson_planks3.json index 88d9c6dd6..0e83e090a 100644 --- a/behavior_pack/recipes/grindstone_from_crimson_planks3.json +++ b/behavior_pack/recipes/grindstone_from_crimson_planks3.json @@ -5,27 +5,18 @@ "identifier": "minecraft:grindstone_from_crimson_planks3" }, "tags": [ - "crafting_table" + "deprecated" ], "pattern": [ - "ABA", - "C C" + "#" ], "key": { - "A": { - "item": "stick" - }, - "B": { - "item": "stone_slab3" - }, - "C": { - "item": "crimson_planks" + "#": { + "item": "grindstone" } }, "result": { - "item": "grindstone", - "count": 1 - }, - "priority": 2 + "item": "grindstone" + } } } \ No newline at end of file diff --git a/behavior_pack/recipes/grindstone_from_crimson_planks4.json b/behavior_pack/recipes/grindstone_from_crimson_planks4.json index c026c99ff..64d11de70 100644 --- a/behavior_pack/recipes/grindstone_from_crimson_planks4.json +++ b/behavior_pack/recipes/grindstone_from_crimson_planks4.json @@ -5,27 +5,18 @@ "identifier": "minecraft:grindstone_from_crimson_planks4" }, "tags": [ - "crafting_table" + "deprecated" ], "pattern": [ - "ABA", - "C C" + "#" ], "key": { - "A": { - "item": "stick" - }, - "B": { - "item": "stone_slab4" - }, - "C": { - "item": "crimson_planks" + "#": { + "item": "grindstone" } }, "result": { - "item": "grindstone", - "count": 1 - }, - "priority": 2 + "item": "grindstone" + } } } \ No newline at end of file diff --git a/behavior_pack/recipes/grindstone_from_mangrove_planks.json b/behavior_pack/recipes/grindstone_from_mangrove_planks.json index f7f4400d7..31482adeb 100644 --- a/behavior_pack/recipes/grindstone_from_mangrove_planks.json +++ b/behavior_pack/recipes/grindstone_from_mangrove_planks.json @@ -4,27 +4,25 @@ "description": { "identifier": "minecraft:grindstone_from_mangrove_planks" }, - "tags": [ - "crafting_table" - ], + "tags": [ "crafting_table" ], "pattern": [ - "ABA", - "C C" + "|_|", + "# #" ], "key": { - "A": { - "item": "stick" - }, - "B": { - "item": "stone_slab" - }, - "C": { - "item": "mangrove_planks" - } + "|": { + "item": "minecraft:stick" + }, + "#": { + "item": "minecraft:mangrove_planks" + }, + "_": { + "item": "minecraft:double_stone_slab4", + "data": 2 + } }, "result": { - "item": "grindstone", - "count": 1 + "item": "minecraft:grindstone" }, "priority": 2 } diff --git a/behavior_pack/recipes/grindstone_from_mangrove_planks2.json b/behavior_pack/recipes/grindstone_from_mangrove_planks2.json index 4af53376f..20db604ec 100644 --- a/behavior_pack/recipes/grindstone_from_mangrove_planks2.json +++ b/behavior_pack/recipes/grindstone_from_mangrove_planks2.json @@ -5,27 +5,18 @@ "identifier": "minecraft:grindstone_from_mangrove_planks2" }, "tags": [ - "crafting_table" + "deprecated" ], "pattern": [ - "ABA", - "C C" + "#" ], "key": { - "A": { - "item": "stick" - }, - "B": { - "item": "stone_slab2" - }, - "C": { - "item": "mangrove_planks" + "#": { + "item": "grindstone" } }, "result": { - "item": "grindstone", - "count": 1 - }, - "priority": 2 + "item": "grindstone" + } } } \ No newline at end of file diff --git a/behavior_pack/recipes/grindstone_from_mangrove_planks3.json b/behavior_pack/recipes/grindstone_from_mangrove_planks3.json index de9c2a526..c8fe42f3e 100644 --- a/behavior_pack/recipes/grindstone_from_mangrove_planks3.json +++ b/behavior_pack/recipes/grindstone_from_mangrove_planks3.json @@ -5,27 +5,18 @@ "identifier": "minecraft:grindstone_from_mangrove_planks3" }, "tags": [ - "crafting_table" + "deprecated" ], "pattern": [ - "ABA", - "C C" + "#" ], "key": { - "A": { - "item": "stick" - }, - "B": { - "item": "stone_slab3" - }, - "C": { - "item": "mangrove_planks" + "#": { + "item": "grindstone" } }, "result": { - "item": "grindstone", - "count": 1 - }, - "priority": 2 + "item": "grindstone" + } } } \ No newline at end of file diff --git a/behavior_pack/recipes/grindstone_from_mangrove_planks4.json b/behavior_pack/recipes/grindstone_from_mangrove_planks4.json index 1c2f2439d..ab0ef959d 100644 --- a/behavior_pack/recipes/grindstone_from_mangrove_planks4.json +++ b/behavior_pack/recipes/grindstone_from_mangrove_planks4.json @@ -5,27 +5,18 @@ "identifier": "minecraft:grindstone_from_mangrove_planks4" }, "tags": [ - "crafting_table" + "deprecated" ], "pattern": [ - "ABA", - "C C" + "#" ], "key": { - "A": { - "item": "stick" - }, - "B": { - "item": "stone_slab4" - }, - "C": { - "item": "mangrove_planks" + "#": { + "item": "grindstone" } }, "result": { - "item": "grindstone", - "count": 1 - }, - "priority": 2 + "item": "grindstone" + } } } \ No newline at end of file diff --git a/behavior_pack/recipes/grindstone_from_warped_planks.json b/behavior_pack/recipes/grindstone_from_warped_planks.json index 10f9bbe40..cdab10a4d 100644 --- a/behavior_pack/recipes/grindstone_from_warped_planks.json +++ b/behavior_pack/recipes/grindstone_from_warped_planks.json @@ -4,27 +4,25 @@ "description": { "identifier": "minecraft:grindstone_from_warped_planks" }, - "tags": [ - "crafting_table" - ], + "tags": [ "crafting_table" ], "pattern": [ - "ABA", - "C C" + "|_|", + "# #" ], "key": { - "A": { - "item": "stick" - }, - "B": { - "item": "stone_slab" - }, - "C": { - "item": "warped_planks" - } + "|": { + "item": "minecraft:stick" + }, + "#": { + "item": "minecraft:warped_planks" + }, + "_": { + "item": "minecraft:double_stone_slab4", + "data": 2 + } }, "result": { - "item": "grindstone", - "count": 1 + "item": "minecraft:grindstone" }, "priority": 2 } diff --git a/behavior_pack/recipes/grindstone_from_warped_planks2.json b/behavior_pack/recipes/grindstone_from_warped_planks2.json index a9df6bd2b..95d765393 100644 --- a/behavior_pack/recipes/grindstone_from_warped_planks2.json +++ b/behavior_pack/recipes/grindstone_from_warped_planks2.json @@ -5,27 +5,18 @@ "identifier": "minecraft:grindstone_from_warped_planks2" }, "tags": [ - "crafting_table" + "deprecated" ], "pattern": [ - "ABA", - "C C" + "#" ], "key": { - "A": { - "item": "stick" - }, - "B": { - "item": "stone_slab2" - }, - "C": { - "item": "warped_planks" + "#": { + "item": "grindstone" } }, "result": { - "item": "grindstone", - "count": 1 - }, - "priority": 2 + "item": "grindstone" + } } } \ No newline at end of file diff --git a/behavior_pack/recipes/grindstone_from_warped_planks3.json b/behavior_pack/recipes/grindstone_from_warped_planks3.json index 16a67666c..242950666 100644 --- a/behavior_pack/recipes/grindstone_from_warped_planks3.json +++ b/behavior_pack/recipes/grindstone_from_warped_planks3.json @@ -5,27 +5,18 @@ "identifier": "minecraft:grindstone_from_warped_planks3" }, "tags": [ - "crafting_table" + "deprecated" ], "pattern": [ - "ABA", - "C C" + "#" ], "key": { - "A": { - "item": "stick" - }, - "B": { - "item": "stone_slab3" - }, - "C": { - "item": "warped_planks" + "#": { + "item": "grindstone" } }, "result": { - "item": "grindstone", - "count": 1 - }, - "priority": 2 + "item": "grindstone" + } } } \ No newline at end of file diff --git a/behavior_pack/recipes/grindstone_from_warped_planks4.json b/behavior_pack/recipes/grindstone_from_warped_planks4.json index c692428b7..5275f899f 100644 --- a/behavior_pack/recipes/grindstone_from_warped_planks4.json +++ b/behavior_pack/recipes/grindstone_from_warped_planks4.json @@ -5,27 +5,18 @@ "identifier": "minecraft:grindstone_from_warped_planks4" }, "tags": [ - "crafting_table" + "deprecated" ], "pattern": [ - "ABA", - "C C" + "#" ], "key": { - "A": { - "item": "stick" - }, - "B": { - "item": "stone_slab4" - }, - "C": { - "item": "warped_planks" + "#": { + "item": "grindstone" } }, "result": { - "item": "grindstone", - "count": 1 - }, - "priority": 2 + "item": "grindstone" + } } } \ No newline at end of file diff --git a/behavior_pack/recipes/mace.json b/behavior_pack/recipes/mace.json new file mode 100644 index 000000000..b13025a17 --- /dev/null +++ b/behavior_pack/recipes/mace.json @@ -0,0 +1,33 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:mace" + }, + "tags": [ "crafting_table" ], + "key": { + "#": { + "item": "minecraft:breeze_rod" + }, + "*": { + "item": "minecraft:heavy_core" + } + }, + "pattern": [ + "*", + "#" + ], + "unlock": [ + { + "item": "minecraft:breeze_rod" + }, + { + "item": "minecraft:heavy_core" + } + ], + "result": { + "item": "minecraft:mace", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/magenta_dye_from_lilac.json b/behavior_pack/recipes/magenta_dye_from_lilac.json index 89bfc38b3..f127a9d37 100644 --- a/behavior_pack/recipes/magenta_dye_from_lilac.json +++ b/behavior_pack/recipes/magenta_dye_from_lilac.json @@ -10,14 +10,12 @@ "group": "magenta_dye", "ingredients": [ { - "item": "minecraft:double_plant", - "data": 1 + "item": "minecraft:lilac" } ], "unlock": [ { - "item": "minecraft:double_plant", - "data": 1 + "item": "minecraft:lilac" } ], "result": { diff --git a/behavior_pack/recipes/pink_dye_from_peony.json b/behavior_pack/recipes/pink_dye_from_peony.json index a03f53142..874c9524e 100644 --- a/behavior_pack/recipes/pink_dye_from_peony.json +++ b/behavior_pack/recipes/pink_dye_from_peony.json @@ -10,14 +10,12 @@ "group": "pink_dye", "ingredients": [ { - "item": "minecraft:double_plant", - "data": 5 + "item": "minecraft:peony" } ], "unlock": [ { - "item": "minecraft:double_plant", - "data": 5 + "item": "minecraft:peony" } ], "result": { diff --git a/behavior_pack/recipes/polished_tuff.json b/behavior_pack/recipes/polished_tuff.json new file mode 100644 index 000000000..803f20171 --- /dev/null +++ b/behavior_pack/recipes/polished_tuff.json @@ -0,0 +1,29 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:polished_tuff" + }, + "tags": [ + "crafting_table" + ], + "pattern": [ + "##", + "##" + ], + "key": { + "#": { + "item": "minecraft:tuff" + } + }, + "unlock": [ + { + "item": "minecraft:tuff" + } + ], + "result": { + "item": "minecraft:polished_tuff", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/polished_tuff_slab.json b/behavior_pack/recipes/polished_tuff_slab.json new file mode 100644 index 000000000..9f94aba58 --- /dev/null +++ b/behavior_pack/recipes/polished_tuff_slab.json @@ -0,0 +1,29 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:polished_tuff_slab" + }, + "tags": [ + "crafting_table" + ], + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "minecraft:polished_tuff" + } + }, + "unlock": [ + { + "item": "minecraft:polished_tuff" + } + ], + "result": { + "item": "minecraft:polished_tuff_slab", + "count": 6 + }, + "priority": 1 + } +} diff --git a/behavior_pack/recipes/polished_tuff_stairs.json b/behavior_pack/recipes/polished_tuff_stairs.json new file mode 100644 index 000000000..cf88d5343 --- /dev/null +++ b/behavior_pack/recipes/polished_tuff_stairs.json @@ -0,0 +1,31 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:polished_tuff_stairs" + }, + "tags": [ + "crafting_table" + ], + "pattern": [ + "A", + "AA", + "AAA" + ], + "key": { + "A": { + "item": "minecraft:polished_tuff" + } + }, + "unlock": [ + { + "item": "minecraft:polished_tuff" + } + ], + "result": { + "item": "minecraft:polished_tuff_stairs", + "count": 4 + }, + "priority": 1 + } +} diff --git a/behavior_pack/recipes/polished_tuff_wall.json b/behavior_pack/recipes/polished_tuff_wall.json new file mode 100644 index 000000000..6ee6746e0 --- /dev/null +++ b/behavior_pack/recipes/polished_tuff_wall.json @@ -0,0 +1,29 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:polished_tuff_wall" + }, + "tags": [ + "crafting_table" + ], + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:polished_tuff" + } + }, + "unlock": [ + { + "item": "minecraft:polished_tuff" + } + ], + "result": { + "item": "minecraft:polished_tuff_wall", + "count": 6 + } + } +} diff --git a/behavior_pack/recipes/red_dye_from_rose_bush.json b/behavior_pack/recipes/red_dye_from_rose_bush.json index 115bf6a0e..64f030d89 100644 --- a/behavior_pack/recipes/red_dye_from_rose_bush.json +++ b/behavior_pack/recipes/red_dye_from_rose_bush.json @@ -8,14 +8,12 @@ "group": "red_dye", "ingredients": [ { - "item": "minecraft:double_plant", - "data": 4 + "item": "minecraft:rose_bush" } ], "unlock": [ { - "item": "minecraft:double_plant", - "data": 4 + "item": "minecraft:rose_bush" } ], "result": { diff --git a/behavior_pack/recipes/stonecutter_brick_slab.json b/behavior_pack/recipes/stonecutter_brick_slab.json index f27f452c7..65e02243d 100644 --- a/behavior_pack/recipes/stonecutter_brick_slab.json +++ b/behavior_pack/recipes/stonecutter_brick_slab.json @@ -10,19 +10,16 @@ "priority": 0, "ingredients": [ { - "item": "minecraft:brick_block", - "data": 0 + "item": "minecraft:brick_block" } ], "unlock": [ { - "item": "minecraft:brick_block", - "data": 0 + "item": "minecraft:brick_block" } ], "result": { - "item": "minecraft:double_stone_slab", - "data": 4, + "item": "minecraft:brick_slab", "count": 2 } } diff --git a/behavior_pack/recipes/stonecutter_cobblestone_slab.json b/behavior_pack/recipes/stonecutter_cobblestone_slab.json index 6a5801122..2a7ffc1c0 100644 --- a/behavior_pack/recipes/stonecutter_cobblestone_slab.json +++ b/behavior_pack/recipes/stonecutter_cobblestone_slab.json @@ -10,19 +10,16 @@ "priority": 0, "ingredients": [ { - "item": "minecraft:cobblestone", - "data": 0 + "item": "minecraft:cobblestone" } ], "unlock": [ { - "item": "minecraft:cobblestone", - "data": 0 + "item": "minecraft:cobblestone" } ], "result": { - "item": "minecraft:double_stone_slab", - "data": 3, + "item": "minecraft:cobblestone_slab", "count": 2 } } diff --git a/behavior_pack/recipes/stonecutter_copper_block_to_chiseled_copper.json b/behavior_pack/recipes/stonecutter_copper_block_to_chiseled_copper.json new file mode 100644 index 000000000..420a5e13d --- /dev/null +++ b/behavior_pack/recipes/stonecutter_copper_block_to_chiseled_copper.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_copper_block_to_chiseled_copper" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:copper_block" + } + ], + "unlock": [ + { + "item": "minecraft:copper_block" + } + ], + "result": { + "item": "minecraft:chiseled_copper", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_copper_block_to_copper_grate.json b/behavior_pack/recipes/stonecutter_copper_block_to_copper_grate.json new file mode 100644 index 000000000..0df505df3 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_copper_block_to_copper_grate.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_copper_block_to_copper_grate" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:copper_block" + } + ], + "unlock": [ + { + "item": "minecraft:copper_block" + } + ], + "result": { + "item": "minecraft:copper_grate", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_cut_copper_to_chiseled_copper.json b/behavior_pack/recipes/stonecutter_cut_copper_to_chiseled_copper.json new file mode 100644 index 000000000..cb57b610b --- /dev/null +++ b/behavior_pack/recipes/stonecutter_cut_copper_to_chiseled_copper.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_cut_copper_to_chiseled_copper" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:cut_copper" + } + ], + "unlock": [ + { + "item": "minecraft:cut_copper" + } + ], + "result": { + "item": "minecraft:chiseled_copper", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_exp_cut_copper_to_exp_chiseled_copper.json b/behavior_pack/recipes/stonecutter_exp_cut_copper_to_exp_chiseled_copper.json new file mode 100644 index 000000000..2d80ed6e8 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_exp_cut_copper_to_exp_chiseled_copper.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_exposed_cut_copper_to_exposed_chiseled_copper" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:exposed_cut_copper" + } + ], + "unlock": [ + { + "item": "minecraft:exposed_cut_copper" + } + ], + "result": { + "item": "minecraft:exposed_chiseled_copper", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_exposed_copper_to_exposed_chiseled_copper.json b/behavior_pack/recipes/stonecutter_exposed_copper_to_exposed_chiseled_copper.json new file mode 100644 index 000000000..4a5bce454 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_exposed_copper_to_exposed_chiseled_copper.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_exposed_copper_to_exposed_chiseled_copper" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:exposed_copper" + } + ], + "unlock": [ + { + "item": "minecraft:exposed_copper" + } + ], + "result": { + "item": "minecraft:exposed_chiseled_copper", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_exposed_copper_to_exposed_copper_grate.json b/behavior_pack/recipes/stonecutter_exposed_copper_to_exposed_copper_grate.json new file mode 100644 index 000000000..d8cf4927c --- /dev/null +++ b/behavior_pack/recipes/stonecutter_exposed_copper_to_exposed_copper_grate.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_exposed_copper_to_exposed_copper_grate" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:exposed_copper" + } + ], + "unlock": [ + { + "item": "minecraft:exposed_copper" + } + ], + "result": { + "item": "minecraft:exposed_copper_grate", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_nether_brick_slab.json b/behavior_pack/recipes/stonecutter_nether_brick_slab.json index 3898bbca7..df0c3e343 100644 --- a/behavior_pack/recipes/stonecutter_nether_brick_slab.json +++ b/behavior_pack/recipes/stonecutter_nether_brick_slab.json @@ -10,8 +10,7 @@ "priority": 0, "ingredients": [ { - "item": "minecraft:nether_brick", - "data": 0 + "item": "minecraft:nether_brick" } ], "unlock": [ @@ -20,8 +19,7 @@ } ], "result": { - "item": "minecraft:double_stone_slab", - "data": 7, + "item": "minecraft:nether_brick_slab", "count": 2 } } diff --git a/behavior_pack/recipes/stonecutter_oxi_cut_copper_to_oxi_chiseled_copper.json b/behavior_pack/recipes/stonecutter_oxi_cut_copper_to_oxi_chiseled_copper.json new file mode 100644 index 000000000..26ff032fb --- /dev/null +++ b/behavior_pack/recipes/stonecutter_oxi_cut_copper_to_oxi_chiseled_copper.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_oxidized_cut_copper_to_oxidized_chiseled_copper" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:oxidized_cut_copper" + } + ], + "unlock": [ + { + "item": "minecraft:oxidized_cut_copper" + } + ], + "result": { + "item": "minecraft:oxidized_chiseled_copper", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_oxidized_copper_to_oxidized_chiseled_copper.json b/behavior_pack/recipes/stonecutter_oxidized_copper_to_oxidized_chiseled_copper.json new file mode 100644 index 000000000..7ef0165f8 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_oxidized_copper_to_oxidized_chiseled_copper.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_oxidized_copper_to_oxidized_chiseled_copper" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:oxidized_copper" + } + ], + "unlock": [ + { + "item": "minecraft:oxidized_copper" + } + ], + "result": { + "item": "minecraft:oxidized_chiseled_copper", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_oxidized_copper_to_oxidized_copper_grate.json b/behavior_pack/recipes/stonecutter_oxidized_copper_to_oxidized_copper_grate.json new file mode 100644 index 000000000..2b7e124ba --- /dev/null +++ b/behavior_pack/recipes/stonecutter_oxidized_copper_to_oxidized_copper_grate.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_oxidized_copper_to_oxidized_copper_grate" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:oxidized_copper" + } + ], + "unlock": [ + { + "item": "minecraft:oxidized_copper" + } + ], + "result": { + "item": "minecraft:oxidized_copper_grate", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_polished_tuff_to_chiseled_tuff_bricks.json b/behavior_pack/recipes/stonecutter_polished_tuff_to_chiseled_tuff_bricks.json new file mode 100644 index 000000000..610891a90 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_polished_tuff_to_chiseled_tuff_bricks.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_polished_tuff_to_chiseled_tuff_bricks" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:polished_tuff" + } + ], + "unlock": [ + { + "item": "minecraft:polished_tuff" + } + ], + "result": { + "item": "minecraft:chiseled_tuff_bricks", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_polished_tuff_to_polished_tuff_slab.json b/behavior_pack/recipes/stonecutter_polished_tuff_to_polished_tuff_slab.json new file mode 100644 index 000000000..7bf541538 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_polished_tuff_to_polished_tuff_slab.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_polished_tuff_to_polished_tuff_slab" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:polished_tuff" + } + ], + "unlock": [ + { + "item": "minecraft:polished_tuff" + } + ], + "result": { + "item": "minecraft:polished_tuff_slab", + "count": 2 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_polished_tuff_to_polished_tuff_stairs.json b/behavior_pack/recipes/stonecutter_polished_tuff_to_polished_tuff_stairs.json new file mode 100644 index 000000000..abee1ae7a --- /dev/null +++ b/behavior_pack/recipes/stonecutter_polished_tuff_to_polished_tuff_stairs.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_polished_tuff_to_polished_tuff_stairs" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:polished_tuff" + } + ], + "unlock": [ + { + "item": "minecraft:polished_tuff" + } + ], + "result": { + "item": "minecraft:polished_tuff_stairs", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_polished_tuff_to_polished_tuff_wall.json b/behavior_pack/recipes/stonecutter_polished_tuff_to_polished_tuff_wall.json new file mode 100644 index 000000000..66e4328a3 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_polished_tuff_to_polished_tuff_wall.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_polished_tuff_to_polished_tuff_wall" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:polished_tuff" + } + ], + "unlock": [ + { + "item": "minecraft:polished_tuff" + } + ], + "result": { + "item": "minecraft:polished_tuff_wall", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_polished_tuff_to_tuff_brick_slab.json b/behavior_pack/recipes/stonecutter_polished_tuff_to_tuff_brick_slab.json new file mode 100644 index 000000000..d6c077352 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_polished_tuff_to_tuff_brick_slab.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_polished_tuff_to_tuff_brick_slab" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:polished_tuff" + } + ], + "unlock": [ + { + "item": "minecraft:polished_tuff" + } + ], + "result": { + "item": "minecraft:tuff_brick_slab", + "count": 2 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_polished_tuff_to_tuff_brick_stairs.json b/behavior_pack/recipes/stonecutter_polished_tuff_to_tuff_brick_stairs.json new file mode 100644 index 000000000..93e63991a --- /dev/null +++ b/behavior_pack/recipes/stonecutter_polished_tuff_to_tuff_brick_stairs.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_polished_tuff_to_tuff_brick_stairs" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:polished_tuff" + } + ], + "unlock": [ + { + "item": "minecraft:polished_tuff" + } + ], + "result": { + "item": "minecraft:tuff_brick_stairs", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_polished_tuff_to_tuff_brick_wall.json b/behavior_pack/recipes/stonecutter_polished_tuff_to_tuff_brick_wall.json new file mode 100644 index 000000000..427a52d80 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_polished_tuff_to_tuff_brick_wall.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_polished_tuff_to_tuff_brick_wall" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:polished_tuff" + } + ], + "unlock": [ + { + "item": "minecraft:polished_tuff" + } + ], + "result": { + "item": "minecraft:tuff_brick_wall", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_polished_tuff_to_tuff_bricks.json b/behavior_pack/recipes/stonecutter_polished_tuff_to_tuff_bricks.json new file mode 100644 index 000000000..4ab38d374 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_polished_tuff_to_tuff_bricks.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_polished_tuff_to_tuff_bricks" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:polished_tuff" + } + ], + "unlock": [ + { + "item": "minecraft:polished_tuff" + } + ], + "result": { + "item": "minecraft:tuff_bricks", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_quartz_slab.json b/behavior_pack/recipes/stonecutter_quartz_slab.json index cb922de13..efa54df9e 100644 --- a/behavior_pack/recipes/stonecutter_quartz_slab.json +++ b/behavior_pack/recipes/stonecutter_quartz_slab.json @@ -21,8 +21,7 @@ } ], "result": { - "item": "minecraft:stone_slab", - "data": 6, + "item": "minecraft:quartz_slab", "count": 2 } } diff --git a/behavior_pack/recipes/stonecutter_sandstone_slab.json b/behavior_pack/recipes/stonecutter_sandstone_slab.json index 52b39473d..5dddbf66e 100644 --- a/behavior_pack/recipes/stonecutter_sandstone_slab.json +++ b/behavior_pack/recipes/stonecutter_sandstone_slab.json @@ -21,8 +21,7 @@ } ], "result": { - "item": "minecraft:double_stone_slab", - "data": 1, + "item": "minecraft:sandstone_slab", "count": 2 } } diff --git a/behavior_pack/recipes/stonecutter_smooth_stone_slab.json b/behavior_pack/recipes/stonecutter_smooth_stone_slab.json index e9164f087..4fca98f01 100644 --- a/behavior_pack/recipes/stonecutter_smooth_stone_slab.json +++ b/behavior_pack/recipes/stonecutter_smooth_stone_slab.json @@ -10,19 +10,16 @@ "priority": 0, "ingredients": [ { - "item": "minecraft:smooth_stone", - "data": 0 + "item": "minecraft:smooth_stone" } ], "unlock": [ { - "item": "minecraft:smooth_stone", - "data": 0 + "item": "minecraft:smooth_stone" } ], "result": { - "item": "minecraft:double_stone_slab", - "data": 0, + "item": "minecraft:smooth_stone_slab", "count": 2 } } diff --git a/behavior_pack/recipes/stonecutter_stonebrick_slab.json b/behavior_pack/recipes/stonecutter_stonebrick_slab.json index 77e7768fc..3fb6f99ad 100644 --- a/behavior_pack/recipes/stonecutter_stonebrick_slab.json +++ b/behavior_pack/recipes/stonecutter_stonebrick_slab.json @@ -21,8 +21,7 @@ } ], "result": { - "item": "minecraft:double_stone_slab", - "data": 5, + "item": "minecraft:stone_brick_slab", "count": 2 } } diff --git a/behavior_pack/recipes/stonecutter_stonebrick_slab2.json b/behavior_pack/recipes/stonecutter_stonebrick_slab2.json index f29555025..ac57282f8 100644 --- a/behavior_pack/recipes/stonecutter_stonebrick_slab2.json +++ b/behavior_pack/recipes/stonecutter_stonebrick_slab2.json @@ -21,8 +21,7 @@ } ], "result": { - "item": "minecraft:double_stone_slab", - "data": 5, + "item": "minecraft:stone_brick_slab", "count": 2 } } diff --git a/behavior_pack/recipes/stonecutter_tuff_bricks_to_chiseled_tuff_bricks.json b/behavior_pack/recipes/stonecutter_tuff_bricks_to_chiseled_tuff_bricks.json new file mode 100644 index 000000000..38f99bdf4 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_tuff_bricks_to_chiseled_tuff_bricks.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_tuff_bricks_to_chiseled_tuff_bricks" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:tuff_bricks" + } + ], + "unlock": [ + { + "item": "minecraft:tuff_bricks" + } + ], + "result": { + "item": "minecraft:chiseled_tuff_bricks", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_tuff_bricks_to_tuff_brick_slab.json b/behavior_pack/recipes/stonecutter_tuff_bricks_to_tuff_brick_slab.json new file mode 100644 index 000000000..048d40897 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_tuff_bricks_to_tuff_brick_slab.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_tuff_bricks_to_tuff_brick_slab" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:tuff_bricks" + } + ], + "unlock": [ + { + "item": "minecraft:tuff_bricks" + } + ], + "result": { + "item": "minecraft:tuff_brick_slab", + "count": 2 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_tuff_bricks_to_tuff_brick_stairs.json b/behavior_pack/recipes/stonecutter_tuff_bricks_to_tuff_brick_stairs.json new file mode 100644 index 000000000..48a6c7381 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_tuff_bricks_to_tuff_brick_stairs.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_tuff_bricks_to_tuff_brick_stairs" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:tuff_bricks" + } + ], + "unlock": [ + { + "item": "minecraft:tuff_bricks" + } + ], + "result": { + "item": "minecraft:tuff_brick_stairs", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_tuff_bricks_to_tuff_brick_wall.json b/behavior_pack/recipes/stonecutter_tuff_bricks_to_tuff_brick_wall.json new file mode 100644 index 000000000..9403f1c50 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_tuff_bricks_to_tuff_brick_wall.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_tuff_bricks_to_tuff_brick_wall" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:tuff_bricks" + } + ], + "unlock": [ + { + "item": "minecraft:tuff_bricks" + } + ], + "result": { + "item": "minecraft:tuff_brick_wall", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_tuff_to_chiseled_tuff.json b/behavior_pack/recipes/stonecutter_tuff_to_chiseled_tuff.json new file mode 100644 index 000000000..f36221863 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_tuff_to_chiseled_tuff.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_tuff_to_chiseled_tuff" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:tuff" + } + ], + "unlock": [ + { + "item": "minecraft:tuff" + } + ], + "result": { + "item": "minecraft:chiseled_tuff", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_tuff_to_chiseled_tuff_bricks.json b/behavior_pack/recipes/stonecutter_tuff_to_chiseled_tuff_bricks.json new file mode 100644 index 000000000..73bb6f4da --- /dev/null +++ b/behavior_pack/recipes/stonecutter_tuff_to_chiseled_tuff_bricks.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_tuff_to_chiseled_tuff_bricks" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:tuff" + } + ], + "unlock": [ + { + "item": "minecraft:tuff" + } + ], + "result": { + "item": "minecraft:chiseled_tuff_bricks", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_tuff_to_polished_tuff.json b/behavior_pack/recipes/stonecutter_tuff_to_polished_tuff.json new file mode 100644 index 000000000..3a0737e85 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_tuff_to_polished_tuff.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_tuff_to_polished_tuff" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:tuff" + } + ], + "unlock": [ + { + "item": "minecraft:tuff" + } + ], + "result": { + "item": "minecraft:polished_tuff", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_tuff_to_polished_tuff_slab.json b/behavior_pack/recipes/stonecutter_tuff_to_polished_tuff_slab.json new file mode 100644 index 000000000..941ff0f63 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_tuff_to_polished_tuff_slab.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_tuff_to_polished_tuff_slab" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:tuff" + } + ], + "unlock": [ + { + "item": "minecraft:tuff" + } + ], + "result": { + "item": "minecraft:polished_tuff_slab", + "count": 2 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_tuff_to_polished_tuff_stairs.json b/behavior_pack/recipes/stonecutter_tuff_to_polished_tuff_stairs.json new file mode 100644 index 000000000..352c72596 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_tuff_to_polished_tuff_stairs.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_tuff_to_polished_tuff_stairs" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:tuff" + } + ], + "unlock": [ + { + "item": "minecraft:tuff" + } + ], + "result": { + "item": "minecraft:polished_tuff_stairs", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_tuff_to_polished_tuff_wall.json b/behavior_pack/recipes/stonecutter_tuff_to_polished_tuff_wall.json new file mode 100644 index 000000000..58b904170 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_tuff_to_polished_tuff_wall.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_tuff_to_polished_tuff_wall" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:tuff" + } + ], + "unlock": [ + { + "item": "minecraft:tuff" + } + ], + "result": { + "item": "minecraft:polished_tuff_wall", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_tuff_to_tuff_brick_slab.json b/behavior_pack/recipes/stonecutter_tuff_to_tuff_brick_slab.json new file mode 100644 index 000000000..a08b5e05e --- /dev/null +++ b/behavior_pack/recipes/stonecutter_tuff_to_tuff_brick_slab.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_tuff_to_tuff_brick_slab" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:tuff" + } + ], + "unlock": [ + { + "item": "minecraft:tuff" + } + ], + "result": { + "item": "minecraft:tuff_brick_slab", + "count": 2 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_tuff_to_tuff_brick_stairs.json b/behavior_pack/recipes/stonecutter_tuff_to_tuff_brick_stairs.json new file mode 100644 index 000000000..94e63059a --- /dev/null +++ b/behavior_pack/recipes/stonecutter_tuff_to_tuff_brick_stairs.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_tuff_to_tuff_brick_stairs" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:tuff" + } + ], + "unlock": [ + { + "item": "minecraft:tuff" + } + ], + "result": { + "item": "minecraft:tuff_brick_stairs", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_tuff_to_tuff_brick_wall.json b/behavior_pack/recipes/stonecutter_tuff_to_tuff_brick_wall.json new file mode 100644 index 000000000..d31775405 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_tuff_to_tuff_brick_wall.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_tuff_to_tuff_brick_wall" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:tuff" + } + ], + "unlock": [ + { + "item": "minecraft:tuff" + } + ], + "result": { + "item": "minecraft:tuff_brick_wall", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_tuff_to_tuff_bricks.json b/behavior_pack/recipes/stonecutter_tuff_to_tuff_bricks.json new file mode 100644 index 000000000..ebad5efed --- /dev/null +++ b/behavior_pack/recipes/stonecutter_tuff_to_tuff_bricks.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_tuff_to_tuff_bricks" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:tuff" + } + ], + "unlock": [ + { + "item": "minecraft:tuff" + } + ], + "result": { + "item": "minecraft:tuff_bricks", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_tuff_to_tuff_slab.json b/behavior_pack/recipes/stonecutter_tuff_to_tuff_slab.json new file mode 100644 index 000000000..537010960 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_tuff_to_tuff_slab.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_tuff_to_tuff_slab" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:tuff" + } + ], + "unlock": [ + { + "item": "minecraft:tuff" + } + ], + "result": { + "item": "minecraft:tuff_slab", + "count": 2 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_tuff_to_tuff_stairs.json b/behavior_pack/recipes/stonecutter_tuff_to_tuff_stairs.json new file mode 100644 index 000000000..8bf4d03e1 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_tuff_to_tuff_stairs.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_tuff_to_tuff_stairs" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:tuff" + } + ], + "unlock": [ + { + "item": "minecraft:tuff" + } + ], + "result": { + "item": "minecraft:tuff_stairs", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_tuff_to_tuff_wall.json b/behavior_pack/recipes/stonecutter_tuff_to_tuff_wall.json new file mode 100644 index 000000000..4a6e199f1 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_tuff_to_tuff_wall.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_tuff_to_tuff_wall" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:tuff" + } + ], + "unlock": [ + { + "item": "minecraft:tuff" + } + ], + "result": { + "item": "minecraft:tuff_wall", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_w_copper_to_w_chiseled_copper.json b/behavior_pack/recipes/stonecutter_w_copper_to_w_chiseled_copper.json new file mode 100644 index 000000000..5a005dfc8 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_w_copper_to_w_chiseled_copper.json @@ -0,0 +1,26 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_waxed_copper_to_waxed_chiseled_copper" + }, + "tags": [ + "stonecutter" + ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:waxed_copper" + } + ], + "unlock": [ + { + "item": "minecraft:waxed_copper" + } + ], + "result": { + "item": "minecraft:waxed_chiseled_copper", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_w_copper_to_w_copper_grate.json b/behavior_pack/recipes/stonecutter_w_copper_to_w_copper_grate.json new file mode 100644 index 000000000..961dbf56b --- /dev/null +++ b/behavior_pack/recipes/stonecutter_w_copper_to_w_copper_grate.json @@ -0,0 +1,26 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_waxed_copper_to_waxed_copper_grate" + }, + "tags": [ + "stonecutter" + ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:waxed_copper" + } + ], + "unlock": [ + { + "item": "minecraft:waxed_copper" + } + ], + "result": { + "item": "minecraft:waxed_copper_grate", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_w_exposed_copper_to_w_exposed_chiseled_copper.json b/behavior_pack/recipes/stonecutter_w_exposed_copper_to_w_exposed_chiseled_copper.json new file mode 100644 index 000000000..b100084e1 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_w_exposed_copper_to_w_exposed_chiseled_copper.json @@ -0,0 +1,26 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_waxed_exposed_copper_to_waxed_exposed_chiseled_copper" + }, + "tags": [ + "stonecutter" + ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:waxed_exposed_copper" + } + ], + "unlock": [ + { + "item": "minecraft:waxed_exposed_copper" + } + ], + "result": { + "item": "minecraft:waxed_exposed_chiseled_copper", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_w_exposed_copper_to_w_exposed_copper_grate.json b/behavior_pack/recipes/stonecutter_w_exposed_copper_to_w_exposed_copper_grate.json new file mode 100644 index 000000000..79fa42973 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_w_exposed_copper_to_w_exposed_copper_grate.json @@ -0,0 +1,26 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_waxed_exposed_copper_to_waxed_exposed_copper_grate" + }, + "tags": [ + "stonecutter" + ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:waxed_exposed_copper" + } + ], + "unlock": [ + { + "item": "minecraft:waxed_exposed_copper" + } + ], + "result": { + "item": "minecraft:waxed_exposed_copper_grate", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_w_oxidized_copper_2_w_oxidized_chiseled_copper.json b/behavior_pack/recipes/stonecutter_w_oxidized_copper_2_w_oxidized_chiseled_copper.json new file mode 100644 index 000000000..6c87b4f04 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_w_oxidized_copper_2_w_oxidized_chiseled_copper.json @@ -0,0 +1,26 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_waxed_oxidized_copper_to_waxed_oxidized_chiseled_copper" + }, + "tags": [ + "stonecutter" + ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:waxed_oxidized_copper" + } + ], + "unlock": [ + { + "item": "minecraft:waxed_oxidized_copper" + } + ], + "result": { + "item": "minecraft:waxed_oxidized_chiseled_copper", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_w_oxidized_copper_to_w_oxidized_copper_grate.json b/behavior_pack/recipes/stonecutter_w_oxidized_copper_to_w_oxidized_copper_grate.json new file mode 100644 index 000000000..371c02ee4 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_w_oxidized_copper_to_w_oxidized_copper_grate.json @@ -0,0 +1,26 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_waxed_oxidized_copper_to_waxed_oxidized_copper_grate" + }, + "tags": [ + "stonecutter" + ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:waxed_oxidized_copper" + } + ], + "unlock": [ + { + "item": "minecraft:waxed_oxidized_copper" + } + ], + "result": { + "item": "minecraft:waxed_oxidized_copper_grate", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_w_weatherd_copper_2_w_weatherd_chiseled_copper.json b/behavior_pack/recipes/stonecutter_w_weatherd_copper_2_w_weatherd_chiseled_copper.json new file mode 100644 index 000000000..3e80e5119 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_w_weatherd_copper_2_w_weatherd_chiseled_copper.json @@ -0,0 +1,26 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_waxed_weathered_copper_to_waxed_weathered_chiseled_copper" + }, + "tags": [ + "stonecutter" + ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:waxed_weathered_copper" + } + ], + "unlock": [ + { + "item": "minecraft:waxed_weathered_copper" + } + ], + "result": { + "item": "minecraft:waxed_weathered_chiseled_copper", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_w_weathered_copper_to_w_weathered_copper_grate.json b/behavior_pack/recipes/stonecutter_w_weathered_copper_to_w_weathered_copper_grate.json new file mode 100644 index 000000000..45734d025 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_w_weathered_copper_to_w_weathered_copper_grate.json @@ -0,0 +1,26 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_waxed_weathered_copper_to_waxed_weathered_copper_grate" + }, + "tags": [ + "stonecutter" + ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:waxed_weathered_copper" + } + ], + "unlock": [ + { + "item": "minecraft:waxed_weathered_copper" + } + ], + "result": { + "item": "minecraft:waxed_weathered_copper_grate", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_wax_cut_copper_to_wax_chiseled_copper.json b/behavior_pack/recipes/stonecutter_wax_cut_copper_to_wax_chiseled_copper.json new file mode 100644 index 000000000..79c10d188 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_wax_cut_copper_to_wax_chiseled_copper.json @@ -0,0 +1,26 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_waxed_cut_copper_to_waxed_chiseled_copper" + }, + "tags": [ + "stonecutter" + ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:waxed_cut_copper" + } + ], + "unlock": [ + { + "item": "minecraft:waxed_cut_copper" + } + ], + "result": { + "item": "minecraft:waxed_chiseled_copper", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_wax_exp_cut_copper_to_wax_exp_chiseled_copper.json b/behavior_pack/recipes/stonecutter_wax_exp_cut_copper_to_wax_exp_chiseled_copper.json new file mode 100644 index 000000000..a7b95233f --- /dev/null +++ b/behavior_pack/recipes/stonecutter_wax_exp_cut_copper_to_wax_exp_chiseled_copper.json @@ -0,0 +1,26 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_waxed_exposed_cut_copper_to_waxed_exposed_chiseled_copper" + }, + "tags": [ + "stonecutter" + ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:waxed_exposed_cut_copper" + } + ], + "unlock": [ + { + "item": "minecraft:waxed_exposed_cut_copper" + } + ], + "result": { + "item": "minecraft:waxed_exposed_chiseled_copper", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_wax_oxi_cut_copper_to_wax_oxi_chiseled_copper.json b/behavior_pack/recipes/stonecutter_wax_oxi_cut_copper_to_wax_oxi_chiseled_copper.json new file mode 100644 index 000000000..d45ef2089 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_wax_oxi_cut_copper_to_wax_oxi_chiseled_copper.json @@ -0,0 +1,26 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_waxed_oxidized_cut_copper_to_waxed_oxidized_chiseled_copper" + }, + "tags": [ + "stonecutter" + ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:waxed_oxidized_cut_copper" + } + ], + "unlock": [ + { + "item": "minecraft:waxed_oxidized_cut_copper" + } + ], + "result": { + "item": "minecraft:waxed_oxidized_chiseled_copper", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_wax_wea_cut_copper_to_wax_wea_chiseled_copper.json b/behavior_pack/recipes/stonecutter_wax_wea_cut_copper_to_wax_wea_chiseled_copper.json new file mode 100644 index 000000000..ffbbc52ef --- /dev/null +++ b/behavior_pack/recipes/stonecutter_wax_wea_cut_copper_to_wax_wea_chiseled_copper.json @@ -0,0 +1,26 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_waxed_weathered_cut_copper_to_waxed_weathered_chiseled_copper" + }, + "tags": [ + "stonecutter" + ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:waxed_weathered_cut_copper" + } + ], + "unlock": [ + { + "item": "minecraft:waxed_weathered_cut_copper" + } + ], + "result": { + "item": "minecraft:waxed_weathered_chiseled_copper", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_wea_cut_copper_to_wea_chiseled_copper.json b/behavior_pack/recipes/stonecutter_wea_cut_copper_to_wea_chiseled_copper.json new file mode 100644 index 000000000..52d66c1af --- /dev/null +++ b/behavior_pack/recipes/stonecutter_wea_cut_copper_to_wea_chiseled_copper.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_weathered_cut_copper_to_weathered_chiseled_copper" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:weathered_cut_copper" + } + ], + "unlock": [ + { + "item": "minecraft:weathered_cut_copper" + } + ], + "result": { + "item": "minecraft:weathered_chiseled_copper", + "count": 1 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_weathered_copper_to_weathered_chiseled_copper.json b/behavior_pack/recipes/stonecutter_weathered_copper_to_weathered_chiseled_copper.json new file mode 100644 index 000000000..f7de93e67 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_weathered_copper_to_weathered_chiseled_copper.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_weathered_copper_to_weathered_chiseled_copper" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:weathered_copper" + } + ], + "unlock": [ + { + "item": "minecraft:weathered_copper" + } + ], + "result": { + "item": "minecraft:weathered_chiseled_copper", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/stonecutter_weathered_copper_to_weathered_copper_grate.json b/behavior_pack/recipes/stonecutter_weathered_copper_to_weathered_copper_grate.json new file mode 100644 index 000000000..2fe170614 --- /dev/null +++ b/behavior_pack/recipes/stonecutter_weathered_copper_to_weathered_copper_grate.json @@ -0,0 +1,24 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:stonecutter_weathered_copper_to_weathered_copper_grate" + }, + "tags": [ "stonecutter" ], + "priority": 0, + "ingredients": [ + { + "item": "minecraft:weathered_copper" + } + ], + "unlock": [ + { + "item": "minecraft:weathered_copper" + } + ], + "result": { + "item": "minecraft:weathered_copper_grate", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/tuff_brick_slab.json b/behavior_pack/recipes/tuff_brick_slab.json new file mode 100644 index 000000000..e4ad376d0 --- /dev/null +++ b/behavior_pack/recipes/tuff_brick_slab.json @@ -0,0 +1,29 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:tuff_brick_slab" + }, + "tags": [ + "crafting_table" + ], + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "minecraft:tuff_bricks" + } + }, + "unlock": [ + { + "item": "minecraft:tuff_bricks" + } + ], + "result": { + "item": "minecraft:tuff_brick_slab", + "count": 6 + }, + "priority": 1 + } +} diff --git a/behavior_pack/recipes/tuff_brick_stairs.json b/behavior_pack/recipes/tuff_brick_stairs.json new file mode 100644 index 000000000..305dec23f --- /dev/null +++ b/behavior_pack/recipes/tuff_brick_stairs.json @@ -0,0 +1,31 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:tuff_brick_stairs" + }, + "tags": [ + "crafting_table" + ], + "pattern": [ + "A", + "AA", + "AAA" + ], + "key": { + "A": { + "item": "minecraft:tuff_bricks" + } + }, + "unlock": [ + { + "item": "minecraft:tuff_bricks" + } + ], + "result": { + "item": "minecraft:tuff_brick_stairs", + "count": 4 + }, + "priority": 1 + } +} diff --git a/behavior_pack/recipes/tuff_brick_wall.json b/behavior_pack/recipes/tuff_brick_wall.json new file mode 100644 index 000000000..c1df9eb71 --- /dev/null +++ b/behavior_pack/recipes/tuff_brick_wall.json @@ -0,0 +1,29 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:tuff_brick_wall" + }, + "tags": [ + "crafting_table" + ], + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:tuff_bricks" + } + }, + "unlock": [ + { + "item": "minecraft:tuff_bricks" + } + ], + "result": { + "item": "minecraft:tuff_brick_wall", + "count": 6 + } + } +} diff --git a/behavior_pack/recipes/tuff_bricks.json b/behavior_pack/recipes/tuff_bricks.json new file mode 100644 index 000000000..74ee02f07 --- /dev/null +++ b/behavior_pack/recipes/tuff_bricks.json @@ -0,0 +1,29 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:tuff_bricks" + }, + "tags": [ + "crafting_table" + ], + "pattern": [ + "##", + "##" + ], + "key": { + "#": { + "item": "minecraft:polished_tuff" + } + }, + "unlock": [ + { + "item": "minecraft:polished_tuff" + } + ], + "result": { + "item": "minecraft:tuff_bricks", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/tuff_slab.json b/behavior_pack/recipes/tuff_slab.json new file mode 100644 index 000000000..7e4af0563 --- /dev/null +++ b/behavior_pack/recipes/tuff_slab.json @@ -0,0 +1,29 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:tuff_slab" + }, + "tags": [ + "crafting_table" + ], + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "minecraft:tuff" + } + }, + "unlock": [ + { + "item": "minecraft:tuff" + } + ], + "result": { + "item": "minecraft:tuff_slab", + "count": 6 + }, + "priority": 1 + } +} diff --git a/behavior_pack/recipes/tuff_stairs.json b/behavior_pack/recipes/tuff_stairs.json new file mode 100644 index 000000000..10865027d --- /dev/null +++ b/behavior_pack/recipes/tuff_stairs.json @@ -0,0 +1,31 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:tuff_stairs" + }, + "tags": [ + "crafting_table" + ], + "pattern": [ + "A", + "AA", + "AAA" + ], + "key": { + "A": { + "item": "minecraft:tuff" + } + }, + "unlock": [ + { + "item": "minecraft:tuff" + } + ], + "result": { + "item": "minecraft:tuff_stairs", + "count": 4 + }, + "priority": 1 + } +} diff --git a/behavior_pack/recipes/tuff_wall.json b/behavior_pack/recipes/tuff_wall.json new file mode 100644 index 000000000..e8f608e66 --- /dev/null +++ b/behavior_pack/recipes/tuff_wall.json @@ -0,0 +1,29 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shaped": { + "description": { + "identifier": "minecraft:tuff_wall" + }, + "tags": [ + "crafting_table" + ], + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "minecraft:tuff" + } + }, + "unlock": [ + { + "item": "minecraft:tuff" + } + ], + "result": { + "item": "minecraft:tuff_wall", + "count": 6 + } + } +} diff --git a/behavior_pack/recipes/waxing_chiseled_copper.json b/behavior_pack/recipes/waxing_chiseled_copper.json new file mode 100644 index 000000000..db1622ae6 --- /dev/null +++ b/behavior_pack/recipes/waxing_chiseled_copper.json @@ -0,0 +1,27 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:waxing_chiseled_copper" + }, + "tags": [ "crafting_table" ], + "ingredients": [ + { + "item": "minecraft:chiseled_copper" + }, + { + "item": "minecraft:honeycomb" + } + ], + "unlock": [ + { + "item": "minecraft:chiseled_copper" + } + ], + "result": { + "item": "minecraft:waxed_chiseled_copper", + "count": 1 + }, + "priority": 1 + } +} diff --git a/behavior_pack/recipes/waxing_copper_bulb.json b/behavior_pack/recipes/waxing_copper_bulb.json new file mode 100644 index 000000000..1836282e7 --- /dev/null +++ b/behavior_pack/recipes/waxing_copper_bulb.json @@ -0,0 +1,27 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:waxing_copper_bulb" + }, + "tags": [ "crafting_table" ], + "ingredients": [ + { + "item": "minecraft:copper_bulb" + }, + { + "item": "minecraft:honeycomb" + } + ], + "unlock": [ + { + "item": "minecraft:copper_bulb" + } + ], + "result": { + "item": "minecraft:waxed_copper_bulb", + "count": 1 + }, + "priority": 1 + } +} diff --git a/behavior_pack/recipes/waxing_copper_door.json b/behavior_pack/recipes/waxing_copper_door.json new file mode 100644 index 000000000..91a528660 --- /dev/null +++ b/behavior_pack/recipes/waxing_copper_door.json @@ -0,0 +1,27 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:waxing_copper_door" + }, + "tags": [ "crafting_table" ], + "ingredients": [ + { + "item": "minecraft:copper_door" + }, + { + "item": "minecraft:honeycomb" + } + ], + "unlock": [ + { + "item": "minecraft:copper_door" + } + ], + "result": { + "item": "minecraft:waxed_copper_door", + "count": 1 + }, + "priority": 1 + } +} diff --git a/behavior_pack/recipes/waxing_copper_grate.json b/behavior_pack/recipes/waxing_copper_grate.json new file mode 100644 index 000000000..8643e7cdd --- /dev/null +++ b/behavior_pack/recipes/waxing_copper_grate.json @@ -0,0 +1,27 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:waxing_copper_grate" + }, + "tags": [ "crafting_table" ], + "ingredients": [ + { + "item": "minecraft:copper_grate" + }, + { + "item": "minecraft:honeycomb" + } + ], + "unlock": [ + { + "item": "minecraft:copper_grate" + } + ], + "result": { + "item": "minecraft:waxed_copper_grate", + "count": 1 + }, + "priority": 1 + } +} diff --git a/behavior_pack/recipes/waxing_copper_trapdoor.json b/behavior_pack/recipes/waxing_copper_trapdoor.json new file mode 100644 index 000000000..08a8412c3 --- /dev/null +++ b/behavior_pack/recipes/waxing_copper_trapdoor.json @@ -0,0 +1,27 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:waxing_copper_trapdoor" + }, + "tags": [ "crafting_table" ], + "ingredients": [ + { + "item": "minecraft:copper_trapdoor" + }, + { + "item": "minecraft:honeycomb" + } + ], + "unlock": [ + { + "item": "minecraft:copper_trapdoor" + } + ], + "result": { + "item": "minecraft:waxed_copper_trapdoor", + "count": 1 + }, + "priority": 1 + } +} diff --git a/behavior_pack/recipes/waxing_exposed_chiseled_copper.json b/behavior_pack/recipes/waxing_exposed_chiseled_copper.json new file mode 100644 index 000000000..828ae6f48 --- /dev/null +++ b/behavior_pack/recipes/waxing_exposed_chiseled_copper.json @@ -0,0 +1,27 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:waxed_exposed_chiseled_copper_from_honeycomb" + }, + "tags": [ "crafting_table" ], + "ingredients": [ + { + "item": "minecraft:exposed_chiseled_copper" + }, + { + "item": "minecraft:honeycomb" + } + ], + "unlock": [ + { + "item": "minecraft:exposed_chiseled_copper" + } + ], + "result": { + "item": "minecraft:waxed_exposed_chiseled_copper", + "count": 1 + }, + "priority": 1 + } +} diff --git a/behavior_pack/recipes/waxing_exposed_copper_bulb.json b/behavior_pack/recipes/waxing_exposed_copper_bulb.json new file mode 100644 index 000000000..9fc33f708 --- /dev/null +++ b/behavior_pack/recipes/waxing_exposed_copper_bulb.json @@ -0,0 +1,27 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:waxing_exposed_copper_bulb" + }, + "tags": [ "crafting_table" ], + "ingredients": [ + { + "item": "minecraft:exposed_copper_bulb" + }, + { + "item": "minecraft:honeycomb" + } + ], + "unlock": [ + { + "item": "minecraft:exposed_copper_bulb" + } + ], + "result": { + "item": "minecraft:waxed_exposed_copper_bulb", + "count": 1 + }, + "priority": 1 + } +} diff --git a/behavior_pack/recipes/waxing_exposed_copper_door.json b/behavior_pack/recipes/waxing_exposed_copper_door.json new file mode 100644 index 000000000..6caaa135b --- /dev/null +++ b/behavior_pack/recipes/waxing_exposed_copper_door.json @@ -0,0 +1,27 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:waxing_exposed_copper_door" + }, + "tags": [ "crafting_table" ], + "ingredients": [ + { + "item": "minecraft:exposed_copper_door" + }, + { + "item": "minecraft:honeycomb" + } + ], + "unlock": [ + { + "item": "minecraft:exposed_copper_door" + } + ], + "result": { + "item": "minecraft:waxed_exposed_copper_door", + "count": 1 + }, + "priority": 1 + } +} \ No newline at end of file diff --git a/behavior_pack/recipes/waxing_exposed_copper_grate.json b/behavior_pack/recipes/waxing_exposed_copper_grate.json new file mode 100644 index 000000000..05938426c --- /dev/null +++ b/behavior_pack/recipes/waxing_exposed_copper_grate.json @@ -0,0 +1,27 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:waxing_exposed_copper_grate" + }, + "tags": [ "crafting_table" ], + "ingredients": [ + { + "item": "minecraft:exposed_copper_grate" + }, + { + "item": "minecraft:honeycomb" + } + ], + "unlock": [ + { + "item": "minecraft:exposed_copper_grate" + } + ], + "result": { + "item": "minecraft:waxed_exposed_copper_grate", + "count": 1 + }, + "priority": 1 + } +} diff --git a/behavior_pack/recipes/waxing_exposed_copper_trapdoor.json b/behavior_pack/recipes/waxing_exposed_copper_trapdoor.json new file mode 100644 index 000000000..5c62401a4 --- /dev/null +++ b/behavior_pack/recipes/waxing_exposed_copper_trapdoor.json @@ -0,0 +1,27 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:waxing_exposed_copper_trapdoor" + }, + "tags": [ "crafting_table" ], + "ingredients": [ + { + "item": "minecraft:exposed_copper_trapdoor" + }, + { + "item": "minecraft:honeycomb" + } + ], + "unlock": [ + { + "item": "minecraft:exposed_copper_trapdoor" + } + ], + "result": { + "item": "minecraft:waxed_exposed_copper_trapdoor", + "count": 1 + }, + "priority": 1 + } +} diff --git a/behavior_pack/recipes/waxing_oxidized_chiseled_copper.json b/behavior_pack/recipes/waxing_oxidized_chiseled_copper.json new file mode 100644 index 000000000..423504e28 --- /dev/null +++ b/behavior_pack/recipes/waxing_oxidized_chiseled_copper.json @@ -0,0 +1,27 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:waxed_oxidized_chiseled_copper_from_honeycomb" + }, + "tags": [ "crafting_table" ], + "ingredients": [ + { + "item": "minecraft:oxidized_chiseled_copper" + }, + { + "item": "minecraft:honeycomb" + } + ], + "unlock": [ + { + "item": "minecraft:oxidized_chiseled_copper" + } + ], + "result": { + "item": "minecraft:waxed_oxidized_chiseled_copper", + "count": 1 + }, + "priority": 1 + } +} diff --git a/behavior_pack/recipes/waxing_oxidized_copper_bulb.json b/behavior_pack/recipes/waxing_oxidized_copper_bulb.json new file mode 100644 index 000000000..b1ecfe1fd --- /dev/null +++ b/behavior_pack/recipes/waxing_oxidized_copper_bulb.json @@ -0,0 +1,27 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:waxing_oxidized_copper_bulb" + }, + "tags": [ "crafting_table" ], + "ingredients": [ + { + "item": "minecraft:oxidized_copper_bulb" + }, + { + "item": "minecraft:honeycomb" + } + ], + "unlock": [ + { + "item": "minecraft:oxidized_copper_bulb" + } + ], + "result": { + "item": "minecraft:waxed_oxidized_copper_bulb", + "count": 1 + }, + "priority": 1 + } +} diff --git a/behavior_pack/recipes/waxing_oxidized_copper_door.json b/behavior_pack/recipes/waxing_oxidized_copper_door.json new file mode 100644 index 000000000..66873602c --- /dev/null +++ b/behavior_pack/recipes/waxing_oxidized_copper_door.json @@ -0,0 +1,27 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:waxing_oxidized_copper_door" + }, + "tags": [ "crafting_table" ], + "ingredients": [ + { + "item": "minecraft:oxidized_copper_door" + }, + { + "item": "minecraft:honeycomb" + } + ], + "unlock": [ + { + "item": "minecraft:oxidized_copper_door" + } + ], + "result": { + "item": "minecraft:waxed_oxidized_copper_door", + "count": 1 + }, + "priority": 1 + } +} diff --git a/behavior_pack/recipes/waxing_oxidized_copper_grate.json b/behavior_pack/recipes/waxing_oxidized_copper_grate.json new file mode 100644 index 000000000..435fd151c --- /dev/null +++ b/behavior_pack/recipes/waxing_oxidized_copper_grate.json @@ -0,0 +1,27 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:waxing_oxidized_copper_grate" + }, + "tags": [ "crafting_table" ], + "ingredients": [ + { + "item": "minecraft:oxidized_copper_grate" + }, + { + "item": "minecraft:honeycomb" + } + ], + "unlock": [ + { + "item": "minecraft:oxidized_copper_grate" + } + ], + "result": { + "item": "minecraft:waxed_oxidized_copper_grate", + "count": 1 + }, + "priority": 1 + } +} diff --git a/behavior_pack/recipes/waxing_oxidized_copper_trapdoor.json b/behavior_pack/recipes/waxing_oxidized_copper_trapdoor.json new file mode 100644 index 000000000..e80e43f69 --- /dev/null +++ b/behavior_pack/recipes/waxing_oxidized_copper_trapdoor.json @@ -0,0 +1,27 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:waxing_oxidized_copper_trapdoor" + }, + "tags": [ "crafting_table" ], + "ingredients": [ + { + "item": "minecraft:oxidized_copper_trapdoor" + }, + { + "item": "minecraft:honeycomb" + } + ], + "unlock": [ + { + "item": "minecraft:oxidized_copper_trapdoor" + } + ], + "result": { + "item": "minecraft:waxed_oxidized_copper_trapdoor", + "count": 1 + }, + "priority": 1 + } +} diff --git a/behavior_pack/recipes/waxing_weathered_chiseled_copper.json b/behavior_pack/recipes/waxing_weathered_chiseled_copper.json new file mode 100644 index 000000000..cd7b85732 --- /dev/null +++ b/behavior_pack/recipes/waxing_weathered_chiseled_copper.json @@ -0,0 +1,27 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:waxed_weathered_chiseled_copper_from_honeycomb" + }, + "tags": [ "crafting_table" ], + "ingredients": [ + { + "item": "minecraft:weathered_chiseled_copper" + }, + { + "item": "minecraft:honeycomb" + } + ], + "unlock": [ + { + "item": "minecraft:weathered_chiseled_copper" + } + ], + "result": { + "item": "minecraft:waxed_weathered_chiseled_copper", + "count": 1 + }, + "priority": 1 + } +} diff --git a/behavior_pack/recipes/waxing_weathered_copper_bulb.json b/behavior_pack/recipes/waxing_weathered_copper_bulb.json new file mode 100644 index 000000000..ff53d16d8 --- /dev/null +++ b/behavior_pack/recipes/waxing_weathered_copper_bulb.json @@ -0,0 +1,27 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:waxing_weathered_copper_bulb" + }, + "tags": [ "crafting_table" ], + "ingredients": [ + { + "item": "minecraft:weathered_copper_bulb" + }, + { + "item": "minecraft:honeycomb" + } + ], + "unlock": [ + { + "item": "minecraft:weathered_copper_bulb" + } + ], + "result": { + "item": "minecraft:waxed_weathered_copper_bulb", + "count": 1 + }, + "priority": 1 + } +} diff --git a/behavior_pack/recipes/waxing_weathered_copper_door.json b/behavior_pack/recipes/waxing_weathered_copper_door.json new file mode 100644 index 000000000..7afaceb9f --- /dev/null +++ b/behavior_pack/recipes/waxing_weathered_copper_door.json @@ -0,0 +1,27 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:waxing_weathered_copper_door" + }, + "tags": [ "crafting_table" ], + "ingredients": [ + { + "item": "minecraft:weathered_copper_door" + }, + { + "item": "minecraft:honeycomb" + } + ], + "unlock": [ + { + "item": "minecraft:weathered_copper_door" + } + ], + "result": { + "item": "minecraft:waxed_weathered_copper_door", + "count": 1 + }, + "priority": 1 + } +} diff --git a/behavior_pack/recipes/waxing_weathered_copper_grate.json b/behavior_pack/recipes/waxing_weathered_copper_grate.json new file mode 100644 index 000000000..1e4dc5464 --- /dev/null +++ b/behavior_pack/recipes/waxing_weathered_copper_grate.json @@ -0,0 +1,27 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:waxing_weathered_copper_grate" + }, + "tags": [ "crafting_table" ], + "ingredients": [ + { + "item": "minecraft:weathered_copper_grate" + }, + { + "item": "minecraft:honeycomb" + } + ], + "unlock": [ + { + "item": "minecraft:weathered_copper_grate" + } + ], + "result": { + "item": "minecraft:waxed_weathered_copper_grate", + "count": 1 + }, + "priority": 1 + } +} diff --git a/behavior_pack/recipes/waxing_weathered_copper_trapdoor.json b/behavior_pack/recipes/waxing_weathered_copper_trapdoor.json new file mode 100644 index 000000000..e523fb9bf --- /dev/null +++ b/behavior_pack/recipes/waxing_weathered_copper_trapdoor.json @@ -0,0 +1,27 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:waxing_weathered_copper_trapdoor" + }, + "tags": [ "crafting_table" ], + "ingredients": [ + { + "item": "minecraft:weathered_copper_trapdoor" + }, + { + "item": "minecraft:honeycomb" + } + ], + "unlock": [ + { + "item": "minecraft:weathered_copper_trapdoor" + } + ], + "result": { + "item": "minecraft:waxed_weathered_copper_trapdoor", + "count": 1 + }, + "priority": 1 + } +} diff --git a/behavior_pack/recipes/wind_charge.json b/behavior_pack/recipes/wind_charge.json new file mode 100644 index 000000000..f901a2b72 --- /dev/null +++ b/behavior_pack/recipes/wind_charge.json @@ -0,0 +1,23 @@ +{ + "format_version": "1.20.10", + "minecraft:recipe_shapeless": { + "description": { + "identifier": "minecraft:wind_charge" + }, + "tags": [ "crafting_table" ], + "ingredients": [ + { + "item": "minecraft:breeze_rod" + } + ], + "unlock": [ + { + "item": "minecraft:breeze_rod" + } + ], + "result": { + "item": "minecraft:wind_charge", + "count": 4 + } + } +} diff --git a/behavior_pack/recipes/yellow_dye_from_sunflower.json b/behavior_pack/recipes/yellow_dye_from_sunflower.json index f7048d180..55fe0540a 100644 --- a/behavior_pack/recipes/yellow_dye_from_sunflower.json +++ b/behavior_pack/recipes/yellow_dye_from_sunflower.json @@ -8,14 +8,12 @@ "group": "yellow_dye", "ingredients": [ { - "item": "minecraft:double_plant", - "data": 0 + "item": "minecraft:sunflower" } ], "unlock": [ { - "item": "minecraft:double_plant", - "data": 0 + "item": "minecraft:sunflower" } ], "result": { diff --git a/behavior_pack/spawn_rules/bogged.json b/behavior_pack/spawn_rules/bogged.json new file mode 100644 index 000000000..1f2ec2d78 --- /dev/null +++ b/behavior_pack/spawn_rules/bogged.json @@ -0,0 +1,41 @@ +{ + "format_version": "1.8.0", + "minecraft:spawn_rules": { + "description": { + "identifier": "minecraft:bogged", + "population_control": "monster" + }, + "conditions": [ + { + "minecraft:spawns_on_surface": { + }, + "minecraft:brightness_filter": { + "min": 0, + "max": 7, + "adjust_for_weather": true + }, + + "minecraft:difficulty_filter": { + "min": "easy", + "max": "hard" + }, + + "minecraft:weight": { + "default": 40 + }, + + "minecraft:herd": { + "min_size": 1, + "max_size": 2 + }, + + "minecraft:biome_filter": { + "any_of": [ + {"test": "has_biome_tag", "operator": "==", "value": "swamp"}, + {"test": "has_biome_tag", "operator": "==", "value": "mangrove_swamp"} + ] + } + } + ] + } +} \ No newline at end of file diff --git a/behavior_pack/trading/economy_trades/cartographer_trades.json b/behavior_pack/trading/economy_trades/cartographer_trades.json index eecff47e3..e8abc02ea 100644 --- a/behavior_pack/trading/economy_trades/cartographer_trades.json +++ b/behavior_pack/trading/economy_trades/cartographer_trades.json @@ -1,267 +1,307 @@ { - "tiers": [ - { - "total_exp_required": 0, - "groups": [ - { - "num_to_select": 1, - "trades": [ - { - "wants": [ - { - "item": "minecraft:paper", - "quantity": 24, - "price_multiplier": 0.05 - } - ], - "gives": [ - { - "item": "minecraft:emerald", - "quantity": 1 - } - ], - "trader_exp": 2, - "max_uses": 16, - "reward_exp": true - } - ] - }, - { - "num_to_select": 1, - "trades": [ - { - "wants": [ - { - "item": "minecraft:emerald", - "quantity": 7, - "price_multiplier": 0.05 - } - ], - "gives": [ - { - "item": "minecraft:emptymap:0", - "quantity": 1 - } - ], - "trader_exp": 1, - "max_uses": 12, - "reward_exp": true - } - ] - } - ] - }, - { - "total_exp_required": 10, - "groups": [ - { - "num_to_select": 1, - "trades": [ - { - "wants": [ - { - "item": "minecraft:glass_pane", - "quantity": 11, - "price_multiplier": 0.05 - } - ], - "gives": [ - { - "item": "minecraft:emerald", - "quantity": 1 - } - ], - "trader_exp": 10, - "max_uses": 16, - "reward_exp": true - } - ] - }, - { - "num_to_select": 1, - "trades": [ - { - "wants": [ - { - "item": "minecraft:emerald", - "quantity": 13, - "price_multiplier": 0.2 - }, - { - "item": "minecraft:compass", - "quantity": 1, - "price_multiplier": 0.2 - } - ], - "gives": [ - { - "item": "minecraft:map", - "filters": { "test": "in_overworld", "subject": "self", "value": true, "operator": "="}, - "functions": [ - { - "function": "exploration_map", - "destination": "monument" - } - ] - } - ], - "trader_exp": 5, - "max_uses": 12, - "reward_exp": true - } - ] - } - ] - }, - { - "total_exp_required": 70, - "groups": [ - { - "num_to_select": 1, - "trades": [ - { - "wants": [ - { - "item": "minecraft:compass", - "quantity": 1, - "price_multiplier": 0.05 - } - ], - "gives": [ - { - "item": "minecraft:emerald", - "quantity": 1 - } - ], - "trader_exp": 20, - "max_uses": 12, - "reward_exp": true - } - ] - }, - { - "num_to_select": 1, - "trades": [ - { - "wants": [ - { - "item": "minecraft:emerald", - "quantity": 14, - "price_multiplier": 0.2 - }, - { - "item": "minecraft:compass", - "quantity": 1, - "price_multiplier": 0.2 - } - ], - "gives": [ - { - "item": "minecraft:map", - "filters": { "test": "in_overworld", "subject": "self", "value": true, "operator": "="}, - "functions": [ - { - "function": "exploration_map", - "destination": "mansion" - } - ] - } - ], - "trader_exp": 10, - "max_uses": 12, - "reward_exp": true - } - ] - } - ] - }, - { - "total_exp_required": 150, - "groups": [ - { - "num_to_select": 1, - "trades": [ - { - "wants": [ - { - "item": "minecraft:emerald", - "quantity": 7, - "price_multiplier": 0.05 - } - ], - "gives": [ - { - "item": "minecraft:frame", - "quantity": 1 - } - ], - "trader_exp": 15, - "max_uses": 12, - "reward_exp": true - } - ] - }, - { - "num_to_select": 1, - "trades": [ - { - "wants": [ - { - "item": "minecraft:emerald", - "quantity": 3, - "price_multiplier": 0.05 - } - ], - "gives": [ - { - "item": "minecraft:banner", - "quantity": 1, - "functions": [ - { - "function": "random_aux_value", - "values": { - "min": 0, - "max": 15 + "tiers": [ + { + "total_exp_required": 0, + "groups": [ + { + "num_to_select": 1, + "trades": [ + { + "wants": [ + { + "item": "minecraft:paper", + "quantity": 24, + "price_multiplier": 0.05 + } + ], + "gives": [ + { + "item": "minecraft:emerald", + "quantity": 1 + } + ], + "trader_exp": 2, + "max_uses": 16, + "reward_exp": true + } + ] + }, + { + "num_to_select": 1, + "trades": [ + { + "wants": [ + { + "item": "minecraft:emerald", + "quantity": 7, + "price_multiplier": 0.05 + } + ], + "gives": [ + { + "item": "minecraft:emptymap:0", + "quantity": 1 + } + ], + "trader_exp": 1, + "max_uses": 12, + "reward_exp": true + } + ] + } + ] + }, + { + "total_exp_required": 10, + "groups": [ + { + "num_to_select": 1, + "trades": [ + { + "wants": [ + { + "item": "minecraft:glass_pane", + "quantity": 11, + "price_multiplier": 0.05 + } + ], + "gives": [ + { + "item": "minecraft:emerald", + "quantity": 1 + } + ], + "trader_exp": 10, + "max_uses": 16, + "reward_exp": true + } + ] + }, + { + "num_to_select": 1, + "trades": [ + { + "wants": [ + { + "item": "minecraft:emerald", + "quantity": 13, + "price_multiplier": 0.2 + }, + { + "item": "minecraft:compass", + "quantity": 1, + "price_multiplier": 0.2 + } + ], + "gives": [ + { + "item": "minecraft:map", + "filters": { "test": "in_overworld", "subject": "self", "value": true, "operator": "="}, + "functions": [ + { + "function": "exploration_map", + "destination": "monument" } - } - ] - } - ], - "trader_exp": 15, - "max_uses": 12, - "reward_exp": true - } - ] - } - ] - }, - { - "total_exp_required": 250, - "groups": [ - { - "num_to_select": 1, - "trades": [ - { - "wants": [ - { - "item": "minecraft:emerald", - "quantity": 8, - "price_multiplier": 0.05 - } - ], - "gives": [ - { - "item": "minecraft:banner_pattern:7", - "quantity": 1 - } - ], - "trader_exp": 30, - "max_uses": 12, - "reward_exp": true - } - ] - } - ] - } - ] -} + ] + } + ], + "trader_exp": 5, + "max_uses": 12, + "reward_exp": true + } + ] + } + ] + }, + { + "total_exp_required": 70, + "groups": [ + { + "num_to_select": 1, + "trades": [ + { + "wants": [ + { + "item": "minecraft:compass", + "quantity": 1, + "price_multiplier": 0.05 + } + ], + "gives": [ + { + "item": "minecraft:emerald", + "quantity": 1 + } + ], + "trader_exp": 20, + "max_uses": 12, + "reward_exp": true + } + ] + }, + { + "num_to_select": 1, + "trades": [ + { + "wants": [ + { + "item": "minecraft:emerald", + "quantity": 14, + "price_multiplier": 0.2 + }, + { + "item": "minecraft:compass", + "quantity": 1, + "price_multiplier": 0.2 + } + ], + "gives": [ + { + "item": "minecraft:map", + "filters": { "test": "in_overworld", "subject": "self", "value": true, "operator": "="}, + "functions": [ + { + "function": "exploration_map", + "destination": "mansion" + } + ] + } + ], + "trader_exp": 10, + "max_uses": 12, + "reward_exp": true + } + ] + }, + { + "num_to_select": 1, + "trades": [ + { + "wants": [ + { + "item": "minecraft:emerald", + "quantity": 12, + "price_multiplier": 0.2 + }, + { + "item": "minecraft:compass", + "quantity": 1, + "price_multiplier": 0.2 + } + ], + "gives": [ + { + "item": "minecraft:map", + "filters": { + "test": "in_overworld", + "subject": "self", + "value": true, + "operator": "=" + }, + "functions": [ + { + "function": "exploration_map", + "destination": "trial_chambers" + } + ] + } + ], + "trader_exp": 10, + "max_uses": 12, + "reward_exp": true + } + ] + } + ] + }, + { + "total_exp_required": 150, + "groups": [ + { + "num_to_select": 1, + "trades": [ + { + "wants": [ + { + "item": "minecraft:emerald", + "quantity": 7, + "price_multiplier": 0.05 + } + ], + "gives": [ + { + "item": "minecraft:frame", + "quantity": 1 + } + ], + "trader_exp": 15, + "max_uses": 12, + "reward_exp": true + } + ] + }, + { + "num_to_select": 1, + "trades": [ + { + "wants": [ + { + "item": "minecraft:emerald", + "quantity": 3, + "price_multiplier": 0.05 + } + ], + "gives": [ + { + "item": "minecraft:banner", + "quantity": 1, + "functions": [ + { + "function": "random_aux_value", + "values": { + "min": 0, + "max": 15 + } + } + ] + } + ], + "trader_exp": 15, + "max_uses": 12, + "reward_exp": true + } + ] + } + ] + }, + { + "total_exp_required": 250, + "groups": [ + { + "num_to_select": 1, + "trades": [ + { + "wants": [ + { + "item": "minecraft:emerald", + "quantity": 8, + "price_multiplier": 0.05 + } + ], + "gives": [ + { + "item": "minecraft:banner_pattern:7", + "quantity": 1 + } + ], + "trader_exp": 30, + "max_uses": 12, + "reward_exp": true + } + ] + } + ] + } + ] + } + \ No newline at end of file diff --git a/documentation/Addons.html b/documentation/Addons.html index 141dbbe0f..178d378ab 100644 --- a/documentation/Addons.html +++ b/documentation/Addons.html @@ -1,4 +1,4 @@ -

ADDONS DOCUMENTATION
Version: 1.20.80.5

+

ADDONS DOCUMENTATION
Version: 1.21.0.3

Index

@@ -4908,97 +4908,97 @@

List of all Aux-Values supported and what they equate to as Block-States

minecraft:coral_block:000 - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -7590,97 +7590,97 @@

List of all Aux-Values supported and what they equate to as Block-States

minecraft:double_plant:000 - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -8070,97 +8070,97 @@

List of all Aux-Values supported and what they equate to as Block-States

minecraft:double_wooden_slab:000 - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -19704,97 +19704,97 @@

List of all Aux-Values supported and what they equate to as Block-States

minecraft:stone_block_slab:000 - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -20544,25 +20544,25 @@

List of all Aux-Values supported and what they equate to as Block-States

minecraft:tallgrass:000 - + - + - + - + @@ -23376,97 +23376,97 @@

List of all Aux-Values supported and what they equate to as Block-States

minecraft:wooden_slab:000 - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + @@ -24090,6 +24090,12 @@

BlockStates

+ + + + + + @@ -24825,6 +24831,9 @@

List of fully-qualified block names

+ + + @@ -24834,6 +24843,9 @@

List of fully-qualified block names

+ + + @@ -24882,6 +24894,9 @@

List of fully-qualified block names

+ + + @@ -25056,6 +25071,9 @@

List of fully-qualified block names

+ + + @@ -25095,9 +25113,6 @@

List of fully-qualified block names

- - - @@ -25290,30 +25305,45 @@

List of fully-qualified block names

+ + + + + + + + + + + + + + + @@ -25410,9 +25440,6 @@

List of fully-qualified block names

- - - @@ -25863,12 +25890,18 @@

List of fully-qualified block names

+ + + + + + @@ -26142,6 +26175,9 @@

List of fully-qualified block names

+ + + @@ -26250,6 +26286,9 @@

List of fully-qualified block names

+ + + @@ -26331,6 +26370,9 @@

List of fully-qualified block names

+ + + @@ -26547,6 +26589,9 @@

List of fully-qualified block names

+ + + @@ -26694,6 +26739,12 @@

List of fully-qualified block names

+ + + + + + @@ -26919,6 +26970,9 @@

List of fully-qualified block names

+ + + @@ -27018,12 +27072,18 @@

List of fully-qualified block names

+ + + + + + @@ -27054,6 +27114,9 @@

List of fully-qualified block names

+ + + @@ -27093,6 +27156,9 @@

List of fully-qualified block names

+ + + @@ -27192,9 +27258,6 @@

List of fully-qualified block names

- - - @@ -27204,6 +27267,9 @@

List of fully-qualified block names

+ + + @@ -27294,6 +27360,9 @@

List of fully-qualified block names

+ + + @@ -27303,7 +27372,7 @@

List of fully-qualified block names

- + @@ -27342,6 +27411,9 @@

List of fully-qualified block names

+ + + @@ -28079,6 +28151,11 @@

Entities

+ + + + + @@ -28553,7 +28630,7 @@

Items

- + @@ -28658,7 +28735,7 @@

Items

- + @@ -28683,7 +28760,7 @@

Items

- + @@ -28703,7 +28780,7 @@

Items

- + @@ -28718,17 +28795,17 @@

Items

- + - + - + @@ -28738,7 +28815,7 @@

Items

- + @@ -28783,7 +28860,7 @@

Items

- + @@ -28803,7 +28880,7 @@

Items

- + @@ -28863,7 +28940,7 @@

Items

- + @@ -28873,7 +28950,7 @@

Items

- + @@ -28908,7 +28985,7 @@

Items

- + @@ -29003,7 +29080,7 @@

Items

- + @@ -29178,7 +29255,7 @@

Items

- + @@ -29203,7 +29280,7 @@

Items

- + @@ -29278,7 +29355,7 @@

Items

- + @@ -29288,7 +29365,7 @@

Items

- + @@ -29342,6 +29419,11 @@

Items

+ + + + + @@ -29363,7 +29445,7 @@

Items

- + @@ -29382,6 +29464,11 @@

Items

+ + + + + @@ -29458,7 +29545,7 @@

Items

- + @@ -29472,6 +29559,11 @@

Items

+ + + + + @@ -29488,7 +29580,7 @@

Items

- + @@ -29513,12 +29605,12 @@

Items

- + - + @@ -29538,7 +29630,7 @@

Items

- + @@ -29598,7 +29690,7 @@

Items

- + @@ -29643,7 +29735,7 @@

Items

- + @@ -29653,7 +29745,7 @@

Items

- + @@ -29708,7 +29800,7 @@

Items

- + @@ -29748,7 +29840,7 @@

Items

- + @@ -29853,7 +29945,7 @@

Items

- + @@ -29887,6 +29979,11 @@

Items

+ + + + + @@ -29953,17 +30050,17 @@

Items

- + - + - + @@ -30048,22 +30145,22 @@

Items

- + - + - + - + @@ -30138,7 +30235,7 @@

Items

- + @@ -30193,7 +30290,7 @@

Items

- + @@ -30313,7 +30410,7 @@

Items

- + @@ -30328,7 +30425,7 @@

Items

- + @@ -30437,6 +30534,11 @@

Items

+ + + + + @@ -30447,6 +30549,11 @@

Items

+ + + + + @@ -30457,6 +30564,11 @@

Items

+ + + + + @@ -30467,6 +30579,11 @@

Items

+ + + + + @@ -30477,6 +30594,11 @@

Items

+ + + + + @@ -30688,7 +30810,7 @@

Items

- + @@ -30713,7 +30835,7 @@

Items

- + @@ -30773,17 +30895,17 @@

Items

- + - + - + @@ -31443,7 +31565,7 @@

Items

- + @@ -31513,7 +31635,7 @@

Items

- + @@ -31568,7 +31690,7 @@

Items

- + @@ -31583,7 +31705,7 @@

Items

- + @@ -31597,6 +31719,11 @@

Items

+ + + + + @@ -31622,6 +31749,11 @@

Items

+ + + + + @@ -31658,7 +31790,7 @@

Items

- + @@ -31668,7 +31800,7 @@

Items

- + @@ -31708,7 +31840,7 @@

Items

- + @@ -31718,7 +31850,7 @@

Items

- + @@ -31773,7 +31905,7 @@

Items

- + @@ -31793,7 +31925,7 @@

Items

- + @@ -31813,7 +31945,7 @@

Items

- + @@ -32073,7 +32205,7 @@

Items

- + @@ -32233,12 +32365,12 @@

Items

- + - + @@ -32278,12 +32410,12 @@

Items

- + - + @@ -32337,6 +32469,11 @@

Items

+ + + + + @@ -32348,12 +32485,12 @@

Items

- + - + @@ -32368,7 +32505,7 @@

Items

- + @@ -32653,7 +32790,7 @@

Items

- + @@ -32777,6 +32914,11 @@

Items

+ + + + + @@ -32823,12 +32965,12 @@

Items

- + - + @@ -32972,6 +33114,11 @@

Items

+ + + + + @@ -33088,17 +33235,17 @@

Items

- + - + - + @@ -33188,7 +33335,7 @@

Items

- + @@ -33198,12 +33345,12 @@

Items

- + - + @@ -33258,7 +33405,7 @@

Items

- + @@ -33293,7 +33440,7 @@

Items

- + @@ -33333,7 +33480,7 @@

Items

- + @@ -33383,7 +33530,7 @@

Items

- + @@ -33448,7 +33595,7 @@

Items

- + @@ -33467,6 +33614,16 @@

Items

+ + + + + + + + + + @@ -33483,17 +33640,22 @@

Items

- + - + + + + + + - + @@ -33547,6 +33709,11 @@

Items

+ + + + + @@ -33558,7 +33725,7 @@

Items

- + @@ -33583,7 +33750,7 @@

Items

- + @@ -33593,57 +33760,57 @@

Items

- + - + - + - + - + - + - + - + - + - + - + @@ -33678,7 +33845,7 @@

Items

- + @@ -33757,6 +33924,16 @@

Items

+ + + + + + + + + + @@ -33912,6 +34089,16 @@

Items

+ + + + + + + + + + @@ -34043,12 +34230,12 @@

Items

- + - + @@ -34298,7 +34485,7 @@

Items

- + @@ -34427,6 +34614,11 @@

Items

+ + + + + @@ -34463,12 +34655,12 @@

Items

- + - + @@ -34508,7 +34700,7 @@

Items

- + @@ -34543,7 +34735,7 @@

Items

- + @@ -34668,7 +34860,12 @@

Items

- + + + + + + @@ -34707,13 +34904,18 @@

Items

+ + + + + - + @@ -34723,7 +34925,7 @@

Items

- + @@ -34768,17 +34970,17 @@

Items

- + - + - + @@ -34793,7 +34995,7 @@

Items

- + @@ -34802,13 +35004,18 @@

Items

+ + + + + - + @@ -34823,7 +35030,7 @@

Items

- + @@ -34858,7 +35065,7 @@

Items

- + @@ -34922,6 +35129,11 @@

Items

+ + + + + @@ -34933,12 +35145,12 @@

Items

- + - + @@ -34963,7 +35175,7 @@

Items

- + @@ -34993,12 +35205,12 @@

Items

- + - + @@ -35013,7 +35225,7 @@

Items

- + @@ -35043,7 +35255,7 @@

Items

- + @@ -35133,7 +35345,7 @@

Items

- + @@ -35143,17 +35355,17 @@

Items

- + - + - + @@ -35193,7 +35405,7 @@

Items

- + @@ -35212,6 +35424,11 @@

Items

+ + + + + @@ -35407,6 +35624,11 @@

Items

+ + + + + @@ -35433,17 +35655,22 @@

Items

- + - + + + + + + - + @@ -35453,7 +35680,7 @@

Items

- + @@ -35498,7 +35725,7 @@

Items

- + @@ -35513,7 +35740,7 @@

Items

- + @@ -35557,6 +35784,11 @@

Items

+ + + + + @@ -35678,7 +35910,7 @@

Items

- + @@ -35718,12 +35950,12 @@

Items

- + - + @@ -35733,7 +35965,7 @@

Items

- + @@ -35758,7 +35990,7 @@

Items

- + @@ -35793,7 +36025,7 @@

Items

- + @@ -36048,7 +36280,7 @@

Items

- + @@ -36188,7 +36420,7 @@

Items

- + @@ -36218,7 +36450,7 @@

Items

- + @@ -36228,7 +36460,7 @@

Items

- + @@ -36268,7 +36500,7 @@

Items

- + @@ -36278,7 +36510,7 @@

Items

- + diff --git a/documentation/Animations.html b/documentation/Animations.html index b644d7dc3..bc386e01d 100644 --- a/documentation/Animations.html +++ b/documentation/Animations.html @@ -1,4 +1,4 @@ -

ANIMATIONS DOCUMENTATION
Version: 1.20.80.5

+

ANIMATIONS DOCUMENTATION
Version: 1.21.0.3

Index

Blocks
minecraft:coral_block 0minecraft:coral_block ["coral_color" = "blue", "dead_bit" = 0]
minecraft:tube_coral_block
minecraft:coral_block:001 minecraft:coral_block 1minecraft:coral_block ["coral_color" = "pink", "dead_bit" = 0]
minecraft:brain_coral_block
minecraft:coral_block:002 minecraft:coral_block 2minecraft:coral_block ["coral_color" = "purple", "dead_bit" = 0]
minecraft:bubble_coral_block
minecraft:coral_block:003 minecraft:coral_block 3minecraft:coral_block ["coral_color" = "red", "dead_bit" = 0]
minecraft:fire_coral_block
minecraft:coral_block:004 minecraft:coral_block 4minecraft:coral_block ["coral_color" = "yellow", "dead_bit" = 0]
minecraft:horn_coral_block
minecraft:coral_block:005 minecraft:coral_block 5minecraft:coral_block ["coral_color" = "blue", "dead_bit" = 0]
minecraft:tube_coral_block
minecraft:coral_block:006 minecraft:coral_block 6minecraft:coral_block ["coral_color" = "blue", "dead_bit" = 0]
minecraft:tube_coral_block
minecraft:coral_block:007 minecraft:coral_block 7minecraft:coral_block ["coral_color" = "blue", "dead_bit" = 0]
minecraft:tube_coral_block
minecraft:coral_block:008 minecraft:coral_block 8minecraft:coral_block ["coral_color" = "blue", "dead_bit" = 1]
minecraft:dead_tube_coral_block
minecraft:coral_block:009 minecraft:coral_block 9minecraft:coral_block ["coral_color" = "pink", "dead_bit" = 1]
minecraft:dead_brain_coral_block
minecraft:coral_block:010 minecraft:coral_block 10minecraft:coral_block ["coral_color" = "purple", "dead_bit" = 1]
minecraft:dead_bubble_coral_block
minecraft:coral_block:011 minecraft:coral_block 11minecraft:coral_block ["coral_color" = "red", "dead_bit" = 1]
minecraft:dead_fire_coral_block
minecraft:coral_block:012 minecraft:coral_block 12minecraft:coral_block ["coral_color" = "yellow", "dead_bit" = 1]
minecraft:dead_horn_coral_block
minecraft:coral_block:013 minecraft:coral_block 13minecraft:coral_block ["coral_color" = "blue", "dead_bit" = 1]
minecraft:dead_tube_coral_block
minecraft:coral_block:014 minecraft:coral_block 14minecraft:coral_block ["coral_color" = "blue", "dead_bit" = 1]
minecraft:dead_tube_coral_block
minecraft:coral_block:015 minecraft:coral_block 15minecraft:coral_block ["coral_color" = "blue", "dead_bit" = 1]
minecraft:dead_tube_coral_block
minecraft:coral_fan:000 minecraft:double_plant 0minecraft:double_plant ["double_plant_type" = "sunflower", "upper_block_bit" = 0]
minecraft:sunflower ["upper_block_bit" = 0]
minecraft:double_plant:001 minecraft:double_plant 1minecraft:double_plant ["double_plant_type" = "syringa", "upper_block_bit" = 0]
minecraft:lilac ["upper_block_bit" = 0]
minecraft:double_plant:002 minecraft:double_plant 2minecraft:double_plant ["double_plant_type" = "grass", "upper_block_bit" = 0]
minecraft:tall_grass ["upper_block_bit" = 0]
minecraft:double_plant:003 minecraft:double_plant 3minecraft:double_plant ["double_plant_type" = "fern", "upper_block_bit" = 0]
minecraft:large_fern ["upper_block_bit" = 0]
minecraft:double_plant:004 minecraft:double_plant 4minecraft:double_plant ["double_plant_type" = "rose", "upper_block_bit" = 0]
minecraft:rose_bush ["upper_block_bit" = 0]
minecraft:double_plant:005 minecraft:double_plant 5minecraft:double_plant ["double_plant_type" = "paeonia", "upper_block_bit" = 0]
minecraft:peony ["upper_block_bit" = 0]
minecraft:double_plant:006 minecraft:double_plant 6minecraft:double_plant ["double_plant_type" = "sunflower", "upper_block_bit" = 0]
minecraft:sunflower ["upper_block_bit" = 0]
minecraft:double_plant:007 minecraft:double_plant 7minecraft:double_plant ["double_plant_type" = "sunflower", "upper_block_bit" = 0]
minecraft:sunflower ["upper_block_bit" = 0]
minecraft:double_plant:008 minecraft:double_plant 8minecraft:double_plant ["double_plant_type" = "sunflower", "upper_block_bit" = 1]
minecraft:sunflower ["upper_block_bit" = 1]
minecraft:double_plant:009 minecraft:double_plant 9minecraft:double_plant ["double_plant_type" = "syringa", "upper_block_bit" = 1]
minecraft:lilac ["upper_block_bit" = 1]
minecraft:double_plant:010 minecraft:double_plant 10minecraft:double_plant ["double_plant_type" = "grass", "upper_block_bit" = 1]
minecraft:tall_grass ["upper_block_bit" = 1]
minecraft:double_plant:011 minecraft:double_plant 11minecraft:double_plant ["double_plant_type" = "fern", "upper_block_bit" = 1]
minecraft:large_fern ["upper_block_bit" = 1]
minecraft:double_plant:012 minecraft:double_plant 12minecraft:double_plant ["double_plant_type" = "rose", "upper_block_bit" = 1]
minecraft:rose_bush ["upper_block_bit" = 1]
minecraft:double_plant:013 minecraft:double_plant 13minecraft:double_plant ["double_plant_type" = "paeonia", "upper_block_bit" = 1]
minecraft:peony ["upper_block_bit" = 1]
minecraft:double_plant:014 minecraft:double_plant 14minecraft:double_plant ["double_plant_type" = "sunflower", "upper_block_bit" = 1]
minecraft:sunflower ["upper_block_bit" = 1]
minecraft:double_plant:015 minecraft:double_plant 15minecraft:double_plant ["double_plant_type" = "sunflower", "upper_block_bit" = 1]
minecraft:sunflower ["upper_block_bit" = 1]
minecraft:double_stone_block_slab2:000 minecraft:double_wooden_slab 0minecraft:oak_double_slab ["top_slot_bit" = 0]
minecraft:oak_double_slab ["minecraft:vertical_half" = "bottom"]
minecraft:double_wooden_slab:001 minecraft:double_wooden_slab 1minecraft:spruce_double_slab ["top_slot_bit" = 0]
minecraft:spruce_double_slab ["minecraft:vertical_half" = "bottom"]
minecraft:double_wooden_slab:002 minecraft:double_wooden_slab 2minecraft:birch_double_slab ["top_slot_bit" = 0]
minecraft:birch_double_slab ["minecraft:vertical_half" = "bottom"]
minecraft:double_wooden_slab:003 minecraft:double_wooden_slab 3minecraft:jungle_double_slab ["top_slot_bit" = 0]
minecraft:jungle_double_slab ["minecraft:vertical_half" = "bottom"]
minecraft:double_wooden_slab:004 minecraft:double_wooden_slab 4minecraft:acacia_double_slab ["top_slot_bit" = 0]
minecraft:acacia_double_slab ["minecraft:vertical_half" = "bottom"]
minecraft:double_wooden_slab:005 minecraft:double_wooden_slab 5minecraft:dark_oak_double_slab ["top_slot_bit" = 0]
minecraft:dark_oak_double_slab ["minecraft:vertical_half" = "bottom"]
minecraft:double_wooden_slab:006 minecraft:double_wooden_slab 6minecraft:oak_double_slab ["top_slot_bit" = 0]
minecraft:oak_double_slab ["minecraft:vertical_half" = "bottom"]
minecraft:double_wooden_slab:007 minecraft:double_wooden_slab 7minecraft:oak_double_slab ["top_slot_bit" = 0]
minecraft:oak_double_slab ["minecraft:vertical_half" = "bottom"]
minecraft:double_wooden_slab:008 minecraft:double_wooden_slab 8minecraft:oak_double_slab ["top_slot_bit" = 1]
minecraft:oak_double_slab ["minecraft:vertical_half" = "top"]
minecraft:double_wooden_slab:009 minecraft:double_wooden_slab 9minecraft:spruce_double_slab ["top_slot_bit" = 1]
minecraft:spruce_double_slab ["minecraft:vertical_half" = "top"]
minecraft:double_wooden_slab:010 minecraft:double_wooden_slab 10minecraft:birch_double_slab ["top_slot_bit" = 1]
minecraft:birch_double_slab ["minecraft:vertical_half" = "top"]
minecraft:double_wooden_slab:011 minecraft:double_wooden_slab 11minecraft:jungle_double_slab ["top_slot_bit" = 1]
minecraft:jungle_double_slab ["minecraft:vertical_half" = "top"]
minecraft:double_wooden_slab:012 minecraft:double_wooden_slab 12minecraft:acacia_double_slab ["top_slot_bit" = 1]
minecraft:acacia_double_slab ["minecraft:vertical_half" = "top"]
minecraft:double_wooden_slab:013 minecraft:double_wooden_slab 13minecraft:dark_oak_double_slab ["top_slot_bit" = 1]
minecraft:dark_oak_double_slab ["minecraft:vertical_half" = "top"]
minecraft:double_wooden_slab:014 minecraft:double_wooden_slab 14minecraft:oak_double_slab ["top_slot_bit" = 1]
minecraft:oak_double_slab ["minecraft:vertical_half" = "top"]
minecraft:double_wooden_slab:015 minecraft:double_wooden_slab 15minecraft:oak_double_slab ["top_slot_bit" = 1]
minecraft:oak_double_slab ["minecraft:vertical_half" = "top"]
minecraft:dropper:000 minecraft:stone_block_slab 0minecraft:stone_block_slab ["minecraft:vertical_half" = "bottom", "stone_slab_type" = "smooth_stone"]
minecraft:smooth_stone_slab ["minecraft:vertical_half" = "bottom"]
minecraft:stone_block_slab:001 minecraft:stone_block_slab 1minecraft:stone_block_slab ["minecraft:vertical_half" = "bottom", "stone_slab_type" = "sandstone"]
minecraft:sandstone_slab ["minecraft:vertical_half" = "bottom"]
minecraft:stone_block_slab:002 minecraft:stone_block_slab 2minecraft:stone_block_slab ["minecraft:vertical_half" = "bottom", "stone_slab_type" = "wood"]
minecraft:petrified_oak_slab ["minecraft:vertical_half" = "bottom"]
minecraft:stone_block_slab:003 minecraft:stone_block_slab 3minecraft:stone_block_slab ["minecraft:vertical_half" = "bottom", "stone_slab_type" = "cobblestone"]
minecraft:cobblestone_slab ["minecraft:vertical_half" = "bottom"]
minecraft:stone_block_slab:004 minecraft:stone_block_slab 4minecraft:stone_block_slab ["minecraft:vertical_half" = "bottom", "stone_slab_type" = "brick"]
minecraft:brick_slab ["minecraft:vertical_half" = "bottom"]
minecraft:stone_block_slab:005 minecraft:stone_block_slab 5minecraft:stone_block_slab ["minecraft:vertical_half" = "bottom", "stone_slab_type" = "stone_brick"]
minecraft:stone_brick_slab ["minecraft:vertical_half" = "bottom"]
minecraft:stone_block_slab:006 minecraft:stone_block_slab 6minecraft:stone_block_slab ["minecraft:vertical_half" = "bottom", "stone_slab_type" = "quartz"]
minecraft:quartz_slab ["minecraft:vertical_half" = "bottom"]
minecraft:stone_block_slab:007 minecraft:stone_block_slab 7minecraft:stone_block_slab ["minecraft:vertical_half" = "bottom", "stone_slab_type" = "nether_brick"]
minecraft:nether_brick_slab ["minecraft:vertical_half" = "bottom"]
minecraft:stone_block_slab:008 minecraft:stone_block_slab 8minecraft:stone_block_slab ["minecraft:vertical_half" = "top", "stone_slab_type" = "smooth_stone"]
minecraft:smooth_stone_slab ["minecraft:vertical_half" = "top"]
minecraft:stone_block_slab:009 minecraft:stone_block_slab 9minecraft:stone_block_slab ["minecraft:vertical_half" = "top", "stone_slab_type" = "sandstone"]
minecraft:sandstone_slab ["minecraft:vertical_half" = "top"]
minecraft:stone_block_slab:010 minecraft:stone_block_slab 10minecraft:stone_block_slab ["minecraft:vertical_half" = "top", "stone_slab_type" = "wood"]
minecraft:petrified_oak_slab ["minecraft:vertical_half" = "top"]
minecraft:stone_block_slab:011 minecraft:stone_block_slab 11minecraft:stone_block_slab ["minecraft:vertical_half" = "top", "stone_slab_type" = "cobblestone"]
minecraft:cobblestone_slab ["minecraft:vertical_half" = "top"]
minecraft:stone_block_slab:012 minecraft:stone_block_slab 12minecraft:stone_block_slab ["minecraft:vertical_half" = "top", "stone_slab_type" = "brick"]
minecraft:brick_slab ["minecraft:vertical_half" = "top"]
minecraft:stone_block_slab:013 minecraft:stone_block_slab 13minecraft:stone_block_slab ["minecraft:vertical_half" = "top", "stone_slab_type" = "stone_brick"]
minecraft:stone_brick_slab ["minecraft:vertical_half" = "top"]
minecraft:stone_block_slab:014 minecraft:stone_block_slab 14minecraft:stone_block_slab ["minecraft:vertical_half" = "top", "stone_slab_type" = "quartz"]
minecraft:quartz_slab ["minecraft:vertical_half" = "top"]
minecraft:stone_block_slab:015 minecraft:stone_block_slab 15minecraft:stone_block_slab ["minecraft:vertical_half" = "top", "stone_slab_type" = "nether_brick"]
minecraft:nether_brick_slab ["minecraft:vertical_half" = "top"]
minecraft:stone_brick_stairs:000 minecraft:tallgrass 0minecraft:tallgrass ["tall_grass_type" = "default"]
minecraft:short_grass
minecraft:tallgrass:001 minecraft:tallgrass 1minecraft:tallgrass ["tall_grass_type" = "tall"]
minecraft:short_grass
minecraft:tallgrass:002 minecraft:tallgrass 2minecraft:tallgrass ["tall_grass_type" = "fern"]
minecraft:fern
minecraft:tallgrass:003 minecraft:tallgrass 3minecraft:tallgrass ["tall_grass_type" = "snow"]
minecraft:fern
minecraft:tnt:000 minecraft:wooden_slab 0minecraft:oak_slab ["top_slot_bit" = 0]
minecraft:oak_slab ["minecraft:vertical_half" = "bottom"]
minecraft:wooden_slab:001 minecraft:wooden_slab 1minecraft:spruce_slab ["top_slot_bit" = 0]
minecraft:spruce_slab ["minecraft:vertical_half" = "bottom"]
minecraft:wooden_slab:002 minecraft:wooden_slab 2minecraft:birch_slab ["top_slot_bit" = 0]
minecraft:birch_slab ["minecraft:vertical_half" = "bottom"]
minecraft:wooden_slab:003 minecraft:wooden_slab 3minecraft:jungle_slab ["top_slot_bit" = 0]
minecraft:jungle_slab ["minecraft:vertical_half" = "bottom"]
minecraft:wooden_slab:004 minecraft:wooden_slab 4minecraft:acacia_slab ["top_slot_bit" = 0]
minecraft:acacia_slab ["minecraft:vertical_half" = "bottom"]
minecraft:wooden_slab:005 minecraft:wooden_slab 5minecraft:dark_oak_slab ["top_slot_bit" = 0]
minecraft:dark_oak_slab ["minecraft:vertical_half" = "bottom"]
minecraft:wooden_slab:006 minecraft:wooden_slab 6minecraft:oak_slab ["top_slot_bit" = 0]
minecraft:oak_slab ["minecraft:vertical_half" = "bottom"]
minecraft:wooden_slab:007 minecraft:wooden_slab 7minecraft:oak_slab ["top_slot_bit" = 0]
minecraft:oak_slab ["minecraft:vertical_half" = "bottom"]
minecraft:wooden_slab:008 minecraft:wooden_slab 8minecraft:oak_slab ["top_slot_bit" = 1]
minecraft:oak_slab ["minecraft:vertical_half" = "top"]
minecraft:wooden_slab:009 minecraft:wooden_slab 9minecraft:spruce_slab ["top_slot_bit" = 1]
minecraft:spruce_slab ["minecraft:vertical_half" = "top"]
minecraft:wooden_slab:010 minecraft:wooden_slab 10minecraft:birch_slab ["top_slot_bit" = 1]
minecraft:birch_slab ["minecraft:vertical_half" = "top"]
minecraft:wooden_slab:011 minecraft:wooden_slab 11minecraft:jungle_slab ["top_slot_bit" = 1]
minecraft:jungle_slab ["minecraft:vertical_half" = "top"]
minecraft:wooden_slab:012 minecraft:wooden_slab 12minecraft:acacia_slab ["top_slot_bit" = 1]
minecraft:acacia_slab ["minecraft:vertical_half" = "top"]
minecraft:wooden_slab:013 minecraft:wooden_slab 13minecraft:dark_oak_slab ["top_slot_bit" = 1]
minecraft:dark_oak_slab ["minecraft:vertical_half" = "top"]
minecraft:wooden_slab:014 minecraft:wooden_slab 14minecraft:oak_slab ["top_slot_bit" = 1]
minecraft:oak_slab ["minecraft:vertical_half" = "top"]
minecraft:wooden_slab:015 minecraft:wooden_slab 15minecraft:oak_slab ["top_slot_bit" = 1]
minecraft:oak_slab ["minecraft:vertical_half" = "top"]
minecraft:wool:000 Determines the wood type of some blocks
ominousBooleanTrue, FalseDetermines if the block is the ominous version
open_bit Boolean True, False minecraft:brain_coral
minecraft:brain_coral_block
minecraft:brain_coral_fan
minecraft:brick_block
minecraft:brick_slab
minecraft:brick_stairs
minecraft:bubble_coral
minecraft:bubble_coral_block
minecraft:bubble_coral_fan
minecraft:cobblestone
minecraft:cobblestone_slab
minecraft:cobblestone_wall
minecraft:copper_trapdoor
minecraft:coral_block
minecraft:coral_fan_hang
minecraft:dead_brain_coral
minecraft:dead_brain_coral_block
minecraft:dead_brain_coral_fan
minecraft:dead_bubble_coral
minecraft:dead_bubble_coral_block
minecraft:dead_bubble_coral_fan
minecraft:dead_fire_coral
minecraft:dead_fire_coral_block
minecraft:dead_fire_coral_fan
minecraft:dead_horn_coral
minecraft:dead_horn_coral_block
minecraft:dead_horn_coral_fan
minecraft:dead_tube_coral
minecraft:dead_tube_coral_block
minecraft:dead_tube_coral_fan
minecraft:double_cut_copper_slab
minecraft:double_plant
minecraft:double_stone_block_slab
minecraft:fence_gate
minecraft:fern
minecraft:fire
minecraft:fire_coral
minecraft:fire_coral_block
minecraft:fire_coral_fan
minecraft:horn_coral
minecraft:horn_coral_block
minecraft:horn_coral_fan
minecraft:large_amethyst_bud
minecraft:large_fern
minecraft:lava
minecraft:lightning_rod
minecraft:lilac
minecraft:lily_of_the_valley
minecraft:nether_brick_fence
minecraft:nether_brick_slab
minecraft:nether_brick_stairs
minecraft:pearlescent_froglight
minecraft:peony
minecraft:petrified_oak_slab
minecraft:pink_candle
minecraft:quartz_ore
minecraft:quartz_slab
minecraft:quartz_stairs
minecraft:respawn_anchor
minecraft:rose_bush
minecraft:sand
minecraft:sandstone
minecraft:sandstone_slab
minecraft:sandstone_stairs
minecraft:seagrass
minecraft:short_grass
minecraft:shroomlight
minecraft:smooth_stone
minecraft:smooth_stone_slab
minecraft:sniffer_egg
minecraft:stone
minecraft:stone_block_slab
minecraft:stone_block_slab2
minecraft:stone_block_slab4
minecraft:stone_brick_slab
minecraft:stone_brick_stairs
minecraft:structure_void
minecraft:sunflower
minecraft:suspicious_gravel
minecraft:sweet_berry_bush
minecraft:tallgrassminecraft:tall_grass
minecraft:target minecraft:tube_coral
minecraft:tube_coral_block
minecraft:tube_coral_fan
22
ominous_item_spawner145145
painting 83 83
acacia_chest_boat657658
allay_spawn_egg646647
amethyst_shard639640
angler_pottery_sherd671672
archer_pottery_sherd672673
armadillo_scute717718
armadillo_spawn_egg716717
arms_up_pottery_sherd673674
balloon613614
bamboo_chest_raft669670
bamboo_raft668669
bamboo_sign667668
banner_pattern744753
birch_chest_boat654655
blade_pottery_sherd674675
bleach611612
boat742751
bolt_armor_trim_smithing_template713714
brain_coral_block-849
brain_coral_fan -840
brewer_pottery_sherd675676
brick_slab-874
brick_stairs 108
brush694695
bubble_coral_block-850
bubble_coral_fan -841
burn_pottery_sherd676677
camel_spawn_egg670671
camera608609
carpet721723
chain634635
cherry_boat664665
cherry_chest_boat665666
cherry_sign666667
chest_boat660661
coast_armor_trim_smithing_template698699
cobblestone_slab-873
cobblestone_wall 139
compound609610
concrete734740
concrete_powder735741
coral732737
coral_block-132726
coral_fan724727
coral_fan_dead725728
crimson_door631632
crimson_sign629630
danger_pottery_sherd677678
dark_oak_chest_boat658659
dead_brain_coral_block-854
dead_brain_coral_fan -844
dead_bubble_coral_block-855
dead_bubble_coral_fan -845
dead_fire_coral_block-856
dead_fire_coral_fan -846
dead_horn_coral_block-857
dead_horn_coral_fan -847
dead_tube_coral_block-853
dead_tube_coral_fan -134
disc_fragment_5652653
double_plant175735
dune_armor_trim_smithing_template697698
dye743752
echo_shard662663
end_crystal746755
explorer_pottery_sherd678679
eye_armor_trim_smithing_template701702
fence723725
fern-848
field_masoned_banner_pattern 597
fire_coral_block-851
fire_coral_fan -842
flow_armor_trim_smithing_template712713
flow_pottery_sherd679680
friend_pottery_sherd680681
frog_spawn_egg643644
glow_frame638639
glow_stick616617
goat_horn642643
guster_pottery_sherd681682
hard_stained_glass740749
hard_stained_glass_pane741750
heart_pottery_sherd682683
heartbreak_pottery_sherd683684
horn_coral_block-852
horn_coral_fan -843
host_armor_trim_smithing_template711712
howl_pottery_sherd684685
ice_bomb610611
jungle_chest_boat655656
large_fern-865
lava 11
leaves727730
leaves2728731
lilac-863
lily_of_the_valley -839
lodestone_compass617618
log722724
log2733739
mangrove_boat650651
mangrove_chest_boat659660
mangrove_door648649
mangrove_sign649650
medicine614615
miner_pottery_sherd685686
mourner_pottery_sherd686687
music_disc_5651652
music_disc_creator746
music_disc_creator_music_box747
music_disc_far 550
music_disc_otherside641642
music_disc_pigstep635636
music_disc_precipice748
music_disc_relic714715
nether_brick_slab-877
nether_brick_stairs 114
nether_sprouts636637
netherite_axe621622
netherite_boots627628
netherite_chestplate625626
netherite_helmet624625
netherite_hoe622623
netherite_ingot623624
netherite_leggings626627
netherite_pickaxe620621
netherite_scrap628629
netherite_shovel619620
netherite_sword618619
netherite_upgrade_smithing_template695696
oak_chest_boat653654
ominous_bottle608
ominous_trial_key721
orange_candle -414
peony-867
petrified_oak_slab-902
phantom_membrane 586
planks731736
plenty_pottery_sherd687688
prize_pottery_sherd688689
quartz_slab-876
quartz_stairs 156
raiser_armor_trim_smithing_template709710
rapid_fertilizer612613
recovery_compass661662
red_flower730734
rib_armor_trim_smithing_template705706
rose_bush-866
sandstone_slab-872
sandstone_stairs 128
sapling726729
scrape_pottery_sherd689690
sentry_armor_trim_smithing_template696697
shaper_armor_trim_smithing_template710711
sheaf_pottery_sherd690691
shelter_pottery_sherd691692
short_grass31
shroomlight -230
shulker_box738744
silence_armor_trim_smithing_template707708
skull_pottery_sherd692693
smooth_stone_slab44
sniffer_egg -596
snort_pottery_sherd693694
snout_armor_trim_smithing_template704705
soul_campfire637638
sparkler615616
spawn_egg745754
spire_armor_trim_smithing_template706707
spruce_chest_boat656657
spyglass640641
stained_glass736742
stained_glass_pane737743
stained_hardened_clay715716
stone_block_slab44733
stone_brick_slab-875
stone_brick_stairs 109
sunflower175
suspicious_gravel -573
tadpole_bucket645646
tadpole_spawn_egg644645
tall_grass-864
tallgrass31738
tide_armor_trim_smithing_template703704
trader_llama_spawn_egg663664
trial_key719720
tube_coral_block-132
tube_coral_fan -133
vex_armor_trim_smithing_template702703
ward_armor_trim_smithing_template700701
warden_spawn_egg647648
warped_door632633
warped_fungus_on_a_stick633634
warped_sign630631
wayfinder_armor_trim_smithing_template708709
wild_armor_trim_smithing_template699700
wolf_armor718719
wood739745
wooden_slab729732
wool720722
@@ -361,7 +361,7 @@

Entity Definition

In order to define what animations an entity has, you must add both an `animations` and a `scripts/animate` section to an entity's entity definition file.

-Here you can see the entity definition for pig.json:This means you will not see the move animation in the pig.json animation file either. If you would like to make a custom pig walk you can change this line to point to your custom animation.

Animations are specified as a short name, followed by their full resource name. The short name is used in animation controllers and the `scripts/animate` list, while the long name is used in the animations file.

In the `scripts/animate` section, you list the animations to play and in which order. You can either specify an animation directly, or specify a blend expression.

+Here you can see the entity definition for pig.json:



Back to top

+

Note

+ +Note: the walk animation for pig is the same for cows and sheep, and thus uses animation.quadruped.walk instead of defining its own. This means you will not see the move animation in the pig.json animation file either. If you would like to make a custom pig walk you can change this line to point to your custom animation.

Animations are specified as a short name, followed by their full resource name. The short name is used in animation controllers and the `scripts/animate` list, while the long name is used in the animations file.

In the `scripts/animate` section, you list the animations to play and in which order. You can either specify an animation directly, or specify a blend expression.
Back to top

+



@@ -638,6 +642,11 @@

}
+Back to top

+ +

Note

+ +NOTE: The arrays for Materials and Part visibility are applied in the order specified. Materials and Part visibility specified later in the file will override previous materials or parts.

Material array example from Horse render controllers. Saddle will override Mane, which will override TailA, etc.:

Back to top

-

Adding biomes

+

Adding Biomes

-Biomes are read from JSON files in the biomes subfolders of behavior packs. Loading enforces one biome per file; the file name and the actual biome name must match. Adding a file with a new name to the biome data location will make it available for the game to use, while existing biomes can be overriden via files that match their existing name. Note that if you add a new biome you'll need to write component data that allows it to participate in world generation (see full schema below), or else it won't show up in your worlds!
Back to top

+Biomes are read from JSON files in the biomes subfolders of behavior packs. Loading enforces one biome per file; and the file name and the actual biome name must match. Adding a file with a new name to the biome data location will make it available for the game to use, while existing biomes can be overridden using files that match their existing name. Note that if you add a new biome, you'll need to write component data that allows it to participate in world generation (as shown in the full schema below), or else it won't show up in your worlds!
Back to top

Schema

-

-

+Any components that this Biome uses

+ +
Animation Controllers
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Name Type Required? Description
minecraft:capped_surfaceObject of type minecraft:capped_surfaceOptionalGenerates surface on blocks with non-solid blocks above or below.
minecraft:climateObject of type minecraft:climateOptionalDescribes temperature, humidity, precipitation, and similar. Biomes without this component will have default values.
minecraft:frozen_ocean_surfaceObject of type minecraft:frozen_ocean_surfaceOptionalSimilar to overworld_surface. Adds icebergs.
minecraft:mesa_surfaceObject of type minecraft:mesa_surfaceOptionalSimilar to overworld_surface. Adds colored strata and optional pillars.
minecraft:mountain_parametersObject of type minecraft:mountain_parametersOptionalNoise parameters used to drive mountain terrain generation in Overworld.
minecraft:multinoise_generation_rulesObject of type minecraft:multinoise_generation_rulesOptionalControls how this biome is instantiated (and then potentially modified) during world generation of the nether.
minecraft:overworld_generation_rulesObject of type minecraft:overworld_generation_rulesOptionalControls how this biome is instantiated (and then potentially modified) during world generation of the overworld.
minecraft:overworld_heightObject of type minecraft:overworld_heightOptionalNoise parameters used to drive terrain height in the Overworld.
minecraft:surface_material_adjustmentsObject of type minecraft:surface_material_adjustmentsOptionalSpecify fine-detail changes to blocks used in terrain generation (based on a noise function).
minecraft:surface_parametersObject of type minecraft:surface_parametersOptionalControls the blocks used for the default Minecraft Overworld terrain generation.
minecraft:swamp_surfaceObject of type minecraft:swamp_surfaceOptionalSimilar to overworld_surface. Adds swamp surface details.
minecraft:tagsObject of type minecraft:tagsOptionalAttach arbitrary string tags to this biome.
minecraft:the_end_surfaceObject of type minecraft:the_end_surfaceOptionalUse default Minecraft End terrain generation.
Back to top

+

Biome Definition

+ +Contains a description and components to define a Biome.

+ + + + + + + + + + + + + + + +
Name Type Required? Description
componentsObject of type Biome ComponentsRequiredComponents for this Biome.
descriptionObject of type Biome DescriptionRequiredNon-component settings, including the Biome name.
+Back to top

+ +

Biome Description

+ +Contains non-component settings for a Biome.

+ + + + + + + + + +
Name Type Required? Description
identifierStringRequiredThe name of the Biome, used by other features like the '/locate biome' command.
+Back to top

+ +

Biome JSON File

+ +Contains a format version and a biome definition

+ + + + + + + + + + + + + + + +
Name Type Required? Description
format_versionStringRequiredVersion of the JSON schema used by this file
minecraft:biomeObject of type Biome DefinitionRequiredA single biome definition
+Back to top

+ +

Block Specifier

+ +Specifies a particular block. Can be a string block name or a JSON object

+ + + + + + + + + + + + + + + +
Name Type Required? Description
nameStringRequiredName of the block
statesObjectOptionalContains members named after each state, with boolean, integer, or string values.
+Back to top

+ +

Molang Expression

+ +A JSON field that specifies a Molang expression. Can be an integer, float, boolean, or string.
Back to top

+ +

minecraft:capped_surface

+ +Generates surface on blocks with non-solid blocks above or below.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Name Type Required? Description
beach_materialObject of type Block SpecifierOptionalMaterial used to decorate surface near sea level.
ceiling_materialsArray of Object of type Block SpecifierRequiredMaterials used for the surface ceiling.
floor_materialsArray of Object of type Block SpecifierRequiredMaterials used for the surface floor.
foundation_materialObject of type Block SpecifierRequiredMaterial used to replace solid blocks that are not surface blocks.
sea_materialObject of type Block SpecifierRequiredMaterial used to replace air blocks below sea level.
+Back to top

+ +

minecraft:climate

+ +Describes temperature, humidity, precipitation, and similar. Biomes without this component will have default values.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Name Type Required? Description
ashFloatOptionalDensity of ash precipitation visuals
blue_sporesFloatOptionalDensity of blue spore precipitation visuals
downfallFloatOptionalAmount that precipitation affects colors and block changes
red_sporesFloatOptionalDensity of blue spore precipitation visuals
snow_accumulationArray of 2 FloatsOptionalMinimum and maximum snow level, each multiple of 0.125 is another snow layer
temperatureFloatOptionalTemperature affects a variety of visual and behavioral things, including snow and ice placement, sponge drying, and sky color
white_ashFloatOptionalDensity of white ash precipitation visuals
+Back to top

+ +

minecraft:frozen_ocean_surface

+ +Similar to overworld_surface. Adds icebergs.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Name Type Required? Description
foundation_materialObject of type Block SpecifierRequiredControls the block type used deep underground in this biome
mid_materialObject of type Block SpecifierRequiredControls the block type used in a layer below the surface of this biome
sea_floor_depthIntegerRequiredControls how deep below the world water level the floor should occur
sea_floor_materialObject of type Block SpecifierRequiredControls the block type used as a floor for bodies of water in this biome
sea_materialObject of type Block SpecifierRequiredControls the block type used for the bodies of water in this biome
top_materialObject of type Block SpecifierRequiredControls the block type used for the surface of this biome
+Back to top

+ +

minecraft:mesa_surface

+ +Similar to overworld_surface. Adds colored strata and optional pillars.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Name Type Required? Description
bryce_pillarsBooleanRequiredWhether the mesa generates with pillars
clay_materialObject of type Block SpecifierRequiredBase clay block to use
foundation_materialObject of type Block SpecifierRequiredControls the block type used deep underground in this biome
hard_clay_materialObject of type Block SpecifierRequiredHardened clay block to use
has_forestBooleanRequiredPlaces coarse dirt and grass at high altitudes
mid_materialObject of type Block SpecifierRequiredControls the block type used in a layer below the surface of this biome
sea_floor_depthIntegerRequiredControls how deep below the world water level the floor should occur
sea_floor_materialObject of type Block SpecifierRequiredControls the block type used as a floor for bodies of water in this biome
sea_materialObject of type Block SpecifierRequiredControls the block type used for the bodies of water in this biome
top_materialObject of type Block SpecifierRequiredControls the block type used for the surface of this biome
+Back to top

+ +

minecraft:mountain_parameters

+ +Noise parameters used to drive mountain terrain generation in Overworld.

+ + + + + + + + + + + + + + + + + + + + + +
Name Type Required? Description
peaks_factorFloatOptionalDoes nothing
steep_material_adjustmentObject of type minecraft:mountain_parameters - steep_material_adjustment settingsOptionalDefines surface material for steep slopes
top_slideObject of type minecraft:mountain_parameters - top_slide settingsOptionalControls the density tapering that happens at the top of the world to prevent terrain from reaching too high
+Back to top

+ +

minecraft:mountain_parameters - steep_material_adjustment settings

+ +Defines surface material for steep slopes

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Name Type Required? Description
east_slopesBooleanOptionalEnable for east-facing slopes
materialObject of type Block SpecifierOptionalBlock type use as steep material
north_slopesBooleanOptionalEnable for north-facing slopes
south_slopesBooleanOptionalEnable for south-facing slopes
west_slopesBooleanOptionalEnable for west-facing slopes
+Back to top

+ +

minecraft:mountain_parameters - top_slide settings

+ +Controls the density tapering that happens at the top of the world to prevent terrain from reaching too high.

+ + + + + + + + + +
Name Type Required? Description
enabledBooleanRequiredIf false, top slide will be disabled. If true, other parameters will be taken into account.
+Back to top

+ +

minecraft:multinoise_generation_rules

+ +Controls how this biome is instantiated (and then potentially modified) during world generation of the nether.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Name Type Required? Description
target_altitudeFloatOptionalAltitude with which this biome should be generated, relative to other biomes.
target_humidityFloatOptionalHumidity with which this biome should be generated, relative to other biomes.
target_temperatureFloatOptionalTemperature with which this biome should be generated, relative to other biomes.
target_weirdnessFloatOptionalWeirdness with which this biome should be generated, relative to other biomes.
weightFloatOptionalWeight with which this biome should be generated, relative to other biomes.
+Back to top

+ +

minecraft:overworld_generation_rules

+ +Controls how this biome is instantiated (and then potentially modified) during world generation of the overworld.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Name Type Required? Description
generate_for_climatesArray of Object of type minecraft:overworld_generation_rules - Weighted climate categories settingsOptionalControls the world generation climate categories that this biome can spawn for. A single biome can be associated with multiple categories with different weightings.
hills_transformationObject of type minecraft:overworld_generation_rules - Weighted biome names settingsOptionalWhat biome to switch to when converting to a hilly biome
mutate_transformationObject of type minecraft:overworld_generation_rules - Weighted biome names settingsOptionalWhat biome to switch to when converting to a mutated biome
river_transformationObject of type minecraft:overworld_generation_rules - Weighted biome names settingsOptionalWhat biome to switch to when converting to a river biome (if not the Vanilla 'river' biome)
shore_transformationObject of type minecraft:overworld_generation_rules - Weighted biome names settingsOptionalWhat biome to switch to when adjacent to an ocean biome
+Back to top

+ +

minecraft:overworld_generation_rules - Weighted biome names settings

+ +Can be just the string name of a Biome, or an array of any size. If an array, each entry can be a Biome name string, or an array of size 2, where the first entry is a Biome name and the second entry is a positive integer representing how that Biome is weighted against other entries. If no weight is provided, a weight of 1 is used.
Back to top

+ +

minecraft:overworld_generation_rules - Weighted climate categories settings

+ +An array of any size containing arrays of exactly two elements. For each contained array, the first element is a climate category string ('medium', 'warm', 'lukewarm', 'cold', or 'frozen'). The second element is a positive integer for how much that entry is weighted relative to other entries.
Back to top

+ +

minecraft:overworld_height

+ +Noise parameters used to drive terrain height in the Overworld.

+ + + + + + + + + + + + + + + +
Name Type Required? Description
noise_paramsArray of 2 FloatsOptionalFirst value is depth - more negative means deeper underwater, while more positive means higher. Second value is scale, which affects how much noise changes as it moves from the surface.
noise_type"default", "default_mutated", "river", "ocean", "deep_ocean", "lowlands", "taiga", "mountains", "highlands", "extreme", "less_extreme", "beach", "stone_beach", "mushroom", "swamp"OptionalSpecifies a preset based on a built-in setting rather than manually using noise_params
+Back to top

+ +

minecraft:surface_material_adjustments

+ +Specify fine-detail changes to blocks used in terrain generation (based on a noise function).

+ + + + + + + + + +
Name Type Required? Description
adjustmentsArray of Object of type minecraft:surface_material_adjustments - surface adjustment settingsOptionalAll adjustments that match the column's noise values will be applied in the order listed.
+Back to top

+ +

minecraft:surface_material_adjustments - surface adjustment materials settings

+ +The specific blocks used for this surface adjustment

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Name Type Required? Description
foundation_materialObject of type Block SpecifierOptionalControls the block type used deep underground in this biome when this adjustment is active.
mid_materialObject of type Block SpecifierOptionalControls the block type used in a layer below the surface of this biome when this adjustment is active.
sea_floor_materialObject of type Block SpecifierOptionalControls the block type used as a floor for bodies of water in this biome when this adjustment is active.
sea_materialObject of type Block SpecifierOptionalControls the block type used in the bodies of water in this biome when this adjustment is active.
top_materialObject of type Block SpecifierOptionalControls the block type used for the surface of this biome when this adjustment is active.
+Back to top

+ +

minecraft:surface_material_adjustments - surface adjustment settings

+ +An adjustment to generated terrain, replacing blocks based on the specified settings.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Name Type Required? Description
height_rangeArray of 2 Molang expressionsOptionalDefines a range of noise values [min, max] for which this adjustment should be applied.
materialsObject of type minecraft:surface_material_adjustments - surface adjustment materials settingsRequired
noise_frequency_scaleFloatOptionalThe scale to multiply by the position when accessing the noise value for the material adjustments.
noise_rangeArray of 2 FloatsOptionalDefines a range of noise values [min, max] for which this adjustment should be applied.
+Back to top

+ +

minecraft:surface_parameters

+ +Controls the blocks used for the default Minecraft Overworld terrain generation.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Name Type Required? Description
foundation_materialObject of type Block SpecifierRequiredControls the block type used deep underground in this biome.
mid_materialObject of type Block SpecifierRequiredControls the block type used in a layer below the surface of this biome.
sea_floor_depthIntegerRequiredControls how deep below the world water level the floor should occur.
sea_floor_materialObject of type Block SpecifierRequiredControls the block type used as a floor for bodies of water in this biome.
sea_materialObject of type Block SpecifierRequiredControls the block type used for the bodies of water in this biome.
top_materialObject of type Block SpecifierRequiredControls the block type used for the surface of this biome.
+Back to top

+ +

minecraft:swamp_surface

+ +Similar to overworld_surface. Adds swamp surface details.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Name Type Required? Description
foundation_materialObject of type Block SpecifierRequiredControls the block type used deep underground in this biome.
mid_materialObject of type Block SpecifierRequiredControls the block type used in a layer below the surface of this biome.
sea_floor_depthIntegerRequiredControls how deep below the world water level the floor should occur.
sea_floor_materialObject of type Block SpecifierRequiredControls the block type used as a floor for bodies of water in this biome.
sea_materialObject of type Block SpecifierRequiredControls the block type used for the bodies of water in this biome.
top_materialObject of type Block SpecifierRequiredControls the block type used for the surface of this biome.
+Back to top

+ +

minecraft:tags

+ +Attach arbitrary string tags to this biome.

+ + + + + + + + + +
Name Type Required? Description
tagsArray of StringRequiredArray of string tags used by other systems such as entity spawning
+Back to top

+ +

minecraft:the_end_surface

+ +Use default Minecraft End terrain generation.
Back to top

+ +

+ diff --git a/documentation/Blocks.html b/documentation/Blocks.html index f59524c5f..d842b4cc3 100644 --- a/documentation/Blocks.html +++ b/documentation/Blocks.html @@ -1,4 +1,4 @@ -

BLOCKS DOCUMENTATION
Version: 1.20.80.5

+

BLOCKS DOCUMENTATION
Version: 1.21.0.3

Index

@@ -65,12 +65,6 @@

table_name

- - - - - - @@ -365,7 +359,23 @@

table_name

- - + @@ -11938,12 +11945,6 @@

minecraft:behavior.delayed_attack<

- - - - - - @@ -12018,7 +12019,7 @@

minecraft:behavior.delayed_attack<

- + @@ -12048,7 +12049,7 @@

minecraft:behavior.delayed_attack<

- + @@ -12130,7 +12131,7 @@

minecraft:behavior.dragoncharg

- + @@ -12218,7 +12219,7 @@

minecraft:behavior.dragonstraf

- + @@ -13786,13 +13787,13 @@

minecraft:behavior.look_at_entity<

- + - + @@ -13804,19 +13805,19 @@

minecraft:behavior.look_at_entity<

- + - + - +
Blocks

Experimental toggles required: Holiday Creator Features
minecraft:custom_components Array minecraft:transformation JSON Object The block's translation, rotation and scale with respect to the center of its world position
Experimental toggles required: Holiday Creator Features (in format versions before 1.19.80)

minecraft:transformation

+
The block's translation, rotation and scale with respect to the center of its world position
Experimental toggles required: Holiday Creator Features (in format versions before 1.19.80)

rotation

+ +The block's rotation in increments of 90 degrees
Back to top

+ +

rotation_pivot

+ +The point to apply rotation around
Back to top

+ +

scale

+ +The block's scale
Back to top

+ +

scale_pivot

+ +The point to apply scale around
Back to top

+ +

translation

The block's translation
Back to top

@@ -396,7 +406,7 @@

Block Definition Properties

Code Example

Example

+

Hex Value

+ +

Example Spawn Egg using hex value

Back to top

+

Texture

+ +The other way is to specify a texture.

Example Spawn Egg specifying a texture. The texture is located in the "items_texture" JSON in the textures folder of the Resource Pack. When there are more than one texture associated with a texture name you can use an index to pick the one that you want. If no index is specified than it is assumed to be 0 and the first texture in the list is used.

+Example Spawn Egg specifying a texture

+Back to top

+

animation_controllers

@@ -620,7 +627,7 @@

Frozen Oceanocean, frozen
ocean, frozen, monster
Frozen RiverIf the entity is on fire, this allows the entity's target to catch on fire after being hit.
cooldown_timeDecimal1Cooldown time (in seconds) between attacks.
hit_delay_pct Decimal 0.5
reach_multiplier Decimal21.5 Used with the base size of the entity to determine minimum target-distance before trying to deal attack damage.
track_target Booleanfalsetrue Allows the entity to track the attack target, even if the entity has no sensing.
active_speed Decimal13 The speed this entity moves when this behavior has started or while it's active.
active_speed Decimal10.6 The speed this entity moves when this behavior has started or while it's active.
angle_of_view_horizontal Integer 360The angle in degrees that the mob can see in the Y-axis (up-down)
The angle in degrees that the mob can see in the Y-axis (up-down).
angle_of_view_vertical Integer 360The angle in degrees that the mob can see in the X-axis (left-right)
The angle in degrees that the mob can see in the X-axis (left-right).
filterslook_distance Decimal 8.0The distance in blocks from which the entity will look at
The distance in blocks from which the entity will look at the nearest entity.
look_time Range [a, b] [2, 4]Time range to look at the entity
Time range to look at the nearest entity.
probability Decimal 0.02The probability of looking at the target. A value of 1.00 is 100%
The probability of looking at the target. A value of 1.00 is 100%.
Back to top

@@ -13831,31 +13832,31 @@

minecraft:behavior.look_at_player< angle_of_view_horizontal Integer 360 -The angle in degrees that the mob can see in the Y-axis (up-down)
+The angle in degrees that the mob can see in the Y-axis (up-down).
angle_of_view_vertical Integer 360 -The angle in degrees that the mob can see in the X-axis (left-right)
+The angle in degrees that the mob can see in the X-axis (left-right).
look_distance Decimal 8.0 -The distance in blocks from which the entity will look at
+The distance in blocks from which the entity will look at the nearest player.
look_time Range [a, b] [2, 4] -Time range to look at the entity
+Time range to look at the nearest player.
probability Decimal 0.02 -The probability of looking at the target. A value of 1.00 is 100%
+The probability of looking at the target. A value of 1.00 is 100%.
Back to top

@@ -13870,31 +13871,31 @@

minecraft:behavior.look_at_target< angle_of_view_horizontal Integer 360 -The angle in degrees that the mob can see in the Y-axis (up-down)
+The angle in degrees that the mob can see in the Y-axis (up-down).
angle_of_view_vertical Integer 360 -The angle in degrees that the mob can see in the X-axis (left-right)
+The angle in degrees that the mob can see in the X-axis (left-right).
look_distance Decimal 8.0 -The distance in blocks from which the entity will look at
+The distance in blocks from which the entity will look at this mob's current target.
look_time Range [a, b] [2, 4] -Time range to look at the entity
+Time range to look at this mob's current target.
probability Decimal 0.02 -The probability of looking at the target. A value of 1.00 is 100%
+The probability of looking at the target. A value of 1.00 is 100%.
Back to top

@@ -13909,31 +13910,31 @@

minecraft:behavior.look_at angle_of_view_horizontal Integer 360 -The angle in degrees that the mob can see in the Y-axis (up-down)
+The angle in degrees that the mob can see in the Y-axis (up-down).
angle_of_view_vertical Integer 360 -The angle in degrees that the mob can see in the X-axis (left-right)
+The angle in degrees that the mob can see in the X-axis (left-right).
look_distance Decimal 8.0 -The distance in blocks from which the entity will look at
+The distance in blocks from which the entity will look at the player this mob is trading with.
look_time Range [a, b] [2, 4] -Time range to look at the entity
+Time range to look at the player this mob is trading with.
probability Decimal 0.02 -The probability of looking at the target. A value of 1.00 is 100%
+The probability of looking at the target. A value of 1.00 is 100%.
Back to top

@@ -15340,7 +15341,7 @@

minecraft:behavior.panic

damage_sources List -all +[campfire, entity_attack, entity_explosion, fire, fire_tick, fireworks, freezing, lava, lightning, magic, magma, projectile, ram_attack, sonic_boom, soul_campfire, temperature, wither] The list of Entity Damage Sources that will cause this mob to panic
@@ -15760,6 +15761,12 @@

minecraft:behavior.random_fly

If true, the mob can stop flying and land on a tree instead of the ground
+speed_multiplier +Decimal +1.0 +Movement speed multiplier of the mob when using this AI Goal
+ + xz_dist Integer 10 @@ -17085,12 +17092,6 @@

minecraft:behavior.stomp_attack

< Maximum base time (in seconds) to recalculate new attack path to target (before increases applied).
-melee_fov -Decimal -90 -Field of view (in degrees) when using the sensing component to detect an attack target.
- - min_path_time Decimal 0.2 @@ -18122,18 +18123,6 @@

minecraft:behavior.work_composter< Event to run when the mob reaches their jobsite.
-sound_delay_max -Integer -N/A -Unused.
- - -sound_delay_min -Integer -N/A -Unused.
- - speed_multiplier Decimal 0.50 @@ -20238,8 +20227,36 @@

minecraft:hurt_on_condition

List of damage conditions that when met can cause damage to the entity.

cause

The kind of damage that is caused to the entity. Various armors and spells use this to determine if the entity is immune.
-

Back to top

@@ -20664,6 +20681,21 @@

minecraft:mob_effect

Back to top

+

minecraft:mob_effect_immunity

+ +Entities with this component will have an immunity to the provided mob effects.

+ + + + + + + + + +
Name Type Default Value Description
mob_effectsArrayList of names of effects the entity is immune to.
+Back to top

+

minecraft:movement.amphibious

This move control allows the mob to swim in water and walk on land.

@@ -21855,6 +21887,12 @@

minecraft:projectile

The gravity applied to this entity when thrown. The higher the value, the faster the entity falls
+hit_nearest_passenger +Boolean +false +If true, when hitting a vehicle, and there's at least one passenger in the vehicle, the damage will be dealt to the passenger closest to the projectile impact point. If there are no passengers, this setting does nothing.
+ + hit_sound String @@ -21867,6 +21905,12 @@

minecraft:projectile

If true, the projectile homes in to the nearest entity
+ignored_entities +Array + +[EXPERIMENTAL] An array of strings defining the types of entities that this entity does not collide with.
+ + inertia Decimal 0.99 @@ -22112,6 +22156,45 @@

minecraft:ravager_blocked

Back to top

+

minecraft:reflect_projectiles

+ +[EXPERIMENTAL] Allows an entity to reflect projectiles.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Name Type Default Value Description
azimuth_angleMolang0[EXPERIMENTAL] A Molang expression defining the angle in degrees to add to the projectile's y axis rotation.
elevation_angleMolang0[EXPERIMENTAL] A Molang expression defining the angle in degrees to add to the projectile's x axis rotation.
reflected_projectilesArray[EXPERIMENTAL] An array of strings defining the types of projectiles that are reflected when they hit the entity.
reflection_scaleMolang1[EXPERIMENTAL] A Molang expression defining the velocity scaling of the reflected projectile. Values below 1 decrease the projectile's velocity, and values above 1 increase it.
reflection_soundStringreflect[EXPERIMENTAL] A string defining the name of the sound event to be played when a projectile is reflected. "reflect" unless specified.
+Back to top

+

minecraft:rideable

Determines whether this entity can be ridden. Allows specifying the different seat positions and quantity.

@@ -22490,27 +22573,6 @@

minecraft:spawn_entity

Back to top

-

minecraft:strength

- -Defines the entity's strength to carry items.

- - - - - - - - - - - - - - - -
Name Type Default Value Description
maxInteger5The maximum strength of this entity
valueInteger1The initial value of the strength
-Back to top

-

minecraft:suspect_tracking

Allows this entity to remember suspicious locations
Back to top

@@ -23353,7 +23415,7 @@

minecraft:behavior.explore_outskirts --1955198366
+1573426610843290210
minecraft:behavior.fertilize_farm_block @@ -23725,7 +23787,7 @@

minecraft:behavior.slime_attack --1315951081
+9939462702916185623
minecraft:behavior.slime_float @@ -24154,6 +24216,10 @@

490430596
+minecraft:mob_effect_immunity +1589547531
+ + minecraft:movement.amphibious -500784850
@@ -24266,6 +24332,10 @@

-1417579541
+minecraft:reflect_projectiles +-2073986952
+ + minecraft:rideable 1656173828
diff --git a/documentation/Entity Events.html b/documentation/Entity Events.html index 27e3ed4e1..797c250aa 100644 --- a/documentation/Entity Events.html +++ b/documentation/Entity Events.html @@ -1,4 +1,4 @@ -

ENTITY EVENTS DOCUMENTATION
Version: 1.20.80.5

+

ENTITY EVENTS DOCUMENTATION
Version: 1.21.0.3

Index

diff --git a/documentation/Entity Timeline Events.html b/documentation/Entity Timeline Events.html index 433878f42..2e6cf221c 100644 --- a/documentation/Entity Timeline Events.html +++ b/documentation/Entity Timeline Events.html @@ -1,4 +1,4 @@ -

ENTITY TIMELINE EVENTS DOCUMENTATION
Version: 1.20.80.5

+

ENTITY TIMELINE EVENTS DOCUMENTATION
Version: 1.21.0.3

Index

This describes the structure of the Events section.
diff --git a/documentation/Features.html b/documentation/Features.html index 00c9f7fc4..2ed47a884 100644 --- a/documentation/Features.html +++ b/documentation/Features.html @@ -1,4 +1,4 @@ -

FEATURES DOCUMENTATION
Version: 1.20.80.5

+

FEATURES DOCUMENTATION
Version: 1.21.0.3

Index

Animation Controller Events
@@ -73,15 +73,15 @@

minecraft:aggregate_feature

'minecraft:aggregate_feature' places a collection of features in an arbitary order. All features in the collection use the same input position. Features should not depend on each other, as there is no guarantee on the order the features will be placed.
Succeeds if: At lease one feature is placed successfully.
Fails if: All features fail to be placed.

Example use: scattering multiple different plants around a monument.

Example use: Oil deposits in the sand.

Back to top

@@ -402,7 +401,7 @@

minecraft:scatter_feature

'minecraft:scatter_feature' scatters a feature throughout a chunk. The 'x', 'y', and 'z' fields are per-coordinate parameters. Note that coordinates represent an offset from the input position, not an absolute position. Coordinates may be a single value, a random distribution, or Molang expression that resolves to a numeric value. The 'coordinate_eval_order' field is provided for finer control of coordinate resolution (particularly when using the 'grid' distribution). 'iterations' controls how many individual placements should occur if the 'scatter_chance' check succeeds. The 'scatter_chance' check happens once, so either all placements will run or none will.
Succeeds if: At least one feature placement succeeds.
Fails if: All feature placements fail.

Example use: Scattering flowers at sea level across half the chunks in a biome.

Back to top

@@ -454,19 +454,19 @@

minecraft:single_block_feature

Succeeds if: The block is successfully placed in the world.
Fails if: The block fails to be placed.

Example use: Placing a single pumpkin block.

-Back to top

- -

Animation Controller effects

+
One of the primary uses for emitting particles in the Bedrock engine is particles associated with entities, such as mobs. Examples can be when the Blaze flames-up during it's attack sequence, or the Evoker's spell effect while summoning Vexes. The goal is to allow binding and management of particle effects attached to entities.

The following concepts are important for managing particles with entities via .json:
- Effect lists. These live in the resource definition of the entity's .json, along with textures, etc. These list the effects available to the entity, with an internal entity name for the effect, and the associated effect to play.
- Locators. These live in the geometry files, and specify a location in the geometry. These locators can be associated with bones, and thus follow the bone as it animates.
- Animation controller-based particle management. Using the Animation Controller state machine concept, one can trigger both fire-and-forget and sustained particle effects
- Animation timeline particle management. As part of an animation .json for the entity, one can set up a timeline that triggers particle effects at specified times while the animation is playing. Note that an actual physical animation is not needed, just the animation .json structure.

Particles that are attached to entities are intrinsically tied to those entities. If the entity ceases to exist, the particle effects cease as well. Emitters follow either the entity, or a locator on the entity.

Animation Controller effects


Animation controllers can specify effect events for their states. This allows for a list of particle effects to be started upon state entry, and for those particle effects to be automatically ended when leaving the state. For particles that don't terminate (or don't terminate prior to state transition), they will be terminated at state exit.

The schema is:
"particle_effects": [
// array of effect events
]
The array syntax allows for more than one effect to be triggered on state entry.

An example is the Blaze's flame-up effect in it's animation controller. This animation controller has two states, "default" and "flaming". It transitions between the two via the "query.is_charged" entity flag check. When in the "flaming" state, the "charged_flames" effect is started (with no locator or initialization Molang expression), and is terminated when the state exits.



Back to top

+

Animation Controller effects (continued)

+ +
Another example for the Evoker's spell effect. This causes the evoker to start up two "spell" effects, using the locator for the left and right hand. The spell effects themselves are continuous, so the emitters will emit particles until the evoker is no longer casting a spell.

+

+Back to top

+

Animation Timeline effects

Animations can also trigger particle effects. These are fire-and-forget effects that are tied to a timeline, when the animation hits that time point, the effect(s) are fired.

@@ -1348,6 +1361,37 @@

Animation Timeline effects


Back to top

+

Animation Timeline effects (continued)

+ +time1/time2/etc are numerical time points, e.g. "0.0".

In this example, when the cat sits down, after 3 seconds a smoke puff is generated:

+

+Back to top

+

Effect Event


Particle events in the entity have the following properties:
- "effect" is the effect name specified in the entity's resource definition .json (the particle effect list), this specifies what particle effect to start/play
- "locator" is an optional parameter that maps to a locator of the same name in the resource definition. By specifying a locator, the emitter will follow that locator around as the entity animates, including orientation. If this is not specified, the effect will occur at the origin of the entity.
- "pre_effect_script" is an optional parameter that is a Molang expression run at emitter startup time. This can set up Molang variables, (for example 'particle color'), which can be then referred to inside the particle effect .json itself.

@@ -1385,6 +1429,32 @@

Effect List


Back to top

+

Effect List (continued)

+ +This is an example of the flame-up effect for the Blaze. Inside the "description" section of an entity's resource definition we can add a "particle_effects" section that has a name/value pair. The name is the name that other .json in the entity will refer to, while the value is the name of the particle effect, as specified in the particle effect's .json.

+

+Back to top

+

Particles Examples Pack

diff --git a/documentation/Recipes.html b/documentation/Recipes.html index 5c2aedc9e..59b20009a 100644 --- a/documentation/Recipes.html +++ b/documentation/Recipes.html @@ -1,4 +1,4 @@ -

RECIPES DOCUMENTATION
Version: 1.20.80.5

+

RECIPES DOCUMENTATION
Version: 1.21.0.3

Index

Overview
@@ -171,6 +171,11 @@

Recipes
+ + + + + diff --git a/documentation/Schemas.html b/documentation/Schemas.html index 6e846d802..c0d1142f3 100644 --- a/documentation/Schemas.html +++ b/documentation/Schemas.html @@ -1,4 +1,4 @@ -

SCHEMAS DOCUMENTATION
Version: 1.20.80.5

+

SCHEMAS DOCUMENTATION
Version: 1.21.0.3

Index

Name Type Description
assume_symmetrybooleandetermines if the recipe should assume symmetry or not.
key array of key and item pairs patten key character mapped to item names.
@@ -11,5 +11,5 @@

Overview

Schemas

-```
--------
item_event_responses:1.16.100:
----------
chance_information:1.14.0:{
int "numerator"<0-*>
int "denominator"<1-*>
}

----------
block_reference:1.10.0:{
string "name"
object "states"
{
bool "\w*:?\w+" : opt
int "\w*:?\w+" : opt
string "\w*:?\w+" : opt
}
}

----------
persona_actor_animation:1.8.0:{
version "format_version"
object "animations"
{
object "animation."
{
bool "loop" : opt // should this animation stop, loop, or stay on the last frame when finished (true, false, "hold_on_last_frame"
string "loop"<"hold_on_last_frame"> : opt // should this animation stop, loop, or stay on the last frame when finished (true, false, "hold_on_last_frame"
molang "start_delay" : opt // How long to wait in seconds before playing this animation. Note that this expression is evaluated once before playing, and only re-evaluated if asked to play from the beginning again. A looping animation should use 'loop_delay' if it wants a delay between loops.
molang "loop_delay" : opt // How long to wait in seconds before looping this animation. Note that this expression is evaluated after each loop and on looping animation only.
molang "anim_time_update" : opt // how does time pass when playing the animation. Defaults to "query.anim_time + query.delta_time" which means advance in seconds.
molang "blend_weight" : opt
bool "override_previous_animation" : opt // reset bones in this animation to the default pose before applying this animation
object "bones" : opt
{
object ""
{
object "relative_to" : opt
{
string "rotation"<"entity"> : opt // if set, makes the bone rotation relative to the entity instead of the bone's parent
}
molang "position" : opt
array "position" : opt
{
molang ""
}
object "position" : opt
{
array ""[3]
{
molang ""
}
object ""
{
enumerated_value "lerp_mode"<"linear", "catmullrom"> : opt
array "pre"[3] : opt
{
molang ""
}
array "post"[3] : opt
{
molang ""
}
}
}
molang "rotation" : opt
array "rotation" : opt
{
molang ""
object ""
{
molang "[xyz]"
}
}
object "rotation" : opt
{
array ""[3]
{
molang ""
}
object ""
{
enumerated_value "lerp_mode"<"linear", "catmullrom"> : opt
array "pre"[3] : opt
{
molang ""
}
array "post"[3] : opt
{
molang ""
}
}
}
molang "scale" : opt
array "scale" : opt
{
molang ""
}
object "scale" : opt
{
array ""[3]
{
molang ""
}
object ""
{
enumerated_value "lerp_mode"<"linear", "catmullrom"> : opt
array "pre"[3] : opt
{
molang ""
}
array "post"[3] : opt
{
molang ""
}
}
}
}
}
object "particle_effects" : opt
{
object "" : opt
{
string "effect" // The name of a particle effect that should be played
string "locator" : opt // The name of a locator on the actor where the effect should be located
molang "pre_effect_script" : opt // A Molang script that will be run when the particle emitter is initialized
bool "bind_to_actor" : opt // Set to false to have the effect spawned in the world without being bound to an actor (by default an effect is bound to the actor).
}
array "" : opt
{
object "" : opt
{
string "effect" // The name of a particle effect that should be played
string "locator" : opt // The name of a locator on the actor where the effect should be located
molang "pre_effect_script" : opt // A Molang script that will be run when the particle emitter is initialized
bool "bind_to_actor" : opt // Set to false to have the effect spawned in the world without being bound to an actor (by default an effect is bound to the actor).
}
}
}
object "sound_effects" : opt // sound effects to trigger as this animation plays, keyed by time
{
object "" : opt
{
string "effect" // Valid sound effect names should be listed in the entity's resource_definition json file.
}
array "" : opt
{
object "" : opt
{
string "effect" // Valid sound effect names should be listed in the entity's resource_definition json file.
}
}
}
object "timeline" : opt
{
string "" : opt
array "" : opt
{
string "" : opt
}
}
float "animation_length" : opt // override calculated value (set as the max keyframe or event time) and set animation length in seconds.
}
}
}

----------
geometry:1.8.0:{
bool "debug" : opt
version "format_version"
object "geometry.[a-zA-Z0-9_.'-:]+"
{
bool "debug" : opt
float "visible_bounds_width" : opt
float "visible_bounds_height" : opt
array "visible_bounds_offset"[3] : opt
{
float ""
}
int "texturewidth" : opt
int "textureheight" : opt
string "cape" : opt
array "bones" : opt
{
object "" : opt
{
string "name"
bool "reset" : opt
bool "neverRender" : opt
string "parent" : opt
array "pivot"[3] : opt
{
float ""
}
array "rotation"[3] : opt
{
float ""
}
array "bind_pose_rotation"[3] : opt
{
float "" : opt
}
bool "mirror" : opt
float "inflate" : opt
bool "debug" : opt
int "render_group_id"<0-*> : opt
array "cubes" : opt
{
object "" : opt
{
array "origin"[3] : opt
{
float ""
}
array "size"[3] : opt
{
float ""
}
array "uv"[2] : opt
{
float ""
}
float "inflate" : opt
bool "mirror" : opt
}
}
object "locators" : opt
{
array "" : opt
{
float "" : opt
}
}
object "poly_mesh" : opt
{
bool "normalized_uvs" : opt
array "positions" : opt
{
array ""[3] : opt
{
float ""
}
}
array "normals" : opt
{
array ""[3] : opt
{
float ""
}
}
array "uvs" : opt
{
array ""[2] : opt
{
float ""
}
}
array "polys"
{
array ""[3,4] : opt
{
array ""[3]
{
float ""
}
}
}
string "polys"<"tri_list", "quad_list">
}
array "texture_meshes" : opt
{
object ""
{
string "texture"
array "position"[3] : opt
{
float ""
}
array "local_pivot"[3] : opt
{
float ""
}
array "rotation"[3] : opt
{
float ""
}
array "scale"[3] : opt
{
float ""
}
}
}
}
}
}
}

----------
geometry:1.12.0:{
bool "debug" : opt
version "format_version"
array "minecraft:geometry"[1,*]
{
object ""
{
object "description"
{
string "identifier" // Entity definition and Client Block definition files refer to this geometry via this identifier.
float "visible_bounds_width" : opt // Width of the visibility bounding box (in model space units).
float "visible_bounds_height" : opt // Height of the visible bounding box (in model space units).
array "visible_bounds_offset"[3] : opt
{
float "" // Offset of the visibility bounding box from the entity location point (in model space units).
}
int "texture_width" : opt // Assumed width in texels of the texture that will be bound to this geometry.
int "texture_height" : opt // Assumed height in texels of the texture that will be bound to this geometry.
}
string "cape" : opt
array "bones" : opt // Bones define the 'skeleton' of the mob: the parts that can be animated, and to which geometry and other bones are attached.
{
object "" : opt
{
string "name" // Animation files refer to this bone via this identifier.
string "parent" : opt // Bone that this bone is relative to. If the parent bone moves, this bone will move along with it.
array "pivot"[3] : opt
{
float "" // The bone pivots around this point (in model space units).
}
array "rotation"[3] : opt
{
float "" // This is the initial rotation of the bone around the pivot, pre-animation (in degrees, x-then-y-then-z order).
}
bool "mirror" : opt // Mirrors the UV's of the unrotated cubes along the x axis, also causes the east/west faces to get flipped.
float "inflate" : opt // Grow this box by this additive amount in all directions (in model space units).
bool "debug" : opt
int "render_group_id"<0-*> : opt
array "cubes" : opt // This is the list of cubes associated with this bone.
{
object "" : opt
{
array "origin"[3] : opt
{
float "" // This point declares the unrotated lower corner of cube (smallest x/y/z value in model space units).
}
array "size"[3] : opt
{
float "" // The cube extends this amount relative to its origin (in model space units).
}
array "rotation"[3] : opt
{
float "" // The cube is rotated by this amount (in degrees, x-then-y-then-z order) around the pivot.
}
array "pivot"[3] : opt
{
float "" // If this field is specified, rotation of this cube occurs around this point, otherwise its rotation is around the center of the box. Note that in 1.12 this is flipped upside-down, but is fixed in 1.14.
}
float "inflate" : opt // Grow this box by this additive amount in all directions (in model space units), this field overrides the bone's inflate field for this cube only.
bool "mirror" : opt // Mirrors this cube about the unrotated x axis (effectively flipping the east / west faces), overriding the bone's 'mirror' setting for this cube.
array "uv"[2] : opt
{
float "" // Specifies the upper-left corner on the texture for the start of the texture mapping for this box.
}
object "uv" : opt // This is an alternate per-face uv mapping which specifies each face of the cube. Omitting a face will cause that face to not get drawn.
{
object "north" : opt // Specifies the UV's for the face that stretches along the x and y axes, and faces the -z axis.
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "south" : opt // Specifies the UV's for the face that stretches along the x and y axes, and faces the z axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "east" : opt // Specifies the UV's for the face that stretches along the z and y axes, and faces the x axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "west" : opt // Specifies the UV's for the face that stretches along the z and y axes, and faces the -x axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "up" : opt // Specifies the UV's for the face that stretches along the x and z axes, and faces the y axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the back-upper-left corner, assuming you're facing 'north' relative to the cube.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "down" : opt // Specifies the UV's for the face that stretches along the x and z axes, and faces the -y axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the back-down-right corner, assuming you're facing 'north' relative to the cube.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
}
}
}
object "locators" : opt
{
array "" : opt // This is a list of locators associated with this bone. A locator is a point in model space that tracks a particular bone as the bone animates (by maintaining it's relationship to the bone through the animation).
{
float "" : opt // Position of the locator in model space.
}
object "" : opt // This is a list of locators associated with this bone. A locator is a point in model space that tracks a particular bone as the bone animates (by maintaining it's relationship to the bone through the animation).
{
array "offset"
{
float "" : opt // Position of the locator in model space.
}
array "rotation"
{
float "" : opt // Rotation of the locator in model space.
}
bool "ignore_inherited_scale" : opt // Discard scale inherited from parent bone.
}
}
object "poly_mesh" : opt // ***EXPERIMENTAL*** A triangle or quad mesh object. Can be used in conjunction with cubes and texture geometry.
{
bool "normalized_uvs" : opt // If true, UVs are assumed to be [0-1]. If false, UVs are assumed to be [0-texture_width] and [0-texture_height] respectively.
array "positions" : opt
{
array ""[3] : opt
{
float "" // Vertex positions for the mesh. Can be either indexed via the "polys" section, or be a quad-list if mapped 1-to-1 to the normals and UVs sections.
}
}
array "normals" : opt
{
array ""[3] : opt
{
float "" // Vertex normals. Can be either indexed via the "polys" section, or be a quad-list if mapped 1-to-1 to the positions and UVs sections.
}
}
array "uvs" : opt
{
array ""[2] : opt
{
float "" // Vertex UVs. Can be either indexed via the "polys" section, or be a quad-list if mapped 1-to-1 to the positions and normals sections.
}
}
array "polys"
{
array ""[3,4] : opt
{
array ""[3]
{
float "" // Poly element indices, as an array of polygons, each an array of either three or four vertices, each an array of indices into positions, normals, and UVs (in that order).
}
}
}
string "polys"<"tri_list", "quad_list"> // If not specifying vertex indices, arrays of data must be a list of tris or quads, set by making this property either "tri_list" or "quad_list"
}
array "texture_meshes" : opt // ***EXPERIMENTAL*** Adds a mesh to the bone's geometry by converting texels in a texture into boxes
{
object ""
{
string "texture" // The friendly-named texture to use.
array "position"[3] : opt
{
float "" // The position of the pivot point after rotation (in *entity space* not texture or bone space) of the texture geometry
}
array "local_pivot"[3] : opt
{
float "" // The pivot point on the texture (in *texture space* not entity or bone space) of the texture geometry
}
array "rotation"[3] : opt
{
float "" // The rotation (in degrees) of the texture geometry relative to the offset
}
array "scale"[3] : opt
{
float "" // The scale (in degrees) of the texture geometry relative to the offset
}
}
}
}
}
}
}
}

----------
geometry:1.14.0:{
version "format_version"
bool "debug" : opt
array "minecraft:geometry"[1,*]
{
object ""
{
object "description"
{
string "identifier" // Entity definition and Client Block definition files refer to this geometry via this identifier.
float "visible_bounds_width" : opt // Width of the visibility bounding box (in model space units).
float "visible_bounds_height" : opt // Height of the visible bounding box (in model space units).
array "visible_bounds_offset"[3] : opt
{
float "" // Offset of the visibility bounding box from the entity location point (in model space units).
}
int "texture_width" : opt // Assumed width in texels of the texture that will be bound to this geometry.
int "texture_height" : opt // Assumed height in texels of the texture that will be bound to this geometry.
}
string "cape" : opt
array "bones" : opt // Bones define the 'skeleton' of the mob: the parts that can be animated, and to which geometry and other bones are attached.
{
object "" : opt
{
string "name" // Animation files refer to this bone via this identifier.
string "parent" : opt // Bone that this bone is relative to. If the parent bone moves, this bone will move along with it.
array "pivot"[3] : opt
{
float "" // The bone pivots around this point (in model space units).
}
array "rotation"[3] : opt
{
float "" // This is the initial rotation of the bone around the pivot, pre-animation (in degrees, x-then-y-then-z order).
}
bool "mirror" : opt // Mirrors the UV's of the unrotated cubes along the x axis, also causes the east/west faces to get flipped.
float "inflate" : opt // Grow this box by this additive amount in all directions (in model space units).
bool "debug" : opt
int "render_group_id"<0-*> : opt
array "cubes" : opt // This is the list of cubes associated with this bone.
{
object "" : opt
{
array "origin"[3] : opt
{
float "" // This point declares the unrotated lower corner of cube (smallest x/y/z value in model space units).
}
array "size"[3] : opt
{
float "" // The cube extends this amount relative to its origin (in model space units).
}
array "rotation"[3] : opt
{
float "" // The cube is rotated by this amount (in degrees, x-then-y-then-z order) around the pivot.
}
array "pivot"[3] : opt
{
float "" // If this field is specified, rotation of this cube occurs around this point, otherwise its rotation is around the center of the box.
}
float "inflate" : opt // Grow this box by this additive amount in all directions (in model space units), this field overrides the bone's inflate field for this cube only.
bool "mirror" : opt // Mirrors this cube about the unrotated x axis (effectively flipping the east / west faces), overriding the bone's 'mirror' setting for this cube.
array "uv"[2] : opt
{
float "" // Specifies the upper-left corner on the texture for the start of the texture mapping for this box.
}
object "uv" : opt // This is an alternate per-face uv mapping which specifies each face of the cube. Omitting a face will cause that face to not get drawn.
{
object "north" : opt // Specifies the UV's for the face that stretches along the x and y axes, and faces the -z axis.
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "south" : opt // Specifies the UV's for the face that stretches along the x and y axes, and faces the z axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "east" : opt // Specifies the UV's for the face that stretches along the z and y axes, and faces the x axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "west" : opt // Specifies the UV's for the face that stretches along the z and y axes, and faces the -x axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "up" : opt // Specifies the UV's for the face that stretches along the x and z axes, and faces the y axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the back-upper-left corner, assuming you're facing 'north' relative to the cube.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "down" : opt // Specifies the UV's for the face that stretches along the x and z axes, and faces the -y axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the back-down-right corner, assuming you're facing 'north' relative to the cube.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
}
}
}
object "locators" : opt
{
array "" : opt // This is a list of locators associated with this bone. A locator is a point in model space that tracks a particular bone as the bone animates (by maintaining it's relationship to the bone through the animation).
{
float "" : opt // Position of the locator in model space.
}
object "" : opt // This is a list of locators associated with this bone. A locator is a point in model space that tracks a particular bone as the bone animates (by maintaining it's relationship to the bone through the animation).
{
array "offset"
{
float "" : opt // Position of the locator in model space.
}
array "rotation"
{
float "" : opt // Rotation of the locator in model space.
}
bool "ignore_inherited_scale" : opt // Discard scale inherited from parent bone.
}
}
object "poly_mesh" : opt // ***EXPERIMENTAL*** A triangle or quad mesh object. Can be used in conjunction with cubes and texture geometry.
{
bool "normalized_uvs" : opt // If true, UVs are assumed to be [0-1]. If false, UVs are assumed to be [0-texture_width] and [0-texture_height] respectively.
array "positions" : opt
{
array ""[3] : opt
{
float "" // Vertex positions for the mesh. Can be either indexed via the "polys" section, or be a quad-list if mapped 1-to-1 to the normals and UVs sections.
}
}
array "normals" : opt
{
array ""[3] : opt
{
float "" // Vertex normals. Can be either indexed via the "polys" section, or be a quad-list if mapped 1-to-1 to the positions and UVs sections.
}
}
array "uvs" : opt
{
array ""[2] : opt
{
float "" // Vertex UVs. Can be either indexed via the "polys" section, or be a quad-list if mapped 1-to-1 to the positions and normals sections.
}
}
array "polys"
{
array ""[3,4] : opt
{
array ""[3]
{
float "" // Poly element indices, as an array of polygons, each an array of either three or four vertices, each an array of indices into positions, normals, and UVs (in that order).
}
}
}
string "polys"<"tri_list", "quad_list"> // If not specifying vertex indices, arrays of data must be a list of tris or quads, set by making this property either "tri_list" or "quad_list"
}
array "texture_meshes" : opt // ***EXPERIMENTAL*** Adds a mesh to the bone's geometry by converting texels in a texture into boxes
{
object ""
{
string "texture" // The friendly-named texture to use.
array "position"[3] : opt
{
float "" // The position of the pivot point after rotation (in *entity space* not texture or bone space) of the texture geometry
}
array "local_pivot"[3] : opt
{
float "" // The pivot point on the texture (in *texture space* not entity or bone space) of the texture geometry
}
array "rotation"[3] : opt
{
float "" // The rotation (in degrees) of the texture geometry relative to the offset
}
array "scale"[3] : opt
{
float "" // The scale (in degrees) of the texture geometry relative to the offset
}
}
}
}
}
}
}
}

----------
geometry:1.16.0:{
version "format_version"
bool "debug" : opt
array "minecraft:geometry"[1,*]
{
object ""
{
object "description"
{
string "identifier" // Entity definition and Client Block definition files refer to this geometry via this identifier.
float "visible_bounds_width" : opt // Width of the visibility bounding box (in model space units).
float "visible_bounds_height" : opt // Height of the visible bounding box (in model space units).
array "visible_bounds_offset"[3] : opt
{
float "" // Offset of the visibility bounding box from the entity location point (in model space units).
}
int "texture_width" : opt // Assumed width in texels of the texture that will be bound to this geometry.
int "texture_height" : opt // Assumed height in texels of the texture that will be bound to this geometry.
}
string "cape" : opt
array "bones" : opt // Bones define the 'skeleton' of the mob: the parts that can be animated, and to which geometry and other bones are attached.
{
object "" : opt
{
string "name" // Animation files refer to this bone via this identifier.
string "parent" : opt // Bone that this bone is relative to. If the parent bone moves, this bone will move along with it.
array "pivot"[3] : opt
{
float "" // The bone pivots around this point (in model space units).
}
array "rotation"[3] : opt
{
float "" // This is the initial rotation of the bone around the pivot, pre-animation (in degrees, x-then-y-then-z order).
}
bool "mirror" : opt // Mirrors the UV's of the unrotated cubes along the x axis, also causes the east/west faces to get flipped.
float "inflate" : opt // Grow this box by this additive amount in all directions (in model space units).
bool "debug" : opt
int "render_group_id"<0-*> : opt
array "cubes" : opt // This is the list of cubes associated with this bone.
{
object "" : opt
{
array "origin"[3] : opt
{
float "" // This point declares the unrotated lower corner of cube (smallest x/y/z value in model space units).
}
array "size"[3] : opt
{
float "" // The cube extends this amount relative to its origin (in model space units).
}
array "rotation"[3] : opt
{
float "" // The cube is rotated by this amount (in degrees, x-then-y-then-z order) around the pivot.
}
array "pivot"[3] : opt
{
float "" // If this field is specified, rotation of this cube occurs around this point, otherwise its rotation is around the center of the box.
}
float "inflate" : opt // Grow this box by this additive amount in all directions (in model space units), this field overrides the bone's inflate field for this cube only.
bool "mirror" : opt // Mirrors this cube about the unrotated x axis (effectively flipping the east / west faces), overriding the bone's 'mirror' setting for this cube.
array "uv"[2] : opt
{
float "" // Specifies the upper-left corner on the texture for the start of the texture mapping for this box.
}
object "uv" : opt // This is an alternate per-face uv mapping which specifies each face of the cube. Omitting a face will cause that face to not get drawn.
{
object "north" : opt // Specifies the UV's for the face that stretches along the x and y axes, and faces the -z axis.
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "south" : opt // Specifies the UV's for the face that stretches along the x and y axes, and faces the z axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "east" : opt // Specifies the UV's for the face that stretches along the z and y axes, and faces the x axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "west" : opt // Specifies the UV's for the face that stretches along the z and y axes, and faces the -x axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "up" : opt // Specifies the UV's for the face that stretches along the x and z axes, and faces the y axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the back-upper-left corner, assuming you're facing 'north' relative to the cube.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "down" : opt // Specifies the UV's for the face that stretches along the x and z axes, and faces the -y axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the back-down-right corner, assuming you're facing 'north' relative to the cube.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
}
}
}
molang "binding" : opt // useful for items. A molang expression specifying the bone name of the parent skeletal hierarchy that this bone should use as the root transform. Without this field it will look for a bone in the parent entity with the same name as this bone. If both are missing, it will assume a local skeletal hierarchy (via the "parent" field). If that is also missing, it will attach to the owning entity's root transform.
object "locators" : opt
{
array "" : opt // This is a list of locators associated with this bone. A locator is a point in model space that tracks a particular bone as the bone animates (by maintaining it's relationship to the bone through the animation).
{
float "" : opt // Position of the locator in model space.
}
object "" : opt // This is a list of locators associated with this bone. A locator is a point in model space that tracks a particular bone as the bone animates (by maintaining it's relationship to the bone through the animation).
{
array "offset"
{
float "" : opt // Position of the locator in model space.
}
array "rotation"
{
float "" : opt // Rotation of the locator in model space.
}
bool "ignore_inherited_scale" : opt // Discard scale inherited from parent bone.
}
}
object "poly_mesh" : opt // ***EXPERIMENTAL*** A triangle or quad mesh object. Can be used in conjunction with cubes and texture geometry.
{
bool "normalized_uvs" : opt // If true, UVs are assumed to be [0-1]. If false, UVs are assumed to be [0-texture_width] and [0-texture_height] respectively.
array "positions" : opt
{
array ""[3] : opt
{
float "" // Vertex positions for the mesh. Can be either indexed via the "polys" section, or be a quad-list if mapped 1-to-1 to the normals and UVs sections.
}
}
array "normals" : opt
{
array ""[3] : opt
{
float "" // Vertex normals. Can be either indexed via the "polys" section, or be a quad-list if mapped 1-to-1 to the positions and UVs sections.
}
}
array "uvs" : opt
{
array ""[2] : opt
{
float "" // Vertex UVs. Can be either indexed via the "polys" section, or be a quad-list if mapped 1-to-1 to the positions and normals sections.
}
}
array "polys"
{
array ""[3,4] : opt
{
array ""[3]
{
float "" // Poly element indices, as an array of polygons, each an array of either three or four vertices, each an array of indices into positions, normals, and UVs (in that order).
}
}
}
string "polys"<"tri_list", "quad_list"> // If not specifying vertex indices, arrays of data must be a list of tris or quads, set by making this property either "tri_list" or "quad_list"
}
array "texture_meshes" : opt // ***EXPERIMENTAL*** Adds a mesh to the bone's geometry by converting texels in a texture into boxes
{
object ""
{
string "texture" // The friendly-named texture to use.
array "position"[3] : opt
{
float "" // The position of the pivot point after rotation (in *entity space* not texture or bone space) of the texture geometry
}
array "local_pivot"[3] : opt
{
float "" // The pivot point on the texture (in *texture space* not entity or bone space) of the texture geometry
}
array "rotation"[3] : opt
{
float "" // The rotation (in degrees) of the texture geometry relative to the offset
}
array "scale"[3] : opt
{
float "" // The scale (in degrees) of the texture geometry relative to the offset
}
}
}
}
}
}
}
}

----------
geometry:1.19.30:{
version "format_version"
bool "debug" : opt
array "minecraft:geometry"[1,*]
{
object ""
{
object "description"
{
string "identifier" // Entity definition and Client Block definition files refer to this geometry via this identifier.
float "visible_bounds_width" : opt // Width of the visibility bounding box (in model space units).
float "visible_bounds_height" : opt // Height of the visible bounding box (in model space units).
array "visible_bounds_offset"[3] : opt
{
float "" // Offset of the visibility bounding box from the entity location point (in model space units).
}
int "texture_width" : opt // Assumed width in texels of the texture that will be bound to this geometry.
int "texture_height" : opt // Assumed height in texels of the texture that will be bound to this geometry.
}
string "cape" : opt
array "bones" : opt // Bones define the 'skeleton' of the mob: the parts that can be animated, and to which geometry and other bones are attached.
{
object "" : opt
{
string "name" // Animation files refer to this bone via this identifier.
string "parent" : opt // Bone that this bone is relative to. If the parent bone moves, this bone will move along with it.
array "pivot"[3] : opt
{
float "" // The bone pivots around this point (in model space units).
}
array "rotation"[3] : opt
{
float "" // This is the initial rotation of the bone around the pivot, pre-animation (in degrees, x-then-y-then-z order).
}
bool "mirror" : opt // Mirrors the UV's of the unrotated cubes along the x axis, also causes the east/west faces to get flipped.
float "inflate" : opt // Grow this box by this additive amount in all directions (in model space units).
bool "debug" : opt
int "render_group_id"<0-*> : opt
array "cubes" : opt // This is the list of cubes associated with this bone.
{
object "" : opt
{
array "origin"[3] : opt
{
float "" // This point declares the unrotated lower corner of cube (smallest x/y/z value in model space units).
}
array "size"[3] : opt
{
float "" // The cube extends this amount relative to its origin (in model space units).
}
array "rotation"[3] : opt
{
float "" // The cube is rotated by this amount (in degrees, x-then-y-then-z order) around the pivot.
}
array "pivot"[3] : opt
{
float "" // If this field is specified, rotation of this cube occurs around this point, otherwise its rotation is around the center of the box.
}
float "inflate" : opt // Grow this box by this additive amount in all directions (in model space units), this field overrides the bone's inflate field for this cube only.
bool "mirror" : opt // Mirrors this cube about the unrotated x axis (effectively flipping the east / west faces), overriding the bone's 'mirror' setting for this cube.
array "uv"[2] : opt
{
float "" // Specifies the upper-left corner on the texture for the start of the texture mapping for this box.
}
object "uv" : opt // This is an alternate per-face uv mapping which specifies each face of the cube. Omitting a face will cause that face to not get drawn.
{
object "north" : opt // Specifies the UV's for the face that stretches along the x and y axes, and faces the -z axis.
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "south" : opt // Specifies the UV's for the face that stretches along the x and y axes, and faces the z axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "east" : opt // Specifies the UV's for the face that stretches along the z and y axes, and faces the x axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "west" : opt // Specifies the UV's for the face that stretches along the z and y axes, and faces the -x axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "up" : opt // Specifies the UV's for the face that stretches along the x and z axes, and faces the y axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the back-upper-left corner, assuming you're facing 'north' relative to the cube.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "down" : opt // Specifies the UV's for the face that stretches along the x and z axes, and faces the -y axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the back-down-right corner, assuming you're facing 'north' relative to the cube.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
}
}
}
molang "binding" : opt // useful for items. A molang expression specifying the bone name of the parent skeletal hierarchy that this bone should use as the root transform. Without this field it will look for a bone in the parent entity with the same name as this bone. If both are missing, it will assume a local skeletal hierarchy (via the "parent" field). If that is also missing, it will attach to the owning entity's root transform.
object "locators" : opt
{
array "" : opt // This is a list of locators associated with this bone. A locator is a point in model space that tracks a particular bone as the bone animates (by maintaining it's relationship to the bone through the animation).
{
float "" : opt // Position of the locator in model space.
}
object "" : opt // This is a list of locators associated with this bone. A locator is a point in model space that tracks a particular bone as the bone animates (by maintaining it's relationship to the bone through the animation).
{
array "offset"
{
float "" : opt // Position of the locator in model space.
}
array "rotation"
{
float "" : opt // Rotation of the locator in model space.
}
bool "ignore_inherited_scale" : opt // Discard scale inherited from parent bone.
}
}
object "poly_mesh" : opt // ***EXPERIMENTAL*** A triangle or quad mesh object. Can be used in conjunction with cubes and texture geometry.
{
bool "normalized_uvs" : opt // If true, UVs are assumed to be [0-1]. If false, UVs are assumed to be [0-texture_width] and [0-texture_height] respectively.
array "positions" : opt
{
array ""[3] : opt
{
float "" // Vertex positions for the mesh. Can be either indexed via the "polys" section, or be a quad-list if mapped 1-to-1 to the normals and UVs sections.
}
}
array "normals" : opt
{
array ""[3] : opt
{
float "" // Vertex normals. Can be either indexed via the "polys" section, or be a quad-list if mapped 1-to-1 to the positions and UVs sections.
}
}
array "uvs" : opt
{
array ""[2] : opt
{
float "" // Vertex UVs. Can be either indexed via the "polys" section, or be a quad-list if mapped 1-to-1 to the positions and normals sections.
}
}
array "polys"
{
array ""[3,4] : opt
{
array ""[3]
{
float "" // Poly element indices, as an array of polygons, each an array of either three or four vertices, each an array of indices into positions, normals, and UVs (in that order).
}
}
}
string "polys"<"tri_list", "quad_list"> // If not specifying vertex indices, arrays of data must be a list of tris or quads, set by making this property either "tri_list" or "quad_list"
}
array "texture_meshes" : opt // ***EXPERIMENTAL*** Adds a mesh to the bone's geometry by converting texels in a texture into boxes
{
object ""
{
string "texture" // The friendly-named texture to use.
array "position"[3] : opt
{
float "" // The position of the pivot point after rotation (in *entity space* not texture or bone space) of the texture geometry
}
array "local_pivot"[3] : opt
{
float "" // The pivot point on the texture (in *texture space* not entity or bone space) of the texture geometry
}
array "rotation"[3] : opt
{
float "" // The rotation (in degrees) of the texture geometry relative to the offset
}
array "scale"[3] : opt
{
float "" // The scale (in degrees) of the texture geometry relative to the offset
}
}
}
}
}
}
}
}

----------
```
Back to top

+```
--------
item_event_responses:1.16.100:
----------
actor_animation:1.8.0:{
version "format_version"
object "animations"
{
object "animation."
{
bool "loop" : opt // should this animation stop, loop, or stay on the last frame when finished (true, false, "hold_on_last_frame"
string "loop"<"hold_on_last_frame"> : opt // should this animation stop, loop, or stay on the last frame when finished (true, false, "hold_on_last_frame"
molang "start_delay" : opt // How long to wait in seconds before playing this animation. Note that this expression is evaluated once before playing, and only re-evaluated if asked to play from the beginning again. A looping animation should use 'loop_delay' if it wants a delay between loops.
molang "loop_delay" : opt // How long to wait in seconds before looping this animation. Note that this expression is evaluated after each loop and on looping animation only.
molang "anim_time_update" : opt // how does time pass when playing the animation. Defaults to "query.anim_time + query.delta_time" which means advance in seconds.
molang "blend_weight" : opt
bool "override_previous_animation" : opt // reset bones in this animation to the default pose before applying this animation
object "bones" : opt
{
object ""
{
object "relative_to" : opt
{
string "rotation"<"entity"> : opt // if set, makes the bone rotation relative to the entity instead of the bone's parent
}
molang "position" : opt
array "position" : opt
{
molang ""
}
object "position" : opt
{
array ""[3]
{
molang ""
}
object ""
{
enumerated_value "lerp_mode"<"linear", "catmullrom"> : opt
array "pre"[3] : opt
{
molang ""
}
array "post"[3] : opt
{
molang ""
}
}
}
molang "rotation" : opt
array "rotation" : opt
{
molang ""
object ""
{
molang "[xyz]"
}
}
object "rotation" : opt
{
array ""[3]
{
molang ""
}
object ""
{
enumerated_value "lerp_mode"<"linear", "catmullrom"> : opt
array "pre"[3] : opt
{
molang ""
}
array "post"[3] : opt
{
molang ""
}
}
}
molang "scale" : opt
array "scale" : opt
{
molang ""
}
object "scale" : opt
{
array ""[3]
{
molang ""
}
object ""
{
enumerated_value "lerp_mode"<"linear", "catmullrom"> : opt
array "pre"[3] : opt
{
molang ""
}
array "post"[3] : opt
{
molang ""
}
}
}
}
}
object "particle_effects" : opt
{
object "" : opt
{
string "effect" // The name of a particle effect that should be played
string "locator" : opt // The name of a locator on the actor where the effect should be located
molang "pre_effect_script" : opt // A Molang script that will be run when the particle emitter is initialized
bool "bind_to_actor" : opt // Set to false to have the effect spawned in the world without being bound to an actor (by default an effect is bound to the actor).
}
array "" : opt
{
object "" : opt
{
string "effect" // The name of a particle effect that should be played
string "locator" : opt // The name of a locator on the actor where the effect should be located
molang "pre_effect_script" : opt // A Molang script that will be run when the particle emitter is initialized
bool "bind_to_actor" : opt // Set to false to have the effect spawned in the world without being bound to an actor (by default an effect is bound to the actor).
}
}
}
object "sound_effects" : opt // sound effects to trigger as this animation plays, keyed by time
{
object "" : opt
{
string "effect" // Valid sound effect names should be listed in the entity's resource_definition json file.
}
array "" : opt
{
object "" : opt
{
string "effect" // Valid sound effect names should be listed in the entity's resource_definition json file.
}
}
}
object "timeline" : opt
{
string "" : opt
array "" : opt
{
string "" : opt
}
}
float "animation_length" : opt // override calculated value (set as the max keyframe or event time) and set animation length in seconds.
}
}
}

----------
chance_information:1.14.0:{
int "numerator"<0-*>
int "denominator"<1-*>
}

----------
block_reference:1.10.0:{
string "name"
object "states"
{
bool "\w*:?\w+" : opt
int "\w*:?\w+" : opt
string "\w*:?\w+" : opt
}
}

----------
persona_actor_animation:1.8.0:{
version "format_version"
object "animations"
{
object "animation."
{
bool "loop" : opt // should this animation stop, loop, or stay on the last frame when finished (true, false, "hold_on_last_frame"
string "loop"<"hold_on_last_frame"> : opt // should this animation stop, loop, or stay on the last frame when finished (true, false, "hold_on_last_frame"
molang "start_delay" : opt // How long to wait in seconds before playing this animation. Note that this expression is evaluated once before playing, and only re-evaluated if asked to play from the beginning again. A looping animation should use 'loop_delay' if it wants a delay between loops.
molang "loop_delay" : opt // How long to wait in seconds before looping this animation. Note that this expression is evaluated after each loop and on looping animation only.
molang "anim_time_update" : opt // how does time pass when playing the animation. Defaults to "query.anim_time + query.delta_time" which means advance in seconds.
molang "blend_weight" : opt
bool "override_previous_animation" : opt // reset bones in this animation to the default pose before applying this animation
object "bones" : opt
{
object ""
{
object "relative_to" : opt
{
string "rotation"<"entity"> : opt // if set, makes the bone rotation relative to the entity instead of the bone's parent
}
molang "position" : opt
array "position" : opt
{
molang ""
}
object "position" : opt
{
array ""[3]
{
molang ""
}
object ""
{
enumerated_value "lerp_mode"<"linear", "catmullrom"> : opt
array "pre"[3] : opt
{
molang ""
}
array "post"[3] : opt
{
molang ""
}
}
}
molang "rotation" : opt
array "rotation" : opt
{
molang ""
object ""
{
molang "[xyz]"
}
}
object "rotation" : opt
{
array ""[3]
{
molang ""
}
object ""
{
enumerated_value "lerp_mode"<"linear", "catmullrom"> : opt
array "pre"[3] : opt
{
molang ""
}
array "post"[3] : opt
{
molang ""
}
}
}
molang "scale" : opt
array "scale" : opt
{
molang ""
}
object "scale" : opt
{
array ""[3]
{
molang ""
}
object ""
{
enumerated_value "lerp_mode"<"linear", "catmullrom"> : opt
array "pre"[3] : opt
{
molang ""
}
array "post"[3] : opt
{
molang ""
}
}
}
}
}
object "particle_effects" : opt
{
object "" : opt
{
string "effect" // The name of a particle effect that should be played
string "locator" : opt // The name of a locator on the actor where the effect should be located
molang "pre_effect_script" : opt // A Molang script that will be run when the particle emitter is initialized
bool "bind_to_actor" : opt // Set to false to have the effect spawned in the world without being bound to an actor (by default an effect is bound to the actor).
}
array "" : opt
{
object "" : opt
{
string "effect" // The name of a particle effect that should be played
string "locator" : opt // The name of a locator on the actor where the effect should be located
molang "pre_effect_script" : opt // A Molang script that will be run when the particle emitter is initialized
bool "bind_to_actor" : opt // Set to false to have the effect spawned in the world without being bound to an actor (by default an effect is bound to the actor).
}
}
}
object "sound_effects" : opt // sound effects to trigger as this animation plays, keyed by time
{
object "" : opt
{
string "effect" // Valid sound effect names should be listed in the entity's resource_definition json file.
}
array "" : opt
{
object "" : opt
{
string "effect" // Valid sound effect names should be listed in the entity's resource_definition json file.
}
}
}
object "timeline" : opt
{
string "" : opt
array "" : opt
{
string "" : opt
}
}
float "animation_length" : opt // override calculated value (set as the max keyframe or event time) and set animation length in seconds.
}
}
}

----------
geometry:1.8.0:{
bool "debug" : opt
version "format_version"
object "geometry.[a-zA-Z0-9_.'-:]+"
{
bool "debug" : opt
float "visible_bounds_width" : opt
float "visible_bounds_height" : opt
array "visible_bounds_offset"[3] : opt
{
float ""
}
int "texturewidth" : opt
int "textureheight" : opt
string "cape" : opt
array "bones" : opt
{
object "" : opt
{
string "name"
bool "reset" : opt
bool "neverRender" : opt
string "parent" : opt
array "pivot"[3] : opt
{
float ""
}
array "rotation"[3] : opt
{
float ""
}
array "bind_pose_rotation"[3] : opt
{
float "" : opt
}
bool "mirror" : opt
float "inflate" : opt
bool "debug" : opt
int "render_group_id"<0-*> : opt
array "cubes" : opt
{
object "" : opt
{
array "origin"[3] : opt
{
float ""
}
array "size"[3] : opt
{
float ""
}
array "uv"[2] : opt
{
float ""
}
float "inflate" : opt
bool "mirror" : opt
}
}
object "locators" : opt
{
array "" : opt
{
float "" : opt
}
}
object "poly_mesh" : opt
{
bool "normalized_uvs" : opt
array "positions" : opt
{
array ""[3] : opt
{
float ""
}
}
array "normals" : opt
{
array ""[3] : opt
{
float ""
}
}
array "uvs" : opt
{
array ""[2] : opt
{
float ""
}
}
array "polys"
{
array ""[3,4] : opt
{
array ""[3]
{
float ""
}
}
}
string "polys"<"tri_list", "quad_list">
}
array "texture_meshes" : opt
{
object ""
{
string "texture"
array "position"[3] : opt
{
float ""
}
array "local_pivot"[3] : opt
{
float ""
}
array "rotation"[3] : opt
{
float ""
}
array "scale"[3] : opt
{
float ""
}
}
}
}
}
}
}

----------
geometry:1.12.0:{
bool "debug" : opt
version "format_version"
array "minecraft:geometry"[1,*]
{
object ""
{
object "description"
{
string "identifier" // Entity definition and Client Block definition files refer to this geometry via this identifier.
float "visible_bounds_width" : opt // Width of the visibility bounding box (in model space units).
float "visible_bounds_height" : opt // Height of the visible bounding box (in model space units).
array "visible_bounds_offset"[3] : opt
{
float "" // Offset of the visibility bounding box from the entity location point (in model space units).
}
int "texture_width" : opt // Assumed width in texels of the texture that will be bound to this geometry.
int "texture_height" : opt // Assumed height in texels of the texture that will be bound to this geometry.
}
string "cape" : opt
array "bones" : opt // Bones define the 'skeleton' of the mob: the parts that can be animated, and to which geometry and other bones are attached.
{
object "" : opt
{
string "name" // Animation files refer to this bone via this identifier.
string "parent" : opt // Bone that this bone is relative to. If the parent bone moves, this bone will move along with it.
array "pivot"[3] : opt
{
float "" // The bone pivots around this point (in model space units).
}
array "rotation"[3] : opt
{
float "" // This is the initial rotation of the bone around the pivot, pre-animation (in degrees, x-then-y-then-z order).
}
bool "mirror" : opt // Mirrors the UV's of the unrotated cubes along the x axis, also causes the east/west faces to get flipped.
float "inflate" : opt // Grow this box by this additive amount in all directions (in model space units).
bool "debug" : opt
int "render_group_id"<0-*> : opt
array "cubes" : opt // This is the list of cubes associated with this bone.
{
object "" : opt
{
array "origin"[3] : opt
{
float "" // This point declares the unrotated lower corner of cube (smallest x/y/z value in model space units).
}
array "size"[3] : opt
{
float "" // The cube extends this amount relative to its origin (in model space units).
}
array "rotation"[3] : opt
{
float "" // The cube is rotated by this amount (in degrees, x-then-y-then-z order) around the pivot.
}
array "pivot"[3] : opt
{
float "" // If this field is specified, rotation of this cube occurs around this point, otherwise its rotation is around the center of the box. Note that in 1.12 this is flipped upside-down, but is fixed in 1.14.
}
float "inflate" : opt // Grow this box by this additive amount in all directions (in model space units), this field overrides the bone's inflate field for this cube only.
bool "mirror" : opt // Mirrors this cube about the unrotated x axis (effectively flipping the east / west faces), overriding the bone's 'mirror' setting for this cube.
array "uv"[2] : opt
{
float "" // Specifies the upper-left corner on the texture for the start of the texture mapping for this box.
}
object "uv" : opt // This is an alternate per-face uv mapping which specifies each face of the cube. Omitting a face will cause that face to not get drawn.
{
object "north" : opt // Specifies the UV's for the face that stretches along the x and y axes, and faces the -z axis.
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "south" : opt // Specifies the UV's for the face that stretches along the x and y axes, and faces the z axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "east" : opt // Specifies the UV's for the face that stretches along the z and y axes, and faces the x axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "west" : opt // Specifies the UV's for the face that stretches along the z and y axes, and faces the -x axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "up" : opt // Specifies the UV's for the face that stretches along the x and z axes, and faces the y axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the back-upper-left corner, assuming you're facing 'north' relative to the cube.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "down" : opt // Specifies the UV's for the face that stretches along the x and z axes, and faces the -y axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the back-down-right corner, assuming you're facing 'north' relative to the cube.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
}
}
}
object "locators" : opt
{
array "" : opt // This is a list of locators associated with this bone. A locator is a point in model space that tracks a particular bone as the bone animates (by maintaining it's relationship to the bone through the animation).
{
float "" : opt // Position of the locator in model space.
}
object "" : opt // This is a list of locators associated with this bone. A locator is a point in model space that tracks a particular bone as the bone animates (by maintaining it's relationship to the bone through the animation).
{
array "offset"
{
float "" : opt // Position of the locator in model space.
}
array "rotation"
{
float "" : opt // Rotation of the locator in model space.
}
bool "ignore_inherited_scale" : opt // Discard scale inherited from parent bone.
}
}
object "poly_mesh" : opt // ***EXPERIMENTAL*** A triangle or quad mesh object. Can be used in conjunction with cubes and texture geometry.
{
bool "normalized_uvs" : opt // If true, UVs are assumed to be [0-1]. If false, UVs are assumed to be [0-texture_width] and [0-texture_height] respectively.
array "positions" : opt
{
array ""[3] : opt
{
float "" // Vertex positions for the mesh. Can be either indexed via the "polys" section, or be a quad-list if mapped 1-to-1 to the normals and UVs sections.
}
}
array "normals" : opt
{
array ""[3] : opt
{
float "" // Vertex normals. Can be either indexed via the "polys" section, or be a quad-list if mapped 1-to-1 to the positions and UVs sections.
}
}
array "uvs" : opt
{
array ""[2] : opt
{
float "" // Vertex UVs. Can be either indexed via the "polys" section, or be a quad-list if mapped 1-to-1 to the positions and normals sections.
}
}
array "polys"
{
array ""[3,4] : opt
{
array ""[3]
{
float "" // Poly element indices, as an array of polygons, each an array of either three or four vertices, each an array of indices into positions, normals, and UVs (in that order).
}
}
}
string "polys"<"tri_list", "quad_list"> // If not specifying vertex indices, arrays of data must be a list of tris or quads, set by making this property either "tri_list" or "quad_list"
}
array "texture_meshes" : opt // ***EXPERIMENTAL*** Adds a mesh to the bone's geometry by converting texels in a texture into boxes
{
object ""
{
string "texture" // The friendly-named texture to use.
array "position"[3] : opt
{
float "" // The position of the pivot point after rotation (in *entity space* not texture or bone space) of the texture geometry
}
array "local_pivot"[3] : opt
{
float "" // The pivot point on the texture (in *texture space* not entity or bone space) of the texture geometry
}
array "rotation"[3] : opt
{
float "" // The rotation (in degrees) of the texture geometry relative to the offset
}
array "scale"[3] : opt
{
float "" // The scale (in degrees) of the texture geometry relative to the offset
}
}
}
}
}
}
}
}

----------
geometry:1.14.0:{
version "format_version"
bool "debug" : opt
array "minecraft:geometry"[1,*]
{
object ""
{
object "description"
{
string "identifier" // Entity definition and Client Block definition files refer to this geometry via this identifier.
float "visible_bounds_width" : opt // Width of the visibility bounding box (in model space units).
float "visible_bounds_height" : opt // Height of the visible bounding box (in model space units).
array "visible_bounds_offset"[3] : opt
{
float "" // Offset of the visibility bounding box from the entity location point (in model space units).
}
int "texture_width" : opt // Assumed width in texels of the texture that will be bound to this geometry.
int "texture_height" : opt // Assumed height in texels of the texture that will be bound to this geometry.
}
string "cape" : opt
array "bones" : opt // Bones define the 'skeleton' of the mob: the parts that can be animated, and to which geometry and other bones are attached.
{
object "" : opt
{
string "name" // Animation files refer to this bone via this identifier.
string "parent" : opt // Bone that this bone is relative to. If the parent bone moves, this bone will move along with it.
array "pivot"[3] : opt
{
float "" // The bone pivots around this point (in model space units).
}
array "rotation"[3] : opt
{
float "" // This is the initial rotation of the bone around the pivot, pre-animation (in degrees, x-then-y-then-z order).
}
bool "mirror" : opt // Mirrors the UV's of the unrotated cubes along the x axis, also causes the east/west faces to get flipped.
float "inflate" : opt // Grow this box by this additive amount in all directions (in model space units).
bool "debug" : opt
int "render_group_id"<0-*> : opt
array "cubes" : opt // This is the list of cubes associated with this bone.
{
object "" : opt
{
array "origin"[3] : opt
{
float "" // This point declares the unrotated lower corner of cube (smallest x/y/z value in model space units).
}
array "size"[3] : opt
{
float "" // The cube extends this amount relative to its origin (in model space units).
}
array "rotation"[3] : opt
{
float "" // The cube is rotated by this amount (in degrees, x-then-y-then-z order) around the pivot.
}
array "pivot"[3] : opt
{
float "" // If this field is specified, rotation of this cube occurs around this point, otherwise its rotation is around the center of the box.
}
float "inflate" : opt // Grow this box by this additive amount in all directions (in model space units), this field overrides the bone's inflate field for this cube only.
bool "mirror" : opt // Mirrors this cube about the unrotated x axis (effectively flipping the east / west faces), overriding the bone's 'mirror' setting for this cube.
array "uv"[2] : opt
{
float "" // Specifies the upper-left corner on the texture for the start of the texture mapping for this box.
}
object "uv" : opt // This is an alternate per-face uv mapping which specifies each face of the cube. Omitting a face will cause that face to not get drawn.
{
object "north" : opt // Specifies the UV's for the face that stretches along the x and y axes, and faces the -z axis.
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "south" : opt // Specifies the UV's for the face that stretches along the x and y axes, and faces the z axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "east" : opt // Specifies the UV's for the face that stretches along the z and y axes, and faces the x axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "west" : opt // Specifies the UV's for the face that stretches along the z and y axes, and faces the -x axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "up" : opt // Specifies the UV's for the face that stretches along the x and z axes, and faces the y axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the back-upper-left corner, assuming you're facing 'north' relative to the cube.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "down" : opt // Specifies the UV's for the face that stretches along the x and z axes, and faces the -y axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the back-down-right corner, assuming you're facing 'north' relative to the cube.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
}
}
}
object "locators" : opt
{
array "" : opt // This is a list of locators associated with this bone. A locator is a point in model space that tracks a particular bone as the bone animates (by maintaining it's relationship to the bone through the animation).
{
float "" : opt // Position of the locator in model space.
}
object "" : opt // This is a list of locators associated with this bone. A locator is a point in model space that tracks a particular bone as the bone animates (by maintaining it's relationship to the bone through the animation).
{
array "offset"
{
float "" : opt // Position of the locator in model space.
}
array "rotation"
{
float "" : opt // Rotation of the locator in model space.
}
bool "ignore_inherited_scale" : opt // Discard scale inherited from parent bone.
}
}
object "poly_mesh" : opt // ***EXPERIMENTAL*** A triangle or quad mesh object. Can be used in conjunction with cubes and texture geometry.
{
bool "normalized_uvs" : opt // If true, UVs are assumed to be [0-1]. If false, UVs are assumed to be [0-texture_width] and [0-texture_height] respectively.
array "positions" : opt
{
array ""[3] : opt
{
float "" // Vertex positions for the mesh. Can be either indexed via the "polys" section, or be a quad-list if mapped 1-to-1 to the normals and UVs sections.
}
}
array "normals" : opt
{
array ""[3] : opt
{
float "" // Vertex normals. Can be either indexed via the "polys" section, or be a quad-list if mapped 1-to-1 to the positions and UVs sections.
}
}
array "uvs" : opt
{
array ""[2] : opt
{
float "" // Vertex UVs. Can be either indexed via the "polys" section, or be a quad-list if mapped 1-to-1 to the positions and normals sections.
}
}
array "polys"
{
array ""[3,4] : opt
{
array ""[3]
{
float "" // Poly element indices, as an array of polygons, each an array of either three or four vertices, each an array of indices into positions, normals, and UVs (in that order).
}
}
}
string "polys"<"tri_list", "quad_list"> // If not specifying vertex indices, arrays of data must be a list of tris or quads, set by making this property either "tri_list" or "quad_list"
}
array "texture_meshes" : opt // ***EXPERIMENTAL*** Adds a mesh to the bone's geometry by converting texels in a texture into boxes
{
object ""
{
string "texture" // The friendly-named texture to use.
array "position"[3] : opt
{
float "" // The position of the pivot point after rotation (in *entity space* not texture or bone space) of the texture geometry
}
array "local_pivot"[3] : opt
{
float "" // The pivot point on the texture (in *texture space* not entity or bone space) of the texture geometry
}
array "rotation"[3] : opt
{
float "" // The rotation (in degrees) of the texture geometry relative to the offset
}
array "scale"[3] : opt
{
float "" // The scale (in degrees) of the texture geometry relative to the offset
}
}
}
}
}
}
}
}

----------
geometry:1.16.0:{
version "format_version"
bool "debug" : opt
array "minecraft:geometry"[1,*]
{
object ""
{
object "description"
{
string "identifier" // Entity definition and Client Block definition files refer to this geometry via this identifier.
float "visible_bounds_width" : opt // Width of the visibility bounding box (in model space units).
float "visible_bounds_height" : opt // Height of the visible bounding box (in model space units).
array "visible_bounds_offset"[3] : opt
{
float "" // Offset of the visibility bounding box from the entity location point (in model space units).
}
int "texture_width" : opt // Assumed width in texels of the texture that will be bound to this geometry.
int "texture_height" : opt // Assumed height in texels of the texture that will be bound to this geometry.
}
string "cape" : opt
array "bones" : opt // Bones define the 'skeleton' of the mob: the parts that can be animated, and to which geometry and other bones are attached.
{
object "" : opt
{
string "name" // Animation files refer to this bone via this identifier.
string "parent" : opt // Bone that this bone is relative to. If the parent bone moves, this bone will move along with it.
array "pivot"[3] : opt
{
float "" // The bone pivots around this point (in model space units).
}
array "rotation"[3] : opt
{
float "" // This is the initial rotation of the bone around the pivot, pre-animation (in degrees, x-then-y-then-z order).
}
bool "mirror" : opt // Mirrors the UV's of the unrotated cubes along the x axis, also causes the east/west faces to get flipped.
float "inflate" : opt // Grow this box by this additive amount in all directions (in model space units).
bool "debug" : opt
int "render_group_id"<0-*> : opt
array "cubes" : opt // This is the list of cubes associated with this bone.
{
object "" : opt
{
array "origin"[3] : opt
{
float "" // This point declares the unrotated lower corner of cube (smallest x/y/z value in model space units).
}
array "size"[3] : opt
{
float "" // The cube extends this amount relative to its origin (in model space units).
}
array "rotation"[3] : opt
{
float "" // The cube is rotated by this amount (in degrees, x-then-y-then-z order) around the pivot.
}
array "pivot"[3] : opt
{
float "" // If this field is specified, rotation of this cube occurs around this point, otherwise its rotation is around the center of the box.
}
float "inflate" : opt // Grow this box by this additive amount in all directions (in model space units), this field overrides the bone's inflate field for this cube only.
bool "mirror" : opt // Mirrors this cube about the unrotated x axis (effectively flipping the east / west faces), overriding the bone's 'mirror' setting for this cube.
array "uv"[2] : opt
{
float "" // Specifies the upper-left corner on the texture for the start of the texture mapping for this box.
}
object "uv" : opt // This is an alternate per-face uv mapping which specifies each face of the cube. Omitting a face will cause that face to not get drawn.
{
object "north" : opt // Specifies the UV's for the face that stretches along the x and y axes, and faces the -z axis.
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "south" : opt // Specifies the UV's for the face that stretches along the x and y axes, and faces the z axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "east" : opt // Specifies the UV's for the face that stretches along the z and y axes, and faces the x axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "west" : opt // Specifies the UV's for the face that stretches along the z and y axes, and faces the -x axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "up" : opt // Specifies the UV's for the face that stretches along the x and z axes, and faces the y axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the back-upper-left corner, assuming you're facing 'north' relative to the cube.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "down" : opt // Specifies the UV's for the face that stretches along the x and z axes, and faces the -y axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the back-down-right corner, assuming you're facing 'north' relative to the cube.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
}
}
}
molang "binding" : opt // useful for items. A molang expression specifying the bone name of the parent skeletal hierarchy that this bone should use as the root transform. Without this field it will look for a bone in the parent entity with the same name as this bone. If both are missing, it will assume a local skeletal hierarchy (via the "parent" field). If that is also missing, it will attach to the owning entity's root transform.
object "locators" : opt
{
array "" : opt // This is a list of locators associated with this bone. A locator is a point in model space that tracks a particular bone as the bone animates (by maintaining it's relationship to the bone through the animation).
{
float "" : opt // Position of the locator in model space.
}
object "" : opt // This is a list of locators associated with this bone. A locator is a point in model space that tracks a particular bone as the bone animates (by maintaining it's relationship to the bone through the animation).
{
array "offset"
{
float "" : opt // Position of the locator in model space.
}
array "rotation"
{
float "" : opt // Rotation of the locator in model space.
}
bool "ignore_inherited_scale" : opt // Discard scale inherited from parent bone.
}
}
object "poly_mesh" : opt // ***EXPERIMENTAL*** A triangle or quad mesh object. Can be used in conjunction with cubes and texture geometry.
{
bool "normalized_uvs" : opt // If true, UVs are assumed to be [0-1]. If false, UVs are assumed to be [0-texture_width] and [0-texture_height] respectively.
array "positions" : opt
{
array ""[3] : opt
{
float "" // Vertex positions for the mesh. Can be either indexed via the "polys" section, or be a quad-list if mapped 1-to-1 to the normals and UVs sections.
}
}
array "normals" : opt
{
array ""[3] : opt
{
float "" // Vertex normals. Can be either indexed via the "polys" section, or be a quad-list if mapped 1-to-1 to the positions and UVs sections.
}
}
array "uvs" : opt
{
array ""[2] : opt
{
float "" // Vertex UVs. Can be either indexed via the "polys" section, or be a quad-list if mapped 1-to-1 to the positions and normals sections.
}
}
array "polys"
{
array ""[3,4] : opt
{
array ""[3]
{
float "" // Poly element indices, as an array of polygons, each an array of either three or four vertices, each an array of indices into positions, normals, and UVs (in that order).
}
}
}
string "polys"<"tri_list", "quad_list"> // If not specifying vertex indices, arrays of data must be a list of tris or quads, set by making this property either "tri_list" or "quad_list"
}
array "texture_meshes" : opt // ***EXPERIMENTAL*** Adds a mesh to the bone's geometry by converting texels in a texture into boxes
{
object ""
{
string "texture" // The friendly-named texture to use.
array "position"[3] : opt
{
float "" // The position of the pivot point after rotation (in *entity space* not texture or bone space) of the texture geometry
}
array "local_pivot"[3] : opt
{
float "" // The pivot point on the texture (in *texture space* not entity or bone space) of the texture geometry
}
array "rotation"[3] : opt
{
float "" // The rotation (in degrees) of the texture geometry relative to the offset
}
array "scale"[3] : opt
{
float "" // The scale (in degrees) of the texture geometry relative to the offset
}
}
}
}
}
}
}
}

----------
geometry:1.19.30:{
version "format_version"
bool "debug" : opt
array "minecraft:geometry"[1,*]
{
object ""
{
object "description"
{
string "identifier" // Entity definition and Client Block definition files refer to this geometry via this identifier.
float "visible_bounds_width" : opt // Width of the visibility bounding box (in model space units).
float "visible_bounds_height" : opt // Height of the visible bounding box (in model space units).
array "visible_bounds_offset"[3] : opt
{
float "" // Offset of the visibility bounding box from the entity location point (in model space units).
}
int "texture_width" : opt // Assumed width in texels of the texture that will be bound to this geometry.
int "texture_height" : opt // Assumed height in texels of the texture that will be bound to this geometry.
}
string "cape" : opt
array "bones" : opt // Bones define the 'skeleton' of the mob: the parts that can be animated, and to which geometry and other bones are attached.
{
object "" : opt
{
string "name" // Animation files refer to this bone via this identifier.
string "parent" : opt // Bone that this bone is relative to. If the parent bone moves, this bone will move along with it.
array "pivot"[3] : opt
{
float "" // The bone pivots around this point (in model space units).
}
array "rotation"[3] : opt
{
float "" // This is the initial rotation of the bone around the pivot, pre-animation (in degrees, x-then-y-then-z order).
}
bool "mirror" : opt // Mirrors the UV's of the unrotated cubes along the x axis, also causes the east/west faces to get flipped.
float "inflate" : opt // Grow this box by this additive amount in all directions (in model space units).
bool "debug" : opt
int "render_group_id"<0-*> : opt
array "cubes" : opt // This is the list of cubes associated with this bone.
{
object "" : opt
{
array "origin"[3] : opt
{
float "" // This point declares the unrotated lower corner of cube (smallest x/y/z value in model space units).
}
array "size"[3] : opt
{
float "" // The cube extends this amount relative to its origin (in model space units).
}
array "rotation"[3] : opt
{
float "" // The cube is rotated by this amount (in degrees, x-then-y-then-z order) around the pivot.
}
array "pivot"[3] : opt
{
float "" // If this field is specified, rotation of this cube occurs around this point, otherwise its rotation is around the center of the box.
}
float "inflate" : opt // Grow this box by this additive amount in all directions (in model space units), this field overrides the bone's inflate field for this cube only.
bool "mirror" : opt // Mirrors this cube about the unrotated x axis (effectively flipping the east / west faces), overriding the bone's 'mirror' setting for this cube.
array "uv"[2] : opt
{
float "" // Specifies the upper-left corner on the texture for the start of the texture mapping for this box.
}
object "uv" : opt // This is an alternate per-face uv mapping which specifies each face of the cube. Omitting a face will cause that face to not get drawn.
{
object "north" : opt // Specifies the UV's for the face that stretches along the x and y axes, and faces the -z axis.
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "south" : opt // Specifies the UV's for the face that stretches along the x and y axes, and faces the z axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "east" : opt // Specifies the UV's for the face that stretches along the z and y axes, and faces the x axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "west" : opt // Specifies the UV's for the face that stretches along the z and y axes, and faces the -x axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the upper-left corner, when looking at the face with y being up.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "up" : opt // Specifies the UV's for the face that stretches along the x and z axes, and faces the y axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the back-upper-left corner, assuming you're facing 'north' relative to the cube.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
object "down" : opt // Specifies the UV's for the face that stretches along the x and z axes, and faces the -y axis
{
array "uv"[2]
{
float "" // Specifies the uv origin for the face. For this face, it is the back-down-right corner, assuming you're facing 'north' relative to the cube.
}
array "uv_size"[2] : opt
{
float "" // The face maps this many texels from the uv origin. If not specified, the box dimensions are used instead.
}
string "material_instance" : opt
}
}
}
}
molang "binding" : opt // useful for items. A molang expression specifying the bone name of the parent skeletal hierarchy that this bone should use as the root transform. Without this field it will look for a bone in the parent entity with the same name as this bone. If both are missing, it will assume a local skeletal hierarchy (via the "parent" field). If that is also missing, it will attach to the owning entity's root transform.
object "locators" : opt
{
array "" : opt // This is a list of locators associated with this bone. A locator is a point in model space that tracks a particular bone as the bone animates (by maintaining it's relationship to the bone through the animation).
{
float "" : opt // Position of the locator in model space.
}
object "" : opt // This is a list of locators associated with this bone. A locator is a point in model space that tracks a particular bone as the bone animates (by maintaining it's relationship to the bone through the animation).
{
array "offset"
{
float "" : opt // Position of the locator in model space.
}
array "rotation"
{
float "" : opt // Rotation of the locator in model space.
}
bool "ignore_inherited_scale" : opt // Discard scale inherited from parent bone.
}
}
object "poly_mesh" : opt // ***EXPERIMENTAL*** A triangle or quad mesh object. Can be used in conjunction with cubes and texture geometry.
{
bool "normalized_uvs" : opt // If true, UVs are assumed to be [0-1]. If false, UVs are assumed to be [0-texture_width] and [0-texture_height] respectively.
array "positions" : opt
{
array ""[3] : opt
{
float "" // Vertex positions for the mesh. Can be either indexed via the "polys" section, or be a quad-list if mapped 1-to-1 to the normals and UVs sections.
}
}
array "normals" : opt
{
array ""[3] : opt
{
float "" // Vertex normals. Can be either indexed via the "polys" section, or be a quad-list if mapped 1-to-1 to the positions and UVs sections.
}
}
array "uvs" : opt
{
array ""[2] : opt
{
float "" // Vertex UVs. Can be either indexed via the "polys" section, or be a quad-list if mapped 1-to-1 to the positions and normals sections.
}
}
array "polys"
{
array ""[3,4] : opt
{
array ""[3]
{
float "" // Poly element indices, as an array of polygons, each an array of either three or four vertices, each an array of indices into positions, normals, and UVs (in that order).
}
}
}
string "polys"<"tri_list", "quad_list"> // If not specifying vertex indices, arrays of data must be a list of tris or quads, set by making this property either "tri_list" or "quad_list"
}
array "texture_meshes" : opt // ***EXPERIMENTAL*** Adds a mesh to the bone's geometry by converting texels in a texture into boxes
{
object ""
{
string "texture" // The friendly-named texture to use.
array "position"[3] : opt
{
float "" // The position of the pivot point after rotation (in *entity space* not texture or bone space) of the texture geometry
}
array "local_pivot"[3] : opt
{
float "" // The pivot point on the texture (in *texture space* not entity or bone space) of the texture geometry
}
array "rotation"[3] : opt
{
float "" // The rotation (in degrees) of the texture geometry relative to the offset
}
array "scale"[3] : opt
{
float "" // The scale (in degrees) of the texture geometry relative to the offset
}
}
}
}
}
}
}
}

----------
```
Back to top

diff --git a/documentation/Texture Sets.html b/documentation/Texture Sets.html index 90adf462e..7c0d59ab1 100644 --- a/documentation/Texture Sets.html +++ b/documentation/Texture Sets.html @@ -1,4 +1,4 @@ -

TEXTURE SETS DOCUMENTATION
Version: 1.20.80.5

+

TEXTURE SETS DOCUMENTATION
Version: 1.21.0.3

Index

Overview
diff --git a/documentation/Volumes.html b/documentation/Volumes.html index c8dda0bb8..5505e6278 100644 --- a/documentation/Volumes.html +++ b/documentation/Volumes.html @@ -1,4 +1,4 @@ -

VOLUMES DOCUMENTATION
Version: 1.20.80.5

+

VOLUMES DOCUMENTATION
Version: 1.21.0.3

Index

Texture Sets
@@ -103,7 +103,7 @@

Volume Definition Properties

- +
Volumes
format_version String Specifies the version of the game this entity was made in. Minimum supported version is 1.17.0. Current supported version is 1.20.80.
Specifies the version of the game this entity was made in. Minimum supported version is 1.17.0. Current supported version is 1.21.0.

Example

diff --git a/documentation/index.html b/documentation/index.html index 5eed8a4fb..9c01e8d9b 100644 --- a/documentation/index.html +++ b/documentation/index.html @@ -1,4 +1,4 @@ -DOCUMENTATION

DOCUMENTATION
Version: 1.20.80.5 +DOCUMENTATION

DOCUMENTATION
Version: 1.21.0.3
  1. Addons
  2. Animations diff --git a/metadata/command_modules/mojang-commands.json b/metadata/command_modules/mojang-commands.json index 1b8797094..9ea1b92aa 100644 --- a/metadata/command_modules/mojang-commands.json +++ b/metadata/command_modules/mojang-commands.json @@ -45,15 +45,6 @@ }, { "value" : "minecraft:third_person_front" - }, - { - "value" : "example:example_free" - }, - { - "value" : "example:example_player_effects" - }, - { - "value" : "example:example_player_listener" } ] }, @@ -862,6 +853,12 @@ { "value" : "oxidized_cut_copper_stairs" }, + { + "value" : "minecraft:sandstone_slab" + }, + { + "value" : "sandstone_slab" + }, { "value" : "minecraft:raw_gold_block" }, @@ -1265,16 +1262,16 @@ "value" : "brown_carpet" }, { - "value" : "minecraft:tallgrass" + "value" : "minecraft:stone_brick_stairs" }, { - "value" : "tallgrass" + "value" : "stone_brick_stairs" }, { - "value" : "minecraft:stone_brick_stairs" + "value" : "minecraft:dead_bubble_coral_block" }, { - "value" : "stone_brick_stairs" + "value" : "dead_bubble_coral_block" }, { "value" : "minecraft:gray_candle" @@ -1300,6 +1297,12 @@ { "value" : "red_terracotta" }, + { + "value" : "minecraft:dead_fire_coral_block" + }, + { + "value" : "dead_fire_coral_block" + }, { "value" : "minecraft:oxidized_copper_bulb" }, @@ -1762,6 +1765,12 @@ { "value" : "loom" }, + { + "value" : "minecraft:dead_tube_coral_block" + }, + { + "value" : "dead_tube_coral_block" + }, { "value" : "minecraft:end_stone" }, @@ -1906,6 +1915,12 @@ { "value" : "dark_oak_fence_gate" }, + { + "value" : "minecraft:cobblestone_slab" + }, + { + "value" : "cobblestone_slab" + }, { "value" : "minecraft:crimson_nylium" }, @@ -2002,12 +2017,6 @@ { "value" : "spruce_log" }, - { - "value" : "minecraft:stone_block_slab" - }, - { - "value" : "stone_block_slab" - }, { "value" : "minecraft:lapis_block" }, @@ -2032,6 +2041,12 @@ { "value" : "green_stained_glass" }, + { + "value" : "minecraft:bubble_coral_block" + }, + { + "value" : "bubble_coral_block" + }, { "value" : "minecraft:nether_brick_fence" }, @@ -2248,6 +2263,12 @@ { "value" : "acacia_planks" }, + { + "value" : "minecraft:fire_coral_block" + }, + { + "value" : "fire_coral_block" + }, { "value" : "minecraft:magenta_concrete_powder" }, @@ -2416,6 +2437,12 @@ { "value" : "mangrove_fence_gate" }, + { + "value" : "minecraft:sunflower" + }, + { + "value" : "sunflower" + }, { "value" : "minecraft:pink_petals" }, @@ -2704,12 +2731,6 @@ { "value" : "cut_copper_slab" }, - { - "value" : "minecraft:coral_block" - }, - { - "value" : "coral_block" - }, { "value" : "minecraft:red_stained_glass" }, @@ -2746,6 +2767,12 @@ { "value" : "oxidized_cut_copper_slab" }, + { + "value" : "minecraft:horn_coral_block" + }, + { + "value" : "horn_coral_block" + }, { "value" : "minecraft:beetroot" }, @@ -2878,12 +2905,6 @@ { "value" : "kelp" }, - { - "value" : "minecraft:double_plant" - }, - { - "value" : "double_plant" - }, { "value" : "minecraft:waxed_exposed_copper_door" }, @@ -2908,6 +2929,12 @@ { "value" : "light_blue_glazed_terracotta" }, + { + "value" : "minecraft:rose_bush" + }, + { + "value" : "rose_bush" + }, { "value" : "minecraft:flowering_azalea" }, @@ -2974,6 +3001,12 @@ { "value" : "acacia_trapdoor" }, + { + "value" : "minecraft:brain_coral_block" + }, + { + "value" : "brain_coral_block" + }, { "value" : "minecraft:bamboo_planks" }, @@ -3373,6 +3406,18 @@ { "value" : "dark_oak_leaves" }, + { + "value" : "minecraft:nether_brick_slab" + }, + { + "value" : "nether_brick_slab" + }, + { + "value" : "minecraft:fern" + }, + { + "value" : "fern" + }, { "value" : "minecraft:torchflower" }, @@ -3547,6 +3592,12 @@ { "value" : "dead_fire_coral" }, + { + "value" : "minecraft:stone_brick_slab" + }, + { + "value" : "stone_brick_slab" + }, { "value" : "minecraft:crimson_stairs" }, @@ -3655,6 +3706,12 @@ { "value" : "bamboo_button" }, + { + "value" : "minecraft:tall_grass" + }, + { + "value" : "tall_grass" + }, { "value" : "minecraft:nether_sprouts" }, @@ -3667,6 +3724,12 @@ { "value" : "cyan_stained_glass_pane" }, + { + "value" : "minecraft:dead_horn_coral_block" + }, + { + "value" : "dead_horn_coral_block" + }, { "value" : "minecraft:verdant_froglight" }, @@ -3697,6 +3760,12 @@ { "value" : "green_shulker_box" }, + { + "value" : "minecraft:large_fern" + }, + { + "value" : "large_fern" + }, { "value" : "minecraft:stripped_crimson_hyphae" }, @@ -3745,6 +3814,12 @@ { "value" : "pink_glazed_terracotta" }, + { + "value" : "minecraft:short_grass" + }, + { + "value" : "short_grass" + }, { "value" : "minecraft:waxed_weathered_cut_copper_slab" }, @@ -3823,6 +3898,12 @@ { "value" : "deepslate_redstone_ore" }, + { + "value" : "minecraft:dead_brain_coral_block" + }, + { + "value" : "dead_brain_coral_block" + }, { "value" : "minecraft:mangrove_fence" }, @@ -3865,6 +3946,12 @@ { "value" : "cobbled_deepslate" }, + { + "value" : "minecraft:quartz_slab" + }, + { + "value" : "quartz_slab" + }, { "value" : "minecraft:bookshelf" }, @@ -4429,6 +4516,12 @@ { "value" : "cobbled_deepslate_slab" }, + { + "value" : "minecraft:lilac" + }, + { + "value" : "lilac" + }, { "value" : "minecraft:spore_blossom" }, @@ -4453,6 +4546,12 @@ { "value" : "gray_concrete_powder" }, + { + "value" : "minecraft:petrified_oak_slab" + }, + { + "value" : "petrified_oak_slab" + }, { "value" : "minecraft:gray_concrete" }, @@ -4543,6 +4642,12 @@ { "value" : "cauldron" }, + { + "value" : "minecraft:tube_coral_block" + }, + { + "value" : "tube_coral_block" + }, { "value" : "minecraft:birch_sapling" }, @@ -4561,6 +4666,12 @@ { "value" : "orange_terracotta" }, + { + "value" : "minecraft:brick_slab" + }, + { + "value" : "brick_slab" + }, { "value" : "minecraft:waxed_oxidized_copper" }, @@ -4579,6 +4690,12 @@ { "value" : "stripped_oak_log" }, + { + "value" : "minecraft:smooth_stone_slab" + }, + { + "value" : "smooth_stone_slab" + }, { "value" : "minecraft:polished_andesite" }, @@ -4771,6 +4888,12 @@ { "value" : "birch_button" }, + { + "value" : "minecraft:peony" + }, + { + "value" : "peony" + }, { "value" : "minecraft:command_block" }, @@ -5230,6 +5353,30 @@ { "value" : "minecraft:red_flower" }, + { + "value" : "tallgrass" + }, + { + "value" : "minecraft:tallgrass" + }, + { + "value" : "coral_block" + }, + { + "value" : "minecraft:coral_block" + }, + { + "value" : "double_plant" + }, + { + "value" : "minecraft:double_plant" + }, + { + "value" : "stone_block_slab" + }, + { + "value" : "minecraft:stone_block_slab" + }, { "value" : "minecraft:chicken" }, @@ -6466,6 +6613,12 @@ { "value" : "mace" }, + { + "value" : "minecraft:ominous_bottle" + }, + { + "value" : "ominous_bottle" + }, { "value" : "minecraft:shield" }, @@ -6826,6 +6979,24 @@ { "value" : "music_disc_relic" }, + { + "value" : "minecraft:music_disc_creator" + }, + { + "value" : "music_disc_creator" + }, + { + "value" : "minecraft:music_disc_creator_music_box" + }, + { + "value" : "music_disc_creator_music_box" + }, + { + "value" : "minecraft:music_disc_precipice" + }, + { + "value" : "music_disc_precipice" + }, { "value" : "minecraft:disc_fragment_5" }, @@ -7774,6 +7945,12 @@ { "value" : "ender_dragon_spawn_egg" }, + { + "value" : "minecraft:ominous_trial_key" + }, + { + "value" : "ominous_trial_key" + }, { "value" : "speckled_melon" }, @@ -7867,6 +8044,9 @@ { "value" : "record_cat" }, + { + "value" : "record_creator" + }, { "value" : "record_13" }, @@ -7879,6 +8059,12 @@ { "value" : "muttoncooked" }, + { + "value" : "record_creator_music_box" + }, + { + "value" : "record_precipice" + }, { "value" : "appleenchanted" }, @@ -7972,12 +8158,6 @@ { "value" : "spawn_egg" }, - { - "value" : "minecraft:spawn_egg" - }, - { - "value" : "minecraft:dye" - }, { "value" : "minecraft:suspicious_stew" }, @@ -7996,8 +8176,14 @@ { "value" : "jigsaw" }, + { + "value" : "minecraft:dye" + }, { "value" : "minecraft:banner_pattern" + }, + { + "value" : "minecraft:spawn_egg" } ] }, @@ -8649,6 +8835,12 @@ { "value" : "deepslate_tile_double_slab" }, + { + "value" : "minecraft:sandstone_slab" + }, + { + "value" : "sandstone_slab" + }, { "value" : "minecraft:raw_gold_block" }, @@ -9118,16 +9310,16 @@ "value" : "brown_carpet" }, { - "value" : "minecraft:tallgrass" + "value" : "minecraft:stone_brick_stairs" }, { - "value" : "tallgrass" + "value" : "stone_brick_stairs" }, { - "value" : "minecraft:stone_brick_stairs" + "value" : "minecraft:dead_bubble_coral_block" }, { - "value" : "stone_brick_stairs" + "value" : "dead_bubble_coral_block" }, { "value" : "minecraft:gray_candle" @@ -9153,6 +9345,12 @@ { "value" : "red_terracotta" }, + { + "value" : "minecraft:dead_fire_coral_block" + }, + { + "value" : "dead_fire_coral_block" + }, { "value" : "minecraft:oxidized_copper_bulb" }, @@ -9669,6 +9867,12 @@ { "value" : "loom" }, + { + "value" : "minecraft:dead_tube_coral_block" + }, + { + "value" : "dead_tube_coral_block" + }, { "value" : "minecraft:end_stone" }, @@ -9849,6 +10053,12 @@ { "value" : "bamboo_mosaic_double_slab" }, + { + "value" : "minecraft:cobblestone_slab" + }, + { + "value" : "cobblestone_slab" + }, { "value" : "minecraft:crimson_nylium" }, @@ -9951,12 +10161,6 @@ { "value" : "spruce_log" }, - { - "value" : "minecraft:stone_block_slab" - }, - { - "value" : "stone_block_slab" - }, { "value" : "minecraft:lapis_block" }, @@ -9987,6 +10191,12 @@ { "value" : "green_stained_glass" }, + { + "value" : "minecraft:bubble_coral_block" + }, + { + "value" : "bubble_coral_block" + }, { "value" : "minecraft:nether_brick_fence" }, @@ -10221,6 +10431,12 @@ { "value" : "acacia_planks" }, + { + "value" : "minecraft:fire_coral_block" + }, + { + "value" : "fire_coral_block" + }, { "value" : "minecraft:magenta_concrete_powder" }, @@ -10419,6 +10635,12 @@ { "value" : "mangrove_fence_gate" }, + { + "value" : "minecraft:sunflower" + }, + { + "value" : "sunflower" + }, { "value" : "minecraft:pink_petals" }, @@ -10743,12 +10965,6 @@ { "value" : "cut_copper_slab" }, - { - "value" : "minecraft:coral_block" - }, - { - "value" : "coral_block" - }, { "value" : "minecraft:red_stained_glass" }, @@ -10791,6 +11007,12 @@ { "value" : "oxidized_cut_copper_slab" }, + { + "value" : "minecraft:horn_coral_block" + }, + { + "value" : "horn_coral_block" + }, { "value" : "minecraft:beetroot" }, @@ -10941,12 +11163,6 @@ { "value" : "kelp" }, - { - "value" : "minecraft:double_plant" - }, - { - "value" : "double_plant" - }, { "value" : "minecraft:waxed_exposed_copper_door" }, @@ -10971,6 +11187,12 @@ { "value" : "light_blue_glazed_terracotta" }, + { + "value" : "minecraft:rose_bush" + }, + { + "value" : "rose_bush" + }, { "value" : "minecraft:flowering_azalea" }, @@ -11049,6 +11271,12 @@ { "value" : "acacia_trapdoor" }, + { + "value" : "minecraft:brain_coral_block" + }, + { + "value" : "brain_coral_block" + }, { "value" : "minecraft:standing_sign" }, @@ -11535,12 +11763,24 @@ { "value" : "dark_oak_leaves" }, + { + "value" : "minecraft:nether_brick_slab" + }, + { + "value" : "nether_brick_slab" + }, { "value" : "minecraft:fire" }, { "value" : "fire" }, + { + "value" : "minecraft:fern" + }, + { + "value" : "fern" + }, { "value" : "minecraft:torchflower" }, @@ -11727,6 +11967,12 @@ { "value" : "dead_fire_coral" }, + { + "value" : "minecraft:stone_brick_slab" + }, + { + "value" : "stone_brick_slab" + }, { "value" : "minecraft:crimson_stairs" }, @@ -11871,6 +12117,12 @@ { "value" : "bamboo_button" }, + { + "value" : "minecraft:tall_grass" + }, + { + "value" : "tall_grass" + }, { "value" : "minecraft:nether_sprouts" }, @@ -11883,6 +12135,12 @@ { "value" : "cyan_stained_glass_pane" }, + { + "value" : "minecraft:dead_horn_coral_block" + }, + { + "value" : "dead_horn_coral_block" + }, { "value" : "minecraft:verdant_froglight" }, @@ -11913,6 +12171,12 @@ { "value" : "green_shulker_box" }, + { + "value" : "minecraft:large_fern" + }, + { + "value" : "large_fern" + }, { "value" : "minecraft:stripped_crimson_hyphae" }, @@ -11967,6 +12231,12 @@ { "value" : "pink_glazed_terracotta" }, + { + "value" : "minecraft:short_grass" + }, + { + "value" : "short_grass" + }, { "value" : "minecraft:waxed_weathered_cut_copper_slab" }, @@ -12051,6 +12321,12 @@ { "value" : "double_stone_block_slab" }, + { + "value" : "minecraft:dead_brain_coral_block" + }, + { + "value" : "dead_brain_coral_block" + }, { "value" : "minecraft:mangrove_fence" }, @@ -12093,6 +12369,12 @@ { "value" : "cobbled_deepslate" }, + { + "value" : "minecraft:quartz_slab" + }, + { + "value" : "quartz_slab" + }, { "value" : "minecraft:bookshelf" }, @@ -12723,6 +13005,12 @@ { "value" : "cobbled_deepslate_slab" }, + { + "value" : "minecraft:lilac" + }, + { + "value" : "lilac" + }, { "value" : "minecraft:spore_blossom" }, @@ -12765,6 +13053,12 @@ { "value" : "gray_concrete_powder" }, + { + "value" : "minecraft:petrified_oak_slab" + }, + { + "value" : "petrified_oak_slab" + }, { "value" : "minecraft:gray_concrete" }, @@ -12873,6 +13167,12 @@ { "value" : "cave_vines_head_with_berries" }, + { + "value" : "minecraft:tube_coral_block" + }, + { + "value" : "tube_coral_block" + }, { "value" : "minecraft:birch_sapling" }, @@ -12891,6 +13191,12 @@ { "value" : "orange_terracotta" }, + { + "value" : "minecraft:brick_slab" + }, + { + "value" : "brick_slab" + }, { "value" : "minecraft:waxed_oxidized_copper" }, @@ -12909,6 +13215,12 @@ { "value" : "stripped_oak_log" }, + { + "value" : "minecraft:smooth_stone_slab" + }, + { + "value" : "smooth_stone_slab" + }, { "value" : "minecraft:polished_andesite" }, @@ -13173,6 +13485,12 @@ { "value" : "birch_button" }, + { + "value" : "minecraft:peony" + }, + { + "value" : "peony" + }, { "value" : "minecraft:command_block" }, @@ -13719,6 +14037,30 @@ { "value" : "minecraft:red_flower" }, + { + "value" : "tallgrass" + }, + { + "value" : "minecraft:tallgrass" + }, + { + "value" : "coral_block" + }, + { + "value" : "minecraft:coral_block" + }, + { + "value" : "double_plant" + }, + { + "value" : "minecraft:double_plant" + }, + { + "value" : "stone_block_slab" + }, + { + "value" : "minecraft:stone_block_slab" + }, { "value" : "lava_cauldron" }, @@ -13961,6 +14303,24 @@ }, { "value" : "darkness" + }, + { + "value" : "trial_omen" + }, + { + "value" : "wind_charged" + }, + { + "value" : "weaving" + }, + { + "value" : "oozing" + }, + { + "value" : "infested" + }, + { + "value" : "raid_omen" } ] }, @@ -14080,6 +14440,15 @@ }, { "value" : "swift_sneak" + }, + { + "value" : "wind_burst" + }, + { + "value" : "density" + }, + { + "value" : "breach" } ] }, @@ -14449,7 +14818,7 @@ "value" : "minecraft:cat_gifted_owner" }, { - "value" : "minecraft:clear_add_bad_omen" + "value" : "minecraft:clear_add_raid_omen" }, { "value" : "minecraft:command_block_activate" @@ -14548,7 +14917,7 @@ "value" : "minecraft:from_wandering_trader" }, { - "value" : "minecraft:gain_bad_omen" + "value" : "minecraft:gain_raid_omen" }, { "value" : "minecraft:go_lay_egg" @@ -15471,6 +15840,9 @@ { "value" : "showcoordinates" }, + { + "value" : "showdaysplayed" + }, { "value" : "naturalregeneration" }, @@ -15509,6 +15881,9 @@ }, { "value" : "projectilescanbreakblocks" + }, + { + "value" : "tntexplosiondropdecay" } ] }, @@ -16457,6 +16832,36 @@ { "value" : "minecraft:apple" }, + { + "value" : "minecraft:raw_gold_block" + }, + { + "value" : "minecraft:vex_armor_trim_smithing_template" + }, + { + "value" : "minecraft:black_carpet" + }, + { + "value" : "minecraft:carrot" + }, + { + "value" : "minecraft:strider_spawn_egg" + }, + { + "value" : "minecraft:command_block" + }, + { + "value" : "minecraft:potion" + }, + { + "value" : "minecraft:chicken" + }, + { + "value" : "minecraft:ominous_trial_key" + }, + { + "value" : "minecraft:dead_fire_coral_fan" + }, { "value" : "minecraft:bookshelf" }, @@ -16557,10 +16962,10 @@ "value" : "minecraft:music_disc_chirp" }, { - "value" : "minecraft:cooked_rabbit" + "value" : "minecraft:prismarine_bricks_stairs" }, { - "value" : "minecraft:prismarine_bricks_stairs" + "value" : "minecraft:cooked_rabbit" }, { "value" : "minecraft:glow_squid_spawn_egg" @@ -16616,12 +17021,6 @@ { "value" : "minecraft:tropical_fish" }, - { - "value" : "minecraft:stone_axe" - }, - { - "value" : "minecraft:stained_glass_pane" - }, { "value" : "minecraft:bucket" }, @@ -16679,6 +17078,9 @@ { "value" : "minecraft:wooden_shovel" }, + { + "value" : "minecraft:music_disc_creator_music_box" + }, { "value" : "minecraft:stonecutter_block" }, @@ -16691,30 +17093,6 @@ { "value" : "minecraft:comparator" }, - { - "value" : "minecraft:raw_gold_block" - }, - { - "value" : "minecraft:vex_armor_trim_smithing_template" - }, - { - "value" : "minecraft:black_carpet" - }, - { - "value" : "minecraft:carrot" - }, - { - "value" : "minecraft:strider_spawn_egg" - }, - { - "value" : "minecraft:command_block" - }, - { - "value" : "minecraft:potion" - }, - { - "value" : "minecraft:chicken" - }, { "value" : "minecraft:rotten_flesh" }, @@ -16770,13 +17148,13 @@ "value" : "minecraft:golden_carrot" }, { - "value" : "minecraft:poisonous_potato" + "value" : "minecraft:spruce_stairs" }, { - "value" : "minecraft:element_13" + "value" : "minecraft:poisonous_potato" }, { - "value" : "minecraft:spruce_stairs" + "value" : "minecraft:element_13" }, { "value" : "minecraft:polished_granite" @@ -16826,9 +17204,6 @@ { "value" : "minecraft:melon_seeds" }, - { - "value" : "minecraft:spawn_egg" - }, { "value" : "minecraft:raw_iron" }, @@ -16847,12 +17222,6 @@ { "value" : "minecraft:beetroot_seeds" }, - { - "value" : "minecraft:lime_carpet" - }, - { - "value" : "minecraft:powder_snow" - }, { "value" : "minecraft:iron_bars" }, @@ -16865,6 +17234,12 @@ { "value" : "minecraft:element_80" }, + { + "value" : "minecraft:powder_snow" + }, + { + "value" : "minecraft:lime_carpet" + }, { "value" : "minecraft:iron_shovel" }, @@ -16889,6 +17264,9 @@ { "value" : "minecraft:light_gray_stained_glass_pane" }, + { + "value" : "minecraft:smooth_stone_slab" + }, { "value" : "minecraft:melon_block" }, @@ -16952,6 +17330,12 @@ { "value" : "minecraft:stone_pickaxe" }, + { + "value" : "minecraft:stone_axe" + }, + { + "value" : "minecraft:stained_glass_pane" + }, { "value" : "minecraft:oxidized_copper_trapdoor" }, @@ -17024,6 +17408,9 @@ { "value" : "minecraft:spruce_fence" }, + { + "value" : "minecraft:petrified_oak_slab" + }, { "value" : "minecraft:golden_sword" }, @@ -17136,10 +17523,10 @@ "value" : "minecraft:leather_boots" }, { - "value" : "minecraft:chainmail_chestplate" + "value" : "minecraft:end_gateway" }, { - "value" : "minecraft:end_gateway" + "value" : "minecraft:chainmail_chestplate" }, { "value" : "minecraft:element_101" @@ -17204,6 +17591,9 @@ { "value" : "minecraft:diamond_chestplate" }, + { + "value" : "minecraft:rose_bush" + }, { "value" : "minecraft:sand" }, @@ -17300,6 +17690,9 @@ { "value" : "minecraft:water_bucket" }, + { + "value" : "minecraft:tube_coral_block" + }, { "value" : "minecraft:element_74" }, @@ -17336,6 +17729,9 @@ { "value" : "minecraft:pufferfish_bucket" }, + { + "value" : "minecraft:dead_brain_coral_block" + }, { "value" : "minecraft:music_disc_11" }, @@ -17615,9 +18011,6 @@ { "value" : "minecraft:purple_dye" }, - { - "value" : "minecraft:dye" - }, { "value" : "minecraft:music_disc_13" }, @@ -17868,10 +18261,10 @@ "value" : "minecraft:rib_armor_trim_smithing_template" }, { - "value" : "minecraft:skeleton_spawn_egg" + "value" : "minecraft:fence_gate" }, { - "value" : "minecraft:fence_gate" + "value" : "minecraft:skeleton_spawn_egg" }, { "value" : "minecraft:bleach" @@ -18509,6 +18902,9 @@ { "value" : "minecraft:purple_candle_cake" }, + { + "value" : "minecraft:short_grass" + }, { "value" : "minecraft:orange_shulker_box" }, @@ -18533,15 +18929,36 @@ { "value" : "minecraft:honeycomb" }, + { + "value" : "minecraft:red_nether_brick" + }, { "value" : "minecraft:honey_bottle" }, { - "value" : "minecraft:red_nether_brick" + "value" : "minecraft:stripped_warped_hyphae" + }, + { + "value" : "minecraft:mangrove_sign" + }, + { + "value" : "minecraft:blue_candle_cake" + }, + { + "value" : "minecraft:magma" + }, + { + "value" : "minecraft:element_22" + }, + { + "value" : "minecraft:ominous_bottle" }, { "value" : "minecraft:compound" }, + { + "value" : "minecraft:stone_brick_slab" + }, { "value" : "minecraft:ice_bomb" }, @@ -18584,9 +19001,6 @@ { "value" : "minecraft:eye_armor_trim_smithing_template" }, - { - "value" : "minecraft:item.warped_door" - }, { "value" : "minecraft:netherite_axe" }, @@ -18608,6 +19022,9 @@ { "value" : "minecraft:netherite_scrap" }, + { + "value" : "minecraft:quartz_slab" + }, { "value" : "minecraft:crimson_sign" }, @@ -18689,12 +19106,6 @@ { "value" : "minecraft:allay_spawn_egg" }, - { - "value" : "minecraft:stripped_warped_hyphae" - }, - { - "value" : "minecraft:mangrove_sign" - }, { "value" : "minecraft:mangrove_slab" }, @@ -18863,9 +19274,6 @@ { "value" : "minecraft:blade_pottery_sherd" }, - { - "value" : "minecraft:gray_candle_cake" - }, { "value" : "minecraft:danger_pottery_sherd" }, @@ -18887,6 +19295,9 @@ { "value" : "minecraft:sheaf_pottery_sherd" }, + { + "value" : "minecraft:fire_coral_block" + }, { "value" : "minecraft:ladder" }, @@ -18903,13 +19314,13 @@ "value" : "minecraft:ward_armor_trim_smithing_template" }, { - "value" : "minecraft:tide_armor_trim_smithing_template" + "value" : "minecraft:red_stained_glass_pane" }, { "value" : "minecraft:bamboo_block" }, { - "value" : "minecraft:red_stained_glass_pane" + "value" : "minecraft:tide_armor_trim_smithing_template" }, { "value" : "minecraft:wayfinder_armor_trim_smithing_template" @@ -18999,13 +19410,13 @@ "value" : "minecraft:element_9" }, { - "value" : "minecraft:polished_tuff_slab" + "value" : "minecraft:waxed_oxidized_cut_copper" }, { - "value" : "minecraft:light_blue_wool" + "value" : "minecraft:polished_tuff_slab" }, { - "value" : "minecraft:waxed_oxidized_cut_copper" + "value" : "minecraft:light_blue_wool" }, { "value" : "minecraft:oxidized_chiseled_copper" @@ -19047,10 +19458,10 @@ "value" : "minecraft:acacia_log" }, { - "value" : "minecraft:white_wool" + "value" : "minecraft:nether_brick_stairs" }, { - "value" : "minecraft:nether_brick_stairs" + "value" : "minecraft:white_wool" }, { "value" : "minecraft:magenta_wool" @@ -19176,28 +19587,49 @@ "value" : "minecraft:stonebrick" }, { - "value" : "minecraft:lit_blast_furnace" + "value" : "minecraft:tall_grass" }, { - "value" : "minecraft:bamboo_stairs" + "value" : "minecraft:brain_coral_block" }, { - "value" : "minecraft:coral_block" + "value" : "minecraft:bubble_coral_block" }, { - "value" : "minecraft:stone_block_slab" + "value" : "minecraft:horn_coral_block" }, { - "value" : "minecraft:leaves" + "value" : "minecraft:dead_tube_coral_block" }, { - "value" : "minecraft:stone_block_slab2" + "value" : "minecraft:green_candle" }, { - "value" : "minecraft:leaves2" + "value" : "minecraft:dead_bubble_coral_block" }, { - "value" : "minecraft:birch_standing_sign" + "value" : "minecraft:dead_fire_coral_block" + }, + { + "value" : "minecraft:suspicious_sand" + }, + { + "value" : "minecraft:dead_horn_coral_block" + }, + { + "value" : "minecraft:lit_blast_furnace" + }, + { + "value" : "minecraft:bamboo_stairs" + }, + { + "value" : "minecraft:coral_block" + }, + { + "value" : "minecraft:stone_block_slab2" + }, + { + "value" : "minecraft:leaves2" }, { "value" : "minecraft:chiseled_polished_blackstone" @@ -19248,10 +19680,10 @@ "value" : "minecraft:dead_bubble_coral_fan" }, { - "value" : "minecraft:dead_fire_coral_fan" + "value" : "minecraft:dead_horn_coral_fan" }, { - "value" : "minecraft:dead_horn_coral_fan" + "value" : "minecraft:brick_slab" }, { "value" : "minecraft:lily_of_the_valley" @@ -19284,13 +19716,13 @@ "value" : "minecraft:jungle_leaves" }, { - "value" : "minecraft:dark_oak_leaves" + "value" : "minecraft:leaves" }, { - "value" : "minecraft:target" + "value" : "minecraft:stone_block_slab" }, { - "value" : "minecraft:blackstone_double_slab" + "value" : "minecraft:dark_oak_leaves" }, { "value" : "minecraft:azalea_leaves" @@ -19325,6 +19757,15 @@ { "value" : "minecraft:dark_oak_slab" }, + { + "value" : "minecraft:sandstone_slab" + }, + { + "value" : "minecraft:cobblestone_slab" + }, + { + "value" : "minecraft:nether_brick_slab" + }, { "value" : "minecraft:nether_wart_block" }, @@ -19349,9 +19790,27 @@ { "value" : "minecraft:lime_concrete" }, + { + "value" : "minecraft:large_fern" + }, { "value" : "minecraft:red_flower" }, + { + "value" : "minecraft:hard_pink_stained_glass_pane" + }, + { + "value" : "minecraft:sunflower" + }, + { + "value" : "minecraft:exposed_cut_copper" + }, + { + "value" : "minecraft:lilac" + }, + { + "value" : "minecraft:peony" + }, { "value" : "minecraft:daylight_detector" }, @@ -19379,15 +19838,6 @@ { "value" : "minecraft:dark_oak_planks" }, - { - "value" : "minecraft:blue_candle_cake" - }, - { - "value" : "minecraft:magma" - }, - { - "value" : "minecraft:element_22" - }, { "value" : "minecraft:quartz_block" }, @@ -19427,6 +19877,15 @@ { "value" : "minecraft:purple_stained_glass_pane" }, + { + "value" : "minecraft:element_6" + }, + { + "value" : "minecraft:waxed_cut_copper_stairs" + }, + { + "value" : "minecraft:fern" + }, { "value" : "minecraft:soul_soil" }, @@ -19551,19 +20010,19 @@ "value" : "minecraft:yellow_stained_glass" }, { - "value" : "minecraft:lime_stained_glass" + "value" : "minecraft:item.hopper" }, { - "value" : "minecraft:mud_brick_double_slab" + "value" : "minecraft:wood" }, { - "value" : "minecraft:item.hopper" + "value" : "minecraft:hard_magenta_stained_glass" }, { - "value" : "minecraft:wood" + "value" : "minecraft:mud_brick_double_slab" }, { - "value" : "minecraft:hard_magenta_stained_glass" + "value" : "minecraft:lime_stained_glass" }, { "value" : "minecraft:crimson_double_slab" @@ -19605,10 +20064,10 @@ "value" : "minecraft:light_block" }, { - "value" : "minecraft:light_blue_stained_glass_pane" + "value" : "minecraft:end_crystal" }, { - "value" : "minecraft:end_crystal" + "value" : "minecraft:light_blue_stained_glass_pane" }, { "value" : "minecraft:hard_purple_stained_glass_pane" @@ -19700,15 +20159,18 @@ { "value" : "minecraft:stripped_birch_wood" }, - { - "value" : "minecraft:hanging_roots" - }, { "value" : "minecraft:dark_oak_wood" }, { "value" : "minecraft:stripped_dark_oak_wood" }, + { + "value" : "minecraft:music_disc_creator" + }, + { + "value" : "minecraft:music_disc_precipice" + }, { "value" : "minecraft:hard_white_stained_glass" }, @@ -19751,9 +20213,6 @@ { "value" : "minecraft:hard_yellow_stained_glass_pane" }, - { - "value" : "minecraft:hard_pink_stained_glass_pane" - }, { "value" : "minecraft:hard_blue_stained_glass_pane" }, @@ -19784,9 +20243,6 @@ { "value" : "minecraft:purple_candle" }, - { - "value" : "minecraft:green_candle" - }, { "value" : "minecraft:polished_deepslate_wall" }, @@ -19796,9 +20252,6 @@ { "value" : "minecraft:element_5" }, - { - "value" : "minecraft:element_6" - }, { "value" : "minecraft:element_8" }, @@ -19904,9 +20357,6 @@ { "value" : "minecraft:element_72" }, - { - "value" : "minecraft:dark_oak_button" - }, { "value" : "minecraft:element_77" }, @@ -20000,14 +20450,20 @@ { "value" : "minecraft:crying_obsidian" }, + { + "value" : "minecraft:dye" + }, { "value" : "minecraft:banner_pattern" }, + { + "value" : "minecraft:spawn_egg" + }, { "value" : "minecraft:glow_berries" }, { - "value" : "minecraft:item.glow_frame" + "value" : "minecraft:birch_standing_sign" }, { "value" : "minecraft:polished_basalt" @@ -20015,6 +20471,9 @@ { "value" : "minecraft:nether_gold_ore" }, + { + "value" : "minecraft:item.warped_door" + }, { "value" : "minecraft:mangrove_trapdoor" }, @@ -20024,12 +20483,24 @@ { "value" : "minecraft:waxed_oxidized_chiseled_copper" }, + { + "value" : "minecraft:dark_oak_button" + }, { "value" : "minecraft:deepslate_copper_ore" }, + { + "value" : "minecraft:target" + }, + { + "value" : "minecraft:blackstone_double_slab" + }, { "value" : "minecraft:jungle_button" }, + { + "value" : "minecraft:gray_candle_cake" + }, { "value" : "minecraft:cherry_pressure_plate" }, @@ -20039,6 +20510,12 @@ { "value" : "minecraft:cobbled_deepslate_stairs" }, + { + "value" : "minecraft:item.glow_frame" + }, + { + "value" : "minecraft:hanging_roots" + }, { "value" : "minecraft:calcite" }, @@ -20135,9 +20612,6 @@ { "value" : "minecraft:warped_wall_sign" }, - { - "value" : "minecraft:waxed_cut_copper_stairs" - }, { "value" : "minecraft:mangrove_double_slab" }, @@ -20237,9 +20711,6 @@ { "value" : "minecraft:emerald_block" }, - { - "value" : "minecraft:suspicious_sand" - }, { "value" : "minecraft:heavy_weighted_pressure_plate" }, @@ -20759,9 +21230,6 @@ { "value" : "minecraft:wither_rose" }, - { - "value" : "minecraft:exposed_cut_copper" - }, { "value" : "minecraft:waxed_weathered_cut_copper_stairs" }, @@ -21280,12 +21748,18 @@ { "value" : "*" }, + { + "value" : "minecraft:armor_stand" + }, { "value" : "minecraft:bolt_armor_trim_smithing_template_duplicate" }, { "value" : "minecraft:bolt_armor_trim_smithing_template_duplicate_waxed" }, + { + "value" : "minecraft:chiseled_nether_bricks" + }, { "value" : "minecraft:chiseled_tuff" }, @@ -21311,31 +21785,25 @@ "value" : "minecraft:copper_trapdoor" }, { - "value" : "minecraft:exposed_copper_bulb" + "value" : "minecraft:exposed_chiseled_copper" }, { - "value" : "minecraft:exposed_copper_door" + "value" : "minecraft:exposed_copper_bulb" }, { "value" : "minecraft:exposed_copper_grate" }, { - "value" : "minecraft:exposed_copper_trapdoor" + "value" : "minecraft:oxidized_chiseled_copper" }, { "value" : "minecraft:oxidized_copper_bulb" }, - { - "value" : "minecraft:oxidized_copper_door" - }, { "value" : "minecraft:oxidized_copper_grate" }, { - "value" : "minecraft:oxidized_copper_trapdoor" - }, - { - "value" : "minecraft:crafting_table_waxed_chiseled_copper" + "value" : "minecraft:waxed_chiseled_copper" }, { "value" : "minecraft:waxed_copper_bulb" @@ -21344,52 +21812,55 @@ "value" : "minecraft:crafting_table_waxed_copper_door" }, { - "value" : "minecraft:crafting_table_waxed_copper_trapdoor" + "value" : "minecraft:waxed_copper_grate" + }, + { + "value" : "minecraft:waxed_exposed_chiseled_copper" }, { "value" : "minecraft:waxed_exposed_copper_bulb" }, { - "value" : "minecraft:crafting_table_waxed_exposed_copper_door" + "value" : "minecraft:waxed_exposed_copper_grate" }, { - "value" : "minecraft:crafting_table_waxed_exposed_copper_trapdoor" + "value" : "minecraft:waxed_oxidized_chiseled_copper" }, { "value" : "minecraft:waxed_oxidized_copper_bulb" }, { - "value" : "minecraft:crafting_table_waxed_oxidized_copper_door" + "value" : "minecraft:waxed_oxidized_copper_grate" }, { - "value" : "minecraft:crafting_table_waxed_oxidized_copper_trapdoor" + "value" : "minecraft:waxed_weathered_chiseled_copper" }, { "value" : "minecraft:waxed_weathered_copper_bulb" }, { - "value" : "minecraft:crafting_table_waxed_weathered_copper_door" + "value" : "minecraft:waxed_weathered_copper_grate" }, { - "value" : "minecraft:crafting_table_waxed_weathered_copper_trapdoor" + "value" : "minecraft:weathered_chiseled_copper" }, { "value" : "minecraft:weathered_copper_bulb" }, { - "value" : "minecraft:weathered_copper_door" + "value" : "minecraft:weathered_copper_grate" }, { - "value" : "minecraft:weathered_copper_grate" + "value" : "minecraft:flow_armor_trim_smithing_template_duplicate" }, { - "value" : "minecraft:weathered_copper_trapdoor" + "value" : "minecraft:mace" }, { - "value" : "minecraft:flow_armor_trim_smithing_template_duplicate" + "value" : "minecraft:magenta_dye_from_lilac" }, { - "value" : "minecraft:mace" + "value" : "minecraft:pink_dye_from_peony" }, { "value" : "minecraft:polished_tuff" @@ -21403,6 +21874,15 @@ { "value" : "minecraft:polished_tuff_wall" }, + { + "value" : "minecraft:red_dye_from_rose_bush" + }, + { + "value" : "minecraft:stonecutter_brick_slab" + }, + { + "value" : "minecraft:stonecutter_cobbledouble_stone_slab" + }, { "value" : "minecraft:stonecutter_copper_block_to_chiseled_copper" }, @@ -21421,6 +21901,9 @@ { "value" : "minecraft:stonecutter_exposed_cut_copper_to_exposed_chiseled_copper" }, + { + "value" : "minecraft:stonecutter_nether_brick_slab" + }, { "value" : "minecraft:stonecutter_oxidized_copper_to_oxidized_chiseled_copper" }, @@ -21430,6 +21913,57 @@ { "value" : "minecraft:stonecutter_oxidized_cut_copper_to_oxidized_chiseled_copper" }, + { + "value" : "minecraft:stonecutter_polished_tuff_to_chiseled_tuff_bricks" + }, + { + "value" : "minecraft:stonecutter_polished_tuff_to_polished_tuff_slab" + }, + { + "value" : "minecraft:stonecutter_polished_tuff_to_polished_tuff_stairs" + }, + { + "value" : "minecraft:stonecutter_polished_tuff_to_polished_tuff_wall" + }, + { + "value" : "minecraft:stonecutter_polished_tuff_to_tuff_bricks" + }, + { + "value" : "minecraft:stonecutter_polished_tuff_to_tuff_brick_slab" + }, + { + "value" : "minecraft:stonecutter_polished_tuff_to_tuff_brick_stairs" + }, + { + "value" : "minecraft:stonecutter_polished_tuff_to_tuff_brick_wall" + }, + { + "value" : "minecraft:stonecutter_quartz_slab" + }, + { + "value" : "minecraft:stonecutter_sanddouble_stone_slab" + }, + { + "value" : "minecraft:stonecutter_smooth_double_stone_slab" + }, + { + "value" : "minecraft:stonecutter_stonebrick_slab" + }, + { + "value" : "minecraft:stonecutter_stonebrick_slab2" + }, + { + "value" : "minecraft:stonecutter_tuff_bricks_to_chiseled_tuff_bricks" + }, + { + "value" : "minecraft:stonecutter_tuff_bricks_to_tuff_brick_slab" + }, + { + "value" : "minecraft:stonecutter_tuff_bricks_to_tuff_brick_stairs" + }, + { + "value" : "minecraft:stonecutter_tuff_bricks_to_tuff_brick_wall" + }, { "value" : "minecraft:stonecutter_tuff_to_chiseled_tuff" }, @@ -21535,6 +22069,9 @@ { "value" : "minecraft:tuff_wall" }, + { + "value" : "minecraft:waxing_chiseled_copper" + }, { "value" : "minecraft:waxing_copper_bulb" }, @@ -21547,6 +22084,9 @@ { "value" : "minecraft:waxing_copper_trapdoor" }, + { + "value" : "minecraft:waxed_exposed_chiseled_copper_from_honeycomb" + }, { "value" : "minecraft:waxing_exposed_copper_bulb" }, @@ -21559,6 +22099,9 @@ { "value" : "minecraft:waxing_exposed_copper_trapdoor" }, + { + "value" : "minecraft:waxed_oxidized_chiseled_copper_from_honeycomb" + }, { "value" : "minecraft:waxing_oxidized_copper_bulb" }, @@ -21571,6 +22114,9 @@ { "value" : "minecraft:waxing_oxidized_copper_trapdoor" }, + { + "value" : "minecraft:waxed_weathered_chiseled_copper_from_honeycomb" + }, { "value" : "minecraft:waxing_weathered_copper_bulb" }, @@ -21586,6 +22132,9 @@ { "value" : "minecraft:wind_charge" }, + { + "value" : "minecraft:yellow_dye_from_sunflower" + }, { "value" : "minecraft:banner_pattern_flower" }, @@ -21904,9 +22453,6 @@ { "value" : "minecraft:anvil" }, - { - "value" : "minecraft:armor_stand" - }, { "value" : "minecraft:arrow" }, @@ -22282,9 +22828,6 @@ { "value" : "minecraft:chiseled_deepslate_from_cobbled_deepslate_stonecutting" }, - { - "value" : "minecraft:chiseled_nether_bricks" - }, { "value" : "minecraft:chiseled_polished_blackstone" }, @@ -23191,9 +23734,6 @@ { "value" : "minecraft:magenta_dye_from_lapis_red_pink" }, - { - "value" : "minecraft:magenta_dye_from_lilac" - }, { "value" : "minecraft:magenta_dye_from_purple_and_pink" }, @@ -23425,9 +23965,6 @@ { "value" : "minecraft:pink_dye" }, - { - "value" : "minecraft:pink_dye_from_peony" - }, { "value" : "minecraft:pink_dye_from_pink_petals" }, @@ -23656,9 +24193,6 @@ { "value" : "minecraft:red_dye_from_beetroot" }, - { - "value" : "minecraft:red_dye_from_rose_bush" - }, { "value" : "minecraft:red_nether_brick" }, @@ -23857,9 +24391,6 @@ { "value" : "minecraft:stonecutter_bricks_from_polished_blackstone" }, - { - "value" : "minecraft:stonecutter_brick_slab" - }, { "value" : "minecraft:stonecutter_brick_slab_from_polished_blackstone" }, @@ -23884,9 +24415,6 @@ { "value" : "minecraft:stonecutter_chiseled_polished_from_blackstone" }, - { - "value" : "minecraft:stonecutter_cobbledouble_stone_slab" - }, { "value" : "minecraft:stonecutter_cobblestone_stairs" }, @@ -23995,9 +24523,6 @@ { "value" : "minecraft:stonecutter_mud_brick_wall" }, - { - "value" : "minecraft:stonecutter_nether_brick_slab" - }, { "value" : "minecraft:stonecutter_nether_brick_stairs" }, @@ -24124,9 +24649,6 @@ { "value" : "minecraft:stonecutter_quartz_lines" }, - { - "value" : "minecraft:stonecutter_quartz_slab" - }, { "value" : "minecraft:stonecutter_quartz_stairs" }, @@ -24160,9 +24682,6 @@ { "value" : "minecraft:stonecutter_sandstone_heiroglyphs" }, - { - "value" : "minecraft:stonecutter_sanddouble_stone_slab" - }, { "value" : "minecraft:stonecutter_sandstone_stairs" }, @@ -24193,9 +24712,6 @@ { "value" : "minecraft:stonecutter_smooth_sandstone_stairs" }, - { - "value" : "minecraft:stonecutter_smooth_double_stone_slab" - }, { "value" : "minecraft:stonecutter_stairs_from_polished_blackstone" }, @@ -24208,12 +24724,6 @@ { "value" : "minecraft:stonecutter_stonebrick_chiseled" }, - { - "value" : "minecraft:stonecutter_stonebrick_slab" - }, - { - "value" : "minecraft:stonecutter_stonebrick_slab2" - }, { "value" : "minecraft:stonecutter_stonebrick_stairs" }, @@ -24559,9 +25069,6 @@ { "value" : "minecraft:yellow_dye_from_dandelion" }, - { - "value" : "minecraft:yellow_dye_from_sunflower" - }, { "value" : "minecraft:yellow_stained_hardened_clay" }, @@ -26830,6 +27337,18 @@ { "value" : "weapon_arrow_recipe_42" }, + { + "value" : "weapon_arrow_recipe_43" + }, + { + "value" : "weapon_arrow_recipe_44" + }, + { + "value" : "weapon_arrow_recipe_45" + }, + { + "value" : "weapon_arrow_recipe_46" + }, { "value" : "decorated_pot_base_recipeId" } @@ -30672,7 +31191,7 @@ "is_optional" : false, "name" : "command", "type" : { - "name" : "SLASHCOMMAND" + "name" : "CODEBUILDERARGS" } } ] @@ -36040,7 +36559,7 @@ "requires_cheats" : true } ], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "commands", "name" : "mojang-commands" } diff --git a/metadata/engine_modules/engine-after-events-ordering.json b/metadata/engine_modules/engine-after-events-ordering.json index d14b67bc1..371d14c64 100644 --- a/metadata/engine_modules/engine-after-events-ordering.json +++ b/metadata/engine_modules/engine-after-events-ordering.json @@ -708,6 +708,129 @@ "name" : "@minecraft/server 1.10.0", "version" : "1.10.0" }, + { + "event_order" : [ + { + "name" : "ScriptEventCommandMessageAfterEvent" + }, + { + "name" : "WorldInitializeAfterEvent" + }, + { + "name" : "GameRuleChangeAfterEvent" + }, + { + "name" : "WeatherChangeAfterEvent" + }, + { + "name" : "ButtonPushAfterEvent" + }, + { + "name" : "LeverActionAfterEvent" + }, + { + "name" : "PlayerPlaceBlockAfterEvent" + }, + { + "name" : "ExplosionAfterEvent" + }, + { + "name" : "PlayerBreakBlockAfterEvent" + }, + { + "name" : "EntityLoadAfterEvent" + }, + { + "name" : "EntitySpawnAfterEvent" + }, + { + "name" : "DataDrivenEntityTriggerAfterEvent" + }, + { + "name" : "EffectAddAfterEvent" + }, + { + "name" : "ProjectileHitEntityAfterEvent" + }, + { + "name" : "ProjectileHitBlockAfterEvent" + }, + { + "name" : "EntityHitEntityAfterEvent" + }, + { + "name" : "EntityHitBlockAfterEvent" + }, + { + "name" : "EntityHurtAfterEvent" + }, + { + "name" : "EntityHealthChangedAfterEvent" + }, + { + "name" : "EntityDieAfterEvent" + }, + { + "name" : "EntityRemoveAfterEvent" + }, + { + "name" : "ItemStartUseOnAfterEvent" + }, + { + "name" : "ItemUseOnAfterEvent" + }, + { + "name" : "ItemUseAfterEvent" + }, + { + "name" : "ItemStopUseOnAfterEvent" + }, + { + "name" : "ItemStartUseAfterEvent" + }, + { + "name" : "ItemCompleteUseAfterEvent" + }, + { + "name" : "ItemReleaseUseAfterEvent" + }, + { + "name" : "ItemStopUseAfterEvent" + }, + { + "name" : "PlayerJoinAfterEvent" + }, + { + "name" : "PlayerSpawnAfterEvent" + }, + { + "name" : "PlayerLeaveAfterEvent" + }, + { + "name" : "PlayerGameModeChangeAfterEvent" + }, + { + "name" : "PlayerDimensionChangeAfterEvent" + }, + { + "name" : "PistonActivateAfterEvent" + }, + { + "name" : "PressurePlatePushAfterEvent" + }, + { + "name" : "PressurePlatePopAfterEvent" + }, + { + "name" : "TargetBlockHitAfterEvent" + }, + { + "name" : "TripWireTripAfterEvent" + } + ], + "name" : "@minecraft/server 1.11.0", + "version" : "1.11.0" + }, { "event_order" : [ { @@ -737,9 +860,24 @@ { "name" : "BlockComponentOnPlaceEvent" }, + { + "name" : "ItemComponentHitEntityEvent" + }, { "name" : "ItemComponentUseEvent" }, + { + "name" : "ItemComponentUseOnEvent" + }, + { + "name" : "ItemComponentCompleteUseEvent" + }, + { + "name" : "ItemComponentConsumeEvent" + }, + { + "name" : "ItemComponentMineBlockEvent" + }, { "name" : "WorldInitializeAfterEvent" }, @@ -848,6 +986,9 @@ { "name" : "PlayerDimensionChangeAfterEvent" }, + { + "name" : "PlayerInputPermissionCategoryChangeAfterEvent" + }, { "name" : "PlayerInteractWithEntityAfterEvent" }, @@ -870,8 +1011,8 @@ "name" : "TripWireTripAfterEvent" } ], - "name" : "@minecraft/server 1.11.0-beta", - "version" : "1.11.0-beta" + "name" : "@minecraft/server 1.12.0-beta", + "version" : "1.12.0-beta" }, { "event_order" : [ @@ -881,6 +1022,9 @@ { "name" : "WorldInitializeAfterEvent" }, + { + "name" : "GameRuleChangeAfterEvent" + }, { "name" : "WeatherChangeAfterEvent" }, @@ -968,6 +1112,9 @@ { "name" : "PlayerLeaveAfterEvent" }, + { + "name" : "PlayerGameModeChangeAfterEvent" + }, { "name" : "PlayerDimensionChangeAfterEvent" }, @@ -987,8 +1134,8 @@ "name" : "TripWireTripAfterEvent" } ], - "name" : "@minecraft/server 1.11.0-internal", - "version" : "1.11.0-internal" + "name" : "@minecraft/server 1.12.0-internal", + "version" : "1.12.0-internal" }, { "event_order" : [ @@ -1009,7 +1156,7 @@ "version" : "0.1.0-beta" } ], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "after_events_ordering", "name" : "engine-after_events_ordering" } diff --git a/metadata/json_schemas/AllowOffHand v1.20.50.json b/metadata/json_schemas/AllowOffHand v1.20.50.json new file mode 100644 index 000000000..6d8c9cf2a --- /dev/null +++ b/metadata/json_schemas/AllowOffHand v1.20.50.json @@ -0,0 +1,20 @@ +{ + "title": "minecraft:allow_off_hand v1.20.50", + "description": "The allow_off_hand component determines whether the item can be placed in the off hand slot of the inventory.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Determines whether the item can be placed in the off hand slot.", + "type": "boolean" + } + } + } + ], + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:allow_off_hand v1.20.50" +} \ No newline at end of file diff --git a/metadata/json_schemas/Ammunition v1.20.50.json b/metadata/json_schemas/Ammunition v1.20.50.json new file mode 100644 index 000000000..1e31cb8a0 --- /dev/null +++ b/metadata/json_schemas/Ammunition v1.20.50.json @@ -0,0 +1,44 @@ +{ + "title": "struct Puv::v1_20_50::ShooterItemComponent::Ammunition", + "type": "object", + "properties": { + "item": { + "description": "Ammunition item description identifier.", + "$ref": "#/$defs/2849785526" + }, + "search_inventory": { + "description": "Can search inventory? Default is set to false.", + "type": "boolean" + }, + "use_in_creative": { + "description": "Can use in creative mode? Default is set to false.", + "type": "boolean" + }, + "use_offhand": { + "description": "Can use off-hand? Default is set to false.", + "type": "boolean" + } + }, + "required": [ + "item" + ], + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "struct Puv::v1_20_50::ShooterItemComponent::Ammunition", + "$defs": { + "2849785526": { + "title": "struct Puv::Legacy::ItemDescriptor", + "oneOf": [ + { + "type": "string" + }, + { + "title": "associative container (class std::map,class std::allocator >,class std::basic_string,class std::allocator >,struct std::less,class std::allocator > >,class std::allocator,class std::allocator > const ,class std::basic_string,class std::allocator > > > >)", + "type": "object", + "additionalProperties": { + "type": "string" + } + } + ] + } + } +} \ No newline at end of file diff --git a/metadata/json_schemas/BlockInfo v1.20.50.json b/metadata/json_schemas/BlockInfo v1.20.50.json new file mode 100644 index 000000000..829c757ee --- /dev/null +++ b/metadata/json_schemas/BlockInfo v1.20.50.json @@ -0,0 +1,64 @@ +{ + "title": "struct Puv::v1_20_50::DiggerItemComponent::BlockInfo", + "type": "object", + "properties": { + "block": { + "description": "Block to be dug.", + "$ref": "#/$defs/4107396053" + }, + "speed": { + "description": "Digging speed for the correlating block(s).", + "type": "integer" + } + }, + "required": [ + "block", + "speed" + ], + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "struct Puv::v1_20_50::DiggerItemComponent::BlockInfo", + "$defs": { + "1290538044": { + "title": "compound_proxy", + "oneOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "2836600109": { + "title": "struct Puv::v1_20_50::BlockDescriptorSerializer::BlockDescriptorProxy", + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "states": { + "title": "associative container (class std::map,class std::allocator >,struct Puv::v1_20_50::BlockDescriptor::Compound,struct std::less,class std::allocator > >,class std::allocator,class std::allocator > const ,struct Puv::v1_20_50::BlockDescriptor::Compound> > >)", + "type": "object", + "additionalProperties": { + "$ref": "#/$defs/1290538044" + } + }, + "tags": { + "type": "string" + } + } + }, + "4107396053": { + "title": "struct Puv::v1_20_50::BlockDescriptor", + "oneOf": [ + { + "$ref": "#/$defs/2836600109" + }, + { + "minLength": 1, + "type": "string" + } + ] + } + } +} \ No newline at end of file diff --git a/metadata/json_schemas/CanDestroyInCreative v1.20.50.json b/metadata/json_schemas/CanDestroyInCreative v1.20.50.json index 9bcc9e970..bf9ef94bd 100644 --- a/metadata/json_schemas/CanDestroyInCreative v1.20.50.json +++ b/metadata/json_schemas/CanDestroyInCreative v1.20.50.json @@ -1,6 +1,6 @@ { "title": "minecraft:can_destroy_in_creative v1.20.50", - "description": "The can destroy in creative component determines if the item will break blocks in creative when swinging.", + "description": "The can_destroy_in_creative component determines if the item can be used by a player to break blocks when in creative mode.", "oneOf": [ { "type": "boolean" @@ -9,7 +9,7 @@ "type": "object", "properties": { "value": { - "description": "Whether the item can destroy blocks while in creative.", + "description": "Determines whether the item can be used to destroy blocks while in creative mode.", "type": "boolean" } } diff --git a/metadata/json_schemas/Component v1.20.50.json b/metadata/json_schemas/Component v1.20.50.json new file mode 100644 index 000000000..e7cbb9f2f --- /dev/null +++ b/metadata/json_schemas/Component v1.20.50.json @@ -0,0 +1,1427 @@ +{ + "title": "components v1.20.50", + "description": "List of all components used in this item.", + "type": "object", + "properties": { + "minecraft:allow_off_hand": { + "description": "The allow_off_hand component determines whether the item can be placed in the off hand slot of the inventory.", + "$ref": "#/$defs/2987623390" + }, + "minecraft:block_placer": { + "description": "Items with the block_placer component will place a block when used.", + "$ref": "#/$defs/1178544591" + }, + "minecraft:can_destroy_in_creative": { + "description": "The can_destroy_in_creative component determines if the item can be used by a player to break blocks when in creative mode.", + "$ref": "#/$defs/2819452145" + }, + "minecraft:cooldown": { + "description": "After you use an item, all items specified with the same `cool down category` setting becomes unusable for the duration specified by the 'cool down time' setting in this component.", + "$ref": "#/$defs/1413510600" + }, + "minecraft:damage": { + "description": "The damage component determines how much extra damage the item does on attack.", + "$ref": "#/$defs/2355534844" + }, + "minecraft:digger": { + "description": "Digger item component specifies how quickly this item can dig specific blocks.", + "$ref": "#/$defs/1093953013" + }, + "minecraft:display_name": { + "description": "The display_name item component specifies the text shown whenever an item's name is displayed, like in hover text.", + "$ref": "#/$defs/4293809098" + }, + "minecraft:durability": { + "description": "The durability item component specifies how much damage the item takes before breaking, and allows the item to be combined to repair or augment them.", + "$ref": "#/$defs/2663653758" + }, + "minecraft:enchantable": { + "description": "The enchantable component specifies what enchantments can be applied to the item. Not all enchantments will have an effect on all item components.", + "$ref": "#/$defs/3828799658" + }, + "minecraft:entity_placer": { + "description": "The entity_placer item component specifies the blocks that the item can be placed on.", + "$ref": "#/$defs/2610026031" + }, + "minecraft:food": { + "description": "When an item has a food component, it becomes edible to the player. Must have the 'minecraft:use_duration' component in order to function properly.", + "$ref": "#/$defs/3906212947" + }, + "minecraft:fuel": { + "description": "Fuel item component allows this item to be used as fuel in a furnace to 'cook' other items.", + "$ref": "#/$defs/3372804247" + }, + "minecraft:glint": { + "description": "The glint component determines whether the item has the enchanted glint render effect on it.", + "$ref": "#/$defs/1025605201" + }, + "minecraft:hand_equipped": { + "description": "The hand_equipped component determines if an item is rendered like a tool while it is in a player's hand.", + "$ref": "#/$defs/3792304927" + }, + "minecraft:hover_text_color": { + "description": "The hover_text_color component specifies the color of the item name when the players hovers the cursor over the item.", + "$ref": "#/$defs/1862654147" + }, + "minecraft:icon": { + "$ref": "#/$defs/396877356" + }, + "minecraft:interact_button": { + "description": "This component is a boolean or string that determines if the interact button is shown in touch controls and what text is displayed on the button. When set as true, default \"Use Item\" text will be displayed.", + "$ref": "#/$defs/2801422565" + }, + "minecraft:item_storage": { + "description": "The Storage Item Component is used for storing Items within an Item's User Data", + "$ref": "#/$defs/757583938" + }, + "minecraft:liquid_clipped": { + "description": "The liquid_clipped component determines whether the item interacts with liquid blocks on use.", + "$ref": "#/$defs/910690552" + }, + "minecraft:max_stack_size": { + "description": "The max_stack_size component specifies how many of the item can be stacked together.", + "$ref": "#/$defs/3633237758" + }, + "minecraft:projectile": { + "description": "Projectile items shoot out, like an arrow.", + "$ref": "#/$defs/2543985138" + }, + "minecraft:record": { + "description": "Record Item Component. Used by record items to play music.", + "$ref": "#/$defs/2714251964" + }, + "minecraft:repairable": { + "description": "The repairable item component specifies which items can be used to repair this item, along with how much durability is gained.", + "$ref": "#/$defs/2707383096" + }, + "minecraft:shooter": { + "description": "Shooter Item Component.", + "$ref": "#/$defs/1861287593" + }, + "minecraft:should_despawn": { + "description": "Should_despawn component determines if the item should eventually despawn while floating in the world", + "$ref": "#/$defs/869455920" + }, + "minecraft:stacked_by_data": { + "description": "The stacked_by_data component determines whether the same items with different aux values can stack. Also defines whether the item entities can merge while floating in the world.", + "$ref": "#/$defs/3566406297" + }, + "minecraft:tags": { + "description": "The tags component specifies which tags an item has on it.", + "$ref": "#/$defs/2623865080" + }, + "minecraft:throwable": { + "description": "Throwable items can be thrown by the player, such as a snowball.", + "$ref": "#/$defs/2210327101" + }, + "minecraft:use_animation": { + "description": "Use_animation specifies which animation is played when the player uses the item.", + "$ref": "#/$defs/3520278386" + }, + "minecraft:use_modifiers": { + "description": "This component modifies use effects, including how long the item takes to use and the player's speed when used in combination with components like \"shooter\", \"throwable\", or \"food\".", + "$ref": "#/$defs/466752078" + }, + "minecraft:wearable": { + "description": "Wearable items can be worn by a player in the head, chest, legs, feet, or off-hand slots.", + "$ref": "#/$defs/2024711926" + } + }, + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "components v1.20.50", + "$defs": { + "1025605201": { + "title": "minecraft:glint v1.20.50", + "description": "The glint component determines whether the item has the enchanted glint render effect on it.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Determines whether the item has the glint effect.", + "type": "boolean" + } + } + } + ] + }, + "1093953013": { + "title": "minecraft:digger v1.20.50", + "description": "Digger item component specifies how quickly this item can dig specific blocks.", + "type": "object", + "properties": { + "destroy_speeds": { + "title": "sequence container (class std::vector >)", + "description": "A list of blocks to dig with correlating speeds of digging.", + "type": "array", + "items": { + "$ref": "#/$defs/3421086714" + } + }, + "use_efficiency": { + "description": "Determines whether this item should be impacted if the efficiency enchantment is applied to it.", + "type": "boolean" + } + } + }, + "1178544591": { + "title": "minecraft:block_placer v1.20.50", + "description": "Items with the block_placer component will place a block when used.", + "type": "object", + "properties": { + "block": { + "description": "Defines the block that will be placed.", + "type": "string" + }, + "use_on": { + "title": "sequence container (class std::vector >)", + "description": "List of block descriptors of the blocks that this item can be used on. If left empty, all blocks will be allowed.", + "type": "array", + "items": { + "$ref": "#/$defs/4107396053" + } + } + }, + "required": [ + "block" + ] + }, + "1181846166": { + "title": "struct Puv::Legacy::ExpressionNode", + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "object", + "properties": { + "expression": { + "type": "string" + }, + "version": { + "type": "integer" + } + }, + "required": [ + "expression", + "version" + ] + } + ] + }, + "1290538044": { + "title": "compound_proxy", + "oneOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "1413510600": { + "title": "minecraft:cooldown v1.20.50", + "description": "After you use an item, all items specified with the same `cool down category` setting becomes unusable for the duration specified by the 'cool down time' setting in this component.", + "type": "object", + "properties": { + "category": { + "description": "The type of cool down for this item. All items with a cool down component with the same category are put on cool down when one is used.", + "type": "string" + }, + "duration": { + "description": "The duration of time (in seconds) items with a matching category will spend cooling down before becoming usable again.", + "type": "number" + } + }, + "required": [ + "category", + "duration" + ] + }, + "1861287593": { + "title": "minecraft:shooter v1.20.50", + "description": "Shooter Item Component.", + "type": "object", + "properties": { + "ammunition": { + "title": "sequence container (class std::vector >)", + "description": "Ammunition.", + "type": "array", + "items": { + "$ref": "#/$defs/2221989686" + } + }, + "charge_on_draw": { + "description": "Charge on draw? Default is set to false.", + "type": "boolean" + }, + "max_draw_duration": { + "description": "Draw Duration. Default is set to 0.", + "type": "number" + }, + "scale_power_by_draw_duration": { + "description": "Scale power by draw duration? Default is set to false.", + "type": "boolean" + } + } + }, + "1862654147": { + "title": "minecraft:hover_text_color v1.20.50", + "description": "The hover_text_color component specifies the color of the item name when the players hovers the cursor over the item.", + "oneOf": [ + { + "type": "string" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Specifies the color of the item's hover text.", + "type": "string" + } + } + } + ] + }, + "2024711926": { + "title": "minecraft:wearable v1.20.50", + "description": "Wearable items can be worn by a player in the head, chest, legs, feet, or off-hand slots.", + "type": "object", + "properties": { + "protection": { + "description": "How much protection the wearable item provides. Default is set to 0.", + "minimum": 0.0, + "type": "integer" + }, + "slot": { + "title": "enum Puv::Legacy::EquipmentSlot", + "description": "Specifies where the item can be worn. If any non-hand slot is chosen, the max stack size is set to 1.", + "type": "string", + "enum": [ + "slot.armor.chest", + "slot.armor.feet", + "slot.armor.head", + "slot.armor.legs", + "slot.weapon.offhand" + ] + } + }, + "required": [ + "slot" + ] + }, + "2122767410": { + "title": "struct Puv::v1_20_50::RepairableItemComponent::RepairItemEntry", + "oneOf": [ + { + "title": "sequence container (class std::vector >)", + "type": "array", + "items": { + "$ref": "#/$defs/2849785526" + } + }, + { + "type": "object", + "properties": { + "items": { + "title": "sequence container (class std::vector >)", + "description": "Items that may be used to repair an item.", + "type": "array", + "items": { + "$ref": "#/$defs/2849785526" + } + }, + "repair_amount": { + "description": "How much the item is repaired.", + "$ref": "#/$defs/1181846166" + } + }, + "required": [ + "items" + ] + } + ] + }, + "2210327101": { + "title": "minecraft:throwable v1.20.50", + "description": "Throwable items can be thrown by the player, such as a snowball.", + "type": "object", + "properties": { + "default_offset_scale": { + "description": "The scale at which the throw position is adjusted by the aim direction.", + "type": "number" + }, + "do_swing_animation": { + "description": "Determines whether the item should use the swing animation when thrown. Default is set to false.", + "type": "boolean" + }, + "inside_block_offset_scale": { + "description": "The scale at which the throw position is adjusted by the aim direction if the default throw position is inside a solid block.", + "type": "number" + }, + "launch_power_scale": { + "description": "The scale at which the power of the throw increases. Default is set to 1.0.", + "type": "number" + }, + "max_draw_duration": { + "description": "The maximum duration to draw a throwable item. Default is set to 0.0.", + "type": "number" + }, + "max_launch_power": { + "description": "The maximum power to launch the throwable item. Default is set to 1.0.", + "type": "number" + }, + "min_draw_duration": { + "description": "The minimum duration to draw a throwable item. Default is set to 0.0.", + "type": "number" + }, + "scale_power_by_draw_duration": { + "description": "Whether or not the power of the throw increases with duration charged. Default is set to false.", + "type": "boolean" + } + } + }, + "2221989686": { + "title": "struct Puv::v1_20_50::ShooterItemComponent::Ammunition", + "type": "object", + "properties": { + "item": { + "description": "Ammunition item description identifier.", + "$ref": "#/$defs/2849785526" + }, + "search_inventory": { + "description": "Can search inventory? Default is set to false.", + "type": "boolean" + }, + "use_in_creative": { + "description": "Can use in creative mode? Default is set to false.", + "type": "boolean" + }, + "use_offhand": { + "description": "Can use off-hand? Default is set to false.", + "type": "boolean" + } + }, + "required": [ + "item" + ] + }, + "2355534844": { + "title": "minecraft:damage v1.20.50", + "description": "The damage component determines how much extra damage the item does on attack.", + "oneOf": [ + { + "minimum": 0.0, + "type": "integer" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Specifies how much extra damage the item does, must be a positive number.", + "minimum": 0.0, + "type": "integer" + } + } + } + ] + }, + "2543985138": { + "title": "minecraft:projectile v1.20.50", + "description": "Projectile items shoot out, like an arrow.", + "type": "object", + "properties": { + "minimum_critical_power": { + "description": "Specifies how long a player must charge a projectile for it to critically hit.", + "type": "number" + }, + "projectile_entity": { + "description": "Which entity is to be fired as a projectile.", + "minLength": 0, + "maxLength": 18446744073709551615, + "pattern": "^(?:\\w+(?:\\.\\w+)*:(?=\\w))?(?:\\w+(?:\\.\\w+)*)(?:<((?:\\w+(?:\\.\\w+)*:(?=\\w))?\\w+(?:\\.\\w+)*)*>)?$", + "type": "string" + } + }, + "required": [ + "projectile_entity" + ] + }, + "2610026031": { + "title": "minecraft:entity_placer v1.20.50", + "description": "The entity_placer item component specifies the blocks that the item can be placed on.", + "type": "object", + "properties": { + "dispense_on": { + "title": "sequence container (class std::vector >)", + "description": "List of block descriptors of the blocks that this item can be dispensed on. If left empty, all blocks will be allowed.", + "type": "array", + "items": { + "$ref": "#/$defs/4107396053" + } + }, + "entity": { + "description": "The entity to be placed in the world.", + "minLength": 0, + "maxLength": 18446744073709551615, + "pattern": "^(?:\\w+(?:\\.\\w+)*:(?=\\w))?(?:\\w+(?:\\.\\w+)*)(?:<((?:\\w+(?:\\.\\w+)*:(?=\\w))?\\w+(?:\\.\\w+)*)*>)?$", + "type": "string" + }, + "use_on": { + "title": "sequence container (class std::vector >)", + "description": "List of block descriptors of the blocks that this item can be used on. If left empty, all blocks will be allowed.", + "type": "array", + "items": { + "$ref": "#/$defs/4107396053" + } + } + } + }, + "2623865080": { + "title": "minecraft:tags v1.20.50", + "description": "The tags component specifies which tags an item has on it.", + "type": "object", + "properties": { + "tags": { + "title": "sequence container (class std::vector,class std::allocator >,class std::allocator,class std::allocator > > >)", + "description": "An array that can contain multiple item tags.", + "type": "array", + "items": { + "type": "string" + } + } + } + }, + "2663653758": { + "title": "minecraft:durability v1.20.50", + "description": "The durability item component specifies how much damage the item takes before breaking, and allows the item to be combined to repair or augment them.", + "type": "object", + "properties": { + "damage_chance": { + "description": "Specifies the percentage chance of this item losing durability. Default is set to 100. Defined as an int range with min and max value.", + "$ref": "#/$defs/4167449497" + }, + "max_durability": { + "description": "Max durability is the amount of damage that this item can take before breaking. This is a required parameter and has a minimum of 0.", + "minimum": 0.0, + "type": "integer" + } + }, + "required": [ + "max_durability" + ] + }, + "2707383096": { + "title": "minecraft:repairable v1.20.50", + "description": "The repairable item component specifies which items can be used to repair this item, along with how much durability is gained.", + "type": "object", + "properties": { + "repair_items": { + "title": "sequence container (class std::vector >)", + "description": "List of repair item entries. Each entry needs to define a list of strings for `items` that can be used for the repair and an optional `repair_amount` for how much durability is gained.", + "type": "array", + "items": { + "$ref": "#/$defs/2122767410" + } + } + } + }, + "2714251964": { + "title": "minecraft:record v1.20.50", + "description": "Record Item Component. Used by record items to play music.", + "type": "object", + "properties": { + "comparator_signal": { + "description": "Specifies signal strength for comparator blocks to use, from 1 - 13.", + "type": "integer" + }, + "duration": { + "description": "Specifies duration of sound event in seconds, float value.", + "type": "number" + }, + "sound_event": { + "title": "enum Puv::Legacy::LevelSoundEvent", + "description": "Sound event type: 13, cat, blocks, chirp, far, mall, mellohi, stal, strad, ward, 11, wait, pigstep, otherside, 5, relic.", + "type": "string", + "enum": [ + "add.chest", + "admire", + "agitated", + "ambient", + "ambient.aggressive", + "ambient.baby", + "ambient.basalt_deltas.additions", + "ambient.basalt_deltas.loop", + "ambient.candle", + "ambient.cave", + "ambient.crimson_forest.additions", + "ambient.crimson_forest.loop", + "ambient.crimson_forest.mood", + "ambient.in.air", + "ambient.in.raid", + "ambient.in.water", + "ambient.nether_wastes.additions", + "ambient.nether_wastes.loop", + "ambient.nether_wastes.mood", + "ambient.pollinate", + "ambient.screamer", + "ambient.soulsand_valley.additions", + "ambient.soulsand_valley.loop", + "ambient.soulsand_valley.mood", + "ambient.tame", + "ambient.underwater.enter", + "ambient.underwater.exit", + "ambient.warped_forest.additions", + "ambient.warped_forest.loop", + "ambient.warped_forest.mood", + "ambient.worried", + "angry", + "apply_effect.bad_omen", + "apply_effect.raid_omen", + "apply_effect.trial_omen", + "armor", + "armor.break_wolf", + "armor.crack_wolf", + "armor.equip_chain", + "armor.equip_diamond", + "armor.equip_elytra", + "armor.equip_generic", + "armor.equip_gold", + "armor.equip_iron", + "armor.equip_leather", + "armor.equip_netherite", + "armor.equip_wolf", + "armor.repair_wolf", + "armor.unequip_wolf", + "attach", + "attack", + "attack.nodamage", + "attack.strong", + "balloonpop", + "beacon.activate", + "beacon.ambient", + "beacon.deactivate", + "beacon.power", + "blast", + "block.bamboo_sapling.place", + "block.barrel.close", + "block.barrel.open", + "block.beehive.drip", + "block.beehive.enter", + "block.beehive.exit", + "block.beehive.shear", + "block.beehive.work", + "block.bell.hit", + "block.blastfurnace.fire_crackle", + "block.campfire.crackle", + "block.cartography_table.use", + "block.click", + "block.click.fail", + "block.composter.empty", + "block.composter.fill", + "block.composter.fill_success", + "block.composter.ready", + "block.copper_bulb.turn_off", + "block.copper_bulb.turn_on", + "block.decorated_pot.insert", + "block.decorated_pot.insert_fail", + "block.enchanting_table.use", + "block.end_portal.spawn", + "block.end_portal_frame.fill", + "block.fletching_table.use", + "block.frog_spawn.break", + "block.frog_spawn.hatch", + "block.furnace.lit", + "block.grindstone.use", + "block.loom.use", + "block.scaffolding.climb", + "block.sculk.spread", + "block.sculk_catalyst.bloom", + "block.sculk_sensor.place", + "block.sculk_shrieker.place", + "block.sculk_shrieker.shriek", + "block.sign.waxed_interact_fail", + "block.smithing_table.use", + "block.smoker.smoke", + "block.sniffer_egg.crack", + "block.sniffer_egg.hatch", + "block.stonecutter.use", + "block.sweet_berry_bush.hurt", + "block.sweet_berry_bush.pick", + "block.turtle_egg.attack", + "block.turtle_egg.break", + "block.turtle_egg.crack", + "block.turtle_egg.hatch", + "boost", + "born", + "bottle.dragonbreath", + "bottle.empty", + "bottle.fill", + "bow", + "bow.hit", + "break", + "break.block", + "break_pot", + "breathe", + "breeze_wind_charge.burst", + "brush", + "brush_completed", + "bubble.down", + "bubble.downinside", + "bubble.pop", + "bubble.up", + "bubble.upinside", + "bucket.empty.fish", + "bucket.empty.lava", + "bucket.empty.powder_snow", + "bucket.empty.water", + "bucket.fill.fish", + "bucket.fill.lava", + "bucket.fill.powder_snow", + "bucket.fill.water", + "bullet.hit", + "bundle.drop_contents", + "bundle.insert", + "bundle.remove_one", + "burp", + "button.click_off", + "button.click_on", + "cake.add_candle", + "camera.take_picture", + "cant_breed", + "cast.spell", + "cauldron_drip.lava.pointed_dripstone", + "cauldron_drip.water.pointed_dripstone", + "celebrate", + "charge", + "charge.sculk", + "chest.closed", + "chest.open", + "chime.amethyst_block", + "chorusdeath", + "chorusgrow", + "conduit.activate", + "conduit.ambient", + "conduit.attack", + "conduit.deactivate", + "conduit.short", + "convert_mooshroom", + "convert_to_drowned", + "convert_to_frog", + "convert_to_stray", + "converted_to_zombified", + "copper.wax.off", + "copper.wax.on", + "crafter.craft", + "crafter.disable_slot", + "crafter.fail", + "crossbow.loading.end", + "crossbow.loading.middle", + "crossbow.loading.start", + "crossbow.quick_charge.end", + "crossbow.quick_charge.middle", + "crossbow.quick_charge.start", + "crossbow.shoot", + "dash_ready", + "death", + "death.baby", + "death.in.water", + "death.mid.volume", + "death.min.volume", + "death.screamer", + "death.to.zombie", + "default", + "deny", + "detach", + "disappeared", + "door.close", + "door.open", + "drink", + "drink.honey", + "drink.milk", + "drip.lava.pointed_dripstone", + "drip.water.pointed_dripstone", + "drop.slot", + "eat", + "elderguardian.curse", + "elemconstruct.open", + "enderchest.closed", + "enderchest.open", + "explode", + "extinguish.candle", + "extinguish.fire", + "fall", + "fall.big", + "fall.small", + "fang", + "fence_gate.close", + "fence_gate.open", + "fire", + "fizz", + "flap", + "flop", + "fly", + "fuse", + "gallop", + "glass", + "glow_squid.ink_squirt", + "glowstick.use", + "growl", + "haggle", + "haggle.idle", + "haggle.no", + "haggle.yes", + "heartbeat", + "heavy.step", + "hit", + "horn_break", + "horn_call0", + "horn_call1", + "horn_call2", + "horn_call3", + "horn_call4", + "horn_call5", + "horn_call6", + "horn_call7", + "hurt", + "hurt.baby", + "hurt.in.water", + "hurt.reduced", + "hurt.screamer", + "icebomb.hit", + "ignite", + "imitate.blaze", + "imitate.breeze", + "imitate.cave_spider", + "imitate.creeper", + "imitate.elder_guardian", + "imitate.ender_dragon", + "imitate.enderman", + "imitate.evocation_illager", + "imitate.ghast", + "imitate.husk", + "imitate.illusion_illager", + "imitate.magma_cube", + "imitate.polar_bear", + "imitate.shulker", + "imitate.silverfish", + "imitate.skeleton", + "imitate.slime", + "imitate.spider", + "imitate.stray", + "imitate.vex", + "imitate.vindication_illager", + "imitate.warden", + "imitate.witch", + "imitate.wither", + "imitate.wither_skeleton", + "imitate.wolf", + "imitate.zombie", + "imitate.zombie_pigman", + "imitate.zombie_villager", + "insert", + "insert_enchanted", + "irongolem.crack", + "irongolem.repair", + "item.book.put", + "item.fizz", + "item.shield.block", + "item.spyglass.stop_using", + "item.spyglass.use", + "item.trident.hit", + "item.trident.hit_ground", + "item.trident.return", + "item.trident.riptide_1", + "item.trident.riptide_2", + "item.trident.riptide_3", + "item.trident.throw", + "item.trident.thunder", + "item.use.on", + "item_given", + "item_taken", + "item_thrown", + "jump", + "jump.prevent", + "jump_to_block", + "land", + "large.blast", + "launch", + "lava", + "lava.pop", + "lay_egg", + "lay_spawn", + "leashknot.break", + "leashknot.place", + "levelup", + "listening", + "listening_angry", + "lodestone_compass.link_compass_to_lodestone", + "lt.reaction.bleach", + "lt.reaction.epaste", + "lt.reaction.epaste2", + "lt.reaction.fertilizer", + "lt.reaction.fire", + "lt.reaction.fireball", + "lt.reaction.icebomb", + "lt.reaction.mgsalt", + "lt.reaction.miscexplosion", + "lt.reaction.miscfire", + "lt.reaction.miscmystical", + "lt.reaction.miscmystical2", + "lt.reaction.product", + "mace.heavy_smash_ground", + "mace.smash_air", + "mace.smash_ground", + "mad", + "milk", + "milk.screamer", + "milk_suspiciously", + "mob.armadillo.brush", + "mob.armadillo.scute_drop", + "mob.armor_stand.place", + "mob.hoglin.converted_to_zombified", + "mob.husk.convert_to_zombie", + "mob.pig.death", + "mob.player.hurt_drown", + "mob.player.hurt_freeze", + "mob.player.hurt_on_fire", + "mob.warning", + "mob.warning.baby", + "nearby_close", + "nearby_closer", + "nearby_closest", + "note", + "note.bass", + "ominous_bottle.end_use", + "ominous_item_spawner.about_to_spawn_item", + "ominous_item_spawner.spawn_item", + "ominous_item_spawner.spawn_item_begin", + "panic", + "pant", + "particle.soul_escape.loud", + "particle.soul_escape.quiet", + "pick_berries.cave_vines", + "pickup", + "pickup_enchanted", + "piston.in", + "piston.out", + "place", + "plop", + "pop", + "portal", + "portal.travel", + "potion.brewed", + "power.off", + "power.off.sculk_sensor", + "power.on", + "power.on.sculk_sensor", + "pre_ram", + "pre_ram.screamer", + "prepare.attack", + "prepare.summon", + "prepare.wololo", + "presneeze", + "pressure_plate.click_off", + "pressure_plate.click_on", + "pumpkin.carve", + "purr", + "purreow", + "raid.horn", + "ram_impact", + "ram_impact.screamer", + "random.anvil_use", + "reappeared", + "record.11", + "record.13", + "record.5", + "record.blocks", + "record.cat", + "record.chirp", + "record.creator", + "record.creator_music_box", + "record.far", + "record.mall", + "record.mellohi", + "record.otherside", + "record.pigstep", + "record.precipice", + "record.relic", + "record.stal", + "record.strad", + "record.wait", + "record.ward", + "reflect", + "remedy", + "respawn_anchor.ambient", + "respawn_anchor.basalt_deltas.mood", + "respawn_anchor.charge", + "respawn_anchor.deplete", + "respawn_anchor.set_spawn", + "retreat", + "roar", + "saddle", + "scared", + "scrape", + "screech", + "shake", + "shatter_pot", + "shear", + "shoot", + "shulker.close", + "shulker.open", + "shulkerbox.closed", + "shulkerbox.open", + "sleep", + "smithing_table.use", + "sneeze", + "sonic_boom", + "sonic_charge", + "sparkler.active", + "sparkler.use", + "spawn", + "splash", + "squid.ink_squirt", + "squish.big", + "squish.small", + "stare", + "step", + "step.baby", + "step_lava", + "step_sand", + "stun", + "swim", + "swoop", + "takeoff", + "teleport", + "tempt", + "thorns", + "throw", + "thunder", + "tilt_down.big_dripleaf", + "tilt_up.big_dripleaf", + "tongue", + "trapdoor.close", + "trapdoor.open", + "trial_spawner.ambient", + "trial_spawner.ambient_ominous", + "trial_spawner.charge_activate", + "trial_spawner.close_shutter", + "trial_spawner.detect_player", + "trial_spawner.eject_item", + "trial_spawner.open_shutter", + "trial_spawner.spawn_mob", + "tripod", + "twinkle", + "ui.cartography_table.take_result", + "ui.loom.take_result", + "ui.stonecutter.take_result", + "undefined", + "unfect", + "vault.activate", + "vault.ambient", + "vault.close_shutter", + "vault.deactivate", + "vault.eject_item", + "vault.insert_item", + "vault.insert_item_fail", + "vault.open_shutter", + "warn", + "water", + "whine", + "wind_charge.burst" + ] + } + } + }, + "2801422565": { + "title": "minecraft:interact_button v1.20.50", + "description": "This component is a boolean or string that determines if the interact button is shown in touch controls and what text is displayed on the button. When set as true, default \"Use Item\" text will be displayed.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "string" + } + ] + }, + "2819452145": { + "title": "minecraft:can_destroy_in_creative v1.20.50", + "description": "The can_destroy_in_creative component determines if the item can be used by a player to break blocks when in creative mode.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Determines whether the item can be used to destroy blocks while in creative mode.", + "type": "boolean" + } + } + } + ] + }, + "2836600109": { + "title": "struct Puv::v1_20_50::BlockDescriptorSerializer::BlockDescriptorProxy", + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "states": { + "title": "associative container (class std::map,class std::allocator >,struct Puv::v1_20_50::BlockDescriptor::Compound,struct std::less,class std::allocator > >,class std::allocator,class std::allocator > const ,struct Puv::v1_20_50::BlockDescriptor::Compound> > >)", + "type": "object", + "additionalProperties": { + "$ref": "#/$defs/1290538044" + } + }, + "tags": { + "type": "string" + } + } + }, + "2849785526": { + "title": "struct Puv::Legacy::ItemDescriptor", + "oneOf": [ + { + "type": "string" + }, + { + "title": "associative container (class std::map,class std::allocator >,class std::basic_string,class std::allocator >,struct std::less,class std::allocator > >,class std::allocator,class std::allocator > const ,class std::basic_string,class std::allocator > > > >)", + "type": "object", + "additionalProperties": { + "type": "string" + } + } + ] + }, + "2987623390": { + "title": "minecraft:allow_off_hand v1.20.50", + "description": "The allow_off_hand component determines whether the item can be placed in the off hand slot of the inventory.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Determines whether the item can be placed in the off hand slot.", + "type": "boolean" + } + } + } + ] + }, + "3372804247": { + "title": "minecraft:fuel v1.20.50", + "description": "Fuel item component allows this item to be used as fuel in a furnace to 'cook' other items.", + "oneOf": [ + { + "minimum": 0.05000000074505806, + "type": "number" + }, + { + "type": "object", + "properties": { + "duration": { + "description": "Amount of time, in seconds, this fuel will cook items.", + "minimum": 0.05000000074505806, + "type": "number" + } + } + } + ] + }, + "3421086714": { + "title": "struct Puv::v1_20_50::DiggerItemComponent::BlockInfo", + "type": "object", + "properties": { + "block": { + "description": "Block to be dug.", + "$ref": "#/$defs/4107396053" + }, + "speed": { + "description": "Digging speed for the correlating block(s).", + "type": "integer" + } + }, + "required": [ + "block", + "speed" + ] + }, + "3520278386": { + "title": "minecraft:use_animation v1.20.50", + "description": "Use_animation specifies which animation is played when the player uses the item.", + "oneOf": [ + { + "title": "enum Puv::Legacy::UseAnimation", + "type": "string", + "enum": [ + "block", + "bow", + "brush", + "camera", + "crossbow", + "drink", + "eat", + "none", + "spear", + "spyglass" + ] + }, + { + "type": "object", + "properties": { + "value": { + "title": "enum Puv::Legacy::UseAnimation", + "description": "Specifies which animation to play when the the item is used.", + "type": "string", + "enum": [ + "block", + "bow", + "brush", + "camera", + "crossbow", + "drink", + "eat", + "none", + "spear", + "spyglass" + ] + } + } + } + ] + }, + "3566406297": { + "title": "minecraft:stacked_by_data v1.20.50", + "description": "The stacked_by_data component determines whether the same items with different aux values can stack. Also defines whether the item entities can merge while floating in the world.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Determines whether the same item with different aux values can stack. Also defines whether the item entities can merge while floating in the world.", + "type": "boolean" + } + } + } + ] + }, + "3633237758": { + "title": "minecraft:max_stack_size v1.20.50", + "description": "The max_stack_size component specifies how many of the item can be stacked together.", + "oneOf": [ + { + "minimum": 1.0, + "maximum": 64.0, + "type": "integer" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Specifies how many of the item that can be stacked.", + "minimum": 1.0, + "maximum": 64.0, + "type": "integer" + } + } + } + ] + }, + "3792304927": { + "title": "minecraft:hand_equipped v1.20.50", + "description": "The hand_equipped component determines if an item is rendered like a tool while it is in a player's hand.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Determines whether the item is rendered like a tool while in the player's hand.", + "type": "boolean" + } + } + } + ] + }, + "3828799658": { + "title": "minecraft:enchantable v1.20.50", + "description": "The enchantable component specifies what enchantments can be applied to the item. Not all enchantments will have an effect on all item components.", + "type": "object", + "properties": { + "slot": { + "description": "Specifies which types of enchantments can be applied. For example, `bow` would allow this item to be enchanted as if it were a bow.", + "type": "string" + }, + "value": { + "description": "Specifies the value of the enchantment (minimum of 0).", + "minimum": 0.0, + "type": "integer" + } + }, + "required": [ + "slot", + "value" + ] + }, + "3906212947": { + "title": "minecraft:food v1.20.50", + "description": "When an item has a food component, it becomes edible to the player. Must have the 'minecraft:use_duration' component in order to function properly.", + "type": "object", + "properties": { + "can_always_eat": { + "description": "If true you can always eat this item (even when not hungry). Default is set to false.", + "type": "boolean" + }, + "nutrition": { + "description": "Value that is added to the entity's nutrition when the item is used. Default is set to 0.", + "type": "integer" + }, + "saturation_modifier": { + "description": "saturation_modifier is used in this formula: (nutrition * saturation_modifier * 2) when applying the saturation buff. Default is set to 0.6.", + "minimum": 0.0, + "type": "number" + }, + "using_converts_to": { + "description": "When used, converts to the item specified by the string in this field. Default does not convert item.", + "$ref": "#/$defs/2849785526" + } + } + }, + "396877356": { + "title": "minecraft:icon v1.20.50", + "oneOf": [ + { + "type": "string" + }, + { + "type": "object", + "properties": { + "texture": { + "description": "The key from the resource_pack/textures/item_texture.json 'texture_data' object associated with the texture file.", + "type": "string" + } + } + } + ] + }, + "4107396053": { + "title": "struct Puv::v1_20_50::BlockDescriptor", + "oneOf": [ + { + "$ref": "#/$defs/2836600109" + }, + { + "minLength": 1, + "type": "string" + } + ] + }, + "4167449497": { + "title": "struct Puv::IntRange", + "type": "object", + "properties": { + "max": { + "type": "integer" + }, + "min": { + "type": "integer" + } + } + }, + "4293809098": { + "title": "minecraft:display_name v1.20.50", + "description": "The display_name item component specifies the text shown whenever an item's name is displayed, like in hover text.", + "type": "object", + "properties": { + "value": { + "description": "Name shown for an item.", + "type": "string" + } + } + }, + "466752078": { + "title": "minecraft:use_modifiers v1.20.50", + "description": "This component modifies use effects, including how long the item takes to use and the player's speed when used in combination with components like \"shooter\", \"throwable\", or \"food\".", + "type": "object", + "properties": { + "movement_modifier": { + "description": "Modifier value to scale the players movement speed when item is in use.", + "minimum": 0.0, + "maximum": 1.0, + "type": "number" + }, + "use_duration": { + "description": "How long the item takes to use in seconds.", + "minimum": 0.0, + "type": "number" + } + } + }, + "757583938": { + "title": "minecraft:item_storage v1.20.50", + "description": "The Storage Item Component is used for storing Items within an Item's User Data", + "type": "object", + "properties": { + "capacity": { + "description": "The max capacity of the item. Default is 64", + "type": "integer" + } + } + }, + "869455920": { + "title": "minecraft:should_despawn v1.20.50", + "description": "Should_despawn component determines if the item should eventually despawn while floating in the world", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Determines whether the item should eventually despawn while floating in the world.", + "type": "boolean" + } + } + } + ] + }, + "910690552": { + "title": "minecraft:liquid_clipped v1.20.50", + "description": "The liquid_clipped component determines whether the item interacts with liquid blocks on use.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Deterines whether the item interacts with liquid blocks on use.", + "type": "boolean" + } + } + } + ] + } + } +} \ No newline at end of file diff --git a/metadata/json_schemas/Component v1.20.60.json b/metadata/json_schemas/Component v1.20.60.json new file mode 100644 index 000000000..ff8e4f5a0 --- /dev/null +++ b/metadata/json_schemas/Component v1.20.60.json @@ -0,0 +1,1433 @@ +{ + "title": "components v1.20.60", + "description": "List of all components used in this item.", + "type": "object", + "properties": { + "minecraft:allow_off_hand": { + "description": "The allow_off_hand component determines whether the item can be placed in the off hand slot of the inventory.", + "$ref": "#/$defs/2987623390" + }, + "minecraft:block_placer": { + "description": "Items with the block_placer component will place a block when used.", + "$ref": "#/$defs/1178544591" + }, + "minecraft:can_destroy_in_creative": { + "description": "The can_destroy_in_creative component determines if the item can be used by a player to break blocks when in creative mode.", + "$ref": "#/$defs/2819452145" + }, + "minecraft:cooldown": { + "description": "After you use an item, all items specified with the same `cool down category` setting becomes unusable for the duration specified by the 'cool down time' setting in this component.", + "$ref": "#/$defs/1413510600" + }, + "minecraft:damage": { + "description": "The damage component determines how much extra damage the item does on attack.", + "$ref": "#/$defs/2355534844" + }, + "minecraft:digger": { + "description": "Digger item component specifies how quickly this item can dig specific blocks.", + "$ref": "#/$defs/1093953013" + }, + "minecraft:display_name": { + "description": "The display_name item component specifies the text shown whenever an item's name is displayed, like in hover text.", + "$ref": "#/$defs/4293809098" + }, + "minecraft:durability": { + "description": "The durability item component specifies how much damage the item takes before breaking, and allows the item to be combined to repair or augment them.", + "$ref": "#/$defs/2663653758" + }, + "minecraft:enchantable": { + "description": "The enchantable component specifies what enchantments can be applied to the item. Not all enchantments will have an effect on all item components.", + "$ref": "#/$defs/3828799658" + }, + "minecraft:entity_placer": { + "description": "The entity_placer item component specifies the blocks that the item can be placed on.", + "$ref": "#/$defs/2610026031" + }, + "minecraft:food": { + "description": "When an item has a food component, it becomes edible to the player. Must have the 'minecraft:use_duration' component in order to function properly.", + "$ref": "#/$defs/3906212947" + }, + "minecraft:fuel": { + "description": "Fuel item component allows this item to be used as fuel in a furnace to 'cook' other items.", + "$ref": "#/$defs/3372804247" + }, + "minecraft:glint": { + "description": "The glint component determines whether the item has the enchanted glint render effect on it.", + "$ref": "#/$defs/1025605201" + }, + "minecraft:hand_equipped": { + "description": "The hand_equipped component determines if an item is rendered like a tool while it is in a player's hand.", + "$ref": "#/$defs/3792304927" + }, + "minecraft:hover_text_color": { + "description": "The hover_text_color component specifies the color of the item name when the players hovers the cursor over the item.", + "$ref": "#/$defs/1862654147" + }, + "minecraft:icon": { + "description": "Icon item component determines which icon graphic will be used to represent the item in the UI and elsewhere.", + "$ref": "#/$defs/3209899485" + }, + "minecraft:interact_button": { + "description": "This component is a boolean or string that determines if the interact button is shown in touch controls and what text is displayed on the button. When set as true, default \"Use Item\" text will be displayed.", + "$ref": "#/$defs/2801422565" + }, + "minecraft:item_storage": { + "description": "The Storage Item Component is used for storing Items within an Item's User Data", + "$ref": "#/$defs/757583938" + }, + "minecraft:liquid_clipped": { + "description": "The liquid_clipped component determines whether the item interacts with liquid blocks on use.", + "$ref": "#/$defs/910690552" + }, + "minecraft:max_stack_size": { + "description": "The max_stack_size component specifies how many of the item can be stacked together.", + "$ref": "#/$defs/3633237758" + }, + "minecraft:projectile": { + "description": "Projectile items shoot out, like an arrow.", + "$ref": "#/$defs/2543985138" + }, + "minecraft:record": { + "description": "Record Item Component. Used by record items to play music.", + "$ref": "#/$defs/2714251964" + }, + "minecraft:repairable": { + "description": "The repairable item component specifies which items can be used to repair this item, along with how much durability is gained.", + "$ref": "#/$defs/2707383096" + }, + "minecraft:shooter": { + "description": "Shooter Item Component.", + "$ref": "#/$defs/1861287593" + }, + "minecraft:should_despawn": { + "description": "Should_despawn component determines if the item should eventually despawn while floating in the world", + "$ref": "#/$defs/869455920" + }, + "minecraft:stacked_by_data": { + "description": "The stacked_by_data component determines whether the same items with different aux values can stack. Also defines whether the item entities can merge while floating in the world.", + "$ref": "#/$defs/3566406297" + }, + "minecraft:tags": { + "description": "The tags component specifies which tags an item has on it.", + "$ref": "#/$defs/2623865080" + }, + "minecraft:throwable": { + "description": "Throwable items can be thrown by the player, such as a snowball.", + "$ref": "#/$defs/2210327101" + }, + "minecraft:use_animation": { + "description": "Use_animation specifies which animation is played when the player uses the item.", + "$ref": "#/$defs/3520278386" + }, + "minecraft:use_modifiers": { + "description": "This component modifies use effects, including how long the item takes to use and the player's speed when used in combination with components like \"shooter\", \"throwable\", or \"food\".", + "$ref": "#/$defs/466752078" + }, + "minecraft:wearable": { + "description": "Wearable items can be worn by a player in the head, chest, legs, feet, or off-hand slots.", + "$ref": "#/$defs/2024711926" + } + }, + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "components v1.20.60", + "$defs": { + "1025605201": { + "title": "minecraft:glint v1.20.50", + "description": "The glint component determines whether the item has the enchanted glint render effect on it.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Determines whether the item has the glint effect.", + "type": "boolean" + } + } + } + ] + }, + "1093953013": { + "title": "minecraft:digger v1.20.50", + "description": "Digger item component specifies how quickly this item can dig specific blocks.", + "type": "object", + "properties": { + "destroy_speeds": { + "title": "sequence container (class std::vector >)", + "description": "A list of blocks to dig with correlating speeds of digging.", + "type": "array", + "items": { + "$ref": "#/$defs/3421086714" + } + }, + "use_efficiency": { + "description": "Determines whether this item should be impacted if the efficiency enchantment is applied to it.", + "type": "boolean" + } + } + }, + "1178544591": { + "title": "minecraft:block_placer v1.20.50", + "description": "Items with the block_placer component will place a block when used.", + "type": "object", + "properties": { + "block": { + "description": "Defines the block that will be placed.", + "type": "string" + }, + "use_on": { + "title": "sequence container (class std::vector >)", + "description": "List of block descriptors of the blocks that this item can be used on. If left empty, all blocks will be allowed.", + "type": "array", + "items": { + "$ref": "#/$defs/4107396053" + } + } + }, + "required": [ + "block" + ] + }, + "1181846166": { + "title": "struct Puv::Legacy::ExpressionNode", + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "object", + "properties": { + "expression": { + "type": "string" + }, + "version": { + "type": "integer" + } + }, + "required": [ + "expression", + "version" + ] + } + ] + }, + "1290538044": { + "title": "compound_proxy", + "oneOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "1413510600": { + "title": "minecraft:cooldown v1.20.50", + "description": "After you use an item, all items specified with the same `cool down category` setting becomes unusable for the duration specified by the 'cool down time' setting in this component.", + "type": "object", + "properties": { + "category": { + "description": "The type of cool down for this item. All items with a cool down component with the same category are put on cool down when one is used.", + "type": "string" + }, + "duration": { + "description": "The duration of time (in seconds) items with a matching category will spend cooling down before becoming usable again.", + "type": "number" + } + }, + "required": [ + "category", + "duration" + ] + }, + "1861287593": { + "title": "minecraft:shooter v1.20.50", + "description": "Shooter Item Component.", + "type": "object", + "properties": { + "ammunition": { + "title": "sequence container (class std::vector >)", + "description": "Ammunition.", + "type": "array", + "items": { + "$ref": "#/$defs/2221989686" + } + }, + "charge_on_draw": { + "description": "Charge on draw? Default is set to false.", + "type": "boolean" + }, + "max_draw_duration": { + "description": "Draw Duration. Default is set to 0.", + "type": "number" + }, + "scale_power_by_draw_duration": { + "description": "Scale power by draw duration? Default is set to false.", + "type": "boolean" + } + } + }, + "1862654147": { + "title": "minecraft:hover_text_color v1.20.50", + "description": "The hover_text_color component specifies the color of the item name when the players hovers the cursor over the item.", + "oneOf": [ + { + "type": "string" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Specifies the color of the item's hover text.", + "type": "string" + } + } + } + ] + }, + "2024711926": { + "title": "minecraft:wearable v1.20.50", + "description": "Wearable items can be worn by a player in the head, chest, legs, feet, or off-hand slots.", + "type": "object", + "properties": { + "protection": { + "description": "How much protection the wearable item provides. Default is set to 0.", + "minimum": 0.0, + "type": "integer" + }, + "slot": { + "title": "enum Puv::Legacy::EquipmentSlot", + "description": "Specifies where the item can be worn. If any non-hand slot is chosen, the max stack size is set to 1.", + "type": "string", + "enum": [ + "slot.armor.chest", + "slot.armor.feet", + "slot.armor.head", + "slot.armor.legs", + "slot.weapon.offhand" + ] + } + }, + "required": [ + "slot" + ] + }, + "2122767410": { + "title": "struct Puv::v1_20_50::RepairableItemComponent::RepairItemEntry", + "oneOf": [ + { + "title": "sequence container (class std::vector >)", + "type": "array", + "items": { + "$ref": "#/$defs/2849785526" + } + }, + { + "type": "object", + "properties": { + "items": { + "title": "sequence container (class std::vector >)", + "description": "Items that may be used to repair an item.", + "type": "array", + "items": { + "$ref": "#/$defs/2849785526" + } + }, + "repair_amount": { + "description": "How much the item is repaired.", + "$ref": "#/$defs/1181846166" + } + }, + "required": [ + "items" + ] + } + ] + }, + "2210327101": { + "title": "minecraft:throwable v1.20.50", + "description": "Throwable items can be thrown by the player, such as a snowball.", + "type": "object", + "properties": { + "default_offset_scale": { + "description": "The scale at which the throw position is adjusted by the aim direction.", + "type": "number" + }, + "do_swing_animation": { + "description": "Determines whether the item should use the swing animation when thrown. Default is set to false.", + "type": "boolean" + }, + "inside_block_offset_scale": { + "description": "The scale at which the throw position is adjusted by the aim direction if the default throw position is inside a solid block.", + "type": "number" + }, + "launch_power_scale": { + "description": "The scale at which the power of the throw increases. Default is set to 1.0.", + "type": "number" + }, + "max_draw_duration": { + "description": "The maximum duration to draw a throwable item. Default is set to 0.0.", + "type": "number" + }, + "max_launch_power": { + "description": "The maximum power to launch the throwable item. Default is set to 1.0.", + "type": "number" + }, + "min_draw_duration": { + "description": "The minimum duration to draw a throwable item. Default is set to 0.0.", + "type": "number" + }, + "scale_power_by_draw_duration": { + "description": "Whether or not the power of the throw increases with duration charged. Default is set to false.", + "type": "boolean" + } + } + }, + "2221989686": { + "title": "struct Puv::v1_20_50::ShooterItemComponent::Ammunition", + "type": "object", + "properties": { + "item": { + "description": "Ammunition item description identifier.", + "$ref": "#/$defs/2849785526" + }, + "search_inventory": { + "description": "Can search inventory? Default is set to false.", + "type": "boolean" + }, + "use_in_creative": { + "description": "Can use in creative mode? Default is set to false.", + "type": "boolean" + }, + "use_offhand": { + "description": "Can use off-hand? Default is set to false.", + "type": "boolean" + } + }, + "required": [ + "item" + ] + }, + "2355534844": { + "title": "minecraft:damage v1.20.50", + "description": "The damage component determines how much extra damage the item does on attack.", + "oneOf": [ + { + "minimum": 0.0, + "type": "integer" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Specifies how much extra damage the item does, must be a positive number.", + "minimum": 0.0, + "type": "integer" + } + } + } + ] + }, + "2543985138": { + "title": "minecraft:projectile v1.20.50", + "description": "Projectile items shoot out, like an arrow.", + "type": "object", + "properties": { + "minimum_critical_power": { + "description": "Specifies how long a player must charge a projectile for it to critically hit.", + "type": "number" + }, + "projectile_entity": { + "description": "Which entity is to be fired as a projectile.", + "minLength": 0, + "maxLength": 18446744073709551615, + "pattern": "^(?:\\w+(?:\\.\\w+)*:(?=\\w))?(?:\\w+(?:\\.\\w+)*)(?:<((?:\\w+(?:\\.\\w+)*:(?=\\w))?\\w+(?:\\.\\w+)*)*>)?$", + "type": "string" + } + }, + "required": [ + "projectile_entity" + ] + }, + "2610026031": { + "title": "minecraft:entity_placer v1.20.50", + "description": "The entity_placer item component specifies the blocks that the item can be placed on.", + "type": "object", + "properties": { + "dispense_on": { + "title": "sequence container (class std::vector >)", + "description": "List of block descriptors of the blocks that this item can be dispensed on. If left empty, all blocks will be allowed.", + "type": "array", + "items": { + "$ref": "#/$defs/4107396053" + } + }, + "entity": { + "description": "The entity to be placed in the world.", + "minLength": 0, + "maxLength": 18446744073709551615, + "pattern": "^(?:\\w+(?:\\.\\w+)*:(?=\\w))?(?:\\w+(?:\\.\\w+)*)(?:<((?:\\w+(?:\\.\\w+)*:(?=\\w))?\\w+(?:\\.\\w+)*)*>)?$", + "type": "string" + }, + "use_on": { + "title": "sequence container (class std::vector >)", + "description": "List of block descriptors of the blocks that this item can be used on. If left empty, all blocks will be allowed.", + "type": "array", + "items": { + "$ref": "#/$defs/4107396053" + } + } + } + }, + "2623865080": { + "title": "minecraft:tags v1.20.50", + "description": "The tags component specifies which tags an item has on it.", + "type": "object", + "properties": { + "tags": { + "title": "sequence container (class std::vector,class std::allocator >,class std::allocator,class std::allocator > > >)", + "description": "An array that can contain multiple item tags.", + "type": "array", + "items": { + "type": "string" + } + } + } + }, + "2663653758": { + "title": "minecraft:durability v1.20.50", + "description": "The durability item component specifies how much damage the item takes before breaking, and allows the item to be combined to repair or augment them.", + "type": "object", + "properties": { + "damage_chance": { + "description": "Specifies the percentage chance of this item losing durability. Default is set to 100. Defined as an int range with min and max value.", + "$ref": "#/$defs/4167449497" + }, + "max_durability": { + "description": "Max durability is the amount of damage that this item can take before breaking. This is a required parameter and has a minimum of 0.", + "minimum": 0.0, + "type": "integer" + } + }, + "required": [ + "max_durability" + ] + }, + "2707383096": { + "title": "minecraft:repairable v1.20.50", + "description": "The repairable item component specifies which items can be used to repair this item, along with how much durability is gained.", + "type": "object", + "properties": { + "repair_items": { + "title": "sequence container (class std::vector >)", + "description": "List of repair item entries. Each entry needs to define a list of strings for `items` that can be used for the repair and an optional `repair_amount` for how much durability is gained.", + "type": "array", + "items": { + "$ref": "#/$defs/2122767410" + } + } + } + }, + "2714251964": { + "title": "minecraft:record v1.20.50", + "description": "Record Item Component. Used by record items to play music.", + "type": "object", + "properties": { + "comparator_signal": { + "description": "Specifies signal strength for comparator blocks to use, from 1 - 13.", + "type": "integer" + }, + "duration": { + "description": "Specifies duration of sound event in seconds, float value.", + "type": "number" + }, + "sound_event": { + "title": "enum Puv::Legacy::LevelSoundEvent", + "description": "Sound event type: 13, cat, blocks, chirp, far, mall, mellohi, stal, strad, ward, 11, wait, pigstep, otherside, 5, relic.", + "type": "string", + "enum": [ + "add.chest", + "admire", + "agitated", + "ambient", + "ambient.aggressive", + "ambient.baby", + "ambient.basalt_deltas.additions", + "ambient.basalt_deltas.loop", + "ambient.candle", + "ambient.cave", + "ambient.crimson_forest.additions", + "ambient.crimson_forest.loop", + "ambient.crimson_forest.mood", + "ambient.in.air", + "ambient.in.raid", + "ambient.in.water", + "ambient.nether_wastes.additions", + "ambient.nether_wastes.loop", + "ambient.nether_wastes.mood", + "ambient.pollinate", + "ambient.screamer", + "ambient.soulsand_valley.additions", + "ambient.soulsand_valley.loop", + "ambient.soulsand_valley.mood", + "ambient.tame", + "ambient.underwater.enter", + "ambient.underwater.exit", + "ambient.warped_forest.additions", + "ambient.warped_forest.loop", + "ambient.warped_forest.mood", + "ambient.worried", + "angry", + "apply_effect.bad_omen", + "apply_effect.raid_omen", + "apply_effect.trial_omen", + "armor", + "armor.break_wolf", + "armor.crack_wolf", + "armor.equip_chain", + "armor.equip_diamond", + "armor.equip_elytra", + "armor.equip_generic", + "armor.equip_gold", + "armor.equip_iron", + "armor.equip_leather", + "armor.equip_netherite", + "armor.equip_wolf", + "armor.repair_wolf", + "armor.unequip_wolf", + "attach", + "attack", + "attack.nodamage", + "attack.strong", + "balloonpop", + "beacon.activate", + "beacon.ambient", + "beacon.deactivate", + "beacon.power", + "blast", + "block.bamboo_sapling.place", + "block.barrel.close", + "block.barrel.open", + "block.beehive.drip", + "block.beehive.enter", + "block.beehive.exit", + "block.beehive.shear", + "block.beehive.work", + "block.bell.hit", + "block.blastfurnace.fire_crackle", + "block.campfire.crackle", + "block.cartography_table.use", + "block.click", + "block.click.fail", + "block.composter.empty", + "block.composter.fill", + "block.composter.fill_success", + "block.composter.ready", + "block.copper_bulb.turn_off", + "block.copper_bulb.turn_on", + "block.decorated_pot.insert", + "block.decorated_pot.insert_fail", + "block.enchanting_table.use", + "block.end_portal.spawn", + "block.end_portal_frame.fill", + "block.fletching_table.use", + "block.frog_spawn.break", + "block.frog_spawn.hatch", + "block.furnace.lit", + "block.grindstone.use", + "block.loom.use", + "block.scaffolding.climb", + "block.sculk.spread", + "block.sculk_catalyst.bloom", + "block.sculk_sensor.place", + "block.sculk_shrieker.place", + "block.sculk_shrieker.shriek", + "block.sign.waxed_interact_fail", + "block.smithing_table.use", + "block.smoker.smoke", + "block.sniffer_egg.crack", + "block.sniffer_egg.hatch", + "block.stonecutter.use", + "block.sweet_berry_bush.hurt", + "block.sweet_berry_bush.pick", + "block.turtle_egg.attack", + "block.turtle_egg.break", + "block.turtle_egg.crack", + "block.turtle_egg.hatch", + "boost", + "born", + "bottle.dragonbreath", + "bottle.empty", + "bottle.fill", + "bow", + "bow.hit", + "break", + "break.block", + "break_pot", + "breathe", + "breeze_wind_charge.burst", + "brush", + "brush_completed", + "bubble.down", + "bubble.downinside", + "bubble.pop", + "bubble.up", + "bubble.upinside", + "bucket.empty.fish", + "bucket.empty.lava", + "bucket.empty.powder_snow", + "bucket.empty.water", + "bucket.fill.fish", + "bucket.fill.lava", + "bucket.fill.powder_snow", + "bucket.fill.water", + "bullet.hit", + "bundle.drop_contents", + "bundle.insert", + "bundle.remove_one", + "burp", + "button.click_off", + "button.click_on", + "cake.add_candle", + "camera.take_picture", + "cant_breed", + "cast.spell", + "cauldron_drip.lava.pointed_dripstone", + "cauldron_drip.water.pointed_dripstone", + "celebrate", + "charge", + "charge.sculk", + "chest.closed", + "chest.open", + "chime.amethyst_block", + "chorusdeath", + "chorusgrow", + "conduit.activate", + "conduit.ambient", + "conduit.attack", + "conduit.deactivate", + "conduit.short", + "convert_mooshroom", + "convert_to_drowned", + "convert_to_frog", + "convert_to_stray", + "converted_to_zombified", + "copper.wax.off", + "copper.wax.on", + "crafter.craft", + "crafter.disable_slot", + "crafter.fail", + "crossbow.loading.end", + "crossbow.loading.middle", + "crossbow.loading.start", + "crossbow.quick_charge.end", + "crossbow.quick_charge.middle", + "crossbow.quick_charge.start", + "crossbow.shoot", + "dash_ready", + "death", + "death.baby", + "death.in.water", + "death.mid.volume", + "death.min.volume", + "death.screamer", + "death.to.zombie", + "default", + "deny", + "detach", + "disappeared", + "door.close", + "door.open", + "drink", + "drink.honey", + "drink.milk", + "drip.lava.pointed_dripstone", + "drip.water.pointed_dripstone", + "drop.slot", + "eat", + "elderguardian.curse", + "elemconstruct.open", + "enderchest.closed", + "enderchest.open", + "explode", + "extinguish.candle", + "extinguish.fire", + "fall", + "fall.big", + "fall.small", + "fang", + "fence_gate.close", + "fence_gate.open", + "fire", + "fizz", + "flap", + "flop", + "fly", + "fuse", + "gallop", + "glass", + "glow_squid.ink_squirt", + "glowstick.use", + "growl", + "haggle", + "haggle.idle", + "haggle.no", + "haggle.yes", + "heartbeat", + "heavy.step", + "hit", + "horn_break", + "horn_call0", + "horn_call1", + "horn_call2", + "horn_call3", + "horn_call4", + "horn_call5", + "horn_call6", + "horn_call7", + "hurt", + "hurt.baby", + "hurt.in.water", + "hurt.reduced", + "hurt.screamer", + "icebomb.hit", + "ignite", + "imitate.blaze", + "imitate.breeze", + "imitate.cave_spider", + "imitate.creeper", + "imitate.elder_guardian", + "imitate.ender_dragon", + "imitate.enderman", + "imitate.evocation_illager", + "imitate.ghast", + "imitate.husk", + "imitate.illusion_illager", + "imitate.magma_cube", + "imitate.polar_bear", + "imitate.shulker", + "imitate.silverfish", + "imitate.skeleton", + "imitate.slime", + "imitate.spider", + "imitate.stray", + "imitate.vex", + "imitate.vindication_illager", + "imitate.warden", + "imitate.witch", + "imitate.wither", + "imitate.wither_skeleton", + "imitate.wolf", + "imitate.zombie", + "imitate.zombie_pigman", + "imitate.zombie_villager", + "insert", + "insert_enchanted", + "irongolem.crack", + "irongolem.repair", + "item.book.put", + "item.fizz", + "item.shield.block", + "item.spyglass.stop_using", + "item.spyglass.use", + "item.trident.hit", + "item.trident.hit_ground", + "item.trident.return", + "item.trident.riptide_1", + "item.trident.riptide_2", + "item.trident.riptide_3", + "item.trident.throw", + "item.trident.thunder", + "item.use.on", + "item_given", + "item_taken", + "item_thrown", + "jump", + "jump.prevent", + "jump_to_block", + "land", + "large.blast", + "launch", + "lava", + "lava.pop", + "lay_egg", + "lay_spawn", + "leashknot.break", + "leashknot.place", + "levelup", + "listening", + "listening_angry", + "lodestone_compass.link_compass_to_lodestone", + "lt.reaction.bleach", + "lt.reaction.epaste", + "lt.reaction.epaste2", + "lt.reaction.fertilizer", + "lt.reaction.fire", + "lt.reaction.fireball", + "lt.reaction.icebomb", + "lt.reaction.mgsalt", + "lt.reaction.miscexplosion", + "lt.reaction.miscfire", + "lt.reaction.miscmystical", + "lt.reaction.miscmystical2", + "lt.reaction.product", + "mace.heavy_smash_ground", + "mace.smash_air", + "mace.smash_ground", + "mad", + "milk", + "milk.screamer", + "milk_suspiciously", + "mob.armadillo.brush", + "mob.armadillo.scute_drop", + "mob.armor_stand.place", + "mob.hoglin.converted_to_zombified", + "mob.husk.convert_to_zombie", + "mob.pig.death", + "mob.player.hurt_drown", + "mob.player.hurt_freeze", + "mob.player.hurt_on_fire", + "mob.warning", + "mob.warning.baby", + "nearby_close", + "nearby_closer", + "nearby_closest", + "note", + "note.bass", + "ominous_bottle.end_use", + "ominous_item_spawner.about_to_spawn_item", + "ominous_item_spawner.spawn_item", + "ominous_item_spawner.spawn_item_begin", + "panic", + "pant", + "particle.soul_escape.loud", + "particle.soul_escape.quiet", + "pick_berries.cave_vines", + "pickup", + "pickup_enchanted", + "piston.in", + "piston.out", + "place", + "plop", + "pop", + "portal", + "portal.travel", + "potion.brewed", + "power.off", + "power.off.sculk_sensor", + "power.on", + "power.on.sculk_sensor", + "pre_ram", + "pre_ram.screamer", + "prepare.attack", + "prepare.summon", + "prepare.wololo", + "presneeze", + "pressure_plate.click_off", + "pressure_plate.click_on", + "pumpkin.carve", + "purr", + "purreow", + "raid.horn", + "ram_impact", + "ram_impact.screamer", + "random.anvil_use", + "reappeared", + "record.11", + "record.13", + "record.5", + "record.blocks", + "record.cat", + "record.chirp", + "record.creator", + "record.creator_music_box", + "record.far", + "record.mall", + "record.mellohi", + "record.otherside", + "record.pigstep", + "record.precipice", + "record.relic", + "record.stal", + "record.strad", + "record.wait", + "record.ward", + "reflect", + "remedy", + "respawn_anchor.ambient", + "respawn_anchor.basalt_deltas.mood", + "respawn_anchor.charge", + "respawn_anchor.deplete", + "respawn_anchor.set_spawn", + "retreat", + "roar", + "saddle", + "scared", + "scrape", + "screech", + "shake", + "shatter_pot", + "shear", + "shoot", + "shulker.close", + "shulker.open", + "shulkerbox.closed", + "shulkerbox.open", + "sleep", + "smithing_table.use", + "sneeze", + "sonic_boom", + "sonic_charge", + "sparkler.active", + "sparkler.use", + "spawn", + "splash", + "squid.ink_squirt", + "squish.big", + "squish.small", + "stare", + "step", + "step.baby", + "step_lava", + "step_sand", + "stun", + "swim", + "swoop", + "takeoff", + "teleport", + "tempt", + "thorns", + "throw", + "thunder", + "tilt_down.big_dripleaf", + "tilt_up.big_dripleaf", + "tongue", + "trapdoor.close", + "trapdoor.open", + "trial_spawner.ambient", + "trial_spawner.ambient_ominous", + "trial_spawner.charge_activate", + "trial_spawner.close_shutter", + "trial_spawner.detect_player", + "trial_spawner.eject_item", + "trial_spawner.open_shutter", + "trial_spawner.spawn_mob", + "tripod", + "twinkle", + "ui.cartography_table.take_result", + "ui.loom.take_result", + "ui.stonecutter.take_result", + "undefined", + "unfect", + "vault.activate", + "vault.ambient", + "vault.close_shutter", + "vault.deactivate", + "vault.eject_item", + "vault.insert_item", + "vault.insert_item_fail", + "vault.open_shutter", + "warn", + "water", + "whine", + "wind_charge.burst" + ] + } + } + }, + "2801422565": { + "title": "minecraft:interact_button v1.20.50", + "description": "This component is a boolean or string that determines if the interact button is shown in touch controls and what text is displayed on the button. When set as true, default \"Use Item\" text will be displayed.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "string" + } + ] + }, + "2819452145": { + "title": "minecraft:can_destroy_in_creative v1.20.50", + "description": "The can_destroy_in_creative component determines if the item can be used by a player to break blocks when in creative mode.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Determines whether the item can be used to destroy blocks while in creative mode.", + "type": "boolean" + } + } + } + ] + }, + "2836600109": { + "title": "struct Puv::v1_20_50::BlockDescriptorSerializer::BlockDescriptorProxy", + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "states": { + "title": "associative container (class std::map,class std::allocator >,struct Puv::v1_20_50::BlockDescriptor::Compound,struct std::less,class std::allocator > >,class std::allocator,class std::allocator > const ,struct Puv::v1_20_50::BlockDescriptor::Compound> > >)", + "type": "object", + "additionalProperties": { + "$ref": "#/$defs/1290538044" + } + }, + "tags": { + "type": "string" + } + } + }, + "2849785526": { + "title": "struct Puv::Legacy::ItemDescriptor", + "oneOf": [ + { + "type": "string" + }, + { + "title": "associative container (class std::map,class std::allocator >,class std::basic_string,class std::allocator >,struct std::less,class std::allocator > >,class std::allocator,class std::allocator > const ,class std::basic_string,class std::allocator > > > >)", + "type": "object", + "additionalProperties": { + "type": "string" + } + } + ] + }, + "2987623390": { + "title": "minecraft:allow_off_hand v1.20.50", + "description": "The allow_off_hand component determines whether the item can be placed in the off hand slot of the inventory.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Determines whether the item can be placed in the off hand slot.", + "type": "boolean" + } + } + } + ] + }, + "3209899485": { + "title": "minecraft:icon v1.20.60", + "description": "Icon item component determines which icon graphic will be used to represent the item in the UI and elsewhere.", + "oneOf": [ + { + "type": "string" + }, + { + "type": "object", + "properties": { + "textures": { + "title": "associative container (class std::unordered_map,class std::allocator >,class std::basic_string,class std::allocator >,struct std::hash,class std::allocator > >,struct std::equal_to,class std::allocator > >,class std::allocator,class std::allocator > const ,class std::basic_string,class std::allocator > > > >)", + "description": "This map contains the different textures that can be used for the item's icon. Default will contain the actual icon texture. Armor trim textures and palettes can be specified here too. The icon textures are the keys from the resource_pack/textures/item_texture.json 'texture_data' object associated with the texture file.", + "type": "object", + "additionalProperties": { + "type": "string" + } + } + } + } + ] + }, + "3372804247": { + "title": "minecraft:fuel v1.20.50", + "description": "Fuel item component allows this item to be used as fuel in a furnace to 'cook' other items.", + "oneOf": [ + { + "minimum": 0.05000000074505806, + "type": "number" + }, + { + "type": "object", + "properties": { + "duration": { + "description": "Amount of time, in seconds, this fuel will cook items.", + "minimum": 0.05000000074505806, + "type": "number" + } + } + } + ] + }, + "3421086714": { + "title": "struct Puv::v1_20_50::DiggerItemComponent::BlockInfo", + "type": "object", + "properties": { + "block": { + "description": "Block to be dug.", + "$ref": "#/$defs/4107396053" + }, + "speed": { + "description": "Digging speed for the correlating block(s).", + "type": "integer" + } + }, + "required": [ + "block", + "speed" + ] + }, + "3520278386": { + "title": "minecraft:use_animation v1.20.50", + "description": "Use_animation specifies which animation is played when the player uses the item.", + "oneOf": [ + { + "title": "enum Puv::Legacy::UseAnimation", + "type": "string", + "enum": [ + "block", + "bow", + "brush", + "camera", + "crossbow", + "drink", + "eat", + "none", + "spear", + "spyglass" + ] + }, + { + "type": "object", + "properties": { + "value": { + "title": "enum Puv::Legacy::UseAnimation", + "description": "Specifies which animation to play when the the item is used.", + "type": "string", + "enum": [ + "block", + "bow", + "brush", + "camera", + "crossbow", + "drink", + "eat", + "none", + "spear", + "spyglass" + ] + } + } + } + ] + }, + "3566406297": { + "title": "minecraft:stacked_by_data v1.20.50", + "description": "The stacked_by_data component determines whether the same items with different aux values can stack. Also defines whether the item entities can merge while floating in the world.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Determines whether the same item with different aux values can stack. Also defines whether the item entities can merge while floating in the world.", + "type": "boolean" + } + } + } + ] + }, + "3633237758": { + "title": "minecraft:max_stack_size v1.20.50", + "description": "The max_stack_size component specifies how many of the item can be stacked together.", + "oneOf": [ + { + "minimum": 1.0, + "maximum": 64.0, + "type": "integer" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Specifies how many of the item that can be stacked.", + "minimum": 1.0, + "maximum": 64.0, + "type": "integer" + } + } + } + ] + }, + "3792304927": { + "title": "minecraft:hand_equipped v1.20.50", + "description": "The hand_equipped component determines if an item is rendered like a tool while it is in a player's hand.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Determines whether the item is rendered like a tool while in the player's hand.", + "type": "boolean" + } + } + } + ] + }, + "3828799658": { + "title": "minecraft:enchantable v1.20.50", + "description": "The enchantable component specifies what enchantments can be applied to the item. Not all enchantments will have an effect on all item components.", + "type": "object", + "properties": { + "slot": { + "description": "Specifies which types of enchantments can be applied. For example, `bow` would allow this item to be enchanted as if it were a bow.", + "type": "string" + }, + "value": { + "description": "Specifies the value of the enchantment (minimum of 0).", + "minimum": 0.0, + "type": "integer" + } + }, + "required": [ + "slot", + "value" + ] + }, + "3906212947": { + "title": "minecraft:food v1.20.50", + "description": "When an item has a food component, it becomes edible to the player. Must have the 'minecraft:use_duration' component in order to function properly.", + "type": "object", + "properties": { + "can_always_eat": { + "description": "If true you can always eat this item (even when not hungry). Default is set to false.", + "type": "boolean" + }, + "nutrition": { + "description": "Value that is added to the entity's nutrition when the item is used. Default is set to 0.", + "type": "integer" + }, + "saturation_modifier": { + "description": "saturation_modifier is used in this formula: (nutrition * saturation_modifier * 2) when applying the saturation buff. Default is set to 0.6.", + "minimum": 0.0, + "type": "number" + }, + "using_converts_to": { + "description": "When used, converts to the item specified by the string in this field. Default does not convert item.", + "$ref": "#/$defs/2849785526" + } + } + }, + "4107396053": { + "title": "struct Puv::v1_20_50::BlockDescriptor", + "oneOf": [ + { + "$ref": "#/$defs/2836600109" + }, + { + "minLength": 1, + "type": "string" + } + ] + }, + "4167449497": { + "title": "struct Puv::IntRange", + "type": "object", + "properties": { + "max": { + "type": "integer" + }, + "min": { + "type": "integer" + } + } + }, + "4293809098": { + "title": "minecraft:display_name v1.20.50", + "description": "The display_name item component specifies the text shown whenever an item's name is displayed, like in hover text.", + "type": "object", + "properties": { + "value": { + "description": "Name shown for an item.", + "type": "string" + } + } + }, + "466752078": { + "title": "minecraft:use_modifiers v1.20.50", + "description": "This component modifies use effects, including how long the item takes to use and the player's speed when used in combination with components like \"shooter\", \"throwable\", or \"food\".", + "type": "object", + "properties": { + "movement_modifier": { + "description": "Modifier value to scale the players movement speed when item is in use.", + "minimum": 0.0, + "maximum": 1.0, + "type": "number" + }, + "use_duration": { + "description": "How long the item takes to use in seconds.", + "minimum": 0.0, + "type": "number" + } + } + }, + "757583938": { + "title": "minecraft:item_storage v1.20.50", + "description": "The Storage Item Component is used for storing Items within an Item's User Data", + "type": "object", + "properties": { + "capacity": { + "description": "The max capacity of the item. Default is 64", + "type": "integer" + } + } + }, + "869455920": { + "title": "minecraft:should_despawn v1.20.50", + "description": "Should_despawn component determines if the item should eventually despawn while floating in the world", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Determines whether the item should eventually despawn while floating in the world.", + "type": "boolean" + } + } + } + ] + }, + "910690552": { + "title": "minecraft:liquid_clipped v1.20.50", + "description": "The liquid_clipped component determines whether the item interacts with liquid blocks on use.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Deterines whether the item interacts with liquid blocks on use.", + "type": "boolean" + } + } + } + ] + } + } +} \ No newline at end of file diff --git a/metadata/json_schemas/Components v1.20.80.json b/metadata/json_schemas/Components v1.20.80.json new file mode 100644 index 000000000..f69bd6242 --- /dev/null +++ b/metadata/json_schemas/Components v1.20.80.json @@ -0,0 +1,1446 @@ +{ + "title": "components v1.20.80", + "description": "List of all components used in this item.", + "type": "object", + "properties": { + "minecraft:allow_off_hand": { + "description": "The allow_off_hand component determines whether the item can be placed in the off hand slot of the inventory.", + "$ref": "#/$defs/2987623390" + }, + "minecraft:block_placer": { + "description": "Items with the block_placer component will place a block when used.", + "$ref": "#/$defs/1178544591" + }, + "minecraft:can_destroy_in_creative": { + "description": "The can_destroy_in_creative component determines if the item can be used by a player to break blocks when in creative mode.", + "$ref": "#/$defs/2819452145" + }, + "minecraft:cooldown": { + "description": "After you use an item, all items specified with the same `cool down category` setting becomes unusable for the duration specified by the 'cool down time' setting in this component.", + "$ref": "#/$defs/1413510600" + }, + "minecraft:custom_components": { + "description": "Specifies an array of custom components defined in a script that should be added to this item.", + "$ref": "#/$defs/2059045829" + }, + "minecraft:damage": { + "description": "The damage component determines how much extra damage the item does on attack.", + "$ref": "#/$defs/2355534844" + }, + "minecraft:digger": { + "description": "Digger item component specifies how quickly this item can dig specific blocks.", + "$ref": "#/$defs/1093953013" + }, + "minecraft:display_name": { + "description": "The display_name item component specifies the text shown whenever an item's name is displayed, like in hover text.", + "$ref": "#/$defs/4293809098" + }, + "minecraft:durability": { + "description": "The durability item component specifies how much damage the item takes before breaking, and allows the item to be combined to repair or augment them.", + "$ref": "#/$defs/2663653758" + }, + "minecraft:enchantable": { + "description": "The enchantable component specifies what enchantments can be applied to the item. Not all enchantments will have an effect on all item components.", + "$ref": "#/$defs/3828799658" + }, + "minecraft:entity_placer": { + "description": "The entity_placer item component specifies the blocks that the item can be placed on.", + "$ref": "#/$defs/2610026031" + }, + "minecraft:food": { + "description": "When an item has a food component, it becomes edible to the player. Must have the 'minecraft:use_duration' component in order to function properly.", + "$ref": "#/$defs/3906212947" + }, + "minecraft:fuel": { + "description": "Fuel item component allows this item to be used as fuel in a furnace to 'cook' other items.", + "$ref": "#/$defs/3372804247" + }, + "minecraft:glint": { + "description": "The glint component determines whether the item has the enchanted glint render effect on it.", + "$ref": "#/$defs/1025605201" + }, + "minecraft:hand_equipped": { + "description": "The hand_equipped component determines if an item is rendered like a tool while it is in a player's hand.", + "$ref": "#/$defs/3792304927" + }, + "minecraft:hover_text_color": { + "description": "The hover_text_color component specifies the color of the item name when the players hovers the cursor over the item.", + "$ref": "#/$defs/1862654147" + }, + "minecraft:icon": { + "description": "Icon item component determines which icon graphic will be used to represent the item in the UI and elsewhere.", + "$ref": "#/$defs/3209899485" + }, + "minecraft:interact_button": { + "description": "This component is a boolean or string that determines if the interact button is shown in touch controls and what text is displayed on the button. When set as true, default \"Use Item\" text will be displayed.", + "$ref": "#/$defs/2801422565" + }, + "minecraft:item_storage": { + "description": "The Storage Item Component is used for storing Items within an Item's User Data", + "$ref": "#/$defs/757583938" + }, + "minecraft:liquid_clipped": { + "description": "The liquid_clipped component determines whether the item interacts with liquid blocks on use.", + "$ref": "#/$defs/910690552" + }, + "minecraft:max_stack_size": { + "description": "The max_stack_size component specifies how many of the item can be stacked together.", + "$ref": "#/$defs/3633237758" + }, + "minecraft:projectile": { + "description": "Projectile items shoot out, like an arrow.", + "$ref": "#/$defs/2543985138" + }, + "minecraft:record": { + "description": "Record Item Component. Used by record items to play music.", + "$ref": "#/$defs/2714251964" + }, + "minecraft:repairable": { + "description": "The repairable item component specifies which items can be used to repair this item, along with how much durability is gained.", + "$ref": "#/$defs/2707383096" + }, + "minecraft:shooter": { + "description": "Shooter Item Component.", + "$ref": "#/$defs/1861287593" + }, + "minecraft:should_despawn": { + "description": "Should_despawn component determines if the item should eventually despawn while floating in the world", + "$ref": "#/$defs/869455920" + }, + "minecraft:stacked_by_data": { + "description": "The stacked_by_data component determines whether the same items with different aux values can stack. Also defines whether the item entities can merge while floating in the world.", + "$ref": "#/$defs/3566406297" + }, + "minecraft:tags": { + "description": "The tags component specifies which tags an item has on it.", + "$ref": "#/$defs/2623865080" + }, + "minecraft:throwable": { + "description": "Throwable items can be thrown by the player, such as a snowball.", + "$ref": "#/$defs/2210327101" + }, + "minecraft:use_animation": { + "description": "Use_animation specifies which animation is played when the player uses the item.", + "$ref": "#/$defs/3520278386" + }, + "minecraft:use_modifiers": { + "description": "This component modifies use effects, including how long the item takes to use and the player's speed when used in combination with components like \"shooter\", \"throwable\", or \"food\".", + "$ref": "#/$defs/466752078" + }, + "minecraft:wearable": { + "description": "Wearable items can be worn by a player in the head, chest, legs, feet, or off-hand slots.", + "$ref": "#/$defs/2024711926" + } + }, + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "components v1.20.80", + "$defs": { + "1025605201": { + "title": "minecraft:glint v1.20.50", + "description": "The glint component determines whether the item has the enchanted glint render effect on it.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Determines whether the item has the glint effect.", + "type": "boolean" + } + } + } + ] + }, + "1093953013": { + "title": "minecraft:digger v1.20.50", + "description": "Digger item component specifies how quickly this item can dig specific blocks.", + "type": "object", + "properties": { + "destroy_speeds": { + "title": "sequence container (class std::vector >)", + "description": "A list of blocks to dig with correlating speeds of digging.", + "type": "array", + "items": { + "$ref": "#/$defs/3421086714" + } + }, + "use_efficiency": { + "description": "Determines whether this item should be impacted if the efficiency enchantment is applied to it.", + "type": "boolean" + } + } + }, + "1178544591": { + "title": "minecraft:block_placer v1.20.50", + "description": "Items with the block_placer component will place a block when used.", + "type": "object", + "properties": { + "block": { + "description": "Defines the block that will be placed.", + "type": "string" + }, + "use_on": { + "title": "sequence container (class std::vector >)", + "description": "List of block descriptors of the blocks that this item can be used on. If left empty, all blocks will be allowed.", + "type": "array", + "items": { + "$ref": "#/$defs/4107396053" + } + } + }, + "required": [ + "block" + ] + }, + "1181846166": { + "title": "struct Puv::Legacy::ExpressionNode", + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "object", + "properties": { + "expression": { + "type": "string" + }, + "version": { + "type": "integer" + } + }, + "required": [ + "expression", + "version" + ] + } + ] + }, + "1290538044": { + "title": "compound_proxy", + "oneOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "1413510600": { + "title": "minecraft:cooldown v1.20.50", + "description": "After you use an item, all items specified with the same `cool down category` setting becomes unusable for the duration specified by the 'cool down time' setting in this component.", + "type": "object", + "properties": { + "category": { + "description": "The type of cool down for this item. All items with a cool down component with the same category are put on cool down when one is used.", + "type": "string" + }, + "duration": { + "description": "The duration of time (in seconds) items with a matching category will spend cooling down before becoming usable again.", + "type": "number" + } + }, + "required": [ + "category", + "duration" + ] + }, + "1861287593": { + "title": "minecraft:shooter v1.20.50", + "description": "Shooter Item Component.", + "type": "object", + "properties": { + "ammunition": { + "title": "sequence container (class std::vector >)", + "description": "Ammunition.", + "type": "array", + "items": { + "$ref": "#/$defs/2221989686" + } + }, + "charge_on_draw": { + "description": "Charge on draw? Default is set to false.", + "type": "boolean" + }, + "max_draw_duration": { + "description": "Draw Duration. Default is set to 0.", + "type": "number" + }, + "scale_power_by_draw_duration": { + "description": "Scale power by draw duration? Default is set to false.", + "type": "boolean" + } + } + }, + "1862654147": { + "title": "minecraft:hover_text_color v1.20.50", + "description": "The hover_text_color component specifies the color of the item name when the players hovers the cursor over the item.", + "oneOf": [ + { + "type": "string" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Specifies the color of the item's hover text.", + "type": "string" + } + } + } + ] + }, + "2024711926": { + "title": "minecraft:wearable v1.20.50", + "description": "Wearable items can be worn by a player in the head, chest, legs, feet, or off-hand slots.", + "type": "object", + "properties": { + "protection": { + "description": "How much protection the wearable item provides. Default is set to 0.", + "minimum": 0.0, + "type": "integer" + }, + "slot": { + "title": "enum Puv::Legacy::EquipmentSlot", + "description": "Specifies where the item can be worn. If any non-hand slot is chosen, the max stack size is set to 1.", + "type": "string", + "enum": [ + "slot.armor.chest", + "slot.armor.feet", + "slot.armor.head", + "slot.armor.legs", + "slot.weapon.offhand" + ] + } + }, + "required": [ + "slot" + ] + }, + "2059045829": { + "title": "minecraft:custom_components v1.20.80", + "description": "Specifies an array of custom components defined in a script that should be added to this item.", + "type": "array", + "items": { + "pattern": "^(?:(?!^(minecraft):).)+:(?:.)+$", + "type": "string" + } + }, + "2122767410": { + "title": "struct Puv::v1_20_50::RepairableItemComponent::RepairItemEntry", + "oneOf": [ + { + "title": "sequence container (class std::vector >)", + "type": "array", + "items": { + "$ref": "#/$defs/2849785526" + } + }, + { + "type": "object", + "properties": { + "items": { + "title": "sequence container (class std::vector >)", + "description": "Items that may be used to repair an item.", + "type": "array", + "items": { + "$ref": "#/$defs/2849785526" + } + }, + "repair_amount": { + "description": "How much the item is repaired.", + "$ref": "#/$defs/1181846166" + } + }, + "required": [ + "items" + ] + } + ] + }, + "2210327101": { + "title": "minecraft:throwable v1.20.50", + "description": "Throwable items can be thrown by the player, such as a snowball.", + "type": "object", + "properties": { + "default_offset_scale": { + "description": "The scale at which the throw position is adjusted by the aim direction.", + "type": "number" + }, + "do_swing_animation": { + "description": "Determines whether the item should use the swing animation when thrown. Default is set to false.", + "type": "boolean" + }, + "inside_block_offset_scale": { + "description": "The scale at which the throw position is adjusted by the aim direction if the default throw position is inside a solid block.", + "type": "number" + }, + "launch_power_scale": { + "description": "The scale at which the power of the throw increases. Default is set to 1.0.", + "type": "number" + }, + "max_draw_duration": { + "description": "The maximum duration to draw a throwable item. Default is set to 0.0.", + "type": "number" + }, + "max_launch_power": { + "description": "The maximum power to launch the throwable item. Default is set to 1.0.", + "type": "number" + }, + "min_draw_duration": { + "description": "The minimum duration to draw a throwable item. Default is set to 0.0.", + "type": "number" + }, + "scale_power_by_draw_duration": { + "description": "Whether or not the power of the throw increases with duration charged. Default is set to false.", + "type": "boolean" + } + } + }, + "2221989686": { + "title": "struct Puv::v1_20_50::ShooterItemComponent::Ammunition", + "type": "object", + "properties": { + "item": { + "description": "Ammunition item description identifier.", + "$ref": "#/$defs/2849785526" + }, + "search_inventory": { + "description": "Can search inventory? Default is set to false.", + "type": "boolean" + }, + "use_in_creative": { + "description": "Can use in creative mode? Default is set to false.", + "type": "boolean" + }, + "use_offhand": { + "description": "Can use off-hand? Default is set to false.", + "type": "boolean" + } + }, + "required": [ + "item" + ] + }, + "2355534844": { + "title": "minecraft:damage v1.20.50", + "description": "The damage component determines how much extra damage the item does on attack.", + "oneOf": [ + { + "minimum": 0.0, + "type": "integer" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Specifies how much extra damage the item does, must be a positive number.", + "minimum": 0.0, + "type": "integer" + } + } + } + ] + }, + "2543985138": { + "title": "minecraft:projectile v1.20.50", + "description": "Projectile items shoot out, like an arrow.", + "type": "object", + "properties": { + "minimum_critical_power": { + "description": "Specifies how long a player must charge a projectile for it to critically hit.", + "type": "number" + }, + "projectile_entity": { + "description": "Which entity is to be fired as a projectile.", + "minLength": 0, + "maxLength": 18446744073709551615, + "pattern": "^(?:\\w+(?:\\.\\w+)*:(?=\\w))?(?:\\w+(?:\\.\\w+)*)(?:<((?:\\w+(?:\\.\\w+)*:(?=\\w))?\\w+(?:\\.\\w+)*)*>)?$", + "type": "string" + } + }, + "required": [ + "projectile_entity" + ] + }, + "2610026031": { + "title": "minecraft:entity_placer v1.20.50", + "description": "The entity_placer item component specifies the blocks that the item can be placed on.", + "type": "object", + "properties": { + "dispense_on": { + "title": "sequence container (class std::vector >)", + "description": "List of block descriptors of the blocks that this item can be dispensed on. If left empty, all blocks will be allowed.", + "type": "array", + "items": { + "$ref": "#/$defs/4107396053" + } + }, + "entity": { + "description": "The entity to be placed in the world.", + "minLength": 0, + "maxLength": 18446744073709551615, + "pattern": "^(?:\\w+(?:\\.\\w+)*:(?=\\w))?(?:\\w+(?:\\.\\w+)*)(?:<((?:\\w+(?:\\.\\w+)*:(?=\\w))?\\w+(?:\\.\\w+)*)*>)?$", + "type": "string" + }, + "use_on": { + "title": "sequence container (class std::vector >)", + "description": "List of block descriptors of the blocks that this item can be used on. If left empty, all blocks will be allowed.", + "type": "array", + "items": { + "$ref": "#/$defs/4107396053" + } + } + } + }, + "2623865080": { + "title": "minecraft:tags v1.20.50", + "description": "The tags component specifies which tags an item has on it.", + "type": "object", + "properties": { + "tags": { + "title": "sequence container (class std::vector,class std::allocator >,class std::allocator,class std::allocator > > >)", + "description": "An array that can contain multiple item tags.", + "type": "array", + "items": { + "type": "string" + } + } + } + }, + "2663653758": { + "title": "minecraft:durability v1.20.50", + "description": "The durability item component specifies how much damage the item takes before breaking, and allows the item to be combined to repair or augment them.", + "type": "object", + "properties": { + "damage_chance": { + "description": "Specifies the percentage chance of this item losing durability. Default is set to 100. Defined as an int range with min and max value.", + "$ref": "#/$defs/4167449497" + }, + "max_durability": { + "description": "Max durability is the amount of damage that this item can take before breaking. This is a required parameter and has a minimum of 0.", + "minimum": 0.0, + "type": "integer" + } + }, + "required": [ + "max_durability" + ] + }, + "2707383096": { + "title": "minecraft:repairable v1.20.50", + "description": "The repairable item component specifies which items can be used to repair this item, along with how much durability is gained.", + "type": "object", + "properties": { + "repair_items": { + "title": "sequence container (class std::vector >)", + "description": "List of repair item entries. Each entry needs to define a list of strings for `items` that can be used for the repair and an optional `repair_amount` for how much durability is gained.", + "type": "array", + "items": { + "$ref": "#/$defs/2122767410" + } + } + } + }, + "2714251964": { + "title": "minecraft:record v1.20.50", + "description": "Record Item Component. Used by record items to play music.", + "type": "object", + "properties": { + "comparator_signal": { + "description": "Specifies signal strength for comparator blocks to use, from 1 - 13.", + "type": "integer" + }, + "duration": { + "description": "Specifies duration of sound event in seconds, float value.", + "type": "number" + }, + "sound_event": { + "title": "enum Puv::Legacy::LevelSoundEvent", + "description": "Sound event type: 13, cat, blocks, chirp, far, mall, mellohi, stal, strad, ward, 11, wait, pigstep, otherside, 5, relic.", + "type": "string", + "enum": [ + "add.chest", + "admire", + "agitated", + "ambient", + "ambient.aggressive", + "ambient.baby", + "ambient.basalt_deltas.additions", + "ambient.basalt_deltas.loop", + "ambient.candle", + "ambient.cave", + "ambient.crimson_forest.additions", + "ambient.crimson_forest.loop", + "ambient.crimson_forest.mood", + "ambient.in.air", + "ambient.in.raid", + "ambient.in.water", + "ambient.nether_wastes.additions", + "ambient.nether_wastes.loop", + "ambient.nether_wastes.mood", + "ambient.pollinate", + "ambient.screamer", + "ambient.soulsand_valley.additions", + "ambient.soulsand_valley.loop", + "ambient.soulsand_valley.mood", + "ambient.tame", + "ambient.underwater.enter", + "ambient.underwater.exit", + "ambient.warped_forest.additions", + "ambient.warped_forest.loop", + "ambient.warped_forest.mood", + "ambient.worried", + "angry", + "apply_effect.bad_omen", + "apply_effect.raid_omen", + "apply_effect.trial_omen", + "armor", + "armor.break_wolf", + "armor.crack_wolf", + "armor.equip_chain", + "armor.equip_diamond", + "armor.equip_elytra", + "armor.equip_generic", + "armor.equip_gold", + "armor.equip_iron", + "armor.equip_leather", + "armor.equip_netherite", + "armor.equip_wolf", + "armor.repair_wolf", + "armor.unequip_wolf", + "attach", + "attack", + "attack.nodamage", + "attack.strong", + "balloonpop", + "beacon.activate", + "beacon.ambient", + "beacon.deactivate", + "beacon.power", + "blast", + "block.bamboo_sapling.place", + "block.barrel.close", + "block.barrel.open", + "block.beehive.drip", + "block.beehive.enter", + "block.beehive.exit", + "block.beehive.shear", + "block.beehive.work", + "block.bell.hit", + "block.blastfurnace.fire_crackle", + "block.campfire.crackle", + "block.cartography_table.use", + "block.click", + "block.click.fail", + "block.composter.empty", + "block.composter.fill", + "block.composter.fill_success", + "block.composter.ready", + "block.copper_bulb.turn_off", + "block.copper_bulb.turn_on", + "block.decorated_pot.insert", + "block.decorated_pot.insert_fail", + "block.enchanting_table.use", + "block.end_portal.spawn", + "block.end_portal_frame.fill", + "block.fletching_table.use", + "block.frog_spawn.break", + "block.frog_spawn.hatch", + "block.furnace.lit", + "block.grindstone.use", + "block.loom.use", + "block.scaffolding.climb", + "block.sculk.spread", + "block.sculk_catalyst.bloom", + "block.sculk_sensor.place", + "block.sculk_shrieker.place", + "block.sculk_shrieker.shriek", + "block.sign.waxed_interact_fail", + "block.smithing_table.use", + "block.smoker.smoke", + "block.sniffer_egg.crack", + "block.sniffer_egg.hatch", + "block.stonecutter.use", + "block.sweet_berry_bush.hurt", + "block.sweet_berry_bush.pick", + "block.turtle_egg.attack", + "block.turtle_egg.break", + "block.turtle_egg.crack", + "block.turtle_egg.hatch", + "boost", + "born", + "bottle.dragonbreath", + "bottle.empty", + "bottle.fill", + "bow", + "bow.hit", + "break", + "break.block", + "break_pot", + "breathe", + "breeze_wind_charge.burst", + "brush", + "brush_completed", + "bubble.down", + "bubble.downinside", + "bubble.pop", + "bubble.up", + "bubble.upinside", + "bucket.empty.fish", + "bucket.empty.lava", + "bucket.empty.powder_snow", + "bucket.empty.water", + "bucket.fill.fish", + "bucket.fill.lava", + "bucket.fill.powder_snow", + "bucket.fill.water", + "bullet.hit", + "bundle.drop_contents", + "bundle.insert", + "bundle.remove_one", + "burp", + "button.click_off", + "button.click_on", + "cake.add_candle", + "camera.take_picture", + "cant_breed", + "cast.spell", + "cauldron_drip.lava.pointed_dripstone", + "cauldron_drip.water.pointed_dripstone", + "celebrate", + "charge", + "charge.sculk", + "chest.closed", + "chest.open", + "chime.amethyst_block", + "chorusdeath", + "chorusgrow", + "conduit.activate", + "conduit.ambient", + "conduit.attack", + "conduit.deactivate", + "conduit.short", + "convert_mooshroom", + "convert_to_drowned", + "convert_to_frog", + "convert_to_stray", + "converted_to_zombified", + "copper.wax.off", + "copper.wax.on", + "crafter.craft", + "crafter.disable_slot", + "crafter.fail", + "crossbow.loading.end", + "crossbow.loading.middle", + "crossbow.loading.start", + "crossbow.quick_charge.end", + "crossbow.quick_charge.middle", + "crossbow.quick_charge.start", + "crossbow.shoot", + "dash_ready", + "death", + "death.baby", + "death.in.water", + "death.mid.volume", + "death.min.volume", + "death.screamer", + "death.to.zombie", + "default", + "deny", + "detach", + "disappeared", + "door.close", + "door.open", + "drink", + "drink.honey", + "drink.milk", + "drip.lava.pointed_dripstone", + "drip.water.pointed_dripstone", + "drop.slot", + "eat", + "elderguardian.curse", + "elemconstruct.open", + "enderchest.closed", + "enderchest.open", + "explode", + "extinguish.candle", + "extinguish.fire", + "fall", + "fall.big", + "fall.small", + "fang", + "fence_gate.close", + "fence_gate.open", + "fire", + "fizz", + "flap", + "flop", + "fly", + "fuse", + "gallop", + "glass", + "glow_squid.ink_squirt", + "glowstick.use", + "growl", + "haggle", + "haggle.idle", + "haggle.no", + "haggle.yes", + "heartbeat", + "heavy.step", + "hit", + "horn_break", + "horn_call0", + "horn_call1", + "horn_call2", + "horn_call3", + "horn_call4", + "horn_call5", + "horn_call6", + "horn_call7", + "hurt", + "hurt.baby", + "hurt.in.water", + "hurt.reduced", + "hurt.screamer", + "icebomb.hit", + "ignite", + "imitate.blaze", + "imitate.breeze", + "imitate.cave_spider", + "imitate.creeper", + "imitate.elder_guardian", + "imitate.ender_dragon", + "imitate.enderman", + "imitate.evocation_illager", + "imitate.ghast", + "imitate.husk", + "imitate.illusion_illager", + "imitate.magma_cube", + "imitate.polar_bear", + "imitate.shulker", + "imitate.silverfish", + "imitate.skeleton", + "imitate.slime", + "imitate.spider", + "imitate.stray", + "imitate.vex", + "imitate.vindication_illager", + "imitate.warden", + "imitate.witch", + "imitate.wither", + "imitate.wither_skeleton", + "imitate.wolf", + "imitate.zombie", + "imitate.zombie_pigman", + "imitate.zombie_villager", + "insert", + "insert_enchanted", + "irongolem.crack", + "irongolem.repair", + "item.book.put", + "item.fizz", + "item.shield.block", + "item.spyglass.stop_using", + "item.spyglass.use", + "item.trident.hit", + "item.trident.hit_ground", + "item.trident.return", + "item.trident.riptide_1", + "item.trident.riptide_2", + "item.trident.riptide_3", + "item.trident.throw", + "item.trident.thunder", + "item.use.on", + "item_given", + "item_taken", + "item_thrown", + "jump", + "jump.prevent", + "jump_to_block", + "land", + "large.blast", + "launch", + "lava", + "lava.pop", + "lay_egg", + "lay_spawn", + "leashknot.break", + "leashknot.place", + "levelup", + "listening", + "listening_angry", + "lodestone_compass.link_compass_to_lodestone", + "lt.reaction.bleach", + "lt.reaction.epaste", + "lt.reaction.epaste2", + "lt.reaction.fertilizer", + "lt.reaction.fire", + "lt.reaction.fireball", + "lt.reaction.icebomb", + "lt.reaction.mgsalt", + "lt.reaction.miscexplosion", + "lt.reaction.miscfire", + "lt.reaction.miscmystical", + "lt.reaction.miscmystical2", + "lt.reaction.product", + "mace.heavy_smash_ground", + "mace.smash_air", + "mace.smash_ground", + "mad", + "milk", + "milk.screamer", + "milk_suspiciously", + "mob.armadillo.brush", + "mob.armadillo.scute_drop", + "mob.armor_stand.place", + "mob.hoglin.converted_to_zombified", + "mob.husk.convert_to_zombie", + "mob.pig.death", + "mob.player.hurt_drown", + "mob.player.hurt_freeze", + "mob.player.hurt_on_fire", + "mob.warning", + "mob.warning.baby", + "nearby_close", + "nearby_closer", + "nearby_closest", + "note", + "note.bass", + "ominous_bottle.end_use", + "ominous_item_spawner.about_to_spawn_item", + "ominous_item_spawner.spawn_item", + "ominous_item_spawner.spawn_item_begin", + "panic", + "pant", + "particle.soul_escape.loud", + "particle.soul_escape.quiet", + "pick_berries.cave_vines", + "pickup", + "pickup_enchanted", + "piston.in", + "piston.out", + "place", + "plop", + "pop", + "portal", + "portal.travel", + "potion.brewed", + "power.off", + "power.off.sculk_sensor", + "power.on", + "power.on.sculk_sensor", + "pre_ram", + "pre_ram.screamer", + "prepare.attack", + "prepare.summon", + "prepare.wololo", + "presneeze", + "pressure_plate.click_off", + "pressure_plate.click_on", + "pumpkin.carve", + "purr", + "purreow", + "raid.horn", + "ram_impact", + "ram_impact.screamer", + "random.anvil_use", + "reappeared", + "record.11", + "record.13", + "record.5", + "record.blocks", + "record.cat", + "record.chirp", + "record.creator", + "record.creator_music_box", + "record.far", + "record.mall", + "record.mellohi", + "record.otherside", + "record.pigstep", + "record.precipice", + "record.relic", + "record.stal", + "record.strad", + "record.wait", + "record.ward", + "reflect", + "remedy", + "respawn_anchor.ambient", + "respawn_anchor.basalt_deltas.mood", + "respawn_anchor.charge", + "respawn_anchor.deplete", + "respawn_anchor.set_spawn", + "retreat", + "roar", + "saddle", + "scared", + "scrape", + "screech", + "shake", + "shatter_pot", + "shear", + "shoot", + "shulker.close", + "shulker.open", + "shulkerbox.closed", + "shulkerbox.open", + "sleep", + "smithing_table.use", + "sneeze", + "sonic_boom", + "sonic_charge", + "sparkler.active", + "sparkler.use", + "spawn", + "splash", + "squid.ink_squirt", + "squish.big", + "squish.small", + "stare", + "step", + "step.baby", + "step_lava", + "step_sand", + "stun", + "swim", + "swoop", + "takeoff", + "teleport", + "tempt", + "thorns", + "throw", + "thunder", + "tilt_down.big_dripleaf", + "tilt_up.big_dripleaf", + "tongue", + "trapdoor.close", + "trapdoor.open", + "trial_spawner.ambient", + "trial_spawner.ambient_ominous", + "trial_spawner.charge_activate", + "trial_spawner.close_shutter", + "trial_spawner.detect_player", + "trial_spawner.eject_item", + "trial_spawner.open_shutter", + "trial_spawner.spawn_mob", + "tripod", + "twinkle", + "ui.cartography_table.take_result", + "ui.loom.take_result", + "ui.stonecutter.take_result", + "undefined", + "unfect", + "vault.activate", + "vault.ambient", + "vault.close_shutter", + "vault.deactivate", + "vault.eject_item", + "vault.insert_item", + "vault.insert_item_fail", + "vault.open_shutter", + "warn", + "water", + "whine", + "wind_charge.burst" + ] + } + } + }, + "2801422565": { + "title": "minecraft:interact_button v1.20.50", + "description": "This component is a boolean or string that determines if the interact button is shown in touch controls and what text is displayed on the button. When set as true, default \"Use Item\" text will be displayed.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "string" + } + ] + }, + "2819452145": { + "title": "minecraft:can_destroy_in_creative v1.20.50", + "description": "The can_destroy_in_creative component determines if the item can be used by a player to break blocks when in creative mode.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Determines whether the item can be used to destroy blocks while in creative mode.", + "type": "boolean" + } + } + } + ] + }, + "2836600109": { + "title": "struct Puv::v1_20_50::BlockDescriptorSerializer::BlockDescriptorProxy", + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "states": { + "title": "associative container (class std::map,class std::allocator >,struct Puv::v1_20_50::BlockDescriptor::Compound,struct std::less,class std::allocator > >,class std::allocator,class std::allocator > const ,struct Puv::v1_20_50::BlockDescriptor::Compound> > >)", + "type": "object", + "additionalProperties": { + "$ref": "#/$defs/1290538044" + } + }, + "tags": { + "type": "string" + } + } + }, + "2849785526": { + "title": "struct Puv::Legacy::ItemDescriptor", + "oneOf": [ + { + "type": "string" + }, + { + "title": "associative container (class std::map,class std::allocator >,class std::basic_string,class std::allocator >,struct std::less,class std::allocator > >,class std::allocator,class std::allocator > const ,class std::basic_string,class std::allocator > > > >)", + "type": "object", + "additionalProperties": { + "type": "string" + } + } + ] + }, + "2987623390": { + "title": "minecraft:allow_off_hand v1.20.50", + "description": "The allow_off_hand component determines whether the item can be placed in the off hand slot of the inventory.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Determines whether the item can be placed in the off hand slot.", + "type": "boolean" + } + } + } + ] + }, + "3209899485": { + "title": "minecraft:icon v1.20.60", + "description": "Icon item component determines which icon graphic will be used to represent the item in the UI and elsewhere.", + "oneOf": [ + { + "type": "string" + }, + { + "type": "object", + "properties": { + "textures": { + "title": "associative container (class std::unordered_map,class std::allocator >,class std::basic_string,class std::allocator >,struct std::hash,class std::allocator > >,struct std::equal_to,class std::allocator > >,class std::allocator,class std::allocator > const ,class std::basic_string,class std::allocator > > > >)", + "description": "This map contains the different textures that can be used for the item's icon. Default will contain the actual icon texture. Armor trim textures and palettes can be specified here too. The icon textures are the keys from the resource_pack/textures/item_texture.json 'texture_data' object associated with the texture file.", + "type": "object", + "additionalProperties": { + "type": "string" + } + } + } + } + ] + }, + "3372804247": { + "title": "minecraft:fuel v1.20.50", + "description": "Fuel item component allows this item to be used as fuel in a furnace to 'cook' other items.", + "oneOf": [ + { + "minimum": 0.05000000074505806, + "type": "number" + }, + { + "type": "object", + "properties": { + "duration": { + "description": "Amount of time, in seconds, this fuel will cook items.", + "minimum": 0.05000000074505806, + "type": "number" + } + } + } + ] + }, + "3421086714": { + "title": "struct Puv::v1_20_50::DiggerItemComponent::BlockInfo", + "type": "object", + "properties": { + "block": { + "description": "Block to be dug.", + "$ref": "#/$defs/4107396053" + }, + "speed": { + "description": "Digging speed for the correlating block(s).", + "type": "integer" + } + }, + "required": [ + "block", + "speed" + ] + }, + "3520278386": { + "title": "minecraft:use_animation v1.20.50", + "description": "Use_animation specifies which animation is played when the player uses the item.", + "oneOf": [ + { + "title": "enum Puv::Legacy::UseAnimation", + "type": "string", + "enum": [ + "block", + "bow", + "brush", + "camera", + "crossbow", + "drink", + "eat", + "none", + "spear", + "spyglass" + ] + }, + { + "type": "object", + "properties": { + "value": { + "title": "enum Puv::Legacy::UseAnimation", + "description": "Specifies which animation to play when the the item is used.", + "type": "string", + "enum": [ + "block", + "bow", + "brush", + "camera", + "crossbow", + "drink", + "eat", + "none", + "spear", + "spyglass" + ] + } + } + } + ] + }, + "3566406297": { + "title": "minecraft:stacked_by_data v1.20.50", + "description": "The stacked_by_data component determines whether the same items with different aux values can stack. Also defines whether the item entities can merge while floating in the world.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Determines whether the same item with different aux values can stack. Also defines whether the item entities can merge while floating in the world.", + "type": "boolean" + } + } + } + ] + }, + "3633237758": { + "title": "minecraft:max_stack_size v1.20.50", + "description": "The max_stack_size component specifies how many of the item can be stacked together.", + "oneOf": [ + { + "minimum": 1.0, + "maximum": 64.0, + "type": "integer" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Specifies how many of the item that can be stacked.", + "minimum": 1.0, + "maximum": 64.0, + "type": "integer" + } + } + } + ] + }, + "3792304927": { + "title": "minecraft:hand_equipped v1.20.50", + "description": "The hand_equipped component determines if an item is rendered like a tool while it is in a player's hand.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Determines whether the item is rendered like a tool while in the player's hand.", + "type": "boolean" + } + } + } + ] + }, + "3828799658": { + "title": "minecraft:enchantable v1.20.50", + "description": "The enchantable component specifies what enchantments can be applied to the item. Not all enchantments will have an effect on all item components.", + "type": "object", + "properties": { + "slot": { + "description": "Specifies which types of enchantments can be applied. For example, `bow` would allow this item to be enchanted as if it were a bow.", + "type": "string" + }, + "value": { + "description": "Specifies the value of the enchantment (minimum of 0).", + "minimum": 0.0, + "type": "integer" + } + }, + "required": [ + "slot", + "value" + ] + }, + "3906212947": { + "title": "minecraft:food v1.20.50", + "description": "When an item has a food component, it becomes edible to the player. Must have the 'minecraft:use_duration' component in order to function properly.", + "type": "object", + "properties": { + "can_always_eat": { + "description": "If true you can always eat this item (even when not hungry). Default is set to false.", + "type": "boolean" + }, + "nutrition": { + "description": "Value that is added to the entity's nutrition when the item is used. Default is set to 0.", + "type": "integer" + }, + "saturation_modifier": { + "description": "saturation_modifier is used in this formula: (nutrition * saturation_modifier * 2) when applying the saturation buff. Default is set to 0.6.", + "minimum": 0.0, + "type": "number" + }, + "using_converts_to": { + "description": "When used, converts to the item specified by the string in this field. Default does not convert item.", + "$ref": "#/$defs/2849785526" + } + } + }, + "4107396053": { + "title": "struct Puv::v1_20_50::BlockDescriptor", + "oneOf": [ + { + "$ref": "#/$defs/2836600109" + }, + { + "minLength": 1, + "type": "string" + } + ] + }, + "4167449497": { + "title": "struct Puv::IntRange", + "type": "object", + "properties": { + "max": { + "type": "integer" + }, + "min": { + "type": "integer" + } + } + }, + "4293809098": { + "title": "minecraft:display_name v1.20.50", + "description": "The display_name item component specifies the text shown whenever an item's name is displayed, like in hover text.", + "type": "object", + "properties": { + "value": { + "description": "Name shown for an item.", + "type": "string" + } + } + }, + "466752078": { + "title": "minecraft:use_modifiers v1.20.50", + "description": "This component modifies use effects, including how long the item takes to use and the player's speed when used in combination with components like \"shooter\", \"throwable\", or \"food\".", + "type": "object", + "properties": { + "movement_modifier": { + "description": "Modifier value to scale the players movement speed when item is in use.", + "minimum": 0.0, + "maximum": 1.0, + "type": "number" + }, + "use_duration": { + "description": "How long the item takes to use in seconds.", + "minimum": 0.0, + "type": "number" + } + } + }, + "757583938": { + "title": "minecraft:item_storage v1.20.50", + "description": "The Storage Item Component is used for storing Items within an Item's User Data", + "type": "object", + "properties": { + "capacity": { + "description": "The max capacity of the item. Default is 64", + "type": "integer" + } + } + }, + "869455920": { + "title": "minecraft:should_despawn v1.20.50", + "description": "Should_despawn component determines if the item should eventually despawn while floating in the world", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Determines whether the item should eventually despawn while floating in the world.", + "type": "boolean" + } + } + } + ] + }, + "910690552": { + "title": "minecraft:liquid_clipped v1.20.50", + "description": "The liquid_clipped component determines whether the item interacts with liquid blocks on use.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Deterines whether the item interacts with liquid blocks on use.", + "type": "boolean" + } + } + } + ] + } + } +} \ No newline at end of file diff --git a/metadata/json_schemas/Cooldown v1.20.50.json b/metadata/json_schemas/Cooldown v1.20.50.json index 8072a8922..fe34009fe 100644 --- a/metadata/json_schemas/Cooldown v1.20.50.json +++ b/metadata/json_schemas/Cooldown v1.20.50.json @@ -1,6 +1,6 @@ { "title": "minecraft:cooldown v1.20.50", - "description": "Cool down time for a component. After you use an item, all items specified with the same `cool down category` setting becomes unusable for the duration specified by the 'cool down time' setting in this component.", + "description": "After you use an item, all items specified with the same `cool down category` setting becomes unusable for the duration specified by the 'cool down time' setting in this component.", "type": "object", "properties": { "category": { diff --git a/metadata/json_schemas/CustomComponents v1.20.80.json b/metadata/json_schemas/CustomComponents v1.20.80.json new file mode 100644 index 000000000..724b01bd1 --- /dev/null +++ b/metadata/json_schemas/CustomComponents v1.20.80.json @@ -0,0 +1,11 @@ +{ + "title": "minecraft:custom_components v1.20.80", + "description": "Specifies an array of custom components defined in a script that should be added to this item.", + "type": "array", + "items": { + "pattern": "^(?:(?!^(minecraft):).)+:(?:.)+$", + "type": "string" + }, + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:custom_components v1.20.80" +} \ No newline at end of file diff --git a/metadata/json_schemas/Damage v1.20.50.json b/metadata/json_schemas/Damage v1.20.50.json new file mode 100644 index 000000000..81710f63f --- /dev/null +++ b/metadata/json_schemas/Damage v1.20.50.json @@ -0,0 +1,22 @@ +{ + "title": "minecraft:damage v1.20.50", + "description": "The damage component determines how much extra damage the item does on attack.", + "oneOf": [ + { + "minimum": 0.0, + "type": "integer" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Specifies how much extra damage the item does, must be a positive number.", + "minimum": 0.0, + "type": "integer" + } + } + } + ], + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:damage v1.20.50" +} \ No newline at end of file diff --git a/metadata/json_schemas/Digger v1.20.50.json b/metadata/json_schemas/Digger v1.20.50.json new file mode 100644 index 000000000..d8ca6ca05 --- /dev/null +++ b/metadata/json_schemas/Digger v1.20.50.json @@ -0,0 +1,83 @@ +{ + "title": "minecraft:digger v1.20.50", + "description": "Digger item component specifies how quickly this item can dig specific blocks.", + "type": "object", + "properties": { + "destroy_speeds": { + "title": "sequence container (class std::vector >)", + "description": "A list of blocks to dig with correlating speeds of digging.", + "type": "array", + "items": { + "$ref": "#/$defs/3421086714" + } + }, + "use_efficiency": { + "description": "Determines whether this item should be impacted if the efficiency enchantment is applied to it.", + "type": "boolean" + } + }, + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:digger v1.20.50", + "$defs": { + "1290538044": { + "title": "compound_proxy", + "oneOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "2836600109": { + "title": "struct Puv::v1_20_50::BlockDescriptorSerializer::BlockDescriptorProxy", + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "states": { + "title": "associative container (class std::map,class std::allocator >,struct Puv::v1_20_50::BlockDescriptor::Compound,struct std::less,class std::allocator > >,class std::allocator,class std::allocator > const ,struct Puv::v1_20_50::BlockDescriptor::Compound> > >)", + "type": "object", + "additionalProperties": { + "$ref": "#/$defs/1290538044" + } + }, + "tags": { + "type": "string" + } + } + }, + "3421086714": { + "title": "struct Puv::v1_20_50::DiggerItemComponent::BlockInfo", + "type": "object", + "properties": { + "block": { + "description": "Block to be dug.", + "$ref": "#/$defs/4107396053" + }, + "speed": { + "description": "Digging speed for the correlating block(s).", + "type": "integer" + } + }, + "required": [ + "block", + "speed" + ] + }, + "4107396053": { + "title": "struct Puv::v1_20_50::BlockDescriptor", + "oneOf": [ + { + "$ref": "#/$defs/2836600109" + }, + { + "minLength": 1, + "type": "string" + } + ] + } + } +} \ No newline at end of file diff --git a/metadata/json_schemas/DisplayName v1.20.50.json b/metadata/json_schemas/DisplayName v1.20.50.json new file mode 100644 index 000000000..d51afea14 --- /dev/null +++ b/metadata/json_schemas/DisplayName v1.20.50.json @@ -0,0 +1,13 @@ +{ + "title": "minecraft:display_name v1.20.50", + "description": "The display_name item component specifies the text shown whenever an item's name is displayed, like in hover text.", + "type": "object", + "properties": { + "value": { + "description": "Name shown for an item.", + "type": "string" + } + }, + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:display_name v1.20.50" +} \ No newline at end of file diff --git a/metadata/json_schemas/Durability v1.20.50.json b/metadata/json_schemas/Durability v1.20.50.json new file mode 100644 index 000000000..a3bd237fd --- /dev/null +++ b/metadata/json_schemas/Durability v1.20.50.json @@ -0,0 +1,35 @@ +{ + "title": "minecraft:durability v1.20.50", + "description": "The durability item component specifies how much damage the item takes before breaking, and allows the item to be combined to repair or augment them.", + "type": "object", + "properties": { + "damage_chance": { + "description": "Specifies the percentage chance of this item losing durability. Default is set to 100. Defined as an int range with min and max value.", + "$ref": "#/$defs/4167449497" + }, + "max_durability": { + "description": "Max durability is the amount of damage that this item can take before breaking. This is a required parameter and has a minimum of 0.", + "minimum": 0.0, + "type": "integer" + } + }, + "required": [ + "max_durability" + ], + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:durability v1.20.50", + "$defs": { + "4167449497": { + "title": "struct Puv::IntRange", + "type": "object", + "properties": { + "max": { + "type": "integer" + }, + "min": { + "type": "integer" + } + } + } + } +} \ No newline at end of file diff --git a/metadata/json_schemas/Enchantable v1.20.50.json b/metadata/json_schemas/Enchantable v1.20.50.json new file mode 100644 index 000000000..ee26e8428 --- /dev/null +++ b/metadata/json_schemas/Enchantable v1.20.50.json @@ -0,0 +1,22 @@ +{ + "title": "minecraft:enchantable v1.20.50", + "description": "The enchantable component specifies what enchantments can be applied to the item. Not all enchantments will have an effect on all item components.", + "type": "object", + "properties": { + "slot": { + "description": "Specifies which types of enchantments can be applied. For example, `bow` would allow this item to be enchanted as if it were a bow.", + "type": "string" + }, + "value": { + "description": "Specifies the value of the enchantment (minimum of 0).", + "minimum": 0.0, + "type": "integer" + } + }, + "required": [ + "slot", + "value" + ], + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:enchantable v1.20.50" +} \ No newline at end of file diff --git a/metadata/json_schemas/EntityPlacer v1.20.50.json b/metadata/json_schemas/EntityPlacer v1.20.50.json new file mode 100644 index 000000000..54d4e059d --- /dev/null +++ b/metadata/json_schemas/EntityPlacer v1.20.50.json @@ -0,0 +1,76 @@ +{ + "title": "minecraft:entity_placer v1.20.50", + "description": "The entity_placer item component specifies the blocks that the item can be placed on.", + "type": "object", + "properties": { + "dispense_on": { + "title": "sequence container (class std::vector >)", + "description": "List of block descriptors of the blocks that this item can be dispensed on. If left empty, all blocks will be allowed.", + "type": "array", + "items": { + "$ref": "#/$defs/4107396053" + } + }, + "entity": { + "description": "The entity to be placed in the world.", + "minLength": 0, + "maxLength": 18446744073709551615, + "pattern": "^(?:\\w+(?:\\.\\w+)*:(?=\\w))?(?:\\w+(?:\\.\\w+)*)(?:<((?:\\w+(?:\\.\\w+)*:(?=\\w))?\\w+(?:\\.\\w+)*)*>)?$", + "type": "string" + }, + "use_on": { + "title": "sequence container (class std::vector >)", + "description": "List of block descriptors of the blocks that this item can be used on. If left empty, all blocks will be allowed.", + "type": "array", + "items": { + "$ref": "#/$defs/4107396053" + } + } + }, + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:entity_placer v1.20.50", + "$defs": { + "1290538044": { + "title": "compound_proxy", + "oneOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "2836600109": { + "title": "struct Puv::v1_20_50::BlockDescriptorSerializer::BlockDescriptorProxy", + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "states": { + "title": "associative container (class std::map,class std::allocator >,struct Puv::v1_20_50::BlockDescriptor::Compound,struct std::less,class std::allocator > >,class std::allocator,class std::allocator > const ,struct Puv::v1_20_50::BlockDescriptor::Compound> > >)", + "type": "object", + "additionalProperties": { + "$ref": "#/$defs/1290538044" + } + }, + "tags": { + "type": "string" + } + } + }, + "4107396053": { + "title": "struct Puv::v1_20_50::BlockDescriptor", + "oneOf": [ + { + "$ref": "#/$defs/2836600109" + }, + { + "minLength": 1, + "type": "string" + } + ] + } + } +} \ No newline at end of file diff --git a/metadata/json_schemas/Food v1.20.50.json b/metadata/json_schemas/Food v1.20.50.json new file mode 100644 index 000000000..b0dde4b9e --- /dev/null +++ b/metadata/json_schemas/Food v1.20.50.json @@ -0,0 +1,43 @@ +{ + "title": "minecraft:food v1.20.50", + "description": "When an item has a food component, it becomes edible to the player. Must have the 'minecraft:use_duration' component in order to function properly.", + "type": "object", + "properties": { + "can_always_eat": { + "description": "If true you can always eat this item (even when not hungry). Default is set to false.", + "type": "boolean" + }, + "nutrition": { + "description": "Value that is added to the entity's nutrition when the item is used. Default is set to 0.", + "type": "integer" + }, + "saturation_modifier": { + "description": "saturation_modifier is used in this formula: (nutrition * saturation_modifier * 2) when applying the saturation buff. Default is set to 0.6.", + "minimum": 0.0, + "type": "number" + }, + "using_converts_to": { + "description": "When used, converts to the item specified by the string in this field. Default does not convert item.", + "$ref": "#/$defs/2849785526" + } + }, + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:food v1.20.50", + "$defs": { + "2849785526": { + "title": "struct Puv::Legacy::ItemDescriptor", + "oneOf": [ + { + "type": "string" + }, + { + "title": "associative container (class std::map,class std::allocator >,class std::basic_string,class std::allocator >,struct std::less,class std::allocator > >,class std::allocator,class std::allocator > const ,class std::basic_string,class std::allocator > > > >)", + "type": "object", + "additionalProperties": { + "type": "string" + } + } + ] + } + } +} \ No newline at end of file diff --git a/metadata/json_schemas/Fuel v1.20.50.json b/metadata/json_schemas/Fuel v1.20.50.json new file mode 100644 index 000000000..50ef39f58 --- /dev/null +++ b/metadata/json_schemas/Fuel v1.20.50.json @@ -0,0 +1,22 @@ +{ + "title": "minecraft:fuel v1.20.50", + "description": "Fuel item component allows this item to be used as fuel in a furnace to 'cook' other items.", + "oneOf": [ + { + "minimum": 0.05000000074505806, + "type": "number" + }, + { + "type": "object", + "properties": { + "duration": { + "description": "Amount of time, in seconds, this fuel will cook items.", + "minimum": 0.05000000074505806, + "type": "number" + } + } + } + ], + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:fuel v1.20.50" +} \ No newline at end of file diff --git a/metadata/json_schemas/Glint v1.20.50.json b/metadata/json_schemas/Glint v1.20.50.json new file mode 100644 index 000000000..06d53a01e --- /dev/null +++ b/metadata/json_schemas/Glint v1.20.50.json @@ -0,0 +1,20 @@ +{ + "title": "minecraft:glint v1.20.50", + "description": "The glint component determines whether the item has the enchanted glint render effect on it.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Determines whether the item has the glint effect.", + "type": "boolean" + } + } + } + ], + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:glint v1.20.50" +} \ No newline at end of file diff --git a/metadata/json_schemas/HandEquipped v1.20.50.json b/metadata/json_schemas/HandEquipped v1.20.50.json new file mode 100644 index 000000000..616c28cf2 --- /dev/null +++ b/metadata/json_schemas/HandEquipped v1.20.50.json @@ -0,0 +1,20 @@ +{ + "title": "minecraft:hand_equipped v1.20.50", + "description": "The hand_equipped component determines if an item is rendered like a tool while it is in a player's hand.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Determines whether the item is rendered like a tool while in the player's hand.", + "type": "boolean" + } + } + } + ], + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:hand_equipped v1.20.50" +} \ No newline at end of file diff --git a/metadata/json_schemas/HoverTextColor v1.20.50.json b/metadata/json_schemas/HoverTextColor v1.20.50.json new file mode 100644 index 000000000..35feb5ccf --- /dev/null +++ b/metadata/json_schemas/HoverTextColor v1.20.50.json @@ -0,0 +1,20 @@ +{ + "title": "minecraft:hover_text_color v1.20.50", + "description": "The hover_text_color component specifies the color of the item name when the players hovers the cursor over the item.", + "oneOf": [ + { + "type": "string" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Specifies the color of the item's hover text.", + "type": "string" + } + } + } + ], + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:hover_text_color v1.20.50" +} \ No newline at end of file diff --git a/metadata/json_schemas/Icon v1.20.50.json b/metadata/json_schemas/Icon v1.20.50.json new file mode 100644 index 000000000..0544f3381 --- /dev/null +++ b/metadata/json_schemas/Icon v1.20.50.json @@ -0,0 +1,19 @@ +{ + "title": "minecraft:icon v1.20.50", + "oneOf": [ + { + "type": "string" + }, + { + "type": "object", + "properties": { + "texture": { + "description": "The key from the resource_pack/textures/item_texture.json 'texture_data' object associated with the texture file.", + "type": "string" + } + } + } + ], + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:icon v1.20.50" +} \ No newline at end of file diff --git a/metadata/json_schemas/Icon v1.20.60.json b/metadata/json_schemas/Icon v1.20.60.json new file mode 100644 index 000000000..5101c9bbd --- /dev/null +++ b/metadata/json_schemas/Icon v1.20.60.json @@ -0,0 +1,24 @@ +{ + "title": "minecraft:icon v1.20.60", + "description": "Icon item component determines which icon graphic will be used to represent the item in the UI and elsewhere.", + "oneOf": [ + { + "type": "string" + }, + { + "type": "object", + "properties": { + "textures": { + "title": "associative container (class std::unordered_map,class std::allocator >,class std::basic_string,class std::allocator >,struct std::hash,class std::allocator > >,struct std::equal_to,class std::allocator > >,class std::allocator,class std::allocator > const ,class std::basic_string,class std::allocator > > > >)", + "description": "This map contains the different textures that can be used for the item's icon. Default will contain the actual icon texture. Armor trim textures and palettes can be specified here too. The icon textures are the keys from the resource_pack/textures/item_texture.json 'texture_data' object associated with the texture file.", + "type": "object", + "additionalProperties": { + "type": "string" + } + } + } + } + ], + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:icon v1.20.60" +} \ No newline at end of file diff --git a/metadata/json_schemas/InteractButton v1.20.50.json b/metadata/json_schemas/InteractButton v1.20.50.json new file mode 100644 index 000000000..3cec41f11 --- /dev/null +++ b/metadata/json_schemas/InteractButton v1.20.50.json @@ -0,0 +1,14 @@ +{ + "title": "minecraft:interact_button v1.20.50", + "description": "This component is a boolean or string that determines if the interact button is shown in touch controls and what text is displayed on the button. When set as true, default \"Use Item\" text will be displayed.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "string" + } + ], + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:interact_button v1.20.50" +} \ No newline at end of file diff --git a/metadata/json_schemas/LiquidClipped v1.20.50.json b/metadata/json_schemas/LiquidClipped v1.20.50.json new file mode 100644 index 000000000..9379eb5ef --- /dev/null +++ b/metadata/json_schemas/LiquidClipped v1.20.50.json @@ -0,0 +1,20 @@ +{ + "title": "minecraft:liquid_clipped v1.20.50", + "description": "The liquid_clipped component determines whether the item interacts with liquid blocks on use.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Deterines whether the item interacts with liquid blocks on use.", + "type": "boolean" + } + } + } + ], + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:liquid_clipped v1.20.50" +} \ No newline at end of file diff --git a/metadata/json_schemas/MaxStackSize v1.20.50.json b/metadata/json_schemas/MaxStackSize v1.20.50.json new file mode 100644 index 000000000..57e9b77fa --- /dev/null +++ b/metadata/json_schemas/MaxStackSize v1.20.50.json @@ -0,0 +1,24 @@ +{ + "title": "minecraft:max_stack_size v1.20.50", + "description": "The max_stack_size component specifies how many of the item can be stacked together.", + "oneOf": [ + { + "minimum": 1.0, + "maximum": 64.0, + "type": "integer" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Specifies how many of the item that can be stacked.", + "minimum": 1.0, + "maximum": 64.0, + "type": "integer" + } + } + } + ], + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:max_stack_size v1.20.50" +} \ No newline at end of file diff --git a/metadata/json_schemas/Planter v1.20.50.json b/metadata/json_schemas/Planter v1.20.50.json new file mode 100644 index 000000000..485d2b93d --- /dev/null +++ b/metadata/json_schemas/Planter v1.20.50.json @@ -0,0 +1,68 @@ +{ + "title": "minecraft:block_placer v1.20.50", + "description": "Items with the block_placer component will place a block when used.", + "type": "object", + "properties": { + "block": { + "description": "Defines the block that will be placed.", + "type": "string" + }, + "use_on": { + "title": "sequence container (class std::vector >)", + "description": "List of block descriptors of the blocks that this item can be used on. If left empty, all blocks will be allowed.", + "type": "array", + "items": { + "$ref": "#/$defs/4107396053" + } + } + }, + "required": [ + "block" + ], + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:block_placer v1.20.50", + "$defs": { + "1290538044": { + "title": "compound_proxy", + "oneOf": [ + { + "type": "string" + }, + { + "type": "integer" + } + ] + }, + "2836600109": { + "title": "struct Puv::v1_20_50::BlockDescriptorSerializer::BlockDescriptorProxy", + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "states": { + "title": "associative container (class std::map,class std::allocator >,struct Puv::v1_20_50::BlockDescriptor::Compound,struct std::less,class std::allocator > >,class std::allocator,class std::allocator > const ,struct Puv::v1_20_50::BlockDescriptor::Compound> > >)", + "type": "object", + "additionalProperties": { + "$ref": "#/$defs/1290538044" + } + }, + "tags": { + "type": "string" + } + } + }, + "4107396053": { + "title": "struct Puv::v1_20_50::BlockDescriptor", + "oneOf": [ + { + "$ref": "#/$defs/2836600109" + }, + { + "minLength": 1, + "type": "string" + } + ] + } + } +} \ No newline at end of file diff --git a/metadata/json_schemas/Projectile v1.20.50.json b/metadata/json_schemas/Projectile v1.20.50.json new file mode 100644 index 000000000..723481ec0 --- /dev/null +++ b/metadata/json_schemas/Projectile v1.20.50.json @@ -0,0 +1,23 @@ +{ + "title": "minecraft:projectile v1.20.50", + "description": "Projectile items shoot out, like an arrow.", + "type": "object", + "properties": { + "minimum_critical_power": { + "description": "Specifies how long a player must charge a projectile for it to critically hit.", + "type": "number" + }, + "projectile_entity": { + "description": "Which entity is to be fired as a projectile.", + "minLength": 0, + "maxLength": 18446744073709551615, + "pattern": "^(?:\\w+(?:\\.\\w+)*:(?=\\w))?(?:\\w+(?:\\.\\w+)*)(?:<((?:\\w+(?:\\.\\w+)*:(?=\\w))?\\w+(?:\\.\\w+)*)*>)?$", + "type": "string" + } + }, + "required": [ + "projectile_entity" + ], + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:projectile v1.20.50" +} \ No newline at end of file diff --git a/metadata/json_schemas/Record v1.20.50.json b/metadata/json_schemas/Record v1.20.50.json new file mode 100644 index 000000000..c68053cc5 --- /dev/null +++ b/metadata/json_schemas/Record v1.20.50.json @@ -0,0 +1,509 @@ +{ + "title": "minecraft:record v1.20.50", + "description": "Record Item Component. Used by record items to play music.", + "type": "object", + "properties": { + "comparator_signal": { + "description": "Specifies signal strength for comparator blocks to use, from 1 - 13.", + "type": "integer" + }, + "duration": { + "description": "Specifies duration of sound event in seconds, float value.", + "type": "number" + }, + "sound_event": { + "title": "enum Puv::Legacy::LevelSoundEvent", + "description": "Sound event type: 13, cat, blocks, chirp, far, mall, mellohi, stal, strad, ward, 11, wait, pigstep, otherside, 5, relic.", + "type": "string", + "enum": [ + "add.chest", + "admire", + "agitated", + "ambient", + "ambient.aggressive", + "ambient.baby", + "ambient.basalt_deltas.additions", + "ambient.basalt_deltas.loop", + "ambient.candle", + "ambient.cave", + "ambient.crimson_forest.additions", + "ambient.crimson_forest.loop", + "ambient.crimson_forest.mood", + "ambient.in.air", + "ambient.in.raid", + "ambient.in.water", + "ambient.nether_wastes.additions", + "ambient.nether_wastes.loop", + "ambient.nether_wastes.mood", + "ambient.pollinate", + "ambient.screamer", + "ambient.soulsand_valley.additions", + "ambient.soulsand_valley.loop", + "ambient.soulsand_valley.mood", + "ambient.tame", + "ambient.underwater.enter", + "ambient.underwater.exit", + "ambient.warped_forest.additions", + "ambient.warped_forest.loop", + "ambient.warped_forest.mood", + "ambient.worried", + "angry", + "apply_effect.bad_omen", + "apply_effect.raid_omen", + "apply_effect.trial_omen", + "armor", + "armor.break_wolf", + "armor.crack_wolf", + "armor.equip_chain", + "armor.equip_diamond", + "armor.equip_elytra", + "armor.equip_generic", + "armor.equip_gold", + "armor.equip_iron", + "armor.equip_leather", + "armor.equip_netherite", + "armor.equip_wolf", + "armor.repair_wolf", + "armor.unequip_wolf", + "attach", + "attack", + "attack.nodamage", + "attack.strong", + "balloonpop", + "beacon.activate", + "beacon.ambient", + "beacon.deactivate", + "beacon.power", + "blast", + "block.bamboo_sapling.place", + "block.barrel.close", + "block.barrel.open", + "block.beehive.drip", + "block.beehive.enter", + "block.beehive.exit", + "block.beehive.shear", + "block.beehive.work", + "block.bell.hit", + "block.blastfurnace.fire_crackle", + "block.campfire.crackle", + "block.cartography_table.use", + "block.click", + "block.click.fail", + "block.composter.empty", + "block.composter.fill", + "block.composter.fill_success", + "block.composter.ready", + "block.copper_bulb.turn_off", + "block.copper_bulb.turn_on", + "block.decorated_pot.insert", + "block.decorated_pot.insert_fail", + "block.enchanting_table.use", + "block.end_portal.spawn", + "block.end_portal_frame.fill", + "block.fletching_table.use", + "block.frog_spawn.break", + "block.frog_spawn.hatch", + "block.furnace.lit", + "block.grindstone.use", + "block.loom.use", + "block.scaffolding.climb", + "block.sculk.spread", + "block.sculk_catalyst.bloom", + "block.sculk_sensor.place", + "block.sculk_shrieker.place", + "block.sculk_shrieker.shriek", + "block.sign.waxed_interact_fail", + "block.smithing_table.use", + "block.smoker.smoke", + "block.sniffer_egg.crack", + "block.sniffer_egg.hatch", + "block.stonecutter.use", + "block.sweet_berry_bush.hurt", + "block.sweet_berry_bush.pick", + "block.turtle_egg.attack", + "block.turtle_egg.break", + "block.turtle_egg.crack", + "block.turtle_egg.hatch", + "boost", + "born", + "bottle.dragonbreath", + "bottle.empty", + "bottle.fill", + "bow", + "bow.hit", + "break", + "break.block", + "break_pot", + "breathe", + "breeze_wind_charge.burst", + "brush", + "brush_completed", + "bubble.down", + "bubble.downinside", + "bubble.pop", + "bubble.up", + "bubble.upinside", + "bucket.empty.fish", + "bucket.empty.lava", + "bucket.empty.powder_snow", + "bucket.empty.water", + "bucket.fill.fish", + "bucket.fill.lava", + "bucket.fill.powder_snow", + "bucket.fill.water", + "bullet.hit", + "bundle.drop_contents", + "bundle.insert", + "bundle.remove_one", + "burp", + "button.click_off", + "button.click_on", + "cake.add_candle", + "camera.take_picture", + "cant_breed", + "cast.spell", + "cauldron_drip.lava.pointed_dripstone", + "cauldron_drip.water.pointed_dripstone", + "celebrate", + "charge", + "charge.sculk", + "chest.closed", + "chest.open", + "chime.amethyst_block", + "chorusdeath", + "chorusgrow", + "conduit.activate", + "conduit.ambient", + "conduit.attack", + "conduit.deactivate", + "conduit.short", + "convert_mooshroom", + "convert_to_drowned", + "convert_to_frog", + "convert_to_stray", + "converted_to_zombified", + "copper.wax.off", + "copper.wax.on", + "crafter.craft", + "crafter.disable_slot", + "crafter.fail", + "crossbow.loading.end", + "crossbow.loading.middle", + "crossbow.loading.start", + "crossbow.quick_charge.end", + "crossbow.quick_charge.middle", + "crossbow.quick_charge.start", + "crossbow.shoot", + "dash_ready", + "death", + "death.baby", + "death.in.water", + "death.mid.volume", + "death.min.volume", + "death.screamer", + "death.to.zombie", + "default", + "deny", + "detach", + "disappeared", + "door.close", + "door.open", + "drink", + "drink.honey", + "drink.milk", + "drip.lava.pointed_dripstone", + "drip.water.pointed_dripstone", + "drop.slot", + "eat", + "elderguardian.curse", + "elemconstruct.open", + "enderchest.closed", + "enderchest.open", + "explode", + "extinguish.candle", + "extinguish.fire", + "fall", + "fall.big", + "fall.small", + "fang", + "fence_gate.close", + "fence_gate.open", + "fire", + "fizz", + "flap", + "flop", + "fly", + "fuse", + "gallop", + "glass", + "glow_squid.ink_squirt", + "glowstick.use", + "growl", + "haggle", + "haggle.idle", + "haggle.no", + "haggle.yes", + "heartbeat", + "heavy.step", + "hit", + "horn_break", + "horn_call0", + "horn_call1", + "horn_call2", + "horn_call3", + "horn_call4", + "horn_call5", + "horn_call6", + "horn_call7", + "hurt", + "hurt.baby", + "hurt.in.water", + "hurt.reduced", + "hurt.screamer", + "icebomb.hit", + "ignite", + "imitate.blaze", + "imitate.breeze", + "imitate.cave_spider", + "imitate.creeper", + "imitate.elder_guardian", + "imitate.ender_dragon", + "imitate.enderman", + "imitate.evocation_illager", + "imitate.ghast", + "imitate.husk", + "imitate.illusion_illager", + "imitate.magma_cube", + "imitate.polar_bear", + "imitate.shulker", + "imitate.silverfish", + "imitate.skeleton", + "imitate.slime", + "imitate.spider", + "imitate.stray", + "imitate.vex", + "imitate.vindication_illager", + "imitate.warden", + "imitate.witch", + "imitate.wither", + "imitate.wither_skeleton", + "imitate.wolf", + "imitate.zombie", + "imitate.zombie_pigman", + "imitate.zombie_villager", + "insert", + "insert_enchanted", + "irongolem.crack", + "irongolem.repair", + "item.book.put", + "item.fizz", + "item.shield.block", + "item.spyglass.stop_using", + "item.spyglass.use", + "item.trident.hit", + "item.trident.hit_ground", + "item.trident.return", + "item.trident.riptide_1", + "item.trident.riptide_2", + "item.trident.riptide_3", + "item.trident.throw", + "item.trident.thunder", + "item.use.on", + "item_given", + "item_taken", + "item_thrown", + "jump", + "jump.prevent", + "jump_to_block", + "land", + "large.blast", + "launch", + "lava", + "lava.pop", + "lay_egg", + "lay_spawn", + "leashknot.break", + "leashknot.place", + "levelup", + "listening", + "listening_angry", + "lodestone_compass.link_compass_to_lodestone", + "lt.reaction.bleach", + "lt.reaction.epaste", + "lt.reaction.epaste2", + "lt.reaction.fertilizer", + "lt.reaction.fire", + "lt.reaction.fireball", + "lt.reaction.icebomb", + "lt.reaction.mgsalt", + "lt.reaction.miscexplosion", + "lt.reaction.miscfire", + "lt.reaction.miscmystical", + "lt.reaction.miscmystical2", + "lt.reaction.product", + "mace.heavy_smash_ground", + "mace.smash_air", + "mace.smash_ground", + "mad", + "milk", + "milk.screamer", + "milk_suspiciously", + "mob.armadillo.brush", + "mob.armadillo.scute_drop", + "mob.armor_stand.place", + "mob.hoglin.converted_to_zombified", + "mob.husk.convert_to_zombie", + "mob.pig.death", + "mob.player.hurt_drown", + "mob.player.hurt_freeze", + "mob.player.hurt_on_fire", + "mob.warning", + "mob.warning.baby", + "nearby_close", + "nearby_closer", + "nearby_closest", + "note", + "note.bass", + "ominous_bottle.end_use", + "ominous_item_spawner.about_to_spawn_item", + "ominous_item_spawner.spawn_item", + "ominous_item_spawner.spawn_item_begin", + "panic", + "pant", + "particle.soul_escape.loud", + "particle.soul_escape.quiet", + "pick_berries.cave_vines", + "pickup", + "pickup_enchanted", + "piston.in", + "piston.out", + "place", + "plop", + "pop", + "portal", + "portal.travel", + "potion.brewed", + "power.off", + "power.off.sculk_sensor", + "power.on", + "power.on.sculk_sensor", + "pre_ram", + "pre_ram.screamer", + "prepare.attack", + "prepare.summon", + "prepare.wololo", + "presneeze", + "pressure_plate.click_off", + "pressure_plate.click_on", + "pumpkin.carve", + "purr", + "purreow", + "raid.horn", + "ram_impact", + "ram_impact.screamer", + "random.anvil_use", + "reappeared", + "record.11", + "record.13", + "record.5", + "record.blocks", + "record.cat", + "record.chirp", + "record.creator", + "record.creator_music_box", + "record.far", + "record.mall", + "record.mellohi", + "record.otherside", + "record.pigstep", + "record.precipice", + "record.relic", + "record.stal", + "record.strad", + "record.wait", + "record.ward", + "reflect", + "remedy", + "respawn_anchor.ambient", + "respawn_anchor.basalt_deltas.mood", + "respawn_anchor.charge", + "respawn_anchor.deplete", + "respawn_anchor.set_spawn", + "retreat", + "roar", + "saddle", + "scared", + "scrape", + "screech", + "shake", + "shatter_pot", + "shear", + "shoot", + "shulker.close", + "shulker.open", + "shulkerbox.closed", + "shulkerbox.open", + "sleep", + "smithing_table.use", + "sneeze", + "sonic_boom", + "sonic_charge", + "sparkler.active", + "sparkler.use", + "spawn", + "splash", + "squid.ink_squirt", + "squish.big", + "squish.small", + "stare", + "step", + "step.baby", + "step_lava", + "step_sand", + "stun", + "swim", + "swoop", + "takeoff", + "teleport", + "tempt", + "thorns", + "throw", + "thunder", + "tilt_down.big_dripleaf", + "tilt_up.big_dripleaf", + "tongue", + "trapdoor.close", + "trapdoor.open", + "trial_spawner.ambient", + "trial_spawner.ambient_ominous", + "trial_spawner.charge_activate", + "trial_spawner.close_shutter", + "trial_spawner.detect_player", + "trial_spawner.eject_item", + "trial_spawner.open_shutter", + "trial_spawner.spawn_mob", + "tripod", + "twinkle", + "ui.cartography_table.take_result", + "ui.loom.take_result", + "ui.stonecutter.take_result", + "undefined", + "unfect", + "vault.activate", + "vault.ambient", + "vault.close_shutter", + "vault.deactivate", + "vault.eject_item", + "vault.insert_item", + "vault.insert_item_fail", + "vault.open_shutter", + "warn", + "water", + "whine", + "wind_charge.burst" + ] + } + }, + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:record v1.20.50" +} \ No newline at end of file diff --git a/metadata/json_schemas/Repair v1.20.50.json b/metadata/json_schemas/Repair v1.20.50.json new file mode 100644 index 000000000..e44f734f2 --- /dev/null +++ b/metadata/json_schemas/Repair v1.20.50.json @@ -0,0 +1,77 @@ +{ + "title": "struct Puv::v1_20_50::RepairableItemComponent::RepairItemEntry", + "oneOf": [ + { + "title": "sequence container (class std::vector >)", + "type": "array", + "items": { + "$ref": "#/$defs/2849785526" + } + }, + { + "type": "object", + "properties": { + "items": { + "title": "sequence container (class std::vector >)", + "description": "Items that may be used to repair an item.", + "type": "array", + "items": { + "$ref": "#/$defs/2849785526" + } + }, + "repair_amount": { + "description": "How much the item is repaired.", + "$ref": "#/$defs/1181846166" + } + }, + "required": [ + "items" + ] + } + ], + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "struct Puv::v1_20_50::RepairableItemComponent::RepairItemEntry", + "$defs": { + "1181846166": { + "title": "struct Puv::Legacy::ExpressionNode", + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "object", + "properties": { + "expression": { + "type": "string" + }, + "version": { + "type": "integer" + } + }, + "required": [ + "expression", + "version" + ] + } + ] + }, + "2849785526": { + "title": "struct Puv::Legacy::ItemDescriptor", + "oneOf": [ + { + "type": "string" + }, + { + "title": "associative container (class std::map,class std::allocator >,class std::basic_string,class std::allocator >,struct std::less,class std::allocator > >,class std::allocator,class std::allocator > const ,class std::basic_string,class std::allocator > > > >)", + "type": "object", + "additionalProperties": { + "type": "string" + } + } + ] + } + } +} \ No newline at end of file diff --git a/metadata/json_schemas/Repairable v1.20.50.json b/metadata/json_schemas/Repairable v1.20.50.json new file mode 100644 index 000000000..4d4f1a597 --- /dev/null +++ b/metadata/json_schemas/Repairable v1.20.50.json @@ -0,0 +1,92 @@ +{ + "title": "minecraft:repairable v1.20.50", + "description": "The repairable item component specifies which items can be used to repair this item, along with how much durability is gained.", + "type": "object", + "properties": { + "repair_items": { + "title": "sequence container (class std::vector >)", + "description": "List of repair item entries. Each entry needs to define a list of strings for `items` that can be used for the repair and an optional `repair_amount` for how much durability is gained.", + "type": "array", + "items": { + "$ref": "#/$defs/2122767410" + } + } + }, + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:repairable v1.20.50", + "$defs": { + "1181846166": { + "title": "struct Puv::Legacy::ExpressionNode", + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "object", + "properties": { + "expression": { + "type": "string" + }, + "version": { + "type": "integer" + } + }, + "required": [ + "expression", + "version" + ] + } + ] + }, + "2122767410": { + "title": "struct Puv::v1_20_50::RepairableItemComponent::RepairItemEntry", + "oneOf": [ + { + "title": "sequence container (class std::vector >)", + "type": "array", + "items": { + "$ref": "#/$defs/2849785526" + } + }, + { + "type": "object", + "properties": { + "items": { + "title": "sequence container (class std::vector >)", + "description": "Items that may be used to repair an item.", + "type": "array", + "items": { + "$ref": "#/$defs/2849785526" + } + }, + "repair_amount": { + "description": "How much the item is repaired.", + "$ref": "#/$defs/1181846166" + } + }, + "required": [ + "items" + ] + } + ] + }, + "2849785526": { + "title": "struct Puv::Legacy::ItemDescriptor", + "oneOf": [ + { + "type": "string" + }, + { + "title": "associative container (class std::map,class std::allocator >,class std::basic_string,class std::allocator >,struct std::less,class std::allocator > >,class std::allocator,class std::allocator > const ,class std::basic_string,class std::allocator > > > >)", + "type": "object", + "additionalProperties": { + "type": "string" + } + } + ] + } + } +} \ No newline at end of file diff --git a/metadata/json_schemas/Shooter v1.20.50.json b/metadata/json_schemas/Shooter v1.20.50.json new file mode 100644 index 000000000..5a80d0f62 --- /dev/null +++ b/metadata/json_schemas/Shooter v1.20.50.json @@ -0,0 +1,71 @@ +{ + "title": "minecraft:shooter v1.20.50", + "description": "Shooter Item Component.", + "type": "object", + "properties": { + "ammunition": { + "title": "sequence container (class std::vector >)", + "description": "Ammunition.", + "type": "array", + "items": { + "$ref": "#/$defs/2221989686" + } + }, + "charge_on_draw": { + "description": "Charge on draw? Default is set to false.", + "type": "boolean" + }, + "max_draw_duration": { + "description": "Draw Duration. Default is set to 0.", + "type": "number" + }, + "scale_power_by_draw_duration": { + "description": "Scale power by draw duration? Default is set to false.", + "type": "boolean" + } + }, + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:shooter v1.20.50", + "$defs": { + "2221989686": { + "title": "struct Puv::v1_20_50::ShooterItemComponent::Ammunition", + "type": "object", + "properties": { + "item": { + "description": "Ammunition item description identifier.", + "$ref": "#/$defs/2849785526" + }, + "search_inventory": { + "description": "Can search inventory? Default is set to false.", + "type": "boolean" + }, + "use_in_creative": { + "description": "Can use in creative mode? Default is set to false.", + "type": "boolean" + }, + "use_offhand": { + "description": "Can use off-hand? Default is set to false.", + "type": "boolean" + } + }, + "required": [ + "item" + ] + }, + "2849785526": { + "title": "struct Puv::Legacy::ItemDescriptor", + "oneOf": [ + { + "type": "string" + }, + { + "title": "associative container (class std::map,class std::allocator >,class std::basic_string,class std::allocator >,struct std::less,class std::allocator > >,class std::allocator,class std::allocator > const ,class std::basic_string,class std::allocator > > > >)", + "type": "object", + "additionalProperties": { + "type": "string" + } + } + ] + } + } +} \ No newline at end of file diff --git a/metadata/json_schemas/ShouldDespawn v1.20.50.json b/metadata/json_schemas/ShouldDespawn v1.20.50.json new file mode 100644 index 000000000..93abb8f3f --- /dev/null +++ b/metadata/json_schemas/ShouldDespawn v1.20.50.json @@ -0,0 +1,20 @@ +{ + "title": "minecraft:should_despawn v1.20.50", + "description": "Should_despawn component determines if the item should eventually despawn while floating in the world", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Determines whether the item should eventually despawn while floating in the world.", + "type": "boolean" + } + } + } + ], + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:should_despawn v1.20.50" +} \ No newline at end of file diff --git a/metadata/json_schemas/StackedByData v1.20.50.json b/metadata/json_schemas/StackedByData v1.20.50.json new file mode 100644 index 000000000..dc7af491d --- /dev/null +++ b/metadata/json_schemas/StackedByData v1.20.50.json @@ -0,0 +1,20 @@ +{ + "title": "minecraft:stacked_by_data v1.20.50", + "description": "The stacked_by_data component determines whether the same items with different aux values can stack. Also defines whether the item entities can merge while floating in the world.", + "oneOf": [ + { + "type": "boolean" + }, + { + "type": "object", + "properties": { + "value": { + "description": "Determines whether the same item with different aux values can stack. Also defines whether the item entities can merge while floating in the world.", + "type": "boolean" + } + } + } + ], + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:stacked_by_data v1.20.50" +} \ No newline at end of file diff --git a/metadata/json_schemas/Storage v1.20.50.json b/metadata/json_schemas/Storage v1.20.50.json new file mode 100644 index 000000000..3482dfb17 --- /dev/null +++ b/metadata/json_schemas/Storage v1.20.50.json @@ -0,0 +1,13 @@ +{ + "title": "minecraft:item_storage v1.20.50", + "description": "The Storage Item Component is used for storing Items within an Item's User Data", + "type": "object", + "properties": { + "capacity": { + "description": "The max capacity of the item. Default is 64", + "type": "integer" + } + }, + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:item_storage v1.20.50" +} \ No newline at end of file diff --git a/metadata/json_schemas/Tags v1.20.50.json b/metadata/json_schemas/Tags v1.20.50.json new file mode 100644 index 000000000..326a098cd --- /dev/null +++ b/metadata/json_schemas/Tags v1.20.50.json @@ -0,0 +1,17 @@ +{ + "title": "minecraft:tags v1.20.50", + "description": "The tags component specifies which tags an item has on it.", + "type": "object", + "properties": { + "tags": { + "title": "sequence container (class std::vector,class std::allocator >,class std::allocator,class std::allocator > > >)", + "description": "An array that can contain multiple item tags.", + "type": "array", + "items": { + "type": "string" + } + } + }, + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:tags v1.20.50" +} \ No newline at end of file diff --git a/metadata/json_schemas/Throwable v1.20.50.json b/metadata/json_schemas/Throwable v1.20.50.json new file mode 100644 index 000000000..1439e26fa --- /dev/null +++ b/metadata/json_schemas/Throwable v1.20.50.json @@ -0,0 +1,41 @@ +{ + "title": "minecraft:throwable v1.20.50", + "description": "Throwable items can be thrown by the player, such as a snowball.", + "type": "object", + "properties": { + "default_offset_scale": { + "description": "The scale at which the throw position is adjusted by the aim direction.", + "type": "number" + }, + "do_swing_animation": { + "description": "Determines whether the item should use the swing animation when thrown. Default is set to false.", + "type": "boolean" + }, + "inside_block_offset_scale": { + "description": "The scale at which the throw position is adjusted by the aim direction if the default throw position is inside a solid block.", + "type": "number" + }, + "launch_power_scale": { + "description": "The scale at which the power of the throw increases. Default is set to 1.0.", + "type": "number" + }, + "max_draw_duration": { + "description": "The maximum duration to draw a throwable item. Default is set to 0.0.", + "type": "number" + }, + "max_launch_power": { + "description": "The maximum power to launch the throwable item. Default is set to 1.0.", + "type": "number" + }, + "min_draw_duration": { + "description": "The minimum duration to draw a throwable item. Default is set to 0.0.", + "type": "number" + }, + "scale_power_by_draw_duration": { + "description": "Whether or not the power of the throw increases with duration charged. Default is set to false.", + "type": "boolean" + } + }, + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:throwable v1.20.50" +} \ No newline at end of file diff --git a/metadata/json_schemas/UseAnimation v1.20.50.json b/metadata/json_schemas/UseAnimation v1.20.50.json new file mode 100644 index 000000000..3c8312aeb --- /dev/null +++ b/metadata/json_schemas/UseAnimation v1.20.50.json @@ -0,0 +1,46 @@ +{ + "title": "minecraft:use_animation v1.20.50", + "description": "Use_animation specifies which animation is played when the player uses the item.", + "oneOf": [ + { + "title": "enum Puv::Legacy::UseAnimation", + "type": "string", + "enum": [ + "block", + "bow", + "brush", + "camera", + "crossbow", + "drink", + "eat", + "none", + "spear", + "spyglass" + ] + }, + { + "type": "object", + "properties": { + "value": { + "title": "enum Puv::Legacy::UseAnimation", + "description": "Specifies which animation to play when the the item is used.", + "type": "string", + "enum": [ + "block", + "bow", + "brush", + "camera", + "crossbow", + "drink", + "eat", + "none", + "spear", + "spyglass" + ] + } + } + } + ], + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:use_animation v1.20.50" +} \ No newline at end of file diff --git a/metadata/json_schemas/UseModifiers v1.20.50.json b/metadata/json_schemas/UseModifiers v1.20.50.json new file mode 100644 index 000000000..bab0eb5ed --- /dev/null +++ b/metadata/json_schemas/UseModifiers v1.20.50.json @@ -0,0 +1,20 @@ +{ + "title": "minecraft:use_modifiers v1.20.50", + "description": "This component modifies use effects, including how long the item takes to use and the player's speed when used in combination with components like \"shooter\", \"throwable\", or \"food\".", + "type": "object", + "properties": { + "movement_modifier": { + "description": "Modifier value to scale the players movement speed when item is in use.", + "minimum": 0.0, + "maximum": 1.0, + "type": "number" + }, + "use_duration": { + "description": "How long the item takes to use in seconds.", + "minimum": 0.0, + "type": "number" + } + }, + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:use_modifiers v1.20.50" +} \ No newline at end of file diff --git a/metadata/json_schemas/Wearable v1.20.50.json b/metadata/json_schemas/Wearable v1.20.50.json new file mode 100644 index 000000000..6d6300dae --- /dev/null +++ b/metadata/json_schemas/Wearable v1.20.50.json @@ -0,0 +1,29 @@ +{ + "title": "minecraft:wearable v1.20.50", + "description": "Wearable items can be worn by a player in the head, chest, legs, feet, or off-hand slots.", + "type": "object", + "properties": { + "protection": { + "description": "How much protection the wearable item provides. Default is set to 0.", + "minimum": 0.0, + "type": "integer" + }, + "slot": { + "title": "enum Puv::Legacy::EquipmentSlot", + "description": "Specifies where the item can be worn. If any non-hand slot is chosen, the max stack size is set to 1.", + "type": "string", + "enum": [ + "slot.armor.chest", + "slot.armor.feet", + "slot.armor.head", + "slot.armor.legs", + "slot.weapon.offhand" + ] + } + }, + "required": [ + "slot" + ], + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "minecraft:wearable v1.20.50" +} \ No newline at end of file diff --git a/metadata/script_modules/@minecraft/common_1.0.0.json b/metadata/script_modules/@minecraft/common_1.0.0.json index 14a502b5c..3dd0715da 100644 --- a/metadata/script_modules/@minecraft/common_1.0.0.json +++ b/metadata/script_modules/@minecraft/common_1.0.0.json @@ -88,7 +88,7 @@ ], "functions" : [], "interfaces" : [], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "script", "name" : "@minecraft/common", "objects" : [], diff --git a/metadata/script_modules/@minecraft/common_1.1.0.json b/metadata/script_modules/@minecraft/common_1.1.0.json index 24b4c7f1c..92e564474 100644 --- a/metadata/script_modules/@minecraft/common_1.1.0.json +++ b/metadata/script_modules/@minecraft/common_1.1.0.json @@ -126,7 +126,7 @@ } } ], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "script", "name" : "@minecraft/common", "objects" : [], diff --git a/metadata/script_modules/@minecraft/common_1.2.0.json b/metadata/script_modules/@minecraft/common_1.2.0.json index a8cfe5d16..48e3fab5f 100644 --- a/metadata/script_modules/@minecraft/common_1.2.0.json +++ b/metadata/script_modules/@minecraft/common_1.2.0.json @@ -175,7 +175,7 @@ } } ], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "script", "name" : "@minecraft/common", "objects" : [], diff --git a/metadata/script_modules/@minecraft/debug-utilities_1.0.0-beta.json b/metadata/script_modules/@minecraft/debug-utilities_1.0.0-beta.json index 4e8315956..09de52b8a 100644 --- a/metadata/script_modules/@minecraft/debug-utilities_1.0.0-beta.json +++ b/metadata/script_modules/@minecraft/debug-utilities_1.0.0-beta.json @@ -20,7 +20,7 @@ "arguments" : [ { "details" : null, - "name" : "isStopped", + "name" : "disable", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -30,7 +30,7 @@ ], "is_constructor" : false, "is_static" : true, - "name" : "disableWatchdog", + "name" : "disableWatchdogTimingWarnings", "privilege" : "read_only", "return_type" : { "is_bind_type" : false, @@ -40,7 +40,7 @@ } ], "interfaces" : [], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "script", "name" : "@minecraft/debug-utilities", "objects" : [], diff --git a/metadata/script_modules/@minecraft/server-admin_1.0.0-beta.json b/metadata/script_modules/@minecraft/server-admin_1.0.0-beta.json index 5bb52d0d1..f5875518b 100644 --- a/metadata/script_modules/@minecraft/server-admin_1.0.0-beta.json +++ b/metadata/script_modules/@minecraft/server-admin_1.0.0-beta.json @@ -157,7 +157,7 @@ "errors" : [], "functions" : [], "interfaces" : [], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "script", "name" : "@minecraft/server-admin", "objects" : [ diff --git a/metadata/script_modules/@minecraft/server-gametest_1.0.0-beta.json b/metadata/script_modules/@minecraft/server-gametest_1.0.0-beta.json index 90937014c..741b1e3a2 100644 --- a/metadata/script_modules/@minecraft/server-gametest_1.0.0-beta.json +++ b/metadata/script_modules/@minecraft/server-gametest_1.0.0-beta.json @@ -5673,7 +5673,7 @@ } } ], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "script", "name" : "@minecraft/server-gametest", "objects" : [], diff --git a/metadata/script_modules/@minecraft/server-net_1.0.0-beta.json b/metadata/script_modules/@minecraft/server-net_1.0.0-beta.json index 7126300ac..eb5bc02aa 100644 --- a/metadata/script_modules/@minecraft/server-net_1.0.0-beta.json +++ b/metadata/script_modules/@minecraft/server-net_1.0.0-beta.json @@ -566,7 +566,7 @@ "errors" : [], "functions" : [], "interfaces" : [], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "script", "name" : "@minecraft/server-net", "objects" : [ diff --git a/metadata/script_modules/@minecraft/server-ui_1.0.0.json b/metadata/script_modules/@minecraft/server-ui_1.0.0.json index bae487557..13f8912dc 100644 --- a/metadata/script_modules/@minecraft/server-ui_1.0.0.json +++ b/metadata/script_modules/@minecraft/server-ui_1.0.0.json @@ -1068,7 +1068,7 @@ ], "functions" : [], "interfaces" : [], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "script", "name" : "@minecraft/server-ui", "objects" : [], diff --git a/metadata/script_modules/@minecraft/server-ui_1.1.0.json b/metadata/script_modules/@minecraft/server-ui_1.1.0.json index c5cfc5a23..ed207b491 100644 --- a/metadata/script_modules/@minecraft/server-ui_1.1.0.json +++ b/metadata/script_modules/@minecraft/server-ui_1.1.0.json @@ -1119,7 +1119,7 @@ ], "functions" : [], "interfaces" : [], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "script", "name" : "@minecraft/server-ui", "objects" : [], diff --git a/metadata/script_modules/@minecraft/server-ui_1.2.0-beta.json b/metadata/script_modules/@minecraft/server-ui_1.2.0-beta.json index afc375236..99636e995 100644 --- a/metadata/script_modules/@minecraft/server-ui_1.2.0-beta.json +++ b/metadata/script_modules/@minecraft/server-ui_1.2.0-beta.json @@ -1158,7 +1158,7 @@ ], "functions" : [], "interfaces" : [], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "script", "name" : "@minecraft/server-ui", "objects" : [], diff --git a/metadata/script_modules/@minecraft/server_1.0.0.json b/metadata/script_modules/@minecraft/server_1.0.0.json index c47732ee2..16f17f646 100644 --- a/metadata/script_modules/@minecraft/server_1.0.0.json +++ b/metadata/script_modules/@minecraft/server_1.0.0.json @@ -321,7 +321,7 @@ "errors" : [], "functions" : [], "interfaces" : [], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "script", "name" : "@minecraft/server", "objects" : [ diff --git a/metadata/script_modules/@minecraft/server_1.1.0.json b/metadata/script_modules/@minecraft/server_1.1.0.json index 861e1ca61..999981822 100644 --- a/metadata/script_modules/@minecraft/server_1.1.0.json +++ b/metadata/script_modules/@minecraft/server_1.1.0.json @@ -1165,26 +1165,8 @@ "interfaces" : [ { "base_types" : [], - "name" : "EntityQueryOptions", + "name" : "EntityFilter", "properties" : [ - { - "is_read_only" : false, - "name" : "closest", - "type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "optional", - "optional_type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } - } - } - }, { "is_read_only" : false, "name" : "excludeFamilies", @@ -1301,53 +1283,57 @@ }, { "is_read_only" : false, - "name" : "farthest", + "name" : "gameMode", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : false, + "is_bind_type" : true, "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "GameMode" } } }, { "is_read_only" : false, - "name" : "gameMode", + "name" : "maxHorizontalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : true, + "is_bind_type" : false, "is_errorable" : false, - "name" : "GameMode" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "location", + "name" : "maxLevel", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : true, + "is_bind_type" : false, "is_errorable" : false, - "name" : "Vector3" + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "maxDistance", + "name" : "maxVerticalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -1365,7 +1351,7 @@ }, { "is_read_only" : false, - "name" : "maxHorizontalRotation", + "name" : "minHorizontalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -1383,7 +1369,7 @@ }, { "is_read_only" : false, - "name" : "maxLevel", + "name" : "minLevel", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -1401,7 +1387,7 @@ }, { "is_read_only" : false, - "name" : "maxVerticalRotation", + "name" : "minVerticalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -1419,7 +1405,7 @@ }, { "is_read_only" : false, - "name" : "minDistance", + "name" : "name", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -1427,53 +1413,51 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "float", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "string" } } }, { "is_read_only" : false, - "name" : "minHorizontalRotation", + "name" : "scoreOptions", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityQueryScoreOptions" + }, "is_bind_type" : false, "is_errorable" : false, - "name" : "float", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "array" } } }, { "is_read_only" : false, - "name" : "minLevel", + "name" : "tags", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, "is_bind_type" : false, "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "array" } } }, { "is_read_only" : false, - "name" : "minVerticalRotation", + "name" : "type", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -1481,7 +1465,38 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "float", + "name" : "string" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + ], + "name" : "EntityQueryOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "closest", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", "valid_range" : { "max" : 2147483647, "min" : -2147483648 @@ -1491,7 +1506,7 @@ }, { "is_read_only" : false, - "name" : "name", + "name" : "farthest", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -1499,51 +1514,49 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "string" + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "scoreOptions", + "name" : "location", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "element_type" : { - "is_bind_type" : true, - "is_errorable" : false, - "name" : "EntityQueryScoreOptions" - }, - "is_bind_type" : false, + "is_bind_type" : true, "is_errorable" : false, - "name" : "array" + "name" : "Vector3" } } }, { "is_read_only" : false, - "name" : "tags", + "name" : "maxDistance", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "element_type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "string" - }, "is_bind_type" : false, "is_errorable" : false, - "name" : "array" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "type", + "name" : "minDistance", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -1551,7 +1564,11 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "string" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } } @@ -1830,7 +1847,7 @@ } } ], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "script", "name" : "@minecraft/server", "objects" : [ diff --git a/metadata/script_modules/@minecraft/server_1.10.0.json b/metadata/script_modules/@minecraft/server_1.10.0.json index efd4f0884..a01a1fc91 100644 --- a/metadata/script_modules/@minecraft/server_1.10.0.json +++ b/metadata/script_modules/@minecraft/server_1.10.0.json @@ -3327,7 +3327,7 @@ "name" : "EntityRaycastHit" }, "is_bind_type" : false, - "is_errorable" : false, + "is_errorable" : true, "name" : "array" } }, @@ -4079,7 +4079,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -7726,7 +7726,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -8583,7 +8583,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -8804,7 +8804,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9180,7 +9180,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9336,7 +9336,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9549,7 +9549,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9648,7 +9648,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9747,7 +9747,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9846,7 +9846,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9945,7 +9945,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -10088,7 +10088,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -10563,7 +10563,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -11331,7 +11331,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -11484,7 +11484,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -11632,7 +11632,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -11776,7 +11776,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -11929,7 +11929,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -12057,7 +12057,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -12214,7 +12214,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -12342,7 +12342,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -12781,7 +12781,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -13417,7 +13417,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -13585,7 +13585,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -13742,7 +13742,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -13904,7 +13904,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -14076,7 +14076,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -14220,7 +14220,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -14374,7 +14374,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -14593,7 +14593,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -14736,7 +14736,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -14931,7 +14931,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -15084,7 +15084,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -15259,7 +15259,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -15434,7 +15434,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -17273,7 +17273,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -17414,7 +17414,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -17553,7 +17553,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -18771,7 +18771,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -21348,6 +21348,131 @@ "name" : "BlockEventOptions" } }, + { + "base_types" : [], + "name" : "BlockFilter", + "properties" : [ + { + "is_read_only" : false, + "name" : "excludePermutations", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockPermutation" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "excludeTags", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "excludeTypes", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "includePermutations", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockPermutation" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "includeTags", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "includeTypes", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockFilter" + } + }, { "base_types" : [], "name" : "BlockHitInformation", @@ -21425,7 +21550,13 @@ } }, { - "base_types" : [], + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockFilter" + } + ], "name" : "BlockRaycastOptions", "properties" : [ { @@ -22187,51 +22318,8 @@ }, { "base_types" : [], - "name" : "EntityHitInformation", + "name" : "EntityFilter", "properties" : [ - { - "is_read_only" : false, - "name" : "entity", - "type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "optional", - "optional_type" : { - "is_bind_type" : true, - "is_errorable" : false, - "name" : "Entity" - } - } - } - ], - "type" : { - "is_bind_type" : true, - "is_errorable" : false, - "name" : "EntityHitInformation" - } - }, - { - "base_types" : [], - "name" : "EntityQueryOptions", - "properties" : [ - { - "is_read_only" : false, - "name" : "closest", - "type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "optional", - "optional_type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } - } - } - }, { "is_read_only" : false, "name" : "excludeFamilies", @@ -22348,53 +22436,57 @@ }, { "is_read_only" : false, - "name" : "farthest", + "name" : "gameMode", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : false, + "is_bind_type" : true, "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "GameMode" } } }, { "is_read_only" : false, - "name" : "gameMode", + "name" : "maxHorizontalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : true, + "is_bind_type" : false, "is_errorable" : false, - "name" : "GameMode" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "location", + "name" : "maxLevel", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : true, + "is_bind_type" : false, "is_errorable" : false, - "name" : "Vector3" + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "maxDistance", + "name" : "maxVerticalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -22412,7 +22504,7 @@ }, { "is_read_only" : false, - "name" : "maxHorizontalRotation", + "name" : "minHorizontalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -22430,7 +22522,7 @@ }, { "is_read_only" : false, - "name" : "maxLevel", + "name" : "minLevel", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -22448,7 +22540,7 @@ }, { "is_read_only" : false, - "name" : "maxVerticalRotation", + "name" : "minVerticalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -22466,7 +22558,7 @@ }, { "is_read_only" : false, - "name" : "minDistance", + "name" : "name", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -22474,53 +22566,51 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "float", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "string" } } }, { "is_read_only" : false, - "name" : "minHorizontalRotation", + "name" : "scoreOptions", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityQueryScoreOptions" + }, "is_bind_type" : false, "is_errorable" : false, - "name" : "float", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "array" } } }, { "is_read_only" : false, - "name" : "minLevel", + "name" : "tags", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, "is_bind_type" : false, "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "array" } } }, { "is_read_only" : false, - "name" : "minVerticalRotation", + "name" : "type", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -22528,7 +22618,63 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "float", + "name" : "string" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + }, + { + "base_types" : [], + "name" : "EntityHitInformation", + "properties" : [ + { + "is_read_only" : false, + "name" : "entity", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHitInformation" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + ], + "name" : "EntityQueryOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "closest", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", "valid_range" : { "max" : 2147483647, "min" : -2147483648 @@ -22538,7 +22684,7 @@ }, { "is_read_only" : false, - "name" : "name", + "name" : "farthest", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -22546,51 +22692,49 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "string" + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "scoreOptions", + "name" : "location", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "element_type" : { - "is_bind_type" : true, - "is_errorable" : false, - "name" : "EntityQueryScoreOptions" - }, - "is_bind_type" : false, + "is_bind_type" : true, "is_errorable" : false, - "name" : "array" + "name" : "Vector3" } } }, { "is_read_only" : false, - "name" : "tags", + "name" : "maxDistance", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "element_type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "string" - }, "is_bind_type" : false, "is_errorable" : false, - "name" : "array" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "type", + "name" : "minDistance", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -22598,7 +22742,11 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "string" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } } @@ -22718,7 +22866,13 @@ } }, { - "base_types" : [], + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + ], "name" : "EntityRaycastOptions", "properties" : [ { @@ -23877,7 +24031,7 @@ } } ], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "script", "name" : "@minecraft/server", "objects" : [ diff --git a/metadata/script_modules/@minecraft/server_1.11.0.json b/metadata/script_modules/@minecraft/server_1.11.0.json new file mode 100644 index 000000000..0df46d0f9 --- /dev/null +++ b/metadata/script_modules/@minecraft/server_1.11.0.json @@ -0,0 +1,28629 @@ +{ + "classes" : [ + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : { + "default_value" : 1, + "max_value" : 2147483647, + "min_value" : -2147483648 + }, + "name" : "steps", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "above", + "privilege" : "read_only", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationInUnloadedChunkError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Block" + } + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : 1, + "max_value" : 2147483647, + "min_value" : -2147483648 + }, + "name" : "steps", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "below", + "privilege" : "read_only", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationInUnloadedChunkError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Block" + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "bottomCenter", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "center", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : 1, + "max_value" : 2147483647, + "min_value" : -2147483648 + }, + "name" : "steps", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "east", + "privilege" : "read_only", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationInUnloadedChunkError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Block" + } + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getComponent", + "privilege" : "read_only", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationInUnloadedChunkError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockComponent" + } + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : 1, + "max_value" : 255, + "min_value" : 1 + }, + "name" : "amount", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "details" : { + "default_value" : false + }, + "name" : "withData", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getItemStack", + "privilege" : "read_only", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationInUnloadedChunkError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getTags", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationInUnloadedChunkError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "tag", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "hasTag", + "privilege" : "read_only", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationInUnloadedChunkError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "isValid", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "blockName", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "states", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "key_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "name" : "map", + "value_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "matches", + "privilege" : "read_only", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationInUnloadedChunkError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : 1, + "max_value" : 2147483647, + "min_value" : -2147483648 + }, + "name" : "steps", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "north", + "privilege" : "read_only", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationInUnloadedChunkError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Block" + } + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "offset", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "offset", + "privilege" : "read_only", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationInUnloadedChunkError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Block" + } + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "permutation", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockPermutation" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setPermutation", + "privilege" : "none", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationInUnloadedChunkError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "blockType", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockType" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setType", + "privilege" : "none", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "Error" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationInUnloadedChunkError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : 1, + "max_value" : 2147483647, + "min_value" : -2147483648 + }, + "name" : "steps", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "south", + "privilege" : "read_only", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationInUnloadedChunkError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Block" + } + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : 1, + "max_value" : 2147483647, + "min_value" : -2147483648 + }, + "name" : "steps", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "west", + "privilege" : "read_only", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationInUnloadedChunkError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Block" + } + } + } + ], + "name" : "Block", + "properties" : [ + { + "is_read_only" : true, + "name" : "dimension", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Dimension" + } + }, + { + "is_read_only" : true, + "name" : "isAir", + "type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationInUnloadedChunkError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "isLiquid", + "type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationInUnloadedChunkError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "location", + "type" : { + "is_bind_type" : true, + "is_errorable" : true, + "name" : "Vector3" + } + }, + { + "is_read_only" : true, + "name" : "permutation", + "type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationInUnloadedChunkError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + ], + "is_bind_type" : true, + "is_errorable" : true, + "name" : "BlockPermutation" + } + }, + { + "is_read_only" : true, + "name" : "type", + "type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationInUnloadedChunkError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + ], + "is_bind_type" : true, + "is_errorable" : true, + "name" : "BlockType" + } + }, + { + "is_read_only" : true, + "name" : "typeId", + "type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationInUnloadedChunkError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "string" + } + }, + { + "is_read_only" : true, + "name" : "x", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "y", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "z", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Block" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Component" + } + ], + "constants" : [], + "functions" : [], + "name" : "BlockComponent", + "properties" : [ + { + "is_read_only" : true, + "name" : "block", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Block" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockComponent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "BlockEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "block", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Block" + } + }, + { + "is_read_only" : true, + "name" : "dimension", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Dimension" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockEvent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:inventory" + } + ], + "functions" : [], + "name" : "BlockInventoryComponent", + "properties" : [ + { + "is_read_only" : true, + "name" : "container", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Container" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockInventoryComponent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getAllStates", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "key_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "name" : "map", + "value_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : 1, + "max_value" : 255, + "min_value" : 1 + }, + "name" : "amount", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getItemStack", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "stateName", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getState", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "blockName", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "states", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "key_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "name" : "map", + "value_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "matches", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "blockName", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "states", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "key_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "name" : "map", + "value_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + } + } + } + ], + "is_constructor" : false, + "is_static" : true, + "name" : "resolve", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : true, + "is_errorable" : true, + "name" : "BlockPermutation" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "name", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : null, + "name" : "value", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "withState", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : true, + "is_errorable" : true, + "name" : "BlockPermutation" + } + } + ], + "name" : "BlockPermutation", + "properties" : [ + { + "is_read_only" : true, + "name" : "type", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockType" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockPermutation" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:piston" + } + ], + "functions" : [ + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getAttachedBlocks", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Block" + }, + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getAttachedBlocksLocations", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + }, + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + } + ], + "name" : "BlockPistonComponent", + "properties" : [ + { + "is_read_only" : true, + "name" : "isMoving", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "state", + "type" : { + "is_bind_type" : true, + "is_errorable" : true, + "name" : "BlockPistonState" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockPistonComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:sign" + } + ], + "functions" : [ + { + "arguments" : [ + { + "details" : { + "default_value" : 0 + }, + "name" : "side", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "SignSide" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getRawText", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RawText" + } + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : 0 + }, + "name" : "side", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "SignSide" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getText", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : 0 + }, + "name" : "side", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "SignSide" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getTextDyeColor", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "DyeColor" + } + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "message", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RawMessage" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RawText" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + }, + { + "details" : { + "default_value" : 0 + }, + "name" : "side", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "SignSide" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setText", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : "null" + }, + "name" : "color", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "DyeColor" + } + } + }, + { + "details" : { + "default_value" : 0 + }, + "name" : "side", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "SignSide" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setTextDyeColor", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "waxed", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setWaxed", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + } + ], + "name" : "BlockSignComponent", + "properties" : [ + { + "is_read_only" : true, + "name" : "isWaxed", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockSignComponent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "stateName", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : true, + "name" : "get", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockStateType" + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : true, + "name" : "getAll", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockStateType" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + ], + "name" : "BlockStates", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockStates" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "BlockStateType", + "properties" : [ + { + "is_read_only" : true, + "name" : "id", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "is_read_only" : true, + "name" : "validValues", + "type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockStateType" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "BlockType", + "properties" : [ + { + "is_read_only" : true, + "name" : "id", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockType" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "typeName", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : true, + "name" : "get", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockType" + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : true, + "name" : "getAll", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockType" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + ], + "name" : "BlockTypes", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockTypes" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getCapacity", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getMax", + "privilege" : "none", + "return_type" : { + "is_bind_type" : true, + "is_errorable" : true, + "name" : "Vector3" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getMin", + "privilege" : "none", + "return_type" : { + "is_bind_type" : true, + "is_errorable" : true, + "name" : "Vector3" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getSpan", + "privilege" : "none", + "return_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "location", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "isInside", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "delta", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "translate", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "BlockVolumeBase", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockVolumeBase" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockEvent" + } + ], + "constants" : [], + "functions" : [], + "name" : "ButtonPushAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "source", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ButtonPushAfterEvent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "IButtonPushAfterEventSignal" + } + ], + "constants" : [], + "functions" : [], + "name" : "ButtonPushAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ButtonPushAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "clear", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : "null" + }, + "name" : "fadeCameraOptions", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "CameraFadeOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "fade", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "cameraPreset", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "setOptions", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "CameraDefaultOptions" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "CameraSetFacingOptions" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "CameraSetLocationOptions" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "CameraSetPosOptions" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "CameraSetRotOptions" + } + ] + } + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setCamera", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + } + ], + "name" : "Camera", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Camera" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "CommandResult", + "properties" : [ + { + "is_read_only" : true, + "name" : "successCount", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "CommandResult" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "isValid", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + ], + "name" : "Component", + "properties" : [ + { + "is_read_only" : true, + "name" : "typeId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Component" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "itemStack", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "addItem", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "clearAll", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : { + "max_value" : 2147483647, + "min_value" : -2147483648 + }, + "name" : "slot", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getItem", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + } + }, + { + "arguments" : [ + { + "details" : { + "max_value" : 2147483647, + "min_value" : -2147483648 + }, + "name" : "slot", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getSlot", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : true, + "is_errorable" : true, + "name" : "ContainerSlot" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "isValid", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : { + "max_value" : 2147483647, + "min_value" : -2147483648 + }, + "name" : "fromSlot", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "details" : { + "max_value" : 2147483647, + "min_value" : -2147483648 + }, + "name" : "toSlot", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "details" : null, + "name" : "toContainer", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Container" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "moveItem", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : { + "max_value" : 2147483647, + "min_value" : -2147483648 + }, + "name" : "slot", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "itemStack", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setItem", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : { + "max_value" : 2147483647, + "min_value" : -2147483648 + }, + "name" : "slot", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "details" : { + "max_value" : 2147483647, + "min_value" : -2147483648 + }, + "name" : "otherSlot", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "details" : null, + "name" : "otherContainer", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Container" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "swapItems", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : { + "max_value" : 2147483647, + "min_value" : -2147483648 + }, + "name" : "fromSlot", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "details" : null, + "name" : "toContainer", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Container" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "transferItem", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + } + } + ], + "name" : "Container", + "properties" : [ + { + "is_read_only" : true, + "name" : "emptySlotsCount", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "size", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Container" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "clearDynamicProperties", + "privilege" : "read_only", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidContainerSlotError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getCanDestroy", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidContainerSlotError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getCanPlaceOn", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidContainerSlotError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "identifier", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getDynamicProperty", + "privilege" : "read_only", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidContainerSlotError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "double", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + ] + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getDynamicPropertyIds", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidContainerSlotError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getDynamicPropertyTotalByteCount", + "privilege" : "read_only", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidContainerSlotError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getItem", + "privilege" : "read_only", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidContainerSlotError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getLore", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidContainerSlotError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getTags", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidContainerSlotError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "hasItem", + "privilege" : "read_only", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidContainerSlotError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "tag", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "hasTag", + "privilege" : "read_only", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidContainerSlotError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "itemStack", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "isStackableWith", + "privilege" : "read_only", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidContainerSlotError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "isValid", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : "null" + }, + "name" : "blockIdentifiers", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setCanDestroy", + "privilege" : "none", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "Error" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidContainerSlotError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : "null" + }, + "name" : "blockIdentifiers", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setCanPlaceOn", + "privilege" : "none", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "Error" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidContainerSlotError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "identifier", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "value", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "double", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + ] + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setDynamicProperty", + "privilege" : "read_only", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "Error" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidContainerSlotError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : "null" + }, + "name" : "itemStack", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setItem", + "privilege" : "none", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidContainerSlotError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : "null" + }, + "name" : "loreList", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setLore", + "privilege" : "none", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "Error" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidContainerSlotError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + } + ], + "name" : "ContainerSlot", + "properties" : [ + { + "is_read_only" : false, + "name" : "amount", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "isStackable", + "type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidContainerSlotError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "keepOnDeath", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "lockMode", + "privilege" : "none", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemLockMode" + } + }, + { + "is_read_only" : true, + "name" : "maxAmount", + "type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidContainerSlotError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : false, + "name" : "nameTag", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + }, + { + "is_read_only" : true, + "name" : "type", + "type" : { + "error_types" : [ + { + "from_module" : { + "name" : "@minecraft/common", + "uuid" : "77ec12b4-1b2b-4c98-8d34-d1cd63f849d5", + "version" : "1.1.0" + }, + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EngineError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidContainerSlotError" + } + ], + "is_bind_type" : true, + "is_errorable" : true, + "name" : "ItemType" + } + }, + { + "is_read_only" : true, + "name" : "typeId", + "type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidContainerSlotError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "string" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ContainerSlot" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getModifiers", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "DefinitionModifier" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + ], + "name" : "DataDrivenEntityTriggerAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "entity", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + }, + { + "is_read_only" : true, + "name" : "eventId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "DataDrivenEntityTriggerAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "DataDrivenEntityTriggerAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "options", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityDataDrivenTriggerEventOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "DataDrivenEntityTriggerAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "DataDrivenEntityTriggerAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + } + ], + "name" : "DataDrivenEntityTriggerAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "DataDrivenEntityTriggerAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "location", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "details" : { + "max_value" : 1000.0, + "min_value" : 0.0 + }, + "name" : "radius", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "explosionOptions", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ExplosionOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "createExplosion", + "privilege" : "none", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationInUnloadedChunkError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "location", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getBlock", + "privilege" : "read_only", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationInUnloadedChunkError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Block" + } + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "location", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "details" : null, + "name" : "direction", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "options", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockRaycastOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getBlockFromRay", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockRaycastHit" + } + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : "null" + }, + "name" : "options", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityQueryOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getEntities", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + }, + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "location", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getEntitiesAtBlockLocation", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "location", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "details" : null, + "name" : "direction", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "options", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityRaycastOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getEntitiesFromRay", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityRaycastHit" + }, + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : "null" + }, + "name" : "options", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityQueryOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getPlayers", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + }, + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "soundId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : null, + "name" : "location", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "soundOptions", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WorldSoundOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "playSound", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "commandString", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "runCommand", + "privilege" : "none", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "CommandError" + } + ], + "is_bind_type" : true, + "is_errorable" : true, + "name" : "CommandResult" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "commandString", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "runCommandAsync", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "promise", + "promise_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "CommandResult" + } + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "weatherType", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WeatherType" + } + }, + { + "details" : { + "default_value" : "null", + "max_value" : 1000000, + "min_value" : 1 + }, + "name" : "duration", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setWeather", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "identifier", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : null, + "name" : "location", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "spawnEntity", + "privilege" : "none", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationInUnloadedChunkError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + ], + "is_bind_type" : true, + "is_errorable" : true, + "name" : "Entity" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "itemStack", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + }, + { + "details" : null, + "name" : "location", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "spawnItem", + "privilege" : "none", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationInUnloadedChunkError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + ], + "is_bind_type" : true, + "is_errorable" : true, + "name" : "Entity" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "effectName", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : null, + "name" : "location", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "molangVariables", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "MolangVariableMap" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "spawnParticle", + "privilege" : "none", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationInUnloadedChunkError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + } + ], + "name" : "Dimension", + "properties" : [ + { + "is_read_only" : true, + "name" : "heightRange", + "type" : { + "from_module" : { + "name" : "@minecraft/common", + "uuid" : "77ec12b4-1b2b-4c98-8d34-d1cd63f849d5", + "version" : "1.1.0" + }, + "is_bind_type" : true, + "is_errorable" : true, + "name" : "NumberRange" + } + }, + { + "is_read_only" : true, + "name" : "id", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Dimension" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "DimensionType", + "properties" : [ + { + "is_read_only" : true, + "name" : "typeId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "DimensionType" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "dimensionTypeId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : true, + "name" : "get", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "DimensionType" + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : true, + "name" : "getAll", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "DimensionType" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + ], + "name" : "DimensionTypes", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "DimensionTypes" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "isValid", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + ], + "name" : "Effect", + "properties" : [ + { + "is_read_only" : true, + "name" : "amplifier", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "displayName", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "string" + } + }, + { + "is_read_only" : true, + "name" : "duration", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "typeId", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "string" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Effect" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "EffectAddAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "effect", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Effect" + } + }, + { + "is_read_only" : true, + "name" : "entity", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EffectAddAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EffectAddAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "options", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityEventOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EffectAddAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EffectAddAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + } + ], + "name" : "EffectAddAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EffectAddAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "EffectAddBeforeEvent", + "properties" : [ + { + "is_read_only" : false, + "name" : "cancel", + "privilege" : "read_only", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "duration", + "privilege" : "read_only", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "effectType", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "is_read_only" : true, + "name" : "entity", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EffectAddBeforeEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EffectAddBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EffectAddBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EffectAddBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "EffectAddBeforeEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EffectAddBeforeEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getName", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "name" : "EffectType", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EffectType" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "identifier", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : true, + "name" : "get", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EffectType" + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : true, + "name" : "getAll", + "privilege" : "none", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EffectType" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + ], + "name" : "EffectTypes", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EffectTypes" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "enchantmentType", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : true, + "name" : "constructor", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : true, + "is_errorable" : true, + "name" : "EnchantmentType" + } + } + ], + "name" : "EnchantmentType", + "properties" : [ + { + "is_read_only" : true, + "name" : "id", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "is_read_only" : true, + "name" : "maxLevel", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EnchantmentType" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "enchantmentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : true, + "name" : "get", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EnchantmentType" + } + } + } + ], + "name" : "EnchantmentTypes", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EnchantmentTypes" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "effectType", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EffectType" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + }, + { + "details" : { + "max_value" : 20000000, + "min_value" : 1 + }, + "name" : "duration", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "options", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityEffectOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "addEffect", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "tag", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "addTag", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : { + "max_value" : 3.402823466385289e+38, + "min_value" : -3.402823466385289e+38 + }, + "name" : "amount", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "options", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityApplyDamageByProjectileOptions" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityApplyDamageOptions" + } + ] + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "applyDamage", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "vector", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "applyImpulse", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : { + "max_value" : 3.402823466385289e+38, + "min_value" : -3.402823466385289e+38 + }, + "name" : "directionX", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "details" : { + "max_value" : 3.402823466385289e+38, + "min_value" : -3.402823466385289e+38 + }, + "name" : "directionZ", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "details" : { + "max_value" : 3.402823466385289e+38, + "min_value" : -3.402823466385289e+38 + }, + "name" : "horizontalStrength", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "details" : { + "max_value" : 3.402823466385289e+38, + "min_value" : -3.402823466385289e+38 + }, + "name" : "verticalStrength", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "applyKnockback", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "clearDynamicProperties", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "clearVelocity", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : true + }, + "name" : "useEffects", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "extinguishFire", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : "null" + }, + "name" : "options", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockRaycastOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getBlockFromViewDirection", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockRaycastHit" + } + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getComponent", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getComponents", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "identifier", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getDynamicProperty", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "double", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + ] + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getDynamicPropertyIds", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getDynamicPropertyTotalByteCount", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "effectType", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EffectType" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getEffect", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Effect" + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getEffects", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Effect" + }, + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : "null" + }, + "name" : "options", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityRaycastOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getEntitiesFromViewDirection", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityRaycastHit" + }, + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getHeadLocation", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : true, + "is_errorable" : true, + "name" : "Vector3" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "identifier", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getProperty", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getRotation", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : true, + "is_errorable" : true, + "name" : "Vector2" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getTags", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getVelocity", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : true, + "is_errorable" : true, + "name" : "Vector3" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getViewDirection", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : true, + "is_errorable" : true, + "name" : "Vector3" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "hasComponent", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "tag", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "hasTag", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "isValid", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "kill", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "options", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityQueryOptions" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "matches", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "animationName", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "options", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayAnimationOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "playAnimation", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "remove", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "effectType", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EffectType" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "removeEffect", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "tag", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "removeTag", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "identifier", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "resetProperty", + "privilege" : "none", + "return_type" : { + "error_types" : [ + { + "from_module" : { + "name" : "@minecraft/common", + "uuid" : "77ec12b4-1b2b-4c98-8d34-d1cd63f849d5", + "version" : "1.1.0" + }, + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EngineError" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "Error" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "commandString", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "runCommand", + "privilege" : "none", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "CommandError" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "Error" + } + ], + "is_bind_type" : true, + "is_errorable" : true, + "name" : "CommandResult" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "commandString", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "runCommandAsync", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "promise", + "promise_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "CommandResult" + } + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "identifier", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "value", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "double", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + ] + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setDynamicProperty", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : { + "max_value" : 2147483647, + "min_value" : -2147483648 + }, + "name" : "seconds", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "details" : { + "default_value" : true + }, + "name" : "useEffects", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setOnFire", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "identifier", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : null, + "name" : "value", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setProperty", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "rotation", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector2" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setRotation", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "location", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "teleportOptions", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "TeleportOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "teleport", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "eventName", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "triggerEvent", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "location", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "teleportOptions", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "TeleportOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "tryTeleport", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + } + ], + "name" : "Entity", + "properties" : [ + { + "is_read_only" : true, + "name" : "dimension", + "type" : { + "is_bind_type" : true, + "is_errorable" : true, + "name" : "Dimension" + } + }, + { + "is_read_only" : true, + "name" : "id", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "is_read_only" : true, + "name" : "isClimbing", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "isFalling", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "isInWater", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "isOnGround", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "isSleeping", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "isSneaking", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "isSprinting", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "isSwimming", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "location", + "type" : { + "is_bind_type" : true, + "is_errorable" : true, + "name" : "Vector3" + } + }, + { + "is_read_only" : false, + "name" : "nameTag", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "is_read_only" : true, + "name" : "scoreboardIdentity", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScoreboardIdentity" + } + } + }, + { + "is_read_only" : true, + "name" : "typeId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:addrider" + } + ], + "functions" : [], + "name" : "EntityAddRiderComponent", + "properties" : [ + { + "is_read_only" : true, + "name" : "entityType", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "string" + } + }, + { + "is_read_only" : true, + "name" : "spawnEvent", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "string" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityAddRiderComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [], + "functions" : [ + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "resetToDefaultValue", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "resetToMaxValue", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "resetToMinValue", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "value", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setCurrentValue", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + } + ], + "name" : "EntityAttributeComponent", + "properties" : [ + { + "is_read_only" : true, + "name" : "currentValue", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "defaultValue", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "effectiveMax", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "effectiveMin", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityAttributeComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [], + "functions" : [], + "name" : "EntityBaseMovementComponent", + "properties" : [ + { + "is_read_only" : true, + "name" : "maxTurn", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityBaseMovementComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:can_climb" + } + ], + "functions" : [], + "name" : "EntityCanClimbComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityCanClimbComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:can_fly" + } + ], + "functions" : [], + "name" : "EntityCanFlyComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityCanFlyComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:can_power_jump" + } + ], + "functions" : [], + "name" : "EntityCanPowerJumpComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityCanPowerJumpComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:color2" + } + ], + "functions" : [], + "name" : "EntityColor2Component", + "properties" : [ + { + "is_read_only" : true, + "name" : "value", + "type" : { + "is_bind_type" : true, + "is_errorable" : true, + "name" : "PaletteColor" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityColor2Component" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:color" + } + ], + "functions" : [], + "name" : "EntityColorComponent", + "properties" : [ + { + "is_read_only" : false, + "name" : "value", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityColorComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Component" + } + ], + "constants" : [], + "functions" : [], + "name" : "EntityComponent", + "properties" : [ + { + "is_read_only" : true, + "name" : "entity", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "EntityDieAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "damageSource", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityDamageSource" + } + }, + { + "is_read_only" : true, + "name" : "deadEntity", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityDieAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityDieAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "options", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityEventOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityDieAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityDieAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + } + ], + "name" : "EntityDieAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityDieAfterEventSignal" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:equippable" + } + ], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "equipmentSlot", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EquipmentSlot" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getEquipment", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "equipmentSlot", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EquipmentSlot" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getEquipmentSlot", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : true, + "is_errorable" : true, + "name" : "ContainerSlot" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "equipmentSlot", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EquipmentSlot" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "itemStack", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setEquipment", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + } + ], + "name" : "EntityEquippableComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityEquippableComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:fire_immune" + } + ], + "functions" : [], + "name" : "EntityFireImmuneComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFireImmuneComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:floats_in_liquid" + } + ], + "functions" : [], + "name" : "EntityFloatsInLiquidComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFloatsInLiquidComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:flying_speed" + } + ], + "functions" : [], + "name" : "EntityFlyingSpeedComponent", + "properties" : [ + { + "is_read_only" : false, + "name" : "value", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFlyingSpeedComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:friction_modifier" + } + ], + "functions" : [], + "name" : "EntityFrictionModifierComponent", + "properties" : [ + { + "is_read_only" : false, + "name" : "value", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFrictionModifierComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:ground_offset" + } + ], + "functions" : [], + "name" : "EntityGroundOffsetComponent", + "properties" : [ + { + "is_read_only" : false, + "name" : "value", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityGroundOffsetComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:healable" + } + ], + "functions" : [ + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getFeedItems", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "FeedItem" + }, + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + } + ], + "name" : "EntityHealableComponent", + "properties" : [ + { + "is_read_only" : true, + "name" : "forceUse", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHealableComponent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "EntityHealthChangedAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "entity", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + }, + { + "is_read_only" : true, + "name" : "newValue", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "oldValue", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHealthChangedAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHealthChangedAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "options", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityEventOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHealthChangedAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHealthChangedAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + } + ], + "name" : "EntityHealthChangedAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHealthChangedAfterEventSignal" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityAttributeComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:health" + } + ], + "functions" : [], + "name" : "EntityHealthComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHealthComponent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "EntityHitBlockAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "blockFace", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Direction" + } + }, + { + "is_read_only" : true, + "name" : "damagingEntity", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + }, + { + "is_read_only" : true, + "name" : "hitBlock", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Block" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHitBlockAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHitBlockAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "options", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityEventOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHitBlockAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHitBlockAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + } + ], + "name" : "EntityHitBlockAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHitBlockAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "EntityHitEntityAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "damagingEntity", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + }, + { + "is_read_only" : true, + "name" : "hitEntity", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHitEntityAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHitEntityAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "options", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityEventOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHitEntityAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHitEntityAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + } + ], + "name" : "EntityHitEntityAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHitEntityAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "EntityHurtAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "damage", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "damageSource", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityDamageSource" + } + }, + { + "is_read_only" : true, + "name" : "hurtEntity", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHurtAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHurtAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "options", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityEventOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHurtAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHurtAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + } + ], + "name" : "EntityHurtAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHurtAfterEventSignal" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:inventory" + } + ], + "functions" : [], + "name" : "EntityInventoryComponent", + "properties" : [ + { + "is_read_only" : true, + "name" : "additionalSlotsPerStrength", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "canBeSiphonedFrom", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "container", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Container" + } + } + }, + { + "is_read_only" : true, + "name" : "containerType", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "string" + } + }, + { + "is_read_only" : true, + "name" : "inventorySize", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "private", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "restrictToOwner", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityInventoryComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:is_baby" + } + ], + "functions" : [], + "name" : "EntityIsBabyComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityIsBabyComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:is_charged" + } + ], + "functions" : [], + "name" : "EntityIsChargedComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityIsChargedComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:is_chested" + } + ], + "functions" : [], + "name" : "EntityIsChestedComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityIsChestedComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:is_dyeable" + } + ], + "functions" : [], + "name" : "EntityIsDyeableComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityIsDyeableComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:is_hidden_when_invisible" + } + ], + "functions" : [], + "name" : "EntityIsHiddenWhenInvisibleComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityIsHiddenWhenInvisibleComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:is_ignited" + } + ], + "functions" : [], + "name" : "EntityIsIgnitedComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityIsIgnitedComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:is_illager_captain" + } + ], + "functions" : [], + "name" : "EntityIsIllagerCaptainComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityIsIllagerCaptainComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:is_saddled" + } + ], + "functions" : [], + "name" : "EntityIsSaddledComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityIsSaddledComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:is_shaking" + } + ], + "functions" : [], + "name" : "EntityIsShakingComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityIsShakingComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:is_sheared" + } + ], + "functions" : [], + "name" : "EntityIsShearedComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityIsShearedComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:is_stackable" + } + ], + "functions" : [], + "name" : "EntityIsStackableComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityIsStackableComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:is_stunned" + } + ], + "functions" : [], + "name" : "EntityIsStunnedComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityIsStunnedComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:is_tamed" + } + ], + "functions" : [], + "name" : "EntityIsTamedComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityIsTamedComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:item" + } + ], + "functions" : [], + "name" : "EntityItemComponent", + "properties" : [ + { + "is_read_only" : true, + "name" : "itemStack", + "type" : { + "is_bind_type" : true, + "is_errorable" : true, + "name" : "ItemStack" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityItemComponent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "EntityLoadAfterEvent", + "properties" : [ + { + "is_read_only" : false, + "name" : "entity", + "privilege" : "none", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityLoadAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityLoadAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityLoadAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityLoadAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "EntityLoadAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityLoadAfterEventSignal" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:mark_variant" + } + ], + "functions" : [], + "name" : "EntityMarkVariantComponent", + "properties" : [ + { + "is_read_only" : false, + "name" : "value", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityMarkVariantComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityBaseMovementComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:movement.amphibious" + } + ], + "functions" : [], + "name" : "EntityMovementAmphibiousComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityMovementAmphibiousComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityBaseMovementComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:movement.basic" + } + ], + "functions" : [], + "name" : "EntityMovementBasicComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityMovementBasicComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityBaseMovementComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:movement.fly" + } + ], + "functions" : [], + "name" : "EntityMovementFlyComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityMovementFlyComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityBaseMovementComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:movement.generic" + } + ], + "functions" : [], + "name" : "EntityMovementGenericComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityMovementGenericComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityBaseMovementComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:movement.hover" + } + ], + "functions" : [], + "name" : "EntityMovementHoverComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityMovementHoverComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityBaseMovementComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:movement.jump" + } + ], + "functions" : [], + "name" : "EntityMovementJumpComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityMovementJumpComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityBaseMovementComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:movement.skip" + } + ], + "functions" : [], + "name" : "EntityMovementSkipComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityMovementSkipComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityNavigationComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:navigation.climb" + } + ], + "functions" : [], + "name" : "EntityNavigationClimbComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityNavigationClimbComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [], + "functions" : [], + "name" : "EntityNavigationComponent", + "properties" : [ + { + "is_read_only" : true, + "name" : "avoidDamageBlocks", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "avoidPortals", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "avoidSun", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "avoidWater", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "canBreach", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "canBreakDoors", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "canFloat", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "canJump", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "canOpenDoors", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "canOpenIronDoors", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "canPassDoors", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "canPathFromAir", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "canPathOverLava", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "canPathOverWater", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "canSink", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "canSwim", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "canWalk", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "canWalkInLava", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "isAmphibious", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityNavigationComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityNavigationComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:navigation.float" + } + ], + "functions" : [], + "name" : "EntityNavigationFloatComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityNavigationFloatComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityNavigationComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:navigation.fly" + } + ], + "functions" : [], + "name" : "EntityNavigationFlyComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityNavigationFlyComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityNavigationComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:navigation.generic" + } + ], + "functions" : [], + "name" : "EntityNavigationGenericComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityNavigationGenericComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityNavigationComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:navigation.hover" + } + ], + "functions" : [], + "name" : "EntityNavigationHoverComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityNavigationHoverComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityNavigationComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:navigation.walk" + } + ], + "functions" : [], + "name" : "EntityNavigationWalkComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityNavigationWalkComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:onfire" + } + ], + "functions" : [], + "name" : "EntityOnFireComponent", + "properties" : [ + { + "is_read_only" : true, + "name" : "onFireTicksRemaining", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityOnFireComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:projectile" + } + ], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "velocity", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "options", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ProjectileShootOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "shoot", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + } + ], + "name" : "EntityProjectileComponent", + "properties" : [ + { + "is_read_only" : false, + "name" : "airInertia", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : false, + "name" : "catchFireOnHurt", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "critParticlesOnProjectileHurt", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "destroyOnProjectileHurt", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "gravity", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : false, + "name" : "hitEntitySound", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + }, + { + "is_read_only" : false, + "name" : "hitGroundSound", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + }, + { + "is_read_only" : false, + "name" : "hitParticle", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + }, + { + "is_read_only" : false, + "name" : "lightningStrikeOnHit", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "liquidInertia", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : false, + "name" : "onFireTime", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : false, + "name" : "owner", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + }, + { + "is_read_only" : false, + "name" : "shouldBounceOnHit", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "stopOnHit", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityProjectileComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:push_through" + } + ], + "functions" : [], + "name" : "EntityPushThroughComponent", + "properties" : [ + { + "is_read_only" : false, + "name" : "value", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityPushThroughComponent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "EntityRemoveAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "removedEntityId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "is_read_only" : true, + "name" : "typeId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityRemoveAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityRemoveAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "options", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityEventOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityRemoveAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityRemoveAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + } + ], + "name" : "EntityRemoveAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityRemoveAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "EntityRemoveBeforeEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "removedEntity", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityRemoveBeforeEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityRemoveBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityRemoveBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityRemoveBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "EntityRemoveBeforeEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityRemoveBeforeEventSignal" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:rideable" + } + ], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "rider", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "addRider", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "rider", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "ejectRider", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "ejectRiders", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getFamilyTypes", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getRiders", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + }, + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getSeats", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Seat" + }, + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + } + ], + "name" : "EntityRideableComponent", + "properties" : [ + { + "is_read_only" : true, + "name" : "controllingSeat", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "crouchingSkipInteract", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "interactText", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "string" + } + }, + { + "is_read_only" : true, + "name" : "passengerMaxWidth", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "pullInEntities", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "riderCanInteract", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "seatCount", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityRideableComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:riding" + } + ], + "functions" : [], + "name" : "EntityRidingComponent", + "properties" : [ + { + "is_read_only" : true, + "name" : "entityRidingOn", + "type" : { + "is_bind_type" : true, + "is_errorable" : true, + "name" : "Entity" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityRidingComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:scale" + } + ], + "functions" : [], + "name" : "EntityScaleComponent", + "properties" : [ + { + "is_read_only" : false, + "name" : "value", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityScaleComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:skin_id" + } + ], + "functions" : [], + "name" : "EntitySkinIdComponent", + "properties" : [ + { + "is_read_only" : false, + "name" : "value", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntitySkinIdComponent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "EntitySpawnAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "cause", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityInitializationCause" + } + }, + { + "is_read_only" : false, + "name" : "entity", + "privilege" : "none", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntitySpawnAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntitySpawnAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntitySpawnAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntitySpawnAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "EntitySpawnAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntitySpawnAfterEventSignal" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:tamemount" + } + ], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "showParticles", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "tame", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + } + ], + "name" : "EntityTameMountComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityTameMountComponent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "EntityType", + "properties" : [ + { + "is_read_only" : true, + "name" : "id", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityType" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:type_family" + } + ], + "functions" : [ + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getTypeFamilies", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "typeFamily", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "hasTypeFamily", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + } + ], + "name" : "EntityTypeFamilyComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityTypeFamilyComponent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "identifier", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : true, + "name" : "get", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityType" + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : true, + "name" : "getAll", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityType" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + ], + "name" : "EntityTypes", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityTypes" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:variant" + } + ], + "functions" : [], + "name" : "EntityVariantComponent", + "properties" : [ + { + "is_read_only" : true, + "name" : "value", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityVariantComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:wants_jockey" + } + ], + "functions" : [], + "name" : "EntityWantsJockeyComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityWantsJockeyComponent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getImpactedBlocks", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Block" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + ], + "name" : "ExplosionAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "dimension", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Dimension" + } + }, + { + "is_read_only" : true, + "name" : "source", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ExplosionAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ExplosionAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ExplosionAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ExplosionAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "ExplosionAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ExplosionAfterEventSignal" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ExplosionAfterEvent" + } + ], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "blocks", + "type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Block" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setImpactedBlocks", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "ExplosionBeforeEvent", + "properties" : [ + { + "is_read_only" : false, + "name" : "cancel", + "privilege" : "read_only", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ExplosionBeforeEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ExplosionBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ExplosionBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ExplosionBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "ExplosionBeforeEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ExplosionBeforeEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getEffects", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "FeedItemEffect" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + ], + "name" : "FeedItem", + "properties" : [ + { + "is_read_only" : true, + "name" : "healAmount", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "item", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "FeedItem" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "FeedItemEffect", + "properties" : [ + { + "is_read_only" : true, + "name" : "amplifier", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "chance", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "duration", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "name", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "FeedItemEffect" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "GameRuleChangeAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "rule", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "GameRule" + } + }, + { + "is_read_only" : true, + "name" : "value", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + ] + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "GameRuleChangeAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "GameRuleChangeAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "GameRuleChangeAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "GameRuleChangeAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "GameRuleChangeAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "GameRuleChangeAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "GameRules", + "properties" : [ + { + "is_read_only" : false, + "name" : "commandBlockOutput", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "commandBlocksEnabled", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "doDayLightCycle", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "doEntityDrops", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "doFireTick", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "doImmediateRespawn", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "doInsomnia", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "doLimitedCrafting", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "doMobLoot", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "doMobSpawning", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "doTileDrops", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "doWeatherCycle", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "drowningDamage", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "fallDamage", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "fireDamage", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "freezeDamage", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "functionCommandLimit", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : false, + "name" : "keepInventory", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "maxCommandChainLength", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : false, + "name" : "mobGriefing", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "naturalRegeneration", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "playersSleepingPercentage", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : false, + "name" : "projectilesCanBreakBlocks", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "pvp", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "randomTickSpeed", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : false, + "name" : "recipesUnlock", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "respawnBlocksExplode", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "sendCommandFeedback", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "showBorderEffect", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "showCoordinates", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "showDeathMessages", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "showRecipeMessages", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "showTags", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "spawnRadius", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : false, + "name" : "tntExplodes", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "tntExplosionDropDecay", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "GameRules" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ButtonPushAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ButtonPushAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ButtonPushAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "IButtonPushAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "IButtonPushAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LeverActionAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LeverActionAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LeverActionAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "ILeverActionAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ILeverActionAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerJoinAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerJoinAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerJoinAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "IPlayerJoinAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "IPlayerJoinAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerLeaveAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerLeaveAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerLeaveAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "IPlayerLeaveAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "IPlayerLeaveAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerSpawnAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerSpawnAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerSpawnAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "IPlayerSpawnAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "IPlayerSpawnAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "ItemCompleteUseAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "itemStack", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + }, + { + "is_read_only" : true, + "name" : "source", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + } + }, + { + "is_read_only" : true, + "name" : "useDuration", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemCompleteUseAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemCompleteUseAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemCompleteUseAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemCompleteUseAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "ItemCompleteUseAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemCompleteUseAfterEventSignal" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Component" + } + ], + "constants" : [], + "functions" : [], + "name" : "ItemComponent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:cooldown" + } + ], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "player", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getCooldownTicksRemaining", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "cooldownCategory", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "isCooldownCategory", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "player", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "startCooldown", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + } + ], + "name" : "ItemCooldownComponent", + "properties" : [ + { + "is_read_only" : true, + "name" : "cooldownCategory", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "string" + } + }, + { + "is_read_only" : true, + "name" : "cooldownTicks", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemCooldownComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:durability" + } + ], + "functions" : [ + { + "arguments" : [ + { + "details" : { + "default_value" : 0, + "max_value" : 3, + "min_value" : 0 + }, + "name" : "unbreakingEnchantmentLevel", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getDamageChance", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getDamageChanceRange", + "privilege" : "none", + "return_type" : { + "from_module" : { + "name" : "@minecraft/common", + "uuid" : "77ec12b4-1b2b-4c98-8d34-d1cd63f849d5", + "version" : "1.1.0" + }, + "is_bind_type" : true, + "is_errorable" : true, + "name" : "NumberRange" + } + } + ], + "name" : "ItemDurabilityComponent", + "properties" : [ + { + "is_read_only" : false, + "name" : "damage", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "maxDurability", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemDurabilityComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:enchantable" + } + ], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "enchantment", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Enchantment" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "addEnchantment", + "privilege" : "none", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EnchantmentLevelOutOfBoundsError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EnchantmentTypeNotCompatibleError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EnchantmentTypeUnknownIdError" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "Error" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "enchantments", + "type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Enchantment" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "addEnchantments", + "privilege" : "none", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EnchantmentLevelOutOfBoundsError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EnchantmentTypeNotCompatibleError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EnchantmentTypeUnknownIdError" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "Error" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "enchantment", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Enchantment" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "canAddEnchantment", + "privilege" : "read_only", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EnchantmentLevelOutOfBoundsError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EnchantmentTypeUnknownIdError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "enchantmentType", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EnchantmentType" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getEnchantment", + "privilege" : "read_only", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EnchantmentTypeUnknownIdError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Enchantment" + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getEnchantments", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Enchantment" + }, + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "enchantmentType", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EnchantmentType" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "hasEnchantment", + "privilege" : "read_only", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EnchantmentTypeUnknownIdError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "removeAllEnchantments", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "enchantmentType", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EnchantmentType" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "removeEnchantment", + "privilege" : "none", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EnchantmentTypeUnknownIdError" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "Error" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + } + ], + "name" : "ItemEnchantableComponent", + "properties" : [ + { + "is_read_only" : true, + "name" : "slots", + "type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EnchantmentSlot" + }, + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemEnchantableComponent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemComponent" + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:food" + } + ], + "functions" : [], + "name" : "ItemFoodComponent", + "properties" : [ + { + "is_read_only" : true, + "name" : "canAlwaysEat", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "nutrition", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "saturationModifier", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "usingConvertsTo", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "string" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemFoodComponent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "ItemReleaseUseAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "itemStack", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + } + }, + { + "is_read_only" : true, + "name" : "source", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + } + }, + { + "is_read_only" : true, + "name" : "useDuration", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemReleaseUseAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemReleaseUseAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemReleaseUseAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemReleaseUseAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "ItemReleaseUseAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemReleaseUseAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "clearDynamicProperties", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "clone", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "itemType", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemType" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + }, + { + "details" : { + "default_value" : 1, + "max_value" : 255, + "min_value" : 1 + }, + "name" : "amount", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "is_constructor" : true, + "name" : "constructor", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : true, + "is_errorable" : true, + "name" : "ItemStack" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getCanDestroy", + "privilege" : "none", + "return_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getCanPlaceOn", + "privilege" : "none", + "return_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getComponent", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemComponent" + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getComponents", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemComponent" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "identifier", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getDynamicProperty", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "double", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + ] + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getDynamicPropertyIds", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getDynamicPropertyTotalByteCount", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getLore", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getTags", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "componentId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "hasComponent", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "tag", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "hasTag", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "itemStack", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "isStackableWith", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "itemName", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "states", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "key_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "name" : "map", + "value_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "matches", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : "null" + }, + "name" : "blockIdentifiers", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setCanDestroy", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : "null" + }, + "name" : "blockIdentifiers", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setCanPlaceOn", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "identifier", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "value", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "double", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + ] + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setDynamicProperty", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : "null" + }, + "name" : "loreList", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setLore", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + } + ], + "name" : "ItemStack", + "properties" : [ + { + "is_read_only" : false, + "name" : "amount", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "isStackable", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "keepOnDeath", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "lockMode", + "privilege" : "none", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemLockMode" + } + }, + { + "is_read_only" : true, + "name" : "maxAmount", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : false, + "name" : "nameTag", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + }, + { + "is_read_only" : true, + "name" : "type", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemType" + } + }, + { + "is_read_only" : true, + "name" : "typeId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "ItemStartUseAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "itemStack", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + }, + { + "is_read_only" : true, + "name" : "source", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + } + }, + { + "is_read_only" : true, + "name" : "useDuration", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStartUseAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStartUseAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStartUseAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStartUseAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "ItemStartUseAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStartUseAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "ItemStartUseOnAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "block", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Block" + } + }, + { + "is_read_only" : true, + "name" : "blockFace", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Direction" + } + }, + { + "is_read_only" : true, + "name" : "itemStack", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + } + }, + { + "is_read_only" : true, + "name" : "source", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStartUseOnAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStartUseOnAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStartUseOnAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStartUseOnAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "ItemStartUseOnAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStartUseOnAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "ItemStopUseAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "itemStack", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + } + }, + { + "is_read_only" : true, + "name" : "source", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + } + }, + { + "is_read_only" : true, + "name" : "useDuration", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStopUseAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStopUseAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStopUseAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStopUseAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "ItemStopUseAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStopUseAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "ItemStopUseOnAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "block", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Block" + } + }, + { + "is_read_only" : true, + "name" : "itemStack", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + } + }, + { + "is_read_only" : true, + "name" : "source", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStopUseOnAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStopUseOnAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStopUseOnAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStopUseOnAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "ItemStopUseOnAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStopUseOnAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "ItemType", + "properties" : [ + { + "is_read_only" : true, + "name" : "id", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemType" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "ItemUseAfterEvent", + "properties" : [ + { + "is_read_only" : false, + "name" : "itemStack", + "privilege" : "read_only", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + }, + { + "is_read_only" : true, + "name" : "source", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemUseAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemUseAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemUseAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemUseAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "ItemUseAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemUseAfterEventSignal" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemUseAfterEvent" + } + ], + "constants" : [], + "functions" : [], + "name" : "ItemUseBeforeEvent", + "properties" : [ + { + "is_read_only" : false, + "name" : "cancel", + "privilege" : "read_only", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemUseBeforeEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemUseBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemUseBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemUseBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "ItemUseBeforeEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemUseBeforeEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "ItemUseOnAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "block", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Block" + } + }, + { + "is_read_only" : true, + "name" : "blockFace", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Direction" + } + }, + { + "is_read_only" : true, + "name" : "faceLocation", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "is_read_only" : true, + "name" : "itemStack", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + }, + { + "is_read_only" : true, + "name" : "source", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemUseOnAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemUseOnAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemUseOnAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemUseOnAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "ItemUseOnAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemUseOnAfterEventSignal" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemUseOnAfterEvent" + } + ], + "constants" : [], + "functions" : [], + "name" : "ItemUseOnBeforeEvent", + "properties" : [ + { + "is_read_only" : false, + "name" : "cancel", + "privilege" : "read_only", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemUseOnBeforeEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemUseOnBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemUseOnBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemUseOnBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "ItemUseOnBeforeEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemUseOnBeforeEventSignal" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockEvent" + } + ], + "constants" : [], + "functions" : [], + "name" : "LeverActionAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "isPowered", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "player", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LeverActionAfterEvent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ILeverActionAfterEventSignal" + } + ], + "constants" : [], + "functions" : [], + "name" : "LeverActionAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LeverActionAfterEventSignal" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockVolumeBase" + } + ], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "locations", + "type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "add", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "locations", + "type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + ], + "is_constructor" : true, + "name" : "constructor", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ListBlockVolume" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "locations", + "type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "remove", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "ListBlockVolume", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ListBlockVolume" + } + }, + { + "base_types" : [], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "nether", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:nether" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "overworld", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:overworld" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "theEnd", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:the_end" + } + ], + "functions" : [], + "name" : "MinecraftDimensionTypes", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "MinecraftDimensionTypes" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [], + "is_constructor" : true, + "name" : "constructor", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "MolangVariableMap" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "variableName", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : null, + "name" : "color", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RGB" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setColorRGB", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "variableName", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : null, + "name" : "color", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RGBA" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setColorRGBA", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "variableName", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : { + "max_value" : 3.402823466385289e+38, + "min_value" : -3.402823466385289e+38 + }, + "name" : "number", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setFloat", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "variableName", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : { + "max_value" : 3.402823466385289e+38, + "min_value" : -3.402823466385289e+38 + }, + "name" : "speed", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "details" : null, + "name" : "direction", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setSpeedAndDirection", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "variableName", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : null, + "name" : "vector", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setVector3", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + } + ], + "name" : "MolangVariableMap", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "MolangVariableMap" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockEvent" + } + ], + "constants" : [], + "functions" : [], + "name" : "PistonActivateAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "isExpanding", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "piston", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockPistonComponent" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PistonActivateAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PistonActivateAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PistonActivateAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PistonActivateAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "PistonActivateAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PistonActivateAfterEventSignal" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + ], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : { + "max_value" : 16777216, + "min_value" : -16777216 + }, + "name" : "amount", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "addExperience", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "uint32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "arguments" : [ + { + "details" : { + "max_value" : 16777216, + "min_value" : -16777216 + }, + "name" : "amount", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "addLevels", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getGameMode", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : true, + "is_errorable" : true, + "name" : "GameMode" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "cooldownCategory", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getItemCooldown", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getSpawnPoint", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "DimensionLocation" + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getTotalXp", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "uint32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "trackId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "musicOptions", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "MusicOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "playMusic", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "soundId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "soundOptions", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerSoundOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "playSound", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "trackId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "musicOptions", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "MusicOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "queueMusic", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "resetLevel", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "message", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RawMessage" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RawMessage" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "sendMessage", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : "null" + }, + "name" : "gameMode", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "GameMode" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setGameMode", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : "null" + }, + "name" : "spawnPoint", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "DimensionLocation" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setSpawnPoint", + "privilege" : "none", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "Error" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "cooldownCategory", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : { + "max_value" : 32767, + "min_value" : 0 + }, + "name" : "tickDuration", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "startItemCooldown", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "stopMusic", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + } + ], + "name" : "Player", + "properties" : [ + { + "is_read_only" : true, + "name" : "camera", + "type" : { + "is_bind_type" : true, + "is_errorable" : true, + "name" : "Camera" + } + }, + { + "is_read_only" : true, + "name" : "isEmoting", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "isFlying", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "isGliding", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "isJumping", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "level", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "name", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "string" + } + }, + { + "is_read_only" : true, + "name" : "onScreenDisplay", + "type" : { + "is_bind_type" : true, + "is_errorable" : true, + "name" : "ScreenDisplay" + } + }, + { + "is_read_only" : false, + "name" : "selectedSlotIndex", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "totalXpNeededForNextLevel", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "xpEarnedAtCurrentLevel", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockEvent" + } + ], + "constants" : [], + "functions" : [], + "name" : "PlayerBreakBlockAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "brokenBlockPermutation", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockPermutation" + } + }, + { + "is_read_only" : true, + "name" : "itemStackAfterBreak", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + } + }, + { + "is_read_only" : true, + "name" : "itemStackBeforeBreak", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + } + }, + { + "is_read_only" : true, + "name" : "player", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerBreakBlockAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerBreakBlockAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "options", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockEventOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerBreakBlockAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerBreakBlockAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "PlayerBreakBlockAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerBreakBlockAfterEventSignal" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockEvent" + } + ], + "constants" : [], + "functions" : [], + "name" : "PlayerBreakBlockBeforeEvent", + "properties" : [ + { + "is_read_only" : false, + "name" : "cancel", + "privilege" : "read_only", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "itemStack", + "privilege" : "read_only", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + } + }, + { + "is_read_only" : true, + "name" : "player", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerBreakBlockBeforeEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerBreakBlockBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "options", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockEventOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerBreakBlockBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerBreakBlockBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "PlayerBreakBlockBeforeEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerBreakBlockBeforeEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "PlayerDimensionChangeAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "fromDimension", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Dimension" + } + }, + { + "is_read_only" : true, + "name" : "fromLocation", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "is_read_only" : true, + "name" : "player", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + } + }, + { + "is_read_only" : true, + "name" : "toDimension", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Dimension" + } + }, + { + "is_read_only" : true, + "name" : "toLocation", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerDimensionChangeAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerDimensionChangeAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerDimensionChangeAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerDimensionChangeAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "PlayerDimensionChangeAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerDimensionChangeAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "PlayerGameModeChangeAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "fromGameMode", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "GameMode" + } + }, + { + "is_read_only" : true, + "name" : "player", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + } + }, + { + "is_read_only" : true, + "name" : "toGameMode", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "GameMode" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerGameModeChangeAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerGameModeChangeAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerGameModeChangeAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerGameModeChangeAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "PlayerGameModeChangeAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerGameModeChangeAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "PlayerGameModeChangeBeforeEvent", + "properties" : [ + { + "is_read_only" : false, + "name" : "cancel", + "privilege" : "read_only", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "fromGameMode", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "GameMode" + } + }, + { + "is_read_only" : true, + "name" : "player", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + } + }, + { + "is_read_only" : false, + "name" : "toGameMode", + "privilege" : "read_only", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "GameMode" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerGameModeChangeBeforeEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerGameModeChangeBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerGameModeChangeBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerGameModeChangeBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "PlayerGameModeChangeBeforeEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerGameModeChangeBeforeEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "PlayerInteractWithBlockAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "block", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Block" + } + }, + { + "is_read_only" : true, + "name" : "blockFace", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Direction" + } + }, + { + "is_read_only" : true, + "name" : "faceLocation", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "is_read_only" : true, + "name" : "itemStack", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + } + }, + { + "is_read_only" : true, + "name" : "player", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerInteractWithBlockAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerInteractWithBlockAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerInteractWithBlockAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerInteractWithBlockAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "PlayerInteractWithBlockAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerInteractWithBlockAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "PlayerInteractWithBlockBeforeEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "block", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Block" + } + }, + { + "is_read_only" : true, + "name" : "blockFace", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Direction" + } + }, + { + "is_read_only" : false, + "name" : "cancel", + "privilege" : "read_only", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "faceLocation", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "is_read_only" : true, + "name" : "itemStack", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + } + }, + { + "is_read_only" : true, + "name" : "player", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerInteractWithBlockBeforeEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerInteractWithBlockBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerInteractWithBlockBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerInteractWithBlockBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "PlayerInteractWithBlockBeforeEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerInteractWithBlockBeforeEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "PlayerInteractWithEntityAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "itemStack", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + } + }, + { + "is_read_only" : true, + "name" : "player", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + } + }, + { + "is_read_only" : true, + "name" : "target", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerInteractWithEntityAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerInteractWithEntityAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerInteractWithEntityAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerInteractWithEntityAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "PlayerInteractWithEntityAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerInteractWithEntityAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "PlayerInteractWithEntityBeforeEvent", + "properties" : [ + { + "is_read_only" : false, + "name" : "cancel", + "privilege" : "read_only", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "itemStack", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStack" + } + } + }, + { + "is_read_only" : true, + "name" : "player", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + } + }, + { + "is_read_only" : true, + "name" : "target", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerInteractWithEntityBeforeEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerInteractWithEntityBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerInteractWithEntityBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerInteractWithEntityBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "PlayerInteractWithEntityBeforeEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerInteractWithEntityBeforeEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "PlayerJoinAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "playerId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "is_read_only" : true, + "name" : "playerName", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerJoinAfterEvent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "IPlayerJoinAfterEventSignal" + } + ], + "constants" : [], + "functions" : [], + "name" : "PlayerJoinAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerJoinAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "PlayerLeaveAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "playerId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "is_read_only" : true, + "name" : "playerName", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerLeaveAfterEvent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "IPlayerLeaveAfterEventSignal" + } + ], + "constants" : [], + "functions" : [], + "name" : "PlayerLeaveAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerLeaveAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "PlayerLeaveBeforeEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "player", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerLeaveBeforeEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerLeaveBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerLeaveBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerLeaveBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "PlayerLeaveBeforeEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerLeaveBeforeEventSignal" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockEvent" + } + ], + "constants" : [], + "functions" : [], + "name" : "PlayerPlaceBlockAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "player", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerPlaceBlockAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerPlaceBlockAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "options", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockEventOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerPlaceBlockAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerPlaceBlockAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "PlayerPlaceBlockAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerPlaceBlockAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "PlayerSpawnAfterEvent", + "properties" : [ + { + "is_read_only" : false, + "name" : "initialSpawn", + "privilege" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "player", + "privilege" : "none", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerSpawnAfterEvent" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "IPlayerSpawnAfterEventSignal" + } + ], + "constants" : [], + "functions" : [], + "name" : "PlayerSpawnAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerSpawnAfterEventSignal" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockEvent" + } + ], + "constants" : [], + "functions" : [], + "name" : "PressurePlatePopAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "previousRedstonePower", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "redstonePower", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PressurePlatePopAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PressurePlatePopAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PressurePlatePopAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PressurePlatePopAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "PressurePlatePopAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PressurePlatePopAfterEventSignal" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockEvent" + } + ], + "constants" : [], + "functions" : [], + "name" : "PressurePlatePushAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "previousRedstonePower", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "redstonePower", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "source", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PressurePlatePushAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PressurePlatePushAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PressurePlatePushAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PressurePlatePushAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "PressurePlatePushAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PressurePlatePushAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getBlockHit", + "privilege" : "none", + "return_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockHitInformation" + } + } + ], + "name" : "ProjectileHitBlockAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "dimension", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Dimension" + } + }, + { + "is_read_only" : true, + "name" : "hitVector", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "is_read_only" : true, + "name" : "location", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "is_read_only" : true, + "name" : "projectile", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + }, + { + "is_read_only" : true, + "name" : "source", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ProjectileHitBlockAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ProjectileHitBlockAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ProjectileHitBlockAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ProjectileHitBlockAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "ProjectileHitBlockAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ProjectileHitBlockAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getEntityHit", + "privilege" : "none", + "return_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHitInformation" + } + } + ], + "name" : "ProjectileHitEntityAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "dimension", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Dimension" + } + }, + { + "is_read_only" : true, + "name" : "hitVector", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "is_read_only" : true, + "name" : "location", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "is_read_only" : true, + "name" : "projectile", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + }, + { + "is_read_only" : true, + "name" : "source", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ProjectileHitEntityAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ProjectileHitEntityAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ProjectileHitEntityAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ProjectileHitEntityAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "ProjectileHitEntityAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ProjectileHitEntityAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "objectiveId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "displayName", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "addObjective", + "privilege" : "none", + "return_type" : { + "is_bind_type" : true, + "is_errorable" : true, + "name" : "ScoreboardObjective" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "displaySlotId", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "DisplaySlotId" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "clearObjectiveAtDisplaySlot", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScoreboardObjective" + } + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "objectiveId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getObjective", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScoreboardObjective" + } + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "displaySlotId", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "DisplaySlotId" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getObjectiveAtDisplaySlot", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScoreboardObjectiveDisplayOptions" + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getObjectives", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScoreboardObjective" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getParticipants", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScoreboardIdentity" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "objectiveId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScoreboardObjective" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "removeObjective", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "displaySlotId", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "DisplaySlotId" + } + }, + { + "details" : null, + "name" : "objectiveDisplaySetting", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScoreboardObjectiveDisplayOptions" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setObjectiveAtDisplaySlot", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScoreboardObjective" + } + } + } + ], + "name" : "Scoreboard", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Scoreboard" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getEntity", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "isValid", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + ], + "name" : "ScoreboardIdentity", + "properties" : [ + { + "is_read_only" : true, + "name" : "displayName", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "is_read_only" : true, + "name" : "id", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int64", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "type", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScoreboardIdentityType" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScoreboardIdentity" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "participant", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScoreboardIdentity" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + }, + { + "details" : { + "max_value" : 2147483647, + "min_value" : -2147483648 + }, + "name" : "scoreToAdd", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "addScore", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getParticipants", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScoreboardIdentity" + }, + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "participant", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScoreboardIdentity" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getScore", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getScores", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScoreboardScoreInfo" + }, + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "participant", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScoreboardIdentity" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "hasParticipant", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "isValid", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "participant", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScoreboardIdentity" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "removeParticipant", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "participant", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScoreboardIdentity" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + }, + { + "details" : { + "max_value" : 2147483647, + "min_value" : -2147483648 + }, + "name" : "score", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setScore", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + } + ], + "name" : "ScoreboardObjective", + "properties" : [ + { + "is_read_only" : true, + "name" : "displayName", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "string" + } + }, + { + "is_read_only" : true, + "name" : "id", + "type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "string" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScoreboardObjective" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "ScoreboardScoreInfo", + "properties" : [ + { + "is_read_only" : true, + "name" : "participant", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScoreboardIdentity" + } + }, + { + "is_read_only" : true, + "name" : "score", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScoreboardScoreInfo" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getHiddenHudElements", + "privilege" : "none", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "HudElement" + }, + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : "null" + }, + "name" : "hudElements", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "HudElement" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "hideAllExcept", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "hudElement", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "HudElement" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "isForcedHidden", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "isValid", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "resetHudElements", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "text", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RawMessage" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RawMessage" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setActionBar", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "visible", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "HudVisibility" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "hudElements", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "HudElement" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setHudVisibility", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "title", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RawMessage" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RawMessage" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "options", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "TitleDisplayOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setTitle", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "subtitle", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RawMessage" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RawMessage" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "updateSubtitle", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + } + ], + "name" : "ScreenDisplay", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScreenDisplay" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "ScriptEventCommandMessageAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "id", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "is_read_only" : true, + "name" : "initiator", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + }, + { + "is_read_only" : true, + "name" : "message", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "is_read_only" : true, + "name" : "sourceBlock", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Block" + } + } + }, + { + "is_read_only" : true, + "name" : "sourceEntity", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + }, + { + "is_read_only" : true, + "name" : "sourceType", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScriptEventSource" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScriptEventCommandMessageAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScriptEventCommandMessageAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "options", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScriptEventMessageFilterOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScriptEventCommandMessageAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScriptEventCommandMessageAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + } + ], + "name" : "ScriptEventCommandMessageAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScriptEventCommandMessageAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "Seat", + "properties" : [ + { + "is_read_only" : true, + "name" : "lockRiderRotation", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "maxRiderCount", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "minRiderCount", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "position", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "is_read_only" : true, + "name" : "seatRotation", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Seat" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "location", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getBlockPermutation", + "privilege" : "read_only", + "return_type" : { + "error_types" : [ + { + "from_module" : { + "name" : "@minecraft/common", + "uuid" : "77ec12b4-1b2b-4c98-8d34-d1cd63f849d5", + "version" : "1.1.0" + }, + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidArgumentError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidStructureError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockPermutation" + } + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "location", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getIsWaterlogged", + "privilege" : "read_only", + "return_type" : { + "error_types" : [ + { + "from_module" : { + "name" : "@minecraft/common", + "uuid" : "77ec12b4-1b2b-4c98-8d34-d1cd63f849d5", + "version" : "1.1.0" + }, + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidArgumentError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidStructureError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "isValid", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "identifier", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : { + "default_value" : 1 + }, + "name" : "saveMode", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "StructureSaveMode" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "saveAs", + "privilege" : "none", + "return_type" : { + "error_types" : [ + { + "from_module" : { + "name" : "@minecraft/common", + "uuid" : "77ec12b4-1b2b-4c98-8d34-d1cd63f849d5", + "version" : "1.1.0" + }, + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EngineError" + }, + { + "from_module" : { + "name" : "@minecraft/common", + "uuid" : "77ec12b4-1b2b-4c98-8d34-d1cd63f849d5", + "version" : "1.1.0" + }, + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidArgumentError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidStructureError" + } + ], + "is_bind_type" : true, + "is_errorable" : true, + "name" : "Structure" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "saveToWorld", + "privilege" : "none", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidStructureError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "location", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "blockPermutation", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockPermutation" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setBlockPermutation", + "privilege" : "none", + "return_type" : { + "error_types" : [ + { + "from_module" : { + "name" : "@minecraft/common", + "uuid" : "77ec12b4-1b2b-4c98-8d34-d1cd63f849d5", + "version" : "1.1.0" + }, + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidArgumentError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidStructureError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + } + ], + "name" : "Structure", + "properties" : [ + { + "is_read_only" : true, + "name" : "id", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "is_read_only" : true, + "name" : "size", + "type" : { + "error_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidStructureError" + } + ], + "is_bind_type" : true, + "is_errorable" : true, + "name" : "Vector3" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Structure" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "identifier", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : null, + "name" : "size", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "details" : { + "default_value" : 0 + }, + "name" : "saveMode", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "StructureSaveMode" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "createEmpty", + "privilege" : "none", + "return_type" : { + "error_types" : [ + { + "from_module" : { + "name" : "@minecraft/common", + "uuid" : "77ec12b4-1b2b-4c98-8d34-d1cd63f849d5", + "version" : "1.1.0" + }, + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EngineError" + }, + { + "from_module" : { + "name" : "@minecraft/common", + "uuid" : "77ec12b4-1b2b-4c98-8d34-d1cd63f849d5", + "version" : "1.1.0" + }, + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidArgumentError" + } + ], + "is_bind_type" : true, + "is_errorable" : true, + "name" : "Structure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "identifier", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : null, + "name" : "dimension", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Dimension" + } + }, + { + "details" : null, + "name" : "from", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "details" : null, + "name" : "to", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "options", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "StructureCreateOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "createFromWorld", + "privilege" : "none", + "return_type" : { + "error_types" : [ + { + "from_module" : { + "name" : "@minecraft/common", + "uuid" : "77ec12b4-1b2b-4c98-8d34-d1cd63f849d5", + "version" : "1.1.0" + }, + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidArgumentError" + } + ], + "is_bind_type" : true, + "is_errorable" : true, + "name" : "Structure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "structure", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Structure" + } + ] + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "delete", + "privilege" : "none", + "return_type" : { + "error_types" : [ + { + "from_module" : { + "name" : "@minecraft/common", + "uuid" : "77ec12b4-1b2b-4c98-8d34-d1cd63f849d5", + "version" : "1.1.0" + }, + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidArgumentError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "boolean" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "identifier", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "get", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Structure" + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getWorldStructureIds", + "privilege" : "none", + "return_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "structure", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Structure" + } + ] + } + }, + { + "details" : null, + "name" : "dimension", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Dimension" + } + }, + { + "details" : null, + "name" : "location", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "options", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "StructurePlaceOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "place", + "privilege" : "none", + "return_type" : { + "error_types" : [ + { + "from_module" : { + "name" : "@minecraft/common", + "uuid" : "77ec12b4-1b2b-4c98-8d34-d1cd63f849d5", + "version" : "1.1.0" + }, + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ArgumentOutOfBoundsError" + }, + { + "from_module" : { + "name" : "@minecraft/common", + "uuid" : "77ec12b4-1b2b-4c98-8d34-d1cd63f849d5", + "version" : "1.1.0" + }, + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidArgumentError" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidStructureError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + } + ], + "name" : "StructureManager", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "StructureManager" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : { + "max_value" : 4294967295, + "min_value" : 0 + }, + "name" : "runId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "uint32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "clearRun", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "run", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "uint32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "tickInterval", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "uint32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "runInterval", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "uint32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "tickDelay", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "uint32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "runTimeout", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "uint32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "name" : "System", + "properties" : [ + { + "is_read_only" : true, + "name" : "afterEvents", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "SystemAfterEvents" + } + }, + { + "is_read_only" : true, + "name" : "currentTick", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "uint32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "System" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "SystemAfterEvents", + "properties" : [ + { + "is_read_only" : true, + "name" : "scriptEventReceive", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScriptEventCommandMessageAfterEventSignal" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "SystemAfterEvents" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockEvent" + } + ], + "constants" : [], + "functions" : [], + "name" : "TargetBlockHitAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "hitVector", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "is_read_only" : true, + "name" : "previousRedstonePower", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "redstonePower", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : true, + "name" : "source", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "TargetBlockHitAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "TargetBlockHitAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "TargetBlockHitAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "TargetBlockHitAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "TargetBlockHitAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "TargetBlockHitAfterEventSignal" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockEvent" + } + ], + "constants" : [], + "functions" : [], + "name" : "TripWireTripAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "isPowered", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : true, + "name" : "sources", + "type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "TripWireTripAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "TripWireTripAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "TripWireTripAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "TripWireTripAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "TripWireTripAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "TripWireTripAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "WeatherChangeAfterEvent", + "properties" : [ + { + "is_read_only" : true, + "name" : "dimension", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "is_read_only" : true, + "name" : "newWeather", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WeatherType" + } + }, + { + "is_read_only" : true, + "name" : "previousWeather", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WeatherType" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WeatherChangeAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WeatherChangeAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WeatherChangeAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WeatherChangeAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "WeatherChangeAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WeatherChangeAfterEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "WeatherChangeBeforeEvent", + "properties" : [ + { + "is_read_only" : false, + "name" : "cancel", + "privilege" : "read_only", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + }, + { + "is_read_only" : false, + "name" : "duration", + "privilege" : "read_only", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : false, + "name" : "newWeather", + "privilege" : "read_only", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WeatherType" + } + }, + { + "is_read_only" : true, + "name" : "previousWeather", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WeatherType" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WeatherChangeBeforeEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WeatherChangeBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WeatherChangeBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WeatherChangeBeforeEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "WeatherChangeBeforeEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WeatherChangeBeforeEventSignal" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "clearDynamicProperties", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getAbsoluteTime", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getAllPlayers", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + }, + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getDay", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getDefaultSpawnLocation", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "dimensionId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getDimension", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : true, + "is_errorable" : true, + "name" : "Dimension" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "identifier", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getDynamicProperty", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "double", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + ] + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getDynamicPropertyIds", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getDynamicPropertyTotalByteCount", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "id", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getEntity", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getMoonPhase", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "MoonPhase" + } + }, + { + "arguments" : [ + { + "details" : { + "default_value" : "null" + }, + "name" : "options", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityQueryOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "getPlayers", + "privilege" : "read_only", + "return_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Player" + }, + "is_bind_type" : false, + "is_errorable" : true, + "name" : "array" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "getTimeOfDay", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "trackId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "musicOptions", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "MusicOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "playMusic", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "soundId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : null, + "name" : "location", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "soundOptions", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WorldSoundOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "playSound", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "trackId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "musicOptions", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "MusicOptions" + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "queueMusic", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "message", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RawMessage" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RawMessage" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "sendMessage", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : { + "max_value" : 2147483647, + "min_value" : -2147483648 + }, + "name" : "absoluteTime", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setAbsoluteTime", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "spawnLocation", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setDefaultSpawnLocation", + "privilege" : "none", + "return_type" : { + "error_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "Error" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + ], + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "identifier", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + }, + { + "details" : { + "default_value" : "null" + }, + "name" : "value", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "double", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + ] + } + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setDynamicProperty", + "privilege" : "read_only", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "timeOfDay", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "TimeOfDay" + } + ] + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "setTimeOfDay", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + { + "arguments" : [], + "is_constructor" : false, + "is_static" : false, + "name" : "stopMusic", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "World", + "properties" : [ + { + "is_read_only" : true, + "name" : "afterEvents", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WorldAfterEvents" + } + }, + { + "is_read_only" : true, + "name" : "beforeEvents", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WorldBeforeEvents" + } + }, + { + "is_read_only" : true, + "name" : "gameRules", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "GameRules" + } + }, + { + "is_read_only" : true, + "name" : "scoreboard", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Scoreboard" + } + }, + { + "is_read_only" : true, + "name" : "structureManager", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "StructureManager" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "World" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "WorldAfterEvents", + "properties" : [ + { + "is_read_only" : true, + "name" : "buttonPush", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ButtonPushAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "dataDrivenEntityTrigger", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "DataDrivenEntityTriggerAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "effectAdd", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EffectAddAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "entityDie", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityDieAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "entityHealthChanged", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHealthChangedAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "entityHitBlock", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHitBlockAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "entityHitEntity", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHitEntityAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "entityHurt", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHurtAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "entityLoad", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityLoadAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "entityRemove", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityRemoveAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "entitySpawn", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntitySpawnAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "explosion", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ExplosionAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "gameRuleChange", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "GameRuleChangeAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "itemCompleteUse", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemCompleteUseAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "itemReleaseUse", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemReleaseUseAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "itemStartUse", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStartUseAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "itemStartUseOn", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStartUseOnAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "itemStopUse", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStopUseAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "itemStopUseOn", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemStopUseOnAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "itemUse", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemUseAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "itemUseOn", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemUseOnAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "leverAction", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LeverActionAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "pistonActivate", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PistonActivateAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "playerBreakBlock", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerBreakBlockAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "playerDimensionChange", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerDimensionChangeAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "playerGameModeChange", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerGameModeChangeAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "playerJoin", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerJoinAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "playerLeave", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerLeaveAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "playerPlaceBlock", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerPlaceBlockAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "playerSpawn", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerSpawnAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "pressurePlatePop", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PressurePlatePopAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "pressurePlatePush", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PressurePlatePushAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "projectileHitBlock", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ProjectileHitBlockAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "projectileHitEntity", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ProjectileHitEntityAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "targetBlockHit", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "TargetBlockHitAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "tripWireTrip", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "TripWireTripAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "weatherChange", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WeatherChangeAfterEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "worldInitialize", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WorldInitializeAfterEventSignal" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WorldAfterEvents" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "WorldBeforeEvents", + "properties" : [ + { + "is_read_only" : true, + "name" : "effectAdd", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EffectAddBeforeEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "entityRemove", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityRemoveBeforeEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "explosion", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ExplosionBeforeEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "itemUse", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemUseBeforeEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "itemUseOn", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ItemUseOnBeforeEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "playerBreakBlock", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerBreakBlockBeforeEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "playerGameModeChange", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerGameModeChangeBeforeEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "playerLeave", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerLeaveBeforeEventSignal" + } + }, + { + "is_read_only" : true, + "name" : "weatherChange", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WeatherChangeBeforeEventSignal" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WorldBeforeEvents" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [], + "name" : "WorldInitializeAfterEvent", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WorldInitializeAfterEvent" + } + }, + { + "base_types" : [], + "constants" : [], + "functions" : [ + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WorldInitializeAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "subscribe", + "privilege" : "none", + "return_type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WorldInitializeAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + }, + { + "arguments" : [ + { + "details" : null, + "name" : "callback", + "type" : { + "closure_type" : { + "argument_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WorldInitializeAfterEvent" + } + ], + "return_type" : { + "is_bind_type" : false, + "is_errorable" : true, + "name" : "undefined" + } + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "closure" + } + } + ], + "is_constructor" : false, + "is_static" : false, + "name" : "unsubscribe", + "privilege" : "none", + "return_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "undefined" + } + } + ], + "name" : "WorldInitializeAfterEventSignal", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WorldInitializeAfterEventSignal" + } + } + ], + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "HudElementsCount", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + "value" : 13 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "HudVisibilityCount", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + "value" : 2 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "MoonPhaseCount", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + "value" : 8 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "TicksPerSecond", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + }, + "value" : 20 + } + ], + "dependencies" : [ + { + "name" : "@minecraft/common", + "uuid" : "77ec12b4-1b2b-4c98-8d34-d1cd63f849d5", + "version" : "1.1.0" + } + ], + "enums" : [ + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "Inventory", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:inventory" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Piston", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:piston" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Sign", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:sign" + } + ], + "name" : "BlockComponentTypes" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "Expanded", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Expanded" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Expanding", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Expanding" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Retracted", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Retracted" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Retracting", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Retracting" + } + ], + "name" : "BlockPistonState" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "Down", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Down" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "East", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "East" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "North", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "North" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "South", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "South" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Up", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Up" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "West", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "West" + } + ], + "name" : "Direction" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "BelowName", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "BelowName" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "List", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "List" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Sidebar", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Sidebar" + } + ], + "name" : "DisplaySlotId" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "Black", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Black" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Blue", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Blue" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Brown", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Brown" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Cyan", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Cyan" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Gray", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Gray" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Green", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Green" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "LightBlue", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "LightBlue" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Lime", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Lime" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Magenta", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Magenta" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Orange", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Orange" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Pink", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Pink" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Purple", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Purple" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Red", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Red" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Silver", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Silver" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "White", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "White" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Yellow", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Yellow" + } + ], + "name" : "DyeColor" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "InBack", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "InBack" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "InBounce", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "InBounce" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "InCirc", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "InCirc" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "InCubic", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "InCubic" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "InElastic", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "InElastic" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "InExpo", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "InExpo" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "InOutBack", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "InOutBack" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "InOutBounce", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "InOutBounce" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "InOutCirc", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "InOutCirc" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "InOutCubic", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "InOutCubic" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "InOutElastic", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "InOutElastic" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "InOutExpo", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "InOutExpo" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "InOutQuad", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "InOutQuad" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "InOutQuart", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "InOutQuart" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "InOutQuint", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "InOutQuint" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "InOutSine", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "InOutSine" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "InQuad", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "InQuad" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "InQuart", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "InQuart" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "InQuint", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "InQuint" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "InSine", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "InSine" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Linear", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Linear" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "OutBack", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "OutBack" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "OutBounce", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "OutBounce" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "OutCirc", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "OutCirc" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "OutCubic", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "OutCubic" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "OutElastic", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "OutElastic" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "OutExpo", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "OutExpo" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "OutQuad", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "OutQuad" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "OutQuart", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "OutQuart" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "OutQuint", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "OutQuint" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "OutSine", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "OutSine" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Spring", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Spring" + } + ], + "name" : "EasingType" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "ArmorFeet", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "ArmorFeet" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "ArmorHead", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "ArmorHead" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "ArmorLegs", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "ArmorLegs" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "ArmorTorso", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "ArmorTorso" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Axe", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Axe" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Bow", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Bow" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "CarrotStick", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "CarrotStick" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "CosmeticHead", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "CosmeticHead" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Crossbow", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Crossbow" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Elytra", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Elytra" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "FishingRod", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "FishingRod" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Flintsteel", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Flintsteel" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Hoe", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Hoe" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Pickaxe", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Pickaxe" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Shears", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Shears" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Shield", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Shield" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Shovel", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Shovel" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Spear", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Spear" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Sword", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Sword" + } + ], + "name" : "EnchantmentSlot" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "AddRider", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:addrider" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "CanClimb", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:can_climb" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "CanFly", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:can_fly" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "CanPowerJump", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:can_power_jump" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Color", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:color" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Color2", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:color2" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Equippable", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:equippable" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "FireImmune", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:fire_immune" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "FloatsInLiquid", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:floats_in_liquid" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "FlyingSpeed", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:flying_speed" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "FrictionModifier", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:friction_modifier" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "GroundOffset", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:ground_offset" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Healable", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:healable" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Health", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:health" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Inventory", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:inventory" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "IsBaby", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:is_baby" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "IsCharged", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:is_charged" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "IsChested", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:is_chested" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "IsDyeable", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:is_dyeable" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "IsHiddenWhenInvisible", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:is_hidden_when_invisible" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "IsIgnited", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:is_ignited" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "IsIllagerCaptain", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:is_illager_captain" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "IsSaddled", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:is_saddled" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "IsShaking", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:is_shaking" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "IsSheared", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:is_sheared" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "IsStackable", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:is_stackable" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "IsStunned", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:is_stunned" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "IsTamed", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:is_tamed" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Item", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:item" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "MarkVariant", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:mark_variant" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "MovementAmphibious", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:movement.amphibious" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "MovementBasic", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:movement.basic" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "MovementFly", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:movement.fly" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "MovementGeneric", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:movement.generic" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "MovementHover", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:movement.hover" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "MovementJump", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:movement.jump" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "MovementSkip", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:movement.skip" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "NavigationClimb", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:navigation.climb" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "NavigationFloat", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:navigation.float" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "NavigationFly", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:navigation.fly" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "NavigationGeneric", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:navigation.generic" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "NavigationHover", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:navigation.hover" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "NavigationWalk", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:navigation.walk" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "OnFire", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:onfire" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Projectile", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:projectile" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "PushThrough", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:push_through" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Rideable", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:rideable" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Riding", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:riding" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Scale", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:scale" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "SkinId", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:skin_id" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "TameMount", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:tamemount" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "TypeFamily", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:type_family" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Variant", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:variant" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "WantsJockey", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:wants_jockey" + } + ], + "name" : "EntityComponentTypes" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "anvil", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "anvil" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "blockExplosion", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "blockExplosion" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "campfire", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "campfire" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "charging", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "charging" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "contact", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "contact" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "drowning", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "drowning" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "entityAttack", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "entityAttack" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "entityExplosion", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "entityExplosion" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "fall", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "fall" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "fallingBlock", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "fallingBlock" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "fire", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "fire" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "fireTick", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "fireTick" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "fireworks", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "fireworks" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "flyIntoWall", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "flyIntoWall" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "freezing", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "freezing" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "lava", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "lava" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "lightning", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "lightning" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "magic", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "magic" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "magma", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "magma" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "none" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "override", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "override" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "piston", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "piston" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "projectile", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "projectile" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "ramAttack", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "ramAttack" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "selfDestruct", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "selfDestruct" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "sonicBoom", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "sonicBoom" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "soulCampfire", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "soulCampfire" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "stalactite", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "stalactite" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "stalagmite", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "stalagmite" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "starve", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "starve" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "suffocation", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "suffocation" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "suicide", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "suicide" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "temperature", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "temperature" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "thorns", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "thorns" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "void", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "void" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "wither", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "wither" + } + ], + "name" : "EntityDamageCause" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "Born", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Born" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Event", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Event" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Loaded", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Loaded" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Spawned", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Spawned" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Transformed", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Transformed" + } + ], + "name" : "EntityInitializationCause" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "Chest", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Chest" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Feet", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Feet" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Head", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Head" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Legs", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Legs" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Mainhand", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Mainhand" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Offhand", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Offhand" + } + ], + "name" : "EquipmentSlot" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "Lava", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Lava" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Potion", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Potion" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "PowderSnow", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "PowderSnow" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Water", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Water" + } + ], + "name" : "FluidType" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "adventure", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "adventure" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "creative", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "creative" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "spectator", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "spectator" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "survival", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "survival" + } + ], + "name" : "GameMode" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "CommandBlockOutput", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "commandBlockOutput" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "CommandBlocksEnabled", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "commandBlocksEnabled" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "DoDayLightCycle", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "doDayLightCycle" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "DoEntityDrops", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "doEntityDrops" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "DoFireTick", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "doFireTick" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "DoImmediateRespawn", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "doImmediateRespawn" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "DoInsomnia", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "doInsomnia" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "DoLimitedCrafting", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "doLimitedCrafting" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "DoMobLoot", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "doMobLoot" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "DoMobSpawning", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "doMobSpawning" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "DoTileDrops", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "doTileDrops" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "DoWeatherCycle", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "doWeatherCycle" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "DrowningDamage", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "drowningDamage" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "FallDamage", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "fallDamage" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "FireDamage", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "fireDamage" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "FreezeDamage", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "freezeDamage" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "FunctionCommandLimit", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "functionCommandLimit" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "KeepInventory", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "keepInventory" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "MaxCommandChainLength", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "maxCommandChainLength" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "MobGriefing", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "mobGriefing" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "NaturalRegeneration", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "naturalRegeneration" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "PlayersSleepingPercentage", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "playersSleepingPercentage" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "ProjectilesCanBreakBlocks", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "projectilesCanBreakBlocks" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Pvp", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "pvp" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "RandomTickSpeed", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "randomTickSpeed" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "RecipesUnlock", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "recipesUnlock" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "RespawnBlocksExplode", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "respawnBlocksExplode" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "SendCommandFeedback", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "sendCommandFeedback" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "ShowBorderEffect", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "showBorderEffect" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "ShowCoordinates", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "showCoordinates" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "ShowDeathMessages", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "showDeathMessages" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "ShowRecipeMessages", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "showRecipeMessages" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "ShowTags", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "showTags" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "SpawnRadius", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "spawnRadius" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "TntExplodes", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "tntExplodes" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "TntExplosionDropDecay", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "tntExplosionDropDecay" + } + ], + "name" : "GameRule" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "AirBubbles", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "HudElement" + }, + "value" : 9 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Armor", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "HudElement" + }, + "value" : 1 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Crosshair", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "HudElement" + }, + "value" : 4 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Health", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "HudElement" + }, + "value" : 6 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "HorseHealth", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "HudElement" + }, + "value" : 10 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Hotbar", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "HudElement" + }, + "value" : 5 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Hunger", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "HudElement" + }, + "value" : 8 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "ItemText", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "HudElement" + }, + "value" : 12 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "PaperDoll", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "HudElement" + }, + "value" : 0 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "ProgressBar", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "HudElement" + }, + "value" : 7 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "StatusEffects", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "HudElement" + }, + "value" : 11 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "ToolTips", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "HudElement" + }, + "value" : 2 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "TouchControls", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "HudElement" + }, + "value" : 3 + } + ], + "name" : "HudElement" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "Hide", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "HudVisibility" + }, + "value" : 0 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Reset", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "HudVisibility" + }, + "value" : 1 + } + ], + "name" : "HudVisibility" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "Cooldown", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:cooldown" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Durability", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:durability" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Enchantable", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:enchantable" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Food", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "minecraft:food" + } + ], + "name" : "ItemComponentTypes" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "inventory", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "inventory" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "none", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "none" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "slot", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "slot" + } + ], + "name" : "ItemLockMode" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "FirstQuarter", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "MoonPhase" + }, + "value" : 2 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "FullMoon", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "MoonPhase" + }, + "value" : 0 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "LastQuarter", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "MoonPhase" + }, + "value" : 6 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "NewMoon", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "MoonPhase" + }, + "value" : 4 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "WaningCrescent", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "MoonPhase" + }, + "value" : 3 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "WaningGibbous", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "MoonPhase" + }, + "value" : 1 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "WaxingCrescent", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "MoonPhase" + }, + "value" : 5 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "WaxingGibbous", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "MoonPhase" + }, + "value" : 7 + } + ], + "name" : "MoonPhase" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "Ascending", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ObjectiveSortOrder" + }, + "value" : 0 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Descending", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ObjectiveSortOrder" + }, + "value" : 1 + } + ], + "name" : "ObjectiveSortOrder" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "Black", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PaletteColor" + }, + "value" : 15 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Blue", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PaletteColor" + }, + "value" : 11 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Brown", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PaletteColor" + }, + "value" : 12 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Cyan", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PaletteColor" + }, + "value" : 9 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Gray", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PaletteColor" + }, + "value" : 7 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Green", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PaletteColor" + }, + "value" : 13 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "LightBlue", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PaletteColor" + }, + "value" : 3 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Lime", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PaletteColor" + }, + "value" : 5 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Magenta", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PaletteColor" + }, + "value" : 2 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Orange", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PaletteColor" + }, + "value" : 1 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Pink", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PaletteColor" + }, + "value" : 6 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Purple", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PaletteColor" + }, + "value" : 10 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Red", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PaletteColor" + }, + "value" : 14 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Silver", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PaletteColor" + }, + "value" : 8 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "White", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PaletteColor" + }, + "value" : 0 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Yellow", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PaletteColor" + }, + "value" : 4 + } + ], + "name" : "PaletteColor" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "Entity", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Entity" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "FakePlayer", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "FakePlayer" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Player", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Player" + } + ], + "name" : "ScoreboardIdentityType" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "Block", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Block" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Entity", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Entity" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "NPCDialogue", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "NPCDialogue" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Server", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Server" + } + ], + "name" : "ScriptEventSource" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "Back", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Back" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Front", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Front" + } + ], + "name" : "SignSide" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "Blocks", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Blocks" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Layers", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Layers" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "None", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "None" + } + ], + "name" : "StructureAnimationMode" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "None", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "None" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "X", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "X" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "XZ", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "XZ" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Z", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Z" + } + ], + "name" : "StructureMirrorAxis" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "None", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "None" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Rotate180", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Rotate180" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Rotate270", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Rotate270" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Rotate90", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Rotate90" + } + ], + "name" : "StructureRotation" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "Memory", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Memory" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "World", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "World" + } + ], + "name" : "StructureSaveMode" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "Day", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "TimeOfDay" + }, + "value" : 1000 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Midnight", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "TimeOfDay" + }, + "value" : 18000 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Night", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "TimeOfDay" + }, + "value" : 13000 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Noon", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "TimeOfDay" + }, + "value" : 6000 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Sunrise", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "TimeOfDay" + }, + "value" : 23000 + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Sunset", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "TimeOfDay" + }, + "value" : 12000 + } + ], + "name" : "TimeOfDay" + }, + { + "constants" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "Clear", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Clear" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Rain", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Rain" + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "Thunder", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "value" : "Thunder" + } + ], + "name" : "WeatherType" + } + ], + "errors" : [ + { + "name" : "CommandError", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "CommandError" + } + }, + { + "name" : "EnchantmentLevelOutOfBoundsError", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EnchantmentLevelOutOfBoundsError" + } + }, + { + "name" : "EnchantmentTypeNotCompatibleError", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EnchantmentTypeNotCompatibleError" + } + }, + { + "name" : "EnchantmentTypeUnknownIdError", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EnchantmentTypeUnknownIdError" + } + }, + { + "name" : "InvalidContainerSlotError", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidContainerSlotError" + } + }, + { + "name" : "InvalidStructureError", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "InvalidStructureError" + } + }, + { + "name" : "LocationInUnloadedChunkError", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationInUnloadedChunkError" + } + }, + { + "name" : "LocationOutOfWorldBoundariesError", + "properties" : [], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "LocationOutOfWorldBoundariesError" + } + } + ], + "functions" : [], + "interfaces" : [ + { + "base_types" : [], + "name" : "BlockEventOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "blockTypes", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "permutations", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockPermutation" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockEventOptions" + } + }, + { + "base_types" : [], + "name" : "BlockFilter", + "properties" : [ + { + "is_read_only" : false, + "name" : "excludePermutations", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockPermutation" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "excludeTags", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "excludeTypes", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "includePermutations", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockPermutation" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "includeTags", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "includeTypes", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockFilter" + } + }, + { + "base_types" : [], + "name" : "BlockHitInformation", + "properties" : [ + { + "is_read_only" : false, + "name" : "block", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Block" + } + }, + { + "is_read_only" : false, + "name" : "face", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Direction" + } + }, + { + "is_read_only" : false, + "name" : "faceLocation", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockHitInformation" + } + }, + { + "base_types" : [], + "name" : "BlockRaycastHit", + "properties" : [ + { + "is_read_only" : false, + "name" : "block", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Block" + } + }, + { + "is_read_only" : false, + "name" : "face", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Direction" + } + }, + { + "is_read_only" : false, + "name" : "faceLocation", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockRaycastHit" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockFilter" + } + ], + "name" : "BlockRaycastOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "includeLiquidBlocks", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + }, + { + "is_read_only" : false, + "name" : "includePassableBlocks", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + }, + { + "is_read_only" : false, + "name" : "maxDistance", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockRaycastOptions" + } + }, + { + "base_types" : [], + "name" : "CameraDefaultOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "easeOptions", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "CameraEaseOptions" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "CameraDefaultOptions" + } + }, + { + "base_types" : [], + "name" : "CameraEaseOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "easeTime", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + }, + { + "is_read_only" : false, + "name" : "easeType", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EasingType" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "CameraEaseOptions" + } + }, + { + "base_types" : [], + "name" : "CameraFadeOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "fadeColor", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RGB" + } + } + }, + { + "is_read_only" : false, + "name" : "fadeTime", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "CameraFadeTimeOptions" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "CameraFadeOptions" + } + }, + { + "base_types" : [], + "name" : "CameraFadeTimeOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "fadeInTime", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : false, + "name" : "fadeOutTime", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : false, + "name" : "holdTime", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "CameraFadeTimeOptions" + } + }, + { + "base_types" : [], + "name" : "CameraSetFacingOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "easeOptions", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "CameraEaseOptions" + } + } + }, + { + "is_read_only" : false, + "name" : "facingEntity", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + }, + { + "is_read_only" : false, + "name" : "location", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "CameraSetFacingOptions" + } + }, + { + "base_types" : [], + "name" : "CameraSetLocationOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "easeOptions", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "CameraEaseOptions" + } + } + }, + { + "is_read_only" : false, + "name" : "location", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "CameraSetLocationOptions" + } + }, + { + "base_types" : [], + "name" : "CameraSetPosOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "easeOptions", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "CameraEaseOptions" + } + } + }, + { + "is_read_only" : false, + "name" : "facingLocation", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "is_read_only" : false, + "name" : "location", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "CameraSetPosOptions" + } + }, + { + "base_types" : [], + "name" : "CameraSetRotOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "easeOptions", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "CameraEaseOptions" + } + } + }, + { + "is_read_only" : false, + "name" : "location", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + } + }, + { + "is_read_only" : false, + "name" : "rotation", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector2" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "CameraSetRotOptions" + } + }, + { + "base_types" : [], + "name" : "DefinitionModifier", + "properties" : [ + { + "is_read_only" : false, + "name" : "addedComponentGroups", + "type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + }, + { + "is_read_only" : false, + "name" : "removedComponentGroups", + "type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "DefinitionModifier" + } + }, + { + "base_types" : [], + "name" : "DimensionLocation", + "properties" : [ + { + "is_read_only" : false, + "name" : "dimension", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Dimension" + } + }, + { + "is_read_only" : false, + "name" : "x", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : false, + "name" : "y", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : false, + "name" : "z", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "DimensionLocation" + } + }, + { + "base_types" : [], + "name" : "Enchantment", + "properties" : [ + { + "is_read_only" : false, + "name" : "level", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : false, + "name" : "type", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EnchantmentType" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Enchantment" + } + }, + { + "base_types" : [], + "name" : "EntityApplyDamageByProjectileOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "damagingEntity", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + }, + { + "is_read_only" : false, + "name" : "damagingProjectile", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityApplyDamageByProjectileOptions" + } + }, + { + "base_types" : [], + "name" : "EntityApplyDamageOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "cause", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityDamageCause" + } + }, + { + "is_read_only" : false, + "name" : "damagingEntity", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityApplyDamageOptions" + } + }, + { + "base_types" : [], + "name" : "EntityDamageSource", + "properties" : [ + { + "is_read_only" : false, + "name" : "cause", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityDamageCause" + } + }, + { + "is_read_only" : false, + "name" : "damagingEntity", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + }, + { + "is_read_only" : false, + "name" : "damagingProjectile", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityDamageSource" + } + }, + { + "base_types" : [], + "name" : "EntityDataDrivenTriggerEventOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "entities", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "entityTypes", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "eventTypes", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityDataDrivenTriggerEventOptions" + } + }, + { + "base_types" : [], + "name" : "EntityEffectOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "amplifier", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + }, + { + "is_read_only" : false, + "name" : "showParticles", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityEffectOptions" + } + }, + { + "base_types" : [], + "name" : "EntityEventOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "entities", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "entityTypes", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityEventOptions" + } + }, + { + "base_types" : [], + "name" : "EntityFilter", + "properties" : [ + { + "is_read_only" : false, + "name" : "excludeFamilies", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "excludeGameModes", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "GameMode" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "excludeNames", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "excludeTags", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "excludeTypes", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "families", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "gameMode", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "GameMode" + } + } + }, + { + "is_read_only" : false, + "name" : "maxHorizontalRotation", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + }, + { + "is_read_only" : false, + "name" : "maxLevel", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + }, + { + "is_read_only" : false, + "name" : "maxVerticalRotation", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + }, + { + "is_read_only" : false, + "name" : "minHorizontalRotation", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + }, + { + "is_read_only" : false, + "name" : "minLevel", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + }, + { + "is_read_only" : false, + "name" : "minVerticalRotation", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + }, + { + "is_read_only" : false, + "name" : "name", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + }, + { + "is_read_only" : false, + "name" : "scoreOptions", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityQueryScoreOptions" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "tags", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "type", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + }, + { + "base_types" : [], + "name" : "EntityHitInformation", + "properties" : [ + { + "is_read_only" : false, + "name" : "entity", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHitInformation" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + ], + "name" : "EntityQueryOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "closest", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + }, + { + "is_read_only" : false, + "name" : "farthest", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + }, + { + "is_read_only" : false, + "name" : "location", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + } + }, + { + "is_read_only" : false, + "name" : "maxDistance", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + }, + { + "is_read_only" : false, + "name" : "minDistance", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + }, + { + "is_read_only" : false, + "name" : "volume", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityQueryOptions" + } + }, + { + "base_types" : [], + "name" : "EntityQueryScoreOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "exclude", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + }, + { + "is_read_only" : false, + "name" : "maxScore", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + }, + { + "is_read_only" : false, + "name" : "minScore", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + }, + { + "is_read_only" : false, + "name" : "objective", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityQueryScoreOptions" + } + }, + { + "base_types" : [], + "name" : "EntityRaycastHit", + "properties" : [ + { + "is_read_only" : false, + "name" : "distance", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : false, + "name" : "entity", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityRaycastHit" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + ], + "name" : "EntityRaycastOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "maxDistance", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityRaycastOptions" + } + }, + { + "base_types" : [], + "name" : "ExplosionOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "allowUnderwater", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + }, + { + "is_read_only" : false, + "name" : "breaksBlocks", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + }, + { + "is_read_only" : false, + "name" : "causesFire", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + }, + { + "is_read_only" : false, + "name" : "source", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ExplosionOptions" + } + }, + { + "base_types" : [], + "name" : "MusicOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "fade", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + }, + { + "is_read_only" : false, + "name" : "loop", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + }, + { + "is_read_only" : false, + "name" : "volume", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "MusicOptions" + } + }, + { + "base_types" : [], + "name" : "PlayAnimationOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "blendOutTime", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + }, + { + "is_read_only" : false, + "name" : "controller", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + }, + { + "is_read_only" : false, + "name" : "nextState", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + }, + { + "is_read_only" : false, + "name" : "players", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "stopExpression", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayAnimationOptions" + } + }, + { + "base_types" : [], + "name" : "PlayerSoundOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "location", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + } + }, + { + "is_read_only" : false, + "name" : "pitch", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + }, + { + "is_read_only" : false, + "name" : "volume", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "PlayerSoundOptions" + } + }, + { + "base_types" : [], + "name" : "ProjectileShootOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "uncertainty", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ProjectileShootOptions" + } + }, + { + "base_types" : [], + "name" : "RawMessage", + "properties" : [ + { + "is_read_only" : false, + "name" : "rawtext", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RawMessage" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "score", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RawMessageScore" + } + } + }, + { + "is_read_only" : false, + "name" : "text", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + }, + { + "is_read_only" : false, + "name" : "translate", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + }, + { + "is_read_only" : false, + "name" : "with", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RawMessage" + } + ] + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RawMessage" + } + }, + { + "base_types" : [], + "name" : "RawMessageScore", + "properties" : [ + { + "is_read_only" : false, + "name" : "name", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + }, + { + "is_read_only" : false, + "name" : "objective", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RawMessageScore" + } + }, + { + "base_types" : [], + "name" : "RawText", + "properties" : [ + { + "is_read_only" : false, + "name" : "rawtext", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RawMessage" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RawText" + } + }, + { + "base_types" : [], + "name" : "RGB", + "properties" : [ + { + "is_read_only" : false, + "name" : "blue", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : false, + "name" : "green", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : false, + "name" : "red", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RGB" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RGB" + } + ], + "name" : "RGBA", + "properties" : [ + { + "is_read_only" : false, + "name" : "alpha", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RGBA" + } + }, + { + "base_types" : [], + "name" : "ScoreboardObjectiveDisplayOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "objective", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScoreboardObjective" + } + }, + { + "is_read_only" : false, + "name" : "sortOrder", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ObjectiveSortOrder" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScoreboardObjectiveDisplayOptions" + } + }, + { + "base_types" : [], + "name" : "ScriptEventMessageFilterOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "namespaces", + "type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "ScriptEventMessageFilterOptions" + } + }, + { + "base_types" : [], + "name" : "StructureCreateOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "includeBlocks", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + }, + { + "is_read_only" : false, + "name" : "includeEntities", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + }, + { + "is_read_only" : false, + "name" : "saveMode", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "StructureSaveMode" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "StructureCreateOptions" + } + }, + { + "base_types" : [], + "name" : "StructurePlaceOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "animationMode", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "StructureAnimationMode" + } + } + }, + { + "is_read_only" : false, + "name" : "animationSeconds", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + }, + { + "is_read_only" : false, + "name" : "includeBlocks", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + }, + { + "is_read_only" : false, + "name" : "includeEntities", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + }, + { + "is_read_only" : false, + "name" : "integrity", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + }, + { + "is_read_only" : false, + "name" : "integritySeed", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + } + }, + { + "is_read_only" : false, + "name" : "mirror", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "StructureMirrorAxis" + } + } + }, + { + "is_read_only" : false, + "name" : "rotation", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "StructureRotation" + } + } + }, + { + "is_read_only" : false, + "name" : "waterlogged", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "StructurePlaceOptions" + } + }, + { + "base_types" : [], + "name" : "TeleportOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "checkForBlocks", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + }, + { + "is_read_only" : false, + "name" : "dimension", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Dimension" + } + } + }, + { + "is_read_only" : false, + "name" : "facingLocation", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + } + }, + { + "is_read_only" : false, + "name" : "keepVelocity", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "boolean" + } + } + }, + { + "is_read_only" : false, + "name" : "rotation", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector2" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "TeleportOptions" + } + }, + { + "base_types" : [], + "name" : "TitleDisplayOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "fadeInDuration", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : false, + "name" : "fadeOutDuration", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : false, + "name" : "stayDuration", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : false, + "name" : "subtitle", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "variant", + "variant_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RawMessage" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + }, + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "RawMessage" + }, + { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + } + ] + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "TitleDisplayOptions" + } + }, + { + "base_types" : [], + "name" : "Vector2", + "properties" : [ + { + "is_read_only" : false, + "name" : "x", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : false, + "name" : "y", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector2" + } + }, + { + "base_types" : [], + "name" : "Vector3", + "properties" : [ + { + "is_read_only" : false, + "name" : "x", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : false, + "name" : "y", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + }, + { + "is_read_only" : false, + "name" : "z", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Vector3" + } + }, + { + "base_types" : [], + "name" : "WorldSoundOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "pitch", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + }, + { + "is_read_only" : false, + "name" : "volume", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "WorldSoundOptions" + } + } + ], + "minecraft_version" : "1.21.0-beta.0", + "module_type" : "script", + "name" : "@minecraft/server", + "objects" : [ + { + "is_read_only" : true, + "is_static" : true, + "name" : "system", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "System" + } + }, + { + "is_read_only" : true, + "is_static" : true, + "name" : "world", + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "World" + } + } + ], + "type_aliases" : [], + "uuid" : "b26a4d4c-afdf-4690-88f8-931846312678", + "version" : "1.11.0" +} diff --git a/metadata/script_modules/@minecraft/server_1.11.0-beta.json b/metadata/script_modules/@minecraft/server_1.12.0-beta.json similarity index 96% rename from metadata/script_modules/@minecraft/server_1.11.0-beta.json rename to metadata/script_modules/@minecraft/server_1.12.0-beta.json index 47b546378..f759e11d3 100644 --- a/metadata/script_modules/@minecraft/server_1.11.0-beta.json +++ b/metadata/script_modules/@minecraft/server_1.12.0-beta.json @@ -1737,7 +1737,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -1897,18 +1897,6 @@ "base_types": [], "constants": [], "functions": [ - { - "arguments": [], - "is_constructor": false, - "is_static": false, - "name": "clone", - "privilege": "read_only", - "return_type": { - "is_bind_type": true, - "is_errorable": false, - "name": "BlockPermutation" - } - }, { "arguments": [], "is_constructor": false, @@ -3201,7 +3189,7 @@ "arguments": [ { "details": null, - "name": "pos", + "name": "location", "type": { "is_bind_type": true, "is_errorable": false, @@ -3975,7 +3963,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -4134,7 +4122,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -4528,6 +4516,34 @@ } } }, + { + "is_read_only": true, + "name": "items", + "type": { + "element_type": { + "is_bind_type": true, + "is_errorable": false, + "name": "CompoundBlockVolumeItem" + }, + "is_bind_type": false, + "is_errorable": false, + "name": "array" + } + }, + { + "is_read_only": true, + "name": "itemsAbsolute", + "type": { + "element_type": { + "is_bind_type": true, + "is_errorable": false, + "name": "CompoundBlockVolumeItem" + }, + "is_bind_type": false, + "is_errorable": false, + "name": "array" + } + }, { "is_read_only": true, "name": "volumeCount", @@ -5934,20 +5950,23 @@ "arguments": [ { "details": null, - "name": "begin", - "type": { - "is_bind_type": true, - "is_errorable": false, - "name": "Vector3" - } - }, - { - "details": null, - "name": "end", + "name": "volume", "type": { - "is_bind_type": true, + "is_bind_type": false, "is_errorable": false, - "name": "Vector3" + "name": "variant", + "variant_types": [ + { + "is_bind_type": true, + "is_errorable": false, + "name": "BlockVolumeBase" + }, + { + "is_bind_type": true, + "is_errorable": false, + "name": "CompoundBlockVolume" + } + ] } }, { @@ -5998,13 +6017,31 @@ "name": "fillBlocks", "privilege": "none", "return_type": { - "is_bind_type": false, + "error_types": [ + { + "from_module": { + "name": "@minecraft/common", + "uuid": "77ec12b4-1b2b-4c98-8d34-d1cd63f849d5", + "version": "1.1.0" + }, + "is_bind_type": true, + "is_errorable": false, + "name": "EngineError" + }, + { + "is_bind_type": false, + "is_errorable": false, + "name": "Error" + }, + { + "is_bind_type": true, + "is_errorable": false, + "name": "UnloadedChunksError" + } + ], + "is_bind_type": true, "is_errorable": true, - "name": "uint32", - "valid_range": { - "max": 2147483647, - "min": -2147483648 - } + "name": "ListBlockVolume" } }, { @@ -6138,15 +6175,6 @@ "name": "Vector3" } }, - { - "details": null, - "name": "direction", - "type": { - "is_bind_type": true, - "is_errorable": false, - "name": "Vector3" - } - }, { "details": { "default_value": "null" @@ -6166,8 +6194,8 @@ ], "is_constructor": false, "is_static": false, - "name": "getBlockFromRay", - "privilege": "read_only", + "name": "getBlockAbove", + "privilege": "none", "return_type": { "is_bind_type": false, "is_errorable": true, @@ -6175,7 +6203,7 @@ "optional_type": { "is_bind_type": true, "is_errorable": false, - "name": "BlockRaycastHit" + "name": "Block" } } }, @@ -6183,58 +6211,13 @@ "arguments": [ { "details": null, - "name": "volume", - "type": { - "is_bind_type": true, - "is_errorable": false, - "name": "BlockVolumeBase" - } - }, - { - "details": null, - "name": "filter", + "name": "location", "type": { "is_bind_type": true, "is_errorable": false, - "name": "BlockFilter" + "name": "Vector3" } }, - { - "details": { - "default_value": false - }, - "name": "allowUnloadedChunks", - "type": { - "is_bind_type": false, - "is_errorable": false, - "name": "boolean" - } - } - ], - "is_constructor": false, - "is_static": false, - "name": "getBlocks", - "privilege": "read_only", - "return_type": { - "error_types": [ - { - "is_bind_type": false, - "is_errorable": false, - "name": "Error" - }, - { - "is_bind_type": true, - "is_errorable": false, - "name": "UnloadedChunksError" - } - ], - "is_bind_type": true, - "is_errorable": true, - "name": "ListBlockVolume" - } - }, - { - "arguments": [ { "details": { "default_value": "null" @@ -6247,24 +6230,24 @@ "optional_type": { "is_bind_type": true, "is_errorable": false, - "name": "EntityQueryOptions" + "name": "BlockRaycastOptions" } } } ], "is_constructor": false, "is_static": false, - "name": "getEntities", - "privilege": "read_only", + "name": "getBlockBelow", + "privilege": "none", "return_type": { - "element_type": { - "is_bind_type": true, - "is_errorable": false, - "name": "Entity" - }, "is_bind_type": false, "is_errorable": true, - "name": "array" + "name": "optional", + "optional_type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Block" + } } }, { @@ -6277,73 +6260,213 @@ "is_errorable": false, "name": "Vector3" } + }, + { + "details": null, + "name": "direction", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Vector3" + } + }, + { + "details": { + "default_value": "null" + }, + "name": "options", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "optional", + "optional_type": { + "is_bind_type": true, + "is_errorable": false, + "name": "BlockRaycastOptions" + } + } } ], "is_constructor": false, "is_static": false, - "name": "getEntitiesAtBlockLocation", + "name": "getBlockFromRay", "privilege": "read_only", "return_type": { - "element_type": { + "is_bind_type": false, + "is_errorable": true, + "name": "optional", + "optional_type": { "is_bind_type": true, "is_errorable": false, - "name": "Entity" - }, - "is_bind_type": false, - "is_errorable": false, - "name": "array" + "name": "BlockRaycastHit" + } } }, { "arguments": [ { "details": null, - "name": "location", + "name": "volume", "type": { "is_bind_type": true, "is_errorable": false, - "name": "Vector3" + "name": "BlockVolumeBase" } }, { "details": null, - "name": "direction", + "name": "filter", "type": { "is_bind_type": true, "is_errorable": false, - "name": "Vector3" + "name": "BlockFilter" } }, { "details": { - "default_value": "null" + "default_value": false }, - "name": "options", + "name": "allowUnloadedChunks", "type": { "is_bind_type": false, "is_errorable": false, - "name": "optional", - "optional_type": { - "is_bind_type": true, - "is_errorable": false, - "name": "EntityRaycastOptions" - } + "name": "boolean" } } ], "is_constructor": false, "is_static": false, - "name": "getEntitiesFromRay", + "name": "getBlocks", "privilege": "read_only", "return_type": { - "element_type": { - "is_bind_type": true, - "is_errorable": false, - "name": "EntityRaycastHit" - }, - "is_bind_type": false, - "is_errorable": false, - "name": "array" + "error_types": [ + { + "is_bind_type": false, + "is_errorable": false, + "name": "Error" + }, + { + "is_bind_type": true, + "is_errorable": false, + "name": "UnloadedChunksError" + } + ], + "is_bind_type": true, + "is_errorable": true, + "name": "ListBlockVolume" + } + }, + { + "arguments": [ + { + "details": { + "default_value": "null" + }, + "name": "options", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "optional", + "optional_type": { + "is_bind_type": true, + "is_errorable": false, + "name": "EntityQueryOptions" + } + } + } + ], + "is_constructor": false, + "is_static": false, + "name": "getEntities", + "privilege": "read_only", + "return_type": { + "element_type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Entity" + }, + "is_bind_type": false, + "is_errorable": true, + "name": "array" + } + }, + { + "arguments": [ + { + "details": null, + "name": "location", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Vector3" + } + } + ], + "is_constructor": false, + "is_static": false, + "name": "getEntitiesAtBlockLocation", + "privilege": "read_only", + "return_type": { + "element_type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Entity" + }, + "is_bind_type": false, + "is_errorable": false, + "name": "array" + } + }, + { + "arguments": [ + { + "details": null, + "name": "location", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Vector3" + } + }, + { + "details": null, + "name": "direction", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Vector3" + } + }, + { + "details": { + "default_value": "null" + }, + "name": "options", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "optional", + "optional_type": { + "is_bind_type": true, + "is_errorable": false, + "name": "EntityRaycastOptions" + } + } + } + ], + "is_constructor": false, + "is_static": false, + "name": "getEntitiesFromRay", + "privilege": "read_only", + "return_type": { + "element_type": { + "is_bind_type": true, + "is_errorable": false, + "name": "EntityRaycastHit" + }, + "is_bind_type": false, + "is_errorable": true, + "name": "array" } }, { @@ -6380,6 +6503,53 @@ "name": "array" } }, + { + "arguments": [ + { + "details": null, + "name": "locationXZ", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "VectorXZ" + } + }, + { + "details": { + "default_value": "null" + }, + "name": "minHeight", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "optional", + "optional_type": { + "is_bind_type": false, + "is_errorable": false, + "name": "float", + "valid_range": { + "max": 2147483647, + "min": -2147483648 + } + } + } + } + ], + "is_constructor": false, + "is_static": false, + "name": "getTopmostBlock", + "privilege": "none", + "return_type": { + "is_bind_type": false, + "is_errorable": true, + "name": "optional", + "optional_type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Block" + } + } + }, { "arguments": [], "is_constructor": false, @@ -7272,7 +7442,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -7454,6 +7624,23 @@ "name": "EnchantmentType" } } + }, + { + "arguments": [], + "is_constructor": false, + "is_static": true, + "name": "getAll", + "privilege": "read_only", + "return_type": { + "element_type": { + "is_bind_type": true, + "is_errorable": false, + "name": "EnchantmentType" + }, + "is_bind_type": false, + "is_errorable": false, + "name": "array" + } } ], "name": "EnchantmentTypes", @@ -11602,7 +11789,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -13038,7 +13225,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -13513,7 +13700,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -13606,16 +13793,38 @@ ], "functions": [ { - "arguments": [], + "arguments": [ + { + "details": null, + "name": "player", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Player" + } + } + ], "is_constructor": false, "is_static": false, - "name": "getTameItems", - "privilege": "read_only", + "name": "tame", + "privilege": "none", "return_type": { + "is_bind_type": false, + "is_errorable": true, + "name": "boolean" + } + } + ], + "name": "EntityTameableComponent", + "properties": [ + { + "is_read_only": true, + "name": "getTameItems", + "type": { "element_type": { - "is_bind_type": false, + "is_bind_type": true, "is_errorable": false, - "name": "string" + "name": "ItemStack" }, "is_bind_type": false, "is_errorable": true, @@ -13623,20 +13832,14 @@ } }, { - "arguments": [], - "is_constructor": false, - "is_static": false, - "name": "tame", - "privilege": "none", - "return_type": { + "is_read_only": true, + "name": "isTamed", + "type": { "is_bind_type": false, "is_errorable": true, "name": "boolean" } - } - ], - "name": "EntityTameableComponent", - "properties": [ + }, { "is_read_only": true, "name": "probability", @@ -13649,6 +13852,34 @@ "min": -2147483648 } } + }, + { + "is_read_only": true, + "name": "tamedToPlayer", + "type": { + "is_bind_type": false, + "is_errorable": true, + "name": "optional", + "optional_type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Player" + } + } + }, + { + "is_read_only": true, + "name": "tamedToPlayerId", + "type": { + "is_bind_type": false, + "is_errorable": true, + "name": "optional", + "optional_type": { + "is_bind_type": false, + "is_errorable": false, + "name": "string" + } + } } ], "type": { @@ -13700,10 +13931,88 @@ "is_errorable": true, "name": "undefined" } + }, + { + "arguments": [ + { + "details": null, + "name": "showParticles", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "boolean" + } + }, + { + "details": null, + "name": "player", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Player" + } + } + ], + "is_constructor": false, + "is_static": false, + "name": "tameToPlayer", + "privilege": "none", + "return_type": { + "is_bind_type": false, + "is_errorable": true, + "name": "boolean" + } } ], "name": "EntityTameMountComponent", - "properties": [], + "properties": [ + { + "is_read_only": true, + "name": "isTamed", + "type": { + "is_bind_type": false, + "is_errorable": true, + "name": "boolean" + } + }, + { + "is_read_only": true, + "name": "isTamedToPlayer", + "type": { + "is_bind_type": false, + "is_errorable": true, + "name": "boolean" + } + }, + { + "is_read_only": true, + "name": "tamedToPlayer", + "type": { + "is_bind_type": false, + "is_errorable": true, + "name": "optional", + "optional_type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Player" + } + } + }, + { + "is_read_only": true, + "name": "tamedToPlayerId", + "type": { + "is_bind_type": false, + "is_errorable": true, + "name": "optional", + "optional_type": { + "is_bind_type": false, + "is_errorable": false, + "name": "string" + } + } + } + ], "type": { "is_bind_type": true, "is_errorable": false, @@ -14125,7 +14434,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -14281,7 +14590,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -14596,7 +14905,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -14931,6 +15240,16 @@ "name": "boolean" } }, + { + "is_read_only": false, + "name": "showDaysPlayed", + "privilege": "none", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "boolean" + } + }, { "is_read_only": false, "name": "showDeathMessages", @@ -14984,6 +15303,16 @@ "is_errorable": false, "name": "boolean" } + }, + { + "is_read_only": false, + "name": "tntExplosionDropDecay", + "privilege": "none", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "boolean" + } } ], "type": { @@ -15078,7 +15407,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -15177,7 +15506,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -15276,7 +15605,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -15375,7 +15704,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -15474,7 +15803,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -15617,7 +15946,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -15630,6 +15959,37 @@ "name": "ItemCompleteUseAfterEventSignal" } }, + { + "base_types": [], + "constants": [], + "functions": [], + "name": "ItemCompleteUseEvent", + "properties": [ + { + "is_read_only": true, + "name": "itemStack", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "ItemStack" + } + }, + { + "is_read_only": true, + "name": "source", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Player" + } + } + ], + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "ItemCompleteUseEvent" + } + }, { "base_types": [ { @@ -15648,6 +16008,223 @@ "name": "ItemComponent" } }, + { + "base_types": [], + "constants": [], + "functions": [], + "name": "ItemComponentBeforeDurabilityDamageEvent", + "properties": [ + { + "is_read_only": true, + "name": "attackingEntity", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Entity" + } + }, + { + "is_read_only": false, + "name": "durabilityDamage", + "privilege": "read_only", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "int32", + "valid_range": { + "max": 2147483647, + "min": -2147483648 + } + } + }, + { + "is_read_only": true, + "name": "hitEntity", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Entity" + } + }, + { + "is_read_only": false, + "name": "itemStack", + "privilege": "read_only", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "optional", + "optional_type": { + "is_bind_type": true, + "is_errorable": false, + "name": "ItemStack" + } + } + } + ], + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "ItemComponentBeforeDurabilityDamageEvent" + } + }, + { + "base_types": [ + { + "is_bind_type": true, + "is_errorable": false, + "name": "ItemCompleteUseEvent" + } + ], + "constants": [], + "functions": [], + "name": "ItemComponentCompleteUseEvent", + "properties": [], + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "ItemComponentCompleteUseEvent" + } + }, + { + "base_types": [], + "constants": [], + "functions": [], + "name": "ItemComponentConsumeEvent", + "properties": [ + { + "is_read_only": true, + "name": "itemStack", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "ItemStack" + } + }, + { + "is_read_only": true, + "name": "source", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Entity" + } + } + ], + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "ItemComponentConsumeEvent" + } + }, + { + "base_types": [], + "constants": [], + "functions": [], + "name": "ItemComponentHitEntityEvent", + "properties": [ + { + "is_read_only": true, + "name": "attackingEntity", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Entity" + } + }, + { + "is_read_only": true, + "name": "hadEffect", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "boolean" + } + }, + { + "is_read_only": true, + "name": "hitEntity", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Entity" + } + }, + { + "is_read_only": true, + "name": "itemStack", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "optional", + "optional_type": { + "is_bind_type": true, + "is_errorable": false, + "name": "ItemStack" + } + } + } + ], + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "ItemComponentHitEntityEvent" + } + }, + { + "base_types": [], + "constants": [], + "functions": [], + "name": "ItemComponentMineBlockEvent", + "properties": [ + { + "is_read_only": true, + "name": "block", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Block" + } + }, + { + "is_read_only": true, + "name": "itemStack", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "optional", + "optional_type": { + "is_bind_type": true, + "is_errorable": false, + "name": "ItemStack" + } + } + }, + { + "is_read_only": true, + "name": "minedBlockPermutation", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "BlockPermutation" + } + }, + { + "is_read_only": true, + "name": "source", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Entity" + } + } + ], + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "ItemComponentMineBlockEvent" + } + }, { "base_types": [], "constants": [], @@ -15755,6 +16332,43 @@ "name": "ItemComponentUseEvent" } }, + { + "base_types": [ + { + "is_bind_type": true, + "is_errorable": false, + "name": "ItemUseOnEvent" + } + ], + "constants": [], + "functions": [], + "name": "ItemComponentUseOnEvent", + "properties": [ + { + "is_read_only": true, + "name": "source", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Entity" + } + }, + { + "is_read_only": true, + "name": "usedOnBlockPermutation", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "BlockPermutation" + } + } + ], + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "ItemComponentUseOnEvent" + } + }, { "base_types": [ { @@ -16534,7 +17148,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -17366,7 +17980,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -17519,7 +18133,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -17667,7 +18281,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -17811,7 +18425,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -18021,7 +18635,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -18149,7 +18763,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -18306,7 +18920,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -18434,7 +19048,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -18447,6 +19061,55 @@ "name": "ItemUseOnBeforeEventSignal" } }, + { + "base_types": [], + "constants": [], + "functions": [], + "name": "ItemUseOnEvent", + "properties": [ + { + "is_read_only": true, + "name": "block", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Block" + } + }, + { + "is_read_only": true, + "name": "blockFace", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Direction" + } + }, + { + "is_read_only": true, + "name": "faceLocation", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Vector3" + } + }, + { + "is_read_only": true, + "name": "itemStack", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "ItemStack" + } + } + ], + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "ItemUseOnEvent" + } + }, { "base_types": [ { @@ -19012,7 +19675,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -19637,6 +20300,15 @@ "name": "Camera" } }, + { + "is_read_only": true, + "name": "inputPermissions", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "PlayerInputPermissions" + } + }, { "is_read_only": true, "name": "isEmoting", @@ -19706,7 +20378,7 @@ }, { "is_read_only": false, - "name": "selectedSlot", + "name": "selectedSlotIndex", "privilege": "none", "type": { "is_bind_type": false, @@ -19918,7 +20590,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -20086,7 +20758,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -20243,7 +20915,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -20382,7 +21054,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -20532,7 +21204,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -20549,47 +21221,24 @@ "base_types": [], "constants": [], "functions": [], - "name": "PlayerInteractWithBlockAfterEvent", + "name": "PlayerInputPermissionCategoryChangeAfterEvent", "properties": [ { "is_read_only": true, - "name": "block", - "type": { - "is_bind_type": true, - "is_errorable": false, - "name": "Block" - } - }, - { - "is_read_only": true, - "name": "blockFace", + "name": "category", "type": { "is_bind_type": true, "is_errorable": false, - "name": "Direction" + "name": "InputPermissionCategory" } }, { "is_read_only": true, - "name": "faceLocation", - "type": { - "is_bind_type": true, - "is_errorable": false, - "name": "Vector3" - } - }, - { - "is_read_only": true, - "name": "itemStack", + "name": "enabled", "type": { "is_bind_type": false, "is_errorable": false, - "name": "optional", - "optional_type": { - "is_bind_type": true, - "is_errorable": false, - "name": "ItemStack" - } + "name": "boolean" } }, { @@ -20605,7 +21254,7 @@ "type": { "is_bind_type": true, "is_errorable": false, - "name": "PlayerInteractWithBlockAfterEvent" + "name": "PlayerInputPermissionCategoryChangeAfterEvent" } }, { @@ -20623,7 +21272,7 @@ { "is_bind_type": true, "is_errorable": false, - "name": "PlayerInteractWithBlockAfterEvent" + "name": "PlayerInputPermissionCategoryChangeAfterEvent" } ], "return_type": { @@ -20648,7 +21297,7 @@ { "is_bind_type": true, "is_errorable": false, - "name": "PlayerInteractWithBlockAfterEvent" + "name": "PlayerInputPermissionCategoryChangeAfterEvent" } ], "return_type": { @@ -20673,7 +21322,7 @@ { "is_bind_type": true, "is_errorable": false, - "name": "PlayerInteractWithBlockAfterEvent" + "name": "PlayerInputPermissionCategoryChangeAfterEvent" } ], "return_type": { @@ -20694,24 +21343,57 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } ], - "name": "PlayerInteractWithBlockAfterEventSignal", + "name": "PlayerInputPermissionCategoryChangeAfterEventSignal", "properties": [], "type": { "is_bind_type": true, "is_errorable": false, - "name": "PlayerInteractWithBlockAfterEventSignal" + "name": "PlayerInputPermissionCategoryChangeAfterEventSignal" } }, { "base_types": [], "constants": [], "functions": [], - "name": "PlayerInteractWithBlockBeforeEvent", + "name": "PlayerInputPermissions", + "properties": [ + { + "is_read_only": false, + "name": "cameraEnabled", + "privilege": "read_only", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "boolean" + } + }, + { + "is_read_only": false, + "name": "movementEnabled", + "privilege": "read_only", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "boolean" + } + } + ], + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "PlayerInputPermissions" + } + }, + { + "base_types": [], + "constants": [], + "functions": [], + "name": "PlayerInteractWithBlockAfterEvent", "properties": [ { "is_read_only": true, @@ -20731,16 +21413,6 @@ "name": "Direction" } }, - { - "is_read_only": false, - "name": "cancel", - "privilege": "read_only", - "type": { - "is_bind_type": false, - "is_errorable": false, - "name": "boolean" - } - }, { "is_read_only": true, "name": "faceLocation", @@ -20777,7 +21449,7 @@ "type": { "is_bind_type": true, "is_errorable": false, - "name": "PlayerInteractWithBlockBeforeEvent" + "name": "PlayerInteractWithBlockAfterEvent" } }, { @@ -20795,7 +21467,7 @@ { "is_bind_type": true, "is_errorable": false, - "name": "PlayerInteractWithBlockBeforeEvent" + "name": "PlayerInteractWithBlockAfterEvent" } ], "return_type": { @@ -20820,7 +21492,7 @@ { "is_bind_type": true, "is_errorable": false, - "name": "PlayerInteractWithBlockBeforeEvent" + "name": "PlayerInteractWithBlockAfterEvent" } ], "return_type": { @@ -20845,7 +21517,7 @@ { "is_bind_type": true, "is_errorable": false, - "name": "PlayerInteractWithBlockBeforeEvent" + "name": "PlayerInteractWithBlockAfterEvent" } ], "return_type": { @@ -20866,25 +21538,62 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } ], - "name": "PlayerInteractWithBlockBeforeEventSignal", + "name": "PlayerInteractWithBlockAfterEventSignal", "properties": [], "type": { "is_bind_type": true, "is_errorable": false, - "name": "PlayerInteractWithBlockBeforeEventSignal" + "name": "PlayerInteractWithBlockAfterEventSignal" } }, { "base_types": [], "constants": [], "functions": [], - "name": "PlayerInteractWithEntityAfterEvent", + "name": "PlayerInteractWithBlockBeforeEvent", "properties": [ + { + "is_read_only": true, + "name": "block", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Block" + } + }, + { + "is_read_only": true, + "name": "blockFace", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Direction" + } + }, + { + "is_read_only": false, + "name": "cancel", + "privilege": "read_only", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "boolean" + } + }, + { + "is_read_only": true, + "name": "faceLocation", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Vector3" + } + }, { "is_read_only": true, "name": "itemStack", @@ -20907,21 +21616,12 @@ "is_errorable": false, "name": "Player" } - }, - { - "is_read_only": true, - "name": "target", - "type": { - "is_bind_type": true, - "is_errorable": false, - "name": "Entity" - } } ], "type": { "is_bind_type": true, "is_errorable": false, - "name": "PlayerInteractWithEntityAfterEvent" + "name": "PlayerInteractWithBlockBeforeEvent" } }, { @@ -20939,7 +21639,151 @@ { "is_bind_type": true, "is_errorable": false, - "name": "PlayerInteractWithEntityAfterEvent" + "name": "PlayerInteractWithBlockBeforeEvent" + } + ], + "return_type": { + "is_bind_type": false, + "is_errorable": true, + "name": "undefined" + } + }, + "is_bind_type": false, + "is_errorable": false, + "name": "closure" + } + } + ], + "is_constructor": false, + "is_static": false, + "name": "subscribe", + "privilege": "none", + "return_type": { + "closure_type": { + "argument_types": [ + { + "is_bind_type": true, + "is_errorable": false, + "name": "PlayerInteractWithBlockBeforeEvent" + } + ], + "return_type": { + "is_bind_type": false, + "is_errorable": true, + "name": "undefined" + } + }, + "is_bind_type": false, + "is_errorable": false, + "name": "closure" + } + }, + { + "arguments": [ + { + "details": null, + "name": "callback", + "type": { + "closure_type": { + "argument_types": [ + { + "is_bind_type": true, + "is_errorable": false, + "name": "PlayerInteractWithBlockBeforeEvent" + } + ], + "return_type": { + "is_bind_type": false, + "is_errorable": true, + "name": "undefined" + } + }, + "is_bind_type": false, + "is_errorable": false, + "name": "closure" + } + } + ], + "is_constructor": false, + "is_static": false, + "name": "unsubscribe", + "privilege": "none", + "return_type": { + "is_bind_type": false, + "is_errorable": false, + "name": "undefined" + } + } + ], + "name": "PlayerInteractWithBlockBeforeEventSignal", + "properties": [], + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "PlayerInteractWithBlockBeforeEventSignal" + } + }, + { + "base_types": [], + "constants": [], + "functions": [], + "name": "PlayerInteractWithEntityAfterEvent", + "properties": [ + { + "is_read_only": true, + "name": "itemStack", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "optional", + "optional_type": { + "is_bind_type": true, + "is_errorable": false, + "name": "ItemStack" + } + } + }, + { + "is_read_only": true, + "name": "player", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Player" + } + }, + { + "is_read_only": true, + "name": "target", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Entity" + } + } + ], + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "PlayerInteractWithEntityAfterEvent" + } + }, + { + "base_types": [], + "constants": [], + "functions": [ + { + "arguments": [ + { + "details": null, + "name": "callback", + "type": { + "closure_type": { + "argument_types": [ + { + "is_bind_type": true, + "is_errorable": false, + "name": "PlayerInteractWithEntityAfterEvent" } ], "return_type": { @@ -21010,7 +21854,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -21164,7 +22008,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -21405,7 +22249,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -21548,7 +22392,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -21728,7 +22572,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -21923,7 +22767,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -22076,7 +22920,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -22251,7 +23095,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -22426,7 +23270,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -23796,7 +24640,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -24013,17 +24857,6 @@ "name": "BlockPermutation" } } - }, - { - "details": { - "default_value": false - }, - "name": "waterlogged", - "type": { - "is_bind_type": false, - "is_errorable": false, - "name": "boolean" - } } ], "is_constructor": false, @@ -24178,11 +25011,20 @@ }, { "details": null, - "name": "blockVolume", + "name": "from", "type": { "is_bind_type": true, "is_errorable": false, - "name": "BlockVolume" + "name": "Vector3" + } + }, + { + "details": null, + "name": "to", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Vector3" } }, { @@ -24301,7 +25143,7 @@ "arguments": [], "is_constructor": false, "is_static": false, - "name": "getIds", + "name": "getWorldStructureIds", "privilege": "none", "return_type": { "element_type": { @@ -24664,6 +25506,52 @@ "min": -2147483648 } } + }, + { + "arguments": [ + { + "details": { + "max_value": 4294967295, + "min_value": 1 + }, + "name": "ticks", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "uint32", + "valid_range": { + "max": 2147483647, + "min": -2147483648 + } + } + } + ], + "is_constructor": false, + "is_static": false, + "name": "waitTicks", + "privilege": "read_only", + "return_type": { + "error_types": [ + { + "from_module": { + "name": "@minecraft/common", + "uuid": "77ec12b4-1b2b-4c98-8d34-d1cd63f849d5", + "version": "1.1.0" + }, + "is_bind_type": true, + "is_errorable": false, + "name": "EngineError" + } + ], + "is_bind_type": false, + "is_errorable": true, + "name": "promise", + "promise_type": { + "is_bind_type": false, + "is_errorable": false, + "name": "undefined" + } + } } ], "name": "System", @@ -24899,7 +25787,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -25085,7 +25973,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -25216,7 +26104,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -25355,7 +26243,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -25510,7 +26398,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -26524,6 +27412,15 @@ "name": "PlayerGameModeChangeAfterEventSignal" } }, + { + "is_read_only": true, + "name": "playerInputPermissionCategoryChange", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "PlayerInputPermissionCategoryChangeAfterEventSignal" + } + }, { "is_read_only": true, "name": "playerInteractWithBlock", @@ -26894,7 +27791,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -27024,7 +27921,7 @@ "privilege": "none", "return_type": { "is_bind_type": false, - "is_errorable": true, + "is_errorable": false, "name": "undefined" } } @@ -29976,6 +30873,17 @@ }, "value": "showCoordinates" }, + { + "is_read_only": true, + "is_static": true, + "name": "ShowDaysPlayed", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "string" + }, + "value": "showDaysPlayed" + }, { "is_read_only": true, "is_static": true, @@ -30030,6 +30938,17 @@ "name": "string" }, "value": "tntExplodes" + }, + { + "is_read_only": true, + "is_static": true, + "name": "TntExplosionDropDecay", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "string" + }, + "value": "tntExplosionDropDecay" } ], "name": "GameRule" @@ -30209,6 +31128,33 @@ ], "name": "HudVisibility" }, + { + "constants": [ + { + "is_read_only": true, + "is_static": true, + "name": "Camera", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "InputPermissionCategory" + }, + "value": 1 + }, + { + "is_read_only": true, + "is_static": true, + "name": "Movement", + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "InputPermissionCategory" + }, + "value": 2 + } + ], + "name": "InputPermissionCategory" + }, { "constants": [ { @@ -31484,7 +32430,7 @@ "properties": [ { "is_read_only": false, - "name": "matchingBlock", + "name": "blockFilter", "type": { "is_bind_type": false, "is_errorable": false, @@ -31492,7 +32438,21 @@ "optional_type": { "is_bind_type": true, "is_errorable": false, - "name": "BlockPermutation" + "name": "BlockFilter" + } + } + }, + { + "is_read_only": false, + "name": "ignoreChunkBoundErrors", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "optional", + "optional_type": { + "is_bind_type": false, + "is_errorable": false, + "name": "boolean" } } } @@ -31705,23 +32665,15 @@ } }, { - "base_types": [], + "base_types": [ + { + "is_bind_type": true, + "is_errorable": false, + "name": "BlockFilter" + } + ], "name": "BlockRaycastOptions", "properties": [ - { - "is_read_only": false, - "name": "blockFilter", - "type": { - "is_bind_type": false, - "is_errorable": false, - "name": "optional", - "optional_type": { - "is_bind_type": true, - "is_errorable": false, - "name": "BlockFilter" - } - } - }, { "is_read_only": false, "name": "includeLiquidBlocks", @@ -32605,51 +33557,8 @@ }, { "base_types": [], - "name": "EntityHitInformation", - "properties": [ - { - "is_read_only": false, - "name": "entity", - "type": { - "is_bind_type": false, - "is_errorable": false, - "name": "optional", - "optional_type": { - "is_bind_type": true, - "is_errorable": false, - "name": "Entity" - } - } - } - ], - "type": { - "is_bind_type": true, - "is_errorable": false, - "name": "EntityHitInformation" - } - }, - { - "base_types": [], - "name": "EntityQueryOptions", + "name": "EntityFilter", "properties": [ - { - "is_read_only": false, - "name": "closest", - "type": { - "is_bind_type": false, - "is_errorable": false, - "name": "optional", - "optional_type": { - "is_bind_type": false, - "is_errorable": false, - "name": "int32", - "valid_range": { - "max": 2147483647, - "min": -2147483648 - } - } - } - }, { "is_read_only": false, "name": "excludeFamilies", @@ -32766,53 +33675,57 @@ }, { "is_read_only": false, - "name": "farthest", + "name": "gameMode", "type": { "is_bind_type": false, "is_errorable": false, "name": "optional", "optional_type": { - "is_bind_type": false, + "is_bind_type": true, "is_errorable": false, - "name": "int32", - "valid_range": { - "max": 2147483647, - "min": -2147483648 - } + "name": "GameMode" } } }, { "is_read_only": false, - "name": "gameMode", + "name": "maxHorizontalRotation", "type": { "is_bind_type": false, "is_errorable": false, "name": "optional", "optional_type": { - "is_bind_type": true, + "is_bind_type": false, "is_errorable": false, - "name": "GameMode" + "name": "float", + "valid_range": { + "max": 2147483647, + "min": -2147483648 + } } } }, { "is_read_only": false, - "name": "location", + "name": "maxLevel", "type": { "is_bind_type": false, "is_errorable": false, "name": "optional", "optional_type": { - "is_bind_type": true, + "is_bind_type": false, "is_errorable": false, - "name": "Vector3" + "name": "int32", + "valid_range": { + "max": 2147483647, + "min": -2147483648 + } } } }, { "is_read_only": false, - "name": "maxDistance", + "name": "maxVerticalRotation", "type": { "is_bind_type": false, "is_errorable": false, @@ -32830,7 +33743,7 @@ }, { "is_read_only": false, - "name": "maxHorizontalRotation", + "name": "minHorizontalRotation", "type": { "is_bind_type": false, "is_errorable": false, @@ -32848,7 +33761,7 @@ }, { "is_read_only": false, - "name": "maxLevel", + "name": "minLevel", "type": { "is_bind_type": false, "is_errorable": false, @@ -32866,7 +33779,7 @@ }, { "is_read_only": false, - "name": "maxVerticalRotation", + "name": "minVerticalRotation", "type": { "is_bind_type": false, "is_errorable": false, @@ -32884,7 +33797,7 @@ }, { "is_read_only": false, - "name": "minDistance", + "name": "name", "type": { "is_bind_type": false, "is_errorable": false, @@ -32892,71 +33805,70 @@ "optional_type": { "is_bind_type": false, "is_errorable": false, - "name": "float", - "valid_range": { - "max": 2147483647, - "min": -2147483648 - } + "name": "string" } } }, { "is_read_only": false, - "name": "minHorizontalRotation", + "name": "propertyOptions", "type": { "is_bind_type": false, "is_errorable": false, "name": "optional", "optional_type": { + "element_type": { + "is_bind_type": true, + "is_errorable": false, + "name": "EntityQueryPropertyOptions" + }, "is_bind_type": false, "is_errorable": false, - "name": "float", - "valid_range": { - "max": 2147483647, - "min": -2147483648 - } + "name": "array" } } }, { "is_read_only": false, - "name": "minLevel", + "name": "scoreOptions", "type": { "is_bind_type": false, "is_errorable": false, "name": "optional", "optional_type": { + "element_type": { + "is_bind_type": true, + "is_errorable": false, + "name": "EntityQueryScoreOptions" + }, "is_bind_type": false, "is_errorable": false, - "name": "int32", - "valid_range": { - "max": 2147483647, - "min": -2147483648 - } + "name": "array" } } }, { "is_read_only": false, - "name": "minVerticalRotation", + "name": "tags", "type": { "is_bind_type": false, "is_errorable": false, "name": "optional", "optional_type": { + "element_type": { + "is_bind_type": false, + "is_errorable": false, + "name": "string" + }, "is_bind_type": false, "is_errorable": false, - "name": "float", - "valid_range": { - "max": 2147483647, - "min": -2147483648 - } + "name": "array" } } }, { "is_read_only": false, - "name": "name", + "name": "type", "type": { "is_bind_type": false, "is_errorable": false, @@ -32967,67 +33879,120 @@ "name": "string" } } - }, + } + ], + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "EntityFilter" + } + }, + { + "base_types": [], + "name": "EntityHitInformation", + "properties": [ { "is_read_only": false, - "name": "propertyOptions", + "name": "entity", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "optional", + "optional_type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Entity" + } + } + } + ], + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "EntityHitInformation" + } + }, + { + "base_types": [ + { + "is_bind_type": true, + "is_errorable": false, + "name": "EntityFilter" + } + ], + "name": "EntityQueryOptions", + "properties": [ + { + "is_read_only": false, + "name": "closest", "type": { "is_bind_type": false, "is_errorable": false, "name": "optional", "optional_type": { - "element_type": { - "is_bind_type": true, - "is_errorable": false, - "name": "EntityQueryPropertyOptions" - }, "is_bind_type": false, "is_errorable": false, - "name": "array" + "name": "int32", + "valid_range": { + "max": 2147483647, + "min": -2147483648 + } } } }, { "is_read_only": false, - "name": "scoreOptions", + "name": "farthest", "type": { "is_bind_type": false, "is_errorable": false, "name": "optional", "optional_type": { - "element_type": { - "is_bind_type": true, - "is_errorable": false, - "name": "EntityQueryScoreOptions" - }, "is_bind_type": false, "is_errorable": false, - "name": "array" + "name": "int32", + "valid_range": { + "max": 2147483647, + "min": -2147483648 + } } } }, { "is_read_only": false, - "name": "tags", + "name": "location", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "optional", + "optional_type": { + "is_bind_type": true, + "is_errorable": false, + "name": "Vector3" + } + } + }, + { + "is_read_only": false, + "name": "maxDistance", "type": { "is_bind_type": false, "is_errorable": false, "name": "optional", "optional_type": { - "element_type": { - "is_bind_type": false, - "is_errorable": false, - "name": "string" - }, "is_bind_type": false, "is_errorable": false, - "name": "array" + "name": "float", + "valid_range": { + "max": 2147483647, + "min": -2147483648 + } } } }, { "is_read_only": false, - "name": "type", + "name": "minDistance", "type": { "is_bind_type": false, "is_errorable": false, @@ -33035,7 +34000,11 @@ "optional_type": { "is_bind_type": false, "is_errorable": false, - "name": "string" + "name": "float", + "valid_range": { + "max": 2147483647, + "min": -2147483648 + } } } }, @@ -33271,9 +34240,57 @@ } }, { - "base_types": [], + "base_types": [ + { + "is_bind_type": true, + "is_errorable": false, + "name": "EntityFilter" + } + ], "name": "EntityRaycastOptions", "properties": [ + { + "is_read_only": false, + "name": "ignoreBlockCollision", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "optional", + "optional_type": { + "is_bind_type": false, + "is_errorable": false, + "name": "boolean" + } + } + }, + { + "is_read_only": false, + "name": "includeLiquidBlocks", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "optional", + "optional_type": { + "is_bind_type": false, + "is_errorable": false, + "name": "boolean" + } + } + }, + { + "is_read_only": false, + "name": "includePassableBlocks", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "optional", + "optional_type": { + "is_bind_type": false, + "is_errorable": false, + "name": "boolean" + } + } + }, { "is_read_only": false, "name": "maxDistance", @@ -33459,6 +34476,146 @@ "base_types": [], "name": "ItemCustomComponent", "properties": [ + { + "is_read_only": false, + "name": "onBeforeDurabilityDamage", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "optional", + "optional_type": { + "closure_type": { + "argument_types": [ + { + "is_bind_type": true, + "is_errorable": false, + "name": "ItemComponentBeforeDurabilityDamageEvent" + } + ], + "return_type": { + "is_bind_type": false, + "is_errorable": true, + "name": "undefined" + } + }, + "is_bind_type": false, + "is_errorable": false, + "name": "closure" + } + } + }, + { + "is_read_only": false, + "name": "onCompleteUse", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "optional", + "optional_type": { + "closure_type": { + "argument_types": [ + { + "is_bind_type": true, + "is_errorable": false, + "name": "ItemComponentCompleteUseEvent" + } + ], + "return_type": { + "is_bind_type": false, + "is_errorable": true, + "name": "undefined" + } + }, + "is_bind_type": false, + "is_errorable": false, + "name": "closure" + } + } + }, + { + "is_read_only": false, + "name": "onConsume", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "optional", + "optional_type": { + "closure_type": { + "argument_types": [ + { + "is_bind_type": true, + "is_errorable": false, + "name": "ItemComponentConsumeEvent" + } + ], + "return_type": { + "is_bind_type": false, + "is_errorable": true, + "name": "undefined" + } + }, + "is_bind_type": false, + "is_errorable": false, + "name": "closure" + } + } + }, + { + "is_read_only": false, + "name": "onHitEntity", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "optional", + "optional_type": { + "closure_type": { + "argument_types": [ + { + "is_bind_type": true, + "is_errorable": false, + "name": "ItemComponentHitEntityEvent" + } + ], + "return_type": { + "is_bind_type": false, + "is_errorable": true, + "name": "undefined" + } + }, + "is_bind_type": false, + "is_errorable": false, + "name": "closure" + } + } + }, + { + "is_read_only": false, + "name": "onMineBlock", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "optional", + "optional_type": { + "closure_type": { + "argument_types": [ + { + "is_bind_type": true, + "is_errorable": false, + "name": "ItemComponentMineBlockEvent" + } + ], + "return_type": { + "is_bind_type": false, + "is_errorable": true, + "name": "undefined" + } + }, + "is_bind_type": false, + "is_errorable": false, + "name": "closure" + } + } + }, { "is_read_only": false, "name": "onUse", @@ -33486,6 +34643,34 @@ "name": "closure" } } + }, + { + "is_read_only": false, + "name": "onUseOn", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "optional", + "optional_type": { + "closure_type": { + "argument_types": [ + { + "is_bind_type": true, + "is_errorable": false, + "name": "ItemComponentUseOnEvent" + } + ], + "return_type": { + "is_bind_type": false, + "is_errorable": true, + "name": "undefined" + } + }, + "is_bind_type": false, + "is_errorable": false, + "name": "closure" + } + } } ], "type": { @@ -34661,6 +35846,43 @@ "name": "Vector3" } }, + { + "base_types": [], + "name": "VectorXZ", + "properties": [ + { + "is_read_only": false, + "name": "x", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "float", + "valid_range": { + "max": 2147483647, + "min": -2147483648 + } + } + }, + { + "is_read_only": false, + "name": "z", + "type": { + "is_bind_type": false, + "is_errorable": false, + "name": "float", + "valid_range": { + "max": 2147483647, + "min": -2147483648 + } + } + } + ], + "type": { + "is_bind_type": true, + "is_errorable": false, + "name": "VectorXZ" + } + }, { "base_types": [], "name": "WorldSoundOptions", @@ -34709,7 +35931,7 @@ } } ], - "minecraft_version": "1.20.80-beta.5", + "minecraft_version": "1.21.0-beta.0", "module_type": "script", "name": "@minecraft/server", "objects": [ @@ -35078,5 +36300,5 @@ } ], "uuid": "b26a4d4c-afdf-4690-88f8-931846312678", - "version": "1.11.0-beta" + "version": "1.12.0-beta" } \ No newline at end of file diff --git a/metadata/script_modules/@minecraft/server_1.2.0.json b/metadata/script_modules/@minecraft/server_1.2.0.json index 0b5882c10..d3a8b5a41 100644 --- a/metadata/script_modules/@minecraft/server_1.2.0.json +++ b/metadata/script_modules/@minecraft/server_1.2.0.json @@ -4254,26 +4254,8 @@ }, { "base_types" : [], - "name" : "EntityQueryOptions", + "name" : "EntityFilter", "properties" : [ - { - "is_read_only" : false, - "name" : "closest", - "type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "optional", - "optional_type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } - } - } - }, { "is_read_only" : false, "name" : "excludeFamilies", @@ -4390,53 +4372,57 @@ }, { "is_read_only" : false, - "name" : "farthest", + "name" : "gameMode", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : false, + "is_bind_type" : true, "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "GameMode" } } }, { "is_read_only" : false, - "name" : "gameMode", + "name" : "maxHorizontalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : true, + "is_bind_type" : false, "is_errorable" : false, - "name" : "GameMode" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "location", + "name" : "maxLevel", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : true, + "is_bind_type" : false, "is_errorable" : false, - "name" : "Vector3" + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "maxDistance", + "name" : "maxVerticalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -4454,7 +4440,7 @@ }, { "is_read_only" : false, - "name" : "maxHorizontalRotation", + "name" : "minHorizontalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -4472,7 +4458,7 @@ }, { "is_read_only" : false, - "name" : "maxLevel", + "name" : "minLevel", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -4490,7 +4476,7 @@ }, { "is_read_only" : false, - "name" : "maxVerticalRotation", + "name" : "minVerticalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -4508,7 +4494,7 @@ }, { "is_read_only" : false, - "name" : "minDistance", + "name" : "name", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -4516,53 +4502,51 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "float", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "string" } } }, { "is_read_only" : false, - "name" : "minHorizontalRotation", + "name" : "scoreOptions", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityQueryScoreOptions" + }, "is_bind_type" : false, "is_errorable" : false, - "name" : "float", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "array" } } }, { "is_read_only" : false, - "name" : "minLevel", + "name" : "tags", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, "is_bind_type" : false, "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "array" } } }, { "is_read_only" : false, - "name" : "minVerticalRotation", + "name" : "type", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -4570,7 +4554,38 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "float", + "name" : "string" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + ], + "name" : "EntityQueryOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "closest", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", "valid_range" : { "max" : 2147483647, "min" : -2147483648 @@ -4580,7 +4595,7 @@ }, { "is_read_only" : false, - "name" : "name", + "name" : "farthest", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -4588,51 +4603,49 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "string" + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "scoreOptions", + "name" : "location", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "element_type" : { - "is_bind_type" : true, - "is_errorable" : false, - "name" : "EntityQueryScoreOptions" - }, - "is_bind_type" : false, + "is_bind_type" : true, "is_errorable" : false, - "name" : "array" + "name" : "Vector3" } } }, { "is_read_only" : false, - "name" : "tags", + "name" : "maxDistance", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "element_type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "string" - }, "is_bind_type" : false, "is_errorable" : false, - "name" : "array" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "type", + "name" : "minDistance", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -4640,7 +4653,11 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "string" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } } @@ -5088,7 +5105,7 @@ } } ], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "script", "name" : "@minecraft/server", "objects" : [ diff --git a/metadata/script_modules/@minecraft/server_1.3.0.json b/metadata/script_modules/@minecraft/server_1.3.0.json index 2849fce9b..57dd11250 100644 --- a/metadata/script_modules/@minecraft/server_1.3.0.json +++ b/metadata/script_modules/@minecraft/server_1.3.0.json @@ -3738,7 +3738,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -3837,7 +3837,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -3936,7 +3936,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -4035,7 +4035,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -4134,7 +4134,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -5929,26 +5929,8 @@ }, { "base_types" : [], - "name" : "EntityQueryOptions", + "name" : "EntityFilter", "properties" : [ - { - "is_read_only" : false, - "name" : "closest", - "type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "optional", - "optional_type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } - } - } - }, { "is_read_only" : false, "name" : "excludeFamilies", @@ -6065,53 +6047,57 @@ }, { "is_read_only" : false, - "name" : "farthest", + "name" : "gameMode", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : false, + "is_bind_type" : true, "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "GameMode" } } }, { "is_read_only" : false, - "name" : "gameMode", + "name" : "maxHorizontalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : true, + "is_bind_type" : false, "is_errorable" : false, - "name" : "GameMode" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "location", + "name" : "maxLevel", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : true, + "is_bind_type" : false, "is_errorable" : false, - "name" : "Vector3" + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "maxDistance", + "name" : "maxVerticalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -6129,7 +6115,7 @@ }, { "is_read_only" : false, - "name" : "maxHorizontalRotation", + "name" : "minHorizontalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -6147,7 +6133,7 @@ }, { "is_read_only" : false, - "name" : "maxLevel", + "name" : "minLevel", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -6165,7 +6151,7 @@ }, { "is_read_only" : false, - "name" : "maxVerticalRotation", + "name" : "minVerticalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -6183,7 +6169,7 @@ }, { "is_read_only" : false, - "name" : "minDistance", + "name" : "name", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -6191,53 +6177,51 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "float", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "string" } } }, { "is_read_only" : false, - "name" : "minHorizontalRotation", + "name" : "scoreOptions", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityQueryScoreOptions" + }, "is_bind_type" : false, "is_errorable" : false, - "name" : "float", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "array" } } }, { "is_read_only" : false, - "name" : "minLevel", + "name" : "tags", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, "is_bind_type" : false, "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "array" } } }, { "is_read_only" : false, - "name" : "minVerticalRotation", + "name" : "type", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -6245,7 +6229,38 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "float", + "name" : "string" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + ], + "name" : "EntityQueryOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "closest", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", "valid_range" : { "max" : 2147483647, "min" : -2147483648 @@ -6255,7 +6270,7 @@ }, { "is_read_only" : false, - "name" : "name", + "name" : "farthest", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -6263,51 +6278,49 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "string" + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "scoreOptions", + "name" : "location", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "element_type" : { - "is_bind_type" : true, - "is_errorable" : false, - "name" : "EntityQueryScoreOptions" - }, - "is_bind_type" : false, + "is_bind_type" : true, "is_errorable" : false, - "name" : "array" + "name" : "Vector3" } } }, { "is_read_only" : false, - "name" : "tags", + "name" : "maxDistance", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "element_type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "string" - }, "is_bind_type" : false, "is_errorable" : false, - "name" : "array" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "type", + "name" : "minDistance", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -6315,7 +6328,11 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "string" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } } @@ -6881,7 +6898,7 @@ } } ], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "script", "name" : "@minecraft/server", "objects" : [ diff --git a/metadata/script_modules/@minecraft/server_1.4.0.json b/metadata/script_modules/@minecraft/server_1.4.0.json index a35d24268..2bb76903e 100644 --- a/metadata/script_modules/@minecraft/server_1.4.0.json +++ b/metadata/script_modules/@minecraft/server_1.4.0.json @@ -1064,7 +1064,7 @@ "name" : "EntityRaycastHit" }, "is_bind_type" : false, - "is_errorable" : false, + "is_errorable" : true, "name" : "array" } }, @@ -4742,7 +4742,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -4841,7 +4841,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -4940,7 +4940,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -5039,7 +5039,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -5138,7 +5138,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -5281,7 +5281,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -5447,7 +5447,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -5878,7 +5878,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6031,7 +6031,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6179,7 +6179,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6323,7 +6323,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6476,7 +6476,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6604,7 +6604,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6761,7 +6761,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6889,7 +6889,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -7473,7 +7473,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -7626,7 +7626,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9086,7 +9086,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9227,7 +9227,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -10728,6 +10728,131 @@ ], "functions" : [], "interfaces" : [ + { + "base_types" : [], + "name" : "BlockFilter", + "properties" : [ + { + "is_read_only" : false, + "name" : "excludePermutations", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockPermutation" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "excludeTags", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "excludeTypes", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "includePermutations", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockPermutation" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "includeTags", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "includeTypes", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockFilter" + } + }, { "base_types" : [], "name" : "BlockRaycastHit", @@ -10767,7 +10892,13 @@ } }, { - "base_types" : [], + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockFilter" + } + ], "name" : "BlockRaycastOptions", "properties" : [ { @@ -11092,26 +11223,8 @@ }, { "base_types" : [], - "name" : "EntityQueryOptions", + "name" : "EntityFilter", "properties" : [ - { - "is_read_only" : false, - "name" : "closest", - "type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "optional", - "optional_type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } - } - } - }, { "is_read_only" : false, "name" : "excludeFamilies", @@ -11228,53 +11341,57 @@ }, { "is_read_only" : false, - "name" : "farthest", + "name" : "gameMode", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : false, + "is_bind_type" : true, "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "GameMode" } } }, { "is_read_only" : false, - "name" : "gameMode", + "name" : "maxHorizontalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : true, + "is_bind_type" : false, "is_errorable" : false, - "name" : "GameMode" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "location", + "name" : "maxLevel", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : true, + "is_bind_type" : false, "is_errorable" : false, - "name" : "Vector3" + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "maxDistance", + "name" : "maxVerticalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -11292,7 +11409,7 @@ }, { "is_read_only" : false, - "name" : "maxHorizontalRotation", + "name" : "minHorizontalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -11310,7 +11427,7 @@ }, { "is_read_only" : false, - "name" : "maxLevel", + "name" : "minLevel", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -11328,7 +11445,7 @@ }, { "is_read_only" : false, - "name" : "maxVerticalRotation", + "name" : "minVerticalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -11346,7 +11463,7 @@ }, { "is_read_only" : false, - "name" : "minDistance", + "name" : "name", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -11354,53 +11471,51 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "float", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "string" } } }, { "is_read_only" : false, - "name" : "minHorizontalRotation", + "name" : "scoreOptions", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityQueryScoreOptions" + }, "is_bind_type" : false, "is_errorable" : false, - "name" : "float", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "array" } } }, { "is_read_only" : false, - "name" : "minLevel", + "name" : "tags", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, "is_bind_type" : false, "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "array" } } }, { "is_read_only" : false, - "name" : "minVerticalRotation", + "name" : "type", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -11408,7 +11523,38 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "float", + "name" : "string" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + ], + "name" : "EntityQueryOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "closest", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", "valid_range" : { "max" : 2147483647, "min" : -2147483648 @@ -11418,7 +11564,7 @@ }, { "is_read_only" : false, - "name" : "name", + "name" : "farthest", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -11426,51 +11572,49 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "string" + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "scoreOptions", + "name" : "location", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "element_type" : { - "is_bind_type" : true, - "is_errorable" : false, - "name" : "EntityQueryScoreOptions" - }, - "is_bind_type" : false, + "is_bind_type" : true, "is_errorable" : false, - "name" : "array" + "name" : "Vector3" } } }, { "is_read_only" : false, - "name" : "tags", + "name" : "maxDistance", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "element_type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "string" - }, "is_bind_type" : false, "is_errorable" : false, - "name" : "array" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "type", + "name" : "minDistance", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -11478,7 +11622,11 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "string" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } } @@ -11598,7 +11746,13 @@ } }, { - "base_types" : [], + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + ], "name" : "EntityRaycastOptions", "properties" : [ { @@ -12263,7 +12417,7 @@ } } ], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "script", "name" : "@minecraft/server", "objects" : [ diff --git a/metadata/script_modules/@minecraft/server_1.5.0.json b/metadata/script_modules/@minecraft/server_1.5.0.json index 4d834f1b9..66926d7aa 100644 --- a/metadata/script_modules/@minecraft/server_1.5.0.json +++ b/metadata/script_modules/@minecraft/server_1.5.0.json @@ -1064,7 +1064,7 @@ "name" : "EntityRaycastHit" }, "is_bind_type" : false, - "is_errorable" : false, + "is_errorable" : true, "name" : "array" } }, @@ -4919,7 +4919,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -5018,7 +5018,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -5117,7 +5117,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -5216,7 +5216,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -5315,7 +5315,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -5458,7 +5458,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -5624,7 +5624,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6055,7 +6055,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6208,7 +6208,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6356,7 +6356,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6500,7 +6500,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6653,7 +6653,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6781,7 +6781,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6938,7 +6938,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -7066,7 +7066,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -7852,7 +7852,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -8005,7 +8005,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -8180,7 +8180,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -8355,7 +8355,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9815,7 +9815,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9956,7 +9956,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -11546,6 +11546,131 @@ ], "functions" : [], "interfaces" : [ + { + "base_types" : [], + "name" : "BlockFilter", + "properties" : [ + { + "is_read_only" : false, + "name" : "excludePermutations", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockPermutation" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "excludeTags", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "excludeTypes", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "includePermutations", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockPermutation" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "includeTags", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "includeTypes", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockFilter" + } + }, { "base_types" : [], "name" : "BlockHitInformation", @@ -11623,7 +11748,13 @@ } }, { - "base_types" : [], + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockFilter" + } + ], "name" : "BlockRaycastOptions", "properties" : [ { @@ -11948,51 +12079,8 @@ }, { "base_types" : [], - "name" : "EntityHitInformation", - "properties" : [ - { - "is_read_only" : false, - "name" : "entity", - "type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "optional", - "optional_type" : { - "is_bind_type" : true, - "is_errorable" : false, - "name" : "Entity" - } - } - } - ], - "type" : { - "is_bind_type" : true, - "is_errorable" : false, - "name" : "EntityHitInformation" - } - }, - { - "base_types" : [], - "name" : "EntityQueryOptions", + "name" : "EntityFilter", "properties" : [ - { - "is_read_only" : false, - "name" : "closest", - "type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "optional", - "optional_type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } - } - } - }, { "is_read_only" : false, "name" : "excludeFamilies", @@ -12109,53 +12197,57 @@ }, { "is_read_only" : false, - "name" : "farthest", + "name" : "gameMode", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : false, + "is_bind_type" : true, "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "GameMode" } } }, { "is_read_only" : false, - "name" : "gameMode", + "name" : "maxHorizontalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : true, + "is_bind_type" : false, "is_errorable" : false, - "name" : "GameMode" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "location", + "name" : "maxLevel", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : true, + "is_bind_type" : false, "is_errorable" : false, - "name" : "Vector3" + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "maxDistance", + "name" : "maxVerticalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -12173,7 +12265,7 @@ }, { "is_read_only" : false, - "name" : "maxHorizontalRotation", + "name" : "minHorizontalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -12191,7 +12283,7 @@ }, { "is_read_only" : false, - "name" : "maxLevel", + "name" : "minLevel", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -12209,7 +12301,7 @@ }, { "is_read_only" : false, - "name" : "maxVerticalRotation", + "name" : "minVerticalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -12227,7 +12319,7 @@ }, { "is_read_only" : false, - "name" : "minDistance", + "name" : "name", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -12235,53 +12327,51 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "float", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "string" } } }, { "is_read_only" : false, - "name" : "minHorizontalRotation", + "name" : "scoreOptions", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityQueryScoreOptions" + }, "is_bind_type" : false, "is_errorable" : false, - "name" : "float", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "array" } } }, { "is_read_only" : false, - "name" : "minLevel", + "name" : "tags", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, "is_bind_type" : false, "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "array" } } }, { "is_read_only" : false, - "name" : "minVerticalRotation", + "name" : "type", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -12289,7 +12379,63 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "float", + "name" : "string" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + }, + { + "base_types" : [], + "name" : "EntityHitInformation", + "properties" : [ + { + "is_read_only" : false, + "name" : "entity", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHitInformation" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + ], + "name" : "EntityQueryOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "closest", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", "valid_range" : { "max" : 2147483647, "min" : -2147483648 @@ -12299,7 +12445,7 @@ }, { "is_read_only" : false, - "name" : "name", + "name" : "farthest", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -12307,51 +12453,49 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "string" + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "scoreOptions", + "name" : "location", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "element_type" : { - "is_bind_type" : true, - "is_errorable" : false, - "name" : "EntityQueryScoreOptions" - }, - "is_bind_type" : false, + "is_bind_type" : true, "is_errorable" : false, - "name" : "array" + "name" : "Vector3" } } }, { "is_read_only" : false, - "name" : "tags", + "name" : "maxDistance", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "element_type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "string" - }, "is_bind_type" : false, "is_errorable" : false, - "name" : "array" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "type", + "name" : "minDistance", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -12359,7 +12503,11 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "string" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } } @@ -12479,7 +12627,13 @@ } }, { - "base_types" : [], + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + ], "name" : "EntityRaycastOptions", "properties" : [ { @@ -13224,7 +13378,7 @@ } } ], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "script", "name" : "@minecraft/server", "objects" : [ diff --git a/metadata/script_modules/@minecraft/server_1.6.0.json b/metadata/script_modules/@minecraft/server_1.6.0.json index 6b1b2137e..512ceed29 100644 --- a/metadata/script_modules/@minecraft/server_1.6.0.json +++ b/metadata/script_modules/@minecraft/server_1.6.0.json @@ -1230,7 +1230,7 @@ "name" : "EntityRaycastHit" }, "is_bind_type" : false, - "is_errorable" : false, + "is_errorable" : true, "name" : "array" } }, @@ -4841,7 +4841,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -5408,7 +5408,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -5629,7 +5629,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -5916,7 +5916,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6015,7 +6015,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6114,7 +6114,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6213,7 +6213,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6312,7 +6312,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6455,7 +6455,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6621,7 +6621,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -7209,7 +7209,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -7362,7 +7362,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -7510,7 +7510,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -7654,7 +7654,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -7807,7 +7807,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -7935,7 +7935,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -8092,7 +8092,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -8220,7 +8220,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9071,7 +9071,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9239,7 +9239,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9396,7 +9396,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9637,7 +9637,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9832,7 +9832,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9985,7 +9985,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -10160,7 +10160,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -10335,7 +10335,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -11795,7 +11795,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -11936,7 +11936,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -14267,6 +14267,131 @@ "name" : "BlockEventOptions" } }, + { + "base_types" : [], + "name" : "BlockFilter", + "properties" : [ + { + "is_read_only" : false, + "name" : "excludePermutations", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockPermutation" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "excludeTags", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "excludeTypes", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "includePermutations", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockPermutation" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "includeTags", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "includeTypes", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockFilter" + } + }, { "base_types" : [], "name" : "BlockHitInformation", @@ -14344,7 +14469,13 @@ } }, { - "base_types" : [], + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockFilter" + } + ], "name" : "BlockRaycastOptions", "properties" : [ { @@ -14999,51 +15130,8 @@ }, { "base_types" : [], - "name" : "EntityHitInformation", + "name" : "EntityFilter", "properties" : [ - { - "is_read_only" : false, - "name" : "entity", - "type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "optional", - "optional_type" : { - "is_bind_type" : true, - "is_errorable" : false, - "name" : "Entity" - } - } - } - ], - "type" : { - "is_bind_type" : true, - "is_errorable" : false, - "name" : "EntityHitInformation" - } - }, - { - "base_types" : [], - "name" : "EntityQueryOptions", - "properties" : [ - { - "is_read_only" : false, - "name" : "closest", - "type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "optional", - "optional_type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } - } - } - }, { "is_read_only" : false, "name" : "excludeFamilies", @@ -15160,53 +15248,57 @@ }, { "is_read_only" : false, - "name" : "farthest", + "name" : "gameMode", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : false, + "is_bind_type" : true, "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "GameMode" } } }, { "is_read_only" : false, - "name" : "gameMode", + "name" : "maxHorizontalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : true, + "is_bind_type" : false, "is_errorable" : false, - "name" : "GameMode" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "location", + "name" : "maxLevel", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : true, + "is_bind_type" : false, "is_errorable" : false, - "name" : "Vector3" + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "maxDistance", + "name" : "maxVerticalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -15224,7 +15316,7 @@ }, { "is_read_only" : false, - "name" : "maxHorizontalRotation", + "name" : "minHorizontalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -15242,7 +15334,7 @@ }, { "is_read_only" : false, - "name" : "maxLevel", + "name" : "minLevel", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -15260,7 +15352,7 @@ }, { "is_read_only" : false, - "name" : "maxVerticalRotation", + "name" : "minVerticalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -15278,7 +15370,7 @@ }, { "is_read_only" : false, - "name" : "minDistance", + "name" : "name", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -15286,53 +15378,51 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "float", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "string" } } }, { "is_read_only" : false, - "name" : "minHorizontalRotation", + "name" : "scoreOptions", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityQueryScoreOptions" + }, "is_bind_type" : false, "is_errorable" : false, - "name" : "float", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "array" } } }, { "is_read_only" : false, - "name" : "minLevel", + "name" : "tags", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, "is_bind_type" : false, "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "array" } } }, { "is_read_only" : false, - "name" : "minVerticalRotation", + "name" : "type", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -15340,7 +15430,63 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "float", + "name" : "string" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + }, + { + "base_types" : [], + "name" : "EntityHitInformation", + "properties" : [ + { + "is_read_only" : false, + "name" : "entity", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHitInformation" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + ], + "name" : "EntityQueryOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "closest", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", "valid_range" : { "max" : 2147483647, "min" : -2147483648 @@ -15350,7 +15496,7 @@ }, { "is_read_only" : false, - "name" : "name", + "name" : "farthest", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -15358,51 +15504,49 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "string" + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "scoreOptions", + "name" : "location", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "element_type" : { - "is_bind_type" : true, - "is_errorable" : false, - "name" : "EntityQueryScoreOptions" - }, - "is_bind_type" : false, + "is_bind_type" : true, "is_errorable" : false, - "name" : "array" + "name" : "Vector3" } } }, { "is_read_only" : false, - "name" : "tags", + "name" : "maxDistance", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "element_type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "string" - }, "is_bind_type" : false, "is_errorable" : false, - "name" : "array" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "type", + "name" : "minDistance", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -15410,7 +15554,11 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "string" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } } @@ -15530,7 +15678,13 @@ } }, { - "base_types" : [], + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + ], "name" : "EntityRaycastOptions", "properties" : [ { @@ -16275,7 +16429,7 @@ } } ], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "script", "name" : "@minecraft/server", "objects" : [ diff --git a/metadata/script_modules/@minecraft/server_1.7.0.json b/metadata/script_modules/@minecraft/server_1.7.0.json index 22a418c9d..b2370ea4b 100644 --- a/metadata/script_modules/@minecraft/server_1.7.0.json +++ b/metadata/script_modules/@minecraft/server_1.7.0.json @@ -1575,7 +1575,7 @@ "name" : "EntityRaycastHit" }, "is_bind_type" : false, - "is_errorable" : false, + "is_errorable" : true, "name" : "array" } }, @@ -5414,7 +5414,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -5981,7 +5981,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6202,7 +6202,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6429,7 +6429,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6585,7 +6585,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6798,7 +6798,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6897,7 +6897,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6996,7 +6996,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -7095,7 +7095,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -7194,7 +7194,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -7337,7 +7337,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -7503,7 +7503,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -8091,7 +8091,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -8244,7 +8244,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -8392,7 +8392,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -8536,7 +8536,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -8689,7 +8689,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -8817,7 +8817,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -8974,7 +8974,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9102,7 +9102,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9953,7 +9953,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -10121,7 +10121,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -10278,7 +10278,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -10440,7 +10440,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -10612,7 +10612,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -10756,7 +10756,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -10910,7 +10910,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -11129,7 +11129,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -11272,7 +11272,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -11467,7 +11467,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -11620,7 +11620,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -11795,7 +11795,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -11970,7 +11970,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -13430,7 +13430,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -13571,7 +13571,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -16133,6 +16133,131 @@ "name" : "BlockEventOptions" } }, + { + "base_types" : [], + "name" : "BlockFilter", + "properties" : [ + { + "is_read_only" : false, + "name" : "excludePermutations", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockPermutation" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "excludeTags", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "excludeTypes", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "includePermutations", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockPermutation" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "includeTags", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "includeTypes", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockFilter" + } + }, { "base_types" : [], "name" : "BlockHitInformation", @@ -16210,7 +16335,13 @@ } }, { - "base_types" : [], + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockFilter" + } + ], "name" : "BlockRaycastOptions", "properties" : [ { @@ -16865,51 +16996,8 @@ }, { "base_types" : [], - "name" : "EntityHitInformation", + "name" : "EntityFilter", "properties" : [ - { - "is_read_only" : false, - "name" : "entity", - "type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "optional", - "optional_type" : { - "is_bind_type" : true, - "is_errorable" : false, - "name" : "Entity" - } - } - } - ], - "type" : { - "is_bind_type" : true, - "is_errorable" : false, - "name" : "EntityHitInformation" - } - }, - { - "base_types" : [], - "name" : "EntityQueryOptions", - "properties" : [ - { - "is_read_only" : false, - "name" : "closest", - "type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "optional", - "optional_type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } - } - } - }, { "is_read_only" : false, "name" : "excludeFamilies", @@ -17026,53 +17114,57 @@ }, { "is_read_only" : false, - "name" : "farthest", + "name" : "gameMode", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : false, + "is_bind_type" : true, "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "GameMode" } } }, { "is_read_only" : false, - "name" : "gameMode", + "name" : "maxHorizontalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : true, + "is_bind_type" : false, "is_errorable" : false, - "name" : "GameMode" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "location", + "name" : "maxLevel", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : true, + "is_bind_type" : false, "is_errorable" : false, - "name" : "Vector3" + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "maxDistance", + "name" : "maxVerticalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -17090,7 +17182,7 @@ }, { "is_read_only" : false, - "name" : "maxHorizontalRotation", + "name" : "minHorizontalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -17108,7 +17200,7 @@ }, { "is_read_only" : false, - "name" : "maxLevel", + "name" : "minLevel", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -17126,7 +17218,7 @@ }, { "is_read_only" : false, - "name" : "maxVerticalRotation", + "name" : "minVerticalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -17144,7 +17236,7 @@ }, { "is_read_only" : false, - "name" : "minDistance", + "name" : "name", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -17152,53 +17244,51 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "float", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "string" } } }, { "is_read_only" : false, - "name" : "minHorizontalRotation", + "name" : "scoreOptions", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityQueryScoreOptions" + }, "is_bind_type" : false, "is_errorable" : false, - "name" : "float", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "array" } } }, { "is_read_only" : false, - "name" : "minLevel", + "name" : "tags", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, "is_bind_type" : false, "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "array" } } }, { "is_read_only" : false, - "name" : "minVerticalRotation", + "name" : "type", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -17206,7 +17296,63 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "float", + "name" : "string" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + }, + { + "base_types" : [], + "name" : "EntityHitInformation", + "properties" : [ + { + "is_read_only" : false, + "name" : "entity", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHitInformation" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + ], + "name" : "EntityQueryOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "closest", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", "valid_range" : { "max" : 2147483647, "min" : -2147483648 @@ -17216,7 +17362,7 @@ }, { "is_read_only" : false, - "name" : "name", + "name" : "farthest", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -17224,51 +17370,49 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "string" + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "scoreOptions", + "name" : "location", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "element_type" : { - "is_bind_type" : true, - "is_errorable" : false, - "name" : "EntityQueryScoreOptions" - }, - "is_bind_type" : false, + "is_bind_type" : true, "is_errorable" : false, - "name" : "array" + "name" : "Vector3" } } }, { "is_read_only" : false, - "name" : "tags", + "name" : "maxDistance", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "element_type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "string" - }, "is_bind_type" : false, "is_errorable" : false, - "name" : "array" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "type", + "name" : "minDistance", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -17276,7 +17420,11 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "string" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } } @@ -17396,7 +17544,13 @@ } }, { - "base_types" : [], + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + ], "name" : "EntityRaycastOptions", "properties" : [ { @@ -18141,7 +18295,7 @@ } } ], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "script", "name" : "@minecraft/server", "objects" : [ diff --git a/metadata/script_modules/@minecraft/server_1.8.0.json b/metadata/script_modules/@minecraft/server_1.8.0.json index 46e60a15c..c2264d20d 100644 --- a/metadata/script_modules/@minecraft/server_1.8.0.json +++ b/metadata/script_modules/@minecraft/server_1.8.0.json @@ -1914,7 +1914,7 @@ "name" : "EntityRaycastHit" }, "is_bind_type" : false, - "is_errorable" : false, + "is_errorable" : true, "name" : "array" } }, @@ -2587,7 +2587,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6053,7 +6053,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6620,7 +6620,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -6841,7 +6841,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -7068,7 +7068,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -7224,7 +7224,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -7437,7 +7437,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -7536,7 +7536,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -7635,7 +7635,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -7734,7 +7734,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -7833,7 +7833,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -7976,7 +7976,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -8142,7 +8142,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -8730,7 +8730,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -8883,7 +8883,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9031,7 +9031,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9175,7 +9175,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9328,7 +9328,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9456,7 +9456,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9613,7 +9613,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9741,7 +9741,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -10592,7 +10592,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -10760,7 +10760,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -10917,7 +10917,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -11079,7 +11079,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -11251,7 +11251,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -11395,7 +11395,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -11549,7 +11549,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -11768,7 +11768,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -11911,7 +11911,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -12106,7 +12106,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -12259,7 +12259,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -12434,7 +12434,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -12609,7 +12609,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -14069,7 +14069,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -14210,7 +14210,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -16830,6 +16830,131 @@ "name" : "BlockEventOptions" } }, + { + "base_types" : [], + "name" : "BlockFilter", + "properties" : [ + { + "is_read_only" : false, + "name" : "excludePermutations", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockPermutation" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "excludeTags", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "excludeTypes", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "includePermutations", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockPermutation" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "includeTags", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "includeTypes", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockFilter" + } + }, { "base_types" : [], "name" : "BlockHitInformation", @@ -16907,7 +17032,13 @@ } }, { - "base_types" : [], + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockFilter" + } + ], "name" : "BlockRaycastOptions", "properties" : [ { @@ -17669,51 +17800,8 @@ }, { "base_types" : [], - "name" : "EntityHitInformation", + "name" : "EntityFilter", "properties" : [ - { - "is_read_only" : false, - "name" : "entity", - "type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "optional", - "optional_type" : { - "is_bind_type" : true, - "is_errorable" : false, - "name" : "Entity" - } - } - } - ], - "type" : { - "is_bind_type" : true, - "is_errorable" : false, - "name" : "EntityHitInformation" - } - }, - { - "base_types" : [], - "name" : "EntityQueryOptions", - "properties" : [ - { - "is_read_only" : false, - "name" : "closest", - "type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "optional", - "optional_type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } - } - } - }, { "is_read_only" : false, "name" : "excludeFamilies", @@ -17830,53 +17918,57 @@ }, { "is_read_only" : false, - "name" : "farthest", + "name" : "gameMode", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : false, + "is_bind_type" : true, "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "GameMode" } } }, { "is_read_only" : false, - "name" : "gameMode", + "name" : "maxHorizontalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : true, + "is_bind_type" : false, "is_errorable" : false, - "name" : "GameMode" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "location", + "name" : "maxLevel", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : true, + "is_bind_type" : false, "is_errorable" : false, - "name" : "Vector3" + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "maxDistance", + "name" : "maxVerticalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -17894,7 +17986,7 @@ }, { "is_read_only" : false, - "name" : "maxHorizontalRotation", + "name" : "minHorizontalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -17912,7 +18004,7 @@ }, { "is_read_only" : false, - "name" : "maxLevel", + "name" : "minLevel", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -17930,7 +18022,7 @@ }, { "is_read_only" : false, - "name" : "maxVerticalRotation", + "name" : "minVerticalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -17948,7 +18040,7 @@ }, { "is_read_only" : false, - "name" : "minDistance", + "name" : "name", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -17956,53 +18048,51 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "float", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "string" } } }, { "is_read_only" : false, - "name" : "minHorizontalRotation", + "name" : "scoreOptions", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityQueryScoreOptions" + }, "is_bind_type" : false, "is_errorable" : false, - "name" : "float", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "array" } } }, { "is_read_only" : false, - "name" : "minLevel", + "name" : "tags", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, "is_bind_type" : false, "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "array" } } }, { "is_read_only" : false, - "name" : "minVerticalRotation", + "name" : "type", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -18010,7 +18100,63 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "float", + "name" : "string" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + }, + { + "base_types" : [], + "name" : "EntityHitInformation", + "properties" : [ + { + "is_read_only" : false, + "name" : "entity", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHitInformation" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + ], + "name" : "EntityQueryOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "closest", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", "valid_range" : { "max" : 2147483647, "min" : -2147483648 @@ -18020,7 +18166,7 @@ }, { "is_read_only" : false, - "name" : "name", + "name" : "farthest", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -18028,51 +18174,49 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "string" + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "scoreOptions", + "name" : "location", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "element_type" : { - "is_bind_type" : true, - "is_errorable" : false, - "name" : "EntityQueryScoreOptions" - }, - "is_bind_type" : false, + "is_bind_type" : true, "is_errorable" : false, - "name" : "array" + "name" : "Vector3" } } }, { "is_read_only" : false, - "name" : "tags", + "name" : "maxDistance", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "element_type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "string" - }, "is_bind_type" : false, "is_errorable" : false, - "name" : "array" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "type", + "name" : "minDistance", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -18080,7 +18224,11 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "string" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } } @@ -18200,7 +18348,13 @@ } }, { - "base_types" : [], + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + ], "name" : "EntityRaycastOptions", "properties" : [ { @@ -18945,7 +19099,7 @@ } } ], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "script", "name" : "@minecraft/server", "objects" : [ diff --git a/metadata/script_modules/@minecraft/server_1.9.0.json b/metadata/script_modules/@minecraft/server_1.9.0.json index b993a5778..a7ea89909 100644 --- a/metadata/script_modules/@minecraft/server_1.9.0.json +++ b/metadata/script_modules/@minecraft/server_1.9.0.json @@ -3234,7 +3234,7 @@ "name" : "EntityRaycastHit" }, "is_bind_type" : false, - "is_errorable" : false, + "is_errorable" : true, "name" : "array" } }, @@ -3986,7 +3986,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -7633,7 +7633,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -8244,7 +8244,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -8465,7 +8465,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -8692,7 +8692,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -8848,7 +8848,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9061,7 +9061,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9160,7 +9160,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9259,7 +9259,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9358,7 +9358,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9457,7 +9457,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9600,7 +9600,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -9951,7 +9951,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -10719,7 +10719,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -10872,7 +10872,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -11020,7 +11020,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -11164,7 +11164,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -11317,7 +11317,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -11445,7 +11445,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -11602,7 +11602,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -11730,7 +11730,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -12169,7 +12169,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -12717,7 +12717,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -12885,7 +12885,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -13042,7 +13042,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -13204,7 +13204,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -13376,7 +13376,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -13520,7 +13520,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -13674,7 +13674,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -13893,7 +13893,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -14036,7 +14036,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -14231,7 +14231,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -14384,7 +14384,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -14559,7 +14559,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -14734,7 +14734,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -16194,7 +16194,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -16335,7 +16335,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -16474,7 +16474,7 @@ "privilege" : "none", "return_type" : { "is_bind_type" : false, - "is_errorable" : true, + "is_errorable" : false, "name" : "undefined" } } @@ -19414,6 +19414,131 @@ "name" : "BlockEventOptions" } }, + { + "base_types" : [], + "name" : "BlockFilter", + "properties" : [ + { + "is_read_only" : false, + "name" : "excludePermutations", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockPermutation" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "excludeTags", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "excludeTypes", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "includePermutations", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockPermutation" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "includeTags", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + }, + { + "is_read_only" : false, + "name" : "includeTypes", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, + "is_bind_type" : false, + "is_errorable" : false, + "name" : "array" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockFilter" + } + }, { "base_types" : [], "name" : "BlockHitInformation", @@ -19491,7 +19616,13 @@ } }, { - "base_types" : [], + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "BlockFilter" + } + ], "name" : "BlockRaycastOptions", "properties" : [ { @@ -20253,51 +20384,8 @@ }, { "base_types" : [], - "name" : "EntityHitInformation", + "name" : "EntityFilter", "properties" : [ - { - "is_read_only" : false, - "name" : "entity", - "type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "optional", - "optional_type" : { - "is_bind_type" : true, - "is_errorable" : false, - "name" : "Entity" - } - } - } - ], - "type" : { - "is_bind_type" : true, - "is_errorable" : false, - "name" : "EntityHitInformation" - } - }, - { - "base_types" : [], - "name" : "EntityQueryOptions", - "properties" : [ - { - "is_read_only" : false, - "name" : "closest", - "type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "optional", - "optional_type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } - } - } - }, { "is_read_only" : false, "name" : "excludeFamilies", @@ -20414,53 +20502,57 @@ }, { "is_read_only" : false, - "name" : "farthest", + "name" : "gameMode", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : false, + "is_bind_type" : true, "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "GameMode" } } }, { "is_read_only" : false, - "name" : "gameMode", + "name" : "maxHorizontalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : true, + "is_bind_type" : false, "is_errorable" : false, - "name" : "GameMode" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "location", + "name" : "maxLevel", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "is_bind_type" : true, + "is_bind_type" : false, "is_errorable" : false, - "name" : "Vector3" + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "maxDistance", + "name" : "maxVerticalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -20478,7 +20570,7 @@ }, { "is_read_only" : false, - "name" : "maxHorizontalRotation", + "name" : "minHorizontalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -20496,7 +20588,7 @@ }, { "is_read_only" : false, - "name" : "maxLevel", + "name" : "minLevel", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -20514,7 +20606,7 @@ }, { "is_read_only" : false, - "name" : "maxVerticalRotation", + "name" : "minVerticalRotation", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -20532,7 +20624,7 @@ }, { "is_read_only" : false, - "name" : "minDistance", + "name" : "name", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -20540,53 +20632,51 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "float", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "string" } } }, { "is_read_only" : false, - "name" : "minHorizontalRotation", + "name" : "scoreOptions", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { + "element_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityQueryScoreOptions" + }, "is_bind_type" : false, "is_errorable" : false, - "name" : "float", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "array" } } }, { "is_read_only" : false, - "name" : "minLevel", + "name" : "tags", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { + "element_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "string" + }, "is_bind_type" : false, "is_errorable" : false, - "name" : "int32", - "valid_range" : { - "max" : 2147483647, - "min" : -2147483648 - } + "name" : "array" } } }, { "is_read_only" : false, - "name" : "minVerticalRotation", + "name" : "type", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -20594,7 +20684,63 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "float", + "name" : "string" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + }, + { + "base_types" : [], + "name" : "EntityHitInformation", + "properties" : [ + { + "is_read_only" : false, + "name" : "entity", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "Entity" + } + } + } + ], + "type" : { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityHitInformation" + } + }, + { + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + ], + "name" : "EntityQueryOptions", + "properties" : [ + { + "is_read_only" : false, + "name" : "closest", + "type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "optional", + "optional_type" : { + "is_bind_type" : false, + "is_errorable" : false, + "name" : "int32", "valid_range" : { "max" : 2147483647, "min" : -2147483648 @@ -20604,7 +20750,7 @@ }, { "is_read_only" : false, - "name" : "name", + "name" : "farthest", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -20612,51 +20758,49 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "string" + "name" : "int32", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "scoreOptions", + "name" : "location", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "element_type" : { - "is_bind_type" : true, - "is_errorable" : false, - "name" : "EntityQueryScoreOptions" - }, - "is_bind_type" : false, + "is_bind_type" : true, "is_errorable" : false, - "name" : "array" + "name" : "Vector3" } } }, { "is_read_only" : false, - "name" : "tags", + "name" : "maxDistance", "type" : { "is_bind_type" : false, "is_errorable" : false, "name" : "optional", "optional_type" : { - "element_type" : { - "is_bind_type" : false, - "is_errorable" : false, - "name" : "string" - }, "is_bind_type" : false, "is_errorable" : false, - "name" : "array" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } }, { "is_read_only" : false, - "name" : "type", + "name" : "minDistance", "type" : { "is_bind_type" : false, "is_errorable" : false, @@ -20664,7 +20808,11 @@ "optional_type" : { "is_bind_type" : false, "is_errorable" : false, - "name" : "string" + "name" : "float", + "valid_range" : { + "max" : 2147483647, + "min" : -2147483648 + } } } } @@ -20784,7 +20932,13 @@ } }, { - "base_types" : [], + "base_types" : [ + { + "is_bind_type" : true, + "is_errorable" : false, + "name" : "EntityFilter" + } + ], "name" : "EntityRaycastOptions", "properties" : [ { @@ -21716,7 +21870,7 @@ } } ], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "script", "name" : "@minecraft/server", "objects" : [ diff --git a/metadata/vanilladata_modules/mojang-biomes.json b/metadata/vanilladata_modules/mojang-biomes.json index 57599bdae..ac1c120b1 100644 --- a/metadata/vanilladata_modules/mojang-biomes.json +++ b/metadata/vanilladata_modules/mojang-biomes.json @@ -259,7 +259,7 @@ "name" : "minecraft:warped_forest" } ], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "vanilla_data", "name" : "mojang-biome", "vanilla_data_type" : "biome" diff --git a/metadata/vanilladata_modules/mojang-blocks.json b/metadata/vanilladata_modules/mojang-blocks.json index ab25da2cf..bbdb846c9 100644 --- a/metadata/vanilladata_modules/mojang-blocks.json +++ b/metadata/vanilladata_modules/mojang-blocks.json @@ -2073,6 +2073,18 @@ } ] }, + { + "name" : "ominous", + "type" : "bool", + "values" : [ + { + "value" : false + }, + { + "value" : true + } + ] + }, { "name" : "open_bit", "type" : "bool", @@ -4270,6 +4282,10 @@ "name" : "minecraft:brain_coral", "properties" : [] }, + { + "name" : "minecraft:brain_coral_block", + "properties" : [] + }, { "name" : "minecraft:brain_coral_fan", "properties" : [ @@ -4296,6 +4312,14 @@ "name" : "minecraft:brick_block", "properties" : [] }, + { + "name" : "minecraft:brick_slab", + "properties" : [ + { + "name" : "minecraft:vertical_half" + } + ] + }, { "name" : "minecraft:brick_stairs", "properties" : [ @@ -4390,6 +4414,10 @@ "name" : "minecraft:bubble_coral", "properties" : [] }, + { + "name" : "minecraft:bubble_coral_block", + "properties" : [] + }, { "name" : "minecraft:bubble_coral_fan", "properties" : [ @@ -4852,6 +4880,14 @@ "name" : "minecraft:cobblestone", "properties" : [] }, + { + "name" : "minecraft:cobblestone_slab", + "properties" : [ + { + "name" : "minecraft:vertical_half" + } + ] + }, { "name" : "minecraft:cobblestone_wall", "properties" : [ @@ -4985,17 +5021,6 @@ } ] }, - { - "name" : "minecraft:coral_block", - "properties" : [ - { - "name" : "coral_color" - }, - { - "name" : "dead_bit" - } - ] - }, { "name" : "minecraft:coral_fan_hang", "properties" : [ @@ -5520,6 +5545,10 @@ "name" : "minecraft:dead_brain_coral", "properties" : [] }, + { + "name" : "minecraft:dead_brain_coral_block", + "properties" : [] + }, { "name" : "minecraft:dead_brain_coral_fan", "properties" : [ @@ -5532,6 +5561,10 @@ "name" : "minecraft:dead_bubble_coral", "properties" : [] }, + { + "name" : "minecraft:dead_bubble_coral_block", + "properties" : [] + }, { "name" : "minecraft:dead_bubble_coral_fan", "properties" : [ @@ -5544,6 +5577,10 @@ "name" : "minecraft:dead_fire_coral", "properties" : [] }, + { + "name" : "minecraft:dead_fire_coral_block", + "properties" : [] + }, { "name" : "minecraft:dead_fire_coral_fan", "properties" : [ @@ -5556,6 +5593,10 @@ "name" : "minecraft:dead_horn_coral", "properties" : [] }, + { + "name" : "minecraft:dead_horn_coral_block", + "properties" : [] + }, { "name" : "minecraft:dead_horn_coral_fan", "properties" : [ @@ -5568,6 +5609,10 @@ "name" : "minecraft:dead_tube_coral", "properties" : [] }, + { + "name" : "minecraft:dead_tube_coral_block", + "properties" : [] + }, { "name" : "minecraft:dead_tube_coral_fan", "properties" : [ @@ -5799,17 +5844,6 @@ } ] }, - { - "name" : "minecraft:double_plant", - "properties" : [ - { - "name" : "double_plant_type" - }, - { - "name" : "upper_block_bit" - } - ] - }, { "name" : "minecraft:double_stone_block_slab", "properties" : [ @@ -6526,6 +6560,10 @@ } ] }, + { + "name" : "minecraft:fern", + "properties" : [] + }, { "name" : "minecraft:fire", "properties" : [ @@ -6538,6 +6576,10 @@ "name" : "minecraft:fire_coral", "properties" : [] }, + { + "name" : "minecraft:fire_coral_block", + "properties" : [] + }, { "name" : "minecraft:fire_coral_fan", "properties" : [ @@ -7019,6 +7061,10 @@ "name" : "minecraft:horn_coral", "properties" : [] }, + { + "name" : "minecraft:horn_coral_block", + "properties" : [] + }, { "name" : "minecraft:horn_coral_fan", "properties" : [ @@ -7316,6 +7362,14 @@ } ] }, + { + "name" : "minecraft:large_fern", + "properties" : [ + { + "name" : "upper_block_bit" + } + ] + }, { "name" : "minecraft:lava", "properties" : [ @@ -7480,6 +7534,14 @@ } ] }, + { + "name" : "minecraft:lilac", + "properties" : [ + { + "name" : "upper_block_bit" + } + ] + }, { "name" : "minecraft:lily_of_the_valley", "properties" : [] @@ -7987,6 +8049,14 @@ "name" : "minecraft:nether_brick_fence", "properties" : [] }, + { + "name" : "minecraft:nether_brick_slab", + "properties" : [ + { + "name" : "minecraft:vertical_half" + } + ] + }, { "name" : "minecraft:nether_brick_stairs", "properties" : [ @@ -8323,6 +8393,22 @@ } ] }, + { + "name" : "minecraft:peony", + "properties" : [ + { + "name" : "upper_block_bit" + } + ] + }, + { + "name" : "minecraft:petrified_oak_slab", + "properties" : [ + { + "name" : "minecraft:vertical_half" + } + ] + }, { "name" : "minecraft:pink_candle", "properties" : [ @@ -8921,6 +9007,14 @@ "name" : "minecraft:quartz_ore", "properties" : [] }, + { + "name" : "minecraft:quartz_slab", + "properties" : [ + { + "name" : "minecraft:vertical_half" + } + ] + }, { "name" : "minecraft:quartz_stairs", "properties" : [ @@ -9124,6 +9218,14 @@ } ] }, + { + "name" : "minecraft:rose_bush", + "properties" : [ + { + "name" : "upper_block_bit" + } + ] + }, { "name" : "minecraft:sand", "properties" : [ @@ -9140,6 +9242,14 @@ } ] }, + { + "name" : "minecraft:sandstone_slab", + "properties" : [ + { + "name" : "minecraft:vertical_half" + } + ] + }, { "name" : "minecraft:sandstone_stairs", "properties" : [ @@ -9224,6 +9334,10 @@ } ] }, + { + "name" : "minecraft:short_grass", + "properties" : [] + }, { "name" : "minecraft:shroomlight", "properties" : [] @@ -9320,6 +9434,14 @@ "name" : "minecraft:smooth_stone", "properties" : [] }, + { + "name" : "minecraft:smooth_stone_slab", + "properties" : [ + { + "name" : "minecraft:vertical_half" + } + ] + }, { "name" : "minecraft:sniffer_egg", "properties" : [ @@ -9602,46 +9724,43 @@ "properties" : [] }, { - "name" : "minecraft:stone_block_slab", + "name" : "minecraft:stone_block_slab2", "properties" : [ { "name" : "minecraft:vertical_half" }, { - "name" : "stone_slab_type" + "name" : "stone_slab_type_2" } ] }, { - "name" : "minecraft:stone_block_slab2", + "name" : "minecraft:stone_block_slab3", "properties" : [ { "name" : "minecraft:vertical_half" }, { - "name" : "stone_slab_type_2" + "name" : "stone_slab_type_3" } ] }, { - "name" : "minecraft:stone_block_slab3", + "name" : "minecraft:stone_block_slab4", "properties" : [ { "name" : "minecraft:vertical_half" }, { - "name" : "stone_slab_type_3" + "name" : "stone_slab_type_4" } ] }, { - "name" : "minecraft:stone_block_slab4", + "name" : "minecraft:stone_brick_slab", "properties" : [ { "name" : "minecraft:vertical_half" - }, - { - "name" : "stone_slab_type_4" } ] }, @@ -9890,6 +10009,14 @@ } ] }, + { + "name" : "minecraft:sunflower", + "properties" : [ + { + "name" : "upper_block_bit" + } + ] + }, { "name" : "minecraft:suspicious_gravel", "properties" : [ @@ -9921,10 +10048,10 @@ ] }, { - "name" : "minecraft:tallgrass", + "name" : "minecraft:tall_grass", "properties" : [ { - "name" : "tall_grass_type" + "name" : "upper_block_bit" } ] }, @@ -9992,6 +10119,9 @@ { "name" : "minecraft:trial_spawner", "properties" : [ + { + "name" : "ominous" + }, { "name" : "trial_spawner_state" } @@ -10032,6 +10162,10 @@ "name" : "minecraft:tube_coral", "properties" : [] }, + { + "name" : "minecraft:tube_coral_block", + "properties" : [] + }, { "name" : "minecraft:tube_coral_fan", "properties" : [ @@ -10216,6 +10350,9 @@ { "name" : "minecraft:cardinal_direction" }, + { + "name" : "ominous" + }, { "name" : "vault_state" } @@ -11041,7 +11178,7 @@ "properties" : [] } ], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "vanilla_data", "name" : "mojang-block", "vanilla_data_type" : "block" diff --git a/metadata/vanilladata_modules/mojang-camera-presets.json b/metadata/vanilladata_modules/mojang-camera-presets.json index 9264e4892..2e2550277 100644 --- a/metadata/vanilladata_modules/mojang-camera-presets.json +++ b/metadata/vanilladata_modules/mojang-camera-presets.json @@ -13,7 +13,7 @@ "name" : "minecraft:third_person_front" } ], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "vanilla_data", "name" : "mojang-cameraPresets", "vanilla_data_type" : "cameraPresets" diff --git a/metadata/vanilladata_modules/mojang-cooldown-category.json b/metadata/vanilladata_modules/mojang-cooldown-category.json index 8b3cc5b2c..f5ae13f28 100644 --- a/metadata/vanilladata_modules/mojang-cooldown-category.json +++ b/metadata/vanilladata_modules/mojang-cooldown-category.json @@ -16,7 +16,7 @@ "name" : "minecraft:wind_charge" } ], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "vanilla_data", "name" : "mojang-cooldownCategory", "vanilla_data_type" : "cooldownCategory" diff --git a/metadata/vanilladata_modules/mojang-dimensions.json b/metadata/vanilladata_modules/mojang-dimensions.json index 9d639ee41..0a8f5f7e4 100644 --- a/metadata/vanilladata_modules/mojang-dimensions.json +++ b/metadata/vanilladata_modules/mojang-dimensions.json @@ -10,7 +10,7 @@ "name" : "minecraft:the_end" } ], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "vanilla_data", "name" : "mojang-dimension", "vanilla_data_type" : "dimension" diff --git a/metadata/vanilladata_modules/mojang-effects.json b/metadata/vanilladata_modules/mojang-effects.json index 0b4657435..4944c471e 100644 --- a/metadata/vanilladata_modules/mojang-effects.json +++ b/metadata/vanilladata_modules/mojang-effects.json @@ -33,6 +33,9 @@ { "name" : "hunger" }, + { + "name" : "infested" + }, { "name" : "instant_damage" }, @@ -57,9 +60,15 @@ { "name" : "night_vision" }, + { + "name" : "oozing" + }, { "name" : "poison" }, + { + "name" : "raid_omen" + }, { "name" : "regeneration" }, @@ -81,6 +90,9 @@ { "name" : "strength" }, + { + "name" : "trial_omen" + }, { "name" : "village_hero" }, @@ -90,11 +102,17 @@ { "name" : "weakness" }, + { + "name" : "weaving" + }, + { + "name" : "wind_charged" + }, { "name" : "wither" } ], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "vanilla_data", "name" : "mojang-effect", "vanilla_data_type" : "effect" diff --git a/metadata/vanilladata_modules/mojang-enchantments.json b/metadata/vanilladata_modules/mojang-enchantments.json index 90758a459..925f1d507 100644 --- a/metadata/vanilladata_modules/mojang-enchantments.json +++ b/metadata/vanilladata_modules/mojang-enchantments.json @@ -12,9 +12,15 @@ { "name" : "blast_protection" }, + { + "name" : "breach" + }, { "name" : "channeling" }, + { + "name" : "density" + }, { "name" : "depth_strider" }, @@ -113,9 +119,12 @@ }, { "name" : "vanishing" + }, + { + "name" : "wind_burst" } ], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "vanilla_data", "name" : "mojang-enchantment", "vanilla_data_type" : "enchantment" diff --git a/metadata/vanilladata_modules/mojang-entities.json b/metadata/vanilladata_modules/mojang-entities.json index 5ab3311a6..934483447 100644 --- a/metadata/vanilladata_modules/mojang-entities.json +++ b/metadata/vanilladata_modules/mojang-entities.json @@ -183,6 +183,9 @@ { "name" : "ocelot" }, + { + "name" : "ominous_item_spawner" + }, { "name" : "panda" }, @@ -358,7 +361,7 @@ "name" : "zombie_villager_v2" } ], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "vanilla_data", "name" : "mojang-entity", "vanilla_data_type" : "entity" diff --git a/metadata/vanilladata_modules/mojang-features.json b/metadata/vanilladata_modules/mojang-features.json index 76b16eecb..95b7c7f24 100644 --- a/metadata/vanilladata_modules/mojang-features.json +++ b/metadata/vanilladata_modules/mojang-features.json @@ -52,7 +52,7 @@ "name" : "minecraft:village" } ], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "vanilla_data", "name" : "mojang-feature", "vanilla_data_type" : "feature" diff --git a/metadata/vanilladata_modules/mojang-items.json b/metadata/vanilladata_modules/mojang-items.json index bbd3756ec..1f31b6c45 100644 --- a/metadata/vanilladata_modules/mojang-items.json +++ b/metadata/vanilladata_modules/mojang-items.json @@ -54,6 +54,9 @@ { "name" : "minecraft:activator_rail" }, + { + "name" : "minecraft:air" + }, { "name" : "minecraft:allay_spawn_egg" }, @@ -426,6 +429,9 @@ { "name" : "minecraft:brain_coral" }, + { + "name" : "minecraft:brain_coral_block" + }, { "name" : "minecraft:brain_coral_fan" }, @@ -450,6 +456,9 @@ { "name" : "minecraft:brick_block" }, + { + "name" : "minecraft:brick_slab" + }, { "name" : "minecraft:brick_stairs" }, @@ -498,6 +507,9 @@ { "name" : "minecraft:bubble_coral" }, + { + "name" : "minecraft:bubble_coral_block" + }, { "name" : "minecraft:bubble_coral_fan" }, @@ -708,6 +720,9 @@ { "name" : "minecraft:cobblestone" }, + { + "name" : "minecraft:cobblestone_slab" + }, { "name" : "minecraft:cobblestone_wall" }, @@ -993,30 +1008,45 @@ { "name" : "minecraft:dead_brain_coral" }, + { + "name" : "minecraft:dead_brain_coral_block" + }, { "name" : "minecraft:dead_brain_coral_fan" }, { "name" : "minecraft:dead_bubble_coral" }, + { + "name" : "minecraft:dead_bubble_coral_block" + }, { "name" : "minecraft:dead_bubble_coral_fan" }, { "name" : "minecraft:dead_fire_coral" }, + { + "name" : "minecraft:dead_fire_coral_block" + }, { "name" : "minecraft:dead_fire_coral_fan" }, { "name" : "minecraft:dead_horn_coral" }, + { + "name" : "minecraft:dead_horn_coral_block" + }, { "name" : "minecraft:dead_horn_coral_fan" }, { "name" : "minecraft:dead_tube_coral" }, + { + "name" : "minecraft:dead_tube_coral_block" + }, { "name" : "minecraft:dead_tube_coral_fan" }, @@ -1299,6 +1329,9 @@ { "name" : "minecraft:fermented_spider_eye" }, + { + "name" : "minecraft:fern" + }, { "name" : "minecraft:field_masoned_banner_pattern" }, @@ -1311,6 +1344,9 @@ { "name" : "minecraft:fire_coral" }, + { + "name" : "minecraft:fire_coral_block" + }, { "name" : "minecraft:fire_coral_fan" }, @@ -1623,6 +1659,9 @@ { "name" : "minecraft:horn_coral" }, + { + "name" : "minecraft:horn_coral_block" + }, { "name" : "minecraft:horn_coral_fan" }, @@ -1779,6 +1818,9 @@ { "name" : "minecraft:large_amethyst_bud" }, + { + "name" : "minecraft:large_fern" + }, { "name" : "minecraft:lava_bucket" }, @@ -1887,6 +1929,9 @@ { "name" : "minecraft:lightning_rod" }, + { + "name" : "minecraft:lilac" + }, { "name" : "minecraft:lily_of_the_valley" }, @@ -2139,6 +2184,12 @@ { "name" : "minecraft:music_disc_chirp" }, + { + "name" : "minecraft:music_disc_creator" + }, + { + "name" : "minecraft:music_disc_creator_music_box" + }, { "name" : "minecraft:music_disc_far" }, @@ -2154,6 +2205,9 @@ { "name" : "minecraft:music_disc_pigstep" }, + { + "name" : "minecraft:music_disc_precipice" + }, { "name" : "minecraft:music_disc_relic" }, @@ -2187,6 +2241,9 @@ { "name" : "minecraft:nether_brick_fence" }, + { + "name" : "minecraft:nether_brick_slab" + }, { "name" : "minecraft:nether_brick_stairs" }, @@ -2304,6 +2361,12 @@ { "name" : "minecraft:ochre_froglight" }, + { + "name" : "minecraft:ominous_bottle" + }, + { + "name" : "minecraft:ominous_trial_key" + }, { "name" : "minecraft:orange_candle" }, @@ -2391,6 +2454,12 @@ { "name" : "minecraft:pearlescent_froglight" }, + { + "name" : "minecraft:peony" + }, + { + "name" : "minecraft:petrified_oak_slab" + }, { "name" : "minecraft:phantom_membrane" }, @@ -2658,6 +2727,9 @@ { "name" : "minecraft:quartz_ore" }, + { + "name" : "minecraft:quartz_slab" + }, { "name" : "minecraft:quartz_stairs" }, @@ -2793,6 +2865,9 @@ { "name" : "minecraft:rib_armor_trim_smithing_template" }, + { + "name" : "minecraft:rose_bush" + }, { "name" : "minecraft:rotten_flesh" }, @@ -2814,6 +2889,9 @@ { "name" : "minecraft:sandstone" }, + { + "name" : "minecraft:sandstone_slab" + }, { "name" : "minecraft:sandstone_stairs" }, @@ -2871,6 +2949,9 @@ { "name" : "minecraft:shield" }, + { + "name" : "minecraft:short_grass" + }, { "name" : "minecraft:shroomlight" }, @@ -2943,6 +3024,9 @@ { "name" : "minecraft:smooth_stone" }, + { + "name" : "minecraft:smooth_stone_slab" + }, { "name" : "minecraft:sniffer_egg" }, @@ -3093,6 +3177,9 @@ { "name" : "minecraft:stone_block_slab4" }, + { + "name" : "minecraft:stone_brick_slab" + }, { "name" : "minecraft:stone_brick_stairs" }, @@ -3207,6 +3294,9 @@ { "name" : "minecraft:sugar_cane" }, + { + "name" : "minecraft:sunflower" + }, { "name" : "minecraft:suspicious_gravel" }, @@ -3225,6 +3315,9 @@ { "name" : "minecraft:tadpole_spawn_egg" }, + { + "name" : "minecraft:tall_grass" + }, { "name" : "minecraft:tallgrass" }, @@ -3288,6 +3381,9 @@ { "name" : "minecraft:tube_coral" }, + { + "name" : "minecraft:tube_coral_block" + }, { "name" : "minecraft:tube_coral_fan" }, @@ -3721,7 +3817,7 @@ "name" : "minecraft:zombie_villager_spawn_egg" } ], - "minecraft_version" : "1.20.80-beta.5", + "minecraft_version" : "1.21.0-beta.0", "module_type" : "vanilla_data", "name" : "mojang-item", "vanilla_data_type" : "item" diff --git a/resource_pack/animation_controllers/breeze.animation_controllers.json b/resource_pack/animation_controllers/breeze.animation_controllers.json new file mode 100644 index 000000000..941aa6dba --- /dev/null +++ b/resource_pack/animation_controllers/breeze.animation_controllers.json @@ -0,0 +1,127 @@ +{ + "format_version": "1.10.0", + "animation_controllers": { + "controller.animation.breeze.look_at": { + "initial_state": "default", + "states": { + "default": { + "animations": [ "look_at" ] + } + } + }, + "controller.animation.breeze.idle": { + "initial_state": "default", + "states": { + "default": { + "animations": [ "idle" ] + } + } + }, + "controller.animation.breeze.idle_ground_sound": { + "initial_state": "default", + "states": { + "default": { + "animations": [ "idle_ground_sound" ] + } + } + }, + "controller.animation.breeze.move": { + "initial_state": "default", + "states": { + "default": { + "animations": [ "whirl_sound" ], + "transitions": [ + { + "moving": "query.modified_move_speed > 0.1 && query.vertical_speed == 0" + } + ] + }, + "moving": { + "animations": [ "slide" ], + "sound_effects": [ + { + "effect": "slide" + } + ], + "transitions": [ + { + "default": "query.modified_move_speed < 0.1" + } + ], + "blend_transition": 0.2 + } + } + }, + "controller.animation.breeze.ground_particles": { + "initial_state": "default", + "states": { + "default": { + "transitions": [ + { "idling": "!query.is_moving && query.is_on_ground && query.vertical_speed > -2 && !query.is_riding" }, + { "moving": "query.is_moving && query.is_on_ground && query.vertical_speed > -2 && !query.is_riding" } + ] + }, + "idling": { + "animations": [ "idle_ground_particles" ], + "transitions": [ + { "default": "!query.is_on_ground || query.is_riding" }, + { "moving": "query.is_moving && query.is_on_ground && !query.is_riding" } + ] + }, + "moving": { + "animations": [ "slide_ground_particles" ], + "transitions": [ + { "default": "!query.is_on_ground || query.is_riding" }, + { "idling": "!query.is_moving && query.is_on_ground && !query.is_riding" } + ] + } + } + }, + "controller.animation.breeze.shoot": { + "initial_state": "default", + "states": { + "default": { + "transitions": [ + { + "shoot": "query.facing_target_to_range_attack" + } + ] + }, + "shoot": { + "animations": [ "shoot" ], + "sound_effects": [ + { + "effect": "inhale" + } + ], + "transitions": [ + { + "default": "!query.facing_target_to_range_attack || query.all_animations_finished" + } + ] + } + } + }, + "controller.animation.breeze.jump": { + "initial_state": "default", + "states": { + "default": { + "transitions": [ + { "jump": "query.is_jump_goal_jumping" } + ] + }, + "jump": { + "animations": [ "jump" ], + "sound_effects": [ + { + "effect": "charge" + } + ], + "transitions": [ + { "default": "!query.is_jump_goal_jumping" } + ] + } + } + } + } +} diff --git a/resource_pack/animations/breeze.animation.json b/resource_pack/animations/breeze.animation.json new file mode 100644 index 000000000..6175a537f --- /dev/null +++ b/resource_pack/animations/breeze.animation.json @@ -0,0 +1,283 @@ +{ + "format_version": "1.8.0", + "animations": { + "animation.breeze.idle_ground_particles": { + "loop": true, + "animation_length": 0.1, + "particle_effects": { + "0.0": { + "effect": "ground_particles", + "pre_effect_script": "variable.ground_particle_amount = 1; variable.ground_particle_initial_speed = math.random( 2, 3 ); variable.ground_particle_texture_coordinate = query.surface_particle_texture_coordinate; variable.ground_particle_texture_size = query.surface_particle_texture_size;" + } + } + }, + "animation.breeze.slide_ground_particles": { + "loop": true, + "animation_length": 0.1, + "particle_effects": { + "0.0": { + "effect": "ground_particles", + "pre_effect_script": "variable.ground_particle_amount = 5; variable.ground_particle_initial_speed = math.random( 3, 4 ); variable.ground_particle_texture_coordinate = query.surface_particle_texture_coordinate; variable.ground_particle_texture_size = query.surface_particle_texture_size;" + } + } + }, + "animation.breeze.whirl_sound": { + "loop": true, + "animation_length": 1.5, + "sound_effects": { + "0.0": { + "effect": "whirl" + } + } + }, + "animation.breeze.idle_ground_sound": { + "loop": true, + "animation_length": 6.0, + "sound_effects": { + "0.0": { + "effect": "idle_ground_sound" + } + } + }, + "animation.breeze.idle": { + "loop": true, + "animation_length": 2, + "bones": { + "tornado_top": { + "position": { + "0.0": [ 0.5, 0, 0 ], + "0.25": [ 0.5, 0, -0.5 ], + "0.75": [ -0.5, 0, -0.5 ], + "1.25": [ -0.5, 0, 0.5 ], + "1.75": [ 0.5, 0, 0.5 ], + "2.0": [ 0.5, 0, 0 ] + } + }, + "tornado_mid": { + "position": { + "0.0": [ 0.5, 0, -0.5 ], + "0.5": [ -0.5, 0, -0.5 ], + "1.0": [ -0.5, 0, 0.5 ], + "1.5": [ 0.5, 0, 0.5 ], + "2.0": [ 0.5, 0, -0.5 ] + } + }, + "head": { + "position": { + "0.0": { + "post": [ 0, 0, 0 ], + "lerp_mode": "catmullrom" + }, + "1.0": { + "post": [ 0, 1, 0 ], + "lerp_mode": "catmullrom" + }, + "2.0": { + "post": [ 0, 0, 0 ], + "lerp_mode": "catmullrom" + } + } + }, + "rods": { + "rotation": { + "0.0": [ 0, 0, 0 ], + "2.0": [ 0, 1080, 0 ] + }, + "position": { + "0.0": [ 0, 0, 0 ], + "1.0": [ 0, -1, 0 ], + "2.0": [ 0, 0, 0 ] + } + } + } + }, + "animation.breeze.shoot": { + "animation_length": 1.125, + "bones": { + "head": { + "rotation": { + "0.0": [ 0, 0, 0 ], + "0.25": [ -12.5, 0, 0 ], + "0.75": [ -12.5, 0, 0 ], + "0.9167": [ 5, 0, 0 ], + "1.125": [ 0, 0, 0 ] + }, + "position": { + "0.0": [ 0, 0, 0 ], + "0.25": [ 0, -2, 0 ], + "0.7917": [ 0, -1, 2 ], + "0.9583": [ 0, -1, 0 ], + "1.125": [ 0, 0, 0 ] + } + }, + "tornado_bottom": { + "rotation": [ 0, 0, 0 ] + }, + "tornado_mid": { + "rotation": { + "0.0": [ 0, 0, 0 ], + "0.25": [ 12.5, 0, 0 ], + "0.75": [ 12.5, 0, 0 ], + "0.9167": [ -10, 0, 0 ], + "1.125": [ 0, 0, 0 ] + }, + "position": { + "0.0": [ 0, 0, 0 ], + "0.25": [ 0, 0, 5 ], + "0.75": [ 0, 0, 6 ], + "0.9167": [ 0, 0, -2 ], + "1.125": [ 0, 0, 0 ] + } + }, + "tornado_top": { + "rotation": { + "0.0": [ 0, 0, 0 ], + "0.25": [ 15, 0, 0 ], + "0.75": [ 15, 0, 0 ], + "0.9167": [ -10, 0, 0 ], + "1.125": [ 0, 0, 0 ] + }, + "position": { + "0.0": [ 0, 0, 0 ], + "0.25": [ 0, 0, 3 ], + "0.8333": [ 0, 0, 4 ], + "0.9583": [ 0, 0, -2 ], + "1.125": [ 0, 0, 0 ] + } + }, + "body": { + "rotation": { + "0.0": [ 0, 0, 0 ], + "0.25": [ 12.5, 0, 0 ], + "0.75": [ 12.5, 0, 0 ], + "0.9167": [ -2.5, 0, 0 ], + "1.125": [ 0, 0, 0 ] + }, + "position": { + "0.0": [ 0, 0, 0 ], + "0.25": [ 0, 3, 5 ], + "0.8333": [ 0, 3, 6 ], + "0.9583": [ 0, 3, -1 ], + "1.125": [ 0, 0, 0 ] + } + }, + "rods": { + "rotation": { + "0.0": [ 0, 0, 0 ], + "1.0": [ 0, 360, 0 ] + } + } + } + }, + "animation.breeze.jump": { + "animation_length": 1.125, + "bones": { + "body": { + "position": { + "0.0": [ 0, 0, 0 ], + "0.5": [ 0, -10, 0 ], + "0.625": [ 0, -10, 0 ], + "0.75": [ 0, 11, 0 ], + "1.125": [ 0, 0, 0 ] + } + }, + "head": { + "rotation": { + "0.0": [ 0, 0, 0 ], + "0.5": [ 22.5, 0, 0 ], + "0.625": [ 22.5, 0, 0 ], + "0.8333": [ -19.25, 0, 0 ], + "1.125": [ 0, 0, 0 ] + } + }, + "tornado_body": { + "scale": { + "0.0": [ 1, 1, 1 ], + "0.5": [ 1, 1, 1 ], + "0.625": [ 1, 1, 1 ], + "0.75": [ 1, 1.3, 1 ], + "1.125": [ 1, 1, 1 ] + } + }, + "tornado_bottom": { + "rotation": { + "0.0": [ 0, 0, 0 ], + "0.625": [ 0, 90, 0 ], + "1.125": [ 0, 360, 0 ] + }, + "scale": { + "0.0": [ 1, 1, 1 ], + "0.5": [ 1, 1, 1 ], + "0.625": [ 1, 1, 1 ], + "0.75": [ 1, 1.1, 1 ], + "1.125": [ 1, 1, 1 ] + } + }, + "tornado_mid": { + "rotation": { + "0.0": [ 0, 0, 0 ], + "0.625": [ 0, 0, 0 ], + "1.125": [ 0, 180, 0 ] + }, + "position": { + "0.0": [ 0, 0, 0 ], + "0.5": [ 0, -6, 0 ], + "0.625": [ 0, -6, 0 ], + "0.75": [ 0, 2, 0 ], + "1.125": [ 0, 0, 0 ] + } + }, + "tornado_top": { + "rotation": { + "0.0": [ 0, 0, 0 ], + "0.625": [ 0, 0, 0 ], + "1.125": [ 0, 90, 0 ] + }, + "position": { + "0.0": [ 0, 0, 0 ], + "0.5": [ 0, -5, 0 ], + "0.625": [ 0, -5, 0 ], + "0.75": [ 0, 2, 0 ], + "1.125": [ 0, 0, 0 ] + } + }, + "rods": { + "rotation": { + "0.0": [ 0, 0, 0 ], + "0.8333": [ 0, 360, 0 ] + } + } + }, + "particle_effects": { + "0.75": { + "effect": "ground_particles", + "pre_effect_script": "variable.ground_particle_amount = math.round(math.random( 3, 4)); variable.ground_particle_initial_speed = math.random( 5, 6 ); variable.ground_particle_texture_coordinate = query.surface_particle_texture_coordinate; variable.ground_particle_texture_size = query.surface_particle_texture_size;" + } + } + }, + "animation.breeze.slide": { + "loop": "hold_on_last_frame", + "animation_length": 0.2, + "bones": { + "body": { + "position": { + "0.0": [ 0, 0, 0 ], + "0.2": [ 0, 0, -6 ] + } + }, + "tornado_mid": { + "position": { + "0.0": [ 0, 0, 0 ], + "0.2": [ 0, 0, -3 ] + } + }, + "tornado_top": { + "position": { + "0.0": [ 0, 0, 0 ], + "0.2": [ 0, 0, -2 ] + } + } + } + } + } +} diff --git a/resource_pack/animations/wind_charge.animation.json b/resource_pack/animations/wind_charge.animation.json new file mode 100644 index 000000000..c6bc19eb9 --- /dev/null +++ b/resource_pack/animations/wind_charge.animation.json @@ -0,0 +1,16 @@ +{ + "format_version" : "1.8.0", + "animations" : { + "animation.wind_charge.rotate" : { + "loop" : true, + "bones" : { + "wind" : { + "rotation" : [ 0.0, "-query.life_time * 20 * 16", 0.0 ] + }, + "wind_charge" : { + "rotation" : [ 0.0, "query.life_time * 20 * 16", 0.0 ] + } + } + } + } +} diff --git a/resource_pack/blocks.json b/resource_pack/blocks.json index 4ac7bc35c..7a6e5ffb5 100644 --- a/resource_pack/blocks.json +++ b/resource_pack/blocks.json @@ -605,6 +605,10 @@ "sound" : "stone", "textures" : "brain_coral" }, + "brain_coral_block" : { + "sound" : "stone", + "textures" : "brain_coral_block" + }, "brain_coral_fan" : { "carried_textures" : "brain_coral_fan", "sound" : "stone", @@ -625,6 +629,10 @@ "brick_block" : { "textures" : "brick" }, + "brick_slab" : { + "sound" : "stone", + "textures" : "brick_slab" + }, "brick_stairs" : { "textures" : "brick" }, @@ -718,6 +726,10 @@ "sound" : "stone", "textures" : "bubble_coral" }, + "bubble_coral_block" : { + "sound" : "stone", + "textures" : "bubble_coral_block" + }, "bubble_coral_fan" : { "carried_textures" : "bubble_coral_fan", "sound" : "stone", @@ -989,6 +1001,10 @@ "west" : "chiseled_bookshelf_side" } }, + "chiseled_copper" : { + "sound" : "copper", + "textures" : "chiseled_copper" + }, "chiseled_deepslate" : { "isotropic" : false, "sound" : "deepslate_bricks", @@ -1002,6 +1018,22 @@ "sound" : "stone", "textures" : "chiseled_polished_blackstone" }, + "chiseled_tuff" : { + "sound" : "tuff", + "textures" : { + "down" : "chiseled_tuff_top", + "side" : "chiseled_tuff", + "up" : "chiseled_tuff_top" + } + }, + "chiseled_tuff_bricks" : { + "sound" : "tuff_bricks", + "textures" : { + "down" : "chiseled_tuff_bricks_top", + "side" : "chiseled_tuff_bricks", + "up" : "chiseled_tuff_bricks_top" + } + }, "chorus_flower" : { "sound" : "stone", "textures" : "chorus_flower" @@ -1052,6 +1084,10 @@ "sound" : "stone", "textures" : "cobblestone" }, + "cobblestone_slab" : { + "sound" : "stone", + "textures" : "cobblestone_slab" + }, "cobblestone_wall" : { "textures" : "cobblestone_wall" }, @@ -1095,11 +1131,32 @@ "sound" : "copper", "textures" : "copper_block" }, + "copper_bulb" : { + "isotropic" : false, + "sound" : "copper_bulb", + "textures" : "copper_bulb" + }, + "copper_door" : { + "sound" : "copper", + "textures" : { + "down" : "copper_door_bottom", + "side" : "copper_door_top", + "up" : "copper_door_bottom" + } + }, + "copper_grate" : { + "sound" : "copper_grate", + "textures" : "copper_grate" + }, "copper_ore" : { "isotropic" : false, "sound" : "stone", "textures" : "copper_ore" }, + "copper_trapdoor" : { + "sound" : "copper", + "textures" : "copper_trapdoor" + }, "coral" : { "carried_textures" : "coral", "sound" : "stone", @@ -1176,6 +1233,17 @@ "sound" : "stone", "textures" : "cracked_polished_blackstone_bricks" }, + "crafter" : { + "sound" : "stone", + "textures" : { + "down" : "crafter_bottom", + "east" : "crafter_east", + "north" : "crafter_north", + "south" : "crafter_south", + "up" : "crafter_top", + "west" : "crafter_west" + } + }, "crafting_table" : { "sound" : "wood", "textures" : { @@ -1479,6 +1547,10 @@ "sound" : "stone", "textures" : "dead_brain_coral" }, + "dead_brain_coral_block" : { + "sound" : "stone", + "textures" : "dead_brain_coral_block" + }, "dead_brain_coral_fan" : { "carried_textures" : "dead_brain_coral_fan", "sound" : "stone", @@ -1493,6 +1565,10 @@ "sound" : "stone", "textures" : "dead_bubble_coral" }, + "dead_bubble_coral_block" : { + "sound" : "stone", + "textures" : "dead_bubble_coral_block" + }, "dead_bubble_coral_fan" : { "carried_textures" : "dead_bubble_coral_fan", "sound" : "stone", @@ -1507,6 +1583,10 @@ "sound" : "stone", "textures" : "dead_fire_coral" }, + "dead_fire_coral_block" : { + "sound" : "stone", + "textures" : "dead_fire_coral_block" + }, "dead_fire_coral_fan" : { "carried_textures" : "dead_fire_coral_fan", "sound" : "stone", @@ -1521,6 +1601,10 @@ "sound" : "stone", "textures" : "dead_horn_coral" }, + "dead_horn_coral_block" : { + "sound" : "stone", + "textures" : "dead_horn_coral_block" + }, "dead_horn_coral_fan" : { "carried_textures" : "dead_horn_coral_fan", "sound" : "stone", @@ -1535,6 +1619,10 @@ "sound" : "stone", "textures" : "dead_tube_coral" }, + "dead_tube_coral_block" : { + "sound" : "stone", + "textures" : "dead_tube_coral_block" + }, "dead_tube_coral_fan" : { "carried_textures" : "dead_tube_coral_fan", "sound" : "stone", @@ -1862,11 +1950,36 @@ "west" : "ender_chest_inventory_side" } }, + "exposed_chiseled_copper" : { + "sound" : "copper", + "textures" : "exposed_chiseled_copper" + }, "exposed_copper" : { "isotropic" : false, "sound" : "copper", "textures" : "exposed_copper" }, + "exposed_copper_bulb" : { + "isotropic" : false, + "sound" : "copper_bulb", + "textures" : "exposed_copper_bulb" + }, + "exposed_copper_door" : { + "sound" : "copper", + "textures" : { + "down" : "exposed_copper_door_bottom", + "side" : "exposed_copper_door_top", + "up" : "exposed_copper_door_bottom" + } + }, + "exposed_copper_grate" : { + "sound" : "copper_grate", + "textures" : "exposed_copper_grate" + }, + "exposed_copper_trapdoor" : { + "sound" : "copper", + "textures" : "exposed_copper_trapdoor" + }, "exposed_cut_copper" : { "isotropic" : false, "sound" : "copper", @@ -1903,6 +2016,11 @@ "sound" : "wood", "textures" : "wood_oak" }, + "fern" : { + "carried_textures" : "fern_carried", + "sound" : "grass", + "textures" : "fern" + }, "fire" : { "sound" : "wood", "textures" : { @@ -1916,6 +2034,10 @@ "sound" : "stone", "textures" : "fire_coral" }, + "fire_coral_block" : { + "sound" : "stone", + "textures" : "fire_coral_block" + }, "fire_coral_fan" : { "carried_textures" : "fire_coral_fan", "sound" : "stone", @@ -2225,6 +2347,10 @@ "up" : "hayblock_top" } }, + "heavy_core" : { + "sound" : "heavy_core", + "textures" : "heavy_core" + }, "heavy_weighted_pressure_plate" : { "sound" : "metal", "textures" : "iron_block" @@ -2260,6 +2386,10 @@ "sound" : "stone", "textures" : "horn_coral" }, + "horn_coral_block" : { + "sound" : "stone", + "textures" : "horn_coral_block" + }, "horn_coral_fan" : { "carried_textures" : "horn_coral_fan", "sound" : "stone", @@ -2456,6 +2586,15 @@ "sound" : "large_amethyst_bud", "textures" : "large_amethyst_bud" }, + "large_fern" : { + "carried_textures" : "large_fern_carried", + "sound" : "grass", + "textures" : { + "down" : "large_fern_bottom", + "side" : "sunflower_additional", + "up" : "large_fern_top" + } + }, "lava" : { "isotropic" : true, "textures" : { @@ -2642,6 +2781,15 @@ "sound" : "copper", "textures" : "lightning_rod" }, + "lilac" : { + "carried_textures" : "lilac_carried", + "sound" : "grass", + "textures" : { + "down" : "lilac_bottom", + "side" : "lilac_additional", + "up" : "lilac_top" + } + }, "lily_of_the_valley" : { "sound" : "grass", "textures" : "lily_of_the_valley" @@ -3060,6 +3208,10 @@ "sound" : "nether_brick", "textures" : "nether_brick" }, + "nether_brick_slab" : { + "sound" : "stone", + "textures" : "nether_brick_slab" + }, "nether_brick_stairs" : { "sound" : "nether_brick", "textures" : "nether_brick" @@ -3240,11 +3392,36 @@ "sound" : "grass", "textures" : "oxeye_daisy" }, + "oxidized_chiseled_copper" : { + "sound" : "copper", + "textures" : "oxidized_chiseled_copper" + }, "oxidized_copper" : { "isotropic" : false, "sound" : "copper", "textures" : "oxidized_copper" }, + "oxidized_copper_bulb" : { + "isotropic" : false, + "sound" : "copper_bulb", + "textures" : "oxidized_copper_bulb" + }, + "oxidized_copper_door" : { + "sound" : "copper", + "textures" : { + "down" : "oxidized_copper_door_bottom", + "side" : "oxidized_copper_door_top", + "up" : "oxidized_copper_door_bottom" + } + }, + "oxidized_copper_grate" : { + "sound" : "copper_grate", + "textures" : "oxidized_copper_grate" + }, + "oxidized_copper_trapdoor" : { + "sound" : "copper", + "textures" : "oxidized_copper_trapdoor" + }, "oxidized_cut_copper" : { "isotropic" : false, "sound" : "copper", @@ -3281,6 +3458,19 @@ "up" : "pearlescent_froglight_top" } }, + "peony" : { + "carried_textures" : "peony_carried", + "sound" : "grass", + "textures" : { + "down" : "peony_bottom", + "side" : "sunflower_additional", + "up" : "peony_top" + } + }, + "petrified_oak_slab" : { + "sound" : "stone", + "textures" : "oak_planks" + }, "pink_candle" : { "carried_textures" : "pink_candle_carried", "sound" : "candle", @@ -3505,6 +3695,26 @@ "sound" : "stone", "textures" : "polished_granite" }, + "polished_tuff" : { + "sound" : "polished_tuff", + "textures" : "polished_tuff" + }, + "polished_tuff_double_slab" : { + "sound" : "polished_tuff", + "textures" : "polished_tuff" + }, + "polished_tuff_slab" : { + "sound" : "polished_tuff", + "textures" : "polished_tuff" + }, + "polished_tuff_stairs" : { + "sound" : "polished_tuff", + "textures" : "polished_tuff" + }, + "polished_tuff_wall" : { + "sound" : "polished_tuff", + "textures" : "polished_tuff" + }, "poppy" : { "sound" : "grass", "textures" : "poppy" @@ -3651,6 +3861,14 @@ "sound" : "nether_gold_ore", "textures" : "quartz_ore" }, + "quartz_slab" : { + "sound" : "stone", + "textures" : { + "down" : "quartz_slab_bottom", + "side" : "quartz_slab_side", + "up" : "quartz_slab_top" + } + }, "quartz_stairs" : { "textures" : { "down" : "stair_quartz_block_bottom", @@ -3857,6 +4075,15 @@ "west" : "respawn_anchor_side" } }, + "rose_bush" : { + "carried_textures" : "rose_bush_carried", + "sound" : "grass", + "textures" : { + "down" : "rose_bush_bottom", + "side" : "sunflower_additional", + "up" : "rose_bush_top" + } + }, "sand" : { "brightness_gamma" : 0.550, "isotropic" : true, @@ -3876,6 +4103,14 @@ "up" : "sandstone_top" } }, + "sandstone_slab" : { + "sound" : "stone", + "textures" : { + "down" : "sandstone_slab_bottom", + "side" : "sandstone_slab_side", + "up" : "sandstone_slab_top" + } + }, "sandstone_stairs" : { "isotropic" : { "down" : true, @@ -3960,6 +4195,11 @@ "west" : "seagrass_tall_top_b" } }, + "short_grass" : { + "carried_textures" : "short_grass_carried", + "sound" : "grass", + "textures" : "short_grass" + }, "shroomlight" : { "sound" : "shroomlight", "textures" : "shroomlight" @@ -4037,6 +4277,14 @@ "sound" : "stone", "textures" : "smooth_stone" }, + "smooth_stone_slab" : { + "sound" : "stone", + "textures" : { + "down" : "smooth_stone_slab_bottom", + "side" : "smooth_stone_slab_side", + "up" : "smooth_stone_slab_top" + } + }, "sniffer_egg" : { "carried_textures" : "sniffer_egg_carried", "sound" : "metal", @@ -4237,6 +4485,10 @@ "sound" : "stone", "textures" : "stone" }, + "stone_brick_slab" : { + "sound" : "stone", + "textures" : "stone_brick_slab" + }, "stone_brick_stairs" : { "textures" : "stonebrick" }, @@ -4469,6 +4721,15 @@ "structure_void" : { "textures" : "structure_void" }, + "sunflower" : { + "carried_textures" : "sunflower_carried", + "sound" : "grass", + "textures" : { + "down" : "sunflower_bottom", + "side" : "sunflower_additional", + "up" : "sunflower_top" + } + }, "suspicious_gravel" : { "sound" : "suspicious_gravel", "textures" : "suspicious_gravel" @@ -4489,6 +4750,15 @@ "west" : "sweet_berry_bush_3" } }, + "tall_grass" : { + "carried_textures" : "tall_grass_carried", + "sound" : "grass", + "textures" : { + "down" : "tall_grass_bottom", + "side" : "sunflower_additional", + "up" : "tall_grass_top" + } + }, "tallgrass" : { "carried_textures" : "tallgrass_carried", "sound" : "grass", @@ -4541,6 +4811,14 @@ "west" : "chest_inventory_side" } }, + "trial_spawner" : { + "sound" : "trial_spawner", + "textures" : { + "down" : "trial_spawner_bottom", + "side" : "trial_spawner_side", + "up" : "trial_spawner_top" + } + }, "tripWire" : { "textures" : "trip_wire" }, @@ -4559,6 +4837,10 @@ "sound" : "stone", "textures" : "tube_coral" }, + "tube_coral_block" : { + "sound" : "stone", + "textures" : "tube_coral_block" + }, "tube_coral_fan" : { "carried_textures" : "tube_coral_fan", "sound" : "stone", @@ -4572,6 +4854,42 @@ "sound" : "tuff", "textures" : "tuff" }, + "tuff_brick_double_slab" : { + "sound" : "tuff_bricks", + "textures" : "tuff_bricks" + }, + "tuff_brick_slab" : { + "sound" : "tuff_bricks", + "textures" : "tuff_bricks" + }, + "tuff_brick_stairs" : { + "sound" : "tuff_bricks", + "textures" : "tuff_bricks" + }, + "tuff_brick_wall" : { + "sound" : "tuff_bricks", + "textures" : "tuff_bricks" + }, + "tuff_bricks" : { + "sound" : "tuff_bricks", + "textures" : "tuff_bricks" + }, + "tuff_double_slab" : { + "sound" : "tuff", + "textures" : "tuff" + }, + "tuff_slab" : { + "sound" : "tuff", + "textures" : "tuff" + }, + "tuff_stairs" : { + "sound" : "tuff", + "textures" : "tuff" + }, + "tuff_wall" : { + "sound" : "tuff", + "textures" : "tuff" + }, "turtle_egg" : { "carried_textures" : "turtle_egg_carried", "textures" : "turtle_egg" @@ -4611,6 +4929,17 @@ "up" : "repeater_up" } }, + "vault" : { + "sound" : "vault", + "textures" : { + "down" : "vault_bottom", + "east" : "vault_side", + "north" : "vault_front", + "south" : "vault_side", + "up" : "vault_top", + "west" : "vault_side" + } + }, "verdant_froglight" : { "sound" : "froglight", "textures" : { @@ -4756,11 +5085,36 @@ "sound" : "grass", "textures" : "waterlily" }, + "waxed_chiseled_copper" : { + "sound" : "copper", + "textures" : "chiseled_copper" + }, "waxed_copper" : { "isotropic" : false, "sound" : "copper", "textures" : "copper_block" }, + "waxed_copper_bulb" : { + "isotropic" : false, + "sound" : "copper_bulb", + "textures" : "copper_bulb" + }, + "waxed_copper_door" : { + "sound" : "copper", + "textures" : { + "down" : "copper_door_bottom", + "side" : "copper_door_top", + "up" : "copper_door_bottom" + } + }, + "waxed_copper_grate" : { + "sound" : "copper_grate", + "textures" : "copper_grate" + }, + "waxed_copper_trapdoor" : { + "sound" : "copper", + "textures" : "copper_trapdoor" + }, "waxed_cut_copper" : { "isotropic" : false, "sound" : "copper", @@ -4781,11 +5135,36 @@ "sound" : "copper", "textures" : "cut_copper" }, + "waxed_exposed_chiseled_copper" : { + "sound" : "copper", + "textures" : "exposed_chiseled_copper" + }, "waxed_exposed_copper" : { "isotropic" : false, "sound" : "copper", "textures" : "exposed_copper" }, + "waxed_exposed_copper_bulb" : { + "isotropic" : false, + "sound" : "copper_bulb", + "textures" : "exposed_copper_bulb" + }, + "waxed_exposed_copper_door" : { + "sound" : "copper", + "textures" : { + "down" : "exposed_copper_door_bottom", + "side" : "exposed_copper_door_top", + "up" : "exposed_copper_door_bottom" + } + }, + "waxed_exposed_copper_grate" : { + "sound" : "copper_grate", + "textures" : "exposed_copper_grate" + }, + "waxed_exposed_copper_trapdoor" : { + "sound" : "copper", + "textures" : "exposed_copper_trapdoor" + }, "waxed_exposed_cut_copper" : { "isotropic" : false, "sound" : "copper", @@ -4806,11 +5185,36 @@ "sound" : "copper", "textures" : "exposed_cut_copper" }, + "waxed_oxidized_chiseled_copper" : { + "sound" : "copper", + "textures" : "oxidized_chiseled_copper" + }, "waxed_oxidized_copper" : { "isotropic" : false, "sound" : "copper", "textures" : "oxidized_copper" }, + "waxed_oxidized_copper_bulb" : { + "isotropic" : false, + "sound" : "copper_bulb", + "textures" : "oxidized_copper_bulb" + }, + "waxed_oxidized_copper_door" : { + "sound" : "copper", + "textures" : { + "down" : "oxidized_copper_door_bottom", + "side" : "oxidized_copper_door_top", + "up" : "oxidized_copper_door_bottom" + } + }, + "waxed_oxidized_copper_grate" : { + "sound" : "copper_grate", + "textures" : "oxidized_copper_grate" + }, + "waxed_oxidized_copper_trapdoor" : { + "sound" : "copper", + "textures" : "oxidized_copper_trapdoor" + }, "waxed_oxidized_cut_copper" : { "isotropic" : false, "sound" : "copper", @@ -4831,11 +5235,36 @@ "sound" : "copper", "textures" : "oxidized_cut_copper" }, + "waxed_weathered_chiseled_copper" : { + "sound" : "copper", + "textures" : "weathered_chiseled_copper" + }, "waxed_weathered_copper" : { "isotropic" : false, "sound" : "copper", "textures" : "weathered_copper" }, + "waxed_weathered_copper_bulb" : { + "isotropic" : false, + "sound" : "copper_bulb", + "textures" : "weathered_copper_bulb" + }, + "waxed_weathered_copper_door" : { + "sound" : "copper", + "textures" : { + "down" : "weathered_copper_door_bottom", + "side" : "weathered_copper_door_top", + "up" : "weathered_copper_door_bottom" + } + }, + "waxed_weathered_copper_grate" : { + "sound" : "copper_grate", + "textures" : "weathered_copper_grate" + }, + "waxed_weathered_copper_trapdoor" : { + "sound" : "copper", + "textures" : "weathered_copper_trapdoor" + }, "waxed_weathered_cut_copper" : { "isotropic" : false, "sound" : "copper", @@ -4856,11 +5285,36 @@ "sound" : "copper", "textures" : "weathered_cut_copper" }, + "weathered_chiseled_copper" : { + "sound" : "copper", + "textures" : "weathered_chiseled_copper" + }, "weathered_copper" : { "isotropic" : false, "sound" : "copper", "textures" : "weathered_copper" }, + "weathered_copper_bulb" : { + "isotropic" : false, + "sound" : "copper_bulb", + "textures" : "weathered_copper_bulb" + }, + "weathered_copper_door" : { + "sound" : "copper", + "textures" : { + "down" : "weathered_copper_door_bottom", + "side" : "weathered_copper_door_top", + "up" : "weathered_copper_door_bottom" + } + }, + "weathered_copper_grate" : { + "sound" : "copper_grate", + "textures" : "weathered_copper_grate" + }, + "weathered_copper_trapdoor" : { + "sound" : "copper", + "textures" : "weathered_copper_trapdoor" + }, "weathered_cut_copper" : { "isotropic" : false, "sound" : "copper", @@ -4882,6 +5336,7 @@ "textures" : "weathered_cut_copper" }, "web" : { + "sound" : "web", "textures" : "web" }, "weeping_vines" : { diff --git a/resource_pack/entity/bogged.entity.json b/resource_pack/entity/bogged.entity.json new file mode 100644 index 000000000..da02879b4 --- /dev/null +++ b/resource_pack/entity/bogged.entity.json @@ -0,0 +1,97 @@ +{ + "format_version": "1.8.0", + "minecraft:client_entity": { + "description": { + "identifier": "minecraft:bogged", + "materials": { + "default": "bogged", + "overlay": "bogged_clothes" + }, + "textures": { + "default": "textures/entity/skeleton/bogged", + "overlay": "textures/entity/skeleton/bogged_clothes" + }, + "geometry": { + "default": "geometry.skeleton.bogged", + "overlay": "geometry.bogged.armor" + }, + "spawn_egg": { + "base_color": "#8A9C72", + "overlay_color": "#314D1B" + }, + "scripts": { + "pre_animation": [ + "variable.tcos0 = (Math.cos(query.modified_distance_moved * 38.17) * query.modified_move_speed / variable.gliding_speed_value) * 57.3;" + ] + }, + "animations": { + "look_at_target_default": "animation.humanoid.look_at_target.default", + "look_at_target_gliding": "animation.humanoid.look_at_target.gliding", + "look_at_target_swimming": "animation.humanoid.look_at_target.swimming", + "move": "animation.humanoid.move", + "riding.arms": "animation.humanoid.riding.arms", + "riding.legs": "animation.humanoid.riding.legs", + "holding": "animation.humanoid.holding", + "brandish_spear": "animation.humanoid.brandish_spear", + "charging": "animation.humanoid.charging", + "attack.rotations": "animation.humanoid.attack.rotations", + "sneaking": "animation.humanoid.sneaking", + "bob": "animation.humanoid.bob", + "damage_nearby_mobs": "animation.humanoid.damage_nearby_mobs", + "bow_and_arrow": "animation.humanoid.bow_and_arrow", + "swimming": "animation.zombie.swimming", + "use_item_progress": "animation.humanoid.use_item_progress", + "skeleton_attack": "animation.skeleton.attack" + }, + "animation_controllers": [ + { + "look_at_target": "controller.animation.humanoid.look_at_target" + }, + { + "move": "controller.animation.humanoid.move" + }, + { + "riding": "controller.animation.humanoid.riding" + }, + { + "holding": "controller.animation.humanoid.holding" + }, + { + "brandish_spear": "controller.animation.humanoid.brandish_spear" + }, + { + "charging": "controller.animation.humanoid.charging" + }, + { + "attack": "controller.animation.humanoid.attack" + }, + { + "sneaking": "controller.animation.humanoid.sneaking" + }, + { + "bob": "controller.animation.humanoid.bob" + }, + { + "damage_nearby_mobs": "controller.animation.humanoid.damage_nearby_mobs" + }, + { + "bow_and_arrow": "controller.animation.humanoid.bow_and_arrow" + }, + { + "swimming": "controller.animation.zombie.swimming" + }, + { + "use_item_progress": "controller.animation.humanoid.use_item_progress" + }, + { + "skeleton_attack": "controller.animation.skeleton.attack" + } + ], + "render_controllers": [ + "controller.render.bogged_clothes", + "controller.render.bogged" + ], + "enable_attachables": true + } + } +} \ No newline at end of file diff --git a/resource_pack/entity/breeze.entity.json b/resource_pack/entity/breeze.entity.json new file mode 100644 index 000000000..be34a5ed3 --- /dev/null +++ b/resource_pack/entity/breeze.entity.json @@ -0,0 +1,76 @@ +{ + "format_version": "1.10.0", + "minecraft:client_entity": { + "description": { + "identifier": "minecraft:breeze", + "materials": { + "default": "breeze", + "breeze_eyes": "breeze_eyes", + "breeze_wind": "breeze_wind" + }, + "textures": { + "default": "textures/entity/breeze/breeze", + "breeze_wind": "textures/entity/breeze/breeze_wind", + "breeze_eyes": "textures/entity/breeze/breeze_eyes" + }, + "geometry": { + "default": "geometry.breeze", + "breeze_eyes": "geometry.breeze_eyes", + "breeze_wind_top": "geometry.breeze_wind_top", + "breeze_wind_mid": "geometry.breeze_wind_mid", + "breeze_wind_bottom": "geometry.breeze_wind_bottom" + }, + "spawn_egg": { + "base_color": "#af94df", + "overlay_color": "#9166df" + }, + "scripts": { + "animate": [ + "look_at_controller", + "idle_controller", + "move_controller", + "ground_particles_controller", + "shoot_controller", + "jump_controller", + "idle_ground_sound_controller" + ], + "should_update_effects_offscreen": "1.0" + }, + "animations": { + "look_at": "animation.common.look_at_target", + "idle": "animation.breeze.idle", + "jump": "animation.breeze.jump", + "shoot": "animation.breeze.shoot", + "slide": "animation.breeze.slide", + "idle_ground_particles": "animation.breeze.idle_ground_particles", + "slide_ground_particles": "animation.breeze.slide_ground_particles", + "whirl_sound": "animation.breeze.whirl_sound", + "idle_ground_sound": "animation.breeze.idle_ground_sound", + "look_at_controller": "controller.animation.breeze.look_at", + "idle_controller": "controller.animation.breeze.idle", + "move_controller": "controller.animation.breeze.move", + "ground_particles_controller": "controller.animation.breeze.ground_particles", + "shoot_controller": "controller.animation.breeze.shoot", + "jump_controller": "controller.animation.breeze.jump", + "idle_ground_sound_controller": "controller.animation.breeze.idle_ground_sound" + }, + "render_controllers": [ + "controller.render.breeze", + "controller.render.breeze_eyes", + "controller.render.breeze_wind_top", + "controller.render.breeze_wind_mid", + "controller.render.breeze_wind_bottom" + ], + "sound_effects": { + "charge": "mob.breeze.charge", + "inhale": "mob.breeze.inhale", + "slide": "mob.breeze.slide", + "whirl": "mob.breeze.whirl", + "idle_ground_sound": "mob.breeze.idle_ground" + }, + "particle_effects": { + "ground_particles": "minecraft:breeze_ground_particle" + } + } + } +} \ No newline at end of file diff --git a/resource_pack/entity/breeze_wind_charge_projectile.entity.json b/resource_pack/entity/breeze_wind_charge_projectile.entity.json new file mode 100644 index 000000000..435d173bf --- /dev/null +++ b/resource_pack/entity/breeze_wind_charge_projectile.entity.json @@ -0,0 +1,28 @@ +{ + "format_version": "1.10.0", + "minecraft:client_entity": { + "description": { + "identifier": "minecraft:breeze_wind_charge_projectile", + "materials": { + "default": "breeze_wind" + }, + "textures": { + "default": "textures/entity/wind_charge" + }, + "geometry": { + "default": "geometry.wind_charge" + }, + "animations": { + "rotate": "animation.wind_charge.rotate" + }, + "scripts": { + "animate": [ + "rotate" + ] + }, + "render_controllers": [ + "controller.render.wind_charge" + ] + } + } +} \ No newline at end of file diff --git a/resource_pack/entity/decorated_pot.entity.json b/resource_pack/entity/decorated_pot.entity.json index 7d0d0bcd3..16ea82d87 100644 --- a/resource_pack/entity/decorated_pot.entity.json +++ b/resource_pack/entity/decorated_pot.entity.json @@ -24,7 +24,10 @@ "sheaf_pottery_sherd": "textures/blocks/sheaf_pottery_pattern", "shelter_pottery_sherd": "textures/blocks/shelter_pottery_pattern", "skull_pottery_sherd": "textures/blocks/skull_pottery_pattern", - "snort_pottery_sherd": "textures/blocks/snort_pottery_pattern" + "snort_pottery_sherd": "textures/blocks/snort_pottery_pattern", + "flow_pottery_sherd": "textures/blocks/flow_pottery_pattern", + "guster_pottery_sherd": "textures/blocks/guster_pottery_pattern", + "scrape_pottery_sherd": "textures/blocks/scrape_pottery_pattern" } } } diff --git a/resource_pack/entity/lingering_potion.entity.json b/resource_pack/entity/lingering_potion.entity.json index db5447d40..83107ba59 100644 --- a/resource_pack/entity/lingering_potion.entity.json +++ b/resource_pack/entity/lingering_potion.entity.json @@ -34,7 +34,11 @@ "turtleMaster": "textures/items/potion_bottle_lingering_turtleMaster", "slowFall": "textures/items/potion_bottle_lingering_slowFall", "default": "textures/items/potion_bottle_lingering", - "enchanted": "textures/misc/enchanted_item_glint" + "enchanted": "textures/misc/enchanted_item_glint", + "windCharged": "textures/items/potion_bottle_lingering_windCharged", + "weaving": "textures/items/potion_bottle_lingering_weaving", + "oozing": "textures/items/potion_bottle_lingering_oozing", + "infested": "textures/items/potion_bottle_lingering_infested" }, "geometry": { "default": "geometry.item_sprite" diff --git a/resource_pack/entity/splash_potion.entity.json b/resource_pack/entity/splash_potion.entity.json index b83804a89..cbbcc011b 100644 --- a/resource_pack/entity/splash_potion.entity.json +++ b/resource_pack/entity/splash_potion.entity.json @@ -34,7 +34,11 @@ "turtleMaster": "textures/items/potion_bottle_splash_turtleMaster", "slowFall": "textures/items/potion_bottle_splash_slowFall", "default": "textures/items/potion_bottle_splash", - "enchanted": "textures/misc/enchanted_item_glint" + "enchanted": "textures/misc/enchanted_item_glint", + "windCharged": "textures/items/potion_bottle_splash_windCharged", + "weaving": "textures/items/potion_bottle_splash_weaving", + "oozing": "textures/items/potion_bottle_splash_oozing", + "infested": "textures/items/potion_bottle_splash_infested" }, "geometry": { "default": "geometry.item_sprite" diff --git a/resource_pack/entity/trial_spawner.entity.json b/resource_pack/entity/trial_spawner.entity.json new file mode 100644 index 000000000..0312b69e2 --- /dev/null +++ b/resource_pack/entity/trial_spawner.entity.json @@ -0,0 +1,11 @@ +{ + "format_version": "1.8.0", + "minecraft:client_entity": { + "description": { + "identifier": "minecraft:trial_spawner", + "textures": { + "trial_spawner": "textures/blocks/trial_spawner_base" + } + } + } +} \ No newline at end of file diff --git a/resource_pack/entity/wind_charge_projectile.entity.json b/resource_pack/entity/wind_charge_projectile.entity.json new file mode 100644 index 000000000..e6ee6b5d8 --- /dev/null +++ b/resource_pack/entity/wind_charge_projectile.entity.json @@ -0,0 +1,28 @@ +{ + "format_version": "1.10.0", + "minecraft:client_entity": { + "description": { + "identifier": "minecraft:wind_charge_projectile", + "materials": { + "default": "breeze_wind" + }, + "textures": { + "default": "textures/entity/wind_charge" + }, + "geometry": { + "default": "geometry.wind_charge" + }, + "animations": { + "rotate": "animation.wind_charge.rotate" + }, + "scripts": { + "animate": [ + "rotate" + ] + }, + "render_controllers": [ + "controller.render.wind_charge" + ] + } + } +} \ No newline at end of file diff --git a/resource_pack/manifest.json b/resource_pack/manifest.json index 5a05518c5..742a34955 100644 --- a/resource_pack/manifest.json +++ b/resource_pack/manifest.json @@ -5,7 +5,7 @@ "name": "Vanilla Resource Pack", "uuid": "66c6e9a8-3093-462a-9c36-dbb052165822", "version": [0, 0, 1], - "min_engine_version": [ 1, 20, 80 ] + "min_engine_version": [ 1, 21, 0 ] }, "modules": [ { diff --git a/resource_pack/models/entity/bogged.geo.json b/resource_pack/models/entity/bogged.geo.json new file mode 100644 index 000000000..5d676835c --- /dev/null +++ b/resource_pack/models/entity/bogged.geo.json @@ -0,0 +1,98 @@ +{ + "format_version": "1.12.0", + "minecraft:geometry": [ + { + "description": { + "identifier": "geometry.skeleton.bogged", + "texture_width": 64, + "texture_height": 32, + "visible_bounds_width": 2, + "visible_bounds_height": 3, + "visible_bounds_offset": [0, 1.5, 0] + }, + "bones": [ + { + "name": "body", + "pivot": [0, 24, 0], + "cubes": [ + {"origin": [-4, 12, -2], "size": [8, 12, 4], "uv": [16, 16]} + ] + }, + { + "name": "waist", + "pivot": [0, 12, 0] + }, + { + "name": "head", + "pivot": [0, 24, 0], + "cubes": [ + {"origin": [-4, 24, -4], "size": [8, 8, 8], "uv": [0, 0]} + ], + "locators": { + "lead": [0, 24, 0] + } + }, + { + "name": "mushrooms", + "parent": "head", + "pivot": [3, 31.5, 3], + "cubes": [ + {"origin": [-6, 31, -3], "size": [6, 4, 0], "pivot": [-3, 32.5, -3], "rotation": [0, -45, 0], "uv": [50, 22]}, + {"origin": [-6, 31, -3], "size": [6, 4, 0], "pivot": [-3, 32.5, -3], "rotation": [0, 45, 0], "uv": [50, 22]}, + {"origin": [0, 31, 3], "size": [6, 4, 0], "pivot": [3, 31.5, 3], "rotation": [0, 45, 0], "uv": [50, 16]}, + {"origin": [0, 31, 3], "size": [6, 4, 0], "pivot": [3, 31.5, 3], "rotation": [0, -45, 0], "uv": [50, 16]}, + {"origin": [-5, 25, 3], "size": [6, 5, 0], "pivot": [-2, 25, 3], "rotation": [-90, 0, 45], "uv": [50, 27]}, + {"origin": [-5, 25, 3], "size": [6, 5, 0], "pivot": [-2, 25, 3], "rotation": [-90, 0, 135], "uv": [50, 27]} + ] + }, + { + "name": "hat", + "pivot": [0, 24, 0], + "cubes": [ + {"origin": [-4, 24, -4], "size": [8, 8, 8], "inflate": 0.2, "uv": [32, 0]} + ] + }, + { + "name": "rightArm", + "pivot": [-5, 22, 0], + "cubes": [ + {"origin": [-6, 12, -1], "size": [2, 12, 2], "uv": [40, 16]} + ] + }, + { + "name": "rightItem", + "parent": "rightArm", + "pivot": [-6, 15, 1] + }, + { + "name": "leftArm", + "pivot": [5, 22, 0], + "mirror": true, + "cubes": [ + {"origin": [4, 12, -1], "size": [2, 12, 2], "uv": [40, 16]} + ] + }, + { + "name": "leftItem", + "parent": "leftArm", + "pivot": [6, 15, 1] + }, + { + "name": "rightLeg", + "pivot": [-2, 12, 0], + "cubes": [ + {"origin": [-3, 0, -1], "size": [2, 12, 2], "uv": [0, 16]} + ] + }, + { + "name": "leftLeg", + "pivot": [2, 12, 0], + "mirror": true, + "cubes": [ + {"origin": [1, 0, -1], "size": [2, 12, 2], "uv": [0, 16]} + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/resource_pack/models/entity/bogged_armor.geo.json b/resource_pack/models/entity/bogged_armor.geo.json new file mode 100644 index 000000000..e8842faac --- /dev/null +++ b/resource_pack/models/entity/bogged_armor.geo.json @@ -0,0 +1,110 @@ +{ + "format_version": "1.8.0", + "geometry.bogged.armor": { + "visible_bounds_width": 2, + "visible_bounds_height": 2, + "visible_bounds_offset": [ 0, 1, 0 ], + "texturewidth": 64, + "textureheight": 32, + "bones": [ + { + "name": "body", + "pivot": [ 0.0, 24.0, 0.0 ], + "cubes": [ + { + "origin": [ -4.0, 12.0, -2.0 ], + "size": [ 8, 12, 4 ], + "uv": [ 16, 16 ] + } + ], + "inflate": 0.25 + }, + { + "name": "waist", + "pivot": [ 0.0, 12.0, 0.0 ] + }, + { + "name": "head", + "pivot": [ 0.0, 24.0, 0.0 ], + "cubes": [ + { + "origin": [ -4.0, 24.0, -4.0 ], + "size": [ 8, 8, 8 ], + "uv": [ 0, 0 ] + } + ], + "inflate": 0.25 + }, + { + "name": "hat", + "pivot": [ 0.0, 24.0, 0.0 ], + "cubes": [ + { + "origin": [ -4.0, 24.0, -4.0 ], + "size": [ 8, 8, 8 ], + "uv": [ 32, 0 ], + "inflate": 0.5 + } + ], + "neverRender": true + }, + { + "name": "rightArm", + "pivot": [ -5.0, 22.0, 0.0 ], + "cubes": [ + { + "origin": [ -8.0, 12.0, -2.0 ], + "size": [ 4, 12, 4 ], + "uv": [ 40, 16 ] + } + ], + "inflate": 0.25 + }, + { + "name": "rightItem", + "parent": "rightArm", + "pivot": [ -6, 15, 1 ], + "neverRender": true + }, + { + "name": "leftArm", + "parent": "body", + "pivot": [ 5.0, 22.0, 0.0 ], + "cubes": [ + { + "origin": [ 4.0, 12.0, -2.0 ], + "size": [ 4, 12, 4 ], + "uv": [ 40, 16 ] + } + ], + "mirror": true, + "inflate": 0.25 + }, + { + "name": "rightLeg", + "pivot": [ -1.9, 12.0, 0.0 ], + "cubes": [ + { + "origin": [ -3.9, 0.0, -2.0 ], + "size": [ 4, 12, 4 ], + "uv": [ 0, 16 ] + } + ], + "inflate": 0.25 + }, + { + "name": "leftLeg", + "pivot": [ 1.9, 12.0, 0.0 ], + "cubes": [ + { + "origin": [ -0.1, 0.0, -2.0 ], + "size": [ 4, 12, 4 ], + "uv": [ 0, 16 ] + } + ], + "inflate": 0.25, + "mirror": true + } + ] + } +} \ No newline at end of file diff --git a/resource_pack/models/entity/breeze.geo.json b/resource_pack/models/entity/breeze.geo.json new file mode 100644 index 000000000..f319f3467 --- /dev/null +++ b/resource_pack/models/entity/breeze.geo.json @@ -0,0 +1,282 @@ +{ + "format_version": "1.12.0", + "minecraft:geometry": [ + { + "description": { + "identifier": "geometry.breeze", + "texture_width": 32, + "texture_height": 32, + "visible_bounds_width": 3, + "visible_bounds_height": 3.5, + "visible_bounds_offset": [0, 1.25, 0] + }, + "bones": [ + { + "name": "body", + "pivot": [0, 0, 0] + }, + { + "name": "rods", + "parent": "body", + "pivot": [0, 16, 0], + "cubes": [ + {"origin": [-1, 11, -6], "size": [2, 8, 2], "pivot": [0, 19, -3], "rotation": [22.5, 0, 0], "uv": [0, 17]}, + {"origin": [-3.59808, 11, -1.5], "size": [2, 8, 2], "pivot": [-2.59808, 19, 1.5], "rotation": [-157.5, 60, 180], "uv": [0, 17]}, + {"origin": [1.59808, 11, -1.5], "size": [2, 8, 2], "pivot": [2.59808, 19, 1.5], "rotation": [-157.5, -60, 180], "uv": [0, 17]} + ] + }, + { + "name": "head", + "parent": "body", + "pivot": [0, 20, 0], + "cubes": [ + {"origin": [-4, 20, -4], "size": [8, 8, 8], "uv": [0, 0]} + ] + }, + { + "name": "eyes", + "parent": "head", + "pivot": [ 0, 20, 0 ], + "cubes": [ + { + "origin": [ -5, 22, -4.2 ], + "size": [ 10, 3, 4 ], + "uv": [ 4, 24 ] + } + ] + }, + { + "name": "tornado_body", + "pivot": [0, 0, 0] + }, + { + "name": "tornado_bottom", + "parent": "tornado_body", + "pivot": [0, 0, 0] + }, + { + "name": "tornado_mid", + "parent": "tornado_bottom", + "pivot": [0, 7, 0] + }, + { + "name": "tornado_top", + "parent": "tornado_mid", + "pivot": [0, 13, 0] + } + ] + }, + { + "description": { + "identifier": "geometry.breeze_eyes", + "texture_width": 32, + "texture_height": 32, + "visible_bounds_width": 3, + "visible_bounds_height": 3.5, + "visible_bounds_offset": [0, 1.25, 0] + }, + "bones": [ + { + "name": "body", + "pivot": [0, 0, 0] + }, + { + "name": "rods", + "parent": "body", + "pivot": [0, 16, 0] + }, + { + "name": "head", + "parent": "body", + "pivot": [ 0, 20, 0 ], + "cubes": [ + { + "origin": [ -4, 20, -4 ], + "size": [ 8, 8, 8 ], + "uv": [ 0, 0 ] + } + ] + }, + { + "name": "eyes", + "parent": "head", + "pivot": [0, 20, 0], + "cubes": [ + { + "origin": [ -5, 22, -4.2 ], + "size": [ 10, 3, 4 ], + "uv": [ 4, 24 ] + } + ] + }, + { + "name": "tornado_body", + "pivot": [0, 0, 0] + }, + { + "name": "tornado_bottom", + "parent": "tornado_body", + "pivot": [0, 0, 0] + }, + { + "name": "tornado_mid", + "parent": "tornado_bottom", + "pivot": [0, 7, 0] + }, + { + "name": "tornado_top", + "parent": "tornado_mid", + "pivot": [0, 13, 0] + } + ] + }, + { + "description": { + "identifier": "geometry.breeze_wind_top", + "texture_width": 128, + "texture_height": 128, + "visible_bounds_width": 3, + "visible_bounds_height": 3.5, + "visible_bounds_offset": [0, 1.25, 0] + }, + "bones": [ + { + "name": "body", + "pivot": [0, 0, 0] + }, + { + "name": "rods", + "parent": "body", + "pivot": [0, 16, 0] + }, + { + "name": "head", + "parent": "body", + "pivot": [0, 20, 0] + }, + { + "name": "tornado_body", + "pivot": [0, 0, 0] + }, + { + "name": "tornado_bottom", + "parent": "tornado_body", + "pivot": [0, 0, 0] + }, + { + "name": "tornado_mid", + "parent": "tornado_bottom", + "pivot": [0, 7, 0] + }, + { + "name": "tornado_top", + "parent": "tornado_mid", + "pivot": [0, 13, 0], + "cubes": [ + {"origin": [-9, 13, -9], "size": [18, 8, 18], "uv": [0, 0]}, + {"origin": [-6, 13, -6], "size": [12, 8, 12], "uv": [6, 6]}, + {"origin": [-2.5, 13, -2.5], "size": [5, 8, 5], "uv": [105, 57]} + ] + } + ] + }, + { + "description": { + "identifier": "geometry.breeze_wind_mid", + "texture_width": 128, + "texture_height": 128, + "visible_bounds_width": 3, + "visible_bounds_height": 3.5, + "visible_bounds_offset": [0, 1.25, 0] + }, + "bones": [ + { + "name": "body", + "pivot": [0, 0, 0] + }, + { + "name": "rods", + "parent": "body", + "pivot": [0, 16, 0] + }, + { + "name": "head", + "parent": "body", + "pivot": [0, 20, 0] + }, + { + "name": "tornado_body", + "pivot": [0, 0, 0] + }, + { + "name": "tornado_bottom", + "parent": "tornado_body", + "pivot": [0, 0, 0] + }, + { + "name": "tornado_mid", + "parent": "tornado_bottom", + "pivot": [0, 7, 0], + "cubes": [ + {"origin": [-6, 7, -6], "size": [12, 6, 12], "uv": [74, 28]}, + {"origin": [-4, 7, -4], "size": [8, 6, 8], "uv": [78, 32]}, + {"origin": [-2.5, 7, -2.5], "size": [5, 6, 5], "uv": [49, 71]} + ] + }, + { + "name": "tornado_top", + "parent": "tornado_mid", + "pivot": [0, 13, 0] + } + ] + }, + { + "description": { + "identifier": "geometry.breeze_wind_bottom", + "texture_width": 128, + "texture_height": 128, + "visible_bounds_width": 3, + "visible_bounds_height": 3.5, + "visible_bounds_offset": [0, 1.25, 0] + }, + "bones": [ + { + "name": "body", + "pivot": [0, 0, 0] + }, + { + "name": "rods", + "parent": "body", + "pivot": [0, 16, 0] + }, + { + "name": "head", + "parent": "body", + "pivot": [0, 20, 0] + }, + { + "name": "tornado_body", + "pivot": [0, 0, 0] + }, + { + "name": "tornado_bottom", + "parent": "tornado_body", + "pivot": [0, 0, 0], + "cubes": [ + {"origin": [-2.5, 0, -2.5], "size": [5, 7, 5], "uv": [1, 83]} + ] + }, + { + "name": "tornado_mid", + "parent": "tornado_bottom", + "pivot": [0, 7, 0] + }, + { + "name": "tornado_top", + "parent": "tornado_mid", + "pivot": [0, 13, 0] + } + ] + } + ] +} diff --git a/resource_pack/models/entity/wind_charge.geo.json b/resource_pack/models/entity/wind_charge.geo.json new file mode 100644 index 000000000..7c12d4a14 --- /dev/null +++ b/resource_pack/models/entity/wind_charge.geo.json @@ -0,0 +1,43 @@ +{ + "format_version": "1.12.0", + "minecraft:geometry": [ + { + "description": { + "identifier": "geometry.wind_charge", + "texture_width": 64, + "texture_height": 32, + "visible_bounds_width": 2, + "visible_bounds_height": 1.5, + "visible_bounds_offset": [0, 0.25, 0] + }, + "bones": [ + { + "name": "bone", + "pivot": [0, 0, 0] + }, + { + "name": "projectile", + "parent": "bone", + "pivot": [0, 0, 0] + }, + { + "name": "wind", + "parent": "projectile", + "pivot": [0, 0, 0], + "cubes": [ + {"origin": [-3, -2, -3], "size": [6, 4, 6], "uv": [0, 9]}, + {"origin": [-4, -1, -4], "size": [8, 2, 8], "uv": [15, 20]} + ] + }, + { + "name": "wind_charge", + "parent": "projectile", + "pivot": [0, 0, 0], + "cubes": [ + {"origin": [-2, -2, -2], "size": [4, 4, 4], "uv": [0, 0]} + ] + } + ] + } + ] +} diff --git a/resource_pack/particles/breeze_ground_particle.json b/resource_pack/particles/breeze_ground_particle.json new file mode 100644 index 000000000..11b5da305 --- /dev/null +++ b/resource_pack/particles/breeze_ground_particle.json @@ -0,0 +1,51 @@ +{ + "format_version": "1.10.0", + "particle_effect": { + "description": { + "identifier": "minecraft:breeze_ground_particle", + "basic_render_parameters": { + "material": "particles_alpha", + "texture": "atlas.terrain" + } + }, + "components": { + "minecraft:emitter_rate_instant": { + "num_particles": "variable.ground_particle_amount" + }, + "minecraft:emitter_lifetime_once": { + "active_time": 0.1 + }, + "minecraft:emitter_shape_point": { + "direction": [ "math.random( -0.1, 0.1 )", "math.random( 0.1, 0.2 )", "math.random( -0.1, 0.1 )" ], + "offset": [ 0, 0.1, 0 ] + }, + "minecraft:particle_lifetime_expression": { + "max_lifetime": "math.random( 1, 1.1 )" + }, + "minecraft:particle_initial_speed": "variable.ground_particle_initial_speed", + "minecraft:particle_motion_dynamic": { + "linear_acceleration": [ 0, -9.8, 0 ], + "linear_drag_coefficient": 0.5 + }, + "minecraft:particle_appearance_billboard": { + "size": [ "variable.particle_random_1 * 0.0375 + 0.0375", "variable.particle_random_1 * 0.0375 + 0.0375" ], + "facing_camera_mode": "lookat_xyz", + "uv": { + "texture_width": 1, + "texture_height": 1, + "uv": [ "variable.ground_particle_texture_coordinate.u + (variable.ground_particle_texture_size.u/4) * (variable.particle_random_1*3)", "variable.ground_particle_texture_coordinate.v + (variable.ground_particle_texture_size.v/4) * (variable.particle_random_2*3)" ], + "uv_size": [ "variable.ground_particle_texture_size.u/4", "variable.ground_particle_texture_size.v/4" ] + } + }, + "minecraft:particle_motion_collision": { + "coefficient_of_restitution": 0.1, + "collision_drag": 5, + "collision_radius": 0.1 + }, + "minecraft:particle_appearance_tinting": { + "color": [ 0.7, 0.7, 0.7 ] + }, + "minecraft:particle_appearance_lighting": {} + } + } +} diff --git a/resource_pack/particles/breeze_wind_explosion.json b/resource_pack/particles/breeze_wind_explosion.json new file mode 100644 index 000000000..25903915a --- /dev/null +++ b/resource_pack/particles/breeze_wind_explosion.json @@ -0,0 +1,45 @@ +{ + "format_version": "1.10.0", + "particle_effect": { + "description": { + "identifier": "minecraft:breeze_wind_explosion_emitter", + "basic_render_parameters": { + "material": "particles_alpha", + "texture": "textures/particle/gust" + } + }, + "components": { + "minecraft:emitter_rate_steady": { + "spawn_rate": 120, + "max_particles": 50 + }, + "minecraft:emitter_lifetime_once": { + "active_time": 0.4 + }, + "minecraft:emitter_shape_custom": { + "offset": [ "Math.random(-4, 4)", "Math.random(-4, 4)", "Math.random(-4, 4)" ] + }, + "minecraft:particle_initial_speed": 0.0, + "minecraft:particle_lifetime_expression": { + "max_lifetime": "Math.random( 0.8, 0.9 )" + }, + "minecraft:particle_appearance_billboard": { + "size": [ 1.0, 1.0 ], + "facing_camera_mode": "lookat_xyz", + "uv": { + "texture_width": 384, + "texture_height": 32, + "flipbook": { + "base_UV": [ 0, 0 ], + "size_UV": [ 32, 32 ], + "step_UV": [ 32, 0 ], + "frames_per_second": 12, + "max_frame": 12, + "stretch_to_lifetime": true, + "loop": false + } + } + } + } + } +} diff --git a/resource_pack/particles/infested_ambient.json b/resource_pack/particles/infested_ambient.json new file mode 100644 index 000000000..abc3cafd8 --- /dev/null +++ b/resource_pack/particles/infested_ambient.json @@ -0,0 +1,57 @@ +{ + "format_version": "1.10.0", + "particle_effect": { + "description": { + "identifier": "minecraft:infested_ambient", + "basic_render_parameters": { + "material": "particles_blend", + "texture": "textures/particle/infested" + } + }, + "components": { + "minecraft:emitter_rate_instant": { + "num_particles": 1 + }, + + "minecraft:emitter_lifetime_once": {}, + + "minecraft:emitter_shape_custom": { + "direction": [ "Math.random(-0.25, 0.25)", "Math.random(0, 1)", "Math.random(-0.25, 0.25)" ] + }, + + "minecraft:particle_initial_speed": "(Math.random(0, 1) + Math.random(0, 1) + 1) * 0.55", + + "minecraft:particle_lifetime_expression": { + "max_lifetime": "Math.random(0.85, 1.35)" + }, + + "minecraft:particle_motion_dynamic": { + "linear_acceleration": [ + "(variable.particle_random_1 * 2 - 1)*0.5 - (variable.particle_age * 0.4) * 2.5", + "1 + (0.08 * variable.particle_age) - (variable.particle_age * 0.4) * 1.5", + "(variable.particle_random_2 * 2 - 1)*0.5 - (variable.particle_age * 0.4) * 2.5" + ] + }, + + "minecraft:particle_motion_collision": { + "enabled": 1, + "collision_drag": 1.0, + "coefficient_of_restitution": 1.0, + "collision_radius": 0.5 + }, + + "minecraft:particle_appearance_billboard": { + "size": [ 0.125, 0.125 ], + "facing_camera_mode": "lookat_xyz", + + "uv": { + "texture_width": 16, + "texture_height": 16, + "uv": [ 0, 0 ], + "uv_size": [ 16, 16 ] + } + }, + "minecraft:particle_appearance_lighting": {} + } + } +} diff --git a/resource_pack/particles/infested_emitter.json b/resource_pack/particles/infested_emitter.json new file mode 100644 index 000000000..fbce2f7cc --- /dev/null +++ b/resource_pack/particles/infested_emitter.json @@ -0,0 +1,58 @@ +{ + "format_version": "1.10.0", + "particle_effect": { + "description": { + "identifier": "minecraft:infested_emitter", + "basic_render_parameters": { + "material": "particles_alpha", + "texture": "textures/particle/infested" + } + }, + "components": { + "minecraft:emitter_rate_instant": { + "num_particles": 1 + }, + + "minecraft:emitter_lifetime_once": {}, + + "minecraft:emitter_shape_custom": { + "direction": [ "Math.random(-0.25, 0.25)", "Math.random(0, 1)", "Math.random(-0.25, 0.25)" ] + }, + + "minecraft:particle_initial_speed": "(Math.random(0, 1) + Math.random(0, 1) + 1) * 0.55", + + "minecraft:particle_lifetime_expression": { + "max_lifetime": "Math.random(0.85, 1.35)" + }, + + "minecraft:particle_motion_dynamic": { + "linear_acceleration": [ + "(variable.particle_random_1 * 2 - 1)*0.5 - (variable.particle_age * 0.4) * 2.5", + "1 + (0.08 * variable.particle_age) - (variable.particle_age * 0.4) * 1.5", + "(variable.particle_random_2 * 2 - 1)*0.5 - (variable.particle_age * 0.4) * 2.5" + ] + }, + + "minecraft:particle_motion_collision": { + "enabled": 1, + "expire_on_contact": true, + "collision_drag": 1.0, + "coefficient_of_restitution": 1.0, + "collision_radius": 0.01 + }, + + "minecraft:particle_appearance_billboard": { + "size": [ 0.125, 0.125 ], + "facing_camera_mode": "lookat_xyz", + + "uv": { + "texture_width": 16, + "texture_height": 16, + "uv": [ 0, 0 ], + "uv_size": [ 16, 16 ] + } + }, + "minecraft:particle_appearance_lighting": {} + } + } +} diff --git a/resource_pack/particles/ominous_spawning_particle.json b/resource_pack/particles/ominous_spawning_particle.json new file mode 100644 index 000000000..97b84d1b9 --- /dev/null +++ b/resource_pack/particles/ominous_spawning_particle.json @@ -0,0 +1,61 @@ +{ + "format_version": "1.10.0", + "particle_effect": { + "description": { + "identifier": "minecraft:ominous_spawning_particle", + "basic_render_parameters": { + "material": "particles_alpha", + "texture": "textures/particle/ominous_spawning" + } + }, + "curves": { + "variable.shrink": { + "type": "linear", + "input": "v.particle_age", + "horizontal_range": "v.particle_lifetime", + "nodes": [1, 0] + }, + "variable.speed": { + "type": "bezier", + "input": "v.particle_age", + "horizontal_range": "v.particle_lifetime", + "nodes": [1, 2, 2, 2] + } + }, + "components": { + "minecraft:emitter_rate_steady": { + "spawn_rate": 10, + "max_particles": 100 + }, + "minecraft:emitter_lifetime_once": { + "active_time": "variable.lifetime" + }, + "minecraft:emitter_shape_sphere": { + "radius": 2, + "surface_only": true, + "direction": "inwards" + }, + "minecraft:particle_lifetime_expression": { + "max_lifetime": 1 + }, + "minecraft:particle_initial_speed": "2 * variable.speed", + "minecraft:particle_motion_dynamic": {}, + "minecraft:particle_appearance_billboard": { + "size": ["1 * variable.shrink", "0.5 * variable.shrink"], + "facing_camera_mode": "lookat_direction", + "direction": { + "mode": "derive_from_velocity" + } + }, + "minecraft:particle_appearance_tinting": { + "color": { + "interpolant": "v.particle_age / v.particle_lifetime", + "gradient": { + "0.0": "#FF45AEFE", + "1.0": "#FFFFFFFF" + } + } + } + } + } +} \ No newline at end of file diff --git a/resource_pack/particles/oozing_ambient.json b/resource_pack/particles/oozing_ambient.json new file mode 100644 index 000000000..3a3b5ddb0 --- /dev/null +++ b/resource_pack/particles/oozing_ambient.json @@ -0,0 +1,46 @@ +{ + "format_version": "1.10.0", + "particle_effect": { + "description": { + "identifier": "minecraft:oozing_ambient", + "basic_render_parameters": { + "material": "particles_blend", + "texture": "textures/items/slimeball" + } + }, + "components": { + "minecraft:emitter_rate_instant": { + "num_particles": "math.random(2, 4)" + }, + "minecraft:emitter_lifetime_looping": { + "active_time": "math.random(0.1, 0.8)" + }, + "minecraft:emitter_shape_point": { + "offset": [0, 0, 0] + }, + "minecraft:particle_lifetime_expression": { + "max_lifetime": 1 + }, + "minecraft:particle_initial_speed": "math.random(1,2)", + "minecraft:particle_motion_dynamic": { + "linear_acceleration": ["math.random(-2, 2)", "math.random(-2, -10)", "math.random(-2, 2)"] + }, + "minecraft:particle_appearance_billboard": { + "size": [0.0625, 0.0625], + "facing_camera_mode": "lookat_xyz", + "uv": { + "texture_width": 16, + "texture_height": 16, + "uv": ["Math.round(variable.particle_random_1 * 12.0)", "Math.round(variable.particle_random_2 * 12.0)"], + "uv_size": [4, 4] + } + }, + "minecraft:particle_motion_collision": { + "collision_drag": 10.0, + "collision_radius": 0.5, + "expire_on_contact": true + }, + "minecraft:particle_appearance_lighting": {} + } + } +} diff --git a/resource_pack/particles/oozing_emitter.json b/resource_pack/particles/oozing_emitter.json new file mode 100644 index 000000000..4827accc1 --- /dev/null +++ b/resource_pack/particles/oozing_emitter.json @@ -0,0 +1,46 @@ +{ + "format_version": "1.10.0", + "particle_effect": { + "description": { + "identifier": "minecraft:oozing_emitter", + "basic_render_parameters": { + "material": "particles_alpha", + "texture": "textures/items/slimeball" + } + }, + "components": { + "minecraft:emitter_rate_instant": { + "num_particles": "math.random(2, 4)" + }, + "minecraft:emitter_lifetime_looping": { + "active_time": "math.random(0.1, 0.8)" + }, + "minecraft:emitter_shape_point": { + "offset": [0, 0, 0] + }, + "minecraft:particle_lifetime_expression": { + "max_lifetime": 1 + }, + "minecraft:particle_initial_speed": "math.random(1,2)", + "minecraft:particle_motion_dynamic": { + "linear_acceleration": ["math.random(-2, 2)", "math.random(-2, -10)", "math.random(-2, 2)"] + }, + "minecraft:particle_appearance_billboard": { + "size": [0.0625, 0.0625], + "facing_camera_mode": "lookat_xyz", + "uv": { + "texture_width": 16, + "texture_height": 16, + "uv": ["Math.round(variable.particle_random_1 * 12.0)", "Math.round(variable.particle_random_2 * 12.0)"], + "uv_size": [4, 4] + } + }, + "minecraft:particle_motion_collision": { + "collision_drag": 10.0, + "collision_radius": 0.2, + "expire_on_contact": true + }, + "minecraft:particle_appearance_lighting": {} + } + } +} diff --git a/resource_pack/particles/raid_omen_ambient.json b/resource_pack/particles/raid_omen_ambient.json new file mode 100644 index 000000000..584d39643 --- /dev/null +++ b/resource_pack/particles/raid_omen_ambient.json @@ -0,0 +1,57 @@ +{ + "format_version": "1.10.0", + "particle_effect": { + "description": { + "identifier": "minecraft:raid_omen_ambient", + "basic_render_parameters": { + "material": "particles_blend", + "texture": "textures/particle/raid_omen" + } + }, + "components": { + "minecraft:emitter_rate_instant": { + "num_particles": 1 + }, + + "minecraft:emitter_lifetime_once": {}, + + "minecraft:emitter_shape_custom": { + "direction": [ "Math.random(-0.25, 0.25)", "Math.random(0, 1)", "Math.random(-0.25, 0.25)" ] + }, + + "minecraft:particle_initial_speed": "(Math.random(0, 1) + Math.random(0, 1) + 1) * 0.55", + + "minecraft:particle_lifetime_expression": { + "max_lifetime": "Math.random(0.85, 1.35)" + }, + + "minecraft:particle_motion_dynamic": { + "linear_acceleration": [ + "(variable.particle_random_1 * 2 - 1)*0.5 - (variable.particle_age * 0.4) * 2.5", + "1 + (0.08 * variable.particle_age) - (variable.particle_age * 0.4) * 1.5", + "(variable.particle_random_2 * 2 - 1)*0.5 - (variable.particle_age * 0.4) * 2.5" + ] + }, + + "minecraft:particle_motion_collision": { + "enabled": 1, + "collision_drag": 1.0, + "coefficient_of_restitution": 1.0, + "collision_radius": 0.5 + }, + + "minecraft:particle_appearance_billboard": { + "size": [ 0.125, 0.125 ], + "facing_camera_mode": "lookat_xyz", + + "uv": { + "texture_width": 16, + "texture_height": 16, + "uv": [ 0, 0 ], + "uv_size": [ 16, 16 ] + } + }, + "minecraft:particle_appearance_lighting": {} + } + } +} diff --git a/resource_pack/particles/raid_omen_emitter.json b/resource_pack/particles/raid_omen_emitter.json new file mode 100644 index 000000000..9a1b30811 --- /dev/null +++ b/resource_pack/particles/raid_omen_emitter.json @@ -0,0 +1,58 @@ +{ + "format_version": "1.10.0", + "particle_effect": { + "description": { + "identifier": "minecraft:raid_omen_emitter", + "basic_render_parameters": { + "material": "particles_alpha", + "texture": "textures/particle/raid_omen" + } + }, + "components": { + "minecraft:emitter_rate_instant": { + "num_particles": 1 + }, + + "minecraft:emitter_lifetime_once": {}, + + "minecraft:emitter_shape_custom": { + "direction": [ "Math.random(-0.25, 0.25)", "Math.random(0, 1)", "Math.random(-0.25, 0.25)" ] + }, + + "minecraft:particle_initial_speed": "(Math.random(0, 1) + Math.random(0, 1) + 1) * 0.55", + + "minecraft:particle_lifetime_expression": { + "max_lifetime": "Math.random(0.85, 1.35)" + }, + + "minecraft:particle_motion_dynamic": { + "linear_acceleration": [ + "(variable.particle_random_1 * 2 - 1)*0.5 - (variable.particle_age * 0.4) * 2.5", + "1 + (0.08 * variable.particle_age) - (variable.particle_age * 0.4) * 1.5", + "(variable.particle_random_2 * 2 - 1)*0.5 - (variable.particle_age * 0.4) * 2.5" + ] + }, + + "minecraft:particle_motion_collision": { + "enabled": 1, + "expire_on_contact": true, + "collision_drag": 1.0, + "coefficient_of_restitution": 1.0, + "collision_radius": 0.01 + }, + + "minecraft:particle_appearance_billboard": { + "size": [ 0.125, 0.125 ], + "facing_camera_mode": "lookat_xyz", + + "uv": { + "texture_width": 16, + "texture_height": 16, + "uv": [ 0, 0 ], + "uv_size": [ 16, 16 ] + } + }, + "minecraft:particle_appearance_lighting": {} + } + } +} diff --git a/resource_pack/particles/small_flame.json b/resource_pack/particles/small_flame.json new file mode 100644 index 000000000..0093eeca5 --- /dev/null +++ b/resource_pack/particles/small_flame.json @@ -0,0 +1,79 @@ +{ + "format_version": "1.10.0", + "particle_effect": { + "description": { + "identifier": "minecraft:small_flame_particle", + "basic_render_parameters": { + "material": "particles_alpha", + "texture": "textures/particle/particles" + } + }, + "components": { + "minecraft:emitter_initialization": { + "creation_expression": "variable.size = Math.random(0.2, 0.05);variable.radius = 0.6;" + }, + "minecraft:emitter_local_space": { + "position": true, + "rotation": true + }, + "minecraft:emitter_rate_instant": { + "num_particles": 1 + }, + "minecraft:emitter_lifetime_once": { + "active_time": 0.15 + }, + "minecraft:emitter_shape_box": { + "offset": [ + "Math.random(-0.1,0.1)", + "Math.random(-0.1,0.1)", + "Math.random(-0.1,0.1)" + ], + "half_dimensions": [ + 0, + 0, + 0 + ], + "direction": [ + "variable.direction.x", + "variable.direction.y", + "variable.direction.z" + ] + }, + "minecraft:particle_lifetime_expression": { + "max_lifetime": "Math.random(0.6, 2.2)" + }, + "minecraft:particle_initial_speed": "variable.particle_initial_speed", + "minecraft:particle_motion_dynamic": { + "linear_acceleration": [ 0.0, 0.0, 0.0 ], + "linear_drag_coefficient": 0.96 + }, + "minecraft:particle_appearance_billboard": { + "size": [ + "Math.max(variable.size/1.5*(1-variable.particle_age/2), 0)", + "Math.max(variable.size/1.5*(1-variable.particle_age/2), 0)" + ], + "facing_camera_mode": "rotate_xyz", + "uv": { + "texture_width": 128, + "texture_height": 128, + "uv": [ + 0, + 24 + ], + "uv_size": [ + 8, + 8 + ] + } + }, + "minecraft:particle_appearance_tinting": { + "color": [ + 1, + 1, + 1, + 1 + ] + } + } + } +} diff --git a/resource_pack/particles/small_soul_fire_flame.json b/resource_pack/particles/small_soul_fire_flame.json new file mode 100644 index 000000000..b97cb3362 --- /dev/null +++ b/resource_pack/particles/small_soul_fire_flame.json @@ -0,0 +1,79 @@ +{ + "format_version": "1.10.0", + "particle_effect": { + "description": { + "identifier": "minecraft:small_soul_fire_flame", + "basic_render_parameters": { + "material": "particles_alpha", + "texture": "textures/particle/particles" + } + }, + "components": { + "minecraft:emitter_initialization": { + "creation_expression": "variable.size = Math.random(0.2, 0.05);variable.radius = 0.6;" + }, + "minecraft:emitter_local_space": { + "position": true, + "rotation": true + }, + "minecraft:emitter_rate_instant": { + "num_particles": 1 + }, + "minecraft:emitter_lifetime_once": { + "active_time": 0.15 + }, + "minecraft:emitter_shape_box": { + "offset": [ + "Math.random(-0.1,0.1)", + "Math.random(-0.1,0.1)", + "Math.random(-0.1,0.1)" + ], + "half_dimensions": [ + 0, + 0, + 0 + ], + "direction": [ + "variable.direction.x", + "variable.direction.y", + "variable.direction.z" + ] + }, + "minecraft:particle_lifetime_expression": { + "max_lifetime": "Math.random(0.6, 2.2)" + }, + "minecraft:particle_initial_speed": "variable.particle_initial_speed", + "minecraft:particle_motion_dynamic": { + "linear_acceleration": [ 0.0, 0.0, 0.0 ], + "linear_drag_coefficient": 0.96 + }, + "minecraft:particle_appearance_billboard": { + "size": [ + "Math.max(variable.size/1.5*(1-variable.particle_age/2), 0)", + "Math.max(variable.size/1.5*(1-variable.particle_age/2), 0)" + ], + "facing_camera_mode": "rotate_xyz", + "uv": { + "texture_width": 128, + "texture_height": 128, + "uv": [ + 16, + 24 + ], + "uv_size": [ + 8, + 8 + ] + } + }, + "minecraft:particle_appearance_tinting": { + "color": [ + 1, + 1, + 1, + 1 + ] + } + } + } +} diff --git a/resource_pack/particles/smash_ground_particle.json b/resource_pack/particles/smash_ground_particle.json new file mode 100644 index 000000000..be22e6da1 --- /dev/null +++ b/resource_pack/particles/smash_ground_particle.json @@ -0,0 +1,61 @@ +{ + "format_version": "1.10.0", + "particle_effect": { + "description": { + "identifier": "minecraft:smash_ground_particle", + "basic_render_parameters": { + "material": "particles_alpha", + "texture": "atlas.terrain" + } + }, + "curves": { + "variable.smash_particle": { + "type": "linear", + "input": "v.particle_age", + "horizontal_range": "v.particle_lifetime", + "nodes": [0, 2, -1, -1] + } + }, + "components": { + "minecraft:emitter_rate_instant": { + "num_particles": 500 + }, + "minecraft:emitter_lifetime_once": { + "active_time": 1.0 + }, + "minecraft:emitter_shape_disc": { + "offset":[ "math.random( -0.5, 0.5 )",0,"math.random( -0.5, 0.5 )" ], + "radius": 3.5, + "surface_only": true, + "direction": [ "math.random( -0.2, 0.2 )", 1.0, "math.random( -0.2, 0.2 )" ] + }, + "minecraft:particle_lifetime_expression": { + "max_lifetime": "math.random( 2.0, 2.5 )" + }, + "minecraft:particle_initial_speed": "math.random(4, 12)", + "minecraft:particle_motion_dynamic": { + "linear_acceleration": ["math.random(-2, 2)", -9.81, "math.random(-2, 2)"] + }, + "minecraft:particle_appearance_billboard": { + "size": [ "variable.particle_random_1 * 0.0375 + 0.0375", "variable.particle_random_1 * 0.0375 + 0.0375" ], + "facing_camera_mode": "lookat_xyz", + "uv": { + "texture_width": 1, + "texture_height": 1, + "uv": [ "variable.surface_particle_texture_coordinate.u + (variable.surface_particle_texture_size.u/4) * (variable.particle_random_1*3)", "variable.surface_particle_texture_coordinate.v + (variable.surface_particle_texture_size.v/4) * (variable.particle_random_2*3)" ], + "uv_size": [ "variable.surface_particle_texture_size.u/4", "variable.surface_particle_texture_size.v/4" ] + } + }, + "minecraft:particle_motion_collision": { + "coefficient_of_restitution": 0.1, + "collision_drag": 5, + "collision_radius": 0.1 + }, + "minecraft:particle_appearance_lighting": {}, + "minecraft:particle_appearance_tinting": { + "color": ["variable.surface_particle_tint.r", "variable.surface_particle_tint.g", "variable.surface_particle_tint.b", "variable.surface_particle_tint.a"] + } + } + } + } + \ No newline at end of file diff --git a/resource_pack/particles/smash_ground_particle_center.json b/resource_pack/particles/smash_ground_particle_center.json new file mode 100644 index 000000000..84af65c89 --- /dev/null +++ b/resource_pack/particles/smash_ground_particle_center.json @@ -0,0 +1,59 @@ +{ + "format_version": "1.10.0", + "particle_effect": { + "description": { + "identifier": "minecraft:smash_ground_particle_center", + "basic_render_parameters": { + "material": "particles_alpha", + "texture": "atlas.terrain" + } + }, + "curves": { + "variable.smash_particle": { + "type": "linear", + "input": "v.particle_age", + "horizontal_range": "v.particle_lifetime", + "nodes": [0, 2, -1, -1] + } + }, + "components": { + "minecraft:emitter_rate_instant": { + "num_particles": 250 + }, + "minecraft:emitter_lifetime_once": { + "active_time": 1.0 + }, + "minecraft:emitter_shape_point": { + "direction": [ "math.random( -0.2, 0.2 )", 1.0, "math.random( -0.2, 0.2 )" ], + "offset": [ 0, 0.1, 0 ] + }, + "minecraft:particle_lifetime_expression": { + "max_lifetime": "math.random( 2.0, 2.5 )" + }, + "minecraft:particle_initial_speed": "math.random(6, 16)", + "minecraft:particle_motion_dynamic": { + "linear_acceleration": ["math.random(-2, 2)", -9.81, "math.random(-2, 2)"] + }, + "minecraft:particle_appearance_billboard": { + "size": [ "variable.particle_random_1 * 0.0375 + 0.0375", "variable.particle_random_1 * 0.0375 + 0.0375" ], + "facing_camera_mode": "lookat_xyz", + "uv": { + "texture_width": 1, + "texture_height": 1, + "uv": [ "variable.surface_particle_texture_coordinate.u + (variable.surface_particle_texture_size.u/4) * (variable.particle_random_1*3)", "variable.surface_particle_texture_coordinate.v + (variable.surface_particle_texture_size.v/4) * (variable.particle_random_2*3)" ], + "uv_size": [ "variable.surface_particle_texture_size.u/4", "variable.surface_particle_texture_size.v/4" ] + } + }, + "minecraft:particle_motion_collision": { + "coefficient_of_restitution": 0.1, + "collision_drag": 5, + "collision_radius": 0.1 + }, + "minecraft:particle_appearance_lighting": {}, + "minecraft:particle_appearance_tinting": { + "color": ["variable.surface_particle_tint.r", "variable.surface_particle_tint.g", "variable.surface_particle_tint.b", "variable.surface_particle_tint.a"] + } + } + } + } + \ No newline at end of file diff --git a/resource_pack/particles/trial_omen_ambient.json b/resource_pack/particles/trial_omen_ambient.json new file mode 100644 index 000000000..8ed8b8528 --- /dev/null +++ b/resource_pack/particles/trial_omen_ambient.json @@ -0,0 +1,57 @@ +{ + "format_version": "1.10.0", + "particle_effect": { + "description": { + "identifier": "minecraft:trial_omen_ambient", + "basic_render_parameters": { + "material": "particles_blend", + "texture": "textures/particle/trial_omen" + } + }, + "components": { + "minecraft:emitter_rate_instant": { + "num_particles": 1 + }, + + "minecraft:emitter_lifetime_once": {}, + + "minecraft:emitter_shape_custom": { + "direction": [ "Math.random(-0.25, 0.25)", "Math.random(0, 1)", "Math.random(-0.25, 0.25)" ] + }, + + "minecraft:particle_initial_speed": "(Math.random(0, 1) + Math.random(0, 1) + 1) * 0.55", + + "minecraft:particle_lifetime_expression": { + "max_lifetime": "Math.random(0.85, 1.35)" + }, + + "minecraft:particle_motion_dynamic": { + "linear_acceleration": [ + "(variable.particle_random_1 * 2 - 1)*0.5 - (variable.particle_age * 0.4) * 2.5", + "1 + (0.08 * variable.particle_age) - (variable.particle_age * 0.4) * 1.5", + "(variable.particle_random_2 * 2 - 1)*0.5 - (variable.particle_age * 0.4) * 2.5" + ] + }, + + "minecraft:particle_motion_collision": { + "enabled": 1, + "collision_drag": 1.0, + "coefficient_of_restitution": 1.0, + "collision_radius": 0.5 + }, + + "minecraft:particle_appearance_billboard": { + "size": [ 0.125, 0.125 ], + "facing_camera_mode": "lookat_xyz", + + "uv": { + "texture_width": 16, + "texture_height": 16, + "uv": [ 0, 0 ], + "uv_size": [ 16, 16 ] + } + }, + "minecraft:particle_appearance_lighting": {} + } + } +} diff --git a/resource_pack/particles/trial_omen_emitter.json b/resource_pack/particles/trial_omen_emitter.json new file mode 100644 index 000000000..562d8b015 --- /dev/null +++ b/resource_pack/particles/trial_omen_emitter.json @@ -0,0 +1,58 @@ +{ + "format_version": "1.10.0", + "particle_effect": { + "description": { + "identifier": "minecraft:trial_omen_emitter", + "basic_render_parameters": { + "material": "particles_alpha", + "texture": "textures/particle/trial_omen" + } + }, + "components": { + "minecraft:emitter_rate_instant": { + "num_particles": 1 + }, + + "minecraft:emitter_lifetime_once": {}, + + "minecraft:emitter_shape_custom": { + "direction": [ "Math.random(-0.25, 0.25)", "Math.random(0, 1)", "Math.random(-0.25, 0.25)" ] + }, + + "minecraft:particle_initial_speed": "(Math.random(0, 1) + Math.random(0, 1) + 1) * 0.55", + + "minecraft:particle_lifetime_expression": { + "max_lifetime": "Math.random(0.85, 1.35)" + }, + + "minecraft:particle_motion_dynamic": { + "linear_acceleration": [ + "(variable.particle_random_1 * 2 - 1)*0.5 - (variable.particle_age * 0.4) * 2.5", + "1 + (0.08 * variable.particle_age) - (variable.particle_age * 0.4) * 1.5", + "(variable.particle_random_2 * 2 - 1)*0.5 - (variable.particle_age * 0.4) * 2.5" + ] + }, + + "minecraft:particle_motion_collision": { + "enabled": 1, + "expire_on_contact": true, + "collision_drag": 1.0, + "coefficient_of_restitution": 1.0, + "collision_radius": 0.01 + }, + + "minecraft:particle_appearance_billboard": { + "size": [ 0.125, 0.125 ], + "facing_camera_mode": "lookat_xyz", + + "uv": { + "texture_width": 16, + "texture_height": 16, + "uv": [ 0, 0 ], + "uv_size": [ 16, 16 ] + } + }, + "minecraft:particle_appearance_lighting": {} + } + } +} diff --git a/resource_pack/particles/trial_omen_single.json b/resource_pack/particles/trial_omen_single.json new file mode 100644 index 000000000..a3fd18fe8 --- /dev/null +++ b/resource_pack/particles/trial_omen_single.json @@ -0,0 +1,60 @@ +{ + "format_version": "1.10.0", + "particle_effect": { + "description": { + "identifier": "minecraft:trial_omen_single", + "basic_render_parameters": { + "material": "particles_alpha", + "texture": "textures/particle/trial_omen" + } + }, + "components": { + "minecraft:emitter_rate_instant": { + "num_particles": 1 + }, + + "minecraft:emitter_lifetime_once": {}, + "minecraft:emitter_shape_point": { + "direction": [ + "variable.direction.x", + "variable.direction.y", + "variable.direction.z" + ] + }, + "minecraft:particle_initial_speed": "(Math.random(0, 1) + Math.random(0, 1) + 1) * 0.55", + + "minecraft:particle_lifetime_expression": { + "max_lifetime": "Math.random(0.85, 1.35)" + }, + + "minecraft:particle_motion_dynamic": { + "linear_acceleration": [ + "(variable.particle_random_1 * 2 - 1)*0.5 - (variable.particle_age * 0.4) * 2.5", + "1 + (0.08 * variable.particle_age) - (variable.particle_age * 0.4) * 1.5", + "(variable.particle_random_2 * 2 - 1)*0.5 - (variable.particle_age * 0.4) * 2.5" + ] + }, + + "minecraft:particle_motion_collision": { + "enabled": 1, + "expire_on_contact": true, + "collision_drag": 1.0, + "coefficient_of_restitution": 1.0, + "collision_radius": 0.01 + }, + + "minecraft:particle_appearance_billboard": { + "size": [ 0.125, 0.125 ], + "facing_camera_mode": "lookat_xyz", + + "uv": { + "texture_width": 16, + "texture_height": 16, + "uv": [ 0, 0 ], + "uv_size": [ 16, 16 ] + } + }, + "minecraft:particle_appearance_lighting": {} + } + } +} diff --git a/resource_pack/particles/trial_spawner_detection.particle.json b/resource_pack/particles/trial_spawner_detection.particle.json new file mode 100644 index 000000000..4be72ae49 --- /dev/null +++ b/resource_pack/particles/trial_spawner_detection.particle.json @@ -0,0 +1,57 @@ +{ + "format_version": "1.10.0", + "particle_effect": { + "description": { + "identifier": "minecraft:trial_spawner_detection", + "basic_render_parameters": { + "material": "particles_alpha", + "texture": "textures/particles/trial_spawner_atlas" + } + }, + "components": { + "minecraft:emitter_initialization": { + "creation_expression": "variable.player_count = 1;" + }, + "minecraft:emitter_rate_instant": { + "num_particles": "30 + math.min(variable.player_count, 10) * 5" + }, + "minecraft:emitter_lifetime_once": { + "active_time": 1 + }, + "minecraft:emitter_shape_box": { + "offset": [ "0.5 + math.random(-0.65, 0.65)", "0.1 + math.random(0.0, 0.8)", "0.5 + math.random(-0.65, 0.65)" ], + "half_dimensions": [ 0, 0, 0 ], + "direction": [ 0, 1, 0 ] + }, + "minecraft:particle_lifetime_expression": { + "max_lifetime": "variable.lifetime = math.ceil(8.0 / math.random(0.75, 1.5)); return math.max(variable.lifetime, 1.0)/10.0;" + }, + "minecraft:particle_initial_speed": "math.random(1,4)", + "minecraft:particle_motion_dynamic": { + "linear_acceleration": [ 0, "math.random(1.0,1.5)", 0 ] + }, + "minecraft:particle_initialization": { + "per_render_expression": "variable.quadSize = (variable.particle_random_1 * 0.1125) + 0.11;" + }, + "minecraft:particle_appearance_billboard": { + "size": [ "variable.quadSize = (variable.particle_random_1 * 0.1125) + 0.11; return variable.quadSize * math.clamp(variable.particle_age / variable.particle_lifetime * 32, 0, 1) / 6.0;", "variable.quadSize = (variable.particle_random_1 * 0.1125) + 0.11; return variable.quadSize * math.clamp(variable.particle_age / variable.particle_lifetime * 32, 0, 1);" ], + "facing_camera_mode": "lookat_y", + "uv": { + "texture_width": 8, + "texture_height": 8, + "flipbook": { + "base_UV": [ 0, 0 ], + "size_UV": [ 1, 6 ], + "step_UV": [ 1, 0 ], + "frames_per_second": 5, + "max_frame": 5, + "stretch_to_lifetime": true + } + } + }, + "minecraft:particle_appearance_tinting": { + "color": [ 1, 1, 1, 1 ] + } + } + } +} diff --git a/resource_pack/particles/trial_spawner_detection_ominous.particle.json b/resource_pack/particles/trial_spawner_detection_ominous.particle.json new file mode 100644 index 000000000..e2f052370 --- /dev/null +++ b/resource_pack/particles/trial_spawner_detection_ominous.particle.json @@ -0,0 +1,57 @@ +{ + "format_version": "1.10.0", + "particle_effect": { + "description": { + "identifier": "minecraft:trial_spawner_detection_ominous", + "basic_render_parameters": { + "material": "particles_alpha", + "texture": "textures/particles/trial_spawner_ominous_atlas" + } + }, + "components": { + "minecraft:emitter_initialization": { + "creation_expression": "variable.player_count = 1;" + }, + "minecraft:emitter_rate_instant": { + "num_particles": "30 + math.min(variable.player_count, 10) * 5" + }, + "minecraft:emitter_lifetime_once": { + "active_time": 1 + }, + "minecraft:emitter_shape_box": { + "offset": [ "0.5 + math.random(-0.65, 0.65)", "0.1 + math.random(0.0, 0.8)", "0.5 + math.random(-0.65, 0.65)" ], + "half_dimensions": [ 0, 0, 0 ], + "direction": [ 0, 1, 0 ] + }, + "minecraft:particle_lifetime_expression": { + "max_lifetime": "variable.lifetime = math.ceil(8.0 / math.random(0.75, 1.5)); return math.max(variable.lifetime, 1.0)/10.0;" + }, + "minecraft:particle_initial_speed": "math.random(1,4)", + "minecraft:particle_motion_dynamic": { + "linear_acceleration": [ 0, "math.random(1.0,1.5)", 0 ] + }, + "minecraft:particle_initialization": { + "per_render_expression": "variable.quadSize = (variable.particle_random_1 * 0.1125) + 0.11;" + }, + "minecraft:particle_appearance_billboard": { + "size": [ "variable.quadSize = (variable.particle_random_1 * 0.1125) + 0.11; return variable.quadSize * math.clamp(variable.particle_age / variable.particle_lifetime * 32, 0, 1) / 6.0;", "variable.quadSize = (variable.particle_random_1 * 0.1125) + 0.11; return variable.quadSize * math.clamp(variable.particle_age / variable.particle_lifetime * 32, 0, 1);" ], + "facing_camera_mode": "lookat_y", + "uv": { + "texture_width": 8, + "texture_height": 8, + "flipbook": { + "base_UV": [ 0, 0 ], + "size_UV": [ 1, 6 ], + "step_UV": [ 1, 0 ], + "frames_per_second": 5, + "max_frame": 5, + "stretch_to_lifetime": true + } + } + }, + "minecraft:particle_appearance_tinting": { + "color": [ 1, 1, 1, 1 ] + } + } + } +} diff --git a/resource_pack/particles/vault_connection.json b/resource_pack/particles/vault_connection.json new file mode 100644 index 000000000..308884ace --- /dev/null +++ b/resource_pack/particles/vault_connection.json @@ -0,0 +1,53 @@ +{ + "format_version": "1.10.0", + "particle_effect": { + "description": { + "identifier": "minecraft:vault_connection_particle", + "basic_render_parameters": { + "material": "particles_blend", + "texture": "textures/particle/vault_connection" + } + }, + + "components": { + "minecraft:emitter_rate_instant": { + "num_particles": 1 + }, + + "minecraft:emitter_lifetime_once": {}, + "minecraft:emitter_shape_point": {}, + + "minecraft:particle_lifetime_expression": { + "max_lifetime": "Math.random(0.5, 2.5)" + }, + + "minecraft:particle_motion_parametric": { + "relative_position": [ + "variable.pos = 1 - (variable.particle_age / variable.particle_lifetime); return variable.direction.x * variable.pos;", + "variable.direction.y * variable.pos - Math.pow((1 - variable.pos), 3) * 1.2", + "variable.direction.z * variable.pos" + ] + }, + + "minecraft:particle_appearance_billboard": { + "size": [ "variable.particle_random_1 * 0.075 + 0.03", "variable.particle_random_1 * 0.075 + 0.03" ], + "facing_camera_mode": "lookat_xyz", + "uv": { + "texture_width": 8, + "texture_height": 8, + "uv": [ 0, 0 ], + "uv_size": [ 8, 8 ] + } + }, + + "minecraft:particle_appearance_tinting": { + "color": [ + "variable.particle_random_3 * 0.54 + 0.36", + "variable.particle_random_3 * 0.54 + 0.36", + "variable.particle_random_3 * 0.6 + 0.4", + "math.lerp((math.clamp(variable.particle_age / variable.particle_lifetime, 0.2, 0.8) - 0.2) / 0.6, 0.0, 0.6)" + ] + } + } + } +} diff --git a/resource_pack/particles/weaving_ambient.json b/resource_pack/particles/weaving_ambient.json new file mode 100644 index 000000000..9ab046f77 --- /dev/null +++ b/resource_pack/particles/weaving_ambient.json @@ -0,0 +1,46 @@ +{ + "format_version": "1.10.0", + "particle_effect": { + "description": { + "identifier": "minecraft:weaving_ambient", + "basic_render_parameters": { + "material": "particles_blend", + "texture": "textures/blocks/web" + } + }, + "components": { + "minecraft:emitter_rate_instant": { + "num_particles": "math.random(2, 4)" + }, + "minecraft:emitter_lifetime_looping": { + "active_time": "math.random(0.1, 0.8)" + }, + "minecraft:emitter_shape_point": { + "offset": [0, 0, 0] + }, + "minecraft:particle_lifetime_expression": { + "max_lifetime": 1 + }, + "minecraft:particle_initial_speed": "math.random(1,2)", + "minecraft:particle_motion_dynamic": { + "linear_acceleration": ["math.random(-2, 2)", "math.random(-2, -10)", "math.random(-2, 2)"] + }, + "minecraft:particle_appearance_billboard": { + "size": [0.0625, 0.0625], + "facing_camera_mode": "lookat_xyz", + "uv": { + "texture_width": 16, + "texture_height": 16, + "uv": ["Math.round(variable.particle_random_1 * 12.0)", "Math.round(variable.particle_random_2 * 12.0)"], + "uv_size": [4, 4] + } + }, + "minecraft:particle_motion_collision": { + "collision_drag": 10.0, + "collision_radius": 0.5, + "expire_on_contact": true + }, + "minecraft:particle_appearance_lighting": {} + } + } +} diff --git a/resource_pack/particles/weaving_emitter.json b/resource_pack/particles/weaving_emitter.json new file mode 100644 index 000000000..b148e5810 --- /dev/null +++ b/resource_pack/particles/weaving_emitter.json @@ -0,0 +1,46 @@ +{ + "format_version": "1.10.0", + "particle_effect": { + "description": { + "identifier": "minecraft:weaving_emitter", + "basic_render_parameters": { + "material": "particles_alpha", + "texture": "textures/blocks/web" + } + }, + "components": { + "minecraft:emitter_rate_instant": { + "num_particles": "math.random(2, 4)" + }, + "minecraft:emitter_lifetime_looping": { + "active_time": "math.random(0.1, 0.8)" + }, + "minecraft:emitter_shape_point": { + "offset": [0, 0, 0] + }, + "minecraft:particle_lifetime_expression": { + "max_lifetime": 1 + }, + "minecraft:particle_initial_speed": "math.random(1,2)", + "minecraft:particle_motion_dynamic": { + "linear_acceleration": ["math.random(-2, 2)", "math.random(-2, -10)", "math.random(-2, 2)"] + }, + "minecraft:particle_appearance_billboard": { + "size": [0.0625, 0.0625], + "facing_camera_mode": "lookat_xyz", + "uv": { + "texture_width": 16, + "texture_height": 16, + "uv": ["Math.round(variable.particle_random_1 * 12.0)", "Math.round(variable.particle_random_2 * 12.0)"], + "uv_size": [4, 4] + } + }, + "minecraft:particle_motion_collision": { + "collision_drag": 10.0, + "collision_radius": 0.2, + "expire_on_contact": true + }, + "minecraft:particle_appearance_lighting": {} + } + } +} diff --git a/resource_pack/particles/white_smoke.json b/resource_pack/particles/white_smoke.json new file mode 100644 index 000000000..dcd86e852 --- /dev/null +++ b/resource_pack/particles/white_smoke.json @@ -0,0 +1,56 @@ +{ + "format_version": "1.10.0", + "particle_effect": { + "description": { + "identifier": "minecraft:white_smoke_particle", + "basic_render_parameters": { + "material": "particles_alpha", + "texture": "textures/particle/particles" + } + }, + "components": { + "minecraft:emitter_rate_manual": { + "max_particles": 50 + }, + "minecraft:emitter_lifetime_expression": { + "activation_expression": 1, + "expiration_expression": 0 + }, + "minecraft:emitter_shape_disc": { + "offset": [0, -0.2, 0], + "radius": 0.1, + "plane_normal": "y", + "surface_only": true, + "direction": [ 0, 1, 0 ] + }, + "minecraft:particle_initial_speed": "Math.random(1.0, 1.5)", + "minecraft:particle_lifetime_expression": { + "max_lifetime": "Math.random(0.75, 1.25)" + }, + "minecraft:particle_motion_dynamic": { + "linear_acceleration": [ 0, "Math.random(0.5, 0.8)", 0 ] + }, + "minecraft:particle_appearance_billboard": { + "size": [ 0.125, 0.125 ], + "facing_camera_mode": "lookat_xyz", + "uv": { + "texture_width": 128, + "texture_height": 128, + "flipbook": { + "base_UV": [ 56, 0 ], + "size_UV": [ 8, 8 ], + "step_UV": [ -8, 0 ], + "frames_per_second": 8, + "max_frame": 8, + "stretch_to_lifetime": true, + "loop": false + } + } + }, + "minecraft:particle_appearance_tinting": { + "color": [ "186/255", "177/255", "194/255", 1.0 ] + }, + "minecraft:particle_appearance_lighting": {} + } + } +} diff --git a/resource_pack/particles/wind_charged_ambient.json b/resource_pack/particles/wind_charged_ambient.json new file mode 100644 index 000000000..8523e2839 --- /dev/null +++ b/resource_pack/particles/wind_charged_ambient.json @@ -0,0 +1,43 @@ +{ + "format_version": "1.10.0", + "particle_effect": { + "description": { + "identifier": "minecraft:wind_charged_ambient", + "basic_render_parameters": { + "material": "particles_blend", + "texture": "textures/particle/small_gust" + } + }, + "components": { + "minecraft:emitter_rate_instant": { + "num_particles": 2 + }, + "minecraft:emitter_lifetime_once": { + "active_time": 1 + }, + "minecraft:emitter_shape_point": { + "offset": [0, 0, 0] + }, + "minecraft:particle_lifetime_expression": { + "max_lifetime": 0.5 + }, + "minecraft:particle_appearance_billboard": { + "size": [0.125, 0.125], + "facing_camera_mode": "lookat_xyz", + "uv": { + "texture_width": 56, + "texture_height": 8, + "flipbook": { + "base_UV": [0, 0], + "size_UV": [8, 8], + "step_UV": [8, 0], + "frames_per_second": 12, + "max_frame": 6, + "stretch_to_lifetime": false + } + } + }, + "minecraft:particle_appearance_lighting": {} + } + } +} diff --git a/resource_pack/particles/wind_charged_emitter.json b/resource_pack/particles/wind_charged_emitter.json new file mode 100644 index 000000000..d29338a0a --- /dev/null +++ b/resource_pack/particles/wind_charged_emitter.json @@ -0,0 +1,43 @@ +{ + "format_version": "1.10.0", + "particle_effect": { + "description": { + "identifier": "minecraft:wind_charged_emitter", + "basic_render_parameters": { + "material": "particles_alpha", + "texture": "textures/particle/small_gust" + } + }, + "components": { + "minecraft:emitter_rate_instant": { + "num_particles": 2 + }, + "minecraft:emitter_lifetime_once": { + "active_time": 1 + }, + "minecraft:emitter_shape_point": { + "offset": [0, 0, 0] + }, + "minecraft:particle_lifetime_expression": { + "max_lifetime": 0.5 + }, + "minecraft:particle_appearance_billboard": { + "size": [0.125, 0.125], + "facing_camera_mode": "lookat_xyz", + "uv": { + "texture_width": 56, + "texture_height": 8, + "flipbook": { + "base_UV": [0, 0], + "size_UV": [8, 8], + "step_UV": [8, 0], + "frames_per_second": 12, + "max_frame": 6, + "stretch_to_lifetime": false + } + } + }, + "minecraft:particle_appearance_lighting": {} + } + } +} diff --git a/resource_pack/particles/wind_explosion.json b/resource_pack/particles/wind_explosion.json new file mode 100644 index 000000000..0e70db39c --- /dev/null +++ b/resource_pack/particles/wind_explosion.json @@ -0,0 +1,45 @@ +{ + "format_version": "1.10.0", + "particle_effect": { + "description": { + "identifier": "minecraft:wind_explosion_emitter", + "basic_render_parameters": { + "material": "particles_alpha", + "texture": "textures/particle/gust" + } + }, + "components": { + "minecraft:emitter_rate_steady": { + "spawn_rate": 30, + "max_particles": 10 + }, + "minecraft:emitter_lifetime_once": { + "active_time": 0.4 + }, + "minecraft:emitter_shape_custom": { + "offset": [ "Math.random(-1, 1)", "Math.random(-1, 1)", "Math.random(-1, 1)" ] + }, + "minecraft:particle_initial_speed": 0.0, + "minecraft:particle_lifetime_expression": { + "max_lifetime": "Math.random( 0.6, 0.8 )" + }, + "minecraft:particle_appearance_billboard": { + "size": [ 1.0, 1.0 ], + "facing_camera_mode": "lookat_xyz", + "uv": { + "texture_width": 384, + "texture_height": 32, + "flipbook": { + "base_UV": [ 0, 0 ], + "size_UV": [ 32, 32 ], + "step_UV": [ 32, 0 ], + "frames_per_second": 12, + "max_frame": 12, + "stretch_to_lifetime": true, + "loop": false + } + } + } + } + } +} diff --git a/resource_pack/render_controllers/bogged.render_controllers.json b/resource_pack/render_controllers/bogged.render_controllers.json new file mode 100644 index 000000000..4c610d97c --- /dev/null +++ b/resource_pack/render_controllers/bogged.render_controllers.json @@ -0,0 +1,14 @@ +{ + "format_version": "1.8.0", + "render_controllers": { + "controller.render.bogged": { + "rebuild_animation_matrices": true, + "geometry": "Geometry.default", + "part_visibility": [ + { "mushrooms": "!query.is_sheared" } + ], + "materials": [ { "*": "Material.default" } ], + "textures": [ "Texture.default" ] + } + } +} \ No newline at end of file diff --git a/resource_pack/render_controllers/bogged_clothes.render_controllers.json b/resource_pack/render_controllers/bogged_clothes.render_controllers.json new file mode 100644 index 000000000..8473660df --- /dev/null +++ b/resource_pack/render_controllers/bogged_clothes.render_controllers.json @@ -0,0 +1,11 @@ +{ + "format_version": "1.8.0", + "render_controllers": { + "controller.render.bogged_clothes": { + "rebuild_animation_matrices": true, + "geometry": "Geometry.overlay", + "materials": [ { "*": "Material.overlay" } ], + "textures": [ "Texture.overlay" ] + } + } +} \ No newline at end of file diff --git a/resource_pack/render_controllers/breeze.render_controllers.json b/resource_pack/render_controllers/breeze.render_controllers.json new file mode 100644 index 000000000..5b3206500 --- /dev/null +++ b/resource_pack/render_controllers/breeze.render_controllers.json @@ -0,0 +1,55 @@ +{ + "format_version": "1.8.0", + "render_controllers": { + "controller.render.breeze": { + "geometry": "Geometry.default", + "materials": [ { "*": "Material.default" } ], + "textures": [ "Texture.default" ] + }, + "controller.render.breeze_eyes": { + "geometry": "Geometry.breeze_eyes", + "materials": [ { "*": "Material.breeze_eyes" } ], + "textures": [ "Texture.breeze_eyes" ], + "ignore_lighting": true + }, + "controller.render.breeze_wind_top": { + "geometry": "Geometry.breeze_wind_top", + "materials": [ { "*": "Material.breeze_wind" } ], + "textures": [ "Texture.breeze_wind" ], + "uv_anim": { + "offset": [ + "((Math.floor(query.life_time * 20.0) + query.frame_alpha) * 0.02)", + "(0.0)" + ], + "scale": [ 1.0, 1.0 ] + }, + "light_color_multiplier": 1.8 + }, + "controller.render.breeze_wind_mid": { + "geometry": "Geometry.breeze_wind_mid", + "materials": [ { "*": "Material.breeze_wind" } ], + "textures": [ "Texture.breeze_wind" ], + "uv_anim": { + "offset": [ + "((Math.floor(query.life_time * 20.0) + query.frame_alpha) * 0.025)", + "(0.0)" + ], + "scale": [ 1.0, 1.0 ] + }, + "light_color_multiplier": 1.8 + }, + "controller.render.breeze_wind_bottom": { + "geometry": "Geometry.breeze_wind_bottom", + "materials": [ { "*": "Material.breeze_wind" } ], + "textures": [ "Texture.breeze_wind" ], + "uv_anim": { + "offset": [ + "((Math.floor(query.life_time * 20.0) + query.frame_alpha) * 0.03)", + "(0.0)" + ], + "scale": [ 1.0, 1.0 ] + }, + "light_color_multiplier": 1.8 + } + } +} diff --git a/resource_pack/render_controllers/lingering_potion.render_controllers.json b/resource_pack/render_controllers/lingering_potion.render_controllers.json index 3dacbcd93..f369ea91c 100644 --- a/resource_pack/render_controllers/lingering_potion.render_controllers.json +++ b/resource_pack/render_controllers/lingering_potion.render_controllers.json @@ -31,6 +31,10 @@ "Texture.levitation", "Texture.turtleMaster", "Texture.slowFall", + "Texture.windCharged", + "Texture.weaving", + "Texture.oozing", + "Texture.infested", "Texture.default" ] } @@ -41,4 +45,4 @@ "filter_lighting": true } } -} \ No newline at end of file +} diff --git a/resource_pack/render_controllers/persona.render_controllers.json b/resource_pack/render_controllers/persona.render_controllers.json index 23d22fbd0..f5cce0865 100644 --- a/resource_pack/render_controllers/persona.render_controllers.json +++ b/resource_pack/render_controllers/persona.render_controllers.json @@ -60,8 +60,8 @@ "part_visibility": [ { "*": "!query.is_spectator" }, { "head": true }, - { "hat": true }, - { "helmet": "variable.helmet_layer_visible" }, + { "hat": "!query.has_head_gear" }, + { "helmet": "variable.helmet_layer_visible && !query.has_head_gear" }, { "leftLegging": "variable.leg_layer_visible && !query.is_spectator" }, { "rightLegging": "variable.leg_layer_visible && !query.is_spectator" }, { "leftBoot": "variable.boot_layer_visible && !query.is_spectator" }, @@ -93,8 +93,8 @@ "part_visibility": [ { "*": "!query.is_spectator" }, { "head": true }, - { "hat": true }, - { "helmet": "variable.helmet_layer_visible" }, + { "hat": "!query.has_head_gear" }, + { "helmet": "variable.helmet_layer_visible && !query.has_head_gear" }, { "leftLegging": "variable.leg_layer_visible && !query.is_spectator" }, { "rightLegging": "variable.leg_layer_visible && !query.is_spectator" }, { "leftBoot": "variable.boot_layer_visible && !query.is_spectator" }, @@ -126,8 +126,8 @@ "part_visibility": [ { "*": "!query.is_spectator" }, { "head": true }, - { "hat": true }, - { "helmet": "variable.helmet_layer_visible" }, + { "hat": "!query.has_head_gear" }, + { "helmet": "variable.helmet_layer_visible && !query.has_head_gear" }, { "leftLegging": "variable.leg_layer_visible && !query.is_spectator" }, { "rightLegging": "variable.leg_layer_visible && !query.is_spectator" }, { "leftBoot": "variable.boot_layer_visible && !query.is_spectator" }, @@ -163,8 +163,8 @@ "part_visibility": [ { "*": false }, { "head": true }, - { "hat": true }, - { "helmet": true } + { "hat": "!query.has_head_gear" }, + { "helmet": "!query.has_head_gear" } ], "uv_anim": { "offset": [ 0.0, "variable.is_blinking * 0.5" ], diff --git a/resource_pack/render_controllers/player.render_controllers.json b/resource_pack/render_controllers/player.render_controllers.json index a087d16f1..b190db9d8 100644 --- a/resource_pack/render_controllers/player.render_controllers.json +++ b/resource_pack/render_controllers/player.render_controllers.json @@ -19,7 +19,7 @@ "textures": [ "Texture.default" ], "part_visibility": [ { "*": true }, - { "helmet": "variable.helmet_layer_visible" }, + { "helmet": "variable.helmet_layer_visible && !query.has_head_gear" }, { "leftLegging": "variable.leg_layer_visible" }, { "rightLegging": "variable.leg_layer_visible" }, { "leftBoot": "variable.boot_layer_visible" }, @@ -48,7 +48,7 @@ { "*": false }, { "head": true }, { "hat": true }, - { "helmet": "variable.helmet_layer_visible" } + { "helmet": "variable.helmet_layer_visible && !query.has_head_gear" } ], "color": { "r": "1.0f", @@ -65,7 +65,7 @@ { "*": false }, { "head": true }, { "hat": true }, - { "helmet": true } + { "helmet": "!query.has_head_gear" } ] } } diff --git a/resource_pack/render_controllers/splash_potion.render_controllers.json b/resource_pack/render_controllers/splash_potion.render_controllers.json index e4c96017b..f6e755a6b 100644 --- a/resource_pack/render_controllers/splash_potion.render_controllers.json +++ b/resource_pack/render_controllers/splash_potion.render_controllers.json @@ -31,6 +31,10 @@ "Texture.levitation", "Texture.turtleMaster", "Texture.slowFall", + "Texture.windCharged", + "Texture.weaving", + "Texture.oozing", + "Texture.infested", "Texture.default" ] } @@ -41,4 +45,4 @@ "filter_lighting": true } } -} \ No newline at end of file +} diff --git a/resource_pack/render_controllers/wind_charge.render_controllers.json b/resource_pack/render_controllers/wind_charge.render_controllers.json new file mode 100644 index 000000000..6f656bd5d --- /dev/null +++ b/resource_pack/render_controllers/wind_charge.render_controllers.json @@ -0,0 +1,18 @@ +{ + "format_version": "1.10.0", + "render_controllers": { + "controller.render.wind_charge": { + "geometry": "Geometry.default", + "materials": [ { "*": "Material.default" } ], + "textures": [ "Texture.default" ], + "uv_anim": { + "offset": [ + "((Math.floor(query.life_time * 20.0) + query.frame_alpha) * -0.03)", + "(0.0)" + ], + "scale": [ 1.0, 1.0 ] + }, + "light_color_multiplier": 1.6 + } + } +} diff --git a/resource_pack/sounds.json b/resource_pack/sounds.json index 9255fec01..5311ab7d8 100644 --- a/resource_pack/sounds.json +++ b/resource_pack/sounds.json @@ -829,6 +829,14 @@ "volume" : 1.0 }, "default" : "", + "door.close" : { + "pitch" : 1.0, + "sound" : "close_door.copper" + }, + "door.open" : { + "pitch" : 1.0, + "sound" : "open_door.copper" + }, "hit" : { "pitch" : 0.50, "sound" : "hit.copper", @@ -845,11 +853,62 @@ }, "power.off" : { "pitch" : 0.50, - "sound" : "block.click" + "sound" : "random.click" }, "power.on" : { "pitch" : 0.60, - "sound" : "block.click" + "sound" : "random.click" + }, + "trapdoor.close" : { + "pitch" : 1.0, + "sound" : "open_trapdoor.copper" + }, + "trapdoor.open" : { + "pitch" : 1.0, + "sound" : "open_trapdoor.copper" + } + }, + "pitch" : 1.0, + "volume" : 1.0 + }, + "copper_bulb" : { + "events" : { + "break" : { + "sound" : "break.copper_bulb" + }, + "default" : "", + "hit" : { + "sound" : "step.copper_bulb" + }, + "item.use.on" : { + "sound" : "step.copper_bulb" + }, + "place" : { + "sound" : "place.copper_bulb" + } + }, + "pitch" : 1.0, + "volume" : 1.0 + }, + "copper_grate" : { + "events" : { + "break" : { + "sound" : "break.copper_grate", + "volume" : 1.0 + }, + "default" : "", + "hit" : { + "pitch" : 0.80, + "sound" : "step.copper_grate", + "volume" : 1.0 + }, + "item.use.on" : { + "sound" : "step.copper_grate", + "volume" : 1.0 + }, + "place" : { + "sound" : "break.copper_grate", + "volume" : 1.0 } }, "pitch" : 1.0, @@ -1293,6 +1352,32 @@ } } }, + "heavy_core" : { + "events" : { + "break" : { + "pitch" : 0.80, + "sound" : "break.heavy_core", + "volume" : 1.0 + }, + "default" : "", + "hit" : { + "pitch" : 0.50, + "sound" : "step.heavy_core", + "volume" : 1.0 + }, + "item.use.on" : { + "sound" : "step.heavy_core", + "volume" : 1.0 + }, + "place" : { + "pitch" : 0.80, + "sound" : "break.heavy_core", + "volume" : 1.0 + } + }, + "pitch" : 1.0, + "volume" : 1.0 + }, "honey_block" : { "events" : { "break" : { @@ -2210,6 +2295,29 @@ "pitch" : 1.0, "volume" : 1.0 }, + "polished_tuff" : { + "events" : { + "break" : { + "sound" : "break.tuff", + "volume" : 1.0 + }, + "default" : "", + "hit" : { + "sound" : "hit.tuff", + "volume" : 1.0 + }, + "item.use.on" : { + "pitch" : 0.80, + "sound" : "step.tuff" + }, + "place" : { + "sound" : "place.tuff", + "volume" : 1.0 + } + }, + "pitch" : 1.20, + "volume" : 1.0 + }, "powder_snow" : { "events" : { "break" : { @@ -2905,6 +3013,26 @@ "pitch" : 1.0, "volume" : 1.0 }, + "trial_spawner" : { + "events" : { + "break" : { + "sound" : "trial_spawner.break", + "volume" : 1.0 + }, + "default" : "", + "hit" : { + "pitch" : 0.50, + "sound" : "trial_spawner.hit", + "volume" : 1.0 + }, + "place" : { + "sound" : "trial_spawner.place", + "volume" : 1.0 + } + }, + "pitch" : 1.0, + "volume" : 1.0 + }, "tuff" : { "events" : { "break" : { @@ -2936,6 +3064,30 @@ "pitch" : 1.0, "volume" : 1.0 }, + "tuff_bricks" : { + "events" : { + "break" : { + "sound" : "place.tuff_bricks", + "volume" : 1.0 + }, + "default" : "", + "hit" : { + "pitch" : 0.80, + "sound" : "step.tuff_bricks", + "volume" : 1.0 + }, + "item.use.on" : { + "sound" : "step.tuff_bricks", + "volume" : 1.0 + }, + "place" : { + "sound" : "place.tuff_bricks", + "volume" : 1.0 + } + }, + "pitch" : 1.0, + "volume" : 1.0 + }, "turtle_egg" : { "events" : { "break" : { @@ -2970,6 +3122,26 @@ "pitch" : 0.90, "volume" : 0.850 }, + "vault" : { + "events" : { + "break" : { + "sound" : "vault.break", + "volume" : 1.0 + }, + "default" : "", + "hit" : { + "pitch" : 0.50, + "sound" : "vault.hit", + "volume" : 1.0 + }, + "place" : { + "sound" : "vault.place", + "volume" : 1.0 + } + }, + "pitch" : 1.0, + "volume" : 1.0 + }, "vines" : { "events" : { "break" : { @@ -3004,6 +3176,27 @@ "pitch" : 1.0, "volume" : 1.0 }, + "web" : { + "events" : { + "break" : { + "sound" : "break.web" + }, + "default" : "", + "hit" : { + "pitch" : 0.70, + "sound" : "step.web", + "volume" : 0.90 + }, + "item.use.on" : { + "sound" : "step.web" + }, + "place" : { + "sound" : "break.web" + } + }, + "pitch" : 1.0, + "volume" : 1.0 + }, "wood" : { "events" : { "break" : { @@ -3217,6 +3410,74 @@ "pitch" : [ 0.80, 1.20 ], "volume" : 1.0 }, + "bogged" : { + "events" : { + "ambient" : "mob.bogged.ambient", + "death" : "mob.bogged.death", + "hurt" : "mob.bogged.hurt", + "step" : { + "pitch" : 1.0, + "sound" : "mob.bogged.step", + "volume" : 1.0 + } + }, + "pitch" : [ 0.80, 1.20 ], + "volume" : 1.0 + }, + "breeze" : { + "events" : { + "ambient" : { + "pitch" : [ 0.70, 1.10 ], + "sound" : "mob.breeze.idle_ground", + "volume" : [ 0.80, 1.0 ] + }, + "ambient.in.air" : { + "pitch" : 1.0, + "sound" : "mob.breeze.idle_air", + "volume" : 1.0 + }, + "charge" : { + "pitch" : 1.0, + "sound" : "mob.breeze.charge", + "volume" : 1.0 + }, + "death" : { + "pitch" : 1.0, + "sound" : "mob.breeze.death", + "volume" : 1.0 + }, + "hurt" : { + "pitch" : 1.0, + "sound" : "mob.breeze.hurt", + "volume" : 1.0 + }, + "jump" : { + "pitch" : 1.0, + "sound" : "mob.breeze.jump", + "volume" : 1.0 + }, + "land" : { + "pitch" : 1.0, + "sound" : "mob.breeze.land", + "volume" : 1.0 + }, + "reflect" : { + "pitch" : 1.0, + "sound" : "mob.breeze.deflect", + "volume" : 1.0 + }, + "shoot" : { + "pitch" : [ 1.0, 1.20 ], + "sound" : "mob.breeze.shoot", + "volume" : 1.50 + }, + "step" : { + "volume" : 0.0 + } + }, + "pitch" : [ 0.80, 1.20 ], + "volume" : 1.0 + }, "camel" : { "events" : { "ambient" : "mob.camel.ambient", @@ -3910,6 +4171,15 @@ "sound" : "mob.blaze.ambient", "volume" : 0.40 }, + "imitate.bogged" : { + "pitch" : 1.70, + "sound" : "mob.bogged.ambient" + }, + "imitate.breeze" : { + "pitch" : 1.70, + "sound" : "mob.breeze.idle_ground", + "volume" : 0.70 + }, "imitate.cave_spider" : { "pitch" : 1.80, "sound" : "mob.spider.say", @@ -5057,6 +5327,21 @@ "sound" : "ambient.warped_forest.mood", "volume" : 0.80 }, + "apply_effect.bad_omen" : { + "pitch" : 1.0, + "sound" : "apply_effect.bad_omen", + "volume" : 1.0 + }, + "apply_effect.raid_omen" : { + "pitch" : 1.0, + "sound" : "apply_effect.raid_omen", + "volume" : 1.0 + }, + "apply_effect.trial_omen" : { + "pitch" : 1.0, + "sound" : "apply_effect.trial_omen", + "volume" : 1.0 + }, "armor.break_wolf" : { "pitch" : 1.0, "sound" : "armor.break_wolf", @@ -5242,6 +5527,16 @@ "sound" : "block.composter.ready", "volume" : 1.0 }, + "block.copper_bulb.turn_off" : { + "pitch" : 1.0, + "sound" : "block.copper_bulb.turn_off", + "volume" : 1.0 + }, + "block.copper_bulb.turn_on" : { + "pitch" : 1.0, + "sound" : "block.copper_bulb.turn_on", + "volume" : 1.0 + }, "block.decorated_pot.insert" : { "pitch" : 1.0, "sound" : "block.decorated_pot.insert", @@ -5435,6 +5730,11 @@ "sound" : "random.break", "volume" : 1.0 }, + "breeze_wind_charge.burst" : { + "pitch" : 1.20, + "sound" : "breeze_wind_charge.burst", + "volume" : 1.0 + }, "bubble.down" : { "pitch" : [ 0.90, 1.050 ], "sound" : "bubble.down", @@ -5615,6 +5915,21 @@ "sound" : "copper.wax.on", "volume" : 1.0 }, + "crafter.craft" : { + "pitch" : 1.0, + "sound" : "crafter.craft", + "volume" : 1.0 + }, + "crafter.disable_slot" : { + "pitch" : 0.750, + "sound" : "crafter.disable_slot", + "volume" : 0.40 + }, + "crafter.fail" : { + "pitch" : 1.0, + "sound" : "crafter.fail", + "volume" : 1.0 + }, "crossbow.loading.end" : { "pitch" : 1.0, "sound" : "crossbow.loading.middle", @@ -5838,7 +6153,7 @@ "item.trident.thunder" : { "pitch" : 1.0, "sound" : "item.trident.thunder", - "volume" : 1.0 + "volume" : 5.0 }, "item_given" : { "pitch" : [ 0.80, 1.20 ], @@ -5909,6 +6224,21 @@ "sound" : "lodestone_compass.link_compass_to_lodestone", "volume" : 1.0 }, + "mace.heavy_smash_ground" : { + "pitch" : 1.0, + "sound" : "mace.heavy_smash_ground", + "volume" : 1.0 + }, + "mace.smash_air" : { + "pitch" : 1.0, + "sound" : "mace.smash_air", + "volume" : 1.0 + }, + "mace.smash_ground" : { + "pitch" : 1.0, + "sound" : "mace.smash_ground", + "volume" : 1.0 + }, "milk" : { "pitch" : 1.0, "sound" : "mob.cow.milk", @@ -6008,6 +6338,26 @@ "sound" : "note.bass", "volume" : 1.0 }, + "ominous_bottle.end_use" : { + "pitch" : [ 0.80, 1.20 ], + "sound" : "ominous_bottle.end_use", + "volume" : 1.0 + }, + "ominous_item_spawner.about_to_spawn_item" : { + "pitch" : [ 0.80, 1.10 ], + "sound" : "ominous_item_spawner.about_to_spawn_item", + "volume" : 1.0 + }, + "ominous_item_spawner.spawn_item" : { + "pitch" : [ 0.80, 1.10 ], + "sound" : "ominous_item_spawner.spawn_item", + "volume" : 1.0 + }, + "ominous_item_spawner.spawn_item_begin" : { + "pitch" : [ 0.80, 1.10 ], + "sound" : "ominous_item_spawner.spawn_item_begin", + "volume" : 1.0 + }, "particle.soul_escape.loud" : { "pitch" : [ 0.60, 1.0 ], "sound" : "particle.soul_escape", @@ -6148,6 +6498,16 @@ "sound" : "record.chirp", "volume" : 1.0 }, + "record.creator" : { + "pitch" : 1.0, + "sound" : "record.creator", + "volume" : 1.0 + }, + "record.creator_music_box" : { + "pitch" : 1.0, + "sound" : "record.creator_music_box", + "volume" : 1.0 + }, "record.far" : { "pitch" : 1.0, "sound" : "record.far", @@ -6173,6 +6533,11 @@ "sound" : "record.pigstep", "volume" : 1.0 }, + "record.precipice" : { + "pitch" : 1.0, + "sound" : "record.precipice", + "volume" : 1.0 + }, "record.relic" : { "pitch" : 1.0, "sound" : "record.relic", @@ -6298,6 +6663,46 @@ "sound" : "mob.frog.tongue", "volume" : 1 }, + "trial_spawner.ambient" : { + "pitch" : [ 0.50, 1.50 ], + "sound" : "trial_spawner.ambient", + "volume" : [ 0.750, 1.0 ] + }, + "trial_spawner.ambient_ominous" : { + "pitch" : [ 0.50, 1.50 ], + "sound" : "trial_spawner.ambient_ominous", + "volume" : [ 0.750, 1.0 ] + }, + "trial_spawner.charge_activate" : { + "pitch" : 1.0, + "sound" : "trial_spawner.charge_activate", + "volume" : 1.0 + }, + "trial_spawner.close_shutter" : { + "pitch" : 1.0, + "sound" : "trial_spawner.close_shutter", + "volume" : 1.0 + }, + "trial_spawner.detect_player" : { + "pitch" : [ 0.80, 1.20 ], + "sound" : "trial_spawner.detect_player", + "volume" : 1.0 + }, + "trial_spawner.eject_item" : { + "pitch" : [ 0.80, 1.10 ], + "sound" : "trial_spawner.eject_item", + "volume" : 1.0 + }, + "trial_spawner.open_shutter" : { + "pitch" : 1.0, + "sound" : "trial_spawner.open_shutter", + "volume" : 1.0 + }, + "trial_spawner.spawn_mob" : { + "pitch" : [ 0.80, 1.20 ], + "sound" : "trial_spawner.spawn_mob", + "volume" : 1.0 + }, "tripod" : { "pitch" : [ 0.90, 1.10 ], "sound" : "dig.stone", @@ -6328,10 +6733,55 @@ "sound" : "mob.zombie.unfect", "volume" : [ 1.0, 2.0 ] }, + "vault.activate" : { + "pitch" : [ 0.80, 1.20 ], + "sound" : "vault.activate", + "volume" : 1.0 + }, + "vault.ambient" : { + "pitch" : [ 0.50, 1.50 ], + "sound" : "vault.ambient", + "volume" : [ 0.750, 1.0 ] + }, + "vault.close_shutter" : { + "pitch" : 1.0, + "sound" : "vault.close_shutter", + "volume" : 1.0 + }, + "vault.deactivate" : { + "pitch" : [ 0.80, 1.20 ], + "sound" : "vault.deactivate", + "volume" : 1.0 + }, + "vault.eject_item" : { + "pitch" : [ 0.80, 1.10 ], + "sound" : "vault.eject_item", + "volume" : 1.0 + }, + "vault.insert_item" : { + "pitch" : [ 0.80, 1.10 ], + "sound" : "vault.insert_item", + "volume" : 1.0 + }, + "vault.insert_item_fail" : { + "pitch" : [ 0.80, 1.10 ], + "sound" : "vault.insert_item_fail", + "volume" : 1.0 + }, + "vault.open_shutter" : { + "pitch" : 1.0, + "sound" : "vault.open_shutter", + "volume" : 1.0 + }, "water" : { "pitch" : [ 0.50, 1.50 ], "sound" : "liquid.water", "volume" : [ 0.750, 1.0 ] + }, + "wind_charge.burst" : { + "pitch" : 1.0, + "sound" : "wind_charge.burst", + "volume" : 1.0 } } }, @@ -6865,6 +7315,48 @@ "pitch" : 1.0, "volume" : 1.0 }, + "copper_bulb" : { + "events" : { + "default" : "", + "fall" : { + "sound" : "step.copper_bulb" + }, + "jump" : { + "pitch" : 1.10, + "sound" : "step.copper_bulb", + "volume" : 0.120 + }, + "land" : { + "sound" : "step.copper_bulb" + }, + "step" : { + "sound" : "step.copper_bulb" + } + }, + "pitch" : 1.0, + "volume" : 1.0 + }, + "copper_grate" : { + "events" : { + "default" : "", + "fall" : { + "sound" : "step.copper_grate" + }, + "jump" : { + "pitch" : 1.10, + "sound" : "step.copper_grate", + "volume" : 0.120 + }, + "land" : { + "sound" : "step.copper_grate" + }, + "step" : { + "sound" : "step.copper_grate" + } + }, + "pitch" : 1.0, + "volume" : 1.0 + }, "coral" : { "events" : { "default" : "", @@ -7197,6 +7689,27 @@ "pitch" : 1.0, "volume" : 1.0 }, + "heavy_core" : { + "events" : { + "default" : "", + "fall" : { + "sound" : "step.heavy_core" + }, + "jump" : { + "pitch" : 1.10, + "sound" : "step.heavy_core", + "volume" : 0.120 + }, + "land" : { + "sound" : "step.heavy_core" + }, + "step" : { + "sound" : "step.heavy_core" + } + }, + "pitch" : 1.0, + "volume" : 1.0 + }, "honey_block" : { "events" : { "default" : "", @@ -7814,6 +8327,29 @@ "pitch" : 1.0, "volume" : 1.0 }, + "polished_tuff" : { + "events" : { + "default" : "", + "fall" : { + "sound" : "fall.tuff", + "volume" : 1.0 + }, + "jump" : { + "sound" : "step.tuff", + "volume" : 0.120 + }, + "land" : { + "sound" : "step.tuff", + "volume" : 1.0 + }, + "step" : { + "sound" : "step.tuff", + "volume" : 1.0 + } + }, + "pitch" : 1.20, + "volume" : 1.0 + }, "powder_snow" : { "events" : { "default" : "", @@ -8294,6 +8830,29 @@ "pitch" : 1.0, "volume" : 1.0 }, + "trial_spawner" : { + "events" : { + "default" : "", + "fall" : { + "sound" : "trial_spawner.step", + "volume" : 0.40 + }, + "jump" : { + "sound" : "trial_spawner.step", + "volume" : 0.120 + }, + "land" : { + "sound" : "trial_spawner.step", + "volume" : 0.20 + }, + "step" : { + "sound" : "trial_spawner.step", + "volume" : 0.150 + } + }, + "pitch" : 1.0, + "volume" : 1.0 + }, "tuff" : { "events" : { "default" : "", @@ -8318,6 +8877,27 @@ "pitch" : 1.0, "volume" : 1.0 }, + "tuff_bricks" : { + "events" : { + "default" : "", + "fall" : { + "sound" : "step.tuff_bricks" + }, + "jump" : { + "pitch" : 1.10, + "sound" : "step.tuff_bricks", + "volume" : 0.120 + }, + "land" : { + "sound" : "step.tuff_bricks" + }, + "step" : { + "sound" : "step.tuff_bricks" + } + }, + "pitch" : 1.0, + "volume" : 1.0 + }, "turtle_egg" : { "events" : { "default" : "", @@ -8342,6 +8922,29 @@ "pitch" : 0.90, "volume" : 1.0 }, + "vault" : { + "events" : { + "default" : "", + "fall" : { + "sound" : "vault.step", + "volume" : 0.40 + }, + "jump" : { + "sound" : "vault.step", + "volume" : 0.120 + }, + "land" : { + "sound" : "vault.step", + "volume" : 0.20 + }, + "step" : { + "sound" : "vault.step", + "volume" : 0.150 + } + }, + "pitch" : 1.0, + "volume" : 1.0 + }, "vines" : { "events" : { "default" : "", @@ -8366,6 +8969,28 @@ "pitch" : 1.0, "volume" : 1.0 }, + "web" : { + "events" : { + "default" : "", + "fall" : { + "sound" : "step.web", + "volume" : 1.0 + }, + "jump" : { + "pitch" : 1.10, + "sound" : "step.web", + "volume" : 0.120 + }, + "land" : { + "sound" : "step.web" + }, + "step" : { + "sound" : "step.web" + } + }, + "pitch" : 1.0, + "volume" : 1.0 + }, "wood" : { "events" : { "default" : "", diff --git a/resource_pack/sounds/block/copper_bulb/break1.fsb b/resource_pack/sounds/block/copper_bulb/break1.fsb new file mode 100644 index 000000000..9523bf919 Binary files /dev/null and b/resource_pack/sounds/block/copper_bulb/break1.fsb differ diff --git a/resource_pack/sounds/block/copper_bulb/break2.fsb b/resource_pack/sounds/block/copper_bulb/break2.fsb new file mode 100644 index 000000000..d8236673e Binary files /dev/null and b/resource_pack/sounds/block/copper_bulb/break2.fsb differ diff --git a/resource_pack/sounds/block/copper_bulb/break3.fsb b/resource_pack/sounds/block/copper_bulb/break3.fsb new file mode 100644 index 000000000..20f4f3821 Binary files /dev/null and b/resource_pack/sounds/block/copper_bulb/break3.fsb differ diff --git a/resource_pack/sounds/block/copper_bulb/break4.fsb b/resource_pack/sounds/block/copper_bulb/break4.fsb new file mode 100644 index 000000000..662c531a9 Binary files /dev/null and b/resource_pack/sounds/block/copper_bulb/break4.fsb differ diff --git a/resource_pack/sounds/block/copper_bulb/place1.fsb b/resource_pack/sounds/block/copper_bulb/place1.fsb new file mode 100644 index 000000000..1dedcc2d2 Binary files /dev/null and b/resource_pack/sounds/block/copper_bulb/place1.fsb differ diff --git a/resource_pack/sounds/block/copper_bulb/place2.fsb b/resource_pack/sounds/block/copper_bulb/place2.fsb new file mode 100644 index 000000000..127545e2c Binary files /dev/null and b/resource_pack/sounds/block/copper_bulb/place2.fsb differ diff --git a/resource_pack/sounds/block/copper_bulb/place3.fsb b/resource_pack/sounds/block/copper_bulb/place3.fsb new file mode 100644 index 000000000..8f7a56b1e Binary files /dev/null and b/resource_pack/sounds/block/copper_bulb/place3.fsb differ diff --git a/resource_pack/sounds/block/copper_bulb/place4.fsb b/resource_pack/sounds/block/copper_bulb/place4.fsb new file mode 100644 index 000000000..0ba6ecb47 Binary files /dev/null and b/resource_pack/sounds/block/copper_bulb/place4.fsb differ diff --git a/resource_pack/sounds/block/copper_bulb/step1.fsb b/resource_pack/sounds/block/copper_bulb/step1.fsb new file mode 100644 index 000000000..a5fac22d5 Binary files /dev/null and b/resource_pack/sounds/block/copper_bulb/step1.fsb differ diff --git a/resource_pack/sounds/block/copper_bulb/step2.fsb b/resource_pack/sounds/block/copper_bulb/step2.fsb new file mode 100644 index 000000000..88c17099f Binary files /dev/null and b/resource_pack/sounds/block/copper_bulb/step2.fsb differ diff --git a/resource_pack/sounds/block/copper_bulb/step3.fsb b/resource_pack/sounds/block/copper_bulb/step3.fsb new file mode 100644 index 000000000..fb42e1ef8 Binary files /dev/null and b/resource_pack/sounds/block/copper_bulb/step3.fsb differ diff --git a/resource_pack/sounds/block/copper_bulb/step4.fsb b/resource_pack/sounds/block/copper_bulb/step4.fsb new file mode 100644 index 000000000..f2e6757ad Binary files /dev/null and b/resource_pack/sounds/block/copper_bulb/step4.fsb differ diff --git a/resource_pack/sounds/block/copper_bulb/step5.fsb b/resource_pack/sounds/block/copper_bulb/step5.fsb new file mode 100644 index 000000000..618e95f9d Binary files /dev/null and b/resource_pack/sounds/block/copper_bulb/step5.fsb differ diff --git a/resource_pack/sounds/block/copper_bulb/step6.fsb b/resource_pack/sounds/block/copper_bulb/step6.fsb new file mode 100644 index 000000000..c206f4162 Binary files /dev/null and b/resource_pack/sounds/block/copper_bulb/step6.fsb differ diff --git a/resource_pack/sounds/block/copper_bulb/turn_off.fsb b/resource_pack/sounds/block/copper_bulb/turn_off.fsb new file mode 100644 index 000000000..d3680857e Binary files /dev/null and b/resource_pack/sounds/block/copper_bulb/turn_off.fsb differ diff --git a/resource_pack/sounds/block/copper_bulb/turn_on.fsb b/resource_pack/sounds/block/copper_bulb/turn_on.fsb new file mode 100644 index 000000000..30e5d1f47 Binary files /dev/null and b/resource_pack/sounds/block/copper_bulb/turn_on.fsb differ diff --git a/resource_pack/sounds/block/copper_door/toggle1.fsb b/resource_pack/sounds/block/copper_door/toggle1.fsb new file mode 100644 index 000000000..97a83522f Binary files /dev/null and b/resource_pack/sounds/block/copper_door/toggle1.fsb differ diff --git a/resource_pack/sounds/block/copper_door/toggle2.fsb b/resource_pack/sounds/block/copper_door/toggle2.fsb new file mode 100644 index 000000000..9fa17fbb9 Binary files /dev/null and b/resource_pack/sounds/block/copper_door/toggle2.fsb differ diff --git a/resource_pack/sounds/block/copper_door/toggle3.fsb b/resource_pack/sounds/block/copper_door/toggle3.fsb new file mode 100644 index 000000000..673c51d82 Binary files /dev/null and b/resource_pack/sounds/block/copper_door/toggle3.fsb differ diff --git a/resource_pack/sounds/block/copper_grate/break1.fsb b/resource_pack/sounds/block/copper_grate/break1.fsb new file mode 100644 index 000000000..2dc64b372 Binary files /dev/null and b/resource_pack/sounds/block/copper_grate/break1.fsb differ diff --git a/resource_pack/sounds/block/copper_grate/break2.fsb b/resource_pack/sounds/block/copper_grate/break2.fsb new file mode 100644 index 000000000..c22c3903a Binary files /dev/null and b/resource_pack/sounds/block/copper_grate/break2.fsb differ diff --git a/resource_pack/sounds/block/copper_grate/break3.fsb b/resource_pack/sounds/block/copper_grate/break3.fsb new file mode 100644 index 000000000..b3fe17c13 Binary files /dev/null and b/resource_pack/sounds/block/copper_grate/break3.fsb differ diff --git a/resource_pack/sounds/block/copper_grate/break4.fsb b/resource_pack/sounds/block/copper_grate/break4.fsb new file mode 100644 index 000000000..2f5ec629d Binary files /dev/null and b/resource_pack/sounds/block/copper_grate/break4.fsb differ diff --git a/resource_pack/sounds/block/copper_grate/step1.fsb b/resource_pack/sounds/block/copper_grate/step1.fsb new file mode 100644 index 000000000..d81432462 Binary files /dev/null and b/resource_pack/sounds/block/copper_grate/step1.fsb differ diff --git a/resource_pack/sounds/block/copper_grate/step2.fsb b/resource_pack/sounds/block/copper_grate/step2.fsb new file mode 100644 index 000000000..8038cb265 Binary files /dev/null and b/resource_pack/sounds/block/copper_grate/step2.fsb differ diff --git a/resource_pack/sounds/block/copper_grate/step3.fsb b/resource_pack/sounds/block/copper_grate/step3.fsb new file mode 100644 index 000000000..f71a1f893 Binary files /dev/null and b/resource_pack/sounds/block/copper_grate/step3.fsb differ diff --git a/resource_pack/sounds/block/copper_grate/step4.fsb b/resource_pack/sounds/block/copper_grate/step4.fsb new file mode 100644 index 000000000..166bd0f9a Binary files /dev/null and b/resource_pack/sounds/block/copper_grate/step4.fsb differ diff --git a/resource_pack/sounds/block/copper_grate/step5.fsb b/resource_pack/sounds/block/copper_grate/step5.fsb new file mode 100644 index 000000000..188692bc4 Binary files /dev/null and b/resource_pack/sounds/block/copper_grate/step5.fsb differ diff --git a/resource_pack/sounds/block/copper_grate/step6.fsb b/resource_pack/sounds/block/copper_grate/step6.fsb new file mode 100644 index 000000000..43d214e4c Binary files /dev/null and b/resource_pack/sounds/block/copper_grate/step6.fsb differ diff --git a/resource_pack/sounds/block/copper_trapdoor/toggle1.fsb b/resource_pack/sounds/block/copper_trapdoor/toggle1.fsb new file mode 100644 index 000000000..cfaa61bb3 Binary files /dev/null and b/resource_pack/sounds/block/copper_trapdoor/toggle1.fsb differ diff --git a/resource_pack/sounds/block/copper_trapdoor/toggle2.fsb b/resource_pack/sounds/block/copper_trapdoor/toggle2.fsb new file mode 100644 index 000000000..90538cc03 Binary files /dev/null and b/resource_pack/sounds/block/copper_trapdoor/toggle2.fsb differ diff --git a/resource_pack/sounds/block/copper_trapdoor/toggle3.fsb b/resource_pack/sounds/block/copper_trapdoor/toggle3.fsb new file mode 100644 index 000000000..42cc42d03 Binary files /dev/null and b/resource_pack/sounds/block/copper_trapdoor/toggle3.fsb differ diff --git a/resource_pack/sounds/block/copper_trapdoor/toggle4.fsb b/resource_pack/sounds/block/copper_trapdoor/toggle4.fsb new file mode 100644 index 000000000..3c2dc3acc Binary files /dev/null and b/resource_pack/sounds/block/copper_trapdoor/toggle4.fsb differ diff --git a/resource_pack/sounds/block/crafter/craft.fsb b/resource_pack/sounds/block/crafter/craft.fsb new file mode 100644 index 000000000..fbf3f06fa Binary files /dev/null and b/resource_pack/sounds/block/crafter/craft.fsb differ diff --git a/resource_pack/sounds/block/crafter/fail.fsb b/resource_pack/sounds/block/crafter/fail.fsb new file mode 100644 index 000000000..04a6c034b Binary files /dev/null and b/resource_pack/sounds/block/crafter/fail.fsb differ diff --git a/resource_pack/sounds/block/heavy_core/break1.fsb b/resource_pack/sounds/block/heavy_core/break1.fsb new file mode 100644 index 000000000..55e64a2da Binary files /dev/null and b/resource_pack/sounds/block/heavy_core/break1.fsb differ diff --git a/resource_pack/sounds/block/heavy_core/break2.fsb b/resource_pack/sounds/block/heavy_core/break2.fsb new file mode 100644 index 000000000..3dfd5060d Binary files /dev/null and b/resource_pack/sounds/block/heavy_core/break2.fsb differ diff --git a/resource_pack/sounds/block/heavy_core/break3.fsb b/resource_pack/sounds/block/heavy_core/break3.fsb new file mode 100644 index 000000000..56146baab Binary files /dev/null and b/resource_pack/sounds/block/heavy_core/break3.fsb differ diff --git a/resource_pack/sounds/block/heavy_core/break4.fsb b/resource_pack/sounds/block/heavy_core/break4.fsb new file mode 100644 index 000000000..eb90ccf18 Binary files /dev/null and b/resource_pack/sounds/block/heavy_core/break4.fsb differ diff --git a/resource_pack/sounds/block/heavy_core/step1.fsb b/resource_pack/sounds/block/heavy_core/step1.fsb new file mode 100644 index 000000000..8519b0201 Binary files /dev/null and b/resource_pack/sounds/block/heavy_core/step1.fsb differ diff --git a/resource_pack/sounds/block/heavy_core/step2.fsb b/resource_pack/sounds/block/heavy_core/step2.fsb new file mode 100644 index 000000000..1de4ad535 Binary files /dev/null and b/resource_pack/sounds/block/heavy_core/step2.fsb differ diff --git a/resource_pack/sounds/block/heavy_core/step3.fsb b/resource_pack/sounds/block/heavy_core/step3.fsb new file mode 100644 index 000000000..8007c39e7 Binary files /dev/null and b/resource_pack/sounds/block/heavy_core/step3.fsb differ diff --git a/resource_pack/sounds/block/heavy_core/step4.fsb b/resource_pack/sounds/block/heavy_core/step4.fsb new file mode 100644 index 000000000..ed195bf7d Binary files /dev/null and b/resource_pack/sounds/block/heavy_core/step4.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/about_to_spawn_item.fsb b/resource_pack/sounds/block/trial_spawner/about_to_spawn_item.fsb new file mode 100644 index 000000000..dfa3ab5cb Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/about_to_spawn_item.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/ambient1.fsb b/resource_pack/sounds/block/trial_spawner/ambient1.fsb new file mode 100644 index 000000000..567d46386 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/ambient1.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/ambient2.fsb b/resource_pack/sounds/block/trial_spawner/ambient2.fsb new file mode 100644 index 000000000..cb546cee5 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/ambient2.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/ambient3.fsb b/resource_pack/sounds/block/trial_spawner/ambient3.fsb new file mode 100644 index 000000000..806fa42d1 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/ambient3.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/ambient4.fsb b/resource_pack/sounds/block/trial_spawner/ambient4.fsb new file mode 100644 index 000000000..91ea5348a Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/ambient4.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/ambient5.fsb b/resource_pack/sounds/block/trial_spawner/ambient5.fsb new file mode 100644 index 000000000..39b58e81e Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/ambient5.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/ambient_ominous1.fsb b/resource_pack/sounds/block/trial_spawner/ambient_ominous1.fsb new file mode 100644 index 000000000..09ad27653 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/ambient_ominous1.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/ambient_ominous2.fsb b/resource_pack/sounds/block/trial_spawner/ambient_ominous2.fsb new file mode 100644 index 000000000..4046e0678 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/ambient_ominous2.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/ambient_ominous3.fsb b/resource_pack/sounds/block/trial_spawner/ambient_ominous3.fsb new file mode 100644 index 000000000..ba1bd708c Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/ambient_ominous3.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/ambient_ominous4.fsb b/resource_pack/sounds/block/trial_spawner/ambient_ominous4.fsb new file mode 100644 index 000000000..6836169b7 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/ambient_ominous4.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/ambient_ominous5.fsb b/resource_pack/sounds/block/trial_spawner/ambient_ominous5.fsb new file mode 100644 index 000000000..94c16d0ee Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/ambient_ominous5.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/break1.fsb b/resource_pack/sounds/block/trial_spawner/break1.fsb new file mode 100644 index 000000000..03845ae79 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/break1.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/break2.fsb b/resource_pack/sounds/block/trial_spawner/break2.fsb new file mode 100644 index 000000000..6c3000b25 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/break2.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/break3.fsb b/resource_pack/sounds/block/trial_spawner/break3.fsb new file mode 100644 index 000000000..921b828c7 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/break3.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/charge_activate.fsb b/resource_pack/sounds/block/trial_spawner/charge_activate.fsb new file mode 100644 index 000000000..438498cbe Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/charge_activate.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/close_shutter.fsb b/resource_pack/sounds/block/trial_spawner/close_shutter.fsb new file mode 100644 index 000000000..7e4f297e1 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/close_shutter.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/detect_player1.fsb b/resource_pack/sounds/block/trial_spawner/detect_player1.fsb new file mode 100644 index 000000000..636121a9a Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/detect_player1.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/detect_player2.fsb b/resource_pack/sounds/block/trial_spawner/detect_player2.fsb new file mode 100644 index 000000000..2445526d5 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/detect_player2.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/detect_player3.fsb b/resource_pack/sounds/block/trial_spawner/detect_player3.fsb new file mode 100644 index 000000000..ef9c35e0a Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/detect_player3.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/eject_item1.fsb b/resource_pack/sounds/block/trial_spawner/eject_item1.fsb new file mode 100644 index 000000000..b6c5fcd53 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/eject_item1.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/open_shutter.fsb b/resource_pack/sounds/block/trial_spawner/open_shutter.fsb new file mode 100644 index 000000000..a46c27122 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/open_shutter.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/place1.fsb b/resource_pack/sounds/block/trial_spawner/place1.fsb new file mode 100644 index 000000000..b0e5a0a5b Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/place1.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/place2.fsb b/resource_pack/sounds/block/trial_spawner/place2.fsb new file mode 100644 index 000000000..b14911ea5 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/place2.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/place3.fsb b/resource_pack/sounds/block/trial_spawner/place3.fsb new file mode 100644 index 000000000..22b3baca4 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/place3.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/spawn1.fsb b/resource_pack/sounds/block/trial_spawner/spawn1.fsb new file mode 100644 index 000000000..6839eb63a Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/spawn1.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/spawn2.fsb b/resource_pack/sounds/block/trial_spawner/spawn2.fsb new file mode 100644 index 000000000..4e69cf307 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/spawn2.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/spawn3.fsb b/resource_pack/sounds/block/trial_spawner/spawn3.fsb new file mode 100644 index 000000000..217409fd4 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/spawn3.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/spawn4.fsb b/resource_pack/sounds/block/trial_spawner/spawn4.fsb new file mode 100644 index 000000000..fdb3c3d4e Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/spawn4.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/spawn_item1.fsb b/resource_pack/sounds/block/trial_spawner/spawn_item1.fsb new file mode 100644 index 000000000..e9b8d63b0 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/spawn_item1.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/spawn_item2.fsb b/resource_pack/sounds/block/trial_spawner/spawn_item2.fsb new file mode 100644 index 000000000..594ec4050 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/spawn_item2.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/spawn_item3.fsb b/resource_pack/sounds/block/trial_spawner/spawn_item3.fsb new file mode 100644 index 000000000..361102b47 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/spawn_item3.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/spawn_item_begin1.fsb b/resource_pack/sounds/block/trial_spawner/spawn_item_begin1.fsb new file mode 100644 index 000000000..e028eaa97 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/spawn_item_begin1.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/spawn_item_begin2.fsb b/resource_pack/sounds/block/trial_spawner/spawn_item_begin2.fsb new file mode 100644 index 000000000..3a077c620 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/spawn_item_begin2.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/spawn_item_begin3.fsb b/resource_pack/sounds/block/trial_spawner/spawn_item_begin3.fsb new file mode 100644 index 000000000..54e58c868 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/spawn_item_begin3.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/step1.fsb b/resource_pack/sounds/block/trial_spawner/step1.fsb new file mode 100644 index 000000000..357bf8e68 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/step1.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/step2.fsb b/resource_pack/sounds/block/trial_spawner/step2.fsb new file mode 100644 index 000000000..4baf0c145 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/step2.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/step3.fsb b/resource_pack/sounds/block/trial_spawner/step3.fsb new file mode 100644 index 000000000..01c35b529 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/step3.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/step4.fsb b/resource_pack/sounds/block/trial_spawner/step4.fsb new file mode 100644 index 000000000..c8ffc6d23 Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/step4.fsb differ diff --git a/resource_pack/sounds/block/trial_spawner/step5.fsb b/resource_pack/sounds/block/trial_spawner/step5.fsb new file mode 100644 index 000000000..014d12dad Binary files /dev/null and b/resource_pack/sounds/block/trial_spawner/step5.fsb differ diff --git a/resource_pack/sounds/block/vault/activate.fsb b/resource_pack/sounds/block/vault/activate.fsb new file mode 100644 index 000000000..0d6584074 Binary files /dev/null and b/resource_pack/sounds/block/vault/activate.fsb differ diff --git a/resource_pack/sounds/block/vault/ambient1.fsb b/resource_pack/sounds/block/vault/ambient1.fsb new file mode 100644 index 000000000..72c972d44 Binary files /dev/null and b/resource_pack/sounds/block/vault/ambient1.fsb differ diff --git a/resource_pack/sounds/block/vault/ambient2.fsb b/resource_pack/sounds/block/vault/ambient2.fsb new file mode 100644 index 000000000..cf100f8e9 Binary files /dev/null and b/resource_pack/sounds/block/vault/ambient2.fsb differ diff --git a/resource_pack/sounds/block/vault/ambient3.fsb b/resource_pack/sounds/block/vault/ambient3.fsb new file mode 100644 index 000000000..46558c4b6 Binary files /dev/null and b/resource_pack/sounds/block/vault/ambient3.fsb differ diff --git a/resource_pack/sounds/block/vault/break1.fsb b/resource_pack/sounds/block/vault/break1.fsb new file mode 100644 index 000000000..74a6d417f Binary files /dev/null and b/resource_pack/sounds/block/vault/break1.fsb differ diff --git a/resource_pack/sounds/block/vault/break2.fsb b/resource_pack/sounds/block/vault/break2.fsb new file mode 100644 index 000000000..821cddb1c Binary files /dev/null and b/resource_pack/sounds/block/vault/break2.fsb differ diff --git a/resource_pack/sounds/block/vault/break3.fsb b/resource_pack/sounds/block/vault/break3.fsb new file mode 100644 index 000000000..b66d41f9a Binary files /dev/null and b/resource_pack/sounds/block/vault/break3.fsb differ diff --git a/resource_pack/sounds/block/vault/break4.fsb b/resource_pack/sounds/block/vault/break4.fsb new file mode 100644 index 000000000..90f6ef0b0 Binary files /dev/null and b/resource_pack/sounds/block/vault/break4.fsb differ diff --git a/resource_pack/sounds/block/vault/deactivate.fsb b/resource_pack/sounds/block/vault/deactivate.fsb new file mode 100644 index 000000000..cd021671b Binary files /dev/null and b/resource_pack/sounds/block/vault/deactivate.fsb differ diff --git a/resource_pack/sounds/block/vault/eject_item1.fsb b/resource_pack/sounds/block/vault/eject_item1.fsb new file mode 100644 index 000000000..bad58b382 Binary files /dev/null and b/resource_pack/sounds/block/vault/eject_item1.fsb differ diff --git a/resource_pack/sounds/block/vault/eject_item2.fsb b/resource_pack/sounds/block/vault/eject_item2.fsb new file mode 100644 index 000000000..b1c89c85b Binary files /dev/null and b/resource_pack/sounds/block/vault/eject_item2.fsb differ diff --git a/resource_pack/sounds/block/vault/eject_item3.fsb b/resource_pack/sounds/block/vault/eject_item3.fsb new file mode 100644 index 000000000..6b6d9e624 Binary files /dev/null and b/resource_pack/sounds/block/vault/eject_item3.fsb differ diff --git a/resource_pack/sounds/block/vault/insert.fsb b/resource_pack/sounds/block/vault/insert.fsb new file mode 100644 index 000000000..9d14029ab Binary files /dev/null and b/resource_pack/sounds/block/vault/insert.fsb differ diff --git a/resource_pack/sounds/block/vault/insert_fail.fsb b/resource_pack/sounds/block/vault/insert_fail.fsb new file mode 100644 index 000000000..55fdfb6e4 Binary files /dev/null and b/resource_pack/sounds/block/vault/insert_fail.fsb differ diff --git a/resource_pack/sounds/block/vault/open_shutter.fsb b/resource_pack/sounds/block/vault/open_shutter.fsb new file mode 100644 index 000000000..9bdc4a54e Binary files /dev/null and b/resource_pack/sounds/block/vault/open_shutter.fsb differ diff --git a/resource_pack/sounds/block/vault/place1.fsb b/resource_pack/sounds/block/vault/place1.fsb new file mode 100644 index 000000000..eb7b6d308 Binary files /dev/null and b/resource_pack/sounds/block/vault/place1.fsb differ diff --git a/resource_pack/sounds/block/vault/place2.fsb b/resource_pack/sounds/block/vault/place2.fsb new file mode 100644 index 000000000..e6c3f20f7 Binary files /dev/null and b/resource_pack/sounds/block/vault/place2.fsb differ diff --git a/resource_pack/sounds/block/vault/place3.fsb b/resource_pack/sounds/block/vault/place3.fsb new file mode 100644 index 000000000..43875f8f9 Binary files /dev/null and b/resource_pack/sounds/block/vault/place3.fsb differ diff --git a/resource_pack/sounds/block/vault/place4.fsb b/resource_pack/sounds/block/vault/place4.fsb new file mode 100644 index 000000000..161bf32b8 Binary files /dev/null and b/resource_pack/sounds/block/vault/place4.fsb differ diff --git a/resource_pack/sounds/block/vault/step1.fsb b/resource_pack/sounds/block/vault/step1.fsb new file mode 100644 index 000000000..b9796c002 Binary files /dev/null and b/resource_pack/sounds/block/vault/step1.fsb differ diff --git a/resource_pack/sounds/block/vault/step2.fsb b/resource_pack/sounds/block/vault/step2.fsb new file mode 100644 index 000000000..1100e9718 Binary files /dev/null and b/resource_pack/sounds/block/vault/step2.fsb differ diff --git a/resource_pack/sounds/block/vault/step3.fsb b/resource_pack/sounds/block/vault/step3.fsb new file mode 100644 index 000000000..9127c77ed Binary files /dev/null and b/resource_pack/sounds/block/vault/step3.fsb differ diff --git a/resource_pack/sounds/block/vault/step4.fsb b/resource_pack/sounds/block/vault/step4.fsb new file mode 100644 index 000000000..1db7c7ec7 Binary files /dev/null and b/resource_pack/sounds/block/vault/step4.fsb differ diff --git a/resource_pack/sounds/block/vault/step5.fsb b/resource_pack/sounds/block/vault/step5.fsb new file mode 100644 index 000000000..9bcb18ba6 Binary files /dev/null and b/resource_pack/sounds/block/vault/step5.fsb differ diff --git a/resource_pack/sounds/block/vault/step6.fsb b/resource_pack/sounds/block/vault/step6.fsb new file mode 100644 index 000000000..be3cac27b Binary files /dev/null and b/resource_pack/sounds/block/vault/step6.fsb differ diff --git a/resource_pack/sounds/block/vault/step7.fsb b/resource_pack/sounds/block/vault/step7.fsb new file mode 100644 index 000000000..2158b09b8 Binary files /dev/null and b/resource_pack/sounds/block/vault/step7.fsb differ diff --git a/resource_pack/sounds/block/vault/step8.fsb b/resource_pack/sounds/block/vault/step8.fsb new file mode 100644 index 000000000..ac243c5e2 Binary files /dev/null and b/resource_pack/sounds/block/vault/step8.fsb differ diff --git a/resource_pack/sounds/block/web/break1.fsb b/resource_pack/sounds/block/web/break1.fsb new file mode 100644 index 000000000..9021d7389 Binary files /dev/null and b/resource_pack/sounds/block/web/break1.fsb differ diff --git a/resource_pack/sounds/block/web/break2.fsb b/resource_pack/sounds/block/web/break2.fsb new file mode 100644 index 000000000..b319ed493 Binary files /dev/null and b/resource_pack/sounds/block/web/break2.fsb differ diff --git a/resource_pack/sounds/block/web/break3.fsb b/resource_pack/sounds/block/web/break3.fsb new file mode 100644 index 000000000..cd241c470 Binary files /dev/null and b/resource_pack/sounds/block/web/break3.fsb differ diff --git a/resource_pack/sounds/block/web/break4.fsb b/resource_pack/sounds/block/web/break4.fsb new file mode 100644 index 000000000..234dacccb Binary files /dev/null and b/resource_pack/sounds/block/web/break4.fsb differ diff --git a/resource_pack/sounds/block/web/break5.fsb b/resource_pack/sounds/block/web/break5.fsb new file mode 100644 index 000000000..24963dca0 Binary files /dev/null and b/resource_pack/sounds/block/web/break5.fsb differ diff --git a/resource_pack/sounds/block/web/break6.fsb b/resource_pack/sounds/block/web/break6.fsb new file mode 100644 index 000000000..f8e752e3c Binary files /dev/null and b/resource_pack/sounds/block/web/break6.fsb differ diff --git a/resource_pack/sounds/block/web/step1.fsb b/resource_pack/sounds/block/web/step1.fsb new file mode 100644 index 000000000..ce7b10e23 Binary files /dev/null and b/resource_pack/sounds/block/web/step1.fsb differ diff --git a/resource_pack/sounds/block/web/step2.fsb b/resource_pack/sounds/block/web/step2.fsb new file mode 100644 index 000000000..b21b41eb7 Binary files /dev/null and b/resource_pack/sounds/block/web/step2.fsb differ diff --git a/resource_pack/sounds/block/web/step3.fsb b/resource_pack/sounds/block/web/step3.fsb new file mode 100644 index 000000000..53539f7ab Binary files /dev/null and b/resource_pack/sounds/block/web/step3.fsb differ diff --git a/resource_pack/sounds/block/web/step4.fsb b/resource_pack/sounds/block/web/step4.fsb new file mode 100644 index 000000000..04d292397 Binary files /dev/null and b/resource_pack/sounds/block/web/step4.fsb differ diff --git a/resource_pack/sounds/block/web/step5.fsb b/resource_pack/sounds/block/web/step5.fsb new file mode 100644 index 000000000..ad8421385 Binary files /dev/null and b/resource_pack/sounds/block/web/step5.fsb differ diff --git a/resource_pack/sounds/block/web/step6.fsb b/resource_pack/sounds/block/web/step6.fsb new file mode 100644 index 000000000..87fbf4b4a Binary files /dev/null and b/resource_pack/sounds/block/web/step6.fsb differ diff --git a/resource_pack/sounds/bubbles/hud_bubble.fsb b/resource_pack/sounds/bubbles/hud_bubble.fsb new file mode 100644 index 000000000..a0c1f3f96 Binary files /dev/null and b/resource_pack/sounds/bubbles/hud_bubble.fsb differ diff --git a/resource_pack/sounds/cave/cave20.fsb b/resource_pack/sounds/cave/cave20.fsb new file mode 100644 index 000000000..ea740d4fe Binary files /dev/null and b/resource_pack/sounds/cave/cave20.fsb differ diff --git a/resource_pack/sounds/cave/cave21.fsb b/resource_pack/sounds/cave/cave21.fsb new file mode 100644 index 000000000..2d01df5b6 Binary files /dev/null and b/resource_pack/sounds/cave/cave21.fsb differ diff --git a/resource_pack/sounds/cave/cave22.fsb b/resource_pack/sounds/cave/cave22.fsb new file mode 100644 index 000000000..bd1b61554 Binary files /dev/null and b/resource_pack/sounds/cave/cave22.fsb differ diff --git a/resource_pack/sounds/cave/cave23.fsb b/resource_pack/sounds/cave/cave23.fsb new file mode 100644 index 000000000..0f2cf606f Binary files /dev/null and b/resource_pack/sounds/cave/cave23.fsb differ diff --git a/resource_pack/sounds/event/mob_effects/bad_omen.fsb b/resource_pack/sounds/event/mob_effects/bad_omen.fsb new file mode 100644 index 000000000..df1a9eebb Binary files /dev/null and b/resource_pack/sounds/event/mob_effects/bad_omen.fsb differ diff --git a/resource_pack/sounds/event/mob_effects/raid_omen.fsb b/resource_pack/sounds/event/mob_effects/raid_omen.fsb new file mode 100644 index 000000000..d2275f3d0 Binary files /dev/null and b/resource_pack/sounds/event/mob_effects/raid_omen.fsb differ diff --git a/resource_pack/sounds/event/mob_effects/trial_omen.fsb b/resource_pack/sounds/event/mob_effects/trial_omen.fsb new file mode 100644 index 000000000..67c730eb1 Binary files /dev/null and b/resource_pack/sounds/event/mob_effects/trial_omen.fsb differ diff --git a/resource_pack/sounds/item/mace/smash_air1.fsb b/resource_pack/sounds/item/mace/smash_air1.fsb new file mode 100644 index 000000000..01494e700 Binary files /dev/null and b/resource_pack/sounds/item/mace/smash_air1.fsb differ diff --git a/resource_pack/sounds/item/mace/smash_air2.fsb b/resource_pack/sounds/item/mace/smash_air2.fsb new file mode 100644 index 000000000..4c4756e1f Binary files /dev/null and b/resource_pack/sounds/item/mace/smash_air2.fsb differ diff --git a/resource_pack/sounds/item/mace/smash_air3.fsb b/resource_pack/sounds/item/mace/smash_air3.fsb new file mode 100644 index 000000000..72e957a4b Binary files /dev/null and b/resource_pack/sounds/item/mace/smash_air3.fsb differ diff --git a/resource_pack/sounds/item/mace/smash_ground1.fsb b/resource_pack/sounds/item/mace/smash_ground1.fsb new file mode 100644 index 000000000..3bf13de6a Binary files /dev/null and b/resource_pack/sounds/item/mace/smash_ground1.fsb differ diff --git a/resource_pack/sounds/item/mace/smash_ground2.fsb b/resource_pack/sounds/item/mace/smash_ground2.fsb new file mode 100644 index 000000000..afaa884b5 Binary files /dev/null and b/resource_pack/sounds/item/mace/smash_ground2.fsb differ diff --git a/resource_pack/sounds/item/mace/smash_ground3.fsb b/resource_pack/sounds/item/mace/smash_ground3.fsb new file mode 100644 index 000000000..c18c90fd3 Binary files /dev/null and b/resource_pack/sounds/item/mace/smash_ground3.fsb differ diff --git a/resource_pack/sounds/item/mace/smash_ground4.fsb b/resource_pack/sounds/item/mace/smash_ground4.fsb new file mode 100644 index 000000000..aa3fc838a Binary files /dev/null and b/resource_pack/sounds/item/mace/smash_ground4.fsb differ diff --git a/resource_pack/sounds/item/mace/smash_ground_heavy.fsb b/resource_pack/sounds/item/mace/smash_ground_heavy.fsb new file mode 100644 index 000000000..42401110b Binary files /dev/null and b/resource_pack/sounds/item/mace/smash_ground_heavy.fsb differ diff --git a/resource_pack/sounds/item/ominous_bottle/dispose.fsb b/resource_pack/sounds/item/ominous_bottle/dispose.fsb new file mode 100644 index 000000000..06cac89ed Binary files /dev/null and b/resource_pack/sounds/item/ominous_bottle/dispose.fsb differ diff --git a/resource_pack/sounds/item/wind_charge/wind_burst1.fsb b/resource_pack/sounds/item/wind_charge/wind_burst1.fsb new file mode 100644 index 000000000..83b1580b6 Binary files /dev/null and b/resource_pack/sounds/item/wind_charge/wind_burst1.fsb differ diff --git a/resource_pack/sounds/item/wind_charge/wind_burst2.fsb b/resource_pack/sounds/item/wind_charge/wind_burst2.fsb new file mode 100644 index 000000000..3ce8ed226 Binary files /dev/null and b/resource_pack/sounds/item/wind_charge/wind_burst2.fsb differ diff --git a/resource_pack/sounds/item/wind_charge/wind_burst3.fsb b/resource_pack/sounds/item/wind_charge/wind_burst3.fsb new file mode 100644 index 000000000..12808eaec Binary files /dev/null and b/resource_pack/sounds/item/wind_charge/wind_burst3.fsb differ diff --git a/resource_pack/sounds/mob/bogged/ambient1.fsb b/resource_pack/sounds/mob/bogged/ambient1.fsb new file mode 100644 index 000000000..d747d3b9e Binary files /dev/null and b/resource_pack/sounds/mob/bogged/ambient1.fsb differ diff --git a/resource_pack/sounds/mob/bogged/ambient2.fsb b/resource_pack/sounds/mob/bogged/ambient2.fsb new file mode 100644 index 000000000..4164113f3 Binary files /dev/null and b/resource_pack/sounds/mob/bogged/ambient2.fsb differ diff --git a/resource_pack/sounds/mob/bogged/ambient3.fsb b/resource_pack/sounds/mob/bogged/ambient3.fsb new file mode 100644 index 000000000..d5a27aed5 Binary files /dev/null and b/resource_pack/sounds/mob/bogged/ambient3.fsb differ diff --git a/resource_pack/sounds/mob/bogged/ambient4.fsb b/resource_pack/sounds/mob/bogged/ambient4.fsb new file mode 100644 index 000000000..2d080b6c0 Binary files /dev/null and b/resource_pack/sounds/mob/bogged/ambient4.fsb differ diff --git a/resource_pack/sounds/mob/bogged/death.fsb b/resource_pack/sounds/mob/bogged/death.fsb new file mode 100644 index 000000000..4608f8205 Binary files /dev/null and b/resource_pack/sounds/mob/bogged/death.fsb differ diff --git a/resource_pack/sounds/mob/bogged/hurt1.fsb b/resource_pack/sounds/mob/bogged/hurt1.fsb new file mode 100644 index 000000000..7d4c97e66 Binary files /dev/null and b/resource_pack/sounds/mob/bogged/hurt1.fsb differ diff --git a/resource_pack/sounds/mob/bogged/hurt2.fsb b/resource_pack/sounds/mob/bogged/hurt2.fsb new file mode 100644 index 000000000..377137c6e Binary files /dev/null and b/resource_pack/sounds/mob/bogged/hurt2.fsb differ diff --git a/resource_pack/sounds/mob/bogged/hurt3.fsb b/resource_pack/sounds/mob/bogged/hurt3.fsb new file mode 100644 index 000000000..cbeee3503 Binary files /dev/null and b/resource_pack/sounds/mob/bogged/hurt3.fsb differ diff --git a/resource_pack/sounds/mob/bogged/hurt4.fsb b/resource_pack/sounds/mob/bogged/hurt4.fsb new file mode 100644 index 000000000..1ae0411c8 Binary files /dev/null and b/resource_pack/sounds/mob/bogged/hurt4.fsb differ diff --git a/resource_pack/sounds/mob/bogged/step1.fsb b/resource_pack/sounds/mob/bogged/step1.fsb new file mode 100644 index 000000000..954519a74 Binary files /dev/null and b/resource_pack/sounds/mob/bogged/step1.fsb differ diff --git a/resource_pack/sounds/mob/bogged/step2.fsb b/resource_pack/sounds/mob/bogged/step2.fsb new file mode 100644 index 000000000..a00315f03 Binary files /dev/null and b/resource_pack/sounds/mob/bogged/step2.fsb differ diff --git a/resource_pack/sounds/mob/bogged/step3.fsb b/resource_pack/sounds/mob/bogged/step3.fsb new file mode 100644 index 000000000..ca0ba4562 Binary files /dev/null and b/resource_pack/sounds/mob/bogged/step3.fsb differ diff --git a/resource_pack/sounds/mob/bogged/step4.fsb b/resource_pack/sounds/mob/bogged/step4.fsb new file mode 100644 index 000000000..201f0765b Binary files /dev/null and b/resource_pack/sounds/mob/bogged/step4.fsb differ diff --git a/resource_pack/sounds/mob/breeze/charge1.fsb b/resource_pack/sounds/mob/breeze/charge1.fsb new file mode 100644 index 000000000..3200e2c15 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/charge1.fsb differ diff --git a/resource_pack/sounds/mob/breeze/charge2.fsb b/resource_pack/sounds/mob/breeze/charge2.fsb new file mode 100644 index 000000000..b14ba5e63 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/charge2.fsb differ diff --git a/resource_pack/sounds/mob/breeze/charge3.fsb b/resource_pack/sounds/mob/breeze/charge3.fsb new file mode 100644 index 000000000..3aff71540 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/charge3.fsb differ diff --git a/resource_pack/sounds/mob/breeze/death1.fsb b/resource_pack/sounds/mob/breeze/death1.fsb new file mode 100644 index 000000000..a6d32deeb Binary files /dev/null and b/resource_pack/sounds/mob/breeze/death1.fsb differ diff --git a/resource_pack/sounds/mob/breeze/death2.fsb b/resource_pack/sounds/mob/breeze/death2.fsb new file mode 100644 index 000000000..fc70cfd18 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/death2.fsb differ diff --git a/resource_pack/sounds/mob/breeze/deflect1.fsb b/resource_pack/sounds/mob/breeze/deflect1.fsb new file mode 100644 index 000000000..c1da2ee9c Binary files /dev/null and b/resource_pack/sounds/mob/breeze/deflect1.fsb differ diff --git a/resource_pack/sounds/mob/breeze/deflect2.fsb b/resource_pack/sounds/mob/breeze/deflect2.fsb new file mode 100644 index 000000000..3764ea53d Binary files /dev/null and b/resource_pack/sounds/mob/breeze/deflect2.fsb differ diff --git a/resource_pack/sounds/mob/breeze/deflect3.fsb b/resource_pack/sounds/mob/breeze/deflect3.fsb new file mode 100644 index 000000000..256e38fe1 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/deflect3.fsb differ diff --git a/resource_pack/sounds/mob/breeze/hurt1.fsb b/resource_pack/sounds/mob/breeze/hurt1.fsb new file mode 100644 index 000000000..008af32c4 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/hurt1.fsb differ diff --git a/resource_pack/sounds/mob/breeze/hurt2.fsb b/resource_pack/sounds/mob/breeze/hurt2.fsb new file mode 100644 index 000000000..2ebf767d3 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/hurt2.fsb differ diff --git a/resource_pack/sounds/mob/breeze/hurt3.fsb b/resource_pack/sounds/mob/breeze/hurt3.fsb new file mode 100644 index 000000000..a0e014246 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/hurt3.fsb differ diff --git a/resource_pack/sounds/mob/breeze/idle1.fsb b/resource_pack/sounds/mob/breeze/idle1.fsb new file mode 100644 index 000000000..1d1f2f838 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/idle1.fsb differ diff --git a/resource_pack/sounds/mob/breeze/idle2.fsb b/resource_pack/sounds/mob/breeze/idle2.fsb new file mode 100644 index 000000000..0c5968714 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/idle2.fsb differ diff --git a/resource_pack/sounds/mob/breeze/idle3.fsb b/resource_pack/sounds/mob/breeze/idle3.fsb new file mode 100644 index 000000000..7ae268de3 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/idle3.fsb differ diff --git a/resource_pack/sounds/mob/breeze/idle4.fsb b/resource_pack/sounds/mob/breeze/idle4.fsb new file mode 100644 index 000000000..53e9171ac Binary files /dev/null and b/resource_pack/sounds/mob/breeze/idle4.fsb differ diff --git a/resource_pack/sounds/mob/breeze/idle_air1.fsb b/resource_pack/sounds/mob/breeze/idle_air1.fsb new file mode 100644 index 000000000..e19ea2e26 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/idle_air1.fsb differ diff --git a/resource_pack/sounds/mob/breeze/idle_air2.fsb b/resource_pack/sounds/mob/breeze/idle_air2.fsb new file mode 100644 index 000000000..45672d9c3 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/idle_air2.fsb differ diff --git a/resource_pack/sounds/mob/breeze/idle_air3.fsb b/resource_pack/sounds/mob/breeze/idle_air3.fsb new file mode 100644 index 000000000..4c77e8f84 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/idle_air3.fsb differ diff --git a/resource_pack/sounds/mob/breeze/idle_air4.fsb b/resource_pack/sounds/mob/breeze/idle_air4.fsb new file mode 100644 index 000000000..6366937f8 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/idle_air4.fsb differ diff --git a/resource_pack/sounds/mob/breeze/inhale1.fsb b/resource_pack/sounds/mob/breeze/inhale1.fsb new file mode 100644 index 000000000..9ce791458 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/inhale1.fsb differ diff --git a/resource_pack/sounds/mob/breeze/inhale2.fsb b/resource_pack/sounds/mob/breeze/inhale2.fsb new file mode 100644 index 000000000..b8d1b6a78 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/inhale2.fsb differ diff --git a/resource_pack/sounds/mob/breeze/jump1.fsb b/resource_pack/sounds/mob/breeze/jump1.fsb new file mode 100644 index 000000000..362d68843 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/jump1.fsb differ diff --git a/resource_pack/sounds/mob/breeze/jump2.fsb b/resource_pack/sounds/mob/breeze/jump2.fsb new file mode 100644 index 000000000..aea9b88bb Binary files /dev/null and b/resource_pack/sounds/mob/breeze/jump2.fsb differ diff --git a/resource_pack/sounds/mob/breeze/land1.fsb b/resource_pack/sounds/mob/breeze/land1.fsb new file mode 100644 index 000000000..c79067cb7 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/land1.fsb differ diff --git a/resource_pack/sounds/mob/breeze/land2.fsb b/resource_pack/sounds/mob/breeze/land2.fsb new file mode 100644 index 000000000..7ee6d2873 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/land2.fsb differ diff --git a/resource_pack/sounds/mob/breeze/shoot.fsb b/resource_pack/sounds/mob/breeze/shoot.fsb new file mode 100644 index 000000000..2605e8606 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/shoot.fsb differ diff --git a/resource_pack/sounds/mob/breeze/slide1.fsb b/resource_pack/sounds/mob/breeze/slide1.fsb new file mode 100644 index 000000000..bb73b0a81 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/slide1.fsb differ diff --git a/resource_pack/sounds/mob/breeze/slide2.fsb b/resource_pack/sounds/mob/breeze/slide2.fsb new file mode 100644 index 000000000..f7face63a Binary files /dev/null and b/resource_pack/sounds/mob/breeze/slide2.fsb differ diff --git a/resource_pack/sounds/mob/breeze/slide3.fsb b/resource_pack/sounds/mob/breeze/slide3.fsb new file mode 100644 index 000000000..84abe572d Binary files /dev/null and b/resource_pack/sounds/mob/breeze/slide3.fsb differ diff --git a/resource_pack/sounds/mob/breeze/slide4.fsb b/resource_pack/sounds/mob/breeze/slide4.fsb new file mode 100644 index 000000000..348bdc0c2 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/slide4.fsb differ diff --git a/resource_pack/sounds/mob/breeze/whirl1.fsb b/resource_pack/sounds/mob/breeze/whirl1.fsb new file mode 100644 index 000000000..5bf7a9070 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/whirl1.fsb differ diff --git a/resource_pack/sounds/mob/breeze/whirl2.fsb b/resource_pack/sounds/mob/breeze/whirl2.fsb new file mode 100644 index 000000000..eff97c493 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/whirl2.fsb differ diff --git a/resource_pack/sounds/mob/breeze/whirl3.fsb b/resource_pack/sounds/mob/breeze/whirl3.fsb new file mode 100644 index 000000000..8daf4f90b Binary files /dev/null and b/resource_pack/sounds/mob/breeze/whirl3.fsb differ diff --git a/resource_pack/sounds/mob/breeze/whirl4.fsb b/resource_pack/sounds/mob/breeze/whirl4.fsb new file mode 100644 index 000000000..99fb85117 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/whirl4.fsb differ diff --git a/resource_pack/sounds/mob/breeze/whirl5.fsb b/resource_pack/sounds/mob/breeze/whirl5.fsb new file mode 100644 index 000000000..fde51aee1 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/whirl5.fsb differ diff --git a/resource_pack/sounds/mob/breeze/wind_burst1.fsb b/resource_pack/sounds/mob/breeze/wind_burst1.fsb new file mode 100644 index 000000000..c506916be Binary files /dev/null and b/resource_pack/sounds/mob/breeze/wind_burst1.fsb differ diff --git a/resource_pack/sounds/mob/breeze/wind_burst2.fsb b/resource_pack/sounds/mob/breeze/wind_burst2.fsb new file mode 100644 index 000000000..d3294528a Binary files /dev/null and b/resource_pack/sounds/mob/breeze/wind_burst2.fsb differ diff --git a/resource_pack/sounds/mob/breeze/wind_burst3.fsb b/resource_pack/sounds/mob/breeze/wind_burst3.fsb new file mode 100644 index 000000000..bede6f745 Binary files /dev/null and b/resource_pack/sounds/mob/breeze/wind_burst3.fsb differ diff --git a/resource_pack/sounds/music_definitions.json b/resource_pack/sounds/music_definitions.json index 48f6bbba8..531b907f5 100644 --- a/resource_pack/sounds/music_definitions.json +++ b/resource_pack/sounds/music_definitions.json @@ -50,7 +50,7 @@ "min_delay" : 60 }, "deep_dark" : { - "event_name" : "music.game.deep_dark", + "event_name" : "music.overworld.deep_dark", "max_delay" : 180, "min_delay" : 60 }, @@ -70,7 +70,7 @@ "min_delay" : 60 }, "dripstone_caves" : { - "event_name" : "music.game.dripstone_caves", + "event_name" : "music.overworld.dripstone_caves", "max_delay" : 180, "min_delay" : 60 }, @@ -105,7 +105,7 @@ "min_delay" : 600 }, "grove" : { - "event_name" : "music.game.grove", + "event_name" : "music.overworld.grove", "max_delay" : 180, "min_delay" : 60 }, @@ -115,7 +115,7 @@ "min_delay" : 60 }, "jagged_peaks" : { - "event_name" : "music.game.jagged_peaks", + "event_name" : "music.overworld.jagged_peaks", "max_delay" : 180, "min_delay" : 60 }, @@ -145,7 +145,7 @@ "min_delay" : 60 }, "lush_caves" : { - "event_name" : "music.game.lush_caves", + "event_name" : "music.overworld.lush_caves", "max_delay" : 180, "min_delay" : 60 }, @@ -210,7 +210,7 @@ "min_delay" : 60 }, "snowy_slopes" : { - "event_name" : "music.game.snowy_slopes", + "event_name" : "music.overworld.snowy_slopes", "max_delay" : 180, "min_delay" : 60 }, @@ -220,7 +220,7 @@ "min_delay" : 60 }, "stony_peaks" : { - "event_name" : "music.game.stony_peaks", + "event_name" : "music.overworld.stony_peaks", "max_delay" : 180, "min_delay" : 60 }, diff --git a/resource_pack/sounds/sound_definitions.json b/resource_pack/sounds/sound_definitions.json index b8b87b4ea..40f509da6 100644 --- a/resource_pack/sounds/sound_definitions.json +++ b/resource_pack/sounds/sound_definitions.json @@ -278,7 +278,11 @@ "sounds/cave/cave16", "sounds/cave/cave17", "sounds/cave/cave18", - "sounds/cave/cave19" + "sounds/cave/cave19", + "sounds/cave/cave20", + "sounds/cave/cave21", + "sounds/cave/cave22", + "sounds/cave/cave23" ] }, "ambient.crimson_forest.additions" : { @@ -974,6 +978,24 @@ "sounds/ambient/weather/thunder3" ] }, + "apply_effect.bad_omen" : { + "category" : "player", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ "sounds/event/mob_effects/bad_omen" ] + }, + "apply_effect.raid_omen" : { + "category" : "player", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ "sounds/event/mob_effects/raid_omen" ] + }, + "apply_effect.trial_omen" : { + "category" : "player", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ "sounds/event/mob_effects/trial_omen" ] + }, "armor.break_wolf" : { "category" : "neutral", "max_distance" : null, @@ -1699,6 +1721,30 @@ } ] }, + "block.copper_bulb.turn_off" : { + "category" : "block", + "max_distance" : 6.0, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/block/copper_bulb/turn_on", + "pitch" : 0.750, + "volume" : 1.0 + } + ] + }, + "block.copper_bulb.turn_on" : { + "category" : "block", + "max_distance" : 6.0, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/block/copper_bulb/turn_on", + "pitch" : 1.0, + "volume" : 1.0 + } + ] + }, "block.decorated_pot.insert" : { "category" : "block", "max_distance" : null, @@ -2917,6 +2963,44 @@ } ] }, + "break.copper_bulb" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/block/copper_bulb/break1" + }, + { + "name" : "sounds/block/copper_bulb/break2" + }, + { + "name" : "sounds/block/copper_bulb/break3" + }, + { + "name" : "sounds/block/copper_bulb/break4" + } + ] + }, + "break.copper_grate" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/block/copper_grate/break1" + }, + { + "name" : "sounds/block/copper_grate/break2" + }, + { + "name" : "sounds/block/copper_grate/break3" + }, + { + "name" : "sounds/block/copper_grate/break4" + } + ] + }, "break.decorated_pot" : { "category" : "block", "max_distance" : null, @@ -3007,6 +3091,25 @@ "sounds/block/hanging_sign/break4" ] }, + "break.heavy_core" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/block/heavy_core/break1" + }, + { + "name" : "sounds/block/heavy_core/break2" + }, + { + "name" : "sounds/block/heavy_core/break3" + }, + { + "name" : "sounds/block/heavy_core/break4" + } + ] + }, "break.large_amethyst_bud" : { "category" : "block", "max_distance" : null, @@ -3286,6 +3389,29 @@ } ] }, + "break.web" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + "sounds/block/web/break1", + "sounds/block/web/break2", + "sounds/block/web/break3", + "sounds/block/web/break4", + "sounds/block/web/break5", + "sounds/block/web/break6" + ] + }, + "breeze_wind_charge.burst" : { + "category" : "hostile", + "max_distance" : 16.0, + "min_distance" : null, + "sounds" : [ + "sounds/mob/breeze/wind_burst1", + "sounds/mob/breeze/wind_burst2", + "sounds/mob/breeze/wind_burst3" + ] + }, "brush.generic" : { "category" : "player", "max_distance" : null, @@ -4089,6 +4215,22 @@ } ] }, + "close_door.copper" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/block/copper_door/toggle1" + }, + { + "name" : "sounds/block/copper_door/toggle2" + }, + { + "name" : "sounds/block/copper_door/toggle3" + } + ] + }, "component.jump_to_block" : { "category" : "neutral", "max_distance" : null, @@ -4167,6 +4309,42 @@ "sounds/item/honeycomb/wax_on3" ] }, + "crafter.craft" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/block/crafter/craft", + "pitch" : 1.0, + "volume" : 1.0 + } + ] + }, + "crafter.disable_slot" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/random/click", + "pitch" : 1.0, + "volume" : 1.0 + } + ] + }, + "crafter.fail" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/block/crafter/fail", + "pitch" : 1.0, + "volume" : 1.0 + } + ] + }, "crossbow.loading.end" : { "__use_legacy_max_distance" : "true", "category" : "player", @@ -5316,6 +5494,31 @@ "sounds/block/copper/step6" ] }, + "fall.copper_bulb" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/block/copper_bulb/step1" + }, + { + "name" : "sounds/block/copper_bulb/step2" + }, + { + "name" : "sounds/block/copper_bulb/step3" + }, + { + "name" : "sounds/block/copper_bulb/step4" + }, + { + "name" : "sounds/block/copper_bulb/step5" + }, + { + "name" : "sounds/block/copper_bulb/step6" + } + ] + }, "fall.coral" : { "category" : "player", "max_distance" : null, @@ -6405,6 +6608,31 @@ "sounds/block/copper/step6" ] }, + "hit.copper_bulb" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/block/copper_bulb/step1" + }, + { + "name" : "sounds/block/copper_bulb/step2" + }, + { + "name" : "sounds/block/copper_bulb/step3" + }, + { + "name" : "sounds/block/copper_bulb/step4" + }, + { + "name" : "sounds/block/copper_bulb/step5" + }, + { + "name" : "sounds/block/copper_bulb/step6" + } + ] + }, "hit.coral" : { "category" : "block", "max_distance" : null, @@ -7120,6 +7348,12 @@ "min_distance" : null, "sounds" : [ "sounds/item/horn/call7" ] }, + "hud.bubble.pop" : { + "category" : "ui", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ "sounds/bubbles/hud_bubble" ] + }, "insert.chiseled_bookshelf" : { "category" : "block", "max_distance" : null, @@ -7500,7 +7734,7 @@ "item.trident.thunder" : { "__use_legacy_max_distance" : "true", "category" : "player", - "max_distance" : 64.0, + "max_distance" : 80.0, "min_distance" : null, "sounds" : [ "sounds/item/trident/thunder1", "sounds/item/trident/thunder2" ], "volume" : 1000.0 @@ -8615,6 +8849,33 @@ "min_distance" : null, "sounds" : [ "sounds/item/lock_compass1", "sounds/item/lock_compass2" ] }, + "mace.heavy_smash_ground" : { + "category" : "player", + "max_distance" : 6.0, + "min_distance" : null, + "sounds" : [ "sounds/item/mace/smash_ground_heavy" ] + }, + "mace.smash_air" : { + "category" : "player", + "max_distance" : 16.0, + "min_distance" : null, + "sounds" : [ + "sounds/item/mace/smash_air1", + "sounds/item/mace/smash_air2", + "sounds/item/mace/smash_air3" + ] + }, + "mace.smash_ground" : { + "category" : "player", + "max_distance" : 6.0, + "min_distance" : null, + "sounds" : [ + "sounds/item/mace/smash_ground1", + "sounds/item/mace/smash_ground2", + "sounds/item/mace/smash_ground3", + "sounds/item/mace/smash_ground4" + ] + }, "minecart.base" : { "__use_legacy_max_distance" : "true", "category" : "neutral", @@ -9308,86 +9569,279 @@ ], "subtitle" : "subtitles.entity.blaze.shoot" }, - "mob.camel.ambient" : { - "category" : "neutral", + "mob.bogged.ambient" : { + "category" : "hostile", "max_distance" : null, "min_distance" : null, "sounds" : [ - { - "name" : "sounds/mob/camel/ambient1", - "volume" : 0.450 - }, - { - "name" : "sounds/mob/camel/ambient2", - "volume" : 0.450 - }, - { - "name" : "sounds/mob/camel/ambient3", - "volume" : 0.50 - }, - { - "name" : "sounds/mob/camel/ambient4", - "volume" : 0.50 - }, - { - "name" : "sounds/mob/camel/ambient5", - "volume" : 0.50 - }, - { - "name" : "sounds/mob/camel/ambient6", - "volume" : 0.50 - }, - { - "name" : "sounds/mob/camel/ambient7", - "volume" : 0.30 - }, - { - "name" : "sounds/mob/camel/ambient8", - "volume" : 0.30 - } + "sounds/mob/bogged/ambient1", + "sounds/mob/bogged/ambient2", + "sounds/mob/bogged/ambient3", + "sounds/mob/bogged/ambient4" ] }, - "mob.camel.dash" : { - "category" : "neutral", + "mob.bogged.death" : { + "category" : "hostile", "max_distance" : null, "min_distance" : null, - "sounds" : [ - "sounds/mob/camel/dash1", - "sounds/mob/camel/dash2", - "sounds/mob/camel/dash3", - "sounds/mob/camel/dash4", - "sounds/mob/camel/dash5", - "sounds/mob/camel/dash6" - ] + "sounds" : [ "sounds/mob/bogged/death" ] }, - "mob.camel.dash_ready" : { - "category" : "neutral", + "mob.bogged.hurt" : { + "category" : "hostile", "max_distance" : null, "min_distance" : null, "sounds" : [ - { - "name" : "sounds/mob/camel/dash_ready1", - "volume" : 0.250 - } + "sounds/mob/bogged/hurt1", + "sounds/mob/bogged/hurt2", + "sounds/mob/bogged/hurt3", + "sounds/mob/bogged/hurt4" ] }, - "mob.camel.death" : { - "category" : "neutral", + "mob.bogged.step" : { + "category" : "hostile", "max_distance" : null, "min_distance" : null, - "sounds" : [ "sounds/mob/camel/death1", "sounds/mob/camel/death2" ] + "sounds" : [ + "sounds/mob/bogged/step1", + "sounds/mob/bogged/step2", + "sounds/mob/bogged/step3", + "sounds/mob/bogged/step4" + ] }, - "mob.camel.eat" : { - "category" : "neutral", - "max_distance" : null, + "mob.breeze.charge" : { + "category" : "hostile", + "max_distance" : 16.0, "min_distance" : null, "sounds" : [ { - "name" : "sounds/mob/camel/eat1", - "volume" : 0.20 + "name" : "sounds/mob/breeze/charge1", + "pitch" : 1.0, + "volume" : 1.0 }, { - "name" : "sounds/mob/camel/eat2", + "name" : "sounds/mob/breeze/charge2", + "pitch" : 1.0, + "volume" : 1.0 + }, + { + "name" : "sounds/mob/breeze/charge3", + "pitch" : 1.0, + "volume" : 1.0 + } + ] + }, + "mob.breeze.death" : { + "category" : "hostile", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ "sounds/mob/breeze/death1", "sounds/mob/breeze/death2" ] + }, + "mob.breeze.deflect" : { + "category" : "hostile", + "max_distance" : 16.0, + "min_distance" : null, + "sounds" : [ + "sounds/mob/breeze/deflect1", + "sounds/mob/breeze/deflect2", + "sounds/mob/breeze/deflect3" + ] + }, + "mob.breeze.hurt" : { + "category" : "hostile", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + "sounds/mob/breeze/hurt1", + "sounds/mob/breeze/hurt2", + "sounds/mob/breeze/hurt3" + ] + }, + "mob.breeze.idle_air" : { + "category" : "hostile", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + "sounds/mob/breeze/idle_air1", + "sounds/mob/breeze/idle_air2", + "sounds/mob/breeze/idle_air3", + "sounds/mob/breeze/idle_air4" + ] + }, + "mob.breeze.idle_ground" : { + "category" : "hostile", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + "sounds/mob/breeze/idle1", + "sounds/mob/breeze/idle2", + "sounds/mob/breeze/idle3", + "sounds/mob/breeze/idle4" + ] + }, + "mob.breeze.inhale" : { + "category" : "hostile", + "max_distance" : 16.0, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/mob/breeze/inhale1", + "pitch" : 1.0, + "volume" : 1.0 + }, + { + "name" : "sounds/mob/breeze/inhale1", + "pitch" : 1.10, + "volume" : 1.0 + }, + { + "name" : "sounds/mob/breeze/inhale2", + "pitch" : 1.0, + "volume" : 1.0 + }, + { + "name" : "sounds/mob/breeze/inhale2", + "pitch" : 1.10, + "volume" : 1.0 + } + ] + }, + "mob.breeze.jump" : { + "category" : "hostile", + "max_distance" : 16.0, + "min_distance" : null, + "sounds" : [ "sounds/mob/breeze/jump1", "sounds/mob/breeze/jump2" ] + }, + "mob.breeze.land" : { + "category" : "hostile", + "max_distance" : 16.0, + "min_distance" : null, + "sounds" : [ "sounds/mob/breeze/land1", "sounds/mob/breeze/land2" ] + }, + "mob.breeze.shoot" : { + "category" : "hostile", + "max_distance" : 24.0, + "min_distance" : null, + "sounds" : [ "sounds/mob/breeze/shoot" ] + }, + "mob.breeze.slide" : { + "category" : "hostile", + "max_distance" : 16.0, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/mob/breeze/slide1", + "pitch" : 1.0, + "volume" : 1.0 + }, + { + "name" : "sounds/mob/breeze/slide2", + "pitch" : 1.0, + "volume" : 1.0 + }, + { + "name" : "sounds/mob/breeze/slide3", + "pitch" : 1.0, + "volume" : 1.0 + }, + { + "name" : "sounds/mob/breeze/slide4", + "pitch" : 1.0, + "volume" : 1.0 + } + ] + }, + "mob.breeze.whirl" : { + "category" : "hostile", + "max_distance" : 16.0, + "min_distance" : null, + "sounds" : [ + "sounds/mob/breeze/whirl1", + "sounds/mob/breeze/whirl2", + "sounds/mob/breeze/whirl3", + "sounds/mob/breeze/whirl4", + "sounds/mob/breeze/whirl5" + ] + }, + "mob.camel.ambient" : { + "category" : "neutral", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/mob/camel/ambient1", + "volume" : 0.450 + }, + { + "name" : "sounds/mob/camel/ambient2", + "volume" : 0.450 + }, + { + "name" : "sounds/mob/camel/ambient3", + "volume" : 0.50 + }, + { + "name" : "sounds/mob/camel/ambient4", + "volume" : 0.50 + }, + { + "name" : "sounds/mob/camel/ambient5", + "volume" : 0.50 + }, + { + "name" : "sounds/mob/camel/ambient6", + "volume" : 0.50 + }, + { + "name" : "sounds/mob/camel/ambient7", + "volume" : 0.30 + }, + { + "name" : "sounds/mob/camel/ambient8", + "volume" : 0.30 + } + ] + }, + "mob.camel.dash" : { + "category" : "neutral", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + "sounds/mob/camel/dash1", + "sounds/mob/camel/dash2", + "sounds/mob/camel/dash3", + "sounds/mob/camel/dash4", + "sounds/mob/camel/dash5", + "sounds/mob/camel/dash6" + ] + }, + "mob.camel.dash_ready" : { + "category" : "neutral", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/mob/camel/dash_ready1", + "volume" : 0.250 + } + ] + }, + "mob.camel.death" : { + "category" : "neutral", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ "sounds/mob/camel/death1", "sounds/mob/camel/death2" ] + }, + "mob.camel.eat" : { + "category" : "neutral", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/mob/camel/eat1", + "volume" : 0.20 + }, + { + "name" : "sounds/mob/camel/eat2", "volume" : 0.20 }, { @@ -15424,6 +15878,36 @@ "name" : "sounds/music/game/comforting_memories", "stream" : true, "volume" : 0.40 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/featherfall", + "stream" : true, + "volume" : 0.40 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/komorebi", + "stream" : true, + "volume" : 0.80 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/puzzlebox", + "stream" : true, + "volume" : 0.40 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/watcher", + "stream" : true, + "volume" : 0.40 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/yakusoku", + "stream" : true, + "volume" : 0.80 } ] }, @@ -16457,25 +16941,50 @@ "min_distance" : null, "sounds" : [ { - "name" : "sounds/music/game/a_familiar_room", + "name" : "sounds/music/game/deeper", "stream" : true, "volume" : 0.40 }, { - "name" : "sounds/music/game/bromeliad", + "name" : "sounds/music/game/eld_unknown", "stream" : true, "volume" : 0.40 }, { - "name" : "sounds/music/game/crescent_dunes", + "name" : "sounds/music/game/endless", "stream" : true, "volume" : 0.40 }, { - "name" : "sounds/music/game/echo_in_the_wind", + "name" : "sounds/music/game/featherfall", + "stream" : true, + "volume" : 0.40 + }, + { + "name" : "sounds/music/game/komorebi", + "stream" : true, + "volume" : 0.80 + }, + { + "name" : "sounds/music/game/pokopoko", + "stream" : true, + "volume" : 0.80 + }, + { + "name" : "sounds/music/game/puzzlebox", + "stream" : true, + "volume" : 0.40 + }, + { + "name" : "sounds/music/game/watcher", "stream" : true, "volume" : 0.40 }, + { + "name" : "sounds/music/game/yakusoku", + "stream" : true, + "volume" : 0.80 + }, { "name" : "sounds/music/menu/menu1", "stream" : true, @@ -16581,6 +17090,12 @@ "volume" : 0.40, "weight" : 3 }, + { + "name" : "sounds/music/game/featherfall", + "stream" : true, + "volume" : 0.40, + "weight" : 3 + }, { "name" : "sounds/music/game/left_to_bloom", "stream" : true, @@ -16588,6 +17103,22 @@ } ] }, + "music.overworld.deep_dark" : { + "category" : "music", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/music/game/ancestry", + "stream" : true + }, + { + "name" : "sounds/music/game/deeper", + "stream" : true, + "volume" : 0.40 + } + ] + }, "music.overworld.desert" : { "category" : "music", "max_distance" : null, @@ -16630,21 +17161,101 @@ } ] }, - "music.overworld.flower_forest" : { + "music.overworld.dripstone_caves" : { "category" : "music", "max_distance" : null, "min_distance" : null, "sounds" : [ { - "name" : "sounds/music/game/bromeliad", + "load_on_low_memory" : true, + "name" : "sounds/music/game/wending", "stream" : true, - "volume" : 0.40 + "volume" : 0.40, + "weight" : 2 }, { - "name" : "sounds/music/game/echo_in_the_wind", + "load_on_low_memory" : true, + "name" : "sounds/music/game/infinite_amethyst", + "stream" : true, + "volume" : 0.40, + "weight" : 1 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/an_ordinary_day", + "stream" : true, + "weight" : 1 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/hal1", + "stream" : true, + "weight" : 1 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/hal4", + "stream" : true, + "weight" : 1 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/nuance1", + "stream" : true, + "weight" : 1 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/nuance2", + "stream" : true, + "weight" : 1 + }, + { + "name" : "sounds/music/game/deeper", "stream" : true, "volume" : 0.40 }, + { + "name" : "sounds/music/game/eld_unknown", + "stream" : true, + "volume" : 0.40, + "weight" : 2 + }, + { + "name" : "sounds/music/game/endless", + "stream" : true, + "volume" : 0.40, + "weight" : 2 + }, + { + "name" : "sounds/music/game/pokopoko", + "stream" : true, + "volume" : 0.80, + "weight" : 2 + } + ] + }, + "music.overworld.flower_forest" : { + "category" : "music", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/music/game/bromeliad", + "stream" : true, + "volume" : 0.40 + }, + { + "name" : "sounds/music/game/echo_in_the_wind", + "stream" : true, + "volume" : 0.40 + }, + { + "name" : "sounds/music/game/featherfall", + "stream" : true, + "volume" : 0.40, + "weight" : 2 + }, { "name" : "sounds/music/game/hal1", "stream" : true @@ -16676,6 +17287,166 @@ } ] }, + "music.overworld.grove" : { + "category" : "music", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/comforting_memories", + "stream" : true, + "volume" : 0.40, + "weight" : 1 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/infinite_amethyst", + "stream" : true, + "volume" : 0.40, + "weight" : 1 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/wending", + "stream" : true, + "volume" : 0.40, + "weight" : 1 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/eld_unknown", + "stream" : true, + "volume" : 0.40 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/endless", + "stream" : true, + "volume" : 0.40 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/pokopoko", + "stream" : true, + "volume" : 0.80 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/piano3", + "stream" : true, + "weight" : 1 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/calm1", + "stream" : true, + "weight" : 1 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/calm2", + "stream" : true, + "weight" : 1 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/calm3", + "stream" : true, + "weight" : 1 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/nuance1", + "stream" : true, + "weight" : 1 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/nuance2", + "stream" : true, + "weight" : 1 + } + ] + }, + "music.overworld.jagged_peaks" : { + "category" : "music", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/floating_dream", + "stream" : true, + "volume" : 0.40 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/stand_tall", + "stream" : true, + "volume" : 0.40 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/wending", + "stream" : true, + "volume" : 0.40 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/eld_unknown", + "stream" : true, + "volume" : 0.40 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/endless", + "stream" : true, + "volume" : 0.40 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/pokopoko", + "stream" : true, + "volume" : 0.80 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/piano1", + "stream" : true + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/piano2", + "stream" : true + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/piano3", + "stream" : true + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/nuance1", + "stream" : true + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/nuance2", + "stream" : true + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/hal1", + "stream" : true + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/hal2", + "stream" : true + } + ] + }, "music.overworld.jungle" : { "category" : "music", "max_distance" : null, @@ -16783,6 +17554,78 @@ } ] }, + "music.overworld.lush_caves" : { + "category" : "music", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/music/game/an_ordinary_day", + "stream" : true, + "volume" : 0.40, + "weight" : 2 + }, + { + "name" : "sounds/music/game/left_to_bloom", + "stream" : true, + "volume" : 0.40, + "weight" : 4 + }, + { + "name" : "sounds/music/game/one_more_day", + "stream" : true, + "volume" : 0.40, + "weight" : 2 + }, + { + "name" : "sounds/music/game/floating_dream", + "stream" : true, + "volume" : 0.40, + "weight" : 2 + }, + { + "name" : "sounds/music/game/piano3", + "stream" : true, + "weight" : 2 + }, + { + "name" : "sounds/music/game/calm1", + "stream" : true, + "weight" : 2 + }, + { + "name" : "sounds/music/game/calm2", + "stream" : true, + "weight" : 2 + }, + { + "name" : "sounds/music/game/calm3", + "stream" : true, + "weight" : 2 + }, + { + "name" : "sounds/music/game/aerie", + "stream" : true, + "volume" : 0.40 + }, + { + "name" : "sounds/music/game/firebugs", + "stream" : true, + "volume" : 0.40 + }, + { + "name" : "sounds/music/game/labyrinthine", + "stream" : true, + "volume" : 0.40 + }, + { + "name" : "sounds/music/game/featherfall", + "stream" : true, + "volume" : 0.40, + "weight" : 2 + } + ] + }, "music.overworld.mesa" : { "category" : "music", "max_distance" : null, @@ -16799,6 +17642,11 @@ "stream" : true, "volume" : 0.40 }, + { + "name" : "sounds/music/game/featherfall", + "stream" : true, + "volume" : 0.40 + }, { "name" : "sounds/music/game/hal1", "stream" : true @@ -16842,6 +17690,133 @@ } ] }, + "music.overworld.snowy_slopes" : { + "category" : "music", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/an_ordinary_day", + "stream" : true, + "volume" : 0.40, + "weight" : 1 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/stand_tall", + "stream" : true, + "volume" : 0.40, + "weight" : 1 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/one_more_day", + "stream" : true, + "volume" : 0.40, + "weight" : 1 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/hal1", + "stream" : true, + "weight" : 1 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/hal2", + "stream" : true, + "weight" : 1 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/hal3", + "stream" : true, + "weight" : 1 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/pokopoko", + "stream" : true, + "volume" : 0.80 + } + ] + }, + "music.overworld.stony_peaks" : { + "category" : "music", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/stand_tall", + "stream" : true, + "volume" : 0.40, + "weight" : 2 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/wending", + "stream" : true, + "volume" : 0.40, + "weight" : 1 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/eld_unknown", + "volume" : 0.40, + "weight" : 2 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/endless", + "stream" : true, + "volume" : 0.40 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/piano1", + "stream" : true, + "weight" : 1 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/piano2", + "stream" : true, + "weight" : 1 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/piano3", + "stream" : true, + "weight" : 1 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/hal1", + "stream" : true, + "weight" : 1 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/hal2", + "stream" : true, + "weight" : 1 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/hal3", + "stream" : true, + "weight" : 1 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/music/game/hal4", + "stream" : true, + "weight" : 1 + } + ] + }, "note.banjo" : { "__use_legacy_max_distance" : "true", "category" : "record", @@ -17106,6 +18081,38 @@ "sounds/mob/zombie/say3" ] }, + "ominous_bottle.end_use" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ "sounds/item/ominous_bottle/dispose" ] + }, + "ominous_item_spawner.about_to_spawn_item" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ "sounds/block/trial_spawner/about_to_spawn_item" ] + }, + "ominous_item_spawner.spawn_item" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + "sounds/block/trial_spawner/spawn_item1", + "sounds/block/trial_spawner/spawn_item2", + "sounds/block/trial_spawner/spawn_item3" + ] + }, + "ominous_item_spawner.spawn_item_begin" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + "sounds/block/trial_spawner/spawn_item_begin1", + "sounds/block/trial_spawner/spawn_item_begin2", + "sounds/block/trial_spawner/spawn_item_begin3" + ] + }, "open.bamboo_wood_door" : { "category" : "block", "max_distance" : null, @@ -17336,6 +18343,43 @@ } ] }, + "open_door.copper" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/block/copper_door/toggle1" + }, + { + "name" : "sounds/block/copper_door/toggle2", + "pitch" : 1.10 + }, + { + "name" : "sounds/block/copper_door/toggle3", + "pitch" : 1.10 + } + ] + }, + "open_trapdoor.copper" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/block/copper_trapdoor/toggle1" + }, + { + "name" : "sounds/block/copper_trapdoor/toggle2" + }, + { + "name" : "sounds/block/copper_trapdoor/toggle3" + }, + { + "name" : "sounds/block/copper_trapdoor/toggle4" + } + ] + }, "particle.soul_escape" : { "category" : "player", "max_distance" : 12.0, @@ -17704,6 +18748,25 @@ "sounds/block/copper/break4" ] }, + "place.copper_bulb" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/block/copper_bulb/place1" + }, + { + "name" : "sounds/block/copper_bulb/place2" + }, + { + "name" : "sounds/block/copper_bulb/place3" + }, + { + "name" : "sounds/block/copper_bulb/place4" + } + ] + }, "place.deepslate" : { "category" : "block", "max_distance" : null, @@ -18025,8 +19088,30 @@ "volume" : 1 }, { - "name" : "sounds/block/tuff/break4", - "volume" : 1 + "name" : "sounds/block/tuff/break4", + "volume" : 1 + } + ] + }, + "place.tuff_bricks" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/block/tuff_bricks/place1" + }, + { + "name" : "sounds/block/tuff_bricks/place2" + }, + { + "name" : "sounds/block/tuff_bricks/place3" + }, + { + "name" : "sounds/block/tuff_bricks/place4" + }, + { + "name" : "sounds/block/tuff_bricks/place5" } ] }, @@ -18596,6 +19681,28 @@ } ] }, + "record.creator" : { + "max_distance" : 64.0, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/music/game/records/creator", + "stream" : true, + "volume" : 0.50 + } + ] + }, + "record.creator_music_box" : { + "max_distance" : 64.0, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/music/game/records/creator_music_box", + "stream" : true, + "volume" : 0.50 + } + ] + }, "record.far" : { "__use_legacy_max_distance" : "true", "category" : "record", @@ -18663,6 +19770,17 @@ } ] }, + "record.precipice" : { + "max_distance" : 64.0, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/music/game/records/precipice", + "stream" : true, + "volume" : 0.50 + } + ] + }, "record.relic" : { "max_distance" : 64.0, "min_distance" : null, @@ -19300,6 +20418,56 @@ "sounds/block/copper/step6" ] }, + "step.copper_bulb" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/block/copper_bulb/step1" + }, + { + "name" : "sounds/block/copper_bulb/step2" + }, + { + "name" : "sounds/block/copper_bulb/step3" + }, + { + "name" : "sounds/block/copper_bulb/step4" + }, + { + "name" : "sounds/block/copper_bulb/step5" + }, + { + "name" : "sounds/block/copper_bulb/step6" + } + ] + }, + "step.copper_grate" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/block/copper_grate/step1" + }, + { + "name" : "sounds/block/copper_grate/step2" + }, + { + "name" : "sounds/block/copper_grate/step3" + }, + { + "name" : "sounds/block/copper_grate/step4" + }, + { + "name" : "sounds/block/copper_grate/step5" + }, + { + "name" : "sounds/block/copper_grate/step6" + } + ] + }, "step.coral" : { "category" : "player", "max_distance" : null, @@ -19489,6 +20657,25 @@ "sounds/block/hanging_sign/step4" ] }, + "step.heavy_core" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/block/heavy_core/step1" + }, + { + "name" : "sounds/block/heavy_core/step2" + }, + { + "name" : "sounds/block/heavy_core/step3" + }, + { + "name" : "sounds/block/heavy_core/step4" + } + ] + }, "step.honey_block" : { "category" : "player", "max_distance" : null, @@ -19954,132 +21141,413 @@ "sounds/block/suspicious_gravel/step4" ] }, - "step.suspicious_sand" : { - "category" : "player", + "step.suspicious_sand" : { + "category" : "player", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + "sounds/block/suspicious_sand/step1", + "sounds/block/suspicious_sand/step2", + "sounds/block/suspicious_sand/step3", + "sounds/block/suspicious_sand/step4", + "sounds/block/suspicious_sand/step5" + ] + }, + "step.tuff" : { + "category" : "player", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/block/tuff/step1", + "volume" : 1 + }, + { + "name" : "sounds/block/tuff/step2", + "volume" : 1 + }, + { + "name" : "sounds/block/tuff/step3", + "volume" : 1 + }, + { + "name" : "sounds/block/tuff/step4", + "volume" : 1 + }, + { + "name" : "sounds/block/tuff/step5", + "volume" : 1 + }, + { + "name" : "sounds/block/tuff/step6", + "volume" : 1 + } + ] + }, + "step.tuff_bricks" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/block/tuff_bricks/step1" + }, + { + "name" : "sounds/block/tuff_bricks/step2" + }, + { + "name" : "sounds/block/tuff_bricks/step3" + }, + { + "name" : "sounds/block/tuff_bricks/step4" + }, + { + "name" : "sounds/block/tuff_bricks/step5" + }, + { + "name" : "sounds/block/tuff_bricks/step6" + } + ] + }, + "step.vines" : { + "category" : "player", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "load_on_low_memory" : true, + "name" : "sounds/step/vines3" + }, + "sounds/step/vines1", + "sounds/step/vines2", + "sounds/step/vines4", + "sounds/step/vines5" + ] + }, + "step.web" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + "sounds/block/web/step1", + "sounds/block/web/step2", + "sounds/block/web/step3", + "sounds/block/web/step4", + "sounds/block/web/step5", + "sounds/block/web/step6" + ] + }, + "step.wood" : { + "__use_legacy_max_distance" : "true", + "category" : "player", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/step/wood1", + "volume" : 0.40 + }, + { + "name" : "sounds/step/wood2", + "volume" : 0.40 + }, + { + "name" : "sounds/step/wood3", + "volume" : 0.40 + }, + { + "name" : "sounds/step/wood4", + "volume" : 0.40 + }, + { + "name" : "sounds/step/wood5", + "volume" : 0.40 + }, + { + "load_on_low_memory" : true, + "name" : "sounds/step/wood6", + "volume" : 0.40 + } + ] + }, + "tile.piston.in" : { + "__use_legacy_max_distance" : "true", + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ "sounds/tile/piston/in" ] + }, + "tile.piston.out" : { + "__use_legacy_max_distance" : "true", + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ "sounds/tile/piston/out" ] + }, + "tilt_down.big_dripleaf" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + "sounds/block/big_dripleaf/tilt_down1", + "sounds/block/big_dripleaf/tilt_down2", + "sounds/block/big_dripleaf/tilt_down3", + "sounds/block/big_dripleaf/tilt_down4", + "sounds/block/big_dripleaf/tilt_down5" + ] + }, + "tilt_up.big_dripleaf" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + "sounds/block/big_dripleaf/tilt_up1", + "sounds/block/big_dripleaf/tilt_up2", + "sounds/block/big_dripleaf/tilt_up3", + "sounds/block/big_dripleaf/tilt_up4" + ] + }, + "trial_spawner.ambient" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/block/trial_spawner/ambient1", + "pitch" : 1.0, + "volume" : 1.0 + }, + { + "name" : "sounds/block/trial_spawner/ambient2", + "pitch" : 1.0, + "volume" : 1.0 + }, + { + "name" : "sounds/block/trial_spawner/ambient3", + "pitch" : 1.0, + "volume" : 1.0 + }, + { + "name" : "sounds/block/trial_spawner/ambient4", + "pitch" : 1.0, + "volume" : 1.0 + }, + { + "name" : "sounds/block/trial_spawner/ambient5", + "pitch" : 1.0, + "volume" : 1.0 + } + ] + }, + "trial_spawner.ambient_ominous" : { + "category" : "block", "max_distance" : null, "min_distance" : null, "sounds" : [ - "sounds/block/suspicious_sand/step1", - "sounds/block/suspicious_sand/step2", - "sounds/block/suspicious_sand/step3", - "sounds/block/suspicious_sand/step4", - "sounds/block/suspicious_sand/step5" + "sounds/block/trial_spawner/ambient_ominous1", + "sounds/block/trial_spawner/ambient_ominous2", + "sounds/block/trial_spawner/ambient_ominous3", + "sounds/block/trial_spawner/ambient_ominous4", + "sounds/block/trial_spawner/ambient_ominous5" ] }, - "step.tuff" : { - "category" : "player", + "trial_spawner.break" : { + "category" : "block", "max_distance" : null, "min_distance" : null, "sounds" : [ { - "name" : "sounds/block/tuff/step1", - "volume" : 1 + "name" : "sounds/block/trial_spawner/break1", + "pitch" : 1.0, + "volume" : 1.0 }, { - "name" : "sounds/block/tuff/step2", - "volume" : 1 + "name" : "sounds/block/trial_spawner/break2", + "pitch" : 1.0, + "volume" : 1.0 }, { - "name" : "sounds/block/tuff/step3", - "volume" : 1 - }, + "name" : "sounds/block/trial_spawner/break3", + "pitch" : 1.0, + "volume" : 1.0 + } + ] + }, + "trial_spawner.charge_activate" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ "sounds/block/trial_spawner/charge_activate" ] + }, + "trial_spawner.close_shutter" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ { - "name" : "sounds/block/tuff/step4", - "volume" : 1 + "name" : "sounds/block/trial_spawner/close_shutter", + "pitch" : 1.0, + "volume" : 1.0 + } + ] + }, + "trial_spawner.detect_player" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/block/trial_spawner/detect_player1", + "pitch" : 0.950, + "volume" : 1.0 }, { - "name" : "sounds/block/tuff/step5", - "volume" : 1 + "name" : "sounds/block/trial_spawner/detect_player2", + "pitch" : 0.950, + "volume" : 1.0 }, { - "name" : "sounds/block/tuff/step6", - "volume" : 1 + "name" : "sounds/block/trial_spawner/detect_player3", + "pitch" : 0.950, + "volume" : 1.0 } ] }, - "step.vines" : { - "category" : "player", + "trial_spawner.eject_item" : { + "category" : "block", "max_distance" : null, "min_distance" : null, "sounds" : [ { - "load_on_low_memory" : true, - "name" : "sounds/step/vines3" - }, - "sounds/step/vines1", - "sounds/step/vines2", - "sounds/step/vines4", - "sounds/step/vines5" + "name" : "sounds/block/trial_spawner/eject_item1", + "pitch" : 1.0, + "volume" : 1.0 + } ] }, - "step.wood" : { - "__use_legacy_max_distance" : "true", - "category" : "player", + "trial_spawner.hit" : { + "category" : "block", "max_distance" : null, "min_distance" : null, "sounds" : [ { - "name" : "sounds/step/wood1", - "volume" : 0.40 - }, - { - "name" : "sounds/step/wood2", - "volume" : 0.40 + "name" : "sounds/block/trial_spawner/step1", + "pitch" : 1.0, + "volume" : 1.0 }, { - "name" : "sounds/step/wood3", - "volume" : 0.40 + "name" : "sounds/block/trial_spawner/step2", + "pitch" : 1.0, + "volume" : 1.0 }, { - "name" : "sounds/step/wood4", - "volume" : 0.40 + "name" : "sounds/block/trial_spawner/step3", + "pitch" : 1.0, + "volume" : 1.0 }, { - "name" : "sounds/step/wood5", - "volume" : 0.40 + "name" : "sounds/block/trial_spawner/step4", + "pitch" : 1.0, + "volume" : 1.0 }, { - "load_on_low_memory" : true, - "name" : "sounds/step/wood6", - "volume" : 0.40 + "name" : "sounds/block/trial_spawner/step5", + "pitch" : 1.0, + "volume" : 1.0 } ] }, - "tile.piston.in" : { - "__use_legacy_max_distance" : "true", + "trial_spawner.open_shutter" : { "category" : "block", "max_distance" : null, "min_distance" : null, - "sounds" : [ "sounds/tile/piston/in" ] + "sounds" : [ + { + "name" : "sounds/block/trial_spawner/open_shutter", + "pitch" : 1.0, + "volume" : 1.0 + } + ] }, - "tile.piston.out" : { - "__use_legacy_max_distance" : "true", + "trial_spawner.place" : { "category" : "block", "max_distance" : null, "min_distance" : null, - "sounds" : [ "sounds/tile/piston/out" ] + "sounds" : [ + { + "name" : "sounds/block/trial_spawner/place1", + "pitch" : 1.0, + "volume" : 1.0 + }, + { + "name" : "sounds/block/trial_spawner/place2", + "pitch" : 1.0, + "volume" : 1.0 + }, + { + "name" : "sounds/block/trial_spawner/place3", + "pitch" : 1.0, + "volume" : 1.0 + } + ] }, - "tilt_down.big_dripleaf" : { + "trial_spawner.spawn_mob" : { "category" : "block", "max_distance" : null, "min_distance" : null, "sounds" : [ - "sounds/block/big_dripleaf/tilt_down1", - "sounds/block/big_dripleaf/tilt_down2", - "sounds/block/big_dripleaf/tilt_down3", - "sounds/block/big_dripleaf/tilt_down4", - "sounds/block/big_dripleaf/tilt_down5" + { + "name" : "sounds/block/trial_spawner/spawn1", + "pitch" : 1.0, + "volume" : 1.0 + }, + { + "name" : "sounds/block/trial_spawner/spawn2", + "pitch" : 1.0, + "volume" : 1.0 + }, + { + "name" : "sounds/block/trial_spawner/spawn3", + "pitch" : 1.0, + "volume" : 1.0 + }, + { + "name" : "sounds/block/trial_spawner/spawn4", + "pitch" : 1.0, + "volume" : 1.0 + } ] }, - "tilt_up.big_dripleaf" : { + "trial_spawner.step" : { "category" : "block", "max_distance" : null, "min_distance" : null, "sounds" : [ - "sounds/block/big_dripleaf/tilt_up1", - "sounds/block/big_dripleaf/tilt_up2", - "sounds/block/big_dripleaf/tilt_up3", - "sounds/block/big_dripleaf/tilt_up4" + { + "name" : "sounds/block/trial_spawner/step1", + "pitch" : 1.0, + "volume" : 1.0 + }, + { + "name" : "sounds/block/trial_spawner/step2", + "pitch" : 1.0, + "volume" : 1.0 + }, + { + "name" : "sounds/block/trial_spawner/step3", + "pitch" : 1.0, + "volume" : 1.0 + }, + { + "name" : "sounds/block/trial_spawner/step4", + "pitch" : 1.0, + "volume" : 1.0 + }, + { + "name" : "sounds/block/trial_spawner/step5", + "pitch" : 1.0, + "volume" : 1.0 + } ] }, "ui.cartography_table.take_result" : { @@ -20755,6 +22223,131 @@ "sounds/step/wood6" ] }, + "vault.activate" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/block/vault/activate", + "pitch" : 0.950 + } + ] + }, + "vault.ambient" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + "sounds/block/vault/ambient1", + "sounds/block/vault/ambient2", + "sounds/block/vault/ambient3" + ] + }, + "vault.break" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + { + "name" : "sounds/block/vault/break1", + "pitch" : 0.90 + }, + { + "name" : "sounds/block/vault/break2", + "pitch" : 0.90 + }, + { + "name" : "sounds/block/vault/break3", + "pitch" : 0.90 + }, + { + "name" : "sounds/block/vault/break4", + "pitch" : 0.90 + } + ] + }, + "vault.close_shutter" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ "sounds/block/trial_spawner/close_shutter" ] + }, + "vault.deactivate" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ "sounds/block/vault/deactivate" ] + }, + "vault.eject_item" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + "sounds/block/vault/eject_item1", + "sounds/block/vault/eject_item2", + "sounds/block/vault/eject_item3" + ] + }, + "vault.hit" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + "sounds/block/vault/step1", + "sounds/block/vault/step2", + "sounds/block/vault/step3", + "sounds/block/vault/step4", + "sounds/block/vault/step5", + "sounds/block/vault/step6", + "sounds/block/vault/step7", + "sounds/block/vault/step8" + ] + }, + "vault.insert_item" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ "sounds/block/vault/insert" ] + }, + "vault.insert_item_fail" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ "sounds/block/vault/insert_fail" ] + }, + "vault.open_shutter" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ "sounds/block/vault/open_shutter" ] + }, + "vault.place" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + "sounds/block/vault/place1", + "sounds/block/vault/place2", + "sounds/block/vault/place3", + "sounds/block/vault/place4" + ] + }, + "vault.step" : { + "category" : "block", + "max_distance" : null, + "min_distance" : null, + "sounds" : [ + "sounds/block/vault/step1", + "sounds/block/vault/step2", + "sounds/block/vault/step3", + "sounds/block/vault/step4", + "sounds/block/vault/step5", + "sounds/block/vault/step6", + "sounds/block/vault/step7", + "sounds/block/vault/step8" + ] + }, "vr.stutterturn" : { "__use_legacy_max_distance" : "true", "category" : "player", @@ -20767,6 +22360,16 @@ "sounds/vr/turn4", "sounds/vr/turn5" ] + }, + "wind_charge.burst" : { + "category" : "player", + "max_distance" : 32.0, + "min_distance" : null, + "sounds" : [ + "sounds/item/wind_charge/wind_burst1", + "sounds/item/wind_charge/wind_burst2", + "sounds/item/wind_charge/wind_burst3" + ] } } } diff --git a/resource_pack/texts/bg_BG.lang b/resource_pack/texts/bg_BG.lang index b0dc66567..8ea6b19f9 100644 --- a/resource_pack/texts/bg_BG.lang +++ b/resource_pack/texts/bg_BG.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=Избор на семе # accessibility.start.feedback=Подаване на линк за обратна връзка към уеб сайт # accessibility.start.new=Ново # -accessibility.start.profile=Избор на профил # accessibility.start.skinPicker=Избор на скин # accessibility.store.tag=Етикет # @@ -1094,10 +1093,6 @@ commands.me.description=Показва съобщение за вас. # commands.message.display.incoming=%1$s ви пошепна: %2$s # commands.message.display.outgoing=Пошепнахте на %1$s: %2$s # commands.message.sameTarget=Не можете да изпратите лично съобщение до себе си! # -commands.message.warn=§4Изпратено ви е предупреждение. Други играчи може да сметнат поведението ви за обидно. Моля, съобразявайте се с хората, с които играете. # -commands.message.toastWarn=Minecraft е за всички! Моля, не забравяйте да се държите в съответствие със стандартите на общността ни. # -commands.warn.invalidWarningLevel=Невалидно ниво на предупреждение. # -commands.warn.playerDoesNotExist=Играчът не е открит. Моля, изберете валиден играч. # commands.mobevent.description=Контролира какви събития на мобове имат право да управляват. # commands.mobevent.eventsEnabledSetToTrue=Събитията с мобове вече са активирани. Индивидуалните събития, зададени като грешни, няма да се изпълнят. # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=– %s: %s от %d %d %d до %d %d %d commands.volumearea.entry.withoutIdentifier=– %s: от %d %d %d до %d %d %d # commands.volumearea.noneExist.currentDimension=В текущото измерение не съществуват томове. # commands.volumearea.inUse=%1$d/%2$d тома в употреба. # -commands.warn.description=Изпраща предупредително съобщение на играча. # commands.weather.clear=Промяна на ясно време # commands.weather.description=Задава времето. # commands.weather.disabled=„Цикъл на времето“ не е разрешен в този свят. # @@ -1572,6 +1566,7 @@ container.beacon=Маяк # container.brewing=Станция за отвари # container.chest=Сандък # container.chestDouble=Голям сандък # +container.crafter=Изработващ # container.crafting=Изработване # container.creative=Избор на предмет # container.dispenser=Диспенсер # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=Пещери и скали # createWorldScreen.cavesandcliffsDescription=Опознайте новото генериране на разнообразни пещери # createWorldScreen.spectatorMode=Режим на зрител # createWorldScreen.spectatorModeDescription=Изпробвайте ранните версии на „Режим на зрител“ # -createWorldScreen.experimentalCameras=Експериментални камери # -createWorldScreen.experimentalCamerasDescription=Съдържа примерни предварителни настройки на камерата (командата за камерата вече не е експериментална) # createWorldScreen.recipeUnlocking=Отключване на рецепти # createWorldScreen.recipeUnlockingDescription=Разрешете отключването на рецепти # createWorldScreen.experimentalholiday=Функция „Създател на празници“ # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=Създаване на нов свят... # createWorldScreen.progress.realms=Нулиране на обителта... # createWorldScreen.seed.desc=Въведете семе за повторно генериране на същия терен. Оставете празно за случаен свят. # createWorldScreen.showCoordinates=Показване на координатите # +createWorldScreen.showDaysPlayed=Показване на изиграните дни # createWorldScreen.worldType=Тип свят # createWorldScreen.randomtickspeed=Случайна скорост на такт # createWorldScreen.randomtickspeed.reset=Нулиране на случайна скорост на такт # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=Изтриване на проекта # createWorldScreen.editor.projectOptionsLabel=Опции на проекта # createWorldScreen.editor.delete.confirm=Изтриване на проекта за постоянно? # createWorldScreen.editor.deleteWarningFormat=Наистина ли искате да изтриете „%s“? Този проект ще бъде загубен завинаги! # +createWorldScreen.eduCloud.about.body=Име на файла: '%1$s'%2$sПоследна актуализация: %3$s%4$sЗа да изтеглите, щракнете „OK“ и след това „Изтегляне“.%5$s # +createWorldScreen.eduCloud.about.title=Относно файла със свят в облака # createWorldScreen.eduCloud.delete.confirm=Да се изтрие ли локалният свят? # createWorldScreen.eduCloud.deleteWarningFormat=Сигурни ли сте, че искате да изтриете „%1$s“ на това устройство?%2$sВерсията „%3$s“ в облака няма да бъде засегната и може да бъде синхронизирана по-късно. # createWorldScreen.experimentalDeferredTechnicalPreview=Функции за рендериране на дракон за създатели # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Магазин на Windows # realmsSettingsScreen.xboxOneStoreDisplayName=Магазин на Xbox # realmsSettingsScreen.amazonStoreDisplayName=Amazon Appstore # realmsSettingsScreen.oculusStoreDisplayName=Oculus Store # -realmsSettingsScreen.berwickStoreDisplayName=„PlayStation Store“ # -realmsSettingsScreen.SonyStoreDisplayName=„PlayStation Store“ #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=неизвестен магазин # realmsSettingsScreen.extendingRealm=Удължаване на срока на обителта... # realmsSettingsScreen.offerError.title=Чакаща покупка # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=Пакети, закупени xbl.syncIAP.confirmSync.prompt.yes=Да, синхронизиране на моите покупки # xbl.marketplace.account.error.body.nobutton=Има грешка в акаунта ви. Няма да можете да използвате пазара, докато не разрешим проблема. Ако проблемът продължи няколко дни, се свържете с екипа за поддръжка. # -xbl.marketplace.account.banned.body.nobutton=Не можете да използвате пазара, докато преустановяването не изтече. # playfab.account.banned.temporary=прекъснат # playfab.account.banned.permanent=баннат # @@ -2487,6 +2482,14 @@ date.daysAbbreviated1Char=%s дни ### It needs to be abbreviated with no more date.hoursAbbreviated1Char=%s ч. ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%s мин. ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%s сек. ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s дни # +date.hoursPlural=%s часа # +date.minutesPlural=%s минути # +date.secondsPlural=%s секунди # +date.daySingular=%s ден # +date.hourSingular=%s час # +date.minuteSingular=%s минута # +date.secondSingular=%s секунда # date.timeLeft=Остават %s # dayOneExperience.carousel.title=Добре дошли в новия Minecraft! # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=ХОСТВАНЕ # edu.worlds_screen.settings=НАСТРОЙКИ # edu.worlds_screen.download=ИЗТЕГЛЯНЕ ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=УПРАВЛЕНИЕ # +edu.worlds_screen.about=Относно # edu.worlds_screen.back=НАЗАД # edu.worlds_screen.copy=КОПИРАНЕ # edu.worlds_screen.export=ЕКСПОРТИРАНЕ # @@ -2791,7 +2795,13 @@ edu.templates.empty_banner=Можете да вземете шаблони на edu.pause.multiplayer.disabled=Съжаляваме, но в този урок няма възможност за мултиплейър. # effect.badOmen=Лоша поличба # +effect.infested=Заразено # +effect.oozing=Тинесто # +effect.raid_omen=Поличба за нашествие # +effect.trial_omen=Поличба за изпитание # effect.villageHero=Героят на селото # +effect.weaving=Тъкачество # +effect.wind_charged=С пълен вятърен заряд # enchantment.arrowDamage=Сила # enchantment.arrowFire=Пламък # @@ -2810,6 +2820,9 @@ enchantment.durability=Неразрушимост # enchantment.fire=Огнен аспект # enchantment.fishingSpeed=Стръв # enchantment.frostwalker=Ледоходки # +enchantment.heavy_weapon.breach=Нарушение # +enchantment.heavy_weapon.density=Плътност # +enchantment.heavy_weapon.windburst=Внезапен вятър # enchantment.knockback=Отблъскване # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=Прилеп # entity.bee.name=Пчела # entity.blaze.name=Пламък # entity.boat.name=Лодка # +entity.bogged.name=Затънал # +entity.breeze.name=Бриз # +entity.breeze_wind_charge_projectile.name=Вятърен заряд # entity.cat.name=Котка # entity.cave_spider.name=Пещерен паяк # entity.chicken.name=Кокошка # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=Неквалифициран селянин # entity.villager_v2.name=Селянин # entity.vindicator.name=Бранител # entity.wandering_trader.name=Странстващ търговец # +entity.wind_charge_projectile.name=Вятърен заряд # entity.witch.name=Вещица # entity.wither.name=Чезнещия # entity.wither_skeleton.name=Чезнещ скелет # @@ -3009,6 +3026,7 @@ feature.ruins=Океански руини # feature.pillager_outpost=База на грабители # feature.bastion_remnant=Останките на бастиона # feature.ruined_portal=Разрушен портал # +feature.trial_chambers=Пробни стаи # feed.like=Харесване # feed.manage_feed=Управляване на информационен канал # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=Движете :tip_left_stick:, за да с gameTip.flying.mouse=Докоснете :_input_key.jump: два пъти, за да летите # gameTip.flying.touch=Докоснете „скок“ два пъти, за да летите # +gameTip.flyDown.mouse=Натиснете :_input_key.sneak:, за да летите надолу # +gameTip.flyUp.mouse=Натиснете :_input_key.jump:, за да летите # + +gameTip.stopFlying.mouse=Докоснете :_input_key.jump: два пъти, за да спрете да летите # +gameTip.stopFlying.touch=Докоснете „летене надолу“ два пъти, за да спрете да летите # + gameTip.jump.mouse=Скачайте с :_input_key.jump: # +gameTip.swim.mouse=Натиснете и задръжте :_input_key.jump:, за да плувате нагоре # -gameTip.hotbar.mouse=Плъзнете колелото на мишката, за да изберете # в лентата за бързи слотове, за да го задържите # -gameTip.hotbar.touch=Натиснете # в лентата за бързи слотове, за да го задържите # -gameTip.hotbar.controller=Натиснете # в лентата за бързи слотове, за да го задържите # +gameTip.hotbar.selection.mouse=Превъртете или натиснете %s, за да задържите предмет ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=Натиснете предмет в лентата за бързи слотове, за да го задържите # gameTip.breakBlock.mouse=Задръжте левия бутон, за да чупите блокове # gameTip.breakBlock.touch=Докоснете и задръжте, за да чупите блокове. # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=В момента се промъквате! Не может gameTip.sneak.touch=В момента се промъквате, затова не можете да падате от ръбове # gameTip.sneak.controller=В момента се промъквате, затова не можете да падате от ръбове # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=Поставете занаятчийската си маса. Задръжте я и щракнете, за да я поставите # gameTip.placeCraftingTable.touch=Поставете занаятчийската си маса, като докоснете земята # gameTip.placeCraftingTable.controller=Поставете занаятчийската си маса, задръжте я и след това докоснете земята # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=Благодарим ви, че споделихте gui.submitFeedback.failure.status.unprocessableEntity=Не притежавате предмета, за който се опитвате да оставите отзив. (Код на грешка: %d) # gui.submitFeedback.failure.status.tooManyRequests=О, не! Изпратили сте твърде много отзиви. Моля, опитайте отново по-късно. (Код на грешка: %d) # gui.submitFeedback.failure.status.other=В момента не можете да изпратите отзива си. Моля, опитайте отново по-късно. (Код на грешка: %d) # +gui.togglable_slot=Натиснете, за да забраните слота # gui.playOffline=Игра офлайн # gui.signIn=Влизане # gui.genericNetworkError=Възникна грешка. Проверете връзката си с интернет. # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=Изследвайте света на възможн howtoplay.minecoins.text.2=След като ги вземете, Minecoins се свързват с вашия акаунт в Microsoft, така че ще имате достъп до монетите и покупките си и на други поддържани устройства! # howtoplay.minecoins.button.text.1=Получаване на монети за Minecraft # howtoplay.minecoins.header.1=Отказ от отговорност # -howtoplay.minecoins.text.3=*За Minecoins е нужна версията Minecraft: Bedrock Edition с пазар на Minecraft. Minecoins не са съвместими със Sony PlayStation. За информация относно съвместимостта вижте minecraft.net/minecoins  # +howtoplay.minecoins.text.3=*За Minecoins е нужна версията Minecraft: Bedrock Edition с пазар на Minecraft. Minecoins не са съвместими със Sony PlayStation®. За информация относно съвместимостта вижте minecraft.net/minecoins  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=Копаене # @@ -4145,7 +4170,7 @@ level.editor.export.failed=Експортирането на проекта е level.editor.import.failed=Импортирането на проекта е неуспешно # level.editor.import.failed.incompatibleEdition=Неуспешно импортиране на проекта: неподдържан файлов формат # -inbox.invite.title=Покана за Realms # +inbox.invite.title=Покана за Realm за # invite.clear=Изчистване на избора # invite.send=Изпращане на %d покани # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=Червен по обратен диагон item.banner.diagonal_up_right.silver=Светлосив по обратен диагонал отдясно # item.banner.diagonal_up_right.white=Бял по обратен диагонал отдясно # item.banner.diagonal_up_right.yellow=Жълт по обратен диагонал отдясно # +item.banner.flow.black=Черен поток # +item.banner.flow.blue=Син поток # +item.banner.flow.brown=Кафяв поток # +item.banner.flow.cyan=Цианов поток # +item.banner.flow.gray=Сив поток # +item.banner.flow.green=Зелен поток # +item.banner.flow.lightBlue=Светлосин поток # +item.banner.flow.lime=Лимоненозелен поток # +item.banner.flow.magenta=Магентов поток # +item.banner.flow.orange=Оранжев поток # +item.banner.flow.pink=Розов поток # +item.banner.flow.purple=Лилав поток # +item.banner.flow.red=Червен поток # +item.banner.flow.silver=Светлосив поток # +item.banner.flow.white=Бял поток # +item.banner.flow.yellow=Жълт поток # item.banner.flower.black=Черно хералдическо цвете # item.banner.flower.blue=Синьо хералдическо цвете # item.banner.flower.brown=Кафяво хералдическо цвете # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=Бял градиент в основата # item.banner.gradient_up.yellow=Жълт градиент в основата # item.banner.gray.name=Сив банер # item.banner.green.name=Зелен банер # +item.banner.guster.black=Черен повей # +item.banner.guster.blue=Син повей # +item.banner.guster.brown=Кафяв повей # +item.banner.guster.cyan=Цианов повей # +item.banner.guster.gray=Сив повей # +item.banner.guster.green=Зелен повей # +item.banner.guster.lightBlue=Светлосин повей # +item.banner.guster.lime=Лимоненозелен повей # +item.banner.guster.magenta=Магентов повей # +item.banner.guster.orange=Оранжев повей # +item.banner.guster.pink=Розов повей # +item.banner.guster.purple=Лилав повей # +item.banner.guster.red=Червен повей # +item.banner.guster.silver=Светлосив повей # +item.banner.guster.white=Бял повей # +item.banner.guster.yellow=Жълт повей # item.banner.half_horizontal.black=Черен в горна половина # item.banner.half_horizontal.blue=Син в горна половина # item.banner.half_horizontal.brown=Кафяв в горна половина # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=Акациева лодка # item.boat.big_oak.name=Лодка от тъмен дъб # item.bone.name=Кост # item.book.name=Книга # +item.breeze_rod.name=Пръчка на бриз # item.chainmail_boots.name=Ботуши от метални брънки # item.leather_boots.name=Кожени ботуши # item.diamond_boots.name=Диамантени ботуши # @@ -4991,6 +5049,7 @@ item.comparator.name=Компаратор от червен камък # item.compass.name=Компас # item.lodestonecompass.name=Компас от магнетит # item.cookie.name=Бисквитка # +item.copper_door.name=Медна врата # item.crossbow.name=Арбалет # item.diamond.name=Диамант # item.repeater.name=Репитер от червен камък # @@ -5038,6 +5097,7 @@ tile.end_rod.name=Пръчка от Края # item.ender_eye.name=Око на Края # item.ender_pearl.name=Перла от пагубник # item.experience_bottle.name=Омагьосана бутилка # +item.exposed_copper_door.name=Изложена медна врата # item.feather.name=Перо # item.fermented_spider_eye.name=Ферментирало паешко око # item.fireball.name=Огнен заряд # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=Златни панталони # item.iron_leggings.name=Железни панталони # item.nautilus_shell.name=Черупка на наутилус # item.heart_of_the_sea.name=Сърцето на морето # +item.mace.name=Боздуган # item.magma_cream.name=Магмена смола # item.map.name=Карта # item.map.exploration.mansion.name=Горска изследователска карта # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=Карта със село в сава item.map.exploration.village_desert.name=Карта с пустинно село # item.map.exploration.jungle_temple.name=Карта на изследовател на джунглата # item.map.exploration.swamp_hut.name=Карта на изследовател на блатото # +item.map.exploration.trial_chambers.name=Пробна изследователска карта # item.melon.name=Диня # item.milk.name=Мляко # item.minecart.name=Вагонетка # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=Вагонетка със сандък # item.command_block_minecart.name=Вагонетка с команден блок # item.minecartFurnace.name=Вагонетка с пещ # item.hopper_minecart.name=Вагонетка с фуния # +item.ominous_bottle.name=Зловеща бутилка # +item.ominous_trial_key.name=Зловещ ключ за изпитание # +item.oxidized_copper_door.name=Окислена медна врата # item.tnt_minecart.name=Вагонетка с TNT # item.pitcher_pod.name=Шушулка на стомна # item.torchflower_seeds.name=Семена за факелно цвете # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=Яйце за извикване на аген item.spawn_egg.entity.armadillo.name=Яйце за извикване на броненосец # item.spawn_egg.entity.axolotl.name=Яйце за извикване на аксолотъл # item.spawn_egg.entity.bee.name=Яйце за извикване на пчела # +item.spawn_egg.entity.bogged.name=Яйце за извикване на затънал # +item.spawn_egg.entity.breeze.name=Яйце за извикване на бриз # item.spawn_egg.entity.hoglin.name=Яйце за извикване на хоглин # item.spawn_egg.entity.cat.name=Яйце за извикване на котка # item.spawn_egg.entity.chicken.name=Яйце за извикване на кокошка # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 – мрак # item.record_pigstep.desc=Лена Рейн – Pigstep # item.record_otherside.desc=Lena Raine – otherside # item.record_relic.desc=Арън Чероф – Реликва # +item.record_creator.desc=Лена Рейн – Създател # +item.record_creator_music_box.desc=Лена Рейн – Създател (Музикална кутия) # +item.record_precipice.desc=Аарън Черов – Пропаст # item.redstone.name=Прах от червен камък # item.reeds.name=Захарна тръстика # item.kelp.name=Келп # @@ -5324,6 +5394,12 @@ item.iron_sword.name=Железен меч # item.stone_sword.name=Каменен меч # item.wooden_sword.name=Дървен меч # item.unbreakable=Неразрушим # +item.waxed_copper_door.name=Намазана с восък медна врата # +item.waxed_exposed_copper_door.name=Намазана с восък изложена медна врата # +item.waxed_oxidized_copper_door.name=Намазана с восък окислена медна врата # +item.waxed_weathered_copper_door.name=Намазана с восък ерозирала медна врата # +item.weathered_copper_door.name=Ерозирала медна врата # +item.wind_charge.name=Вятърен заряд # item.wheat.name=Пшеница # item.wolf_armor.name=Вълча броня # item.writable_book.name=Книга и перо # @@ -5331,6 +5407,7 @@ item.written_book.name=Написана книга # item.glowstone_dust.name=Прах от светлинен камък # item.shulker_shell.name=Черупка на потайник # item.totem.name=Тотем на безсмъртието # +item.trial_key.name=Пробен ключ # item.turtle_helmet.name=Черупка на костенурка # item.turtle_shell_piece.name=Щитовидна люспа на костенурка # item.phantom_membrane.name=Мембрана на фантом # @@ -5338,8 +5415,10 @@ item.sweet_berries.name=Сладки горски плодове # item.suspicious_stew.name=Подозрителна яхния # item.banner_pattern.bricks=С фон на тухли # item.banner_pattern.creeper=Лице на крийпър # +item.banner_pattern.flow=Поток # item.banner_pattern.flower=Хералдическо цвете # item.banner_pattern.globe=Глобус # +item.banner_pattern.guster=Повей # item.banner_pattern.name=Модел на банер # item.banner_pattern.piglin=Муцуна # item.banner_pattern.skull=Череп с кръстосани кости # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=Модели на банер # itemGroup.name.netherWartBlock=Пъклени полипи # itemGroup.name.candles=Свещи # itemGroup.name.goatHorn=Кози рога # +itemGroup.name.compounds=Съединения # +itemGroup.name.products=Продукти # jigsaw.title.target_pool=Целева група: # jigsaw.title.name=Име: # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=НАСТРОЙКИ ЗА КЛАСНА СТАЯ # menu.serverStore=Магазин на %s # menu.serverGenericName=Сървър # menu.play=Игра # +menu.profile=Профил # menu.playdemo=Игра в демонстрационен свят # menu.playOnRealms=Игра в Realm # menu.quickplay=Бърза игра # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=Изберете началния си перс menu.character_cast.preview_title=Запознайте се с актьорите! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Сървър за Realms ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=Сървъри # merchant.deprecated=Обменете нещо друго, за да отключите! # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=Геймплей с цяла клавиатура # options.fullKeyboardLayout=Пълна клавиатурна подредба # options.improvedInputResponsePlaceholder=Подобрен отговор при въвеждане # options.improvedInputResponsePlaceholder.tooltip=Намалява закъснението между въведеното от вас и това, което виждате на екрана. Тази настройка може да използва повече енергия от батерията. # +options.dynamicTexturesToggle=Премахване на ограничението за текстури # +options.dynamicTexturesToggle.tooltip=Превключването на тази функция от включена на изключена ще изисква рестартиране на играта. Това може да доведе до нестабилност, когато използвате множество добавки или пакети с ресурси с много текстури. # +options.dynamicTextures.popUp=Ако сте включили функцията „Премахване на ограничението за текстури“, ще трябва да рестартирате играта, за да я изключите. # +options.dynamicTextures.popUp.title=Сигурни ли сте? # options.fullscreen=Цял екран # options.gamepadcursorsensitivity=Чувствителност на курсора на контролера # options.gamertag=Етикет на играча: # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=Свързване # options.creator.debuggerListen=Слушайте # options.creator.debuggerHost=Хостване # options.creator.debuggerPort=Порт # +options.creator.watchdogHeading=Настройки на Script Watchdog # +options.creator.watchdogSlowWarning=Предупреждения за бавен скрипт # +options.creator.watchdogSlowThreshold=Средната стойност надвишава # +options.creator.watchdogSlowFormat=%s милисекунди # +options.creator.watchdogSlowFormatDefault=%s милисекунди (по подразбиране) # +options.creator.watchdogSpikeWarning=Предупреждения за скок в скрипта # +options.creator.watchdogSpikeThreshold=Скокът надвишава # +options.creator.watchdogSpikeFormat=%s милисекунди # +options.creator.watchdogSpikeFormatDefault=%s милисекунди (по подразбиране) # +options.creator.watchdogHangThreshold=Прекъсване след # +options.creator.watchdogHangFormat=%s секунди # +options.creator.watchdogHangFormatDefault=%s секунди (по подразбиране) # options.vr_classic_box_selection=Очертаване на избора # options.hidegamepadcursor=Скриване на курсора на контролера # options.hidegui=Скриване на GUI # @@ -6662,7 +6761,7 @@ options.makeBackup=Създаване на резервно копие на мо options.managePrivacy=За управление на настройките за поверителност посетете https://account.xbox.com/Settings в който и да е уеб браузър. ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Прекратяване на връзката на акаунт в Microsoft # options.unlink_msa.confirm.title=Прекратяване на връзката на акаунта в Microsoft? # -options.unlink_msa.confirm.warning=ВНИМАНИЕ: След като прекратите връзката, вече няма да можете да съхранявате напредък или покупки, направени на вашата система „PlayStation 4“ на акаунта %s. # +options.unlink_msa.confirm.warning=ВНИМАНИЕ: След като прекратите връзката, вече няма да можете да съхранявате напредък или покупки, направени на вашата система PlayStation®4 на акаунта %s. #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=Прекратяването на връзката с вашия акаунт в Microsoft от тази игра ще засегне всички игри на Minecraft на тази платформа, които са използвали този акаунт в Microsoft. # options.unlink_msa.confirm.checkbox1=Вече няма да имам достъп до съдържание от магазина в играта, когато играя на други платформи. # options.unlink_msa.confirm.checkbox2=Вече няма да мога да играя игри на различни платформи с приятелите си на други платформи. # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=Заредете свят, за да пе hudScreen.controlCustomization.tooltip.notouch=Използвайте сензорно устройство за персонализиране на контролите # hudScreen.controlCustomization.tooltip.alreadycustomizing=Вече има отворен екран за персонализиране на сензорното управление # hudScreen.controlCustomization.tooltip.alive=Играчът трябва да е жив, за да може да персонализира контролите. # +hudScreen.daysPlayed=Изиграни дни: %s # +hudScreen.daysPlayed.overflow=Твърде много, за да ги преброим! # playscreen.fileSize.MB=МБ # playscreen.fileSize.GB=ГБ # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=Разплискваща се отвара на лече potion.heal.linger.name=Задържаща се отвара на лечението # potion.healthBoost=Бонус здраве # potion.hunger=Глад # +potion.infested.linger.name=Дълготрайна отвара на заразата # +potion.infested.name=Отвара на заразата # +potion.infested.splash.name=Разплискваща се отвара на заразата # +potion.infested=Заразено # potion.invisibility=Невидимост # potion.invisibility.name=Отвара на невидимостта # potion.invisibility.splash.name=Разплискваща се отвара на невидимостта # @@ -7067,6 +7172,10 @@ potion.nightVision=Нощно зрение # potion.nightVision.name=Отвара на нощното зрение # potion.nightVision.splash.name=Разплискваща се отвара на нощното виждане # potion.nightVision.linger.name=Задържаща се отвара на нощното виждане # +potion.oozing.linger.name=Дълготрайна отвара на тинята # +potion.oozing.name=Отвара за тиня # +potion.oozing.splash.name=Разплискваща отвара на тинята # +potion.oozing=Тинесто # potion.poison=Отрова # potion.poison.name=Отвара с отрова # potion.poison.splash.name=Разплискваща се отвара с отрова # @@ -7108,6 +7217,14 @@ potion.weakness=Слабост # potion.weakness.name=Отвара на слабостта # potion.weakness.splash.name=Разплискваща се отвара на слабостта # potion.weakness.linger.name=Задържаща се отвара на слабостта # +potion.weaving.linger.name=Задържаща се отвара на тъкането # +potion.weaving.name=Отвара на тъкането # +potion.weaving.splash.name=Разплискваща се отвара на тъкането # +potion.weaving=Тъкачество # +potion.windCharged.linger.name=Дълготрайна отвара с вятърен заряд # +potion.windCharged.name=Отвара с вятърен заряд # +potion.windCharged.splash.name=Разплискваща отвара с вятърен заряд # +potion.windCharged=С пълен вятърен заряд # potion.wither=Чезнене # potion.wither.name=Отвара на загниването # potion.wither.splash.name=Разплискваща се отвара на загниването # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=Този свят не може да progressScreen.message.forbiddenContent=Не притежавате един или повече от приложените пакети # progressScreen.message.loadingSplitScreenAppearances=Зареждане на изгледите на разделен екран... # progressScreen.message.finishedLoadingSplitScreenAppearances=Завършено е зареждането на изгледите на разделен екран. # -progressScreen.message.modifiedWorldWarning=Възможно е този свят да не изглежда или да не се държи по същия начин като световете, които не са модифицирани, и да не можете да печелите постижения. # +progressScreen.message.modifiedWorldWarning.1=Играете в свят с добавки! Това ще добави нови функции в света ви в Minecraft. # +progressScreen.message.modifiedWorldWarning.2=Не спирайте само с една! В даден свят можете да заредите много добавки наведнъж. # +progressScreen.message.modifiedWorldWarning.3=Съвет за напреднали: Пакетът с ресурси може да променя текстурите на различни блокове и обекти. # +progressScreen.message.modifiedWorldWarning.4=Съвет за напреднали: Пакетът за поведение може да промени поведението на различни предмети, създания или блокове. # +progressScreen.message.modifiedWorldWarning.5=Съвет за напреднали: Добавката включва както пакет за поведение, така и пакет с ресурси. Уверете се, че и двата пакета са активирани, за да сте сигурни, че добавката работи! # +progressScreen.message.modifiedWorldWarning.6=Добавките внасят нови блокове, предмети или мобове в световете ви. # +progressScreen.message.modifiedWorldWarning.7=Световете и добавките са сложни! Някои от тях работят чудесно заедно, а с други може да получите странни резултати. # +progressScreen.message.modifiedWorldWarning.8=Повече добавки означават повече забавление, но играта може да се зарежда по-дълго. # progressScreen.dialog.title.resourcePack=Изтегляне на пакетите с ресурси? # progressScreen.dialog.title.behaviorAndResourcePack=Изтегляне на пакетите с ресурси и поведения на света? # progressScreen.dialog.title.onlyBehavior=Изтегляне на пакетите с поведения на света? # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=Да се актуализира ли светъ resourcePack.warning.add.body=Възможно е този свят да не изглежда или да не се държи по същия начин като световете, които не са модифицирани. По-добре запазете копие на света си, преди да продължите. # resourcePack.warning.add.button.cancel=Да не се добавя пакетът # resourcePack.warning.add.button.ok=Добавяне на пакета въпреки това # +resourcePack.warnings.contentKeyErrorBody=Възникна проблем при зареждането на пакета %s. # +resourcePack.warnings.contentKeyErrorBodyMultiple=Възникна проблем при зареждането на пакетите %s. # +resourcePack.warnings.contentKeyErrorTitle=Грешка! # resourcePack.warning.remove.title=Това е опасно! # resourcePack.warning.remove.body=Добавянето или премахването на пакети след игране на даден свят може да повреди света и да доведе до загуба на създаденото от вас. # resourcePack.warning.remove.button.cancel=Запазване на пакета # @@ -7557,7 +7684,9 @@ item.crimson_hanging_sign.name=Пурпурна висяща табела # item.danger_pottery_sherd.name=Керамичен чиреп с опасност # item.dark_oak_hanging_sign.name=Висяща табела от тъмен дъб # item.explorer_pottery_sherd.name=Керамичен чиреп на изследовател # +item.flow_pottery_sherd.name=Керамичен чиреп с поток # item.friend_pottery_sherd.name=Керамичен чиреп на приятел # +item.guster_pottery_sherd.name=Керамичен чиреп с повей # item.heart_pottery_sherd.name=Керамичен чиреп със сърце # item.heartbreak_pottery_sherd.name=Керамичен чиреп с разбито сърце # item.howl_pottery_sherd.name=Керамичен чиреп с вой # @@ -7568,6 +7697,7 @@ item.mourner_pottery_sherd.name=Керамичен чиреп на скърбя item.oak_hanging_sign.name=Дъбова висяща табела # item.plenty_pottery_sherd.name=Керамичен чиреп на изобилие # item.prize_pottery_sherd.name=Керамичен чиреп с награда # +item.scrape_pottery_sherd.name=Керамичен чиреп с изстъргване # item.sheaf_pottery_sherd.name=Керамичен чиреп със сноп # item.shelter_pottery_sherd.name=Керамичен чиреп с подслон # item.skull_pottery_sherd.name=Керамичен чиреп с череп # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=Черешови стълби # tile.cherry_trapdoor.name=Подова врата от череша # tile.cherry_wood.name=Черешово дърво # tile.chiseled_bookshelf.name=Дялана лавица за книги # +tile.chiseled_tuff.name=Дялан туф # +tile.chiseled_tuff_bricks.name=Дялани тухли от туф # tile.decorated_pot.name=Украсена саксия # tile.pink_petals.name=Розови венчелистчета # tile.stripped_bamboo_block.name=Блок от белен бамбук # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=Декорация за броня – векс # trim_pattern.ward.name=Декорация за броня – пазач # trim_pattern.wayfinder.name=Декорация за броня – откривател на пътя # trim_pattern.wild.name=Декорация за броня – дива # +trim_pattern.bolt.name=Декорация за броня с мълния # +trim_pattern.flow.name=Декорация за броня с поток # upgrade.netherite_upgrade.name=Надстройка за нитерит # storageManager.mainSizeLabel=%s – 1 елемент # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=Изтриване на шаблон на свят selectTemplate.delete=Изтриване # selectTemplate.myTemplates=Моите шаблони на свят # selectTemplate.realmsPlus=Актуални шаблони на Realms Plus # -selectTemplate.marketplacePass=Актуални шаблони за Marketplace Pass #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=Препоръчано съдържание с Marketplace Pass #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=Импортирани шаблони # selectTemplate.download=Изтегляне # selectTemplate.noTemplates=Няма шаблони на светове на това устройство. # -selectTemplate.suggestedContent.title=Актуални шаблони на пазара # +selectTemplate.suggestedContent.title=Препоръчано съдържание на пазара # selectTemplate.suggestedContent.button=Преглед на още шаблони # selectTemplate.createdBy=Създадено от %s # selectTemplate.inventory=Моите пакети от пазара # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=Възникна проблем с връзкат store.loading.error.issues=Хм, има някакъв проблем с пазара. Моля, опитайте да се свържете по-късно. # store.loading.error.internetDown=Не можем да открием интернет връзка. # store.loading.error.account=Има проблем с акаунта ви. Опитайте отново след малко и ако това продължи, се свържете с поддръжката за клиенти. # +store.loading.error.account.banned=Не можете да използвате пазара, докато преустановяването не изтече. # store.giftPromo.day=Ден %s ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=Получено # @@ -8405,10 +8540,17 @@ store.mashup.count.skin=1 скин # store.mashup.count.skins=%s скина # store.mashup.count.texturePack=1 пакет текстури # store.mashup.count.texturePacks=%s пакета текстури #number of texture packs # -store.mashup.count.world=1 свят # +store.mashup.count.world=1 свят # store.mashup.count.worlds=%s свята #number of worlds # store.mashup.count.addonPack=1 добавка # store.mashup.count.addonPacks=%s добавки #number of addons # +store.mashup.count.mashup=Пакет с гости # +store.mashup.hover.label.addonPack=Добавките могат да се прилагат към всеки свят. # +store.mashup.hover.label.world=Ръчно изработена карта на Minecraft. # +store.mashup.hover.label.skin=Придайте нов облик на героя си. # +store.mashup.hover.label.texturePack=Добавете нов визуален елемент в света или интерфейса на играта. # +store.mashup.hover.label.mashup.lineOne=Комбинация от различни видове съдържание. # +store.mashup.hover.label.mashup.lineTwo=Този пакет с гости съдържа: # store.addon.activateAddonPack=Активирайте добавка! # store.addon.newOrExistingTitle=Къде да добавите? # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=Дъска # tile.chest.name=Сандък # tile.ender_chest.name=Сандък на Края # tile.jigsaw.name=Пъзелен блок # +tile.heavy_core.name=Тежко ядро # tile.honey_block.name=Меден блок # tile.honeycomb_block.name=Блок на медена пита # tile.lodestone.name=Магнетит # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=Плоча от полиран черен к tile.polished_blackstone_pressure_plate.name=Активираща плоча от полиран черен камък # tile.polished_blackstone_button.name=Бутон от полиран черен камък # tile.polished_blackstone_wall.name=Стена от полиран черен камък # +tile.polished_tuff.name=Полиран туф # +tile.polished_tuff_slab.name=Плоча от полиран туф # +tile.polished_tuff_stairs.name=Стълби от полиран туф # +tile.polished_tuff_wall.name=Стена от полиран туф # tile.soul_campfire.name=Лагерен огън на душите # tile.chiseled_nether_bricks.name=Дялани пъклени тухли # tile.cracked_nether_bricks.name=Напукани пъклени тухли # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=Жълта глина # tile.structure_block.name=Структурен блок # structure_block.waterlog_block=Заблатени блокове # tile.structure_void.name=Структурна празнина # +tile.trial_spawner.name=Пробен призовател # +tile.vault.name=Трезор # tile.wool.black.name=Черна вълна # tile.wool.blue.name=Синя вълна # tile.wool.brown.name=Кафява вълна # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=Папрат # tile.tallgrass.grass.name=Трева # tile.tallgrass.name=Трева # tile.tallgrass.shrub.name=Шубрак # +tile.tuff_brick_slab.name=Плоча от тухли от туф # +tile.tuff_brick_stairs.name=Стълби от тухли от туф # +tile.tuff_brick_wall.name=Стена от тухли от туф # +tile.tuff_bricks.name=Тухли от туф # +tile.tuff_slab.name=Плоча от туф # +tile.tuff_stairs.name=Стълби от туф # +tile.tuff_wall.name=Стена от туф # tile.seagrass.seagrass.name=Морска трева # tile.sea_pickle.name=Морска краставица # tile.turtle_egg.name=Яйце на морска костенурка # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=Червен килим # tile.carpet.silver.name=Светлосив килим # tile.carpet.white.name=Бял килим # tile.carpet.yellow.name=Жълт килим # +tile.crafter.name=Изработващ # tile.crafting_table.name=Занаятчийска маса # tile.glazedTerracotta.white.name=Бяла емайлирана глина # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=Намазана с восък изрязана tile.waxed_exposed_cut_copper_slab.name=Намазана с восък изложена изрязана медна плоча # tile.waxed_weathered_cut_copper_slab.name=Намазана с восък ерозирала изрязана медна плоча # tile.waxed_oxidized_cut_copper_slab.name=Намазана с восък окислена изрязана медна плоча # + +tile.chiseled_copper.name=Дялана мед # +tile.exposed_chiseled_copper.name=Изложена дялана мед # +tile.oxidized_chiseled_copper.name=Окислена дялана мед # +tile.waxed_chiseled_copper.name=Намазана с восък дялана мед # +tile.waxed_exposed_chiseled_copper.name=Намазана с восък изложена дялана мед # +tile.waxed_oxidized_chiseled_copper.name=Намазана с возък окислена дялана мед # +tile.waxed_weathered_chiseled_copper.name=Намазана с восък ерозирала дялана мед # +tile.weathered_chiseled_copper.name=Ерозирала дялана мед # + +tile.copper_bulb.name=Медна крушка # +tile.exposed_copper_bulb.name=Изложена медна крушка # +tile.oxidized_copper_bulb.name=Окислена медна крушка # +tile.waxed_copper_bulb.name=Намазана с восък медна крушка # +tile.waxed_exposed_copper_bulb.name=Намазана с восък изложена медна крушка # +tile.waxed_oxidized_copper_bulb.name=Намазана с восък изложена медна крушка # +tile.waxed_weathered_copper_bulb.name=Намазана с восък ерозирала медна крушка # +tile.weathered_copper_bulb.name=Ерозирала медна крушка # + +tile.copper_door.name=Медна врата # +tile.exposed_copper_door.name=Изложена медна врата # +tile.oxidized_copper_door.name=Окислена медна врата # +tile.waxed_copper_door.name=Намазана с восък медна врата # +tile.waxed_exposed_copper_door.name=Намазана с восък изложена медна врата # +tile.waxed_oxidized_copper_door.name=Намазана с восък окислена медна врата # +tile.waxed_weathered_copper_door.name=Намазана с восък ерозирала медна врата # +tile.weathered_copper_door.name=Ерозирала медна врата # + +tile.copper_grate.name=Медна решетка # +tile.exposed_copper_grate.name=Изложена медна решетка # +tile.oxidized_copper_grate.name=Окислена медна решетка # +tile.waxed_copper_grate.name=Намазана с восък медна решетка # +tile.waxed_exposed_copper_grate.name=Намазана с восък изложена медна решетка # +tile.waxed_oxidized_copper_grate.name=Намазана с восък окислена медна решетка # +tile.waxed_weathered_copper_grate.name=Намазана с восък ерозирала медна решетка # +tile.weathered_copper_grate.name=Ерозирала медна решетка # + +tile.copper_trapdoor.name=Медна подова врата # +tile.exposed_copper_trapdoor.name=Изложена медна подова врата # +tile.oxidized_copper_trapdoor.name=Окислена медна подова врата # +tile.waxed_copper_trapdoor.name=Намазана с восък медна подова врата # +tile.waxed_exposed_copper_trapdoor.name=Намазана с восък изложена медна подова врата # +tile.waxed_oxidized_copper_trapdoor.name=Намазана с восък окислена медна подова врата # +tile.waxed_weathered_copper_trapdoor.name=Намазана с восък ерозирала медна подова врата # +tile.weathered_copper_trapdoor.name=Ерозирала медна подова врата # + tile.raw_copper_block.name=Блок от необработена мед # tile.raw_iron_block.name=Блок от необработено желязо # tile.raw_gold_block.name=Блок от необработено злато # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=Стрела на късмета # tipped_arrow.effect.wither=Стрела на загниването # tipped_arrow.effect.turtleMaster=Стрела на повелителя на костенурките # tipped_arrow.effect.slowFalling=Стрела за бавно падане # +tipped_arrow.effect.infested=Стрела на заразата # +tipped_arrow.effect.oozing=Стрела на тинята # +tipped_arrow.effect.weaving=Стрела на тъкането # +tipped_arrow.effect.windCharged=Стрела с вятърен заряд # structure_block.title=Структурен блок # structure_block.structure_name=Име на структура # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=Някои от най-новите в worldError.worldFailedRecovery=Възстановяването е неуспешно # worldError.worldFailedRecoveryText=Открихме повреден свят и не успяхме да го възстановим. # +writeThrottling.osDialog.body=Очаква се изпълнението на заявената операция да отнеме %d минути. Моля, не изключвайте устройството си през това време. # +writeThrottling.osDialog.cancel=Отмяна на операцията # +writeThrottling.osDialog.confirm=Продължаване # +writeThrottling.progressBar.title=Подготвяне на данни # +writeThrottling.progressBar.body=Приготвяне на файловете ви.. # + userData.recovered.title=Възстановени данни за запис # userData.recovered.text=Успешно възстановяване на вашите повредени потребителски настройки. # userData.recovered.warning=Някои от най-новите ви промени може да са били загубени при възстановяването. # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=Съобщение в чата # xbox.report.area.skin=Скин на играча # xbox.report.area.gameplay=Геймплей # xbox.report.area.ingame=Творения в играта # -xbox.report.area.other=Друго # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=Кибертормоз # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=За съжаление, не успяхм gathering.connect.title=Свързване... # gathering.info.qr.title.onlineService=Научете повече # gathering.info.qr.body.onlineService.nso=Трябва да сте член на Nintendo Switch Online, за да се присъедините към събитие в Minecraft. # -gathering.info.qr.body.onlineService.psn=Трябва да сте влезли в \„PlayStation Plus\“, за да се присъедините към събитие в Minecraft. # +gathering.info.qr.body.onlineService.psn=Трябва да сте влезли в PlayStation®Plus, за да се присъедините към събитие в Minecraft. #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=Трябва да сте влезли, за да се присъедините към събитие в Minecraft. # gathering.info.qr.title.childAccount=Онлайн играта не е разрешена # gathering.info.qr.body.childAccount=Родителският контрол ограничава възможността да играете онлайн. # diff --git a/resource_pack/texts/cs_CZ.lang b/resource_pack/texts/cs_CZ.lang index dbd7ead97..a0c72e2d2 100644 --- a/resource_pack/texts/cs_CZ.lang +++ b/resource_pack/texts/cs_CZ.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=Zvolit počáteční hodnotu # accessibility.start.feedback=Odeslat na web odkaz na zpětnou vazbu # accessibility.start.new=Nový # -accessibility.start.profile=Vybrat profil # accessibility.start.skinPicker=Zvolit skin # accessibility.store.tag=Značka # @@ -1094,10 +1093,6 @@ commands.me.description=Zobrazí zprávu o vás. # commands.message.display.incoming=Hráč %1$s vám šeptá: %2$s # commands.message.display.outgoing=Šeptáte hráči %1$s: %2$s # commands.message.sameTarget=Soukromou zprávu nemůžete zaslat sami sobě! # -commands.message.warn=§4Bylo vám zasláno upozornění. Vaše chování může být ostatními hráči považováno za útočné. Berte prosím ohled na ostatní hráče, s nimiž hrajete. # -commands.message.toastWarn=Minecraft je pro každého! Dbejte prosím na to, abyste se chovali v souladu s pravidly naší komunity. # -commands.warn.invalidWarningLevel=Neplatná úroveň varování. # -commands.warn.playerDoesNotExist=Nepodařilo se najít hráče. Vyberte platného hráče. # commands.mobevent.description=Řídí, které události stvoření se mohou spouštět. # commands.mobevent.eventsEnabledSetToTrue=Události stvoření jsou nyní povoleny. Jednotlivé události, u kterých je nastavena hodnota false, se nespustí. # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=- %s: %s od %d %d %d do %d %d %d # commands.volumearea.entry.withoutIdentifier=- %s: od %d %d %d do %d %d %d # commands.volumearea.noneExist.currentDimension=V aktuální dimenzi neexistují žádné svazky. # commands.volumearea.inUse=%1$d/%2$d svazků se používá. # -commands.warn.description=Odešle hráči varovnou zprávu. # commands.weather.clear=Změna na jasné počasí # commands.weather.description=Nastaví počasí. # commands.weather.disabled=V tomto světě není povolena možnost Cyklus počasí. # @@ -1572,6 +1566,7 @@ container.beacon=Maják # container.brewing=Varný stojan # container.chest=Truhla # container.chestDouble=Velká truhla # +container.crafter=Řemeslník # container.crafting=Výroba # container.creative=Výběr předmětu # container.dispenser=Dávkovač # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=Jeskyně a útesy # createWorldScreen.cavesandcliffsDescription=Podívejte se na generování nových a různorodých jeskyní. # createWorldScreen.spectatorMode=Režim diváka # createWorldScreen.spectatorModeDescription=Vyzkoušejte si předběžnou verzi režimu diváka # -createWorldScreen.experimentalCameras=Experimentální kamery # -createWorldScreen.experimentalCamerasDescription=Obsahuje příklad přednastavení kamery (příkazy kamery již nejsou experimentální) # createWorldScreen.recipeUnlocking=Odemčení receptu # createWorldScreen.recipeUnlockingDescription=Povolit odemčení receptu # createWorldScreen.experimentalholiday=Funkce tvůrce prázdnin # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=Vytváření nového světa... # createWorldScreen.progress.realms=Resetování říše... # createWorldScreen.seed.desc=Chcete-li stejný terén vytvořit znovu, zadejte počáteční hodnotu. K vytvoření náhodného světa ponechte prázdné. # createWorldScreen.showCoordinates=Zobrazit souřadnice # +createWorldScreen.showDaysPlayed=Zobrazit počet odehraných dnů # createWorldScreen.worldType=Typ světa # createWorldScreen.randomtickspeed=Náhodná rychlost tiknutí # createWorldScreen.randomtickspeed.reset=Resetovat náhodnou rychlost tiknutí # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=Odstranit projekt # createWorldScreen.editor.projectOptionsLabel=Možnosti projektu # createWorldScreen.editor.delete.confirm=Trvale odstranit projekt? # createWorldScreen.editor.deleteWarningFormat=Opravdu chcete odstranit projekt %s? Tento projekt bude navždy ztracen! # +createWorldScreen.eduCloud.about.body=Název souboru: '%1$s'%2$sPoslední aktualizace: %3$s%4$sChcete-li soubor stáhnout, klikněte na tlačítko OK a poté na tlačítko Stáhnout.%5$s # +createWorldScreen.eduCloud.about.title=O souboru Cloud World # createWorldScreen.eduCloud.delete.confirm=Odstranit místní svět? # createWorldScreen.eduCloud.deleteWarningFormat=Opravdu chcete odstranit položku „%1$s“ na tomto zařízení? %2$sCloudová verze ‚%3$s' nebude nijak ovlivněna a lze ji znovu synchronizovat později. # createWorldScreen.experimentalDeferredTechnicalPreview=Funkce nástroje Vykreslit draka pro tvůrce # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Windows Store # realmsSettingsScreen.xboxOneStoreDisplayName=Obchod Xbox Store # realmsSettingsScreen.amazonStoreDisplayName=Amazon Appstore # realmsSettingsScreen.oculusStoreDisplayName=Oculus Store # -realmsSettingsScreen.berwickStoreDisplayName=„PlayStation Store“ # -realmsSettingsScreen.SonyStoreDisplayName=„PlayStation Store“ #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=neznámý obchod # realmsSettingsScreen.extendingRealm=Prodlužování říše... # realmsSettingsScreen.offerError.title=Nevyřízený nákup # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=Balíčky zakoupené mimo obcho xbl.syncIAP.confirmSync.prompt.yes=Ano, synchronizovat moje nákupy # xbl.marketplace.account.error.body.nobutton=U vašeho účtu došlo k chybě. Dokud problém nevyřešíme, nebudete moct obchod používat. Pokud tento problém přetrvává několik dní, kontaktujte podporu. # -xbl.marketplace.account.banned.body.nobutton=Dokud pozastavení nevyprší, nemůžete tržiště používat. # playfab.account.banned.temporary=pozastaveno # playfab.account.banned.permanent=zakázáno # @@ -2487,6 +2482,14 @@ date.daysAbbreviated1Char=%sd ### It needs to be abbreviated with no more than date.hoursAbbreviated1Char=%s h ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%s m ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%s s ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s dny # +date.hoursPlural=%s hodiny # +date.minutesPlural=%s minuty # +date.secondsPlural=%s sekundy # +date.daySingular=%s den # +date.hourSingular=%s hodina # +date.minuteSingular=%s minuta # +date.secondSingular=%s sekunda # date.timeLeft=zbývá %s # dayOneExperience.carousel.title=Vítejte v novém Minecraftu! # @@ -2532,7 +2535,7 @@ death.attack.cactus.player=Hráč %1$s stoupl na kaktus, když se snažil utéci death.attack.drown=Hráč %1$s se utopil # death.attack.drown.player=Hráč %1$s se utopil, když se snažil utéci před %2$s # death.attack.explosion=Hráč %1$s vyletěl do povětří # -death.attack.explosion.by.bed=Hráč %1$s byl zabit [Mezinárodní herní dyzajn] # +death.attack.explosion.by.bed=Hráč %1$s byl zabit [záměrným designem hry] # death.attack.explosion.player=Hráč %1$s byl vyhozen do povětří hráčem %2$s # death.attack.fall=Hráč %1$s umřel v důsledku příliš tvrdého přistání # death.attack.fallingBlock=Hráč %1$s byl rozmačkán padajícím blokem # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=ZAKLÁDAJÍCÍ HRÁČ # edu.worlds_screen.settings=NASTAVENÍ # edu.worlds_screen.download=STÁHNOUT ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=SPRAVOVAT # +edu.worlds_screen.about=INFORMACE # edu.worlds_screen.back=ZPĚT # edu.worlds_screen.copy=KOPÍROVAT # edu.worlds_screen.export=EXPORTOVAT # @@ -2791,7 +2795,13 @@ edu.templates.empty_banner=Šablony světů můžete získat z knihovny Minecraf edu.pause.multiplayer.disabled=V této lekci není hra pro více hráčů podporována. # effect.badOmen=Špatné znamení # +effect.infested=Ukrývající rybenku # +effect.oozing=Vytékající # +effect.raid_omen=Znamení nájezdu # +effect.trial_omen=Zkušební věštba # effect.villageHero=Hrdina vesnice # +effect.weaving=Tkaní # +effect.wind_charged=Větrem nabitý # enchantment.arrowDamage=Síla # enchantment.arrowFire=Plamen # @@ -2810,6 +2820,9 @@ enchantment.durability=Nezlomnost # enchantment.fire=Ohnivý aspekt # enchantment.fishingSpeed=Návnada # enchantment.frostwalker=Ledový chodec # +enchantment.heavy_weapon.breach=Porušení # +enchantment.heavy_weapon.density=Hustota # +enchantment.heavy_weapon.windburst=Větrný výbuch # enchantment.knockback=Odražení # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=Netopýr # entity.bee.name=Včela # entity.blaze.name=Ohnivec # entity.boat.name=Člun # +entity.bogged.name=Močálový kostlivec # +entity.breeze.name=Vánek # +entity.breeze_wind_charge_projectile.name=Větrný náboj # entity.cat.name=Kočka # entity.cave_spider.name=Jeskynní pavouk # entity.chicken.name=Slepice # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=Nevyučený vesničan # entity.villager_v2.name=Vesničan # entity.vindicator.name=Mstitel # entity.wandering_trader.name=Potulný obchodník # +entity.wind_charge_projectile.name=Větrný náboj # entity.witch.name=Čarodějnice # entity.wither.name=Pakostnice # entity.wither_skeleton.name=Pakostlivec # @@ -3009,6 +3026,7 @@ feature.ruins=Ruiny v oceánu # feature.pillager_outpost=Posádka plenitelů # feature.bastion_remnant=Pozůstatek citadely # feature.ruined_portal=Zničený portál # +feature.trial_chambers=Zkušební komory # feed.like=Líbí se # feed.manage_feed=Spravovat informační kanál # @@ -3035,7 +3053,7 @@ feed.upload=Vaše obrazovka se nahrává... # feed.manage=Spravovat informační kanál # feed.share=Sdílet # feed.addScreenshot=Přidat snímek obrazovky # -feed.shareScreenshot=Zachycený snímek obrazovky. Chcete-li jej sdílet, přejděte na stránku příběhů Realms. # +feed.shareScreenshot=Zachycený snímek obrazovky. Chcete-li jej sdílet, přejděte na Realms Stories. # feed.comments=Komentáře # feed.edit=Změnit # feed.screenshots=Snímky obrazovky # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=Pomocí :tip_left_stick: se můžete pohybovat gameTip.flying.mouse=Dvakrát klepněte :_input_key.jump: abyste vzlétli # gameTip.flying.touch=Pro vzlétnutí dvakrát klepněte na tlačítko skoku # +gameTip.flyDown.mouse=Stisknutím :_input_key.sneak: poletíte směrem dolů # +gameTip.flyUp.mouse=Stisknutím :_input_key.jump: poletíte směrem nahoru # + +gameTip.stopFlying.mouse=Dvojitým stisknutím :_input_key.jump: létání zastavíte # +gameTip.stopFlying.touch=Dvakrát stiskněte tlačítko pro let směrem dolů k zastavení letu # + gameTip.jump.mouse=Skákejte pomocí :_input_key.jump: # +gameTip.swim.mouse=Stisknutím a podržením :_input_key.jump: poplavete směrem nahoru # -gameTip.hotbar.mouse=Posunutím kolečka myši vyberete # v rychlém panelu a podržte jej. # -gameTip.hotbar.touch=Klepnutím na # v rychlém panelu ho podržíte. # -gameTip.hotbar.controller=Klepnutím na # v rychlém panelu ho podržíte. # +gameTip.hotbar.selection.mouse=Rolujte nebo stiskněte %s k uchopení předmětu ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=Klikněte na předmět v rychlé nabídce pro jeho uchopení # gameTip.breakBlock.mouse=Podržením levého tlačítka myši bloky rozbijete # gameTip.breakBlock.touch=Klepnutím a podržením rozbijete bloky. # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=Plížíte se! Teď už nemůžete spadnout z okrajů # gameTip.sneak.touch=Plížíte se, takže nemůžete spadnout z okrajů # gameTip.sneak.controller=Plížíte se, takže nemůžete spadnout z okrajů # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=Umístěte svůj pracovní stůl. Podržte ho a klikněte pro umístění. # gameTip.placeCraftingTable.touch=Umístěte svůj pracovní stůl klepnutím na zem. # gameTip.placeCraftingTable.controller=Umístěte si pracovní stůl, podržte ho a klepněte na zem. # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=Děkujeme za sdílení vaší recenze! # gui.submitFeedback.failure.status.unprocessableEntity=Tuto položku, ke které se pokoušíte poskytnout zpětnou vazbu, nevlastníte. (Kód chyby: %d) # gui.submitFeedback.failure.status.tooManyRequests=Ale ne! Odeslali jste příliš mnoho recenzí, zkuste to prosím později. (Kód chyby: %d) # gui.submitFeedback.failure.status.other=V tuto chvíli nelze recenzi odeslat, zkuste to prosím znovu později. (Kód chyby: %d) # +gui.togglable_slot=Stisknutím tlačítka deaktivujete slot # gui.playOffline=Hrát offline # gui.signIn=Přihlásit se # gui.genericNetworkError=Něco se pokazilo. Zkontrolujte si připojení k internetu. # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=Prozkoumejte svět plný možností s Minecoins: Hern howtoplay.minecoins.text.2=Jakmile je uplatníte, vaše Minecoins jsou přiřazeny k vašemu účtu Microsoft, abyste měli přístup k vašim mincím a zakoupeným položkám i na ostatních podporovaných zařízeních! # howtoplay.minecoins.button.text.1=Získat mince # howtoplay.minecoins.header.1=Prohlášení # -howtoplay.minecoins.text.3=*Minecoins vyžadují verzi hry Minecraft: Bedrock Edition s Minecraft Marketplace. Minecoins nejsou kompatibilní na konzoli Sony Playstation. Pro informace ohledně kompatibility navštivte minecraft.net/minecoins  # +howtoplay.minecoins.text.3=*Minecoins vyžadují verzi Minecraftu: Bedrock edition s Minecraft Marketplace. Minecoins nejsou kompatibilní se systémem Sony PlayStation®. Pro informace o kompatibilitě navštivte minecraft.net/minecoins  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=Těžba # @@ -3949,18 +3974,18 @@ howtoplay.redstone.text.3=Umístěte ruditový prášek vedle zdroje napájení. howtoplay.redstone.text.4=K dispozici je mnoho předmětů, které používají ke své činnosti ruditový signál (např. násypka nebo píst). # howtoplay.redstone.text.5=Rudit přináší neomezené možnosti! Zkuste si vytvořit něco užitečného, třeba automatickou farmu! # -howtoplay.realms_stories=Příběhy Realms # +howtoplay.realms_stories=Realms Stories # howtoplay.realms_stories.text.1=Společenské centrum pro vás a všechny členy říše. Podělte se o svá dobrodružství a výtvory zveřejněním příběhů v kanálu příběhů, lajkujte a komentujte příběhy zveřejněné ostatními členy. # howtoplay.realms_stories.header.1=Vyprávějte svůj příběh # howtoplay.realms_stories.text.2=Kliknutím na tlačítko PŘIDAT PŘÍBĚH v kanálu příběhů můžete napsat vlastní příběh. Můžete si vybrat, zda chcete připojit snímek obrazovky nebo text (nebo obojí!). Kliknutím na tlačítko POSLAT zveřejníte svůj text/snímek obrazovky v kanálu příběhů, aby se jím mohli pokochat všichni členové říše. Pokud nemáte žádný snímek obrazovky, který byste mohli zveřejnit, použijte §ekameru§f:camera: v menu hry a zachyťte daný okamžik. # howtoplay.realms_stories.header.2=Zůstat v obraze # -howtoplay.realms_stories.text.3=Kdykoli se v kanálu objeví nový příběh, který jste ještě nečetli, objeví se na tlačítku PŘÍBĚHY REALMS číslo. Vždy se tak dozvíte, kdy se objeví něco nového ke čtení z komunity vaší říše. Pokud se vám líbí, co někdo sdílel, klidně mu nechte lajk nebo komentář k jeho příběhu! # +howtoplay.realms_stories.text.3=Kdykoli se v kanálu objeví nový příběh, který jste ještě nečetli, objeví se na tlačítku REALMS STORIES číslo. Vždy se tak dozvíte, kdy se objeví něco nového ke čtení z komunity vašeho Realmu. Pokud se vám líbí, co někdo sdílel, klidně mu nechte lajk nebo komentář k jeho příběhu! # howtoplay.realms_stories.header.3=Uspořádat hru # howtoplay.realms_stories.text.4=Na časové ose se podívejte, kdo a kdy hraje. Projděte si členy Realmu a podívejte se, kdy hráli naposledy a s kým hráli. Pomocí těchto informací můžete nastavit časy, kdy můžete hrát všichni společně. # howtoplay.realms_stories.header.4=Poznejte, kdo je v Realmu # -howtoplay.realms_stories.text.5=Na kartě členové se dozvíte, kdo je členem Realmu. Je to seznam všech hráčů, kteří zde mohou hrát. Můžete se podívat, kdo je majitelem Realmu, kdo jsou její provozovatelé a kdo se připojil k příběhům Realmu pro tento Realm. K dispozici jsou možnosti vyhledávání, třídění a filtrování, které vám pomohou najít přesně toho, koho hledáte. # +howtoplay.realms_stories.text.5=Na kartě Členové se dozvíte, kdo je členem Realmu. Je to seznam všech hráčů, kteří zde mohou hrát. Můžete se podívat, kdo je majitelem Realmu, kdo jsou jeho provozovatelé a kdo se připojil k Realms Stories pro tento Realm. K dispozici jsou možnosti vyhledávání, třídění a filtrování, které vám pomohou najít přesně toho, koho hledáte. # howtoplay.realms_stories.header.5=Připojte se odkudkoli # -howtoplay.realms_stories.text.6=Příběhy Realms jsou k dispozici v nabídce hry při hraní v Realmu a na kartě Realms. Můžete tak mít aktuální informace a vyprávět svůj příběh odkudkoli, i když zrovna nehrajete. Z konzole, počítače i mobilního zařízení jsou příbehy Realms dostupné všude. # +howtoplay.realms_stories.text.6=Realms Stories jsou k dispozici v nabídce hry při hraní v Realmu a na kartě Realms. Můžete tak mít aktuální informace a vyprávět svůj příběh odkudkoli, i když zrovna nehrajete. Z konzole, počítače i mobilního zařízení jsou Realms Stories dostupné všude. # howtoplay.scaffolding=Lešení # @@ -4145,7 +4170,7 @@ level.editor.export.failed=Export projektu se nezdařil # level.editor.import.failed=Import projektu se nezdařil # level.editor.import.failed.incompatibleEdition=Import projektu se nezdařil: nepodporovaný formát souboru # -inbox.invite.title=Pozvánka služby Realms # +inbox.invite.title=Pozvánka do Realmu pro # invite.clear=Vymazat výběr # invite.send=Odeslat %d pozvánek # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=Červený dělený převrácený diagonální item.banner.diagonal_up_right.silver=Světle šedý dělený převrácený diagonální pruh zprava doleva # item.banner.diagonal_up_right.white=Bílý dělený převrácený diagonální pruh zprava doleva # item.banner.diagonal_up_right.yellow=Žlutý dělený převrácený diagonální pruh zprava doleva # +item.banner.flow.black=Černý tok # +item.banner.flow.blue=Modrý tok # +item.banner.flow.brown=Hnědý tok # +item.banner.flow.cyan=Azurový tok # +item.banner.flow.gray=Šedý tok # +item.banner.flow.green=Zelený tok # +item.banner.flow.lightBlue=Světle modrý tok # +item.banner.flow.lime=Limetkový tok # +item.banner.flow.magenta=Purpurový tok # +item.banner.flow.orange=Oranžový tok # +item.banner.flow.pink=Růžový tok # +item.banner.flow.purple=Fialový tok # +item.banner.flow.red=Červený tok # +item.banner.flow.silver=Světle šedý tok # +item.banner.flow.white=Bílý tok # +item.banner.flow.yellow=Žlutý tok # item.banner.flower.black=Černý emblém květiny # item.banner.flower.blue=Modrý emblém květiny # item.banner.flower.brown=Hnědý emblém květiny # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=Bílý dolní přechod # item.banner.gradient_up.yellow=Žlutý dolní přechod # item.banner.gray.name=Šedá vlajka # item.banner.green.name=Zelená vlajka # +item.banner.guster.black=Černý Guster # +item.banner.guster.blue=Modrý Guster # +item.banner.guster.brown=Hnědý Guster # +item.banner.guster.cyan=Azurový Guster # +item.banner.guster.gray=Šedý Guster # +item.banner.guster.green=Zelený Guster # +item.banner.guster.lightBlue=Světle modrý Guster # +item.banner.guster.lime=Limetkový Guster # +item.banner.guster.magenta=Purpurový Guster # +item.banner.guster.orange=Oranžový Guster # +item.banner.guster.pink=Růžový Guster # +item.banner.guster.purple=Fialový Guster # +item.banner.guster.red=Červený Guster # +item.banner.guster.silver=Světle šedý Guster # +item.banner.guster.white=Bílý Guster # +item.banner.guster.yellow=Žlutý Guster # item.banner.half_horizontal.black=Černé vodorovné oddělení # item.banner.half_horizontal.blue=Modré vodorovné oddělení # item.banner.half_horizontal.brown=Hnědé vodorovné oddělení # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=Akáciový člun # item.boat.big_oak.name=Člun z tmavého dubu # item.bone.name=Kost # item.book.name=Kniha # +item.breeze_rod.name=Větrná tyč # item.chainmail_boots.name=Kroužkové boty # item.leather_boots.name=Kožené boty # item.diamond_boots.name=Diamantové boty # @@ -4991,6 +5049,7 @@ item.comparator.name=Ruditový porovnávač # item.compass.name=Kompas # item.lodestonecompass.name=Magnetický kompas # item.cookie.name=Sušenka # +item.copper_door.name=Měděné dveře # item.crossbow.name=Samostříl # item.diamond.name=Diamant # item.repeater.name=Ruditový opakovač # @@ -5038,6 +5097,7 @@ tile.end_rod.name=Endový prut # item.ender_eye.name=Oko z enderu # item.ender_pearl.name=Perla z enderu # item.experience_bottle.name=Čarovná láhev # +item.exposed_copper_door.name=Odhalené měděné dveře # item.feather.name=Pírko # item.fermented_spider_eye.name=Fermentované pavoučí oko # item.fireball.name=Ohnivý výboj # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=Zlaté nohavice # item.iron_leggings.name=Železné nohavice # item.nautilus_shell.name=Ulita loděnky # item.heart_of_the_sea.name=Srdce moře # +item.mace.name=Palcát # item.magma_cream.name=Lávová pěna # item.map.name=Mapa # item.map.exploration.mansion.name=Mapa pro průzkum lesů # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=Mapa vesnice v savaně # item.map.exploration.village_desert.name=Mapa pouštní vesnice # item.map.exploration.jungle_temple.name=Mapa pro průzkum džungle # item.map.exploration.swamp_hut.name=Mapa pro průzkum bažin # +item.map.exploration.trial_chambers.name=Zkušební verze mapy pro průzkum # item.melon.name=Meloun # item.milk.name=Mléko # item.minecart.name=Vozík # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=Vozík s truhlou # item.command_block_minecart.name=Vozík s příkazovým blokem # item.minecartFurnace.name=Vozík s pecí # item.hopper_minecart.name=Vozík s násypkou # +item.ominous_bottle.name=Zlověstná láhev # +item.ominous_trial_key.name=Zlověstný zkušební klíč # +item.oxidized_copper_door.name=Oxidované měděné dveře # item.tnt_minecart.name=Vozík s TNT # item.pitcher_pod.name=Semínko láčkovky # item.torchflower_seeds.name=Semena zázvoru # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=Vejce agente # item.spawn_egg.entity.armadillo.name=Vejce pásovce # item.spawn_egg.entity.axolotl.name=Vejce axolotla # item.spawn_egg.entity.bee.name=Vejce včely # +item.spawn_egg.entity.bogged.name=Vejce bažiňáka # +item.spawn_egg.entity.breeze.name=Vejce meluzíny # item.spawn_egg.entity.hoglin.name=Vejce hoglina # item.spawn_egg.entity.cat.name=Vejce kočky # item.spawn_egg.entity.chicken.name=Vejce slepice # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 – sbor # item.record_pigstep.desc=Lena Raine – Pigstep # item.record_otherside.desc=Lena Raine – otherside # item.record_relic.desc=Aaron Cherof - Relic # +item.record_creator.desc=Lena Raine - Tvůrce # +item.record_creator_music_box.desc=Lena Raine - Tvůrce (hrací skříňka) # +item.record_precipice.desc=Aaron Cherof - Propast # item.redstone.name=Ruditový prášek # item.reeds.name=Cukrová třtina # item.kelp.name=Chaluha # @@ -5324,6 +5394,12 @@ item.iron_sword.name=Železný meč # item.stone_sword.name=Kamenný meč # item.wooden_sword.name=Dřevěný meč # item.unbreakable=Nezničitelný # +item.waxed_copper_door.name=Voskované měděné dveře # +item.waxed_exposed_copper_door.name=Voskované odhalené měděné dveře # +item.waxed_oxidized_copper_door.name=Voskované oxidované měděné dveře # +item.waxed_weathered_copper_door.name=Voskované zvětralé měděné dveře # +item.weathered_copper_door.name=Zvětralé měděné dveře # +item.wind_charge.name=Větrný náboj # item.wheat.name=Pšenice # item.wolf_armor.name=Vlčí zbroj # item.writable_book.name=Kniha a brk # @@ -5331,6 +5407,7 @@ item.written_book.name=Psaná kniha # item.glowstone_dust.name=Světlitový prášek # item.shulker_shell.name=Krunýř krabicovce # item.totem.name=Totem nesmrtelnosti # +item.trial_key.name=Zkušební klíč # item.turtle_helmet.name=Želví krunýř # item.turtle_shell_piece.name=Želví šupina # item.phantom_membrane.name=Membrána fantoma # @@ -5338,8 +5415,10 @@ item.sweet_berries.name=Sladké bobule # item.suspicious_stew.name=Podezřelý guláš # item.banner_pattern.bricks=Cihlové pole # item.banner_pattern.creeper=Emblém plíživce # +item.banner_pattern.flow=Tok # item.banner_pattern.flower=Emblém květiny # item.banner_pattern.globe=Zeměkoule # +item.banner_pattern.guster=Guster # item.banner_pattern.name=Vzor na vlajce # item.banner_pattern.piglin=Rypák # item.banner_pattern.skull=Emblém lebky # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=Vzory na vlajce # itemGroup.name.netherWartBlock=Netheritové bradavičníky # itemGroup.name.candles=Svíčky # itemGroup.name.goatHorn=Kozí rohy # +itemGroup.name.compounds=Sloučeniny # +itemGroup.name.products=Produkty # jigsaw.title.target_pool=Cílová zásoba: # jigsaw.title.name=Název: # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=NASTAVENÍ UČEBNY # menu.serverStore=Obchod %s # menu.serverGenericName=Server # menu.play=Hrát # +menu.profile=Profil # menu.playdemo=Hrát ukázkový svět # menu.playOnRealms=Hrát v říši # menu.quickplay=Rychlá hra # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=Vyberte si svou počáteční postavu # menu.character_cast.preview_title=Seznamte se postavami! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Server Realms ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=Servery # merchant.deprecated=K odemčení vyměňte něco jiného! # @@ -6135,7 +6218,7 @@ options.dev_realmsEndpoint=Koncový bod Realms # options.dev_realmsEndpointPayment=Platba koncového bodu Realms # options.dev_realmsRelyingParty=Předávající strana Realms # options.dev_realmsRelyingPartyPayment=Platba předávající strany Realms # -options.dev_realms_stories=Povolit Realms příběhy # +options.dev_realms_stories=Povolit Realms Stories # options.dev_overrideXboxEnvironmentWindows=Přepsat sandbox pro Xbox (operační systém ovládaný ve Windows) # options.dev_overrideXboxEnvironment=Přepsat sandbox pro Xbox (vyžaduje restartování) # options.dev_xboxEnvironment=Prostředí sandboxu pro Xbox (vyžaduje restartování) # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=Hra na celé klávesnici # options.fullKeyboardLayout=Rozložení celé klávesnice # options.improvedInputResponsePlaceholder=Vylepšená odpověď na vstup # options.improvedInputResponsePlaceholder.tooltip=Sníží prodlevu mezi vaším vstupem a tím, co uvidíte na obrazovce. Toto nastavení může spotřebovat víc energie z baterie. # +options.dynamicTexturesToggle=Odebrat Limit textur # +options.dynamicTexturesToggle.tooltip=Přepnutí z tohoto zapnutí na vypnuto bude vyžadovat restart hry. Může způsobit nestabilitu při použití více doplňků nebo balíčků zdrojů s mnoha texturami. # +options.dynamicTextures.popUp=Pokud zapnete možnost Odstranit limit textury, budete muset hru restartovat, abyste ji vypnuli. # +options.dynamicTextures.popUp.title=Opravdu? # options.fullscreen=Celá obrazovka # options.gamepadcursorsensitivity=Citlivost kurzoru ovladače # options.gamertag=Jmenovka hráče: # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=Připojit # options.creator.debuggerListen=Poslouchej # options.creator.debuggerHost=Zakládající hráč # options.creator.debuggerPort=Port # +options.creator.watchdogHeading=Nastavení hlídacího psa skriptů # +options.creator.watchdogSlowWarning=Upozornění na pomalé skripty # +options.creator.watchdogSlowThreshold=Průměr překračuje # +options.creator.watchdogSlowFormat=%s milisekund # +options.creator.watchdogSlowFormatDefault=%s milisekund (výchozí) # +options.creator.watchdogSpikeWarning=Upozornění na špičku skriptů # +options.creator.watchdogSpikeThreshold=Špička překračuje # +options.creator.watchdogSpikeFormat=%s milisekund # +options.creator.watchdogSpikeFormatDefault=%s milisekund (výchozí) # +options.creator.watchdogHangThreshold=Přerušit po # +options.creator.watchdogHangFormat=%s sekund # +options.creator.watchdogHangFormatDefault=%s sekund (výchozí) # options.vr_classic_box_selection=Označit výběr # options.hidegamepadcursor=Skrýt kurzor ovladače # options.hidegui=Skrýt grafické rozhraní # @@ -6662,7 +6761,7 @@ options.makeBackup=Vytvořit záložní kopii mého světa # options.managePrivacy=Nastavení soukromí můžete spravovat na adrese https://account.xbox.com/Settings v libovolném prohlížeči. ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Zrušit propojení účtu Microsoft # options.unlink_msa.confirm.title=Zrušit propojení účtu Microsoft? # -options.unlink_msa.confirm.warning=VAROVÁNÍ: Po zrušení propojení už ve svém účtu %s nebudete moci ukládat svůj postup ani nákupy provedené v systému „PlayStation 4“. # +options.unlink_msa.confirm.warning=VAROVÁNÍ: Po zrušení propojení účtu %s už na něm nebudete moci uchovávat postup ve hře či položky zakoupené v systému PlayStation®4. #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=Zrušení propojení účtu Microsoft s touto hrou bude mít vliv na všechny hry Minecraft na této platformě, které tento účet Microsoft používaly. # options.unlink_msa.confirm.checkbox1=Při hře na jiných platformách už nebudu mít přístup k obsahu herního obchodu. # options.unlink_msa.confirm.checkbox2=Už nebudu moct hrát s přáteli na jiných platformách. # @@ -6688,7 +6787,7 @@ options.editor.modeDescription.messageWithMouse=Režim editoru přidává výkon options.editor.modeActive=Minecraft je momentálně v režimu editoru. # options.editor.modeNotActive=Minecraft momentálně není v režimu editoru. # options.editor.achievementsDisabled=V tomto projektu nelze získávat herní úspěchy. # -options.newUiPlayScreen.initiate=Přepnout na nové uživatelské rozhraní # +options.newUiPlayScreen.initiate=Přepnout na nové UI # options.openPage.continue=Další informace # options.graphicsMode=Grafický režim # options.graphicsMode.simple=Prosté # @@ -6775,7 +6874,7 @@ sunsetting.store.incompatible=Nekompatibilní # sunsetting.store.incompatiblePopup=Tento obsah není kompatibilní s vaším zařízením. Podívejte se na stránku https://aka.ms/MinecraftSunsetting. # pauseScreen.back=Zpět ke hře # -pauseScreen.realmsStories=Příběhy Realms # +pauseScreen.realmsStories=Realms Stories # pauseScreen.currentWorld=Aktuální svět # pauseScreen.header=Herní nabídka # pauseScreen.options=Možnosti # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=Načíst svět k upravení ovládání # hudScreen.controlCustomization.tooltip.notouch=Upravit ovládání pomocí dotykového zařízení # hudScreen.controlCustomization.tooltip.alreadycustomizing=Obrazovka přizpůsobení dotykového ovládání je otevřená # hudScreen.controlCustomization.tooltip.alive=Hráč musí být naživu, aby si mohl přizpůsobit ovládání. # +hudScreen.daysPlayed=Odehrané dny: %s # +hudScreen.daysPlayed.overflow=Nespočet! # playscreen.fileSize.MB=MB # playscreen.fileSize.GB=GB # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=Vrhací lektvar zdraví # potion.heal.linger.name=Lektvar zdraví s místním účinkem # potion.healthBoost=Posílení zdraví # potion.hunger=Hlad # +potion.infested.linger.name=Lektvar zamoření s místním účinkem # +potion.infested.name=Lektvar zamoření # +potion.infested.splash.name=Vrhací lektvar zamoření # +potion.infested=Ukrývající rybenku # potion.invisibility=Neviditelnost # potion.invisibility.name=Lektvar neviditelnosti # potion.invisibility.splash.name=Vrhací lektvar neviditelnosti # @@ -7067,6 +7172,10 @@ potion.nightVision=Noční vidění # potion.nightVision.name=Lektvar nočního vidění # potion.nightVision.splash.name=Vrhací lektvar nočního vidění # potion.nightVision.linger.name=Lektvar nočního vidění s místním účinkem # +potion.oozing.linger.name=Lektvar vytékání s místním účinkem # +potion.oozing.name=Lektvar vytékání # +potion.oozing.splash.name=Vrhací lektvar vytékání # +potion.oozing=Vytékající # potion.poison=Jed # potion.poison.name=Jedovatý lektvar # potion.poison.splash.name=Vrhací lektvar otravy # @@ -7108,6 +7217,14 @@ potion.weakness=Slabost # potion.weakness.name=Lektvar slabosti # potion.weakness.splash.name=Vrhací lektvar oslabení # potion.weakness.linger.name=Lektvar oslabení s místním účinkem # +potion.weaving.linger.name=Lektvar tkaní s místním účinkem # +potion.weaving.name=Lektvar tkaní # +potion.weaving.splash.name=Vrhací lektvar tkaní # +potion.weaving=Tkaní # +potion.windCharged.linger.name=Lektvar s místním účinkem větrného nabíjení # +potion.windCharged.name=Lektvar větrného nabíjení # +potion.windCharged.splash.name=Vrhací lektvar větrného nabíjení # +potion.windCharged=Větrem nabitý # potion.wither=Pakostnice # potion.wither.name=Lektvar rozkladu # potion.wither.splash.name=Vrhací lektvar rozkladu # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=Tento svět nelze otevřít kvůli pr progressScreen.message.forbiddenContent=Nevlastníte jednu nebo více aplikovaných sad # progressScreen.message.loadingSplitScreenAppearances=Načítání vzhledů rozdělené obrazovky... # progressScreen.message.finishedLoadingSplitScreenAppearances=Dokončeno načítání vzhledů rozdělené obrazovky. # -progressScreen.message.modifiedWorldWarning=Tento svět nemusí vypadat nebo se chovat stejně jako neupravené světy a nemůžete v něm získat úspěchy. # +progressScreen.message.modifiedWorldWarning.1=Hrajete ve světě, který obsahuje doplňky! To přidá nové funkce do vašeho Minecraft světa. # +progressScreen.message.modifiedWorldWarning.2=Nezůstávejte pouze u jednoho! Můžete načíst několik doplňků do jednoho světa najednou. # +progressScreen.message.modifiedWorldWarning.3=Pokročilý tip: Balíček zdrojů může změnit textury různých bloků a entit. # +progressScreen.message.modifiedWorldWarning.4=Pokročilý tip: Balíček chování může změnit, jak se různé předměty, entity nebo bloky chovají. # +progressScreen.message.modifiedWorldWarning.5=Pokročilý tip: Doplněk obsahuje jak balíček chování, tak balíček zdrojů. Ujistěte se, že jsou oba balíčky aktivované, abyste měli jistotu, že doplněk funguje! # +progressScreen.message.modifiedWorldWarning.6=Doplňky přináší nové bloky, předměty nebo stvoření do vašich světů. # +progressScreen.message.modifiedWorldWarning.7=Světy a doplňky jsou komplexní! Zatímco některé spolu fungují skvěle, u jiných může tato kombinace lehce zlobit. # +progressScreen.message.modifiedWorldWarning.8=Více doplňků znamená více zábavy, ale hře pak může trvat déle, než se načte. # progressScreen.dialog.title.resourcePack=Stáhnout balíčky zdrojů? # progressScreen.dialog.title.behaviorAndResourcePack=Stáhnout balíčky chování a zdrojů světa? # progressScreen.dialog.title.onlyBehavior=Stáhnout balíčky chování světa? # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=Aktualizovat svět? # resourcePack.warning.add.body=Tento svět nemusí vypadat a fungovat stejně jako nemodifikované světy. Než budete pokračovat, měli byste si uložit kopii stávajícího světa. # resourcePack.warning.add.button.cancel=Nepřidávat balíček # resourcePack.warning.add.button.ok=Přesto přidat balíček # +resourcePack.warnings.contentKeyErrorBody=Při načítání sady %s došlo k chybě. # +resourcePack.warnings.contentKeyErrorBodyMultiple=Při načítání sad %s došlo k chybě. # +resourcePack.warnings.contentKeyErrorTitle=Chyba! # resourcePack.warning.remove.title=Toto je nebezpečné! # resourcePack.warning.remove.body=Přidávání či odebírání sad po hraní v určitém světě může daný svět poškodit a způsobit ztrátu toho, co jste již vytvořili. # resourcePack.warning.remove.button.cancel=Ponechat balíček # @@ -7557,7 +7684,9 @@ item.crimson_hanging_sign.name=Karmínová závěsná cedule # item.danger_pottery_sherd.name=Keramický střep Nebezpečí # item.dark_oak_hanging_sign.name=Závěsná cedule z tmavého dubu # item.explorer_pottery_sherd.name=Keramický střep Průzkumník # +item.flow_pottery_sherd.name=Keramický střep Tok # item.friend_pottery_sherd.name=Keramický střep Přítel # +item.guster_pottery_sherd.name=Keramický střep Námaha # item.heart_pottery_sherd.name=Keramický střep Srdce # item.heartbreak_pottery_sherd.name=Keramický střep Zlomené srdce # item.howl_pottery_sherd.name=Keramický střep Vytí # @@ -7568,6 +7697,7 @@ item.mourner_pottery_sherd.name=Keramický střep Truchlící # item.oak_hanging_sign.name=Dubová závěsná cedule # item.plenty_pottery_sherd.name=Keramické střepy Hojnost # item.prize_pottery_sherd.name=Keramický střep Diamant # +item.scrape_pottery_sherd.name=Keramický střep Zbytky # item.sheaf_pottery_sherd.name=Keramický střep Snop # item.shelter_pottery_sherd.name=Keramický střep Přístřešek # item.skull_pottery_sherd.name=Keramický střep Lebka # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=Třešňové schody # tile.cherry_trapdoor.name=Třešňové padací dveře # tile.cherry_wood.name=Třešňové dřevo # tile.chiseled_bookshelf.name=Opracovaná knihovna # +tile.chiseled_tuff.name=Tesaný tuf # +tile.chiseled_tuff_bricks.name=Tesané tufové cihly # tile.decorated_pot.name=Zdobený hrnec # tile.pink_petals.name=Růžové okvětní lístky # tile.stripped_bamboo_block.name=Holý blok bambusu # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=Vzor zbroje otrapy # trim_pattern.ward.name=Vzor ochranné zbroje # trim_pattern.wayfinder.name=Vzor zbroje Wayfinder # trim_pattern.wild.name=Vzor divoké zbroje # +trim_pattern.bolt.name=Lem bleskového brnění # +trim_pattern.flow.name=Lem průtokového brnění # upgrade.netherite_upgrade.name=Vylepšení na netherit # storageManager.mainSizeLabel=%s – 1 položka # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=Odstranit šablonu světa? # selectTemplate.delete=Odstranit # selectTemplate.myTemplates=Moje šablony světů # selectTemplate.realmsPlus=Oblíbené šablony Realms Plus # -selectTemplate.marketplacePass=Oblíbené šablony z obchodu Marketplace Pass #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=Vybraný obsah z Marketplace Pass #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=Importované šablony # selectTemplate.download=Stáhnout # selectTemplate.noTemplates=Na tomto zařízení nejsou žádné šablony světů. # -selectTemplate.suggestedContent.title=Oblíbené šablony z obchodu Marketplace # +selectTemplate.suggestedContent.title=Vybraný obsah z Marketplace # selectTemplate.suggestedContent.button=Prohlédnout další šablony # selectTemplate.createdBy=Vytvořil(a) %s # selectTemplate.inventory=Moje balíčky z obchodu Marketplace # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=Došlo k problému při připojování. Vraťte s store.loading.error.issues=Hmm, obchod Marketplace má nějaké problémy. Zkuste se připojit později. # store.loading.error.internetDown=Nemůžeme najít připojení k internetu. # store.loading.error.account=Došlo k problému s vaším účtem. Zkuste to znovu a pokud bude problém přetrvávat, kontaktujte prosím podporu. # +store.loading.error.account.banned=Dokud pozastavení nevyprší, nemůžete tržiště používat. # store.giftPromo.day=Denní %s ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=Vyžádáno # @@ -8106,7 +8241,7 @@ store.realmsPlus.landing.info2.cancel=Zrušení na stránce Předplatné v Nasta store.realmsPlus.landing.info2.subscribe=Přihlaste se k odběru nyní za %s/měsíc. # store.realmsPlus.landing.info2.recentlyAdded=Nedávno přidáno # store.realmsPlus.landing.info2.persona=Předměty tvůrce postav zdarma - získejte novou sadu každý měsíc! # -store.realmsPlus.landing.info2.social=Zapojte se do dění s Realms příběhy # +store.realmsPlus.landing.info2.social=Zapojte se do dění s Realms Stories # store.realmsPlus.landing.beta=Beta verze # store.realmsPlus.landing.preview=Ukázková verze # @@ -8138,8 +8273,8 @@ store.realmsPlus.faq.question9=Co se stane s mými říšemi a světy po vyprše store.realmsPlus.faq.answer9=Pokud vaše předplatné skončí, nebudete moct vy ani vaši přátelé hrát společně online ve službě Realms a nebudete mít přístup k balíčkům ze služby Realms Plus. Budete moct stahovat světy uložené ve vaší říši ve službě Realms (ještě 18 měsíců po skončení předplatného). Pokud jste používali světy, balíčky textur nebo mash-upy ze služby Realms Plus, budete si je muset koupit v obchodě, případně pokud bude daný balíček stále dostupný v rámci služby Realms Plus, znovu objednat předplatné, abyste mohli hrát s těmito šablonami světů. # store.realmsPlus.faq.question10=Potřebuji předplatné Realms Plus i předplatné Marketplace Pass? # store.realmsPlus.faq.answer10=Ne. Předplatné Marketplace Pass je katalog více než 150+ balíčků, které si můžete užít. Realms Plus je pro 10 hráčů a zahrnuje i předplatné Marketplace Pass. Doporučujeme vybrat si předplatné, které vám více sedí. # -store.realmsPlus.faq.question11=Co jsou Realms příběhy? # -store.realmsPlus.faq.answer11=Příběhy Realms je místo pro interakci s ostatními hráči ve vašem Realmu. Přidávejte příspěvky na Zeď s příběhy, abyste dali ostatním vědět, co zrovna děláte, sdílejte svá dobrodružství a výtvory. Udělejte si přehled o hráčích s užitečným seznamem všech členů. Podívejte se, kdy hrají ostatní, abyste si prohlédli jejich výtvory, či se k nim mohli příště připojit. # +store.realmsPlus.faq.question11=Co jsou Realms Stories? # +store.realmsPlus.faq.answer11=Realms Stories je místo pro interakci s ostatními hráči ve vašem Realmu. Přidávejte příspěvky na Zeď s příběhy, abyste dali ostatním vědět, co zrovna děláte, sdílejte svá dobrodružství a výtvory. Udělejte si přehled o hráčích s užitečným seznamem všech členů. Podívejte se, kdy hrají ostatní, abyste si prohlédli jejich výtvory, či se k nim mohli příště připojit. # store.realmsPlus.content.marketplacePass=Realms Plus obsahuje předplatné Marketplace Pass! # store.realmsPlus.content.skinDescription=Změňte svůj vzhled pomocí skinů! # @@ -8409,6 +8544,13 @@ store.mashup.count.world=1 svět # store.mashup.count.worlds=%s světy #number of worlds # store.mashup.count.addonPack=1 Doplněk # store.mashup.count.addonPacks=Doplňků: %s #number of addons # +store.mashup.count.mashup=Mash-up # +store.mashup.hover.label.addonPack=Doplňky lze použít na libovolný svět. # +store.mashup.hover.label.world=Ručně vyrobená Minecraft mapa. # +store.mashup.hover.label.skin=Použijte nový vzhled na svou postavu. # +store.mashup.hover.label.texturePack=Dodejte nový vzhled svému světu nebo hernímu rozhraní. # +store.mashup.hover.label.mashup.lineOne=Kombinace různých druhů obsahu. # +store.mashup.hover.label.mashup.lineTwo=Tento Mash-Up obsahuje: # store.addon.activateAddonPack=Aktivovat doplněk! # store.addon.newOrExistingTitle=Kde je k přidání? # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=Tabule # tile.chest.name=Truhla # tile.ender_chest.name=Truhla z enderu # tile.jigsaw.name=Skládací blok # +tile.heavy_core.name=Těžký základ # tile.honey_block.name=Medový blok # tile.honeycomb_block.name=Blok medové plástve # tile.lodestone.name=Magnetovec # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=Panel z leštěného černovce # tile.polished_blackstone_pressure_plate.name=Nášlapná deska z leštěného černovce # tile.polished_blackstone_button.name=Tlačítko z leštěného černovce # tile.polished_blackstone_wall.name=Zeď z leštěného černovce # +tile.polished_tuff.name=Leštěný tuf # +tile.polished_tuff_slab.name=Panel z leštěného tufu # +tile.polished_tuff_stairs.name=Schody z leštěného tufu # +tile.polished_tuff_wall.name=Zeď z leštěného tufu # tile.soul_campfire.name=Spektrální táborák # tile.chiseled_nether_bricks.name=Opracované netheritové cihly # tile.cracked_nether_bricks.name=Popraskané netheritové cihly # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=Žlutá terakota # tile.structure_block.name=Blok budovy # structure_block.waterlog_block=Vodní bloky # tile.structure_void.name=Prázdná stavba # +tile.trial_spawner.name=Zkušební líheň # +tile.vault.name=Trezor # tile.wool.black.name=Černá vlna # tile.wool.blue.name=Modrá vlna # tile.wool.brown.name=Hnědá vlna # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=Kapradí # tile.tallgrass.grass.name=Tráva # tile.tallgrass.name=Tráva # tile.tallgrass.shrub.name=Křovina # +tile.tuff_brick_slab.name=Panel z tufových cihel # +tile.tuff_brick_stairs.name=Schody z tufových cihel # +tile.tuff_brick_wall.name=Zeď z tufových cihel # +tile.tuff_bricks.name=Tufové cihly # +tile.tuff_slab.name=Tufová deska # +tile.tuff_stairs.name=Tufové schody # +tile.tuff_wall.name=Tufová zeď # tile.seagrass.seagrass.name=Mořská tráva # tile.sea_pickle.name=Mořská okurka # tile.turtle_egg.name=Vejce mořské želvy # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=Červený koberec # tile.carpet.silver.name=Světle šedý koberec # tile.carpet.white.name=Bílý koberec # tile.carpet.yellow.name=Žlutý koberec # +tile.crafter.name=Řemeslník # tile.crafting_table.name=Pracovní stůl # tile.glazedTerracotta.white.name=Bílá glazovaná terakota # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=Voskovaný broušený měděný panel # tile.waxed_exposed_cut_copper_slab.name=Voskovaný odhalený broušený měděný panel # tile.waxed_weathered_cut_copper_slab.name=Voskovaný zvětralý broušený měděný panel # tile.waxed_oxidized_cut_copper_slab.name=Voskovaný oxidovaný broušený měděný panel # + +tile.chiseled_copper.name=Tepaná měď # +tile.exposed_chiseled_copper.name=Odhalená měděná deska # +tile.oxidized_chiseled_copper.name=Oxidovaná tepaná měď # +tile.waxed_chiseled_copper.name=Voskovaná tepaná měď # +tile.waxed_exposed_chiseled_copper.name=Voskovaná odhalená tepaná měď # +tile.waxed_oxidized_chiseled_copper.name=Voskovaná oxidovaná tepaná měď # +tile.waxed_weathered_chiseled_copper.name=Voskovaná zvětralá tepaná měď # +tile.weathered_chiseled_copper.name=Zvětralá tepaná měď # + +tile.copper_bulb.name=Měděná žárovka # +tile.exposed_copper_bulb.name=Odhalená měděná žárovka # +tile.oxidized_copper_bulb.name=Oxidovaná měděná žárovka # +tile.waxed_copper_bulb.name=Voskovaná měděná žárovka # +tile.waxed_exposed_copper_bulb.name=Voskovaná odhalená měděná žárovka # +tile.waxed_oxidized_copper_bulb.name=Voskovaná oxidovaná měděná žárovka # +tile.waxed_weathered_copper_bulb.name=Voskovaná zvětralá měděná žárovka # +tile.weathered_copper_bulb.name=Zvětralá měděná žárovka # + +tile.copper_door.name=Měděné dveře # +tile.exposed_copper_door.name=Odhalené měděné dveře # +tile.oxidized_copper_door.name=Oxidované měděné dveře # +tile.waxed_copper_door.name=Voskované měděné dveře # +tile.waxed_exposed_copper_door.name=Voskované odhalené měděné dveře # +tile.waxed_oxidized_copper_door.name=Voskované oxidované měděné dveře # +tile.waxed_weathered_copper_door.name=Voskované zvětralé měděné dveře # +tile.weathered_copper_door.name=Zvětralé měděné dveře # + +tile.copper_grate.name=Měděná bedna # +tile.exposed_copper_grate.name=Odhalená měděná bedna # +tile.oxidized_copper_grate.name=Oxidovaný měděný rošt # +tile.waxed_copper_grate.name=Voskovaný měděný rošt # +tile.waxed_exposed_copper_grate.name=Voskovaný odhalený měděný rošt # +tile.waxed_oxidized_copper_grate.name=Voskovaný oxidovaný měděný rošt # +tile.waxed_weathered_copper_grate.name=Voskovaný zvětralý měděný rošt # +tile.weathered_copper_grate.name=Zvětralý měděný rošt # + +tile.copper_trapdoor.name=Měděné padací dveře # +tile.exposed_copper_trapdoor.name=Odhalené měděné padací dveře # +tile.oxidized_copper_trapdoor.name=Oxidované měděné padací dveře # +tile.waxed_copper_trapdoor.name=Voskované měděné padací dveře # +tile.waxed_exposed_copper_trapdoor.name=Voskované odhalené měděné padací dveře # +tile.waxed_oxidized_copper_trapdoor.name=Voskované oxidované měděné padací dveře # +tile.waxed_weathered_copper_trapdoor.name=Voskované zvětralé měděné padací dveře # +tile.weathered_copper_trapdoor.name=Zvětralé měděné padací dveře # + tile.raw_copper_block.name=Blok surové mědi # tile.raw_iron_block.name=Blok surového železa # tile.raw_gold_block.name=Blok surového zlata # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=Šíp štěstí # tipped_arrow.effect.wither=Šíp rozkladu # tipped_arrow.effect.turtleMaster=Šíp želvího mistra # tipped_arrow.effect.slowFalling=Šíp pírka # +tipped_arrow.effect.infested=Šíp zamoření # +tipped_arrow.effect.oozing=Śíp vytékání # +tipped_arrow.effect.weaving=Šíp tkaní # +tipped_arrow.effect.windCharged=Šíp větrného nabíjení # structure_block.title=Blok budovy # structure_block.structure_name=Název budovy # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=Některé nejnověji provedené změny worldError.worldFailedRecovery=Obnovení se nezdařilo # worldError.worldFailedRecoveryText=Zjistili jsme poškozený svět a nepovedlo se nám ho obnovit. # +writeThrottling.osDialog.body=Požadována operace zabere přibližně %d minut k dokončení. Nevypínejte, prosím, během této doby své zařízení. # +writeThrottling.osDialog.cancel=Zrušit operaci # +writeThrottling.osDialog.confirm=Pokračovat # +writeThrottling.progressBar.title=Připravují se data # +writeThrottling.progressBar.body=Probíhá příprava vašich souborů… # + userData.recovered.title=Uložené hry byly obnoveny # userData.recovered.text=Povedlo se úspěšně obnovit poškozená uživatelská nastavení. # userData.recovered.warning=Některé nejnověji provedené změny mohly být během obnovení ztraceny. # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=Zpráva chatu # xbox.report.area.skin=Skin hráče # xbox.report.area.gameplay=Hraní hry # xbox.report.area.ingame=Herní výtvory # -xbox.report.area.other=Jiné # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=Kyberšikana # @@ -10389,12 +10601,12 @@ lategameTips.27=Diorit budete buď milovat, nebo nenávidět. # tips.realms.1=Udělejte snímek obrazovky pomocí herní nabídky. # tips.realms.2=Realm je vždy online, takže vy a vaši přátelé můžete hrát, kdykoli chcete. # -tips.realms.3=Sledujte aktuální dění ve své říši v kanálu příběhů v sekci Příběhy říše. # +tips.realms.3=Sledujte aktuální dění ve vašem Realmu v kanálu příběhů v Realms Stories. # tips.realms.4=Podělte se o své skvělé okamžiky s ostatními hráči v této říši přidáním příběhu do kanálu příběhů. # -tips.realms.5=Podívejte se na časovou osu v příbězích říše a zjistěte, kdy hrají ostatní. # -tips.realms.6=Přístup k příběhům říše získáte v menu hry během hraní v říši. # -tips.realms.7=Seznamte se s komunitou své říše na kartě Členové v příbězích říše. # -tips.realms.8=Pomocí příběhů říše se můžete zapojit do společenského života, sledovat pokrok svých přátel a organizovat si hraní. # +tips.realms.5=Podívejte se na časovou osu v Realms Stories a zjistěte, kdy hrají ostatní. # +tips.realms.6=Přístup k Realms Stories získáte v menu hry během hraní v Realmu. # +tips.realms.7=Seznamte se s komunitou svého Realmu na kartě Členové v Realms Stories. # +tips.realms.8=Pomocí Realms Stories se můžete zapojit do společenského života, sledovat pokrok svých přátel a organizovat si hraní. # splitscreen.joinPrompt=Připojit se jako hráč %s # splitscreen.unavailable.toastHeader=Rozdělená obrazovka není k dispozici # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=Bohužel se nám nepovedlo připojit. Zkus gathering.connect.title=Připojování… # gathering.info.qr.title.onlineService=Další informace # gathering.info.qr.body.onlineService.nso=Abyste se mohli připojit k události v Minecraftu, potřebujete členství Nintendo Switch Online. # -gathering.info.qr.body.onlineService.psn=Abyste se mohli připojit k události v Minecraftu, musíte být přihlášeni ke službě \"PlayStation Plus\". # +gathering.info.qr.body.onlineService.psn=Musíte být přihlášeni k předplatnému PlayStation®Plus, abyste se mohli připojit k události v Minecraftu. #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=Abyste se mohli připojit k události v Minecraftu, musíte být přihlášeni. # gathering.info.qr.title.childAccount=Online hraní není povoleno # gathering.info.qr.body.childAccount=Současné nastavení rodičovské kontroly omezuje vaše možnosti hraní online. # diff --git a/resource_pack/texts/da_DK.lang b/resource_pack/texts/da_DK.lang index d19dff5fc..8078f086e 100644 --- a/resource_pack/texts/da_DK.lang +++ b/resource_pack/texts/da_DK.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=Vælg frø # accessibility.start.feedback=Indsend feedbacklink til websitet # accessibility.start.new=Nyhed # -accessibility.start.profile=Vælg profil # accessibility.start.skinPicker=Vælg skin # accessibility.store.tag=Tag # @@ -1094,10 +1093,6 @@ commands.me.description=Viser en besked om dig selv. # commands.message.display.incoming=%1$s hvisker til dig: %2$s # commands.message.display.outgoing=Du hvisker til %1$s: %2$s # commands.message.sameTarget=Du kan ikke sende en privat besked til dig selv! # -commands.message.warn=§4Du har modtaget en advarsel. Din adfærd kan opfattes som stødende af andre spillere. Vær opmærksom på andre, du spiller med. # -commands.message.toastWarn=Minecraft er for alle! Sørg for at opføre dig i overensstemmelse med vores fællesskabsregler. # -commands.warn.invalidWarningLevel=Ugyldigt advarselsniveau. # -commands.warn.playerDoesNotExist=Kunne ikke finde spiller. Vælg en gyldig spiller. # commands.mobevent.description=Styrer, hvilke væsen-events der er tilladt at køre. # commands.mobevent.eventsEnabledSetToTrue=Væsen-events er nu aktiveret. Individuelle events, der er indstillet til falsk, kører ikke. # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=- %s: %s fra %d %d %d til %d %d %d # commands.volumearea.entry.withoutIdentifier=- %s: fra %d %d %d til %d %d %d # commands.volumearea.noneExist.currentDimension=Der er ingen volumener i den aktuelle dimension. # commands.volumearea.inUse=%1$d/%2$d volumener i brug. # -commands.warn.description=Sender en advarselsbesked til spiller. # commands.weather.clear=Skifter til skyfrit # commands.weather.description=Indstiller vejret. # commands.weather.disabled=Vejrcyklus er ikke aktiveret i denne verden. # @@ -1572,6 +1566,7 @@ container.beacon=Signallys # container.brewing=Bryggestand # container.chest=Kiste # container.chestDouble=Stor kiste # +container.crafter=Fremstiller # container.crafting=Fremstilling # container.creative=Genstandsvalg # container.dispenser=Automat # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=Caves and Cliffs # createWorldScreen.cavesandcliffsDescription=Udforsk den nye varierede hulegeneration # createWorldScreen.spectatorMode=Tilskuertilstand # createWorldScreen.spectatorModeDescription=Prøv de tidlige versioner af Tilskuertilstand # -createWorldScreen.experimentalCameras=Eksperimentelle kameraer # -createWorldScreen.experimentalCamerasDescription=Indeholder eksempel-kameraforudindstillinger (kamerakommandoen er ikke længere eksperimentel) # createWorldScreen.recipeUnlocking=Opskrift-oplåsning # createWorldScreen.recipeUnlockingDescription=Aktivér opskrift-oplåsning # createWorldScreen.experimentalholiday=Særlige funktioner til højtider # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=Opretter ny verden ... # createWorldScreen.progress.realms=Nulstiller realm ... # createWorldScreen.seed.desc=Angiv et frø for at danne det samme terræn igen. Du får en tilfældig verden, hvis du ikke angiver noget. # createWorldScreen.showCoordinates=Vis koordinater # +createWorldScreen.showDaysPlayed=Vis antal dage spillet # createWorldScreen.worldType=Verdenstype # createWorldScreen.randomtickspeed=Tilfældig tickhastighed # createWorldScreen.randomtickspeed.reset=Nulstil tilfældig tickhastighed # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=Slet projekt # createWorldScreen.editor.projectOptionsLabel=Projektindstillinger # createWorldScreen.editor.delete.confirm=Vil du slette dette projekt permanent? # createWorldScreen.editor.deleteWarningFormat=Er du sikker på, at du vil slette "%s"? Projektet forsvinder for altid! # +createWorldScreen.eduCloud.about.body=Filnavn: ''%1$s''%2$sSenest opdateret: %3$s%4$sKlik på OK og derefter på Download for at downloade.%5$s # +createWorldScreen.eduCloud.about.title=Om skyverdensfil # createWorldScreen.eduCloud.delete.confirm=Slet lokal verden? # createWorldScreen.eduCloud.deleteWarningFormat=Er du sikker på, at du vil slette ''%1$s'' på denne enhed?%2$sSkyversionen ''%3$s'' påvirkes ikke og kan gensynkroniseres senere. # createWorldScreen.experimentalDeferredTechnicalPreview=Vis dragefunktioner til udviklere # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Windows Store # realmsSettingsScreen.xboxOneStoreDisplayName=Xbox Store # realmsSettingsScreen.amazonStoreDisplayName=Amazon Appstore # realmsSettingsScreen.oculusStoreDisplayName=Oculus Store # -realmsSettingsScreen.berwickStoreDisplayName="PlayStation Store" # -realmsSettingsScreen.SonyStoreDisplayName=''PlayStation Store'' #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=en ukendt butik # realmsSettingsScreen.extendingRealm=Forlænger realm ... # realmsSettingsScreen.offerError.title=Afventende køb # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=Pakker, der er købt andre sted xbl.syncIAP.confirmSync.prompt.yes=Ja, synkroniser mine køb # xbl.marketplace.account.error.body.nobutton=Der er noget galt med din konto. Du kan ikke bruge markedspladsen, før vi har løst problemet. Kontakt support, hvis problemet ikke forsvinder i løbet af en tre dage. # -xbl.marketplace.account.banned.body.nobutton=Du kan ikke bruge markedspladsen, før din suspendering udløber. # playfab.account.banned.temporary=suspenderet # playfab.account.banned.permanent=udelukket # @@ -2487,6 +2482,14 @@ date.daysAbbreviated1Char=%sd ### It needs to be abbreviated with no more than date.hoursAbbreviated1Char=%st ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%sm ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%ss ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s dage # +date.hoursPlural=%s timer # +date.minutesPlural=%s minutter # +date.secondsPlural=%s sekunder # +date.daySingular=%s dag # +date.hourSingular=%s time # +date.minuteSingular=%s minut # +date.secondSingular=%s sekund # date.timeLeft=%s resterende # dayOneExperience.carousel.title=Velkommen til det nye Minecraft! # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=VÆRT # edu.worlds_screen.settings=INDSTILLINGER # edu.worlds_screen.download=DOWNLOAD ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=ADMINISTRER # +edu.worlds_screen.about=OM # edu.worlds_screen.back=TILBAGE # edu.worlds_screen.copy=KOPIÉR # edu.worlds_screen.export=EKSPORTÉR # @@ -2791,7 +2795,13 @@ edu.templates.empty_banner=Du kan få verdensskabeloner fra Minecraft Education- edu.pause.multiplayer.disabled=Lektionen understøtter ikke multiplayer. # effect.badOmen=Dårligt tegn # +effect.infested=Inficeret # +effect.oozing=Sivende # +effect.raid_omen=Raid-varsel # +effect.trial_omen=Udfordringsvarsel # effect.villageHero=Byens helt # +effect.weaving=Vævning # +effect.wind_charged=Vindladet # enchantment.arrowDamage=Kraft # enchantment.arrowFire=Flamme # @@ -2810,6 +2820,9 @@ enchantment.durability=Ubrydelig # enchantment.fire=Ildaspekt # enchantment.fishingSpeed=Lokkemad # enchantment.frostwalker=Frostvandrer # +enchantment.heavy_weapon.breach=Overtrædelse # +enchantment.heavy_weapon.density=Tæthed # +enchantment.heavy_weapon.windburst=Vindudbrud # enchantment.knockback=Tilbageslag # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=Flagermus # entity.bee.name=Bi # entity.blaze.name=Blaze # entity.boat.name=Båd # +entity.bogged.name=Fastkørt # +entity.breeze.name=Brise # +entity.breeze_wind_charge_projectile.name=Vindopladning # entity.cat.name=Kat # entity.cave_spider.name=Huleedderkop # entity.chicken.name=Kylling # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=Ufaglært landsbyboer # entity.villager_v2.name=Landsbyboer # entity.vindicator.name=Hævner # entity.wandering_trader.name=Handelsrejsende # +entity.wind_charge_projectile.name=Vindopladning # entity.witch.name=Heks # entity.wither.name=Wither # entity.wither_skeleton.name=Wither-skelet # @@ -3009,6 +3026,7 @@ feature.ruins=Havruiner # feature.pillager_outpost=Røverforpost # feature.bastion_remnant=Bastionsruin # feature.ruined_portal=Ødelagt portal # +feature.trial_chambers=Prøvekamre # feed.like=Like # feed.manage_feed=Administrer feed # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=Brug :tip_left_stick: til at bevæge dig # gameTip.flying.mouse=Dobbelttryk på :_input_key.jump: for at flyve # gameTip.flying.touch=Dobbelttryk på hop for at flyve # +gameTip.flyDown.mouse=Tryk på :_input_key.sneak: for at flyve nedad # +gameTip.flyUp.mouse=Tryk på :_input_key.jump: for at flyve opad # + +gameTip.stopFlying.mouse=Dobbelttryk på :_input_key.jump: for at stoppe med at flyve # +gameTip.stopFlying.touch=Dobbelttryk på flyv nedad for at stoppe med at flyve # + gameTip.jump.mouse=Hop med :_input_key.jump: # +gameTip.swim.mouse=Tryk og hold nede på :_input_key.jump: for at svømme opad # -gameTip.hotbar.mouse=Rul musehjulet for at vælge # i hotbjælken for at holde den # -gameTip.hotbar.touch=Tryk på # i hotbjælken for at holde den # -gameTip.hotbar.controller=Tryk på # i hotbjælken for at holde den # +gameTip.hotbar.selection.mouse=Rul eller tryk på %s for at holde elementet ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=Tryk på genstanden i hotbjælken for at holde den # gameTip.breakBlock.mouse=Hold venstre museknap nede for at bryde blokke # gameTip.breakBlock.touch=Tryk og hold nede for at bryde blokke # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=Du sniger! Du kan ikke falde ned fra kanter nu # gameTip.sneak.touch=Du sniger, så du kan ikke falde ned fra kanter # gameTip.sneak.controller=Du sniger, så du kan ikke falde ned fra kanter # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=Placér dit arbejdsbord. Hold det nede, og klik for at placere # gameTip.placeCraftingTable.touch=Placér dit arbejdsbord ved at trykke på jorden # gameTip.placeCraftingTable.controller=Placér dit arbejdsbord, hold det nede, og tryk så på jorden # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=Tak, fordi du delte din bedømmelse! # gui.submitFeedback.failure.status.unprocessableEntity=Du ejer ikke den genstand, du prøver at give feedback på. (Fejlkode: %d) # gui.submitFeedback.failure.status.tooManyRequests=Åh nej! Du har indsendt for mange bedømmelser. Prøv igen senere. (Fejlkode: %d) # gui.submitFeedback.failure.status.other=Kan ikke indsende din bedømmelse på nuværende tidspunkt. Prøv igen senere. (Fejlkode: %d) # +gui.togglable_slot=Tryk for at deaktivere pladsen # gui.playOffline=Spil offline # gui.signIn=Log på # gui.genericNetworkError=Der er noget galt. Måske er det din internetforbindelse. # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=Udforsk en verden af muligheder med Minecoins, Minecr howtoplay.minecoins.text.2=Når dine Minecoins er indløst, knyttes de til din Microsoft-konto, så du også kan få adgang til dine Minecoins og køb på andre understøttede enheder! # howtoplay.minecoins.button.text.1=Køb Minecoins # howtoplay.minecoins.header.1=Ansvarsfraskrivelse # -howtoplay.minecoins.text.3=*Minecoins kræver en version af Minecraft: Bedrock Edition med Minecraft Markedsplads. Minecoins er ikke kompatible på Sony PlayStation. Du kan finde oplysninger om kompatibilitet under minecraft.net/minecoins  # +howtoplay.minecoins.text.3=*Minecoins kræver en version af Minecraft: Bedrock Edition med Minecraft Markedsplads. Minecoins er ikke kompatible på Sony PlayStation®. Du kan finde oplysninger om kompatibilitet under minecraft.net/minecoins  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=Minedrift # @@ -4145,7 +4170,7 @@ level.editor.export.failed=Projekteksport mislykkedes # level.editor.import.failed=Import af projekt mislykkedes # level.editor.import.failed.incompatibleEdition=Projektimport mislykkedes: Filformatet understøttes ikke # -inbox.invite.title=Realms-invitation # +inbox.invite.title=Realm-invitation til # invite.clear=Ryd valg # invite.send=Send %d invitationer # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=Rød omvendt skrådelt fra højre # item.banner.diagonal_up_right.silver=Lysegrå omvendt skrådelt fra højre # item.banner.diagonal_up_right.white=Hvid omvendt skrådelt fra højre # item.banner.diagonal_up_right.yellow=Gul omvendt skrådelt fra højre # +item.banner.flow.black=Sort strøm # +item.banner.flow.blue=Blå strøm # +item.banner.flow.brown=Brun strøm # +item.banner.flow.cyan=Blågrøn strøm # +item.banner.flow.gray=Grå strøm # +item.banner.flow.green=Grøn strøm # +item.banner.flow.lightBlue=Lyseblå strøm # +item.banner.flow.lime=Limegrøn strøm # +item.banner.flow.magenta=Magentarød strøm # +item.banner.flow.orange=Orange strøm # +item.banner.flow.pink=Lyserød strøm # +item.banner.flow.purple=Lilla strøm # +item.banner.flow.red=Rød strøm # +item.banner.flow.silver=Lysegrå strøm # +item.banner.flow.white=Hvid strøm # +item.banner.flow.yellow=Gul strøm # item.banner.flower.black=Sort blomst # item.banner.flower.blue=Blå blomst # item.banner.flower.brown=Brun blomst # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=Hvid graduering fra bunden # item.banner.gradient_up.yellow=Gul graduering fra bunden # item.banner.gray.name=Gråt banner # item.banner.green.name=Grønt banner # +item.banner.guster.black=Sort guster # +item.banner.guster.blue=Blå guster # +item.banner.guster.brown=Brun guster # +item.banner.guster.cyan=Blågrøn guster # +item.banner.guster.gray=Grå guster # +item.banner.guster.green=Grøn guster # +item.banner.guster.lightBlue=Lyseblå guster # +item.banner.guster.lime=Limegrøn guster # +item.banner.guster.magenta=Magentarød guster # +item.banner.guster.orange=Orange guster # +item.banner.guster.pink=Lyserød guster # +item.banner.guster.purple=Lilla guster # +item.banner.guster.red=Rød guster # +item.banner.guster.silver=Lysegrå guster # +item.banner.guster.white=Hvid guster # +item.banner.guster.yellow=Gul guster # item.banner.half_horizontal.black=Sort tværdelt # item.banner.half_horizontal.blue=Blå tværdelt # item.banner.half_horizontal.brown=Brun tværdelt # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=Akaciebåd # item.boat.big_oak.name=Båd af mørkt egetræ # item.bone.name=Knogle # item.book.name=Bog # +item.breeze_rod.name=Brisestav # item.chainmail_boots.name=Brynjestøvler # item.leather_boots.name=Læderstøvler # item.diamond_boots.name=Diamantstøvler # @@ -4991,6 +5049,7 @@ item.comparator.name=Redstone-sammenligner # item.compass.name=Kompas # item.lodestonecompass.name=Magnetitkompas # item.cookie.name=Småkage # +item.copper_door.name=Kobberdør # item.crossbow.name=Armbrøst # item.diamond.name=Diamant # item.repeater.name=Redstone-gentager # @@ -5038,6 +5097,7 @@ tile.end_rod.name=End-stav # item.ender_eye.name=Ender-øje # item.ender_pearl.name=Ender-perle # item.experience_bottle.name=Fortryllelseseliksir # +item.exposed_copper_door.name=Blottet kobberdør # item.feather.name=Fjer # item.fermented_spider_eye.name=Gæret edderkoppeøje # item.fireball.name=Ildladning # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=Guldbukser # item.iron_leggings.name=Jernbukser # item.nautilus_shell.name=Konkylie # item.heart_of_the_sea.name=Havets hjerte # +item.mace.name=Stridskølle # item.magma_cream.name=Magmacreme # item.map.name=Kort # item.map.exploration.mansion.name=Skovudforskerkort # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=Kort over savannelandsby # item.map.exploration.village_desert.name=Kort over ørkenlandsby # item.map.exploration.jungle_temple.name=Jungleudforskerkort # item.map.exploration.swamp_hut.name=Sumpudforskerkort # +item.map.exploration.trial_chambers.name=Udfordringsudforskerkort # item.melon.name=Vandmelon # item.milk.name=Mælk # item.minecart.name=Minevogn # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=Minevogn med kiste # item.command_block_minecart.name=Minevogn med kommandoblok # item.minecartFurnace.name=Minevogn med ovn # item.hopper_minecart.name=Minevogn med tragt # +item.ominous_bottle.name=Ildevarslende flaske # +item.ominous_trial_key.name=Ildevarslende udfordringsnøgle # +item.oxidized_copper_door.name=Oxideret kobberdør # item.tnt_minecart.name=Minevogn med TNT # item.pitcher_pod.name=Kandebærer-bælg # item.torchflower_seeds.name=Fakkelblomstfrø # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=Agent-spawnæg # item.spawn_egg.entity.armadillo.name=Bæltedyr-spawnæg # item.spawn_egg.entity.axolotl.name=Axolotl-spawnæg # item.spawn_egg.entity.bee.name=Bi-spawnæg # +item.spawn_egg.entity.bogged.name=Fastkørt spawnæg # +item.spawn_egg.entity.breeze.name=Brise-spawnæg # item.spawn_egg.entity.hoglin.name=Hoglin-spawnæg # item.spawn_egg.entity.cat.name=Katte-spawnæg # item.spawn_egg.entity.chicken.name=Kyllinge-spawnæg # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 - vogter # item.record_pigstep.desc=Lena Raine – Pigstep # item.record_otherside.desc=Lena Raine – otherside # item.record_relic.desc=Aaron Cherof – Relic # +item.record_creator.desc=Lena Raine – udvikler # +item.record_creator_music_box.desc=Lena Raine - udvikler (Music Box) # +item.record_precipice.desc=Aaron Cherof – afgrund # item.redstone.name=Redstone-pulver # item.reeds.name=Sukkerrør # item.kelp.name=Tang # @@ -5324,6 +5394,12 @@ item.iron_sword.name=Jernsværd # item.stone_sword.name=Stensværd # item.wooden_sword.name=Træsværd # item.unbreakable=Brudsikker # +item.waxed_copper_door.name=Vokset kobberdør # +item.waxed_exposed_copper_door.name=Vokset blottet kobberdør # +item.waxed_oxidized_copper_door.name=Vokset oxideret kobberdør # +item.waxed_weathered_copper_door.name=Vokset forvitret kobberdør # +item.weathered_copper_door.name=Forvitret kobberdør # +item.wind_charge.name=Vindopladning # item.wheat.name=Hvede # item.wolf_armor.name=Ulverustning # item.writable_book.name=Bog og fjerpen # @@ -5331,6 +5407,7 @@ item.written_book.name=Skrevet bog # item.glowstone_dust.name=Glødestenspulver # item.shulker_shell.name=Shulkerskal # item.totem.name=Udødelighedstotem # +item.trial_key.name=Prøvenøgle # item.turtle_helmet.name=Skildpaddeskjold # item.turtle_shell_piece.name=Skildpaddeskæl # item.phantom_membrane.name=Fantommembran # @@ -5338,8 +5415,10 @@ item.sweet_berries.name=Mirakelbær # item.suspicious_stew.name=Skummel stuvning # item.banner_pattern.bricks=Murstensfelt # item.banner_pattern.creeper=Creeperangreb # +item.banner_pattern.flow=Strøm # item.banner_pattern.flower=Blomsterangreb # item.banner_pattern.globe=Globus # +item.banner_pattern.guster=Guster # item.banner_pattern.name=Bannermønster # item.banner_pattern.piglin=Snude # item.banner_pattern.skull=Kranieangreb # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=Bannermønstre # itemGroup.name.netherWartBlock=Nether-urter # itemGroup.name.candles=Stearinlys # itemGroup.name.goatHorn=Gedehorn # +itemGroup.name.compounds=Forbindelser # +itemGroup.name.products=Produkter # jigsaw.title.target_pool=Målpulje: # jigsaw.title.name=Navn: # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=KLASSEINDSTILLINGER # menu.serverStore=%s-butik # menu.serverGenericName=Server # menu.play=Spil # +menu.profile=Profil # menu.playdemo=Spil demoverden # menu.playOnRealms=Spil i realm # menu.quickplay=Hurtigt spil # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=Vælg din startfigur # menu.character_cast.preview_title=Mød de medvirkende! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Realms-server ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=Servere # merchant.deprecated=Foretag en anden handel for at låse op! # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=Fuldt tastaturgameplay # options.fullKeyboardLayout=Fuldt tastaturlayout # options.improvedInputResponsePlaceholder=Forbedret Input-svar # options.improvedInputResponsePlaceholder.tooltip=Reducerer forsinkelse mellem dit input, og hvad du ser på din skærm. Denne indstilling kan bruge mere batterikraft. # +options.dynamicTexturesToggle=Fjern teksturgrænse # +options.dynamicTexturesToggle.tooltip=Hvis du skifter dette fra Til til Fra, skal spillet genstartes. Det kan forårsage ustabilitet, når du bruger flere udvidelser eller ressourcepakker med mange teksturer. # +options.dynamicTextures.popUp=Hvis du aktiverer Fjern teksturgrænse, skal du genstarte spillet for at slå det fra. # +options.dynamicTextures.popUp.title=Er du sikker? # options.fullscreen=Fuld skærm # options.gamepadcursorsensitivity=Controllermarkørens følsomhed # options.gamertag=Gamertag: # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=Opret forbindelse # options.creator.debuggerListen=Lyt # options.creator.debuggerHost=Vært # options.creator.debuggerPort=Port # +options.creator.watchdogHeading=Indstillinger for Script Watchdog # +options.creator.watchdogSlowWarning=Advarsler om langsomme scripts # +options.creator.watchdogSlowThreshold=Gennemsnittet overstiger # +options.creator.watchdogSlowFormat=%s millisekunder # +options.creator.watchdogSlowFormatDefault=%s millisekunder (standard) # +options.creator.watchdogSpikeWarning=Advarsler om script-belastning # +options.creator.watchdogSpikeThreshold=Belastning overskrider # +options.creator.watchdogSpikeFormat=%s millisekunder # +options.creator.watchdogSpikeFormatDefault=%s millisekunder (standard) # +options.creator.watchdogHangThreshold=Afbryd efter # +options.creator.watchdogHangFormat=%s sekunder # +options.creator.watchdogHangFormatDefault=%s sekunder (standard) # options.vr_classic_box_selection=Markér valg # options.hidegamepadcursor=Skjul controllermarkøren # options.hidegui=Skjul GUI # @@ -6662,7 +6761,7 @@ options.makeBackup=Sikkerhedskopiér min verden # options.managePrivacy=Du kan administrere dine indstillinger for beskyttelse af personlige oplysninger på https://account.xbox.com/Settings i alle webbrowsere. ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Fjern tilknyttet Microsoft-konto # options.unlink_msa.confirm.title=Vil du fjerne den tilknyttede Microsoft-konto? # -options.unlink_msa.confirm.warning=ADVARSEL: Hvis du fjerner tilknytningen, vil du ikke længere kunne gemme fremskridt og køb fra din "PlayStation 4" på kontoen %s. # +options.unlink_msa.confirm.warning=ADVARSEL: Hvis du fjerner tilknytningen, vil du ikke længere kunne gemme fremskridt eller køb fra dit PlayStation®4-system på kontoen %s. #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=Hvis du fjerner din tilknyttede Microsoft-konto fra spillet, påvirker det alle Minecraft-spil på platformen, der har brugt Microsoft-kontoen. # options.unlink_msa.confirm.checkbox1=Jeg vil ikke længere have adgang til indhold købt i butikken, når jeg spiller på andre platforme. # options.unlink_msa.confirm.checkbox2=Jeg vil ikke længere kunne spille på tværs af platforme med mine venner. # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=Indlæs en verden for at tilpasse styring hudScreen.controlCustomization.tooltip.notouch=Brug en berøringsenhed til at tilpasse styringen # hudScreen.controlCustomization.tooltip.alreadycustomizing=Der er allerede en skærm med tilpasning af berøringsstyring åben # hudScreen.controlCustomization.tooltip.alive=Spilleren skal være i live for at tilpasse kontrollerne. # +hudScreen.daysPlayed=Antal dage spillet: %s # +hudScreen.daysPlayed.overflow=For mange til at tælle! # playscreen.fileSize.MB=MB # playscreen.fileSize.GB=GB # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=Sprøjtende helbredseliksir # potion.heal.linger.name=Hængende helbredseliksir # potion.healthBoost=Helbredsbonus # potion.hunger=Sult # +potion.infested.linger.name=Hængende inficeringseliksir # +potion.infested.name=Inficeringseliksir # +potion.infested.splash.name=Sprøjtende inficeringseliksir # +potion.infested=Inficeret # potion.invisibility=Usynlighed # potion.invisibility.name=Usynlighedseliksir # potion.invisibility.splash.name=Sprøjtende usynlighedseliksir # @@ -7067,6 +7172,10 @@ potion.nightVision=Nattesyn # potion.nightVision.name=Nattesynseliksir # potion.nightVision.splash.name=Sprøjtende nattesynseliksir # potion.nightVision.linger.name=Hængende nattesynseliksir # +potion.oozing.linger.name=Hængende sivende eliksir # +potion.oozing.name=Sivende eliksir # +potion.oozing.splash.name=Sprøjtende sivende eliksir # +potion.oozing=Sivende # potion.poison=Gift # potion.poison.name=Gifteliksir # potion.poison.splash.name=Sprøjtende gifteliksir # @@ -7108,6 +7217,14 @@ potion.weakness=Svaghed # potion.weakness.name=Svaghedseliksir # potion.weakness.splash.name=Sprøjtende svaghedseliksir # potion.weakness.linger.name=Hængende svaghedseliksir # +potion.weaving.linger.name=Hængende vævningseliksir # +potion.weaving.name=Vævningseliksir # +potion.weaving.splash.name=Sprøjtende vævningseliksir # +potion.weaving=Vævning # +potion.windCharged.linger.name=Hængende vindladningseliksir # +potion.windCharged.name=Vindladningseliksir # +potion.windCharged.splash.name=Sprøjtende vindladningseliksir # +potion.windCharged=Vindladet # potion.wither=Wither # potion.wither.name=Nedbrydelseseliksir # potion.wither.splash.name=Sprøjtende nedbrydelseseliksir # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=Denne verden kan ikke åbnes pga. et progressScreen.message.forbiddenContent=Du mangler en eller flere af de anvendte pakker # progressScreen.message.loadingSplitScreenAppearances=Indlæser udseender på delt skærm ... # progressScreen.message.finishedLoadingSplitScreenAppearances=Indlæsning af udseender på delt skærm afsluttet. # -progressScreen.message.modifiedWorldWarning=Denne verden ser muligvis ikke ud eller opfører sig ikke på samme måde som ikke-modificerede verdener, og du kan ikke opnå gennemførelser. # +progressScreen.message.modifiedWorldWarning.1=Du spiller i en verden med udvidelser! Dette vil tilføje nye funktioner til din Minecraft-verden. # +progressScreen.message.modifiedWorldWarning.2=Du behøver ikke nøjes med kun én! Du kan indlæse flere udvidelser på en enkelt verden på én gang. # +progressScreen.message.modifiedWorldWarning.3=Avanceret tip: En ressourcepakke kan ændre forskellige blokke og entiteters teksturer. # +progressScreen.message.modifiedWorldWarning.4=Avanceret tip!: En adfærdsspakke kan ændre, hvordan forskellige elementer, objekter eller blokke fungerer. # +progressScreen.message.modifiedWorldWarning.5=Avanceret tip: En udvidelse indeholder både en adfærdspakke og en ressourcepakke. Sørg for, at begge pakker er aktiveret for at sikre, at udvidelsen fungerer! # +progressScreen.message.modifiedWorldWarning.6=Udvidelser tilføjer nye blokke, elementer eller mobs til dine verdener. # +progressScreen.message.modifiedWorldWarning.7=Verdener og udvidelser er komplekse! Mens nogle fungerer godt sammen, får du måske mærkelige resultater med andre. # +progressScreen.message.modifiedWorldWarning.8=Flere udvidelser betyder mere sjov, men spillet kan tage længere tid at indlæse. # progressScreen.dialog.title.resourcePack=Download ressourcepakker? # progressScreen.dialog.title.behaviorAndResourcePack=Download verdenens ressource- og adfærdspakker? # progressScreen.dialog.title.onlyBehavior=Download verdenens adfærdspakker? # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=Vil du opdatere verdenen? # resourcePack.warning.add.body=Denne verden ligner muligvis ikke eller opfører sig på samme måde som ikke-modificerede verdener. Du bør gemme en kopi af din verden, inden du fortsætter. # resourcePack.warning.add.button.cancel=Tilføj ikke pakke # resourcePack.warning.add.button.ok=Tilføj pakken alligevel # +resourcePack.warnings.contentKeyErrorBody=Der opstod et problem med indlæsning af pakken %s. # +resourcePack.warnings.contentKeyErrorBodyMultiple=Der opstod et problem med indlæsning af pakkerne %s. # +resourcePack.warnings.contentKeyErrorTitle=Fejl! # resourcePack.warning.remove.title=Det her er farligt! # resourcePack.warning.remove.body=Hvis du tilføjer eller fjerner pakker, efter du er begyndt at spille en verden, risikerer du at ødelægge verdenen og miste alt, hvad du har skabt. # resourcePack.warning.remove.button.cancel=Behold pakken # @@ -7557,7 +7684,9 @@ item.crimson_hanging_sign.name=Blodrødt hængende skilt # item.danger_pottery_sherd.name=Fare-potteskår # item.dark_oak_hanging_sign.name=Hængende kilt af mørkt egetræ # item.explorer_pottery_sherd.name=Udforsker-potteskår # +item.flow_pottery_sherd.name=Flydepotteskår # item.friend_pottery_sherd.name=Venne-potteskår # +item.guster_pottery_sherd.name=Guster-potteskår # item.heart_pottery_sherd.name=Hjerte-potteskår # item.heartbreak_pottery_sherd.name=Hjertesorg-potteskår # item.howl_pottery_sherd.name=Hyl-potteskår # @@ -7568,6 +7697,7 @@ item.mourner_pottery_sherd.name=Sørgende-potteskår # item.oak_hanging_sign.name=Hængende skilt i eg # item.plenty_pottery_sherd.name=Overflods-potteskår # item.prize_pottery_sherd.name=Præmie-potteskår # +item.scrape_pottery_sherd.name=Skrabepotteskår # item.sheaf_pottery_sherd.name=Neg-potteskår # item.shelter_pottery_sherd.name=Ly-potteskår # item.skull_pottery_sherd.name=Kranie-potteskår # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=Trappe af kirsebærtræ # tile.cherry_trapdoor.name=Faldlem af kirsebærtræ # tile.cherry_wood.name=Kirsebærtræ # tile.chiseled_bookshelf.name=Mejslet bogreol # +tile.chiseled_tuff.name=Mejslet tuf # +tile.chiseled_tuff_bricks.name=Mejslede tufmursten # tile.decorated_pot.name=Dekoreret gryde # tile.pink_petals.name=Lyserøde kronblade # tile.stripped_bamboo_block.name=Afbarket blok af bambus # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=Vexrustning-udstyr # trim_pattern.ward.name=Afdelingsrustning-udstyr # trim_pattern.wayfinder.name=Vejfinder-rustningsudstyr # trim_pattern.wild.name=Vild rustning-udstyr # +trim_pattern.bolt.name=Boltrustningsudsmykning # +trim_pattern.flow.name=Strømrustningsudsmykning # upgrade.netherite_upgrade.name=Netheritopgradering # storageManager.mainSizeLabel=%s - 1 element # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=Vil du slette verdensskabelonen? # selectTemplate.delete=Slet # selectTemplate.myTemplates=Skabeloner til Min verden # selectTemplate.realmsPlus=Udvalgte Realms Plus-skabeloner # -selectTemplate.marketplacePass=Udvalgte Marketplace Pass-skabeloner #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=Udvalgt Marketplace Pass-indhold #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=Importerede skabeloner # selectTemplate.download=Download # selectTemplate.noTemplates=Der er ingen verdensskabeloner på enheden. # -selectTemplate.suggestedContent.title=Viste markedspladsskabeloner # +selectTemplate.suggestedContent.title=Udvalgt markedspladsindhold # selectTemplate.suggestedContent.button=Se flere skabeloner # selectTemplate.createdBy=Udviklet af %s # selectTemplate.inventory=Mine markedspakker # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=Vi havde problemer med at oprette forbindelse. G store.loading.error.issues=Hmm, markedspladsen har problemer. Prøv at oprette forbindelse senere. # store.loading.error.internetDown=Vi kan ikke registrere en internetforbindelse. # store.loading.error.account=Der er et problem med din konto. Prøv igen senere, og kontakt support, hvis dette fortsætter. # +store.loading.error.account.banned=Du kan ikke bruge markedspladsen, før din suspendering udløber. # store.giftPromo.day=Dag %s ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=Hentet # @@ -8409,6 +8544,13 @@ store.mashup.count.world=1 verden # store.mashup.count.worlds=%s verdener #number of worlds # store.mashup.count.addonPack=1 udvidelse # store.mashup.count.addonPacks=%s udvidelser #number of addons # +store.mashup.count.mashup=Mashup # +store.mashup.hover.label.addonPack=Udvidelser kan anvendes på alle verdener. # +store.mashup.hover.label.world=Et håndlavet Minecraft-kort. # +store.mashup.hover.label.skin=Anvend et nyt look til din figur. # +store.mashup.hover.label.texturePack=Føj en ny grafik til din verden eller til spillets grænseflade. # +store.mashup.hover.label.mashup.lineOne=En kombination af forskellige typer indhold. # +store.mashup.hover.label.mashup.lineTwo=Denne mashup indeholder: # store.addon.activateAddonPack=Aktivér tilføjelse! # store.addon.newOrExistingTitle=Hvor kan man tilføje? # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=Kridttavle # tile.chest.name=Kiste # tile.ender_chest.name=Ender-kiste # tile.jigsaw.name=Pusleblok # +tile.heavy_core.name=Tung kerne # tile.honey_block.name=Honningblok # tile.honeycomb_block.name=Bikageblok # tile.lodestone.name=Magnetit # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=Poleret blackstone-plade # tile.polished_blackstone_pressure_plate.name=Poleret blackstone-trykplade # tile.polished_blackstone_button.name=Poleret blackstone-knap # tile.polished_blackstone_wall.name=Poleret blackstone-mur # +tile.polished_tuff.name=Poleret tuf # +tile.polished_tuff_slab.name=Poleret tufflise # +tile.polished_tuff_stairs.name=Poleret tuftrappe # +tile.polished_tuff_wall.name=Poleret tufmur # tile.soul_campfire.name=Sjælelejrbål # tile.chiseled_nether_bricks.name=Mejslede Nether-mursten # tile.cracked_nether_bricks.name=Revnede Nether-mursten # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=Gul terrakotta # tile.structure_block.name=Strukturblok # structure_block.waterlog_block=Vandlog-blokke # tile.structure_void.name=Strukturtomrum # +tile.trial_spawner.name=Prøvespawner # +tile.vault.name=Boks # tile.wool.black.name=Sort uld # tile.wool.blue.name=Blå uld # tile.wool.brown.name=Brun uld # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=Bregne # tile.tallgrass.grass.name=Græs # tile.tallgrass.name=Græs # tile.tallgrass.shrub.name=Buskads # +tile.tuff_brick_slab.name=Tufmurstensflise # +tile.tuff_brick_stairs.name=Tufmurstenstrappe # +tile.tuff_brick_wall.name=Tufmurstensmur # +tile.tuff_bricks.name=Tufmursten # +tile.tuff_slab.name=Tufflise # +tile.tuff_stairs.name=Tuftrappe # +tile.tuff_wall.name=Tufmur # tile.seagrass.seagrass.name=Havgræs # tile.sea_pickle.name=Søpølse # tile.turtle_egg.name=Havskildpaddeæg # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=Rødt tæppe # tile.carpet.silver.name=Lysegråt tæppe # tile.carpet.white.name=Hvidt tæppe # tile.carpet.yellow.name=Gult tæppe # +tile.crafter.name=Fremstiller # tile.crafting_table.name=Arbejdsbord # tile.glazedTerracotta.white.name=Hvidglaseret terrakotta # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=Vokset tilskåret kobberflise # tile.waxed_exposed_cut_copper_slab.name=Vokset blottet tilskåret kobberflise # tile.waxed_weathered_cut_copper_slab.name=Vokset forvitret tilskåret kobberflise # tile.waxed_oxidized_cut_copper_slab.name=Vokset oxideret tilskåret kobberflise # + +tile.chiseled_copper.name=Mejslet kobber # +tile.exposed_chiseled_copper.name=Blottet mejslet kobber # +tile.oxidized_chiseled_copper.name=Oxideret mejslet kobber # +tile.waxed_chiseled_copper.name=Vokset mejslet kobber # +tile.waxed_exposed_chiseled_copper.name=Vokset blottet mejslet kobber # +tile.waxed_oxidized_chiseled_copper.name=Vokset oxideret mejslet kobber # +tile.waxed_weathered_chiseled_copper.name=Vokset forvitret mejslet kobber # +tile.weathered_chiseled_copper.name=Forvitret mejslet kobber # + +tile.copper_bulb.name=Kobberpære # +tile.exposed_copper_bulb.name=Blottet kobberpære # +tile.oxidized_copper_bulb.name=Oxideret kobberpære # +tile.waxed_copper_bulb.name=Vokset kobberpære # +tile.waxed_exposed_copper_bulb.name=Vokset blottet kobberpære # +tile.waxed_oxidized_copper_bulb.name=Vokset oxideret kobberpære # +tile.waxed_weathered_copper_bulb.name=Vokset forvitret kobberpære # +tile.weathered_copper_bulb.name=Forvitret kobberpære # + +tile.copper_door.name=Kobberdør # +tile.exposed_copper_door.name=Blottet kobberdør # +tile.oxidized_copper_door.name=Oxideret kobberdør # +tile.waxed_copper_door.name=Vokset kobberdør # +tile.waxed_exposed_copper_door.name=Vokset blottet kobberdør # +tile.waxed_oxidized_copper_door.name=Vokset oxideret kobberdør # +tile.waxed_weathered_copper_door.name=Vokset forvitret kobberdør # +tile.weathered_copper_door.name=Forvitret kobberdør # + +tile.copper_grate.name=Kobberrist # +tile.exposed_copper_grate.name=Blottet kobberrist # +tile.oxidized_copper_grate.name=Oxideret kobberrist # +tile.waxed_copper_grate.name=Vokset kobberrist # +tile.waxed_exposed_copper_grate.name=Vokset blottet kobberrist # +tile.waxed_oxidized_copper_grate.name=Vokset oxideret kobberrist # +tile.waxed_weathered_copper_grate.name=Vokset forvitret kobberrist # +tile.weathered_copper_grate.name=Forvitret kobberrist # + +tile.copper_trapdoor.name=Kobberfaldlem # +tile.exposed_copper_trapdoor.name=Blottet kobberfaldlem # +tile.oxidized_copper_trapdoor.name=Oxideret kobberfaldlem # +tile.waxed_copper_trapdoor.name=Vokset kobberfaldlem # +tile.waxed_exposed_copper_trapdoor.name=Vokset blottet kobberfaldlem # +tile.waxed_oxidized_copper_trapdoor.name=Vokset oxideret kobberfaldlem # +tile.waxed_weathered_copper_trapdoor.name=Vokset forvitret kobberfaldlem # +tile.weathered_copper_trapdoor.name=Forvitret kobberfaldlem # + tile.raw_copper_block.name=Blok af råkobber # tile.raw_iron_block.name=Blok af råjern # tile.raw_gold_block.name=Blok af råguld # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=Lykkepil # tipped_arrow.effect.wither=Nedbrydelsespil # tipped_arrow.effect.turtleMaster=Skildpaddekongens pil # tipped_arrow.effect.slowFalling=Langsomt fald-pil # +tipped_arrow.effect.infested=Inficeringspil # +tipped_arrow.effect.oozing=Sivende pil # +tipped_arrow.effect.weaving=Vævningspil # +tipped_arrow.effect.windCharged=Vindladningspil # structure_block.title=Strukturblok # structure_block.structure_name=Strukturnavn # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=Dine seneste ændringer kan være gåe worldError.worldFailedRecovery=Gendannelse ikke mulig # worldError.worldFailedRecoveryText=Vi registrerede en ødelagt verden, men vi kunne ikke gendanne den. # +writeThrottling.osDialog.body=Den ønskede handling anslås at tage %d minutter at fuldføre. Sluk ikke din enhed i dette tidsrum. # +writeThrottling.osDialog.cancel=Annuller handling # +writeThrottling.osDialog.confirm=Fortsæt # +writeThrottling.progressBar.title=Forbereder data # +writeThrottling.progressBar.body=Gør dine filer klar ... # + userData.recovered.title=Gemte spildata blev gendannet # userData.recovered.text=Det lykkedes at gendanne dine ødelagte brugerindstillinger. # userData.recovered.warning=Dine seneste ændringer kan være gået tabt under gendannelsen. # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=Chatbesked # xbox.report.area.skin=Spillerskin # xbox.report.area.gameplay=Gameplay # xbox.report.area.ingame=Kreationer i spillet # -xbox.report.area.other=Andet # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=Cybermobning # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=Vi kunne ikke oprette forbindelse. Prøv i gathering.connect.title=Opretter forbindelse ... # gathering.info.qr.title.onlineService=Få flere oplysninger # gathering.info.qr.body.onlineService.nso=Du skal have et Nintendo Switch Online-medlemskab for at deltage i en begivenhed i Minecraft. # -gathering.info.qr.body.onlineService.psn=Du skal være logget ind på \''PlayStation Plus''\ for at deltage i en begivenhed i Minecraft. # +gathering.info.qr.body.onlineService.psn=Du skal være logget ind på PlayStation®Plus for at deltage i en begivenhed i Minecraft. #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=Du skal være logget ind for at deltage i en begivenhed i Minecraft. # gathering.info.qr.title.childAccount=Onlinespil ikke tilladt # gathering.info.qr.body.childAccount=Din nuværende forældrekontrol begrænser dig fra at spille online. # diff --git a/resource_pack/texts/de_DE.lang b/resource_pack/texts/de_DE.lang index dd79d498b..db9c39e8c 100644 --- a/resource_pack/texts/de_DE.lang +++ b/resource_pack/texts/de_DE.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=Seed auswählen # accessibility.start.feedback=Feedback-Link an Webseite übermitteln # accessibility.start.new=Neu # -accessibility.start.profile=Profil auswählen # accessibility.start.skinPicker=Skin auswählen # accessibility.store.tag=Tag # @@ -260,7 +259,7 @@ accounts.signOut.fail.hyperLink.text=Mehr erfahren # accounts.signOut.fail.hyperLink.uri=https://aka.ms/mcedu-login # achievement.alternativeFuel=Alternativer Brennstoff # -achievement.alternativeFuel.desc=Befeuere einen Ofen mit einem Seetangblock. # +achievement.alternativeFuel.desc=Befeuere einen Schmelzofen mit einem Seetangblock. # achievement.acquireIron=Schmiedekunst # achievement.acquireIron.desc=Schmilz einen Eisenbarren # achievement.bakeCake=Die Lüge # @@ -274,7 +273,7 @@ achievement.breedCow.desc=Züchte zwei Kühe mit Weizen # achievement.buildBetterPickaxe=Technischer Fortschritt # achievement.buildBetterPickaxe.desc=Stelle eine bessere Spitzhacke her # achievement.buildFurnace=Heiße Angelegenheit # -achievement.buildFurnace.desc=Baue einen Ofen aus acht Steinblöcken # +achievement.buildFurnace.desc=Baue einen Schmelzofen aus acht Steinblöcken # achievement.buildHoe=Fang an zu ackern! # achievement.buildHoe.desc=Stell aus Holz und Stöcken eine Hacke her # achievement.buildPickaxe=Glück Auf! # @@ -1094,10 +1093,6 @@ commands.me.description=Zeigt eine Mitteilung über dich selbst an. # commands.message.display.incoming=%1$s flüstert dir zu: %2$s # commands.message.display.outgoing=Du flüsterst %1$s zu: %2$s # commands.message.sameTarget=Du kannst keine Selbstgespräche führen! # -commands.message.warn=§4Du hast eine Verwarnung erhalten. Dein Verhalten könnte von anderen Spielern als beleidigend empfunden werden. Bitte nimm Rücksicht auf deine Mitspieler. # -commands.message.toastWarn=Minecraft ist für alle da! Bitte verhalte dich entsprechend unserer Community-Standards. # -commands.warn.invalidWarningLevel=Ungültige Warnstufe. # -commands.warn.playerDoesNotExist=Es konnte kein Spieler gefunden werden. Bitte wähle einen gültigen Spieler. # commands.mobevent.description=Regelt, welche Kreaturen-Ereignisse auftreten können. # commands.mobevent.eventsEnabledSetToTrue=Kreaturen-Ereignisse sind jetzt aktiviert. Individuelle Ereignisse, die nicht aktiviert wurden, finden niemals statt. # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=– %s: %s von %d %d %d bis %d %d %d # commands.volumearea.entry.withoutIdentifier=– %s: von %d %d %d bis %d %d %d # commands.volumearea.noneExist.currentDimension=In der aktuellen Dimension sind keine Inhalte vorhanden. # commands.volumearea.inUse=%1$d/%2$d Inhalte werden verwendet. # -commands.warn.description=Sendet eine Warnmeldung an den Spieler. # commands.weather.clear=Wechsle zu schönem Wetter # commands.weather.description=Legt das Wetter fest. # commands.weather.disabled=In dieser Welt ist "Wetterzyklus" nicht aktiviert. # @@ -1572,6 +1566,7 @@ container.beacon=Leuchtfeuer # container.brewing=Braustand # container.chest=Truhe # container.chestDouble=Große Truhe # +container.crafter=Handwerker # container.crafting=Handwerk # container.creative=Gegenstände # container.dispenser=Spender # @@ -1584,7 +1579,7 @@ container.enchant.lapis.one=1 Lapislazuli # container.enchant.level.many=%d Verzauberungslevel # container.enchant.level.one=1 Verzauberungslevel # container.enderchest=Endertruhe # -container.furnace=Ofen # +container.furnace=Schmelzofen # container.hopper=Gegenstandstrichter # container.inventory=Inventar # container.isLocked=%s ist verschlossen! # @@ -1610,7 +1605,7 @@ controller.buttonTip.back=Zurück # controller.buttonTip.backToAnvil=Zurück zum Amboss # controller.buttonTip.backToBrewing=Zurück zum Brauen # controller.buttonTip.backToEnchanting=Zurück zum Verzaubern # -controller.buttonTip.backToFurnace=Zurück zum Ofen # +controller.buttonTip.backToFurnace=Zurück zum Schmelzofen # controller.buttonTip.cancel=Abbrechen # controller.buttonTip.clearSearch=Suche löschen # controller.buttonTip.clearQuickSelect=Schnellauswahl löschen # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=Höhlen und Klippen # createWorldScreen.cavesandcliffsDescription=Erkunde den neuen Höhleneditor # createWorldScreen.spectatorMode=Zuschauermodus # createWorldScreen.spectatorModeDescription=Probiere die vorläufige Version des Zuschauermodus aus # -createWorldScreen.experimentalCameras=Experimentelle Kameras # -createWorldScreen.experimentalCamerasDescription=Enthält Beispiel-Kameravorlagen (der Kamerabefehl ist nicht länger experimentell) # createWorldScreen.recipeUnlocking=Rezeptfreischaltung # createWorldScreen.recipeUnlockingDescription=Rezeptfreischaltung aktivieren # createWorldScreen.experimentalholiday=Feiertags-Creator-Funktionen # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=Neue Welt wird erschaffen ... # createWorldScreen.progress.realms=Dein Realm wird zurückgesetzt ... # createWorldScreen.seed.desc=Gib einen Seed ein, um das gleiche Gelände erneut zu erstellen. Lass das Feld leer, um eine zufällige Welt zu erstellen. # createWorldScreen.showCoordinates=Koordinaten anzeigen # +createWorldScreen.showDaysPlayed=Gespielte Tage anzeigen # createWorldScreen.worldType=Welttyp # createWorldScreen.randomtickspeed=Zufällige Tick-Geschwindigkeit # createWorldScreen.randomtickspeed.reset=Tick zurücksetzen # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=Projekt löschen # createWorldScreen.editor.projectOptionsLabel=Projektoptionen # createWorldScreen.editor.delete.confirm=Projekt dauerhaft löschen? # createWorldScreen.editor.deleteWarningFormat="%s" wirklich löschen? Dieses Projekt geht für immer verloren! # +createWorldScreen.eduCloud.about.body=Dateiname: '%1$s'%2$sLetzte Aktualisierung: %3$s%4$sKlicke zum Herunterladen auf "OK" und dann auf "Herunterladen".%5$s # +createWorldScreen.eduCloud.about.title=Über die Cloud-Weltdatei # createWorldScreen.eduCloud.delete.confirm=Lokale Welt löschen? # createWorldScreen.eduCloud.deleteWarningFormat=Möchtest du "%1$s" wirklich löschen?%2$sDie Cloud-Version '%3$s' wird davon nicht betroffen und kann später erneut synchronisiert werden. # createWorldScreen.experimentalDeferredTechnicalPreview=Renderdrachen-Funktionen für Creator # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Windows Store # realmsSettingsScreen.xboxOneStoreDisplayName=Xbox Store # realmsSettingsScreen.amazonStoreDisplayName=Amazon App Shop # realmsSettingsScreen.oculusStoreDisplayName=Oculus Store # -realmsSettingsScreen.berwickStoreDisplayName="PlayStation Store" # -realmsSettingsScreen.SonyStoreDisplayName=„PlayStation Store“ #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=Unbekannte Herkunft # realmsSettingsScreen.extendingRealm=Realm wird erweitert ... # realmsSettingsScreen.offerError.title=Kauf ausstehend # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=Pakete, die außerhalb von Mine xbl.syncIAP.confirmSync.prompt.yes=Ja. Meine Käufe synchronisieren # xbl.marketplace.account.error.body.nobutton=Es ist ein Fehler mit deinem Konto aufgetreten. Du kannst den Marketplace erst wieder nutzen, wenn wir das Problem behoben haben. Sollte dieser Fehler mehrere Tage in Folge auftreten, kontaktiere bitte den Support. # -xbl.marketplace.account.banned.body.nobutton=Du kannst den Marketplace erst nutzen, wenn deine Sperre abgelaufen ist. # playfab.account.banned.temporary=gesperrt # playfab.account.banned.permanent=gebannt # @@ -2487,6 +2482,14 @@ date.daysAbbreviated1Char=%sd ### It needs to be abbreviated with no more than date.hoursAbbreviated1Char=%s h ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%s m ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%s s ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s Tage # +date.hoursPlural=%s Stunden # +date.minutesPlural=%s Minuten # +date.secondsPlural=%s Sekunden # +date.daySingular=%s Tag # +date.hourSingular=%s Stunde # +date.minuteSingular=%s Minute # +date.secondSingular=%s Sekunde # date.timeLeft=%s übrig # dayOneExperience.carousel.title=Willkommen zum neuen Minecraft! # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=HOSTEN # edu.worlds_screen.settings=EINSTELLUNGEN # edu.worlds_screen.download=HERUNTERLADEN ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=VERWALTEN # +edu.worlds_screen.about=INFOS # edu.worlds_screen.back=ZURÜCK # edu.worlds_screen.copy=KOPIEREN # edu.worlds_screen.export=EXPORTIEREN # @@ -2791,7 +2795,13 @@ edu.templates.empty_banner=Du kannst Weltvorlagen aus der Minecraft Education-Bi edu.pause.multiplayer.disabled=Mehrspieler steht für diese Lektion nicht zur Verfügung. # effect.badOmen=Böses Omen # +effect.infested=Verseucht # +effect.oozing=Sickernd # +effect.raid_omen=Raubzug-Omen # +effect.trial_omen=Prüfungsomen # effect.villageHero=Dorfheld # +effect.weaving=Weben # +effect.wind_charged=Windgeladen # enchantment.arrowDamage=Kraft # enchantment.arrowFire=Flamme # @@ -2810,6 +2820,9 @@ enchantment.durability=Haltbarkeit # enchantment.fire=Verbrennung # enchantment.fishingSpeed=Köder # enchantment.frostwalker=Eisläufer # +enchantment.heavy_weapon.breach=Durchbruch # +enchantment.heavy_weapon.density=Dichte # +enchantment.heavy_weapon.windburst=Windschuss # enchantment.knockback=Rückstoß # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=Fledermaus # entity.bee.name=Biene # entity.blaze.name=Lohe # entity.boat.name=Boot # +entity.bogged.name=Versunkener # +entity.breeze.name=Brise # +entity.breeze_wind_charge_projectile.name=Windladung # entity.cat.name=Katze # entity.cave_spider.name=Höhlenspinne # entity.chicken.name=Huhn # @@ -2902,7 +2918,7 @@ entity.magma_cube.name=Magmawürfel # entity.minecart.name=Lore # entity.chest_minecart.name=Güterlore # entity.command_block_minecart.name=Lore mit Befehlsblock # -entity.furnace_minecart.name=Lore mit Ofen # +entity.furnace_minecart.name=Lore mit Schmelzofen # entity.hopper_minecart.name=Trichterlore # entity.tnt_minecart.name=TNT-Lore # entity.mule.name=Maultier # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=Dorfbewohner # entity.villager_v2.name=Dorfbewohner # entity.vindicator.name=Diener # entity.wandering_trader.name=Wandernder Händler # +entity.wind_charge_projectile.name=Windladung # entity.witch.name=Hexe # entity.wither.name=Wither # entity.wither_skeleton.name=Witherskelett # @@ -3009,6 +3026,7 @@ feature.ruins=Ozeanruinen # feature.pillager_outpost=Plünderer-Außenposten # feature.bastion_remnant=Überreste der Bastion # feature.ruined_portal=Zerstörtes Portal # +feature.trial_chambers=Prüfungskammern # feed.like=Gefällt mir # feed.manage_feed=Feed verwalten # @@ -3070,7 +3088,7 @@ comment.likes_and_comments=%1 und %2 ### comment.like(s) will be inserted at %1 comment.commentplaceholder=Kommentar ... # furnaceScreen.fuel=Brennstoff # -furnaceScreen.header=Ofen # +furnaceScreen.header=Schmelzofen # furnaceScreen.input=Eingabe # furnaceScreen.result=Ergebnis # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=Bewege :tip_left_stick:, um dich zu bewegen # gameTip.flying.mouse=Tippe :_input_key.jump: doppelt an, um zu fliegen # gameTip.flying.touch=Tippe "Springen" doppelt an, um zu fliegen # +gameTip.flyDown.mouse=Drücke :_input_key.sneak:, um nach unten zu fliegen # +gameTip.flyUp.mouse=Drücke :_input_key.jump:, um nach oben zu fliegen # + +gameTip.stopFlying.mouse=Tippe :_input_key.jump: doppelt an, um mit dem Fliegen aufzuhören # +gameTip.stopFlying.touch=Tippe "nach unten Fliegen" doppelt, um mit dem Fliegen aufzuhören # + gameTip.jump.mouse=Springe mit :_input_key.jump: # +gameTip.swim.mouse=Drücke und halte :_input_key.jump:, um nach oben zu schwimmen # -gameTip.hotbar.mouse=Bewege das Mausrad, um # in der Schnellzugriffsleiste auszuwählen und zu halten # -gameTip.hotbar.touch=Tippe in der Schnellzugriffsleiste auf #, um den Gegenstand zu halten # -gameTip.hotbar.controller=Tippe in der Schnellzugriffsleiste auf #, um den Gegenstand zu halten # +gameTip.hotbar.selection.mouse=Scrolle oder drücke %s, um Gegenstand zu halten ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=Tippe in der Schnellzugriffsleiste auf den Gegenstand, um ihn zu halten # gameTip.breakBlock.mouse=Halte die linke Maustaste gedrückt, um Blöcke zu zerschlagen # gameTip.breakBlock.touch=Tippe und halte, um Blöcke zu zerschlagen # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=Du schleichst jetzt! Du kannst nicht mehr von Kanten fallen gameTip.sneak.touch=Du schleichst, also kannst du nicht von Kanten fallen # gameTip.sneak.controller=Du schleichst, also kannst du nicht von Kanten fallen # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=Platziere deine Werkbank. Halte sie und klicke, um sie zu platzieren # gameTip.placeCraftingTable.touch=Platziere deine Werkbank, indem du den Boden antippst # gameTip.placeCraftingTable.controller=Platziere deine Werkbank, halte und tippe dann auf den Boden # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=Vielen Dank für deine Bewertung! # gui.submitFeedback.failure.status.unprocessableEntity=Du besitzt nicht den Artikel, für den du Feedback abgeben möchtest. (Fehlercode: %d) # gui.submitFeedback.failure.status.tooManyRequests=Oh nein! Du hast zu viele Bewertungen abgeschickt, bitte versuche es später erneut. (Fehlercode: %d) # gui.submitFeedback.failure.status.other=Du kannst deine Bewertung zu diesem Zeitpunkt nicht einreichen, versuche es später erneut. (Fehlercode: %d) # +gui.togglable_slot=Drücken, um Slot zu deaktivieren # gui.playOffline=Offline spielen # gui.signIn=Anmelden # gui.genericNetworkError=Da hat etwas nicht geklappt. Prüfe deine Internetverbindung. # @@ -3309,7 +3334,7 @@ howtoplay.armor.text.1=Durch das Tragen von Rüstung kannst du dich selbst vor S howtoplay.armor.header.1=Handwerk # howtoplay.armor.text.2=Rüstung kannst du aus Leder, Eisen, Gold und Diamanten herstellen. Kettenrüstungen bekommst du beim Handeln mit Dorfbewohnern und beim Plündern von Zombies und Skeletten. # howtoplay.armor.text.3=Lege die Rüstung an, indem du dein Inventar öffnest und die Rüstungsteile in den passenden Slot neben deinem Spieler-Skin verschiebst. # -howtoplay.armor.text.4=Eisen-, Ketten und Goldrüstungen können in einem Ofen zu Eisen- oder Goldklumpen eingeschmolzen werden. # +howtoplay.armor.text.4=Eisen-, Ketten und Goldrüstungen können in einem Schmelzofen zu Eisen- oder Goldklumpen eingeschmolzen werden. # howtoplay.armor.header.2=Schild # howtoplay.armor.text.5.keyboard=Der Schild blockt eingehenden Schaden ab. Einen Schild kannst du im Zweithand-Slot und der Schnellzugriffsleiste ausrüsten. Halte :_input_key.sneak: gedrückt, um mit einem Schild zu blocken. # howtoplay.armor.text.5.gamepad=Der Schild blockt eingehenden Schaden ab. Einen Schild kannst du im Zweithand-Slot und der Schnellzugriffsleiste ausrüsten. Drücke :_input_key.sneak: oder klicke :_gamepad_stick_right:, um mit einem Schild zu blocken. # @@ -3377,14 +3402,14 @@ howtoplay.bedsNew.text.3=Du kannst nur einschlafen, wenn es gemütlich ist, zum howtoplay.blocks=Blöcke # howtoplay.blocks.text.1=Die Welt von Minecraft besteht aus Millionen einzelner Blöcke. Jeder von ihnen kann zerstört, eingesammelt und platziert werden. Deiner Kreativität sind fast keine Grenzen gesetzt. # -howtoplay.blocks.text.2=Die meisten Blöcke musst du dir aus der Welt selbst holen. Einige können jedoch auch durch das Kombinieren anderer Blöcke auf einer Werkbank hergestellt werden (zum Beispiel Redstoneblöcke). Andere könnten in einem Ofen geschmolzen werden (zum Beispiel Glas). # +howtoplay.blocks.text.2=Die meisten Blöcke musst du dir aus der Welt selbst holen. Einige können jedoch auch durch das Kombinieren anderer Blöcke auf einer Werkbank hergestellt werden (zum Beispiel Redstoneblöcke). Andere könnten in einem Schmelzofen geschmolzen werden (zum Beispiel Glas). # howtoplay.blocks.header.1=Fallende Blöcke # howtoplay.blocks.text.3=Die meisten Blöcke werden nicht von der Schwerkraft beeinflusst. Sie können in der Luft schweben. Einige Blöcke, zum Beispiel Sand und Kies, fallen jedoch nach unten, wenn sich kein Block darunter befindet. # howtoplay.blocks.header.2=Interessante Blöcke # howtoplay.blocks.text.4=Hier sind einige Beispiele zu interessanten Blöcken in Minecraft: # -howtoplay.blocks.text.5=§eGlas§f – Dieser Block ist durchsichtig und wird durch das Schmelzen von Sand in einem Ofen hergestellt. # +howtoplay.blocks.text.5=§eGlas§f – Dieser Block ist durchsichtig und wird durch das Schmelzen von Sand in einem Schmelzofen hergestellt. # howtoplay.blocks.text.6=§eBeton§f – Dieser Block wird hergestellt, indem du einen Trockenbetonblock in Wasser wirfst. # -howtoplay.blocks.text.7=§eKeramik§f – Dieser Block ist in Badlands-Biomen zu finden. Er kann aber auch aus unter Wasser gefundenem Ton hergestellt und gefärbt werden. Aus Keramik kannst du durch Schmelzen in einem Ofen glasierte Keramik machen. # +howtoplay.blocks.text.7=§eKeramik§f – Dieser Block ist in Badlands-Biomen zu finden. Er kann aber auch aus unter Wasser gefundenem Ton hergestellt und gefärbt werden. Aus Keramik kannst du durch Schmelzen in einem Schmelzofen glasierte Keramik machen. # howtoplay.blocks.text.8=§eMagma§f – Dieser Block ist im Nether zu finden. Er sorgt für etwas Licht und verbrennt jeden, der darauf tritt. # howtoplay.blocks.text.9=§eGrobe Erde§f – Fast wie normale Erdblöcke. Auf grober Erde kann jedoch kein Gras wachsen. Grobe Erde findest du in Savanne- und Riesentaiga-Biomen. # @@ -3689,14 +3714,14 @@ howtoplay.food.text.1=Bei deinen Abenteuern wirst du langsam hungrig werden – howtoplay.food.text.2.keyboard=Um Nahrung zu essen, wähle sie in deiner Schnellzugriffsleiste aus und halte dann die rechte Maustaste gedrückt. Sorge dafür, dass die §eHungerleiste§f:shank: voll ist, um deine Gesundheit wiederherzustellen, wenn du Schaden nimmst. # howtoplay.food.text.2.gamepad=Um ein Nahrungsmittel zu essen, wähle es in deiner Schnellzugriffsleiste aus, drücke dann :_input_key.use: und halte es gedrückt. Sorge dafür, dass die §eHungerleiste§e:shank: voll ist, um deine Gesundheit wiederherzustellen, wenn du Schaden nimmst. # howtoplay.food.text.2.touch=Um Nahrung zu essen, wähle sie in deiner Schnellzugriffsleiste aus, tippe dann auf den Bildschirm und halte ihn gedrückt. Sorge dafür, dass die §eHungerleiste§f:shank: voll ist, um deine Gesundheit wiederherzustellen, wenn du Schaden nimmst. # -howtoplay.food.text.3=Einige rohe Lebensmittel werden besser, wenn du sie zuerst auf einem Lagerfeuer oder in einem Ofen kochst – dein Magen wird es dir danken! # +howtoplay.food.text.3=Einige rohe Lebensmittel werden besser, wenn du sie zuerst auf einem Lagerfeuer oder in einem Schmelzofen kochst – dein Magen wird es dir danken! # -howtoplay.furnace=Ofen # -howtoplay.furnace.text.1=Mit einem Ofen kannst du kochen und Gegenstände schmelzen. Du kannst beispielsweise Eisenerz zu Eisenbarren schmelzen. # -howtoplay.furnace.text.2.notTouch=Platziere einen Ofen in der Welt und drücke :_input_key.use:, um ihn zu verwenden. # -howtoplay.furnace.text.2.touch=Platziere einen Ofen in der Welt und tippe auf ihn, um den Ofen zu verwenden. # +howtoplay.furnace=Schmelzofen # +howtoplay.furnace.text.1=Mit einem Schmelzofen kannst du kochen und Gegenstände schmelzen. Du kannst beispielsweise Eisenerz zu Eisenbarren schmelzen. # +howtoplay.furnace.text.2.notTouch=Platziere einen Schmelzofen in der Welt und drücke :_input_key.use:, um ihn zu verwenden. # +howtoplay.furnace.text.2.touch=Platziere einen Schmelzofen in der Welt und tippe auf ihn, um den Schmelzofen zu verwenden. # howtoplay.furnace.header.1=Brennstoff # -howtoplay.furnace.text.3=Unten in den Ofen musst du Brennstoff füllen. Der zu schmelzende Gegenstand kommt in die obere Hälfte. Danach wird der Ofen angefeuert und beginnt mit seiner Arbeit. Als Brennstoff kannst du eine Menge Dinge verwenden. Probiere einfach alles Brennbare aus. # +howtoplay.furnace.text.3=Unten in den Schmelzofen musst du Brennstoff füllen. Der zu schmelzende Gegenstand kommt in die obere Hälfte. Danach wird der Schmelzofen angefeuert und beginnt mit seiner Arbeit. Als Brennstoff kannst du eine Menge Dinge verwenden. Probiere einfach alles Brennbare aus. # howtoplay.gameSettings=Spieleinstellungen # howtoplay.gameSettings.text.1=Beim Erstellen einer Welt stehen dir eine Menge Optionen zur Verfügung. Unten findest du die verschiedenen Einstellungen zur Anpassung deiner Welt. Wenn du Einstellungen beim Erstellen der Welt nicht festlegst, kannst du dies jederzeit nachholen. # @@ -3780,14 +3805,14 @@ howtoplay.minecoins.text.1=Erkunde eine Welt voller Möglichkeiten mit Minecoins howtoplay.minecoins.text.2=Nach dem Einlösen werden deine Minecoins mit deinem Microsoft-Konto verknüpft, sodass du auch auf anderen unterstützten Geräten auf deine Münzen und Einkäufe zugreifen kannst! # howtoplay.minecoins.button.text.1=Minecoins erhalten # howtoplay.minecoins.header.1=Rechtliche Hinweise # -howtoplay.minecoins.text.3=*Minecoins erfordern eine Version von Minecraft: Bedrock Edition mit Minecraft Marketplace. Minecoins sind mit Sony PlayStation nicht kompatibel. Informationen zur Kompatibilität findest du unter minecraft.net/minecoins  # +howtoplay.minecoins.text.3=*Minecoins erfordern eine Version von Minecraft: Bedrock Edition mit Minecraft Marketplace. Minecoins sind mit Sony PlayStation® nicht kompatibel. Informationen zur Kompatibilität findest du unter minecraft.net/minecoins  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=Bergbau # howtoplay.mining.title=So wird gespielt: Bergbau # howtoplay.mining.text.1=Nicht alle Werkstoffe befinden sich an der Oberfläche – für manche musst du unter der Erde oder in einem Berg graben. # howtoplay.mining.text.2=Mit einer §eSpitzhacke§f:wood_pickaxe: kannst du alle möglichen Materialien wie Stein, Kohle, Eisen und wertvolle Erze abbauen – für einige seltene Werkstoffe brauchst du allerdings besonders robuste Werkzeuge! # -howtoplay.mining.text.3=Einige Rohmetalle müssen in einem §eOfen§f:furnace: geschmolzen werden. Lege einen Brennstoff wie Kohle oder Holzstämme in den Brennstoff-Slot und füge dann Roherz hinzu, um es zu etwas Nützlichem zu schmelzen. # +howtoplay.mining.text.3=Einige Rohmetalle müssen in einem §eSchmelzofen§f:furnace: geschmolzen werden. Lege einen Brennstoff wie Kohle oder Holzstämme in den Brennstoff-Slot und füge dann Roherz hinzu, um es zu etwas Nützlichem zu schmelzen. # howtoplay.mounts=Reittiere # howtoplay.mounts.text.1=Spieler können auf allen ausgewachsenen §ePferden§f, §eEseln§f, §eMaultieren§f oder §eKamelen§f reiten. Rüstung können nur Pferde tragen. # @@ -3893,7 +3918,7 @@ howtoplay.nightfall=Nachteinbruch # howtoplay.nightfall.text.1=In Minecraft geht die Sonne auf und unter. Nach dem Sonnenuntergang musst du besonders vorsichtig sein. Die Nacht bringt viele Gefahren mit sich. # howtoplay.nightfall.header.1=Schutz suchen # howtoplay.nightfall.text.2=Falls du das noch nicht erledigt hast, solltest du dir einen Ort suchen, an dem du dich vor der Dunkelheit und ihren Gefahren in Sicherheit bringen kannst – zum Beispiel ein einfaches Loch in der Seite eines Hügels oder eine kleine Hütte im Wald. # -howtoplay.nightfall.text.3=Sorge dafür, dass alle Eingänge gut verschlossen sind. Um rein und raus zu kommen, sollen Türen recht hilfreich sein. Wenn du ein Bett gebaut hast, kannst du es zusammen mit deiner Werkbank und deinem Ofen im Unterschlupf platzieren. # +howtoplay.nightfall.text.3=Sorge dafür, dass alle Eingänge gut verschlossen sind. Um rein und raus zu kommen, sollen Türen recht hilfreich sein. Wenn du ein Bett gebaut hast, kannst du es zusammen mit deiner Werkbank und deinem Schmelzofen im Unterschlupf platzieren. # howtoplay.nightfall.text.4=Außerdem solltest du mit Fackeln für Beleuchtung sorgen. Licht kann Leben retten! # howtoplay.nightfallNew=Nachteinbruch # @@ -4145,7 +4170,7 @@ level.editor.export.failed=Projektexport fehlgeschlagen # level.editor.import.failed=Projektimport fehlgeschlagen # level.editor.import.failed.incompatibleEdition=Projektimport ist fehlgeschlagen: Dateiformat wird nicht unterstützt # -inbox.invite.title=Realms-Einladung # +inbox.invite.title=Realm-Einladung zu # invite.clear=Auswahl leeren # invite.send=%d Einladung(en) senden # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=Rot schräglinks geteilt (Invertiert) # item.banner.diagonal_up_right.silver=Hellgrau schräglinks geteilt (Invertiert) # item.banner.diagonal_up_right.white=Weiß schräglinks geteilt (Invertiert) # item.banner.diagonal_up_right.yellow=Gelb schräglinks geteilt (Invertiert) # +item.banner.flow.black=Schwarzer Fluss # +item.banner.flow.blue=Blauer Fluss # +item.banner.flow.brown=Brauner Fluss # +item.banner.flow.cyan=Türkiser Fluss # +item.banner.flow.gray=Grauer Fluss # +item.banner.flow.green=Grüner Fluss # +item.banner.flow.lightBlue=Hellblauer Fluss # +item.banner.flow.lime=Hellgrüner Fluss # +item.banner.flow.magenta=Magenta Fluss # +item.banner.flow.orange=Oranger Fluss # +item.banner.flow.pink=Rosa Fluss # +item.banner.flow.purple=Violetter Fluss # +item.banner.flow.red=Roter Fluss # +item.banner.flow.silver=Hellgrauer Fluss # +item.banner.flow.white=Weißer Fluss # +item.banner.flow.yellow=Gelber Fluss # item.banner.flower.black=Schwarze Blume # item.banner.flower.blue=Blaue Blume # item.banner.flower.brown=Braune Blume # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=Weißer Farbverlauf (Invertiert) # item.banner.gradient_up.yellow=Gelber Farbverlauf (Invertiert) # item.banner.gray.name=Graues Banner # item.banner.green.name=Grünes Banner # +item.banner.guster.black=Schwarzer Guster # +item.banner.guster.blue=Blauer Guster # +item.banner.guster.brown=Brauner Guster # +item.banner.guster.cyan=Türkiser Guster # +item.banner.guster.gray=Grauer Guster # +item.banner.guster.green=Grüner Guster # +item.banner.guster.lightBlue=Hellblauer Guster # +item.banner.guster.lime=Hellgrüner Guster # +item.banner.guster.magenta=Magenta Guster # +item.banner.guster.orange=Oranger Guster # +item.banner.guster.pink=Rosa Guster # +item.banner.guster.purple=Violetter Guster # +item.banner.guster.red=Roter Guster # +item.banner.guster.silver=Hellgrauer Guster # +item.banner.guster.white=Weißer Guster # +item.banner.guster.yellow=Gelber Guster # item.banner.half_horizontal.black=Oben schwarz geteilt # item.banner.half_horizontal.blue=Oben blau geteilt # item.banner.half_horizontal.brown=Oben braun geteilt # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=Akazienboot # item.boat.big_oak.name=Schwarzeichenboot # item.bone.name=Knochen # item.book.name=Buch # +item.breeze_rod.name=Bö-Rute # item.chainmail_boots.name=Kettenstiefel # item.leather_boots.name=Lederstiefel # item.diamond_boots.name=Diamantstiefel # @@ -4991,6 +5049,7 @@ item.comparator.name=Redstone-Vergleicher # item.compass.name=Kompass # item.lodestonecompass.name=Leitsteinkompass # item.cookie.name=Keks # +item.copper_door.name=Kupfertür # item.crossbow.name=Armbrust # item.diamond.name=Diamant # item.repeater.name=Redstone-Verstärker # @@ -5038,6 +5097,7 @@ tile.end_rod.name=Endstab # item.ender_eye.name=Enderauge # item.ender_pearl.name=Enderperle # item.experience_bottle.name=Erfahrungsfläschchen # +item.exposed_copper_door.name=Freiliegende Kupfertür # item.feather.name=Feder # item.fermented_spider_eye.name=Fermentiertes Spinnenauge # item.fireball.name=Feuerkugel # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=Goldhose # item.iron_leggings.name=Eisenhose # item.nautilus_shell.name=Nautilusmuschel # item.heart_of_the_sea.name=Herz des Meeres # +item.mace.name=Streitkolben # item.magma_cream.name=Magmacreme # item.map.name=Karte # item.map.exploration.mansion.name=Waldentdeckerkarte # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=Karte: Savannen-Dorf # item.map.exploration.village_desert.name=Karte: Wüstendorf # item.map.exploration.jungle_temple.name=Karte: Dschungelentforscher # item.map.exploration.swamp_hut.name=Karte: Sumpfentdecker # +item.map.exploration.trial_chambers.name=Prüfungsentdeckerkarte # item.melon.name=Melone # item.milk.name=Milch # item.minecart.name=Lore # @@ -5150,24 +5212,29 @@ item.chest_minecart.name=Güterlore # item.command_block_minecart.name=Lore mit Befehlsblock # item.minecartFurnace.name=Angetriebene Lore # item.hopper_minecart.name=Trichterlore # +item.ominous_bottle.name=Ominöse Flasche # +item.ominous_trial_key.name=Ominöser Prüfungsschlüssel # +item.oxidized_copper_door.name=Oxidierte Kupfertür # item.tnt_minecart.name=TNT-Lore # item.pitcher_pod.name=Kannenkapsel # item.torchflower_seeds.name=Ingwerliliensamen # item.spawn_egg.entity.agent.name=Agenten-Spawn-Ei # item.spawn_egg.entity.armadillo.name=Gürteltier-Spawn-Ei # item.spawn_egg.entity.axolotl.name=Axolotl-Spawn-Ei # -item.spawn_egg.entity.bee.name=Biene-Spawn-Ei # +item.spawn_egg.entity.bee.name=Bienen-Spawn-Ei # +item.spawn_egg.entity.bogged.name=Versunkener-Spawn-Ei # +item.spawn_egg.entity.breeze.name=Brisen-Spawn-Ei # item.spawn_egg.entity.hoglin.name=Hoglin-Spawn-Ei # -item.spawn_egg.entity.cat.name=Katze-Spawn-Ei # -item.spawn_egg.entity.chicken.name=Huhn-Spawn-Ei # +item.spawn_egg.entity.cat.name=Katzen-Spawn-Ei # +item.spawn_egg.entity.chicken.name=Hühner-Spawn-Ei # item.spawn_egg.entity.cow.name=Kuh-Spawn-Ei # item.spawn_egg.entity.cod.name=Kabeljau-Spawn-Ei # item.spawn_egg.entity.ender_dragon.name=Enderdrachen-Spawn-Ei # -item.spawn_egg.entity.goat.name=Ziege-Spawn-Ei # +item.spawn_egg.entity.goat.name=Ziegen-Spawn-Ei # item.spawn_egg.entity.pufferfish.name=Kugelfisch-Spawn-Ei # item.spawn_egg.entity.salmon.name=Lachs-Spawn-Ei # item.spawn_egg.entity.tropicalfish.name=Tropenfisch-Spawn-Ei # -item.spawn_egg.entity.pig.name=Schwein-Spawn-Ei # +item.spawn_egg.entity.pig.name=Schweine-Spawn-Ei # item.spawn_egg.entity.sheep.name=Schaf-Spawn-Ei # item.spawn_egg.entity.npc.name=NPC-Spawn-Ei # item.spawn_egg.entity.npc.failed=Du benötigst Kreativ + Operator, um einen NPC zu spawnen # @@ -5185,7 +5252,7 @@ item.spawn_egg.entity.iron_golem.name=Eisengolem-Spawn-Ei # item.spawn_egg.entity.snow_golem.name=Schneegolem-Spawn-Ei # item.spawn_egg.entity.ocelot.name=Ozelot-Spawn-Ei # item.spawn_egg.entity.parrot.name=Papagei-Spawn-Ei # -item.spawn_egg.entity.horse.name=Pferd-Spawn-Ei # +item.spawn_egg.entity.horse.name=Pferde-Spawn-Ei # item.spawn_egg.entity.llama.name=Lama-Spawn-Ei # item.spawn_egg.entity.trader_llama.name=Händlerlama-Spawn-Ei # item.spawn_egg.entity.polar_bear.name=Eisbär-Spawn-Ei # @@ -5206,7 +5273,7 @@ item.spawn_egg.entity.silverfish.name=Silberfischchen-Spawn-Ei # item.spawn_egg.entity.cave_spider.name=Höhlenspinne-Spawn-Ei # item.spawn_egg.entity.ghast.name=Ghast-Spawn-Ei # item.spawn_egg.entity.magma_cube.name=Magmawürfel-Spawn-Ei # -item.spawn_egg.entity.blaze.name=Lohe-Spawn-Ei # +item.spawn_egg.entity.blaze.name=Lohen-Spawn-Ei # item.spawn_egg.entity.zombie_villager.name=Zombie-Dorfbewohner-Spawn-Ei # item.spawn_egg.entity.zombie_villager_v2.name=Zombie-Dorfbewohner-Spawn-Ei # item.spawn_egg.entity.witch.name=Hexen-Spawn-Ei # @@ -5219,7 +5286,7 @@ item.spawn_egg.entity.shulker.name=Shulker-Spawn-Ei # item.spawn_egg.entity.endermite.name=Endermilbe-Spawn-Ei # item.spawn_egg.entity.evocation_illager.name=Magier-Spawn-Ei # item.spawn_egg.entity.vex.name=Plagegeist-Spawn-Ei # -item.spawn_egg.entity.turtle.name=Meeresschildkröte-Spawn-Ei # +item.spawn_egg.entity.turtle.name=Meeresschildkröten-Spawn-Ei # item.spawn_egg.entity.dolphin.name=Delfin-Spawn-Ei # item.spawn_egg.entity.phantom.name=Phantom-Spawn-Ei # item.spawn_egg.entity.panda.name=Panda-Spawn-Ei # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 - Abteilung # item.record_pigstep.desc=Lena Raine – Pigstep # item.record_otherside.desc=Lena Raine – otherside # item.record_relic.desc=Aaron Cherof - Relikt # +item.record_creator.desc=Lena Raine - Creator # +item.record_creator_music_box.desc=Lena Raine - Creator (Music Box) # +item.record_precipice.desc=Aaron Cherof - Precipice # item.redstone.name=Redstone-Staub # item.reeds.name=Zuckerrohr # item.kelp.name=Seetang # @@ -5324,6 +5394,12 @@ item.iron_sword.name=Eisenschwert # item.stone_sword.name=Steinschwert # item.wooden_sword.name=Holzschwert # item.unbreakable=Unzerstörbar # +item.waxed_copper_door.name=Gewachste Kupfertür # +item.waxed_exposed_copper_door.name=Gewachste freiliegende Kupfertür # +item.waxed_oxidized_copper_door.name=Gewachste oxidierte Kupfertür # +item.waxed_weathered_copper_door.name=Gewachste verwitterte Kupfertür # +item.weathered_copper_door.name=Verwitterte Kupfertür # +item.wind_charge.name=Windladung # item.wheat.name=Weizen # item.wolf_armor.name=Wolfsrüstung # item.writable_book.name=Buch und Feder # @@ -5331,6 +5407,7 @@ item.written_book.name=Beschriebenes Buch # item.glowstone_dust.name=Glowstone-Staub # item.shulker_shell.name=Shulkerhülle # item.totem.name=Totem der Unsterblichkeit # +item.trial_key.name=Prüfungsschlüssel # item.turtle_helmet.name=Schildkrötenpanzer # item.turtle_shell_piece.name=Schildkröten-Hornschuppe # item.phantom_membrane.name=Phantommembrane # @@ -5338,8 +5415,10 @@ item.sweet_berries.name=Süße Beeren # item.suspicious_stew.name=Verdächtige Suppe # item.banner_pattern.bricks=Gemauertes Feld # item.banner_pattern.creeper=Creeper # +item.banner_pattern.flow=Fluss # item.banner_pattern.flower=Blume # item.banner_pattern.globe=Globus # +item.banner_pattern.guster=Guster # item.banner_pattern.name=Bannermuster # item.banner_pattern.piglin=Schnauze # item.banner_pattern.skull=Schädel # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=Bannermuster # itemGroup.name.netherWartBlock=Netherwarzen # itemGroup.name.candles=Kerzen # itemGroup.name.goatHorn=Ziegenhörner # +itemGroup.name.compounds=Zusammensetzungen # +itemGroup.name.products=Produkte # jigsaw.title.target_pool=Zielmenge: # jigsaw.title.name=Name: # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=KLASSENRAUMEINSTELLUNGEN # menu.serverStore=%s Store # menu.serverGenericName=Server # menu.play=Spielen # +menu.profile=Profil # menu.playdemo=Demo-Welt spielen # menu.playOnRealms=Auf Realm spielen # menu.quickplay=Schnelles Spiel # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=Wähle deinen Startcharakter # menu.character_cast.preview_title=Lerne das Team kennen! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Realms-Server ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=Server # merchant.deprecated=Handle etwas anderes, um ein neues Angebot freizuschalten! # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=Vollständiges Tastatur-Gameplay # options.fullKeyboardLayout=Vollständiges Tastatur-Layout # options.improvedInputResponsePlaceholder=Verbesserte Eingabereaktion # options.improvedInputResponsePlaceholder.tooltip=Verringert die Verzögerung zwischen deiner Eingabe und dem, was du auf deinem Bildschirm siehst. Diese Einstellung verbraucht möglicherweise mehr Akkuladung. # +options.dynamicTexturesToggle=Texturlimit entfernen # +options.dynamicTexturesToggle.tooltip=Nach dem Umschalten diese Option muss das Spiel neu gestartet werden. Es kann zu Instabilität führen, wenn mehrere Add-ons oder Ressourcenpakete mit vielen Texturen verwendet werden. # +options.dynamicTextures.popUp=Wenn du "Texturlimit entfernen" aktivierst, musst du das Spiel neu starten, um es zu deaktivieren. # +options.dynamicTextures.popUp.title=Bist du sicher? # options.fullscreen=Vollbildmodus # options.gamepadcursorsensitivity=Controller-Cursor-Empfindlichkeit # options.gamertag=Gamertag: # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=Verbinden # options.creator.debuggerListen=Lauschen # options.creator.debuggerHost=Hosten # options.creator.debuggerPort=Port # +options.creator.watchdogHeading=Skript-Watchdog-Einstellungen # +options.creator.watchdogSlowWarning=Warnungen zu langsamen Skripten # +options.creator.watchdogSlowThreshold=Durchschnitt übertrifft # +options.creator.watchdogSlowFormat=%s Millisekunden # +options.creator.watchdogSlowFormatDefault=%s Millisekunden (Standard) # +options.creator.watchdogSpikeWarning=Warnungen zu Auslastungsspitzen in Skripten # +options.creator.watchdogSpikeThreshold=Spitze übersteigt # +options.creator.watchdogSpikeFormat=%s Millisekunden # +options.creator.watchdogSpikeFormatDefault=%s Millisekunden (Standard) # +options.creator.watchdogHangThreshold=Unterbrechung nach # +options.creator.watchdogHangFormat=%s Sekunden # +options.creator.watchdogHangFormatDefault=%s Sekunden (Standard) # options.vr_classic_box_selection=Rahmenauswahl # options.hidegamepadcursor=Controller-Cursor ausblenden # options.hidegui=GUI ausblenden # @@ -6662,7 +6761,7 @@ options.makeBackup=Eine Backup-Kopie meiner Welt erstellen # options.managePrivacy=Öffne https://account.xbox.com/Settings in einem beliebigen Webbrowser, um deine Datenschutzeinstellungen zu verwalten. ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Verknüpfung für Microsoft-Konto aufheben # options.unlink_msa.confirm.title=Verknüpfung für Microsoft-Konto aufheben? # -options.unlink_msa.confirm.warning=WARNUNG: Wenn du die Verknüpfung aufhebst, kannst du innerhalb von %s den auf deinem "PlayStation 4"-System erzielten Fortschritt und dort getätigte Käufe nicht mehr auf deinem Konto speichern. # +options.unlink_msa.confirm.warning=WARNUNG: Wenn du die Verknüpfung aufhebst, kannst du innerhalb von %s den auf deinem PlayStation®4-System erzielten Fortschritt und dort getätigte Käufe nicht mehr auf deinem Konto speichern. #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=Das Aufheben der Verknüpfung deines Microsoft-Kontos in diesem Spiel wirkt sich auf alle Minecraft-Spiele auf dieser Plattform aus, die dieses Microsoft-Konto verwendet haben. # options.unlink_msa.confirm.checkbox1=Ich habe keinen Zugriff mehr auf Store-Inhalte im Spiel, wenn ich auf anderen Plattformen spiele. # options.unlink_msa.confirm.checkbox2=Ich habe nicht mehr die Möglichkeit, plattformübergreifend mit Freunden auf anderen Plattformen zu spielen. # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=Lade eine Welt, um die Steuerung anzupass hudScreen.controlCustomization.tooltip.notouch=Verwende ein Touch-Gerät, um die Steuerung anzupassen # hudScreen.controlCustomization.tooltip.alreadycustomizing=Es ist bereits ein Bildschirm zur Anpassung der Touch-Steuerung geöffnet. # hudScreen.controlCustomization.tooltip.alive=Der Spieler muss am Leben sein, um die Steuerung anzupassen. # +hudScreen.daysPlayed=Tage gespielt: %s # +hudScreen.daysPlayed.overflow=Unzählige! # playscreen.fileSize.MB=MB # playscreen.fileSize.GB=GB # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=Wurftrank der Heilung # potion.heal.linger.name=Verweiltrank der Heilung # potion.healthBoost=Gesundheitsbonus # potion.hunger=Hunger # +potion.infested.linger.name=Verweiltrank der Verseuchung # +potion.infested.name=Trank der Verseuchung # +potion.infested.splash.name=Wurftrank der Verseuchung # +potion.infested=Verseucht # potion.invisibility=Unsichtbarkeit # potion.invisibility.name=Trank der Unsichtbarkeit # potion.invisibility.splash.name=Wurftrank der Unsichtbarkeit # @@ -7067,6 +7172,10 @@ potion.nightVision=Nachtsicht # potion.nightVision.name=Trank der Nachtsicht # potion.nightVision.splash.name=Wurftrank der Nachtsicht # potion.nightVision.linger.name=Verweiltrank der Nachtsicht # +potion.oozing.linger.name=Verweiltrank des Sickerns # +potion.oozing.name=Trank des Sickerns # +potion.oozing.splash.name=Wurftrank des Sickerns # +potion.oozing=Sickernd # potion.poison=Vergiftung # potion.poison.name=Trank der Vergiftung # potion.poison.splash.name=Wurftrank der Vergiftung # @@ -7108,6 +7217,14 @@ potion.weakness=Schwäche # potion.weakness.name=Trank der Schwäche # potion.weakness.splash.name=Wurftrank der Schwäche # potion.weakness.linger.name=Verweiltrank der Schwäche # +potion.weaving.linger.name=Verweiltrank des Webens # +potion.weaving.name=Trank des Webens # +potion.weaving.splash.name=Wurftrank des Webens # +potion.weaving=Weben # +potion.windCharged.linger.name=Verweiltrank des Windladens # +potion.windCharged.name=Trank des Windladens # +potion.windCharged.splash.name=Wurftrank des Windladens # +potion.windCharged=Windgeladen # potion.wither=Wither # potion.wither.name=Trank des Verfalls # potion.wither.splash.name=Wurftrank des Verfalls # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=Diese Welt kann aufgrund eines Verzei progressScreen.message.forbiddenContent=Du besitzt eines oder mehrere der angewendeten Pakete nicht # progressScreen.message.loadingSplitScreenAppearances=Laden von Splitscreen-Ansichten ... # progressScreen.message.finishedLoadingSplitScreenAppearances=Laden der Splitscreen-Ansicht abgeschlossen. # -progressScreen.message.modifiedWorldWarning=Diese Welt könnte anders aussehen und sich anders verhalten als nicht-modifizierte Welten, und du kannst keine Erfolge verdienen. # +progressScreen.message.modifiedWorldWarning.1=Du spielst in einer Welt mit Add-ons! Dadurch werden deiner Minecraft-Welt neue Funktionen hinzugefügt. # +progressScreen.message.modifiedWorldWarning.2=Höre nicht bei nur einem auf! Du kannst mehrere Add-ons gleichzeitig in eine Welt laden. # +progressScreen.message.modifiedWorldWarning.3=Tipp für Fortgeschrittene: Ein Ressourcenpaket kann die Texturen verschiedener Blöcke und Entitäten verändern. # +progressScreen.message.modifiedWorldWarning.4=Tipp für Fortgeschrittene: Ein Verhaltenspaket kann die Funktionsweise verschiedener Gegenstände, Entitäten oder Blöcke ändern. # +progressScreen.message.modifiedWorldWarning.5=Tipp für Fortgeschrittene: Ein Add-on enthält sowohl ein Verhaltenspaket als auch ein Ressourcenpaket. Vergewissere dich, dass beide Pakete aktiviert sind, um sicherzustellen, dass das Add-on funktioniert! # +progressScreen.message.modifiedWorldWarning.6=Add-ons fügen neue Blöcke, Gegenstände oder Kreaturen zu deinen Welten hinzu. # +progressScreen.message.modifiedWorldWarning.7=Welten und Add-ons sind komplex! Während einige hervorragend zusammenarbeiten, könnte es bei anderen seltsame Ergebnisse geben. # +progressScreen.message.modifiedWorldWarning.8=Mehr Add-ons bedeuten mehr Spaß, aber das Laden des Spiels kann länger dauern. # progressScreen.dialog.title.resourcePack=Ressourcenpakete herunterladen? # progressScreen.dialog.title.behaviorAndResourcePack=Welt-Verhaltens und -Ressourcenpakete herunterladen? # progressScreen.dialog.title.onlyBehavior=Welt-Verhaltenspakete herunterladen? # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=Welt aktualisieren? # resourcePack.warning.add.body=Diese Welt könnte anders aussehen und sich anders verhalten als nicht-modifizierte Welten. Du solltest eine Kopie deiner Welt speichern, bevor du fortfährst. # resourcePack.warning.add.button.cancel=Paket nicht hinzufügen # resourcePack.warning.add.button.ok=Paket trotzdem hinzufügen # +resourcePack.warnings.contentKeyErrorBody=Es gab ein Problem beim Laden des Pakets %s. # +resourcePack.warnings.contentKeyErrorBodyMultiple=Es gab ein Problem beim Laden der Pakete %s. # +resourcePack.warnings.contentKeyErrorTitle=Fehler! # resourcePack.warning.remove.title=Das ist gefährlich! # resourcePack.warning.remove.body=Das Hinzufügen oder Entfernen von Paketen, nachdem eine Welt gespielt wurde, kann die Welt zerstören und dafür sorgen, dass du verlierst, was du erschaffen hast. # resourcePack.warning.remove.button.cancel=Paket behalten # @@ -7455,7 +7582,7 @@ item.spawn_egg.entity.allay.name=Hilfsgeist-Spawn-Ei # action.interact.allay=Gegenstand dem Hilfsgeist geben # item.bucketTadpole.name=Eimer voll Kaulquappen # item.spawn_egg.entity.frog.name=Frosch-Spawn-Ei # -item.spawn_egg.entity.tadpole.name=Kaulquappe-Spawn-Ei # +item.spawn_egg.entity.tadpole.name=Kaulquappen-Spawn-Ei # tile.frog_spawn.name=Froschlaich # tile.pearlescent_froglight.name=Perlmuttfarbenes Froschlicht # tile.verdant_froglight.name=Grünliches Froschlicht # @@ -7557,7 +7684,9 @@ item.crimson_hanging_sign.name=Karmesinhängeschild # item.danger_pottery_sherd.name=Gefahren-Keramikscherbe # item.dark_oak_hanging_sign.name=Schwarzeichenhängeschild # item.explorer_pottery_sherd.name=Entdecker-Keramikscherbe # +item.flow_pottery_sherd.name=Fluss-Keramikscherbe # item.friend_pottery_sherd.name=Freund-Keramikscherbe # +item.guster_pottery_sherd.name=Guster-Keramikscherbe # item.heart_pottery_sherd.name=Herz-Keramikscherbe # item.heartbreak_pottery_sherd.name=Herzschmerz-Keramikscherbe # item.howl_pottery_sherd.name=Heulen-Keramikscherbe # @@ -7568,6 +7697,7 @@ item.mourner_pottery_sherd.name=Trauernder-Keramikscherbe # item.oak_hanging_sign.name=Eichenhängeschild # item.plenty_pottery_sherd.name=Überfluss-Keramikscherbe # item.prize_pottery_sherd.name=Preis-Keramikscherbe # +item.scrape_pottery_sherd.name=Kratzer-Keramikscherbe # item.sheaf_pottery_sherd.name=Bündel-Keramikscherbe # item.shelter_pottery_sherd.name=Unterschlupf-Keramikscherbe # item.skull_pottery_sherd.name=Schädel-Keramikscherbe # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=Kirschholz-Treppe # tile.cherry_trapdoor.name=Kirschholz-Falltür # tile.cherry_wood.name=Kirschholz # tile.chiseled_bookshelf.name=Gemeißeltes Bücherregal # +tile.chiseled_tuff.name=Gemeißelter Tuff # +tile.chiseled_tuff_bricks.name=Gemeißelte Tuffziegel # tile.decorated_pot.name=Dekorierter Topf # tile.pink_petals.name=Rosa Blütenblätter # tile.stripped_bamboo_block.name=Abgestreifter Bambusblock # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=Plagegeistrüstung-Zierleiste # trim_pattern.ward.name=Wachrüstung-Zierleiste # trim_pattern.wayfinder.name=Wegweiser-Rüstungszierleiste # trim_pattern.wild.name=Wilde-Rüstung-Zierleiste # +trim_pattern.bolt.name=Bolzenrüstung-Zierleiste # +trim_pattern.flow.name=Flussrüstung-Zierleiste # upgrade.netherite_upgrade.name=Netherit-Upgrade # storageManager.mainSizeLabel=%s - 1 Gegenstand # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=Weltvorlage löschen? # selectTemplate.delete=Löschen # selectTemplate.myTemplates=Meine Weltvorlagen # selectTemplate.realmsPlus=Vorgestellte Realms Plus-Vorlagen # -selectTemplate.marketplacePass=Vorgestellte Vorlagen für den Marketplace Pass #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=Vorgestellte Inhalte für den Marketplace Pass #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=Importierte Vorlagen # selectTemplate.download=Herunterladen # selectTemplate.noTemplates=Auf diesem Gerät gibt es keine Weltvorlagen. # -selectTemplate.suggestedContent.title=Im Marketplace vorgestellte Vorlagen # +selectTemplate.suggestedContent.title=Vorgestellte Marketplace-Inhalte # selectTemplate.suggestedContent.button=Weitere Vorlagen anzeigen # selectTemplate.createdBy=Erstellt von %s # selectTemplate.inventory=Meine Marketplace-Pakete # @@ -7984,7 +8118,7 @@ stat.fallOneCm=Gefallene Strecke # stat.fishCaught=Gefangene Fische # stat.flowerPotted=Eingetopfte Pflanzen # stat.flyOneCm=Geflogene Strecke # -stat.furnaceInteraction=Interaktionen mit Ofen # +stat.furnaceInteraction=Interaktionen mit Schmelzofen # stat.generalButton=Allgemein # stat.hopperInspected=Durchsuchte Trichter # stat.horseOneCm=Auf Pferd gerittene Strecke # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=Wir hatten ein Problem beim Herstellen der Verbin store.loading.error.issues=Hmm, bei Marketplace sind ein paar Probleme aufgetreten. Bitte versuche später, dich zu verbinden. # store.loading.error.internetDown=Wir können keine Internetverbindung feststellen. # store.loading.error.account=Es gibt ein Problem mit deinem Konto. Versuche es später erneut und kontaktiere den Support, sollte das Problem weiterhin bestehen. # +store.loading.error.account.banned=Du kannst den Marketplace erst nutzen, wenn deine Sperre abgelaufen ist. # store.giftPromo.day=Tag %s ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=Beansprucht # @@ -8405,10 +8540,17 @@ store.mashup.count.skin=1 Skin # store.mashup.count.skins=%s Skins # store.mashup.count.texturePack=1 Texturpaket # store.mashup.count.texturePacks=%s Texturpakete #number of texture packs # -store.mashup.count.world=1 Welt # +store.mashup.count.world=1 Welt # store.mashup.count.worlds=%s Welten #number of worlds # store.mashup.count.addonPack=1 Add-On # store.mashup.count.addonPacks=%s Add-Ons #number of addons # +store.mashup.count.mashup=Mash-up # +store.mashup.hover.label.addonPack=Add-ons können auf jede Welt angewendet werden. # +store.mashup.hover.label.world=Eine handgefertigte Minecraft-Karte. # +store.mashup.hover.label.skin=Verleihe deinem Charakter ein neues Aussehen. # +store.mashup.hover.label.texturePack=Erweitere deine Welt oder Spieloberfläche mit neuen Grafiken. # +store.mashup.hover.label.mashup.lineOne=Eine Kombination aus verschiedenen Arten von Inhalten. # +store.mashup.hover.label.mashup.lineTwo=Dieses Mash-up enthält: # store.addon.activateAddonPack=Add-On aktivieren! # store.addon.newOrExistingTitle=Wo hinzufügen? # @@ -8808,7 +8950,7 @@ tile.moss_block.name=Moosblock # tile.moss_carpet.name=Moosteppich # tile.birchFence.name=Birkenzaun # tile.birch_fence_gate.name=Birkenzauntor # -tile.blast_furnace.name=Schmelzofen # +tile.blast_furnace.name=Hochofen # tile.bone_block.name=Knochenblock # tile.coal_block.name=Kohleblock # tile.diamond_block.name=Diamantblock # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=Tafel # tile.chest.name=Truhe # tile.ender_chest.name=Endertruhe # tile.jigsaw.name=Verbundblock # +tile.heavy_core.name=Schwerer Kern # tile.honey_block.name=Honigblock # tile.honeycomb_block.name=Honigwabenblock # tile.lodestone.name=Leitstein # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=Polierte Schwarzsteinstufe # tile.polished_blackstone_pressure_plate.name=Polierte Schwarzsteindruckplatte # tile.polished_blackstone_button.name=Polierter Schwarzsteinschalter # tile.polished_blackstone_wall.name=Polierte Schwarzsteinmauer # +tile.polished_tuff.name=Polierter Tuff # +tile.polished_tuff_slab.name=Polierte Tuffstufe # +tile.polished_tuff_stairs.name=Polierte Tufftreppe # +tile.polished_tuff_wall.name=Polierte Tuffwand # tile.soul_campfire.name=Seelenlagerfeuer # tile.chiseled_nether_bricks.name=Gemeißelte Netherziegel # tile.cracked_nether_bricks.name=Rissige Netherziegel # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=Gelbe Keramik # tile.structure_block.name=Konstruktionsblock # structure_block.waterlog_block=Wasseraufnahme-Blöcke # tile.structure_void.name=Konstruktionsleere # +tile.trial_spawner.name=Prüfungsspawner # +tile.vault.name=Tresor # tile.wool.black.name=Schwarze Wolle # tile.wool.blue.name=Blaue Wolle # tile.wool.brown.name=Braune Wolle # @@ -8996,10 +9145,10 @@ tile.wool.name=Wolle # tile.wool.orange.name=Orange Wolle # tile.wool.pink.name=Rosa Wolle # tile.wool.purple.name=Violette Wolle # -tile.wool.red.name=Wolle Rot # +tile.wool.red.name=Rote Wolle # tile.wool.silver.name=Hellgraue Wolle # tile.wool.white.name=Weiße Wolle # -tile.wool.yellow.name=Wolle Gelb # +tile.wool.yellow.name=Gelbe Wolle # tile.cobblestone_wall.mossy.name=Bemooste Bruchsteinmauer # tile.cobblestone_wall.normal.name=Bruchsteinmauer # tile.cobblestone_wall.granite.name=Granitmauer # @@ -9071,7 +9220,7 @@ tile.red_flower.tulipPink.name=Rosa Tulpe # tile.red_flower.tulipRed.name=Rote Tulpe # tile.red_flower.tulipWhite.name=Weiße Tulpe # tile.wither_rose.name=Wither-Rose # -tile.furnace.name=Ofen # +tile.furnace.name=Schmelzofen # tile.glass.name=Glas # tile.golden_rail.name=Antriebsschiene # tile.grass.name=Grasblock # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=Farn # tile.tallgrass.grass.name=Gras # tile.tallgrass.name=Gras # tile.tallgrass.shrub.name=Strauch # +tile.tuff_brick_slab.name=Tuffziegelstufe # +tile.tuff_brick_stairs.name=Tuffziegeltreppe # +tile.tuff_brick_wall.name=Tuffziegelmauer # +tile.tuff_bricks.name=Tuffziegel # +tile.tuff_slab.name=Tuffstufe # +tile.tuff_stairs.name=Tufftreppe # +tile.tuff_wall.name=Tuffwand # tile.seagrass.seagrass.name=Seegras # tile.sea_pickle.name=Seegurke # tile.turtle_egg.name=Meeresschildkrötenei # @@ -9396,7 +9552,7 @@ tile.wooden_slab.name=Holzstufe # tile.wooden_slab.oak.name=Eichenstufe # tile.wooden_slab.spruce.name=Fichtenstufe # tile.carpet.black.name=Schwarzer Teppich # -tile.carpet.blue.name=Teppich Blau # +tile.carpet.blue.name=Blauer Teppich # tile.carpet.brown.name=Brauner Teppich # tile.carpet.cyan.name=Türkiser Teppich # tile.carpet.gray.name=Grauer Teppich # @@ -9408,10 +9564,11 @@ tile.carpet.name=Teppich # tile.carpet.orange.name=Oranger Teppich # tile.carpet.pink.name=Rosa Teppich # tile.carpet.purple.name=Violetter Teppich # -tile.carpet.red.name=Teppich Rot # +tile.carpet.red.name=Roter Teppich # tile.carpet.silver.name=Hellgrauer Teppich # tile.carpet.white.name=Weißer Teppich # -tile.carpet.yellow.name=Teppich Gelb # +tile.carpet.yellow.name=Gelber Teppich # +tile.crafter.name=Handwerker # tile.crafting_table.name=Werkbank # tile.glazedTerracotta.white.name=Weiße glasierte Keramik # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=Gewachste geschliffene Kupferstufe # tile.waxed_exposed_cut_copper_slab.name=Gewachste freiliegende geschliffene Kupferstufe # tile.waxed_weathered_cut_copper_slab.name=Gewachste verwitterte geschliffene Kupferstufe # tile.waxed_oxidized_cut_copper_slab.name=Gewachste oxidierte geschliffene Kupferstufe # + +tile.chiseled_copper.name=Gemeißeltes Kupfer # +tile.exposed_chiseled_copper.name=Freiliegendes gemeißeltes Kupfer # +tile.oxidized_chiseled_copper.name=Oxidiertes gemeißeltes Kupfer # +tile.waxed_chiseled_copper.name=Gewachstes gemeißeltes Kupfer # +tile.waxed_exposed_chiseled_copper.name=Gewachstes freiliegendes gemeißeltes Kupfer # +tile.waxed_oxidized_chiseled_copper.name=Gewachstes oxidiertes gemeißeltes Kupfer # +tile.waxed_weathered_chiseled_copper.name=Gewachstes verwittertes gemeißeltes Kupfer # +tile.weathered_chiseled_copper.name=Verwittertes gemeißeltes Kupfer # + +tile.copper_bulb.name=Kupferbirne # +tile.exposed_copper_bulb.name=Freiliegende Kupferbirne # +tile.oxidized_copper_bulb.name=Oxidierte Kupferbirne # +tile.waxed_copper_bulb.name=Gewachste Kupferbirne # +tile.waxed_exposed_copper_bulb.name=Gewachste freiliegende Kupferbirne # +tile.waxed_oxidized_copper_bulb.name=Gewachste oxidierte Kupferbirne # +tile.waxed_weathered_copper_bulb.name=Gewachste verwitterte Kupferbirne # +tile.weathered_copper_bulb.name=Verwitterte Kupferbirne # + +tile.copper_door.name=Kupfertür # +tile.exposed_copper_door.name=Freiliegende Kupfertür # +tile.oxidized_copper_door.name=Oxidierte Kupfertür # +tile.waxed_copper_door.name=Gewachste Kupfertür # +tile.waxed_exposed_copper_door.name=Gewachste freiliegende Kupfertür # +tile.waxed_oxidized_copper_door.name=Gewachste oxidierte Kupfertür # +tile.waxed_weathered_copper_door.name=Gewachste verwitterte Kupfertür # +tile.weathered_copper_door.name=Verwitterte Kupfertür # + +tile.copper_grate.name=Kupfergitter # +tile.exposed_copper_grate.name=Freiliegendes Kupfergitter # +tile.oxidized_copper_grate.name=Oxidiertes Kupfergitter # +tile.waxed_copper_grate.name=Gewachstes Kupfergitter # +tile.waxed_exposed_copper_grate.name=Gewachstes freiliegendes Kupfergitter # +tile.waxed_oxidized_copper_grate.name=Gewachstes oxidiertes Kupfergitter # +tile.waxed_weathered_copper_grate.name=Gewachstes verwittertes Kupfergitter # +tile.weathered_copper_grate.name=Verwittertes Kupfergitter # + +tile.copper_trapdoor.name=Kupferfalltür # +tile.exposed_copper_trapdoor.name=Freiliegende Kupferfalltür # +tile.oxidized_copper_trapdoor.name=Oxidierte Kupferfalltür # +tile.waxed_copper_trapdoor.name=Gewachste Kupferfalltür # +tile.waxed_exposed_copper_trapdoor.name=Gewachste freiliegende Kupferfalltür # +tile.waxed_oxidized_copper_trapdoor.name=Gewachste oxidierte Kupferfalltür # +tile.waxed_weathered_copper_trapdoor.name=Gewachste verwitterte Kupferfalltür # +tile.weathered_copper_trapdoor.name=Verwitterte Kupferfalltür # + tile.raw_copper_block.name=Rohkupferblock # tile.raw_iron_block.name=Roheisenblock # tile.raw_gold_block.name=Rohgoldblock # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=Pfeil des Glücks # tipped_arrow.effect.wither=Pfeil des Verfalls # tipped_arrow.effect.turtleMaster=Pfeil des Schildkrötenmeisters # tipped_arrow.effect.slowFalling=Pfeil des langsamen Falls # +tipped_arrow.effect.infested=Pfeil der Verseuchung # +tipped_arrow.effect.oozing=Pfeil des Sickerns # +tipped_arrow.effect.weaving=Pfeil des Webens # +tipped_arrow.effect.windCharged=Pfeil des Windladens # structure_block.title=Konstruktionsblock # structure_block.structure_name=Konstruktionsname # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=Unter Umständen gingen die letzten Ä worldError.worldFailedRecovery=Wiederherstellung fehlgeschlagen # worldError.worldFailedRecoveryText=Eine beschädigte Welt konnte nicht wiederhergestellt werden. # +writeThrottling.osDialog.body=Der angeforderte Vorgang wird schätzungsweise %d Minuten dauern. Bitte schalte dein Gerät währenddessen nicht aus. # +writeThrottling.osDialog.cancel=Vorgang abbrechen # +writeThrottling.osDialog.confirm=Weiter # +writeThrottling.progressBar.title=Daten werden vorbereitet # +writeThrottling.progressBar.body=Deine Dateien werden vorbereitet ... # + userData.recovered.title=Spielstand wiederhergestellt # userData.recovered.text=Deine beschädigten Nutzereinstellungen wurden erfolgreich wiederhergestellt. # userData.recovered.warning=Unter Umständen gingen die letzten Änderungen verloren. # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=Chatnachricht # xbox.report.area.skin=Spieler-Skin # xbox.report.area.gameplay=Spielmechanik # xbox.report.area.ingame=Kreationen im Spiel # -xbox.report.area.other=Anderes # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=Cybermobbing # @@ -10302,7 +10514,7 @@ midgameTips.10=Obsidian entsteht, wenn Wasser auf einen Lavaquellblock trifft. # midgameTips.11=Wenn der Quellblock für Wasser oder Lava entfernt wird, verschwindet der Strom vollständig. # midgameTips.12=Blöcke, die als Lichtquelle verwendet werden können, lassen Schnee und Eis schmelzen. # midgameTips.13=Sei vorsichtig, wenn du Konstruktionen aus Wolle im Freien baust, denn Blitze von Gewittern können Wolle in Brand setzen. # -midgameTips.14=Ein einziger Eimer Lava reicht aus, um 100 Blöcke in einem Ofen zu schmelzen. # +midgameTips.14=Ein einziger Eimer Lava reicht aus, um 100 Blöcke in einem Schmelzofen zu schmelzen. # midgameTips.15=Das Instrument, das von einem Notenblock gespielt wird, hängt von dem Material unter ihm ab. # midgameTips.16=Wenn du einen Wolf angreifst, werden alle Wölfe in der Nähe feindselig und greifen dich an. # midgameTips.17=Wölfe und Eisengolems greifen keine Creeper an. # @@ -10310,7 +10522,7 @@ midgameTips.18=Hühner legen alle 5 bis 10 Minuten ein Ei. # midgameTips.19=Obsidian kann mit einer Diamantspitzhacke abgebaut werden. # midgameTips.20=Creeper sind die am leichtesten verfügbare Quelle für Schießpulver. # midgameTips.21=Zahme Wölfe zeigen ihre Gesundheit durch die Stellung ihrer Rute an. Füttere sie mit Fleisch, um sie zu heilen. # -midgameTips.22=Farbstoffe können aus einer Vielzahl von Materialien hergestellt werden. Koche Kakteen in einem Ofen, um grünen Farbstoff zu erhalten! # +midgameTips.22=Farbstoffe können aus einer Vielzahl von Materialien hergestellt werden. Koche Kakteen in einem Schmelzofen, um grünen Farbstoff zu erhalten! # midgameTips.23=Schweine, die von Blitzen getroffen werden, werden zu Zombie-Piglins. # midgameTips.24=Endermen hassen baden! # midgameTips.25=Manchmal schenken Eisengolems den Kindern von Dorfbewohnern Blumen! # @@ -10331,7 +10543,7 @@ midgameTips.39=Leinen kannst du für Boote verwenden. # midgameTips.40=Schleiche, um auf Magmablöcken sicher gehen zu können. # midgameTips.41=Du kannst Spinnweben mit einer Schere einsammeln. # midgameTips.42=Dreizacke werden von den Ertrunkenen fallen gelassen. Sie können gehalten oder geworfen werden. # -midgameTips.43=Du kannst 20 Gegenstände in einem Ofen schmelzen, indem du einen Block getrockneten Seetang als Brennstoff verwendest. # +midgameTips.43=Du kannst 20 Gegenstände in einem Schmelzofen schmelzen, indem du einen Block getrockneten Seetang als Brennstoff verwendest. # midgameTips.44=Die Zähmung eines Skelettpferdes erfordert keinen Sattel. # midgameTips.45=Phantome sind gefährliche Kreaturen, die nachts auftauchen. Achte auf regelmäßigen Schlaf! # midgameTips.46=Zombies werden zu Ertrunkenen, wenn sie unter Wasser sinken. # @@ -10354,7 +10566,7 @@ midgameTips.62=Wenn du in den dunklen Tiefen unterwegs bist, ist Stille entschei midgameTips.63=Einige Tiere folgen dir, wenn du Weizen in der Hand hast. # midgameTips.64=Bevor du Diamanten, Redstone oder Gold abbaust, solltest du sichergehen, dass du eine Eisen-, Netherit- oder Diamantspitzhacke verwendest. Sonst wirst du nichts einsammeln können. # midgameTips.65=Wenn du zwei Truhen Seite an Seite platzierst, entsteht eine große Truhe. # -midgameTips.66=Findest du keine Kohle für deine Fackeln? Schau, was passiert, wenn du einige Stämme in einen Ofen legst. # +midgameTips.66=Findest du keine Kohle für deine Fackeln? Schau, was passiert, wenn du einige Stämme in einen Schmelzofen legst. # midgameTips.67=Unendliche Wunder, endlose Möglichkeiten. # midgameTips.68=Pflanze einige Setzlinge und sie wachsen zu Bäumen heran. # midgameTips.69=Verwende eine Hacke, um den Boden zum Bepflanzen vorzubereiten. # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=Leider konnten wir keine Verbindung aufbau gathering.connect.title=Verbinden ... # gathering.info.qr.title.onlineService=Mehr erfahren # gathering.info.qr.body.onlineService.nso=Du benötigst eine Nintendo Switch-Online-Mitgliedschaft, um einem Event in Minecraft beitreten zu können. # -gathering.info.qr.body.onlineService.psn=Du musst bei \„PlayStation Plus\“ angemeldet sein, um einem Event in Minecraft beizutreten. # +gathering.info.qr.body.onlineService.psn=Du musst bei PlayStation®Plus angemeldet sein, um einem Event in Minecraft beizutreten. #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=Du musst angemeldet sein, um einem Event in Minecraft beizutreten. # gathering.info.qr.title.childAccount=Online-Spiel nicht erlaubt # gathering.info.qr.body.childAccount=Deine aktuellen Altersbeschränkungen hindern dich daran, online zu spielen. # diff --git a/resource_pack/texts/el_GR.lang b/resource_pack/texts/el_GR.lang index 028a0f915..b6eb98d7a 100644 --- a/resource_pack/texts/el_GR.lang +++ b/resource_pack/texts/el_GR.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=Επιλογή Φύτρου # accessibility.start.feedback=Σύνδεση προς την τοποθεσία web υποβολής σχολίων # accessibility.start.new=Νέο # -accessibility.start.profile=Επιλογή προφίλ # accessibility.start.skinPicker=Επιλογή εμφάνισης # accessibility.store.tag=Ετικέτα # @@ -1094,10 +1093,6 @@ commands.me.description=Εμφανίζει ένα μήνυμα για εσένα commands.message.display.incoming=Ο παίκτης %1$s σου ψιθυρίζει: %2$s # commands.message.display.outgoing=Ψιθυρίζεις στον παίκτη %1$s: %2$s # commands.message.sameTarget=Δεν μπορείς να στείλεις προσωπικό μήνυμα στον εαυτό σου! # -commands.message.warn=§4Έχεις λάβει μια προειδοποίηση. Η συμπεριφορά σου μπορεί να θεωρηθεί προσβλητική από άλλους παίκτες. Να σκέφτεσαι τους συμπαίκτες σου. # -commands.message.toastWarn=Το Minecraft είναι για όλους! Φρόντισε να συμμορφώνεσαι με τα πρότυπα της κοινότητάς μας. # -commands.warn.invalidWarningLevel=Μη έγκυρο επίπεδο προειδοποίησης. # -commands.warn.playerDoesNotExist=Δεν ήταν δυνατή η εύρεση παίκτη. Διάλεξε έναν έγκυρο παίκτη. # commands.mobevent.description=Ελέγχει τα συμβάντα πλασμάτων που επιτρέπεται να εκτελεστούν. # commands.mobevent.eventsEnabledSetToTrue=Τα συμβάντα πλασμάτων έχουν τώρα ενεργοποιηθεί. Δεν θα εκτελούνται μεμονωμένα συμβάντα που έχουν οριστεί σε τιμή "false". # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=- %s: %s από %d %d %d έως %d %d % commands.volumearea.entry.withoutIdentifier=- %s: από %d %d %d έως %d %d %d # commands.volumearea.noneExist.currentDimension=Δεν υπάρχουν τόμοι στην τρέχουσα διάσταση. # commands.volumearea.inUse=%1$d/%2$d τόμοι που χρησιμοποιούνται. # -commands.warn.description=Στέλνει ένα μήνυμα προειδοποίησης στον παίκτη. # commands.weather.clear=Αλλαγή σε αίθριο καιρό # commands.weather.description=Ορίζει τον καιρό. # commands.weather.disabled=Δεν έχει ενεργοποιηθεί η επιλογή "Κύκλος καιρού" σε αυτόν τον κόσμο. # @@ -1572,6 +1566,7 @@ container.beacon=Φάρος # container.brewing=Πάγκος παρασκευής # container.chest=Σεντούκι # container.chestDouble=Μεγάλο σεντούκι # +container.crafter=Κατασκευαστής # container.crafting=Κατασκευή # container.creative=Επιλογή αντικειμένου # container.dispenser=Διανομέας # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=Σπηλιές και Γκρεμοί # createWorldScreen.cavesandcliffsDescription=Εξερεύνησε τη νέα δημιουργία ποικιλόμορφων σπηλαίων # createWorldScreen.spectatorMode=Λειτουργία θεατή # createWorldScreen.spectatorModeDescription=Δοκίμασε τις πρώιμες εκδόσεις της Λειτουργίας θεατή # -createWorldScreen.experimentalCameras=Πειραματικές κάμερες # -createWorldScreen.experimentalCamerasDescription=Περιέχει παραδείγματα προεπιλεγμένων ρυθμίσεων κάμερας (η εντολή κάμερας δεν είναι πια σε πειραματικό στάδιο!) # createWorldScreen.recipeUnlocking=Ξεκλείδωμα συνταγών # createWorldScreen.recipeUnlockingDescription=Ενεργοποίηση ξεκλειδώματος συνταγών # createWorldScreen.experimentalholiday=Δυνατότητες Δημιουργού διακοπών # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=Δημιουργείται νέος κόσμο createWorldScreen.progress.realms=Επαναφορά του Realm... # createWorldScreen.seed.desc=Δώσε ένα φύτρο για να δημιουργηθεί ξανά το ίδιο έδαφος. Άφησέ το κενό για τυχαίο κόσμο. # createWorldScreen.showCoordinates=Εμφάνιση συντεταγμένων # +createWorldScreen.showDaysPlayed=Εμφάνιση ημερών παιχνιδιού # createWorldScreen.worldType=Τύπος κόσμου # createWorldScreen.randomtickspeed=Τυχαία ταχύτητα τικ # createWorldScreen.randomtickspeed.reset=Επαναφορά τυχαίας ταχύτητας τικ # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=Διαγραφή έργου # createWorldScreen.editor.projectOptionsLabel=Επιλογές έργου # createWorldScreen.editor.delete.confirm=Να γίνει οριστική διαγραφή του έργου; # createWorldScreen.editor.deleteWarningFormat=Είσαι σίγουρος ότι θέλεις να διαγράψεις το έργο "%s"; Αυτό το έργο θα χαθεί για πάντα! # +createWorldScreen.eduCloud.about.body=Όνομα αρχείου: '%1$s'%2$sΤελευταία ενημέρωση: %3$s%4$sΓια να κάνεις λήψη, πάτησε OK και μετά Λήψη.%5$s # +createWorldScreen.eduCloud.about.title=Πληροφορίες σχετικά με το αρχείο Σύννεφο Κόσμου # createWorldScreen.eduCloud.delete.confirm=Να γίνει διαγραφή του τοπικού κόσμου; # createWorldScreen.eduCloud.deleteWarningFormat=Σίγουρα θέλεις να διαγράψεις το στοιχείο «%1$s» σε αυτήν τη συσκευή; %2$sΗ έκδοση σύννεφου «%3$s» δεν θα επηρεαστεί και μπορεί να γίνει εκ νέου συγχρονισμός αργότερα. # createWorldScreen.experimentalDeferredTechnicalPreview=Απόδοση χαρακτηριστικών δράκου για δημιουργούς # @@ -2196,7 +2192,7 @@ network.onlinePlay.title=Παίξε με φίλους # network.onlinePlay.msg=Μπορείς να προσκαλέσεις φίλους στους κόσμους σου, να δεις τις δημιουργίες των φίλων σου και να χτίσετε κατασκευές ο ένας στον κόσμο του άλλου. # network.onlinePlay.instruction=Από το μενού "Παίξε", μπορείς να συμμετάσχεις στους κόσμους των φίλων σου ή να τους προσκαλέσεις στους δικούς σου κόσμους και στα δικά σου Realms. # network.thirdparty.connect.splitscreen=Για να παίξεις σε παιχνίδι με πολλούς παίκτες με διαιρεμένη οθόνη, συνδέσου σε λογαριασμό %s. # -network.thirdparty.connect.benefit=Συνδέσου με το λογαριασμό %s για να παίξεις online με φίλους και ανακάλυψε μοναδικά αντικείμενα στο κατάστημα. # +network.thirdparty.connect.benefit=Συνδέσου με τον λογαριασμό %s για να παίξεις online με φίλους και ανακάλυψε μοναδικά αντικείμενα στο κατάστημα. # network.thirdparty.connect.store=Θα χρειαστείς λογαριασμό %s για να περιηγηθείς στο κατάστημα. # network.thirdparty.connect.achievements=Θα χρειαστείς λογαριασμό %s για να κερδίσεις επιτεύγματα. # network.thirdparty.findfriends.failed=Δεν ήταν δυνατή η σύνδεση στις υπηρεσίες λογαριασμού Microsoft. Μήπως να ελέγξεις τη σύνδεσή σου στο Internet; # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Windows Store # realmsSettingsScreen.xboxOneStoreDisplayName=Xbox Store # realmsSettingsScreen.amazonStoreDisplayName=Amazon Appstore # realmsSettingsScreen.oculusStoreDisplayName=Oculus Store # -realmsSettingsScreen.berwickStoreDisplayName="PlayStation Store" # -realmsSettingsScreen.SonyStoreDisplayName=''PlayStation Store'' #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=άγνωστο κατάστημα # realmsSettingsScreen.extendingRealm=Επέκταση Realm... # realmsSettingsScreen.offerError.title=Εκκρεμεί αγορά # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=Τα πακέτα που αγο xbl.syncIAP.confirmSync.prompt.yes=Ναι, συγχρονισμός των αγορών μου # xbl.marketplace.account.error.body.nobutton=Υπάρχει ένα πρόβλημα με τον λογαριασμό σου. Δεν θα μπορείς να χρησιμοποιήσεις το Marketplace μέχρι να επιλύσουμε το ζήτημα. Αν το ζήτημα δεν λυθεί για αρκετές ημέρες, επικοινώνησε με το τμήμα υποστήριξης. # -xbl.marketplace.account.banned.body.nobutton=Δεν μπορείς να χρησιμοποιήσεις το marketplace μέχρι να λήξει η αναστολή σου. # playfab.account.banned.temporary=τεθεί σε αναστολή # playfab.account.banned.permanent=αποκλειστεί # @@ -2487,6 +2482,14 @@ date.daysAbbreviated1Char=%s ημ. ### It needs to be abbreviated with no more date.hoursAbbreviated1Char=%sώ ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%sλ ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%sδ ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s ημέρες # +date.hoursPlural=%s ώρες # +date.minutesPlural=%s λεπτά # +date.secondsPlural=%s δευτερόλεπτα # +date.daySingular=%s ημέρα # +date.hourSingular=%s ώρα # +date.minuteSingular=%s λεπτό # +date.secondSingular=%s δευτερόλεπτο # date.timeLeft=Απομένουν %s # dayOneExperience.carousel.title=Καλώς όρισες στο νέο Minecraft! # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=ΟΙΚΟΔΕΣΠΟΤΗΣ # edu.worlds_screen.settings=ΡΥΘΜΙΣΕΙΣ # edu.worlds_screen.download=ΛΗΨΗ ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=ΔΙΑΧΕΙΡΙΣΗ # +edu.worlds_screen.about=ΠΛΗΡΟΦΟΡΙΕΣ # edu.worlds_screen.back=ΠΙΣΩ # edu.worlds_screen.copy=ΑΝΤΙΓΡΑΦΗ # edu.worlds_screen.export=ΕΞΑΓΩΓΗ # @@ -2791,7 +2795,13 @@ edu.templates.empty_banner=Μπορείς να αποκτήσεις πρότυπ edu.pause.multiplayer.disabled=Το παιχνίδι πολλών παικτών δεν είναι διαθέσιμο σε αυτό το μάθημα. # effect.badOmen=Κακός Οιωνός # +effect.infested=Με έντομο «ψαράκι» # +effect.oozing=Αναβλύζει # +effect.raid_omen=Οιωνός επιδρομής # +effect.trial_omen=Δοκιμασία Οιωνός # effect.villageHero=Ήρωας του Χωριού # +effect.weaving=Ύφανση # +effect.wind_charged=Επίθεση Ανέμου # enchantment.arrowDamage=Ενέργεια # enchantment.arrowFire=Φλόγα # @@ -2810,6 +2820,9 @@ enchantment.durability=Άθραυστο # enchantment.fire=Ιδιότητα φωτιάς # enchantment.fishingSpeed=Δόλωμα # enchantment.frostwalker=Περπατητής πάγου # +enchantment.heavy_weapon.breach=Παραβίαση # +enchantment.heavy_weapon.density=Πυκνότητα # +enchantment.heavy_weapon.windburst=Ριπή Ανέμου # enchantment.knockback=Τίναγμα προς τα πίσω # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=Νυχτερίδα # entity.bee.name=Μέλισσα # entity.blaze.name=Φλόγα # entity.boat.name=Βάρκα # +entity.bogged.name=Βαλτωμένος # +entity.breeze.name=Αύρα # +entity.breeze_wind_charge_projectile.name=Επίθεση Ανέμου # entity.cat.name=Γάτα # entity.cave_spider.name=Αράχνη των σπηλαίων # entity.chicken.name=Κοτόπουλο # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=Άπειρος Χωρικός # entity.villager_v2.name=Χωρικός # entity.vindicator.name=Εκδικητής # entity.wandering_trader.name=Γυρολόγος # +entity.wind_charge_projectile.name=Επίθεση Ανέμου # entity.witch.name=Μάγισσα # entity.wither.name=Μαρασμός # entity.wither_skeleton.name=Σκελετός Μαρασμού # @@ -3009,6 +3026,7 @@ feature.ruins=Ωκεάνια ερείπια # feature.pillager_outpost=Φυλάκιο Άρπαγα # feature.bastion_remnant=Απομεινάρι Προμαχώνα # feature.ruined_portal=Κατεστραμμένη Πύλη # +feature.trial_chambers=Αίθουσες Δοκιμαστικής έκδοσης # feed.like=Επισήμανση "Μου αρέσει" # feed.manage_feed=Διαχείριση τροφοδοσίας # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=Μετακίνησε το :tip_left_stick: γ gameTip.flying.mouse=Πάτησε δύο φορές το :_input_key.jump: για να πετάξεις # gameTip.flying.touch=Πάτησε δύο φορές το άλμα για να πετάξεις # +gameTip.flyDown.mouse=Πάτησε το :_input_key.sneak: για να πετάξεις προς τα κάτω # +gameTip.flyUp.mouse=Πάτησε το :_input_key.jump: για να πετάξεις προς τα πάνω # + +gameTip.stopFlying.mouse=Πάτησε δύο φορές το :_input_key.jump: για να σταματήσεις να πετάς # +gameTip.stopFlying.touch=Πάτησε δύο φορές την πτήση προς τα κάτω για να σταματήσεις να πετάς # + gameTip.jump.mouse=Πήδηξε με το :_input_key.jump: # +gameTip.swim.mouse=Πάτησε παρατεταμένα το :_input_key.jump: για να κολυμπήσεις προς τα πάνω # -gameTip.hotbar.mouse=Κύλησε τον τροχού του ποντικιού για να επιλέξεις # στο hotbar συντομεύσεων για να το κρατήσεις # -gameTip.hotbar.touch=Πάτησε στιγμιαία # στο hotbar για να το κρατήσεις # -gameTip.hotbar.controller=Πάτησε στιγμιαία # στο hotbar για να το κρατήσεις # +gameTip.hotbar.selection.mouse=Κάνε κύλιση ή πάτησε το %s για να κρατήσεις το στοιχείο ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=Άγγιξε το στοιχείο στη γραμμή ενεργειών για να το κρατήσεις # gameTip.breakBlock.mouse=Κράτησε πατημένο το αριστερό κλικ για να σπάσεις κύβους # gameTip.breakBlock.touch=Πάτησε παρατεταμένα για να σπάσεις κύβους # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=Κινείσαι στα κρυφά! Δεν μπορείς ν gameTip.sneak.touch=Κινείσαι στα κρυφά, οπότε δεν μπορείς να πέσεις από άκρες # gameTip.sneak.controller=Κινείσαι στα κρυφά, οπότε δεν μπορείς να πέσεις από άκρες # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=Τοποθέτησε το τραπέζι κατασκευών σου. Κράτησε το πατημένο και κάνε κλικ για να το τοποθετήσεις # gameTip.placeCraftingTable.touch=Τοποθέτησε το τραπέζι κατασκευών πατώντας το έδαφος # gameTip.placeCraftingTable.controller=Τοποθέτησε το τραπέζι κατασκευών σου, κράτησέ το, και στη συνέχεια πάτα στιγμιαία στο έδαφος # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=Σε ευχαριστούμε που μοιράστη gui.submitFeedback.failure.status.unprocessableEntity=Δεν σου ανήκει αυτό το αντικείμενο για το οποίο προσπαθείς να παράσχεις σχόλια. (Κωδικός σφάλματος: %d) # gui.submitFeedback.failure.status.tooManyRequests=Ωχ όχι! Έχεις στείλει πάρα πολλές κριτικές, δοκίμασε ξανά αργότερα. (Κωδικός σφάλματος: %d) # gui.submitFeedback.failure.status.other=Δεν είναι δυνατή η υποβολή της κριτικής σου αυτήν τη στιγμή, δοκίμασε ξανά αργότερα. (Κωδικός σφάλματος: %d) # +gui.togglable_slot=Πάτησε για να απενεργοποιήσεις την υποδοχή # gui.playOffline=Παίξε εκτός σύνδεσης # gui.signIn=Σύνδεση # gui.genericNetworkError=Κάτι πήγε στραβά. Έλεγξε τη σύνδεσή σου στο Internet. # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=Εξερεύνησε έναν κόσμο γεμάτο howtoplay.minecoins.text.2=Αφού τα εξαργυρώσεις, τα Minecoin σου συνδέονται με τον λογαριασμό σου Microsoft, οπότε μπορείς να έχεις πρόσβαση στα νομίσματα και τις αγορές σου και σε άλλες υποστηριζόμενες συσκευές! # howtoplay.minecoins.button.text.1=Απόκτησε νομίσματα # howtoplay.minecoins.header.1=Αποποίηση ευθυνών # -howtoplay.minecoins.text.3=*Τα Minecoin απαιτούν μια έκδοση του Minecraft: Bedrock Edition με το Minecraft Marketplace. Τα Minecoin δεν είναι συμβατά με το Sony PlayStation. Για πληροφορίες συμβατότητας, επισκέψου το minecraft.net/minecoins  # +howtoplay.minecoins.text.3=*Τα Minecoin απαιτούν μια έκδοση του Minecraft: Bedrock Edition με το Minecraft Marketplace. Τα Minecoin δεν είναι συμβατά με το Sony PlayStation®. Για πληροφορίες συμβατότητας, επισκέψου το minecraft.net/minecoins  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=Εξόρυξη # @@ -4145,7 +4170,7 @@ level.editor.export.failed=Η εξαγωγή του έργου απέτυχε # level.editor.import.failed=Η εισαγωγή του έργου απέτυχε # level.editor.import.failed.incompatibleEdition=Η εισαγωγή έργου απέτυχε: Μη υποστηριζόμενη μορφή αρχείου # -inbox.invite.title=Πρόσκληση Realms # +inbox.invite.title=Πρόσκληση Realm στο # invite.clear=Εκκαθάριση επιλογής # invite.send=Αποστολή %d προσκλήσεων # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=Κόκκινο κάτω δεξί τρίγων item.banner.diagonal_up_right.silver=Ανοικτό γκρι κάτω δεξί τρίγωνο # item.banner.diagonal_up_right.white=Λευκό κάτω δεξί τρίγωνο # item.banner.diagonal_up_right.yellow=Κίτρινο κάτω δεξί τρίγωνο # +item.banner.flow.black=Μαύρη ροή # +item.banner.flow.blue=Μπλε ροή # +item.banner.flow.brown=Καφέ ροή # +item.banner.flow.cyan=Κυανή ροή # +item.banner.flow.gray=Γκρι ροή # +item.banner.flow.green=Πράσινη ροή # +item.banner.flow.lightBlue=Γαλάζια ροή # +item.banner.flow.lime=Πρασινοκίτρινη ροή # +item.banner.flow.magenta=Φούξια ροή # +item.banner.flow.orange=Πορτοκαλί ροή # +item.banner.flow.pink=Ροζ ροή # +item.banner.flow.purple=Μοβ ροή # +item.banner.flow.red=Κόκκινη ροή # +item.banner.flow.silver=Ανοικτή γκρι ροή # +item.banner.flow.white=Λευκή ροή # +item.banner.flow.yellow=Κίτρινη Ροή # item.banner.flower.black=Μαύρο λουλούδι # item.banner.flower.blue=Μπλε λουλούδι # item.banner.flower.brown=Καφέ λουλούδι # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=Λευκή κλίμακα αποχρώσεων # item.banner.gradient_up.yellow=Κίτρινη κλίμακα αποχρώσεων # item.banner.gray.name=Γκρι λάβαρο # item.banner.green.name=Πράσινο λάβαρο # +item.banner.guster.black=Μαύρο Γκάστερ # +item.banner.guster.blue=Μπλε Γκάστερ # +item.banner.guster.brown=Καφέ Γκάστερ # +item.banner.guster.cyan=Κυανό Γκάστερ # +item.banner.guster.gray=Γκρι Γκάστερ # +item.banner.guster.green=Πράσινο Γκάστερ # +item.banner.guster.lightBlue=Γαλάζιο Γκάστερ # +item.banner.guster.lime=Πρασινοκίτρινο Γκάστερ # +item.banner.guster.magenta=Φούξια Γκάστερ # +item.banner.guster.orange=Πορτοκαλί Γκάστερ # +item.banner.guster.pink=Ροζ Γκάστερ # +item.banner.guster.purple=Μοβ Γκάστερ # +item.banner.guster.red=Κόκκινο Γκάστερ # +item.banner.guster.silver=Ανοικτό γκρι Γκάστερ # +item.banner.guster.white=Λευκό Γκάστερ # +item.banner.guster.yellow=Κίτρινο Γκάστερ # item.banner.half_horizontal.black=Μαύρο επάνω οριζόντιο μισό # item.banner.half_horizontal.blue=Μπλε επάνω οριζόντιο μισό # item.banner.half_horizontal.brown=Καφέ επάνω οριζόντιο μισό # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=Βάρκα από ακακία # item.boat.big_oak.name=Βάρκα από σκούρα βελανιδιά # item.bone.name=Κόκαλο # item.book.name=Βιβλίο # +item.breeze_rod.name=Ράβδος αύρας # item.chainmail_boots.name=Αλυσιδωτές μπότες # item.leather_boots.name=Δερμάτινες μπότες # item.diamond_boots.name=Διαμαντένιες μπότες # @@ -4991,6 +5049,7 @@ item.comparator.name=Συγκριτής Ερυθρόλιθου # item.compass.name=Πυξίδα # item.lodestonecompass.name=Πυξίδα μαγνητίτη # item.cookie.name=Μπισκότο # +item.copper_door.name=Χάλκινη Πόρτα # item.crossbow.name=Βαλλίστρα # item.diamond.name=Διαμάντι # item.repeater.name=Επαναλήπτης ερυθρόλιθου # @@ -5038,6 +5097,7 @@ tile.end_rod.name=Ράβδος του Τέλους # item.ender_eye.name=Μάτι του Τελειωτή # item.ender_pearl.name=Μαργαριτάρι του Τελειωτή # item.experience_bottle.name=Μπουκάλι μαγέματος # +item.exposed_copper_door.name=Εκτεθειμένη Χάλκινη Πόρτα # item.feather.name=Φτερό # item.fermented_spider_eye.name=Ζυμωμένο μάτι αράχνης # item.fireball.name=Γόμωση # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=Χρυσές περικνημίδες # item.iron_leggings.name=Σιδερένιες περικνημίδες # item.nautilus_shell.name=Όστρακο ναυτίλου # item.heart_of_the_sea.name=Καρδιά της θάλασσας # +item.mace.name=Απελατίκιο # item.magma_cream.name=Κρέμα μάγματος # item.map.name=Χάρτης # item.map.exploration.mansion.name=Χάρτης εξερευνητή δασών # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=Χάρτης Χωριού στη Σα item.map.exploration.village_desert.name=Χάρτης Χωριού στην Έρημο # item.map.exploration.jungle_temple.name=Χάρτης Εξερευνητών της Ζούγκλας # item.map.exploration.swamp_hut.name=Χάρτης Εξερευνητών του Βάλτου # +item.map.exploration.trial_chambers.name=Χάρτης εξερευνητών δοκιμασίας # item.melon.name=Καρπούζι # item.milk.name=Γάλα # item.minecart.name=Βαγονέτο # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=Βαγονέτο με σεντούκι # item.command_block_minecart.name=Βαγονέτο με κύβο εντολών # item.minecartFurnace.name=Βαγονέτο με καμίνι # item.hopper_minecart.name=Βαγονέτο με χωνί # +item.ominous_bottle.name=Δυσοίωνο Μπουκάλι # +item.ominous_trial_key.name=Δυσοίωνο Κλειδί Δοκιμασίας # +item.oxidized_copper_door.name=Οξειδωμένη Χάλκινη Πόρτα # item.tnt_minecart.name=Βαγονέτο με δυναμίτη # item.pitcher_pod.name=Σπόρος Νηπενθούς # item.torchflower_seeds.name=Σπόροι Πυρσολούλουδου # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=Αυγό Γένεσης Agent # item.spawn_egg.entity.armadillo.name=Αυγό Γένεσης Αρμαντίλο # item.spawn_egg.entity.axolotl.name=Αυγό Γένεσης Αξολότλ # item.spawn_egg.entity.bee.name=Αυγό Γένεσης Μέλισσας # +item.spawn_egg.entity.bogged.name=Γένεση Αυγού Βαλτωμένου # +item.spawn_egg.entity.breeze.name=Αυγό Γένεσης Αύρας # item.spawn_egg.entity.hoglin.name=Αυγό Γένεσης Χόγκλιν # item.spawn_egg.entity.cat.name=Αυγό Γένεσης Γάτας # item.spawn_egg.entity.chicken.name=Αυγό Γένεσης Νεοσσού # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 - προστάτης # item.record_pigstep.desc=Lena Raine - Pigstep # item.record_otherside.desc=Lena Raine - otherside # item.record_relic.desc=Άαρον Τσέροφ - Απομεινάρι # +item.record_creator.desc=Lena Raine - Δημιουργός # +item.record_creator_music_box.desc=Lena Raine - Δημιουργός (Μουσικό κουτί) # +item.record_precipice.desc=Άαρον Τσέροφ - Γκρεμός # item.redstone.name=Σκόνη ερυθρόλιθου # item.reeds.name=Ζαχαροκάλαμα # item.kelp.name=Φύκι # @@ -5324,6 +5394,12 @@ item.iron_sword.name=Σιδερένιο σπαθί # item.stone_sword.name=Πέτρινο σπαθί # item.wooden_sword.name=Ξύλινο σπαθί # item.unbreakable=Άθραυστο # +item.waxed_copper_door.name=Κερωμένη Χάλκινη Πόρτα # +item.waxed_exposed_copper_door.name=Κερωμένη Εκτεθειμένη Χάλκινη Πόρτα # +item.waxed_oxidized_copper_door.name=Κερωμένη Οξειδωμένη Χάλκινη Πόρτα # +item.waxed_weathered_copper_door.name=Κερωμένη Φθαρμένη Χάλκινη Πόρτα # +item.weathered_copper_door.name=Φθαρμένη Χάλκινη Πόρτα # +item.wind_charge.name=Επίθεση Ανέμου # item.wheat.name=Σιτάρι # item.wolf_armor.name=Πανοπλία Λύκου # item.writable_book.name=Βιβλίο και πένα # @@ -5331,6 +5407,7 @@ item.written_book.name=Γραμμένο βιβλίο # item.glowstone_dust.name=Σκόνη φεγγόλιθου # item.shulker_shell.name=Κέλυφος Shulker # item.totem.name=Τοτέμ της Αθανασίας # +item.trial_key.name=Κλειδί Δοκιμαστικής έκδοσης # item.turtle_helmet.name=Καβούκι χελώνας # item.turtle_shell_piece.name=Φολίδα Χελώνας # item.phantom_membrane.name=Μεμβράνη στοιχειού # @@ -5338,8 +5415,10 @@ item.sweet_berries.name=Γλυκά βατόμουρα # item.suspicious_stew.name=Ύποπτη σούπα # item.banner_pattern.bricks=Μοτίβο τούβλων # item.banner_pattern.creeper=Creeper # +item.banner_pattern.flow=Ροή # item.banner_pattern.flower=Λουλούδι # item.banner_pattern.globe=Υδρόγειος # +item.banner_pattern.guster=Γκάστερ # item.banner_pattern.name=Σχέδιο λάβαρου # item.banner_pattern.piglin=Ρύγχος # item.banner_pattern.skull=Νεκροκεφαλή # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=Σχέδια λάβαρου # itemGroup.name.netherWartBlock=Χορτόροζοι Εγκάτων # itemGroup.name.candles=Κεριά # itemGroup.name.goatHorn=Κέρατα κατσίκας # +itemGroup.name.compounds=Συνδυασμοί # +itemGroup.name.products=Προϊόντα # jigsaw.title.target_pool=Περιοχή προορισμού: # jigsaw.title.name=Όνομα: # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=ΡΥΘΜΙΣΕΙΣ ΤΑΞΗΣ # menu.serverStore=%s Store # menu.serverGenericName=Διακομιστής # menu.play=Παίξε # +menu.profile=Προφίλ # menu.playdemo=Παίξε τον κόσμο demo # menu.playOnRealms=Παίξε στο Realm # menu.quickplay=Γρήγορο παιχνίδι # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=Διάλεξε τον αρχικό Χαρακτ menu.character_cast.preview_title=Γνώρισε το Καστ! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Διακ/στής Realms ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=Διακομιστές # merchant.deprecated=Πούλησε κάτι άλλο για να ξεκλειδωθεί! # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=Παιχνίδι με πλήρες πληκτρολ options.fullKeyboardLayout=Διάταξη πλήρους πληκτρολογίου # options.improvedInputResponsePlaceholder=Βελτιωμένη απάντηση εισόδου # options.improvedInputResponsePlaceholder.tooltip=Μειώνει την καθυστέρηση μεταξύ της εισόδου σου και των στοιχείων που βλέπεις στην οθόνη σου. Αυτή η ρύθμιση μπορεί να χρησιμοποιήσει περισσότερη μπαταρία. # +options.dynamicTexturesToggle=Κατάργηση ορίου υφών # +options.dynamicTexturesToggle.tooltip=Για να αλλάξει αυτό το στοιχείο από ενεργοποιημένο σε απενεργοποιημένο, απαιτείται επανεκκίνηση του παιχνιδιού. Μπορεί να προκαλέσει αστάθεια, όταν χρησιμοποιούνται πολλαπλά Πρόσθετα ή Πακέτα πόρων με πολλές υφές. # +options.dynamicTextures.popUp=Αν ενεργοποιήσεις την Κατάργηση ορίου υφών, θα πρέπει να επανεκκινήσεις το παιχνίδι για να την απενεργοποιήσεις. # +options.dynamicTextures.popUp.title=Είσαι σίγουρος/-η; # options.fullscreen=Πλήρης οθόνη # options.gamepadcursorsensitivity=Ευαισθησία κέρσορα χειριστηρίου # options.gamertag=Ετικέτα παίκτη: # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=Σύνδεση # options.creator.debuggerListen=Άκουσε # options.creator.debuggerHost=Οικοδεσπότης # options.creator.debuggerPort=Θύρα # +options.creator.watchdogHeading=Ρυθμίσεις επιτήρησης δέσμης ενεργειών # +options.creator.watchdogSlowWarning=Προειδοποιήσεις αργής δέσμης ενεργειών # +options.creator.watchdogSlowThreshold=Ο μέσος όρος υπερβαίνει # +options.creator.watchdogSlowFormat=%s χιλιοστά του δευτερολέπτου # +options.creator.watchdogSlowFormatDefault=%s χιλιοστά του δευτερολέπτου (προεπιλογή) # +options.creator.watchdogSpikeWarning=Προειδοποιήσεις αιχμών δέσμης ενεργειών # +options.creator.watchdogSpikeThreshold=Η αιχμή υπερβαίνει # +options.creator.watchdogSpikeFormat=%s χιλιοστά του δευτερολέπτου # +options.creator.watchdogSpikeFormatDefault=%s χιλιοστά του δευτερολέπτου (προεπιλογή) # +options.creator.watchdogHangThreshold=Διακοπή μετά από # +options.creator.watchdogHangFormat=%s δευτερόλεπτα # +options.creator.watchdogHangFormatDefault=%s δευτερόλεπτα (προεπιλογή) # options.vr_classic_box_selection=Επιλογή περιγράμματος # options.hidegamepadcursor=Απόκρυψη κέρσορα χειριστηρίου # options.hidegui=Απόκρυψη GUI # @@ -6662,7 +6761,7 @@ options.makeBackup=Δημιουργία αντιγράφου ασφαλείας options.managePrivacy=Για να διαχειριστείς τις ρυθμίσεις προστασίας προσωπικών δεδομένων, επισκέψου την τοποθεσία https://account.xbox.com/Settings σε οποιοδήποτε πρόγραμμα περιήγησης στο Web. ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Κατάργηση σύνδεσης λογαριασμού Microsoft # options.unlink_msa.confirm.title=Να καταργηθεί η σύνδεση του λογαριασμού Microsoft; # -options.unlink_msa.confirm.warning=ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Μετά την κατάργηση της σύνδεσης, δεν θα μπορείς να αποθηκεύεις στον λογαριασμό %s την πρόοδό σου ή τις αγορές που έχεις πραγματοποιήσει στο σύστημα "PlayStation 4". # +options.unlink_msa.confirm.warning=ΠΡΟΣΟΧΗ: Μετά την κατάργηση της σύνδεσης, δεν θα μπορείς να αποθηκεύεις στον λογαριασμό %s σου την πρόοδό σου ή τις αγορές που έχεις πραγματοποιήσει στο σύστημα PlayStation®4. #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=Η αποσύνδεση του λογαριασμού Microsoft μέσα από αυτό το παιχνίδι θα επηρεάσει όλα τα παιχνίδια Minecraft σε αυτήν την πλατφόρμα που έχουν χρησιμοποιήσει αυτόν τον λογαριασμό Microsoft. # options.unlink_msa.confirm.checkbox1=Δεν θα μπορώ πλέον να έχω πρόσβαση σε περιεχόμενο στο Κατάστημα εντός του παιχνιδιού όταν παίζω σε άλλες πλατφόρμες. # options.unlink_msa.confirm.checkbox2=Δεν θα μπορώ πλέον να παίζω σε παιχνίδια μεταξύ πλατφορμών με τους φίλους μου σε άλλες πλατφόρμες. # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=Φόρτωση κόσμου για την hudScreen.controlCustomization.tooltip.notouch=Χρησιμοποίησε μια συσκευή αφής για να προσαρμόσεις τα στοιχεία ελέγχου # hudScreen.controlCustomization.tooltip.alreadycustomizing=Υπάρχει ήδη μια ανοικτή οθόνη προσαρμογής του ελέγχου μέσω αφής # hudScreen.controlCustomization.tooltip.alive=Ο παίκτης πρέπει να είναι ζωντανός για να προσαρμόσεις τα στοιχεία ελέγχου. # +hudScreen.daysPlayed=Ημέρες παιχνιδιού: %s # +hudScreen.daysPlayed.overflow=Πάρα πολλά για να μετρηθούν! # playscreen.fileSize.MB=MB # playscreen.fileSize.GB=GB # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=Φίλτρο Πιτσιλιάς Θεραπείας # potion.heal.linger.name=Φίλτρο Διαρκείας Θεραπείας # potion.healthBoost=Ενίσχυση υγείας # potion.hunger=Πείνα # +potion.infested.linger.name=Επίμονο φίλτρο Ψαράκι # +potion.infested.name=Φίλτρο Ψαράκι # +potion.infested.splash.name=Εκτοξευόμενο φίλτρο Ψαράκι # +potion.infested=Με έντομο «ψαράκι» # potion.invisibility=Αφάνεια # potion.invisibility.name=Φίλτρο Αφάνειας # potion.invisibility.splash.name=Φίλτρο Πιτσιλιάς Aορατότητας # @@ -7067,6 +7172,10 @@ potion.nightVision=Νυχτερινή όραση # potion.nightVision.name=Φίλτρο Nυχτερινής όρασης # potion.nightVision.splash.name=Φίλτρο Πιτσιλιάς Νυχτερινής Όρασης # potion.nightVision.linger.name=Φίλτρο Διαρκείας Νυχτερινής Όρασης # +potion.oozing.linger.name=Επίμονο φίλτρο που Αναβλύζει # +potion.oozing.name=Φίλτρο που Αναβλύζει # +potion.oozing.splash.name=Εκτοξευόμενο φίλτρο που Αναβλύζει # +potion.oozing=Αναβλύζει # potion.poison=Δηλητήριο # potion.poison.name=Φίλτρο Δηλητηρίου # potion.poison.splash.name=Φίλτρο Πιτσιλιάς Δηλητηρίου # @@ -7108,6 +7217,14 @@ potion.weakness=Αδυναμία # potion.weakness.name=Φίλτρο Aδυναμίας # potion.weakness.splash.name=Φίλτρο Πιτσιλιάς Αδυναμίας # potion.weakness.linger.name=Φίλτρο Διαρκείας Αδυναμίας # +potion.weaving.linger.name=Επίμονο φίλτρο Ύφανσης # +potion.weaving.name=Φίλτρο Ύφανσης # +potion.weaving.splash.name=Εκτοξευόμενο φίλτρο Ύφανσης # +potion.weaving=Ύφανση # +potion.windCharged.linger.name=Επίμονο φίλτρο Φόρτισης Ανέμου # +potion.windCharged.name=Φίλτρο Φόρτισης Ανέμου # +potion.windCharged.splash.name=Εκτοξευόμενο φίλτρο Φόρτισης Ανέμου # +potion.windCharged=Επίθεση Ανέμου # potion.wither=Μαρασμός # potion.wither.name=Φίλτρο Αποσύνθεσης # potion.wither.splash.name=Φίλτρο Πιτσιλιάς Φθοράς # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=Δεν είναι δυνατό το progressScreen.message.forbiddenContent=Ένα ή περισσότερα από τα εφαρμοσμένα πακέτα δεν σου ανήκουν # progressScreen.message.loadingSplitScreenAppearances=Φόρτωση Εμφανίσεων Διαιρεμένης Οθόνης... # progressScreen.message.finishedLoadingSplitScreenAppearances=Ολοκληρώθηκε η φόρτωση εμφανίσεων διαιρεμένης οθόνης. # -progressScreen.message.modifiedWorldWarning=Αυτός ο κόσμος μπορεί να μην έχει την ίδια εμφάνιση ή συμπεριφορά με τους μη τροποποιημένους κόσμους και δεν μπορείς να κερδίσεις επιτεύγματα. # +progressScreen.message.modifiedWorldWarning.1=Παίζεις σε έναν κόσμο με Πρόσθετα! Αυτό θα προσθέσει νέα χαρακτηριστικά στον κόσμο σου στο Minecraft. # +progressScreen.message.modifiedWorldWarning.2=Μην πάρεις μόνο ένα! Μπορείς να φορτώσεις πολλαπλά Πρόσθετα ταυτόχρονα σε έναν κόσμο. # +progressScreen.message.modifiedWorldWarning.3=Συμβουλή για προχωρημένους: ένα πακέτο πόρων μπορεί να αλλάξει τις υφές διαφορετικών κύβων και οντοτήτων. # +progressScreen.message.modifiedWorldWarning.4=Συμβουλή για προχωρημένους: ένα πακέτο συμπεριφορών μπορεί να αλλάξει τη λειτουργία διάφορων αντικειμένων, οντοτήτων ή κύβων. # +progressScreen.message.modifiedWorldWarning.5=Συμβουλή για προχωρημένους: κάθε πρόσθετο περιλαμβάνει και Πακέτο συμπεριφορών και Πακέτο πόρων. Βεβαιώσου ότι είναι ενεργοποιημένα και τα δύο πακέτα για να διασφαλίσεις ότι το πρόσθετο θα λειτουργεί! # +progressScreen.message.modifiedWorldWarning.6=Τα πρόσθετα προσθέτουν νέους κύβους, στοιχεία ή πλάσματα στους κόσμους σου. # +progressScreen.message.modifiedWorldWarning.7=Οι κόσμοι και τα πρόσθετα είναι περίπλοκα! Ενώ κάποια λειτουργούν εξαιρετικά μαζί, άλλα μπορεί να οδηγήσουν σε περίεργα αποτελέσματα. # +progressScreen.message.modifiedWorldWarning.8=Όσο περισσότερα πρόσθετα, τόσο μεγαλύτερη διασκέδαση, αλλά το παιχνίδι μπορεί να χρειαστεί περισσότερο χρόνο για να φορτώσει. # progressScreen.dialog.title.resourcePack=Να γίνει λήψη των πακέτων πόρων; # progressScreen.dialog.title.behaviorAndResourcePack=Λήψη πακέτων συμπεριφοράς και πόρων κόσμου; # progressScreen.dialog.title.onlyBehavior=Λήψη πακέτων συμπεριφοράς κόσμου; # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=Να γίνει ενημέρωση κόσμου; resourcePack.warning.add.body=Αυτός ο κόσμος μπορεί να μην έχει την ίδια εμφάνιση ή συμπεριφορά με τους μη τροποποιημένους κόσμους. Καλύτερα να αποθηκεύσεις ένα αντίγραφο του κόσμου σου πριν συνεχίσεις. # resourcePack.warning.add.button.cancel=Να μην προστεθεί το πακέτο # resourcePack.warning.add.button.ok=Να προστεθεί το πακέτο ούτως ή άλλως # +resourcePack.warnings.contentKeyErrorBody=Παρουσιάστηκε πρόβλημα κατά τη φόρτωση του πακέτου %s. # +resourcePack.warnings.contentKeyErrorBodyMultiple=Παρουσιάστηκε πρόβλημα κατά τη φόρτωση των πακέτων %s. # +resourcePack.warnings.contentKeyErrorTitle=Σφάλμα! # resourcePack.warning.remove.title=Αυτό είναι επικίνδυνο! # resourcePack.warning.remove.body=Η προσθήκη ή η κατάργηση Πακέτων μετά τη χρήση ενός κόσμου μπορεί να καταστρέψει τον κόσμο και να έχει ως αποτέλεσμα να χάσεις όσα έχεις δημιουργήσει. # resourcePack.warning.remove.button.cancel=Να διατηρηθεί το πακέτο # @@ -7557,7 +7684,9 @@ item.crimson_hanging_sign.name=Πορφυρή κρεμαστή επιγραφή item.danger_pottery_sherd.name=Κεραμικό Θραύσμα Κίνδυνος # item.dark_oak_hanging_sign.name=Κρεμαστή επιγραφή από σκούρα βελανιδιά # item.explorer_pottery_sherd.name=Κεραμικό Θραύσμα Εξερευνητής # +item.flow_pottery_sherd.name=Κεραμικό Θραύσμα Ροή # item.friend_pottery_sherd.name=Κεραμικό Θραύσμα Φίλος # +item.guster_pottery_sherd.name=Κεραμικό Θραύσμα Γκάστερ # item.heart_pottery_sherd.name=Κεραμικό Θραύσμα Καρδιά # item.heartbreak_pottery_sherd.name=Κεραμικό Θραύσμα Ραγισμένη Καρδιά # item.howl_pottery_sherd.name=Κεραμικό Θραύσμα Ουρλιαχτό # @@ -7568,6 +7697,7 @@ item.mourner_pottery_sherd.name=Κεραμικό Θραύσμα Πένθιμος item.oak_hanging_sign.name=Δρύινη κρεμαστή επιγραφή # item.plenty_pottery_sherd.name=Κεραμικό Θραύσμα Άφθονος # item.prize_pottery_sherd.name=Κεραμικό Θραύσμα Βραβείο # +item.scrape_pottery_sherd.name=Κεραμικό Θραύσμα Ξύσιμο # item.sheaf_pottery_sherd.name=Κεραμικό Θραύσμα Μπόγος # item.shelter_pottery_sherd.name=Κεραμικό Θραύσμα Καταφύγιο # item.skull_pottery_sherd.name=Κεραμικό Θραύσμα Κρανίο # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=Σκάλες κερασιάς # tile.cherry_trapdoor.name=Καταπακτή κερασιάς # tile.cherry_wood.name=Ξύλο κερασιάς # tile.chiseled_bookshelf.name=Σμιλεμένο ράφι βιβλιοθήκης # +tile.chiseled_tuff.name=Σμιλεμένος Τόφος # +tile.chiseled_tuff_bricks.name=Σμιλεμένα Τούβλα Τόφου # tile.decorated_pot.name=Διακοσμημένο δοχείο # tile.pink_petals.name=Ροζ πέταλα # tile.stripped_bamboo_block.name=Κύβος Απογυμνωμένου Μπαμπού # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=Επένδυση Πανοπλίας Βεξ # trim_pattern.ward.name=Επένδυση Πανοπλίας Προστατευόμενου # trim_pattern.wayfinder.name=Επένδυση πανοπλίας Wayfinder # trim_pattern.wild.name=Επένδυση Άγριας Πανοπλίας # +trim_pattern.bolt.name=Επένδυση πανοπλίας κεραυνού # +trim_pattern.flow.name=Επένδυση πανοπλίας ροής # upgrade.netherite_upgrade.name=Αναβάθμιση Εγκατίτη # storageManager.mainSizeLabel=%s - 1 αντικείμενο # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=Διαγραφή προτύπου κόσμου; # selectTemplate.delete=Διαγραφή # selectTemplate.myTemplates=Τα πρότυπα των κόσμων μου # selectTemplate.realmsPlus=Προτάσεις προτύπων Realms Plus # -selectTemplate.marketplacePass=Προτεινόμενα πρότυπα Marketplace Pass #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=Προτεινόμενο περιεχόμενο Marketplace Pass #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=Εισαχθέντα πρότυπα # selectTemplate.download=Λήψη # selectTemplate.noTemplates=Δεν υπάρχουν πρότυπα κόσμου σε αυτήν τη συσκευή. # -selectTemplate.suggestedContent.title=Διαθέσιμα πρότυπα στο Marketplace # +selectTemplate.suggestedContent.title=Προτεινόμενο περιεχόμενο Marketplace # selectTemplate.suggestedContent.button=Εμφάνιση περισσότερων προτύπων # selectTemplate.createdBy=Δημιουργήθηκε από %s # selectTemplate.inventory=Τα πακέτα μου στο Marketplace # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=Είχαμε πρόβλημα με τη σύνδ store.loading.error.issues=Χμμ, το Marketplace έχει παρουσιάσει κάποια ζητήματα. Δοκίμασε να συνδεθείς αργότερα. # store.loading.error.internetDown=Δεν είναι δυνατή η ανίχνευση σύνδεσης στο internet. # store.loading.error.account=Υπάρχει ένα πρόβλημα με τον λογαριασμό σου. Δοκίμασε ξανά σύντομα και αν επιμείνει, επικοινώνησε με την εξυπηρέτηση πελατών. # +store.loading.error.account.banned=Δεν μπορείς να χρησιμοποιήσεις το marketplace μέχρι να λήξει η αναστολή σου. # store.giftPromo.day=Ημέρα %s ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=Διεκδικήθηκαν # @@ -8106,7 +8241,7 @@ store.realmsPlus.landing.info2.cancel=Ακύρωση στη σελίδα Συν store.realmsPlus.landing.info2.subscribe=Κάνε εγγραφή τώρα για %s/μήνα # store.realmsPlus.landing.info2.recentlyAdded=Προστέθηκαν πρόσφατα # store.realmsPlus.landing.info2.persona=Δωρεάν αντικείμενα δημιουργίας χαρακτήρα - Εξαργύρωσε ένα νέο σετ κάθε μήνα! # -store.realmsPlus.landing.info2.social=Κοινωνικοποιήσου με τις Ιστορίες των Realms # +store.realmsPlus.landing.info2.social=Κοινωνικοποιήσου με το Realms Stories # store.realmsPlus.landing.beta=Beta # store.realmsPlus.landing.preview=Προεπισκόπηση # @@ -8138,8 +8273,8 @@ store.realmsPlus.faq.question9=Τι θα συμβεί στα Realms και στ store.realmsPlus.faq.answer9=Αν η συνδρομή σου λήξει, εσύ και οι φίλοι σου δεν θα μπορείτε να παίξετε μαζί στο Realms σε σύνδεση και δεν θα έχεις πια πρόσβαση στα πακέτα του Realms Plus. Μπορείς να κατεβάσεις κάθε κόσμο που είναι αποθηκευμένος στο Realm σου (μέσα σε 18 μήνες από τη λήξη της συνδρομής). Αν χρησιμοποιούσες κόσμους, πακέτα υφών ή συνδυαστικά πακέτα στο Realms Plus, θα χρειαστεί να αγοράσεις αυτά τα πακέτα στο κατάστημα ή, αν τα εν λόγω πακέτα περιλαμβάνονται ακόμα στο Realms Plus, να κάνεις νέα συνδρομή για να παίξεις με αυτά τα πρότυπα κόσμου. # store.realmsPlus.faq.question10=Χρειάζομαι το Realms Plus και το Marketplace Pass; # store.realmsPlus.faq.answer10=Όχι. Το Marketplace Pass είναι ένας κατάλογος με περισσότερα από 150+ πακέτα για να απολαύσεις. Το Realms Plus είναι ένα Realm 10 παικτών που περιέχει το Marketplace Pass. Προτείνουμε να κάνεις συνδρομή σ' αυτό που είναι κατάλληλο για σένα. # -store.realmsPlus.faq.question11=Τι είναι οι Ιστορίες των Realms; # -store.realmsPlus.faq.answer11=Οι Ιστορίες των Realms είναι ένας κοινωνικός κόμβος για το Realm σου. Δημοσίευσε στη Ροή Ιστοριών για να ενημερώσεις για το τι ετοιμάζεις και κοινοποίησε τις περιπέτειες και τις δημιουργίες σου. Μάθε ποιος είναι ποιος μέσω μιας χρήσιμης λίστας με όλα τα μέλη. Δες πότε παίζουν άλλα μέλη, για να τσεκάρεις τις δημιουργίες τους ή για να παίξεις κι εσύ μαζί τους την επόμενη φορά. # +store.realmsPlus.faq.question11=Τι είναι το Realms Stories; # +store.realmsPlus.faq.answer11=Το Realms Stories είναι ένας κοινωνικός κόμβος για το Realm σου. Δημοσίευσε στη Ροή Ιστοριών για να ενημερώσεις για το τι ετοιμάζεις και κοινοποίησε τις περιπέτειες και τις δημιουργίες σου. Μάθε ποιος είναι ποιος μέσω μιας χρήσιμης λίστας με όλα τα μέλη. Δες πότε παίζουν άλλα μέλη, για να τσεκάρεις τις δημιουργίες τους ή για να παίξεις κι εσύ μαζί τους την επόμενη φορά. # store.realmsPlus.content.marketplacePass=Το Realms Plus περιλαμβάνει το Marketplace Pass! # store.realmsPlus.content.skinDescription=Άλλαξε το στυλ σου με εμφανίσεις! # @@ -8405,10 +8540,17 @@ store.mashup.count.skin=1 Εμφάνιση # store.mashup.count.skins=%s εμφανίσεις # store.mashup.count.texturePack=1 Πακέτο υφών # store.mashup.count.texturePacks=%s Πακέτα υφών #number of texture packs # -store.mashup.count.world=1 Κόσμος # +store.mashup.count.world=1 κόσμος # store.mashup.count.worlds=%s Κόσμοι #number of worlds # store.mashup.count.addonPack=1 πρόσθετο # store.mashup.count.addonPacks=%s πρόσθετα #number of addons # +store.mashup.count.mashup=Συνδυαστικό πακέτο # +store.mashup.hover.label.addonPack=Μπορούν να εφαρμοστούν πρόσθετα σε οποιονδήποτε κόσμο. # +store.mashup.hover.label.world=Ένας χειροποίητος χάρτης Minecraft. # +store.mashup.hover.label.skin=Εφάρμοσε μια νέα εμφάνιση στον χαρακτήρα σου. # +store.mashup.hover.label.texturePack=Πρόσθεσε μια νέα εμφάνιση στον κόσμο ή στο περιβάλλον χρήσης του παιχνιδιού σου. # +store.mashup.hover.label.mashup.lineOne=Συνδυασμός διαφορετικών τύπων περιεχομένου. # +store.mashup.hover.label.mashup.lineTwo=Αυτό το συνδυαστικό πακέτο περιέχει: # store.addon.activateAddonPack=Ενεργοποίηση πρόσθετου! # store.addon.newOrExistingTitle=Πού να προσθέσεις; # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=Πίνακας # tile.chest.name=Σεντούκι # tile.ender_chest.name=Σεντούκι του Τελειωτή # tile.jigsaw.name=Κύβος συναρμολόγησης # +tile.heavy_core.name=Βαρύς πυρήνας # tile.honey_block.name=Κύβος μελιού # tile.honeycomb_block.name=Κύβος κηρήθρας # tile.lodestone.name=Μαγνητίτης # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=Πλάκα από γυαλισμένο μαυ tile.polished_blackstone_pressure_plate.name=Πλάκα πίεσης από γυαλισμένο μαυρόλιθο # tile.polished_blackstone_button.name=Κουμπί από γυαλισμένο μαυρόλιθο # tile.polished_blackstone_wall.name=Τοίχος από γυαλισμένο μαυρόλιθο # +tile.polished_tuff.name=Γυαλισμένος Τόφος # +tile.polished_tuff_slab.name=Πλάκα από Γυαλισμένο Τόφο # +tile.polished_tuff_stairs.name=Σκάλες από Γυαλισμένο Τόφο # +tile.polished_tuff_wall.name=Τοίχος από Γυαλισμένο Τόφο # tile.soul_campfire.name=Ψυχοφωτιά κατασκήνωσης # tile.chiseled_nether_bricks.name=Λαξευμένα τούβλα Εγκάτων # tile.cracked_nether_bricks.name=Ραγισμένα τούβλα Εγκάτων # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=Κίτρινη τερακότα # tile.structure_block.name=Κύβος οικοδομήματος # structure_block.waterlog_block=Κύβοι με Νερό # tile.structure_void.name=Κενό οικοδομήματος # +tile.trial_spawner.name=Γεννήτρια Δοκιμαστικής έκδοσης # +tile.vault.name=Θησαυροφυλάκιο # tile.wool.black.name=Μαύρο μαλλί # tile.wool.blue.name=Μπλε μαλλί # tile.wool.brown.name=Καφέ μαλλί # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=Φτέρη # tile.tallgrass.grass.name=Γρασίδι # tile.tallgrass.name=Γρασίδι # tile.tallgrass.shrub.name=Χαμόδεντρο # +tile.tuff_brick_slab.name=Πλάκα από Τούβλα Τόφου # +tile.tuff_brick_stairs.name=Σκάλες από Τούβλα Τόφου # +tile.tuff_brick_wall.name=Τοίχος από Τούβλα Τόφου # +tile.tuff_bricks.name=Τούβλα από Τόφο # +tile.tuff_slab.name=Πλάκα από Τόφο # +tile.tuff_stairs.name=Σκάλες από Τόφο # +tile.tuff_wall.name=Τοίχος από Τόφο # tile.seagrass.seagrass.name=Θαλάσσια βλάστηση # tile.sea_pickle.name=Θαλάσσια πίκλα # tile.turtle_egg.name=Αυγό θαλάσσιας χελώνας # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=Κόκκινο χαλί # tile.carpet.silver.name=Ανοικτό γκρι χαλί # tile.carpet.white.name=Λευκό χαλί # tile.carpet.yellow.name=Κίτρινο χαλί # +tile.crafter.name=Κατασκευαστής # tile.crafting_table.name=Τραπέζι κατασκευών # tile.glazedTerracotta.white.name=Λευκή λουστραρισμένη τερακότα # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=Πλάκα από κερωμένο κομμέν tile.waxed_exposed_cut_copper_slab.name=Πλάκα από κερωμένο εκτεθειμένο κομμένο χαλκό # tile.waxed_weathered_cut_copper_slab.name=Πλάκα από κερωμένο φθαρμένο κομμένο χαλκό # tile.waxed_oxidized_cut_copper_slab.name=Πλάκα από κερωμένο οξειδωμένο κομμένο χαλκό # + +tile.chiseled_copper.name=Σμιλεμένος Χαλκός # +tile.exposed_chiseled_copper.name=Εκτεθειμένος Σμιλεμένος Χαλκός # +tile.oxidized_chiseled_copper.name=Οξειδωμένος Σμιλεμένος Χαλκός # +tile.waxed_chiseled_copper.name=Κερωμένος Σμιλεμένος Χαλκός # +tile.waxed_exposed_chiseled_copper.name=Κερωμένος Εκτεθειμένος Σμιλεμένος Χαλκός # +tile.waxed_oxidized_chiseled_copper.name=Κερωμένος Οξειδωμένος Σμιλεμένος Χαλκός # +tile.waxed_weathered_chiseled_copper.name=Κερωμένος Φθαρμένος Σμιλεμένος Χαλκός # +tile.weathered_chiseled_copper.name=Φθαρμένος Σμιλεμένος Χαλκός # + +tile.copper_bulb.name=Χάλκινη Λάμπα # +tile.exposed_copper_bulb.name=Εκτεθειμένη Χάλκινη Λάμπα # +tile.oxidized_copper_bulb.name=Οξειδωμένη Χάλκινη Λάμπα # +tile.waxed_copper_bulb.name=Κερωμένη Χάλκινη Λάμπα # +tile.waxed_exposed_copper_bulb.name=Κερωμένη Εκτεθειμένη Χάλκινη Λάμπα # +tile.waxed_oxidized_copper_bulb.name=Κερωμένη Οξειδωμένη Χάλκινη Λάμπα # +tile.waxed_weathered_copper_bulb.name=Κερωμένη Φθαρμένη Χάλκινη Λάμπα # +tile.weathered_copper_bulb.name=Φθαρμένη Χάλκινη Λάμπα # + +tile.copper_door.name=Χάλκινη Πόρτα # +tile.exposed_copper_door.name=Εκτεθειμένη Χάλκινη Πόρτα # +tile.oxidized_copper_door.name=Οξειδωμένη Χάλκινη Πόρτα # +tile.waxed_copper_door.name=Κερωμένη Χάλκινη Πόρτα # +tile.waxed_exposed_copper_door.name=Κερωμένη Εκτεθειμένη Χάλκινη Πόρτα # +tile.waxed_oxidized_copper_door.name=Κερωμένη Οξειδωμένη Χάλκινη Πόρτα # +tile.waxed_weathered_copper_door.name=Κερωμένη Φθαρμένη Χάλκινη Πόρτα # +tile.weathered_copper_door.name=Φθαρμένη Χάλκινη Λάμπα # + +tile.copper_grate.name=Χάλκινη Σχάρα # +tile.exposed_copper_grate.name=Εκτεθειμένη Χάλκινη Σχάρα # +tile.oxidized_copper_grate.name=Οξειδωμένη Χάλκινη Σχάρα # +tile.waxed_copper_grate.name=Κερωμένη Χάλκινη Σχάρα # +tile.waxed_exposed_copper_grate.name=Κερωμένη Εκτεθειμένη Χάλκινη Σχάρα # +tile.waxed_oxidized_copper_grate.name=Κερωμένη Οξειδωμένη Χάλκινη Σχάρα # +tile.waxed_weathered_copper_grate.name=Κερωμένη Φθαρμένη Χάλκινη Σχάρα # +tile.weathered_copper_grate.name=Φθαρμένη Χάλκινη Σχάρα # + +tile.copper_trapdoor.name=Χάλκινη Καταπακτή # +tile.exposed_copper_trapdoor.name=Εκτεθειμένη Χάλκινη Καταπακτή # +tile.oxidized_copper_trapdoor.name=Οξειδωμένη Χάλκινη Καταπακτή # +tile.waxed_copper_trapdoor.name=Κερωμένη Χάλκινη Καταπακτή # +tile.waxed_exposed_copper_trapdoor.name=Κερωμένη Εκτεθειμένη Χάλκινη Καταπακτή # +tile.waxed_oxidized_copper_trapdoor.name=Κερωμένη Οξειδωμένη Χάλκινη Καταπακτή # +tile.waxed_weathered_copper_trapdoor.name=Κερωμένη Φθαρμένη Χάλκινη Καταπακτή # +tile.weathered_copper_trapdoor.name=Φθαρμένη Χάλκινη Καταπακτή # + tile.raw_copper_block.name=Κύβος ακατέργαστου χαλκού # tile.raw_iron_block.name=Κύβος ακατέργαστου σιδήρου # tile.raw_gold_block.name=Κύβος ακατέργαστου χρυσού # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=Βέλος τύχης # tipped_arrow.effect.wither=Βέλος αποσύνθεσης # tipped_arrow.effect.turtleMaster=Βέλος του Μάστερ των Χελωνών # tipped_arrow.effect.slowFalling=Βέλος επιβράδυνσης πτώσης # +tipped_arrow.effect.infested=Βέλος Ψαράκι # +tipped_arrow.effect.oozing=Βέλος που Αναβλύζει # +tipped_arrow.effect.weaving=Βέλος Ύφανσης # +tipped_arrow.effect.windCharged=Βέλος Φόρτισης Ανέμου # structure_block.title=Κύβος οικοδομήματος # structure_block.structure_name=Όνομα οικοδομήματος # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=Μερικές από τις πιο π worldError.worldFailedRecovery=Η ανάκτηση απέτυχε # worldError.worldFailedRecoveryText=Εντοπίσαμε έναν κατεστραμμένο κόσμο, αλλά η ανάκτησή του απέτυχε. # +writeThrottling.osDialog.body=Η αιτούμενη λειτουργία υπολογίζεται ότι θα χρειαστεί %d λεπτά για να ολοκληρωθεί. Μην απενεργοποιήσεις τη συσκευή σου κατά τη διάρκεια αυτής της περιόδου. # +writeThrottling.osDialog.cancel=Ακύρωση Ενέργειας # +writeThrottling.osDialog.confirm=Συνέχεια # +writeThrottling.progressBar.title=Προετοιμασία δεδομένων # +writeThrottling.progressBar.body=Προετοιμασία των αρχείων σου… # + userData.recovered.title=Τα δεδομένα αποθήκευσης ανακτήθηκαν # userData.recovered.text=Οι κατεστραμμένες ρυθμίσεις χρήστη ανακτήθηκαν με επιτυχία. # userData.recovered.warning=Μερικές από τις πιο πρόσφατες αλλαγές σου μπορεί να χάθηκαν κατά την ανάκτηση. # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=Μήνυμα συνομιλίας # xbox.report.area.skin=Εμφάνιση παίκτη # xbox.report.area.gameplay=Παιχνίδι # xbox.report.area.ingame=Δημιουργίες εντός παιχνιδιού # -xbox.report.area.other=Άλλο # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=Διαδικτυακός εκφοβισμός # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=Δυστυχώς δεν ήταν δυνα gathering.connect.title=Γίνεται σύνδεση... # gathering.info.qr.title.onlineService=Μάθε περισσότερα # gathering.info.qr.body.onlineService.nso=Χρειάζεσαι μια συνδρομή στο Nintendo Switch Online, για να συμμετάσχεις σε μια εκδήλωση στο Minecraft. # -gathering.info.qr.body.onlineService.psn=Πρέπει να είσαι συνδεδεμένος στο \«PlayStation Plus\», για να συμμετάσχεις σε μια εκδήλωση στο Minecraft. # +gathering.info.qr.body.onlineService.psn=Πρέπει να είσαι συνδεδεμένος στο PlayStation®Plus, για να συμμετάσχεις σε μια εκδήλωση στο Minecraft. #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=Πρέπει να είσαι συνδεδεμένος για να συμμετάσχεις σε μια εκδήλωση στο Minecraft. # gathering.info.qr.title.childAccount=Δεν επιτρέπεται το online παιχνίδι # gathering.info.qr.body.childAccount=Οι τρέχοντες γονικοί έλεγχοι δεν σου επιτρέπουν να παίζεις online. # diff --git a/resource_pack/texts/en_GB.lang b/resource_pack/texts/en_GB.lang index 454b68603..6836043b2 100644 --- a/resource_pack/texts/en_GB.lang +++ b/resource_pack/texts/en_GB.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=Choose Seed # accessibility.start.feedback=Submit Feedback Link to Website # accessibility.start.new=New # -accessibility.start.profile=Choose Profile # accessibility.start.skinPicker=Choose Skin # accessibility.store.tag=Tag # @@ -1094,10 +1093,6 @@ commands.me.description=Displays a message about yourself. # commands.message.display.incoming=%1$s whispers to you: %2$s # commands.message.display.outgoing=You whisper to %1$s: %2$s # commands.message.sameTarget=You can't send a private message to yourself! # -commands.message.warn=§4You have been sent a warning. Your behaviour may be found offensive by other players. Please be mindful of others you are playing with. # -commands.message.toastWarn=Minecraft is for everyone! Please make sure to conduct yourself according to our community standards. # -commands.warn.invalidWarningLevel=Invalid warning level. # -commands.warn.playerDoesNotExist=Could not find player. Please select a valid player. # commands.mobevent.description=Controls what mob events are allowed to run. # commands.mobevent.eventsEnabledSetToTrue=Mob Events are now enabled. Individual events which are set to false will not run. # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=- %s: %s from %d %d %d to %d %d %d # commands.volumearea.entry.withoutIdentifier=- %s: from %d %d %d to %d %d %d # commands.volumearea.noneExist.currentDimension=No volumes exist in the current dimension. # commands.volumearea.inUse=%1$d/%2$d volumes in use. # -commands.warn.description=Sends a warn message to player. # commands.weather.clear=Changing to clear weather # commands.weather.description=Sets the weather. # commands.weather.disabled=Weather Cycle isn't enabled in this world. # @@ -1572,6 +1566,7 @@ container.beacon=Beacon # container.brewing=Brewing Stand # container.chest=Chest # container.chestDouble=Large Chest # +container.crafter=Crafter # container.crafting=Crafting # container.creative=Item Selection # container.dispenser=Dispenser # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=Caves and Cliffs # createWorldScreen.cavesandcliffsDescription=Explore the new varied cave generation # createWorldScreen.spectatorMode=Spectator Mode # createWorldScreen.spectatorModeDescription=Try out the early versions of Spectator Mode # -createWorldScreen.experimentalCameras=Experimental Cameras # -createWorldScreen.experimentalCamerasDescription=Contains example camera presets (the camera command is no longer experimental) # createWorldScreen.recipeUnlocking=Recipe Unlocking # createWorldScreen.recipeUnlockingDescription=Enable recipe unlocking # createWorldScreen.experimentalholiday=Holiday Creator Features # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=Creating new world... # createWorldScreen.progress.realms=Resetting Realm... # createWorldScreen.seed.desc=Enter a seed to generate the same terrain again. Leave blank for a random world. # createWorldScreen.showCoordinates=Show Coordinates # +createWorldScreen.showDaysPlayed=Show Days Played # createWorldScreen.worldType=World Type # createWorldScreen.randomtickspeed=Random Tick Speed # createWorldScreen.randomtickspeed.reset=Reset Random Tick Speed # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=Delete Project # createWorldScreen.editor.projectOptionsLabel=Project Options # createWorldScreen.editor.delete.confirm=Delete project permanently? # createWorldScreen.editor.deleteWarningFormat=Are you sure you want to delete '%s'? This project will be lost forever! # +createWorldScreen.eduCloud.about.body=Filename: '%1$s'%2$sLast updated: %3$s%4$sTo download, click OK and then Download.%5$s # +createWorldScreen.eduCloud.about.title=About Cloud World File # createWorldScreen.eduCloud.delete.confirm=Delete local world? # createWorldScreen.eduCloud.deleteWarningFormat=Are you sure you want to delete '%1$s' on this device?%2$sThe cloud version '%3$s' will not be affected and can be re-synced later. # createWorldScreen.experimentalDeferredTechnicalPreview=Render Dragon Features for Creators # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Windows Store # realmsSettingsScreen.xboxOneStoreDisplayName=Xbox Store # realmsSettingsScreen.amazonStoreDisplayName=Amazon Appstore # realmsSettingsScreen.oculusStoreDisplayName=Oculus Store # -realmsSettingsScreen.berwickStoreDisplayName="PlayStation Store" # -realmsSettingsScreen.SonyStoreDisplayName='PlayStation Store' #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=unknown store # realmsSettingsScreen.extendingRealm=Extending Realm... # realmsSettingsScreen.offerError.title=Purchase Pending # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=Packs purchased outside Minecra xbl.syncIAP.confirmSync.prompt.yes=Yes, Sync My Purchases # xbl.marketplace.account.error.body.nobutton=There is an error with your account. You will be unable to use the marketplace until we have resolved the issue. If this issue persists for several days please contact support. # -xbl.marketplace.account.banned.body.nobutton=You are unable to use the Marketplace until your suspension expires. # playfab.account.banned.temporary=suspended # playfab.account.banned.permanent=banned # @@ -2487,6 +2482,14 @@ date.daysAbbreviated1Char=%sd ### It needs to be abbreviated with no more than date.hoursAbbreviated1Char=%sh ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%sm ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%ss ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s days # +date.hoursPlural=%s hours # +date.minutesPlural=%s minutes # +date.secondsPlural=%s seconds # +date.daySingular=%s day # +date.hourSingular=%s hour # +date.minuteSingular=%s minute # +date.secondSingular=%s second # date.timeLeft=%s left # dayOneExperience.carousel.title=Welcome to New Minecraft! # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=HOST # edu.worlds_screen.settings=SETTINGS # edu.worlds_screen.download=DOWNLOAD ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=MANAGE # +edu.worlds_screen.about=ABOUT # edu.worlds_screen.back=BACK # edu.worlds_screen.copy=COPY # edu.worlds_screen.export=EXPORT # @@ -2791,7 +2795,13 @@ edu.templates.empty_banner=You can get world templates from the Minecraft Educat edu.pause.multiplayer.disabled=Multiplayer is not available in this lesson. # effect.badOmen=Bad Omen # +effect.infested=Infested # +effect.oozing=Oozing # +effect.raid_omen=Raid Omen # +effect.trial_omen=Trial Omen # effect.villageHero=Hero of the Village # +effect.weaving=Weaving # +effect.wind_charged=Wind Charged # enchantment.arrowDamage=Power # enchantment.arrowFire=Flame # @@ -2810,6 +2820,9 @@ enchantment.durability=Unbreaking # enchantment.fire=Fire Aspect # enchantment.fishingSpeed=Lure # enchantment.frostwalker=Frost Walker # +enchantment.heavy_weapon.breach=Breach # +enchantment.heavy_weapon.density=Density # +enchantment.heavy_weapon.windburst=Wind Burst # enchantment.knockback=Knockback # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=Bat # entity.bee.name=Bee # entity.blaze.name=Blaze # entity.boat.name=Boat # +entity.bogged.name=Bogged # +entity.breeze.name=Breeze # +entity.breeze_wind_charge_projectile.name=Wind Charge # entity.cat.name=Cat # entity.cave_spider.name=Cave Spider # entity.chicken.name=Chicken # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=Unskilled Villager # entity.villager_v2.name=Villager # entity.vindicator.name=Vindicator # entity.wandering_trader.name=Wandering Trader # +entity.wind_charge_projectile.name=Wind Charge # entity.witch.name=Witch # entity.wither.name=Wither # entity.wither_skeleton.name=Wither Skeleton # @@ -3009,6 +3026,7 @@ feature.ruins=Ocean Ruins # feature.pillager_outpost=Pillager Outpost # feature.bastion_remnant=Bastion Remnant # feature.ruined_portal=Ruined Portal # +feature.trial_chambers=Trial Chambers # feed.like=Like # feed.manage_feed=Manage feed # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=Move :tip_left_stick: to move around # gameTip.flying.mouse=Double-tap :_input_key.jump: to fly # gameTip.flying.touch=Double-tap jump to fly # +gameTip.flyDown.mouse=Press :_input_key.sneak: to fly down # +gameTip.flyUp.mouse=Press :_input_key.jump: to fly up # + +gameTip.stopFlying.mouse=Double-tap :_input_key.jump: to stop flying # +gameTip.stopFlying.touch=Double-tap fly down to stop flying # + gameTip.jump.mouse=Jump with :_input_key.jump: # +gameTip.swim.mouse=Press and hold :_input_key.jump: to swim up # -gameTip.hotbar.mouse=Scroll mouse wheel to select # in hotbar to hold it # -gameTip.hotbar.touch=Tap # in hotbar to hold it # -gameTip.hotbar.controller=Tap # in hotbar to hold it # +gameTip.hotbar.selection.mouse=Scroll or press %s to hold item ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=Tap item in hotbar to hold it # gameTip.breakBlock.mouse=Hold left-click to break blocks # gameTip.breakBlock.touch=Tap and hold to break blocks # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=You are sneaking! Can't fall off edges now # gameTip.sneak.touch=You're sneaking, so you can't fall off edges # gameTip.sneak.controller=You're sneaking, so you can't fall off edges # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place # gameTip.placeCraftingTable.touch=Place your crafting table by tapping the ground # gameTip.placeCraftingTable.controller=Place your crafting table, hold it then tap the ground # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=Thank you for sharing your review! # gui.submitFeedback.failure.status.unprocessableEntity=You do not own this item you are trying to provide feedback for. (Error Code: %d) # gui.submitFeedback.failure.status.tooManyRequests=Oh no! You have sent too many reviews. Please try again later. (Error Code: %d) # gui.submitFeedback.failure.status.other=Cannot submit your review at this time, please try again later. (Error Code: %d) # +gui.togglable_slot=Press to disable slot # gui.playOffline=Play Offline # gui.signIn=Sign In # gui.genericNetworkError=Something went wrong. Try checking your Internet connection. # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=Explore a world of possibility with Minecoins: Minecr howtoplay.minecoins.text.2=Once redeemed, your Minecoins are linked to your Microsoft account, so you can access your coins and purchases on other supported devices, too! # howtoplay.minecoins.button.text.1=Get Minecoins # howtoplay.minecoins.header.1=Disclaimer # -howtoplay.minecoins.text.3=*Minecoins require a version of Minecraft: Bedrock Edition with Minecraft Marketplace. Minecoins are not compatible on Sony PlayStation. For compatibility information, see minecraft.net/minecoins  # +howtoplay.minecoins.text.3=*Minecoins require a version of Minecraft: Bedrock Edition with Minecraft Marketplace. Minecoins are not compatible on Sony PlayStation®. For compatibility information see minecraft.net/minecoins  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=Mining # @@ -4145,7 +4170,7 @@ level.editor.export.failed=Project export failed # level.editor.import.failed=Project import failed # level.editor.import.failed.incompatibleEdition=Project import failed: Unsupported file format # -inbox.invite.title=Realms Invite # +inbox.invite.title=Realm invite to # invite.clear=Clear Selection # invite.send=Send %d Invites # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=Red Per Bend Sinister Inverted # item.banner.diagonal_up_right.silver=Light Grey Per Bend Sinister Inverted # item.banner.diagonal_up_right.white=White Per Bend Sinister Inverted # item.banner.diagonal_up_right.yellow=Yellow Per Bend Sinister Inverted # +item.banner.flow.black=Black Flow # +item.banner.flow.blue=Blue Flow # +item.banner.flow.brown=Brown Flow # +item.banner.flow.cyan=Cyan Flow # +item.banner.flow.gray=Grey Flow # +item.banner.flow.green=Green Flow # +item.banner.flow.lightBlue=Light Blue Flow # +item.banner.flow.lime=Lime Flow # +item.banner.flow.magenta=Magenta Flow # +item.banner.flow.orange=Orange Flow # +item.banner.flow.pink=Pink Flow # +item.banner.flow.purple=Purple Flow # +item.banner.flow.red=Red Flow # +item.banner.flow.silver=Light Grey Flow # +item.banner.flow.white=White Flow # +item.banner.flow.yellow=Yellow Flow # item.banner.flower.black=Black Flower Charge # item.banner.flower.blue=Blue Flower Charge # item.banner.flower.brown=Brown Flower Charge # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=White Base Gradient # item.banner.gradient_up.yellow=Yellow Base Gradient # item.banner.gray.name=Grey Banner # item.banner.green.name=Green Banner # +item.banner.guster.black=Black Guster # +item.banner.guster.blue=Blue Guster # +item.banner.guster.brown=Brown Guster # +item.banner.guster.cyan=Cyan Guster # +item.banner.guster.gray=Grey Guster # +item.banner.guster.green=Green Guster # +item.banner.guster.lightBlue=Light Blue Guster # +item.banner.guster.lime=Lime Guster # +item.banner.guster.magenta=Magenta Guster # +item.banner.guster.orange=Orange Guster # +item.banner.guster.pink=Pink Guster # +item.banner.guster.purple=Purple Guster # +item.banner.guster.red=Red Guster # +item.banner.guster.silver=Light Grey Guster # +item.banner.guster.white=White Guster # +item.banner.guster.yellow=Yellow Guster # item.banner.half_horizontal.black=Black Per Fess # item.banner.half_horizontal.blue=Blue Per Fess # item.banner.half_horizontal.brown=Brown Per Fess # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=Acacia Boat # item.boat.big_oak.name=Dark Oak Boat # item.bone.name=Bone # item.book.name=Book # +item.breeze_rod.name=Breeze Rod # item.chainmail_boots.name=Chain Boots # item.leather_boots.name=Leather Boots # item.diamond_boots.name=Diamond Boots # @@ -4991,6 +5049,7 @@ item.comparator.name=Redstone Comparator # item.compass.name=Compass # item.lodestonecompass.name=Lodestone Compass # item.cookie.name=Biscuit # +item.copper_door.name=Copper Door # item.crossbow.name=Crossbow # item.diamond.name=Diamond # item.repeater.name=Redstone Repeater # @@ -5038,6 +5097,7 @@ tile.end_rod.name=End Rod # item.ender_eye.name=Eye of Ender # item.ender_pearl.name=Ender Pearl # item.experience_bottle.name=Bottle o' Enchanting # +item.exposed_copper_door.name=Exposed Copper Door # item.feather.name=Feather # item.fermented_spider_eye.name=Fermented Spider Eye # item.fireball.name=Fire Charge # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=Golden Leggings # item.iron_leggings.name=Iron Leggings # item.nautilus_shell.name=Nautilus Shell # item.heart_of_the_sea.name=Heart of the Sea # +item.mace.name=Mace # item.magma_cream.name=Magma Cream # item.map.name=Map # item.map.exploration.mansion.name=Woodland Explorer Map # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=Savanna Village Map # item.map.exploration.village_desert.name=Desert Village Map # item.map.exploration.jungle_temple.name=Jungle Explorer Map # item.map.exploration.swamp_hut.name=Swamp Explorer Map # +item.map.exploration.trial_chambers.name=Trial Explorer Map # item.melon.name=Melon # item.milk.name=Milk # item.minecart.name=Minecart # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=Minecart with Chest # item.command_block_minecart.name=Minecart with Command Block # item.minecartFurnace.name=Minecart with Furnace # item.hopper_minecart.name=Minecart with Hopper # +item.ominous_bottle.name=Ominous Bottle # +item.ominous_trial_key.name=Ominous Trial Key # +item.oxidized_copper_door.name=Oxidised Copper Door # item.tnt_minecart.name=Minecart with TNT # item.pitcher_pod.name=Pitcher Pod # item.torchflower_seeds.name=Torchflower Seeds # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=Agent Spawn Egg # item.spawn_egg.entity.armadillo.name=Armadillo Spawn Egg # item.spawn_egg.entity.axolotl.name=Axolotl Spawn Egg # item.spawn_egg.entity.bee.name=Bee Spawn Egg # +item.spawn_egg.entity.bogged.name=Bogged Spawn Egg # +item.spawn_egg.entity.breeze.name=Breeze Spawn Egg # item.spawn_egg.entity.hoglin.name=Hoglin Spawn Egg # item.spawn_egg.entity.cat.name=Cat Spawn Egg # item.spawn_egg.entity.chicken.name=Chicken Spawn Egg # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 - ward # item.record_pigstep.desc=Lena Raine – Pigstep # item.record_otherside.desc=Lena Raine - otherside # item.record_relic.desc=Aaron Cherof – Relic # +item.record_creator.desc=Lena Raine – Creator # +item.record_creator_music_box.desc=Lena Raine – Creator (Music Box) # +item.record_precipice.desc=Aaron Cherof – Precipice # item.redstone.name=Redstone Dust # item.reeds.name=Sugar Canes # item.kelp.name=Kelp # @@ -5324,6 +5394,12 @@ item.iron_sword.name=Iron Sword # item.stone_sword.name=Stone Sword # item.wooden_sword.name=Wooden Sword # item.unbreakable=Unbreakable # +item.waxed_copper_door.name=Waxed Copper Door # +item.waxed_exposed_copper_door.name=Waxed Exposed Copper Door # +item.waxed_oxidized_copper_door.name=Waxed Oxidised Copper Door # +item.waxed_weathered_copper_door.name=Waxed Weathered Copper Door # +item.weathered_copper_door.name=Weathered Copper Door # +item.wind_charge.name=Wind Charge # item.wheat.name=Wheat # item.wolf_armor.name=Wolf Armour # item.writable_book.name=Book & Quill # @@ -5331,6 +5407,7 @@ item.written_book.name=Written Book # item.glowstone_dust.name=Glowstone Dust # item.shulker_shell.name=Shulker Shell # item.totem.name=Totem of Undying # +item.trial_key.name=Trial Key # item.turtle_helmet.name=Turtle Shell # item.turtle_shell_piece.name=Turtle Scute # item.phantom_membrane.name=Phantom Membrane # @@ -5338,8 +5415,10 @@ item.sweet_berries.name=Sweet Berries # item.suspicious_stew.name=Suspicious Stew # item.banner_pattern.bricks=Field Masoned # item.banner_pattern.creeper=Creeper Charge # +item.banner_pattern.flow=Flow # item.banner_pattern.flower=Flower Charge # item.banner_pattern.globe=Globe # +item.banner_pattern.guster=Guster # item.banner_pattern.name=Banner Pattern # item.banner_pattern.piglin=Snout # item.banner_pattern.skull=Skull Charge # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=Banner Patterns # itemGroup.name.netherWartBlock=Nether Warts # itemGroup.name.candles=Candles # itemGroup.name.goatHorn=Goat Horns # +itemGroup.name.compounds=Compounds # +itemGroup.name.products=Products # jigsaw.title.target_pool=Target pool: # jigsaw.title.name=Name: # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=CLASSROOM SETTINGS # menu.serverStore=%s Store # menu.serverGenericName=Server # menu.play=Play # +menu.profile=Profile # menu.playdemo=Play Demo World # menu.playOnRealms=Play on Realm # menu.quickplay=Quick Play # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=Choose Your Starting Character # menu.character_cast.preview_title=Meet the Cast! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Realms Server ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=Servers # merchant.deprecated=Trade something else to unlock! # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=Full Keyboard Gameplay # options.fullKeyboardLayout=Full Keyboard Layout # options.improvedInputResponsePlaceholder=Improved Input Response # options.improvedInputResponsePlaceholder.tooltip=Reduces the delay between your input and what you see on your screen. This setting might use more battery power. # +options.dynamicTexturesToggle=Remove Texture Limit # +options.dynamicTexturesToggle.tooltip=Switching this from on to off will require a restart of the game. It may cause instability when using multiple Add-Ons or Resource Packs with many textures. # +options.dynamicTextures.popUp=If you turn on Remove Texture Limit, you will need to restart the game in order to turn it off. # +options.dynamicTextures.popUp.title=Are you sure? # options.fullscreen=Fullscreen # options.gamepadcursorsensitivity=Controller Cursor Sensitivity # options.gamertag=Gamertag: # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=Connect # options.creator.debuggerListen=Listen # options.creator.debuggerHost=Host # options.creator.debuggerPort=Port # +options.creator.watchdogHeading=Script Watchdog Settings # +options.creator.watchdogSlowWarning=Slow Script Warnings # +options.creator.watchdogSlowThreshold=Average exceeds # +options.creator.watchdogSlowFormat=%s Milliseconds # +options.creator.watchdogSlowFormatDefault=%s Milliseconds (default) # +options.creator.watchdogSpikeWarning=Script Spike Warnings # +options.creator.watchdogSpikeThreshold=Spike exceeds # +options.creator.watchdogSpikeFormat=%s Milliseconds # +options.creator.watchdogSpikeFormatDefault=%s Milliseconds (default) # +options.creator.watchdogHangThreshold=Interrupt after # +options.creator.watchdogHangFormat=%s Seconds # +options.creator.watchdogHangFormatDefault=%s Seconds (default) # options.vr_classic_box_selection=Outline Selection # options.hidegamepadcursor=Hide Controller Cursor # options.hidegui=Hide GUI # @@ -6662,7 +6761,7 @@ options.makeBackup=Make a backup copy of my world # options.managePrivacy=To manage privacy settings, please visit https://account.xbox.com/Settings in any web browser. ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Unlink Microsoft Account # options.unlink_msa.confirm.title=Unlink Microsoft Account? # -options.unlink_msa.confirm.warning=WARNING: You will no longer be able to store progression or purchases made on your "PlayStation 4" System on your account %s after unlinking. # +options.unlink_msa.confirm.warning=WARNING: You will no longer be able to store progression or purchases made on your PlayStation®4 System on your account %s after unlinking. #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=Unlinking your Microsoft Account from within this game will affect all Minecraft games on this platform that have used this Microsoft Account. # options.unlink_msa.confirm.checkbox1=I will no longer be able to access any in-game Store content when I play on other platforms. # options.unlink_msa.confirm.checkbox2=I will no longer be able to play cross-platform games with my friends on other platforms. # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=Load a world to customise controls # hudScreen.controlCustomization.tooltip.notouch=Use a touch device to customise controls # hudScreen.controlCustomization.tooltip.alreadycustomizing=There is already a touch control customisation screen open # hudScreen.controlCustomization.tooltip.alive=Player needs to be alive to customise controls. # +hudScreen.daysPlayed=Days played: %s # +hudScreen.daysPlayed.overflow=Too many to count! # playscreen.fileSize.MB=MB # playscreen.fileSize.GB=GB # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=Splash Potion of Healing # potion.heal.linger.name=Lingering Potion of Healing # potion.healthBoost=Health Boost # potion.hunger=Hunger # +potion.infested.linger.name=Lingering Potion of Infestation # +potion.infested.name=Potion of Infestation # +potion.infested.splash.name=Splash Potion of Infestation # +potion.infested=Infested # potion.invisibility=Invisibility # potion.invisibility.name=Potion of Invisibility # potion.invisibility.splash.name=Splash Potion of Invisibility # @@ -7067,6 +7172,10 @@ potion.nightVision=Night Vision # potion.nightVision.name=Potion of Night Vision # potion.nightVision.splash.name=Splash Potion of Night Vision # potion.nightVision.linger.name=Lingering Potion of Night Vision # +potion.oozing.linger.name=Lingering Potion of Oozing # +potion.oozing.name=Potion of Oozing # +potion.oozing.splash.name=Splash Potion of Oozing # +potion.oozing=Oozing # potion.poison=Poison # potion.poison.name=Potion of Poison # potion.poison.splash.name=Splash Potion of Poison # @@ -7108,6 +7217,14 @@ potion.weakness=Weakness # potion.weakness.name=Potion of Weakness # potion.weakness.splash.name=Splash Potion of Weakness # potion.weakness.linger.name=Lingering Potion of Weakness # +potion.weaving.linger.name=Lingering Potion of Weaving # +potion.weaving.name=Potion of Weaving # +potion.weaving.splash.name=Splash Potion of Weaving # +potion.weaving=Weaving # +potion.windCharged.linger.name=Lingering Potion of Wind Charging # +potion.windCharged.name=Potion of Wind Charging # +potion.windCharged.splash.name=Splash Potion of Wind Charging # +potion.windCharged=Wind Charged # potion.wither=Wither # potion.wither.name=Potion of Decay # potion.wither.splash.name=Splash Potion of Decay # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=This world can't be opened because of progressScreen.message.forbiddenContent=You do not own one or more of the applied packs # progressScreen.message.loadingSplitScreenAppearances=Loading splitscreen appearances... # progressScreen.message.finishedLoadingSplitScreenAppearances=Finished loading splitscreen appearances. # -progressScreen.message.modifiedWorldWarning=This world may not look or behave in the same way as non-modified worlds and you can't earn achievements. # +progressScreen.message.modifiedWorldWarning.1=You're playing in a world with Add-Ons! This will add new features to your Minecraft world. # +progressScreen.message.modifiedWorldWarning.2=Don't stop with just one! You can load multiple Add-Ons onto a single world at once. # +progressScreen.message.modifiedWorldWarning.3=Advanced Tip: A Resource Pack can change the textures of different blocks and entities. # +progressScreen.message.modifiedWorldWarning.4=Advanced Tip: A Behaviour Pack can change how a different items, entities or blocks work. # +progressScreen.message.modifiedWorldWarning.5=Advanced Tip: An Add-On includes both a Behaviour Pack and a Resource Pack. Make sure both packs are activated to ensure the Add-On works! # +progressScreen.message.modifiedWorldWarning.6=Add-Ons add new blocks, items, or mobs to your worlds. # +progressScreen.message.modifiedWorldWarning.7=Worlds and Add-ons are complex! While some work great together, you might get funky results with others. # +progressScreen.message.modifiedWorldWarning.8=More Add-Ons mean more fun, but the game might take longer to load. # progressScreen.dialog.title.resourcePack=Download Resource Packs? # progressScreen.dialog.title.behaviorAndResourcePack=Download World Behaviour & Resource Packs? # progressScreen.dialog.title.onlyBehavior=Download World Behaviour Packs? # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=Update World? # resourcePack.warning.add.body=This world may not look or behave in the same way as non-modified worlds. You should save a copy of your world before continuing. # resourcePack.warning.add.button.cancel=Don't add pack # resourcePack.warning.add.button.ok=Add the pack anyway # +resourcePack.warnings.contentKeyErrorBody=There was a problem loading pack %s. # +resourcePack.warnings.contentKeyErrorBodyMultiple=There was a problem loading packs %s. # +resourcePack.warnings.contentKeyErrorTitle=Error! # resourcePack.warning.remove.title=This Is Dangerous! # resourcePack.warning.remove.body=Adding or removing Packs after playing a world might break the world and cause you to lose what you've created. # resourcePack.warning.remove.button.cancel=Keep the pack # @@ -7557,7 +7684,9 @@ item.crimson_hanging_sign.name=Crimson Hanging Sign # item.danger_pottery_sherd.name=Danger Pottery Sherd # item.dark_oak_hanging_sign.name=Dark Oak Hanging Sign # item.explorer_pottery_sherd.name=Explorer Pottery Sherd # +item.flow_pottery_sherd.name=Flow Pottery Sherd # item.friend_pottery_sherd.name=Friend Pottery Sherd # +item.guster_pottery_sherd.name=Guster Pottery Sherd # item.heart_pottery_sherd.name=Heart Pottery Sherd # item.heartbreak_pottery_sherd.name=Heartbreak Pottery Sherd # item.howl_pottery_sherd.name=Howl Pottery Sherd # @@ -7568,6 +7697,7 @@ item.mourner_pottery_sherd.name=Mourner Pottery Sherd # item.oak_hanging_sign.name=Oak Hanging Sign # item.plenty_pottery_sherd.name=Plenty Pottery Sherd # item.prize_pottery_sherd.name=Prize Pottery Sherd # +item.scrape_pottery_sherd.name=Scrape Pottery Sherd # item.sheaf_pottery_sherd.name=Sheaf Pottery Sherd # item.shelter_pottery_sherd.name=Shelter Pottery Sherd # item.skull_pottery_sherd.name=Skull Pottery Sherd # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=Cherry Stairs # tile.cherry_trapdoor.name=Cherry Trapdoor # tile.cherry_wood.name=Cherry Wood # tile.chiseled_bookshelf.name=Chiselled Bookshelf # +tile.chiseled_tuff.name=Chiseled Tuff # +tile.chiseled_tuff_bricks.name=Chiseled Tuff Bricks # tile.decorated_pot.name=Decorated Pot # tile.pink_petals.name=Pink Petals # tile.stripped_bamboo_block.name=Block of Stripped Bamboo # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=Vex Armour Trim # trim_pattern.ward.name=Ward Armour Trim # trim_pattern.wayfinder.name=Wayfinder Armour Trim # trim_pattern.wild.name=Wild Armour Trim # +trim_pattern.bolt.name=Bolt Armour Trim # +trim_pattern.flow.name=Flow Armour Trim # upgrade.netherite_upgrade.name=Netherite Upgrade # storageManager.mainSizeLabel=%s - 1 Item # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=Delete World Template? # selectTemplate.delete=Delete # selectTemplate.myTemplates=My World Templates # selectTemplate.realmsPlus=Featured Realms Plus Templates # -selectTemplate.marketplacePass=Featured Marketplace Pass Templates #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=Featured Marketplace Pass Content #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=Imported Templates # selectTemplate.download=Download # selectTemplate.noTemplates=There are no world templates on this device. # -selectTemplate.suggestedContent.title=Featured Marketplace Templates # +selectTemplate.suggestedContent.title=Featured Marketplace Content # selectTemplate.suggestedContent.button=See More Templates # selectTemplate.createdBy=Created by %s # selectTemplate.inventory=My Marketplace Packs # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=We had an issue connecting. Please go back and tr store.loading.error.issues=Hmm, Marketplace is having some issues. Please try connecting later. # store.loading.error.internetDown=We can't detect an internet connection. # store.loading.error.account=There is an issue with your account. Try again soon and contact support if this persists. # +store.loading.error.account.banned=You are unable to use the marketplace until your suspension expires. # store.giftPromo.day=Day %s ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=Claimed # @@ -8405,10 +8540,17 @@ store.mashup.count.skin=1 Skin # store.mashup.count.skins=%s Skins # store.mashup.count.texturePack=1 Texture Pack # store.mashup.count.texturePacks=%s Texture Packs #number of texture packs # -store.mashup.count.world=1 World # +store.mashup.count.world=1 World # store.mashup.count.worlds=%s Worlds #number of worlds # store.mashup.count.addonPack=1 Add-On # store.mashup.count.addonPacks=%s Add-Ons #number of addons # +store.mashup.count.mashup=Mash-Up # +store.mashup.hover.label.addonPack=Add-Ons can be applied to any world. # +store.mashup.hover.label.world=A hand-crafted Minecraft map. # +store.mashup.hover.label.skin=Apply a new look to your character. # +store.mashup.hover.label.texturePack=Add a new visual to your world or game interface. # +store.mashup.hover.label.mashup.lineOne=A combination of different types of content. # +store.mashup.hover.label.mashup.lineTwo=This Mash-Up contains: # store.addon.activateAddonPack=Activate Add-On! # store.addon.newOrExistingTitle=Where to add? # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=Board # tile.chest.name=Chest # tile.ender_chest.name=Ender Chest # tile.jigsaw.name=Jigsaw Block # +tile.heavy_core.name=Heavy Core # tile.honey_block.name=Honey Block # tile.honeycomb_block.name=Honeycomb Block # tile.lodestone.name=Lodestone # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=Polished Blackstone Slab # tile.polished_blackstone_pressure_plate.name=Polished Blackstone Pressure Plate # tile.polished_blackstone_button.name=Polished Blackstone Button # tile.polished_blackstone_wall.name=Polished Blackstone Wall # +tile.polished_tuff.name=Polished Tuff # +tile.polished_tuff_slab.name=Polished Tuff Slab # +tile.polished_tuff_stairs.name=Polished Tuff Stairs # +tile.polished_tuff_wall.name=Polished Tuff Wall # tile.soul_campfire.name=Soul Campfire # tile.chiseled_nether_bricks.name=Chiselled Nether Bricks # tile.cracked_nether_bricks.name=Cracked Nether Bricks # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=Yellow Terracotta # tile.structure_block.name=Structure Block # structure_block.waterlog_block=Waterlog Blocks # tile.structure_void.name=Structure Void # +tile.trial_spawner.name=Trial Spawner # +tile.vault.name=Vault # tile.wool.black.name=Black Wool # tile.wool.blue.name=Blue Wool # tile.wool.brown.name=Brown Wool # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=Fern # tile.tallgrass.grass.name=Grass # tile.tallgrass.name=Grass # tile.tallgrass.shrub.name=Shrub # +tile.tuff_brick_slab.name=Tuff Brick Slab # +tile.tuff_brick_stairs.name=Tuff Brick Stairs # +tile.tuff_brick_wall.name=Tuff Brick Wall # +tile.tuff_bricks.name=Tuff Bricks # +tile.tuff_slab.name=Tuff Slab # +tile.tuff_stairs.name=Tuff Stairs # +tile.tuff_wall.name=Tuff Wall # tile.seagrass.seagrass.name=Seagrass # tile.sea_pickle.name=Sea Pickle # tile.turtle_egg.name=Sea Turtle Egg # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=Red Carpet # tile.carpet.silver.name=Light Grey Carpet # tile.carpet.white.name=White Carpet # tile.carpet.yellow.name=Yellow Carpet # +tile.crafter.name=Crafter # tile.crafting_table.name=Crafting Table # tile.glazedTerracotta.white.name=White Glazed Terracotta # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=Waxed Cut Copper Slab # tile.waxed_exposed_cut_copper_slab.name=Waxed Exposed Cut Copper Slab # tile.waxed_weathered_cut_copper_slab.name=Waxed Weathered Cut Copper Slab # tile.waxed_oxidized_cut_copper_slab.name=Waxed Oxidised Cut Copper Slab # + +tile.chiseled_copper.name=Chiselled Copper # +tile.exposed_chiseled_copper.name=Exposed Chiselled Copper # +tile.oxidized_chiseled_copper.name=Oxidised Chiselled Copper # +tile.waxed_chiseled_copper.name=Waxed Chiselled Copper # +tile.waxed_exposed_chiseled_copper.name=Waxed Exposed Chiselled Copper # +tile.waxed_oxidized_chiseled_copper.name=Waxed Oxidised Chiselled Copper # +tile.waxed_weathered_chiseled_copper.name=Waxed Weathered Chiselled Copper # +tile.weathered_chiseled_copper.name=Weathered Chiselled Copper # + +tile.copper_bulb.name=Copper Bulb # +tile.exposed_copper_bulb.name=Exposed Copper Bulb # +tile.oxidized_copper_bulb.name=Oxidised Copper Bulb # +tile.waxed_copper_bulb.name=Waxed Copper Bulb # +tile.waxed_exposed_copper_bulb.name=Waxed Exposed Copper Bulb # +tile.waxed_oxidized_copper_bulb.name=Waxed Oxidised Copper Bulb # +tile.waxed_weathered_copper_bulb.name=Waxed Weathered Copper Bulb # +tile.weathered_copper_bulb.name=Weathered Copper Bulb # + +tile.copper_door.name=Copper Door # +tile.exposed_copper_door.name=Exposed Copper Door # +tile.oxidized_copper_door.name=Oxidised Copper Door # +tile.waxed_copper_door.name=Waxed Copper Door # +tile.waxed_exposed_copper_door.name=Waxed Exposed Copper Door # +tile.waxed_oxidized_copper_door.name=Waxed Oxidised Copper Door # +tile.waxed_weathered_copper_door.name=Waxed Weathered Copper Door # +tile.weathered_copper_door.name=Weathered Copper Door # + +tile.copper_grate.name=Copper Grate # +tile.exposed_copper_grate.name=Exposed Copper Grate # +tile.oxidized_copper_grate.name=Oxidised Copper Grate # +tile.waxed_copper_grate.name=Waxed Copper Grate # +tile.waxed_exposed_copper_grate.name=Waxed Exposed Copper Grate # +tile.waxed_oxidized_copper_grate.name=Waxed Oxidised Copper Grate # +tile.waxed_weathered_copper_grate.name=Waxed Weathered Copper Grate # +tile.weathered_copper_grate.name=Weathered Copper Grate # + +tile.copper_trapdoor.name=Copper Trapdoor # +tile.exposed_copper_trapdoor.name=Exposed Copper Trapdoor # +tile.oxidized_copper_trapdoor.name=Oxidised Copper Trapdoor # +tile.waxed_copper_trapdoor.name=Waxed Copper Trapdoor # +tile.waxed_exposed_copper_trapdoor.name=Waxed Exposed Copper Trapdoor # +tile.waxed_oxidized_copper_trapdoor.name=Waxed Oxidised Copper Trapdoor # +tile.waxed_weathered_copper_trapdoor.name=Waxed Weathered Copper Trapdoor # +tile.weathered_copper_trapdoor.name=Weathered Copper Trapdoor # + tile.raw_copper_block.name=Block of Raw Copper # tile.raw_iron_block.name=Block of Raw Iron # tile.raw_gold_block.name=Block of Raw Gold # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=Arrow of Luck # tipped_arrow.effect.wither=Arrow of Decay # tipped_arrow.effect.turtleMaster=Arrow of the Turtle Master # tipped_arrow.effect.slowFalling=Arrow of Slow Falling # +tipped_arrow.effect.infested=Arrow of Infestation # +tipped_arrow.effect.oozing=Arrow of Oozing # +tipped_arrow.effect.weaving=Arrow of Weaving # +tipped_arrow.effect.windCharged=Arrow of Wind Charging # structure_block.title=Structure Block # structure_block.structure_name=Structure Name # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=Some of your most recent changes may h worldError.worldFailedRecovery=Recovery Failed # worldError.worldFailedRecoveryText=We detected a corrupted world and failed to recover it. # +writeThrottling.osDialog.body=The requested operation is estimated to take %d minutes to complete. Please do not turn off your device during this time. # +writeThrottling.osDialog.cancel=Cancel Operation # +writeThrottling.osDialog.confirm=Proceed # +writeThrottling.progressBar.title=Preparing Data # +writeThrottling.progressBar.body=Getting your files ready... # + userData.recovered.title=Save Data Recovered # userData.recovered.text=Successfully recovered your corrupted user settings. # userData.recovered.warning=Some of your most recent changes may have been lost in recovery. # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=Chat message # xbox.report.area.skin=Player skin # xbox.report.area.gameplay=Gameplay # xbox.report.area.ingame=In-game creations # -xbox.report.area.other=Other # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=Cyberbullying # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=Unfortunately, we could not connect. Pleas gathering.connect.title=Connecting... # gathering.info.qr.title.onlineService=Learn More # gathering.info.qr.body.onlineService.nso=You need a Nintendo Switch Online membership to join an event in Minecraft. # -gathering.info.qr.body.onlineService.psn=You need to be signed in to \'PlayStation Plus\' to join an event in Minecraft. # +gathering.info.qr.body.onlineService.psn=You need to be signed-in to the PlayStation®Plus to join an event in Minecraft. #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=You need to be signed in to join an event in Minecraft. # gathering.info.qr.title.childAccount=Online Play Not Allowed # gathering.info.qr.body.childAccount=Your current parental controls limit you from playing online. # diff --git a/resource_pack/texts/en_US.lang b/resource_pack/texts/en_US.lang index fc49414cc..31f3bf8dd 100644 --- a/resource_pack/texts/en_US.lang +++ b/resource_pack/texts/en_US.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=Choose Seed accessibility.start.feedback=Submit Feedback Link to Website accessibility.start.new=New -accessibility.start.profile=Choose Profile accessibility.start.skinPicker=Choose Skin accessibility.store.tag=Tag @@ -1094,10 +1093,6 @@ commands.me.description=Displays a message about yourself. commands.message.display.incoming=%1$s whispers to you: %2$s commands.message.display.outgoing=You whisper to %1$s: %2$s commands.message.sameTarget=You can't send a private message to yourself! -commands.message.warn=§4You have been sent a warning. Your behavior may be found offensive by other players. Please be mindful of others you are playing with. -commands.message.toastWarn=Minecraft is for everyone! Please be sure to conduct yourself according to our community standards. -commands.warn.invalidWarningLevel=Invalid warning level. -commands.warn.playerDoesNotExist=Could not find player. Please select a valid player. commands.mobevent.description=Controls what mob events are allowed to run. commands.mobevent.eventsEnabledSetToTrue=Mob Events are now enabled. Individual events which are set to false will not run. @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=- %s: %s from %d %d %d to %d %d %d commands.volumearea.entry.withoutIdentifier=- %s: from %d %d %d to %d %d %d commands.volumearea.noneExist.currentDimension=No volumes exist in the current dimension. commands.volumearea.inUse=%1$d/%2$d volumes in use. -commands.warn.description=Sends a warn message to player. commands.weather.clear=Changing to clear weather commands.weather.description=Sets the weather. commands.weather.disabled=Weather Cycle isn't enabled in this world. @@ -1572,6 +1566,7 @@ container.beacon=Beacon container.brewing=Brewing Stand container.chest=Chest container.chestDouble=Large Chest +container.crafter=Crafter container.crafting=Crafting container.creative=Item Selection container.dispenser=Dispenser @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=Caves and Cliffs createWorldScreen.cavesandcliffsDescription=Explore the new varied cave generation createWorldScreen.spectatorMode=Spectator Mode createWorldScreen.spectatorModeDescription=Try out the early versions of Spectator Mode -createWorldScreen.experimentalCameras=Experimental Cameras -createWorldScreen.experimentalCamerasDescription=Contains example camera presets (the camera command is no longer experimental) createWorldScreen.recipeUnlocking=Recipe Unlocking createWorldScreen.recipeUnlockingDescription=Enable recipe unlocking createWorldScreen.experimentalholiday=Holiday Creator Features @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=Creating new world... createWorldScreen.progress.realms=Resetting Realm... createWorldScreen.seed.desc=Enter a seed to generate the same terrain again. Leave blank for a random world. createWorldScreen.showCoordinates=Show Coordinates +createWorldScreen.showDaysPlayed=Show Days Played createWorldScreen.worldType=World Type createWorldScreen.randomtickspeed=Random Tick Speed createWorldScreen.randomtickspeed.reset=Reset Random Tick Speed @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=Delete Project createWorldScreen.editor.projectOptionsLabel=Project Options createWorldScreen.editor.delete.confirm=Delete project permanently? createWorldScreen.editor.deleteWarningFormat=Are you sure you want to delete "%s"? This project will be lost forever! +createWorldScreen.eduCloud.about.body=Filename: '%1$s'%2$sLast updated: %3$s%4$sTo download, click OK and then Download.%5$s +createWorldScreen.eduCloud.about.title=About Cloud World File createWorldScreen.eduCloud.delete.confirm=Delete local world? createWorldScreen.eduCloud.deleteWarningFormat=Are you sure you want to delete "%1$s" on this device?%2$sThe cloud version '%3$s' will not be affected and can be re-synced later. createWorldScreen.experimentalDeferredTechnicalPreview=Render Dragon Features for Creators @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Windows Store realmsSettingsScreen.xboxOneStoreDisplayName=Xbox Store realmsSettingsScreen.amazonStoreDisplayName=Amazon Appstore realmsSettingsScreen.oculusStoreDisplayName=Oculus Store -realmsSettingsScreen.berwickStoreDisplayName="PlayStation Store" -realmsSettingsScreen.SonyStoreDisplayName="PlayStation Store" ### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®Store ### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®Store ### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=unknown store realmsSettingsScreen.extendingRealm=Extending Realm... realmsSettingsScreen.offerError.title=Purchase Pending @@ -2486,6 +2482,14 @@ date.daysAbbreviated1Char=%sd ## It needs to be abbreviated with no more than 1 date.hoursAbbreviated1Char=%sh ## It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%sm ## It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%ss ## It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s days +date.hoursPlural=%s hours +date.minutesPlural=%s minutes +date.secondsPlural=%s seconds +date.daySingular=%s day +date.hourSingular=%s hour +date.minuteSingular=%s minute +date.secondSingular=%s second date.timeLeft=%s left dayOneExperience.carousel.title=Welcome to New Minecraft! @@ -2768,6 +2772,7 @@ edu.worlds_screen.host=HOST edu.worlds_screen.settings=SETTINGS edu.worlds_screen.download=DOWNLOAD ## It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=MANAGE +edu.worlds_screen.about=ABOUT edu.worlds_screen.back=BACK edu.worlds_screen.copy=COPY edu.worlds_screen.export=EXPORT @@ -2790,7 +2795,13 @@ edu.templates.empty_banner=You can get world templates from the Minecraft Educat edu.pause.multiplayer.disabled=Multiplayer is not available in this lesson. effect.badOmen=Bad Omen +effect.infested=Infested +effect.oozing=Oozing +effect.raid_omen=Raid Omen +effect.trial_omen=Trial Omen effect.villageHero=Hero of the Village +effect.weaving=Weaving +effect.wind_charged=Wind Charged enchantment.arrowDamage=Power enchantment.arrowFire=Flame @@ -2809,6 +2820,9 @@ enchantment.durability=Unbreaking enchantment.fire=Fire Aspect enchantment.fishingSpeed=Lure enchantment.frostwalker=Frost Walker +enchantment.heavy_weapon.breach=Breach +enchantment.heavy_weapon.density=Density +enchantment.heavy_weapon.windburst=Wind Burst enchantment.knockback=Knockback enchantment.level.1=I enchantment.level.10=X @@ -2849,6 +2863,9 @@ entity.bat.name=Bat entity.bee.name=Bee entity.blaze.name=Blaze entity.boat.name=Boat +entity.bogged.name=Bogged +entity.breeze.name=Breeze +entity.breeze_wind_charge_projectile.name=Wind Charge entity.cat.name=Cat entity.cave_spider.name=Cave Spider entity.chicken.name=Chicken @@ -2956,6 +2973,7 @@ entity.villager.unskilled=Unskilled Villager entity.villager_v2.name=Villager entity.vindicator.name=Vindicator entity.wandering_trader.name=Wandering Trader +entity.wind_charge_projectile.name=Wind Charge entity.witch.name=Witch entity.wither.name=Wither entity.wither_skeleton.name=Wither Skeleton @@ -3008,6 +3026,7 @@ feature.ruins=Ocean Ruins feature.pillager_outpost=Pillager Outpost feature.bastion_remnant=Bastion Remnant feature.ruined_portal=Ruined Portal +feature.trial_chambers=Trial Chambers feed.like=Like feed.manage_feed=Manage feed @@ -3094,11 +3113,17 @@ gameTip.playerMovement.controller=Move :tip_left_stick: to move around gameTip.flying.mouse=Double tap :_input_key.jump: to fly gameTip.flying.touch=Double tap jump to fly +gameTip.flyDown.mouse=Press :_input_key.sneak: to fly down +gameTip.flyUp.mouse=Press :_input_key.jump: to fly up + +gameTip.stopFlying.mouse=Double tap :_input_key.jump: to stop flying +gameTip.stopFlying.touch=Double tap fly down to stop flying + gameTip.jump.mouse=Jump with :_input_key.jump: +gameTip.swim.mouse=Press and hold :_input_key.jump: to swim up -gameTip.hotbar.mouse=Scroll mouse wheel to select # in hotbar to hold it -gameTip.hotbar.touch=Tap # in hotbar to hold it -gameTip.hotbar.controller=Tap # in hotbar to hold it +gameTip.hotbar.selection.mouse=Scroll or press %s to hold item ## The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=Tap item in hotbar to hold it gameTip.breakBlock.mouse=Hold left click to break blocks gameTip.breakBlock.touch=Tap and hold to break blocks @@ -3224,6 +3249,7 @@ gui.submitFeedback.success=Thank you for sharing your review! gui.submitFeedback.failure.status.unprocessableEntity=You do not own this item you are trying to provide feedback for. (Error Code: %d) gui.submitFeedback.failure.status.tooManyRequests=Oh no! You have sent too many reviews, please try again later. (Error Code: %d) gui.submitFeedback.failure.status.other=Cannot submit your review at this time, please try again later. (Error Code: %d) +gui.togglable_slot=Press to disable slot gui.playOffline=Play Offline gui.signIn=Sign In gui.genericNetworkError=Something went wrong. Try checking your internet connection. @@ -3779,7 +3805,7 @@ howtoplay.minecoins.text.1=Explore a world of possibility with Minecoins: Minecr howtoplay.minecoins.text.2=Once redeemed, your Minecoins are linked to your Microsoft account, so you can access your coins and purchases on other supported devices, too! howtoplay.minecoins.button.text.1=Get Minecoins howtoplay.minecoins.header.1=Disclaimer -howtoplay.minecoins.text.3=*Minecoins require a version of Minecraft: Bedrock Edition with Minecraft Marketplace. Minecoins are not compatible on Sony PlayStation. For compatibility information see minecraft.net/minecoins  +howtoplay.minecoins.text.3=*Minecoins require a version of Minecraft: Bedrock Edition with Minecraft Marketplace. Minecoins are not compatible on Sony PlayStation®. For compatibility information see minecraft.net/minecoins  ### CertRequirement: [Sony PlayStation®] howtoplay.mining=Mining @@ -4144,7 +4170,7 @@ level.editor.export.failed=Project export failed level.editor.import.failed=Project import failed level.editor.import.failed.incompatibleEdition=Project import failed: Unsupported file format -inbox.invite.title=Realms Invite +inbox.invite.title=Realm invite to invite.clear=Clear Selection invite.send=Send %d Invites @@ -4347,6 +4373,22 @@ item.banner.diagonal_up_right.red=Red Per Bend Sinister Inverted item.banner.diagonal_up_right.silver=Light Gray Per Bend Sinister Inverted item.banner.diagonal_up_right.white=White Per Bend Sinister Inverted item.banner.diagonal_up_right.yellow=Yellow Per Bend Sinister Inverted +item.banner.flow.black=Black Flow +item.banner.flow.blue=Blue Flow +item.banner.flow.brown=Brown Flow +item.banner.flow.cyan=Cyan Flow +item.banner.flow.gray=Gray Flow +item.banner.flow.green=Green Flow +item.banner.flow.lightBlue=Light Blue Flow +item.banner.flow.lime=Lime Flow +item.banner.flow.magenta=Magenta Flow +item.banner.flow.orange=Orange Flow +item.banner.flow.pink=Pink Flow +item.banner.flow.purple=Purple Flow +item.banner.flow.red=Red Flow +item.banner.flow.silver=Light Gray Flow +item.banner.flow.white=White Flow +item.banner.flow.yellow=Yellow Flow item.banner.flower.black=Black Flower Charge item.banner.flower.blue=Blue Flower Charge item.banner.flower.brown=Brown Flower Charge @@ -4413,6 +4455,22 @@ item.banner.gradient_up.white=White Base Gradient item.banner.gradient_up.yellow=Yellow Base Gradient item.banner.gray.name=Gray Banner item.banner.green.name=Green Banner +item.banner.guster.black=Black Guster +item.banner.guster.blue=Blue Guster +item.banner.guster.brown=Brown Guster +item.banner.guster.cyan=Cyan Guster +item.banner.guster.gray=Gray Guster +item.banner.guster.green=Green Guster +item.banner.guster.lightBlue=Light Blue Guster +item.banner.guster.lime=Lime Guster +item.banner.guster.magenta=Magenta Guster +item.banner.guster.orange=Orange Guster +item.banner.guster.pink=Pink Guster +item.banner.guster.purple=Purple Guster +item.banner.guster.red=Red Guster +item.banner.guster.silver=Light Gray Guster +item.banner.guster.white=White Guster +item.banner.guster.yellow=Yellow Guster item.banner.half_horizontal.black=Black Per Fess item.banner.half_horizontal.blue=Blue Per Fess item.banner.half_horizontal.brown=Brown Per Fess @@ -4872,6 +4930,7 @@ item.boat.acacia.name=Acacia Boat item.boat.big_oak.name=Dark Oak Boat item.bone.name=Bone item.book.name=Book +item.breeze_rod.name=Breeze Rod item.chainmail_boots.name=Chain Boots item.leather_boots.name=Leather Boots item.diamond_boots.name=Diamond Boots @@ -4990,6 +5049,7 @@ item.comparator.name=Redstone Comparator item.compass.name=Compass item.lodestonecompass.name=Lodestone Compass item.cookie.name=Cookie +item.copper_door.name=Copper Door item.crossbow.name=Crossbow item.diamond.name=Diamond item.repeater.name=Redstone Repeater @@ -5037,6 +5097,7 @@ tile.end_rod.name=End Rod item.ender_eye.name=Eye of Ender item.ender_pearl.name=Ender Pearl item.experience_bottle.name=Bottle o' Enchanting +item.exposed_copper_door.name=Exposed Copper Door item.feather.name=Feather item.fermented_spider_eye.name=Fermented Spider Eye item.fireball.name=Fire Charge @@ -5129,6 +5190,7 @@ item.golden_leggings.name=Golden Leggings item.iron_leggings.name=Iron Leggings item.nautilus_shell.name=Nautilus Shell item.heart_of_the_sea.name=Heart of the Sea +item.mace.name=Mace item.magma_cream.name=Magma Cream item.map.name=Map item.map.exploration.mansion.name=Woodland Explorer Map @@ -5142,6 +5204,7 @@ item.map.exploration.village_savanna.name=Savanna Village Map item.map.exploration.village_desert.name=Desert Village Map item.map.exploration.jungle_temple.name=Jungle Explorer Map item.map.exploration.swamp_hut.name=Swamp Explorer Map +item.map.exploration.trial_chambers.name=Trial Explorer Map item.melon.name=Melon item.milk.name=Milk item.minecart.name=Minecart @@ -5149,6 +5212,9 @@ item.chest_minecart.name=Minecart with Chest item.command_block_minecart.name=Minecart with Command Block item.minecartFurnace.name=Minecart with Furnace item.hopper_minecart.name=Minecart with Hopper +item.ominous_bottle.name=Ominous Bottle +item.ominous_trial_key.name=Ominous Trial Key +item.oxidized_copper_door.name=Oxidized Copper Door item.tnt_minecart.name=Minecart with TNT item.pitcher_pod.name=Pitcher Pod item.torchflower_seeds.name=Torchflower Seeds @@ -5156,6 +5222,8 @@ item.spawn_egg.entity.agent.name=Agent Spawn Egg item.spawn_egg.entity.armadillo.name=Armadillo Spawn Egg item.spawn_egg.entity.axolotl.name=Axolotl Spawn Egg item.spawn_egg.entity.bee.name=Bee Spawn Egg +item.spawn_egg.entity.bogged.name=Bogged Spawn Egg +item.spawn_egg.entity.breeze.name=Breeze Spawn Egg item.spawn_egg.entity.hoglin.name=Hoglin Spawn Egg item.spawn_egg.entity.cat.name=Cat Spawn Egg item.spawn_egg.entity.chicken.name=Chicken Spawn Egg @@ -5277,6 +5345,9 @@ item.record_ward.desc=C418 - ward item.record_pigstep.desc=Lena Raine - Pigstep item.record_otherside.desc=Lena Raine - otherside item.record_relic.desc=Aaron Cherof - Relic +item.record_creator.desc=Lena Raine - Creator +item.record_creator_music_box.desc=Lena Raine - Creator (Music Box) +item.record_precipice.desc=Aaron Cherof - Precipice item.redstone.name=Redstone Dust item.reeds.name=Sugar Canes item.kelp.name=Kelp @@ -5323,6 +5394,12 @@ item.iron_sword.name=Iron Sword item.stone_sword.name=Stone Sword item.wooden_sword.name=Wooden Sword item.unbreakable=Unbreakable +item.waxed_copper_door.name=Waxed Copper Door +item.waxed_exposed_copper_door.name=Waxed Exposed Copper Door +item.waxed_oxidized_copper_door.name=Waxed Oxidized Copper Door +item.waxed_weathered_copper_door.name=Waxed Weathered Copper Door +item.weathered_copper_door.name=Weathered Copper Door +item.wind_charge.name=Wind Charge item.wheat.name=Wheat item.wolf_armor.name=Wolf Armor item.writable_book.name=Book & Quill @@ -5330,6 +5407,7 @@ item.written_book.name=Written Book item.glowstone_dust.name=Glowstone Dust item.shulker_shell.name=Shulker Shell item.totem.name=Totem of Undying +item.trial_key.name=Trial Key item.turtle_helmet.name=Turtle Shell item.turtle_shell_piece.name=Turtle Scute item.phantom_membrane.name=Phantom Membrane @@ -5337,8 +5415,10 @@ item.sweet_berries.name=Sweet Berries item.suspicious_stew.name=Suspicious Stew item.banner_pattern.bricks=Field Masoned item.banner_pattern.creeper=Creeper Charge +item.banner_pattern.flow=Flow item.banner_pattern.flower=Flower Charge item.banner_pattern.globe=Globe +item.banner_pattern.guster=Guster item.banner_pattern.name=Banner Pattern item.banner_pattern.piglin=Snout item.banner_pattern.skull=Skull Charge @@ -5449,6 +5529,8 @@ itemGroup.name.banner_pattern=Banner Patterns itemGroup.name.netherWartBlock=Nether Warts itemGroup.name.candles=Candles itemGroup.name.goatHorn=Goat Horns +itemGroup.name.compounds=Compounds +itemGroup.name.products=Products jigsaw.title.target_pool=Target pool: jigsaw.title.name=Name: @@ -5810,6 +5892,7 @@ menu.classroom_settings.caps=CLASSROOM SETTINGS menu.serverStore=%s Store menu.serverGenericName=Server menu.play=Play +menu.profile=Profile menu.playdemo=Play Demo World menu.playOnRealms=Play on Realm menu.quickplay=Quick Play @@ -5840,6 +5923,7 @@ menu.character_cast.select_title=Choose Your Starting Character menu.character_cast.preview_title=Meet the Cast! menu.realms=Realms ###{StrContains="Realms"} menu.realmsServer=Realms Server ###{StrContains="Realms"}{MaxLength=‘18’} +menu.servers=Servers merchant.deprecated=Trade something else to unlock! @@ -6269,6 +6353,10 @@ options.fullKeyboardGameplay=Full Keyboard Gameplay options.fullKeyboardLayout=Full Keyboard Layout options.improvedInputResponsePlaceholder=Improved Input Response options.improvedInputResponsePlaceholder.tooltip=Reduces the delay between your input and what you see on your screen. This setting might use more battery power. +options.dynamicTexturesToggle=Remove Texture Limit +options.dynamicTexturesToggle.tooltip=Switching this from on to off will require a restart of the game. It may cause instability when using multiple Add-ons or Resource Packs with many textures. +options.dynamicTextures.popUp=If you turn on Remove Texture Limit, you will need to restart the game in order to turn it off. +options.dynamicTextures.popUp.title=Are you sure? options.fullscreen=Fullscreen options.gamepadcursorsensitivity=Controller Cursor Sensitivity options.gamertag=Gamertag: @@ -6325,6 +6413,18 @@ options.creator.debuggerConnect=Connect options.creator.debuggerListen=Listen options.creator.debuggerHost=Host options.creator.debuggerPort=Port +options.creator.watchdogHeading=Script Watchdog Settings +options.creator.watchdogSlowWarning=Slow Script Warnings +options.creator.watchdogSlowThreshold=Average exceeds +options.creator.watchdogSlowFormat=%s Milliseconds +options.creator.watchdogSlowFormatDefault=%s Milliseconds (default) +options.creator.watchdogSpikeWarning=Script Spike Warnings +options.creator.watchdogSpikeThreshold=Spike exceeds +options.creator.watchdogSpikeFormat=%s Milliseconds +options.creator.watchdogSpikeFormatDefault=%s Milliseconds (default) +options.creator.watchdogHangThreshold=Interrupt after +options.creator.watchdogHangFormat=%s Seconds +options.creator.watchdogHangFormatDefault=%s Seconds (default) options.vr_classic_box_selection=Outline Selection options.hidegamepadcursor=Hide Controller Cursor options.hidegui=Hide GUI @@ -6661,7 +6761,7 @@ options.makeBackup=Make a backup copy of my world options.managePrivacy=To manage privacy settings, please visit https://account.xbox.com/Settings in any web browser.##disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Unlink Microsoft Account options.unlink_msa.confirm.title=Unlink Microsoft Account? -options.unlink_msa.confirm.warning=WARNING: You will no longer be able to store progression or purchases made on your "PlayStation 4" System on your account %s after unlinking. +options.unlink_msa.confirm.warning=WARNING: You will no longer be able to store progression or purchases made on your PlayStation®4 System on your account %s after unlinking. ### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=Unlinking your Microsoft Account from within this game will affect all Minecraft games on this platform that have used this Microsoft Account. options.unlink_msa.confirm.checkbox1=I will no longer be able to access any in-game Store content when I play on other platforms. options.unlink_msa.confirm.checkbox2=I will no longer be able to play cross-platform games with my friends on other platforms. @@ -6873,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=Load a world to customize controls hudScreen.controlCustomization.tooltip.notouch=Use a touch device to customize controls hudScreen.controlCustomization.tooltip.alreadycustomizing=There is already a touch control customization screen open hudScreen.controlCustomization.tooltip.alive=Player needs to be alive to customize controls. +hudScreen.daysPlayed=Days played: %s +hudScreen.daysPlayed.overflow=Too many to count! playscreen.fileSize.MB=MB playscreen.fileSize.GB=GB @@ -7041,6 +7143,10 @@ potion.heal.splash.name=Splash Potion of Healing potion.heal.linger.name=Lingering Potion of Healing potion.healthBoost=Health Boost potion.hunger=Hunger +potion.infested.linger.name=Lingering Potion of Infestation +potion.infested.name=Potion of Infestation +potion.infested.splash.name=Splash Potion of Infestation +potion.infested=Infested potion.invisibility=Invisibility potion.invisibility.name=Potion of Invisibility potion.invisibility.splash.name=Splash Potion of Invisibility @@ -7066,6 +7172,10 @@ potion.nightVision=Night Vision potion.nightVision.name=Potion of Night Vision potion.nightVision.splash.name=Splash Potion of Night Vision potion.nightVision.linger.name=Lingering Potion of Night Vision +potion.oozing.linger.name=Lingering Potion of Oozing +potion.oozing.name=Potion of Oozing +potion.oozing.splash.name=Splash Potion of Oozing +potion.oozing=Oozing potion.poison=Poison potion.poison.name=Potion of Poison potion.poison.splash.name=Splash Potion of Poison @@ -7107,6 +7217,14 @@ potion.weakness=Weakness potion.weakness.name=Potion of Weakness potion.weakness.splash.name=Splash Potion of Weakness potion.weakness.linger.name=Lingering Potion of Weakness +potion.weaving.linger.name=Lingering Potion of Weaving +potion.weaving.name=Potion of Weaving +potion.weaving.splash.name=Splash Potion of Weaving +potion.weaving=Weaving +potion.windCharged.linger.name=Lingering Potion of Wind Charging +potion.windCharged.name=Potion of Wind Charging +potion.windCharged.splash.name=Splash Potion of Wind Charging +potion.windCharged=Wind Charged potion.wither=Wither potion.wither.name=Potion of Decay potion.wither.splash.name=Splash Potion of Decay @@ -7210,7 +7328,14 @@ progressScreen.message.directoryDepthError=This world can't be opened because of progressScreen.message.forbiddenContent=You do not own one or more of the applied packs progressScreen.message.loadingSplitScreenAppearances=Loading splitscreen appearances... progressScreen.message.finishedLoadingSplitScreenAppearances=Finished loading splitscreen appearances. -progressScreen.message.modifiedWorldWarning=This world may not look or behave in the same way as non-modified worlds and you can't earn achievements. +progressScreen.message.modifiedWorldWarning.1=You're playing in a world with Add-Ons! This will add new features to your Minecraft world. +progressScreen.message.modifiedWorldWarning.2=Don't stop with just one! You can load multiple Add-Ons onto a single world at once. +progressScreen.message.modifiedWorldWarning.3=Advanced Tip: A Resource Pack can change the textures of different blocks and entities. +progressScreen.message.modifiedWorldWarning.4=Advanced Tip: A Behavior Pack can change how a different items, entities, or blocks work. +progressScreen.message.modifiedWorldWarning.5=Advanced Tip: An Add-On includes both a Behavior Pack and a Resource Pack. Make sure both packs are activated to ensure the Add-On works! +progressScreen.message.modifiedWorldWarning.6=Add-Ons add new blocks, items, or mobs to your worlds. +progressScreen.message.modifiedWorldWarning.7=Worlds and Add-ons are complex! While some work great together, you might get funky results with others. +progressScreen.message.modifiedWorldWarning.8=More Add-Ons mean more fun, but the game might take longer to load. progressScreen.dialog.title.resourcePack=Download Resource Packs? progressScreen.dialog.title.behaviorAndResourcePack=Download World Behavior & Resource Packs? progressScreen.dialog.title.onlyBehavior=Download World Behavior Packs? @@ -7559,7 +7684,9 @@ item.crimson_hanging_sign.name=Crimson Hanging Sign item.danger_pottery_sherd.name=Danger Pottery Sherd item.dark_oak_hanging_sign.name=Dark Oak Hanging Sign item.explorer_pottery_sherd.name=Explorer Pottery Sherd +item.flow_pottery_sherd.name=Flow Pottery Sherd item.friend_pottery_sherd.name=Friend Pottery Sherd +item.guster_pottery_sherd.name=Guster Pottery Sherd item.heart_pottery_sherd.name=Heart Pottery Sherd item.heartbreak_pottery_sherd.name=Heartbreak Pottery Sherd item.howl_pottery_sherd.name=Howl Pottery Sherd @@ -7570,6 +7697,7 @@ item.mourner_pottery_sherd.name=Mourner Pottery Sherd item.oak_hanging_sign.name=Oak Hanging Sign item.plenty_pottery_sherd.name=Plenty Pottery Sherd item.prize_pottery_sherd.name=Prize Pottery Sherd +item.scrape_pottery_sherd.name=Scrape Pottery Sherd item.sheaf_pottery_sherd.name=Sheaf Pottery Sherd item.shelter_pottery_sherd.name=Shelter Pottery Sherd item.skull_pottery_sherd.name=Skull Pottery Sherd @@ -7615,6 +7743,8 @@ tile.cherry_stairs.name=Cherry Stairs tile.cherry_trapdoor.name=Cherry Trapdoor tile.cherry_wood.name=Cherry Wood tile.chiseled_bookshelf.name=Chiseled Bookshelf +tile.chiseled_tuff.name=Chiseled Tuff +tile.chiseled_tuff_bricks.name=Chiseled Tuff Bricks tile.decorated_pot.name=Decorated Pot tile.pink_petals.name=Pink Petals tile.stripped_bamboo_block.name=Block of Stripped Bamboo @@ -7648,6 +7778,8 @@ trim_pattern.vex.name=Vex Armor Trim trim_pattern.ward.name=Ward Armor Trim trim_pattern.wayfinder.name=Wayfinder Armor Trim trim_pattern.wild.name=Wild Armor Trim +trim_pattern.bolt.name=Bolt Armor Trim +trim_pattern.flow.name=Flow Armor Trim upgrade.netherite_upgrade.name=Netherite Upgrade storageManager.mainSizeLabel=%s - 1 Item @@ -7891,11 +8023,11 @@ selectTemplate.delete.confirm=Delete World Template? selectTemplate.delete=Delete selectTemplate.myTemplates=My World Templates selectTemplate.realmsPlus=Featured Realms Plus Templates -selectTemplate.marketplacePass=Featured Marketplace Pass Templates ### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=Featured Marketplace Pass Content ### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=Imported Templates selectTemplate.download=Download selectTemplate.noTemplates=There are no world templates on this device. -selectTemplate.suggestedContent.title=Featured Marketplace Templates +selectTemplate.suggestedContent.title=Featured Marketplace Content selectTemplate.suggestedContent.button=See More Templates selectTemplate.createdBy=Created by %s selectTemplate.inventory=My Marketplace Packs @@ -8408,10 +8540,17 @@ store.mashup.count.skin=1 Skin store.mashup.count.skins=%s Skins store.mashup.count.texturePack=1 Texture Pack store.mashup.count.texturePacks=%s Texture Packs #number of texture packs -store.mashup.count.world=1 World +store.mashup.count.world=1 World store.mashup.count.worlds=%s Worlds #number of worlds store.mashup.count.addonPack=1 Add-On store.mashup.count.addonPacks=%s Add-Ons #number of addons +store.mashup.count.mashup=Mash-Up +store.mashup.hover.label.addonPack=Add-Ons can be applied to any world. +store.mashup.hover.label.world=A hand-crafted Minecraft map. +store.mashup.hover.label.skin=Apply a new look to your character. +store.mashup.hover.label.texturePack=Add a new visual to your world or game interface. +store.mashup.hover.label.mashup.lineOne=A combination of different types of content. +store.mashup.hover.label.mashup.lineTwo=This Mash-Up contains: store.addon.activateAddonPack=Activate Add-On! store.addon.newOrExistingTitle=Where to add? @@ -8847,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=Board tile.chest.name=Chest tile.ender_chest.name=Ender Chest tile.jigsaw.name=Jigsaw Block +tile.heavy_core.name=Heavy Core tile.honey_block.name=Honey Block tile.honeycomb_block.name=Honeycomb Block tile.lodestone.name=Lodestone @@ -8908,6 +9048,10 @@ tile.polished_blackstone_slab.name=Polished Blackstone Slab tile.polished_blackstone_pressure_plate.name=Polished Blackstone Pressure Plate tile.polished_blackstone_button.name=Polished Blackstone Button tile.polished_blackstone_wall.name=Polished Blackstone Wall +tile.polished_tuff.name=Polished Tuff +tile.polished_tuff_slab.name=Polished Tuff Slab +tile.polished_tuff_stairs.name=Polished Tuff Stairs +tile.polished_tuff_wall.name=Polished Tuff Wall tile.soul_campfire.name=Soul Campfire tile.chiseled_nether_bricks.name=Chiseled Nether Bricks tile.cracked_nether_bricks.name=Cracked Nether Bricks @@ -8986,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=Yellow Terracotta tile.structure_block.name=Structure Block structure_block.waterlog_block=Waterlog Blocks tile.structure_void.name=Structure Void +tile.trial_spawner.name=Trial Spawner +tile.vault.name=Vault tile.wool.black.name=Black Wool tile.wool.blue.name=Blue Wool tile.wool.brown.name=Brown Wool @@ -9338,6 +9484,13 @@ tile.tallgrass.fern.name=Fern tile.tallgrass.grass.name=Grass tile.tallgrass.name=Grass tile.tallgrass.shrub.name=Shrub +tile.tuff_brick_slab.name=Tuff Brick Slab +tile.tuff_brick_stairs.name=Tuff Brick Stairs +tile.tuff_brick_wall.name=Tuff Brick Wall +tile.tuff_bricks.name=Tuff Bricks +tile.tuff_slab.name=Tuff Slab +tile.tuff_stairs.name=Tuff Stairs +tile.tuff_wall.name=Tuff Wall tile.seagrass.seagrass.name=Seagrass tile.sea_pickle.name=Sea Pickle tile.turtle_egg.name=Sea Turtle Egg @@ -9415,6 +9568,7 @@ tile.carpet.red.name=Red Carpet tile.carpet.silver.name=Light Gray Carpet tile.carpet.white.name=White Carpet tile.carpet.yellow.name=Yellow Carpet +tile.crafter.name=Crafter tile.crafting_table.name=Crafting Table tile.glazedTerracotta.white.name=White Glazed Terracotta @@ -9601,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=Waxed Cut Copper Slab tile.waxed_exposed_cut_copper_slab.name=Waxed Exposed Cut Copper Slab tile.waxed_weathered_cut_copper_slab.name=Waxed Weathered Cut Copper Slab tile.waxed_oxidized_cut_copper_slab.name=Waxed Oxidized Cut Copper Slab + +tile.chiseled_copper.name=Chiseled Copper +tile.exposed_chiseled_copper.name=Exposed Chiseled Copper +tile.oxidized_chiseled_copper.name=Oxidized Chiseled Copper +tile.waxed_chiseled_copper.name=Waxed Chiseled Copper +tile.waxed_exposed_chiseled_copper.name=Waxed Exposed Chiseled Copper +tile.waxed_oxidized_chiseled_copper.name=Waxed Oxidized Chiseled Copper +tile.waxed_weathered_chiseled_copper.name=Waxed Weathered Chiseled Copper +tile.weathered_chiseled_copper.name=Weathered Chiseled Copper + +tile.copper_bulb.name=Copper Bulb +tile.exposed_copper_bulb.name=Exposed Copper Bulb +tile.oxidized_copper_bulb.name=Oxidized Copper Bulb +tile.waxed_copper_bulb.name=Waxed Copper Bulb +tile.waxed_exposed_copper_bulb.name=Waxed Exposed Copper Bulb +tile.waxed_oxidized_copper_bulb.name=Waxed Oxidized Copper Bulb +tile.waxed_weathered_copper_bulb.name=Waxed Weathered Copper Bulb +tile.weathered_copper_bulb.name=Weathered Copper Bulb + +tile.copper_door.name=Copper Door +tile.exposed_copper_door.name=Exposed Copper Door +tile.oxidized_copper_door.name=Oxidized Copper Door +tile.waxed_copper_door.name=Waxed Copper Door +tile.waxed_exposed_copper_door.name=Waxed Exposed Copper Door +tile.waxed_oxidized_copper_door.name=Waxed Oxidized Copper Door +tile.waxed_weathered_copper_door.name=Waxed Weathered Copper Door +tile.weathered_copper_door.name=Weathered Copper Door + +tile.copper_grate.name=Copper Grate +tile.exposed_copper_grate.name=Exposed Copper Grate +tile.oxidized_copper_grate.name=Oxidized Copper Grate +tile.waxed_copper_grate.name=Waxed Copper Grate +tile.waxed_exposed_copper_grate.name=Waxed Exposed Copper Grate +tile.waxed_oxidized_copper_grate.name=Waxed Oxidized Copper Grate +tile.waxed_weathered_copper_grate.name=Waxed Weathered Copper Grate +tile.weathered_copper_grate.name=Weathered Copper Grate + +tile.copper_trapdoor.name=Copper Trapdoor +tile.exposed_copper_trapdoor.name=Exposed Copper Trapdoor +tile.oxidized_copper_trapdoor.name=Oxidized Copper Trapdoor +tile.waxed_copper_trapdoor.name=Waxed Copper Trapdoor +tile.waxed_exposed_copper_trapdoor.name=Waxed Exposed Copper Trapdoor +tile.waxed_oxidized_copper_trapdoor.name=Waxed Oxidized Copper Trapdoor +tile.waxed_weathered_copper_trapdoor.name=Waxed Weathered Copper Trapdoor +tile.weathered_copper_trapdoor.name=Weathered Copper Trapdoor + tile.raw_copper_block.name=Block of Raw Copper tile.raw_iron_block.name=Block of Raw Iron tile.raw_gold_block.name=Block of Raw Gold @@ -9681,6 +9881,10 @@ tipped_arrow.effect.luck=Arrow of Luck tipped_arrow.effect.wither=Arrow of Decay tipped_arrow.effect.turtleMaster=Arrow of the Turtle Master tipped_arrow.effect.slowFalling=Arrow of Slow Falling +tipped_arrow.effect.infested=Arrow of Infestation +tipped_arrow.effect.oozing=Arrow of Oozing +tipped_arrow.effect.weaving=Arrow of Weaving +tipped_arrow.effect.windCharged=Arrow of Wind Charging structure_block.title=Structure Block structure_block.structure_name=Structure Name @@ -9789,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=Some of your most recent changes may h worldError.worldFailedRecovery=Recovery Failed worldError.worldFailedRecoveryText=We detected a corrupted world and failed to recover it. +writeThrottling.osDialog.body=The requested operation is estimated to take %d minutes to complete. Please do not turn off your device during this time. +writeThrottling.osDialog.cancel=Cancel Operation +writeThrottling.osDialog.confirm=Proceed +writeThrottling.progressBar.title=Preparing Data +writeThrottling.progressBar.body=Getting your files ready... + userData.recovered.title=Save Data Recovered userData.recovered.text=Successfully recovered your corrupted user settings. userData.recovered.warning=Some of your most recent changes may have been lost in recovery. @@ -10032,7 +10242,6 @@ xbox.report.area.chat=Chat message xbox.report.area.skin=Player skin xbox.report.area.gameplay=Gameplay xbox.report.area.ingame=In-game creations -xbox.report.area.other=Other ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=Cyberbullying @@ -10959,7 +11168,7 @@ gathering.info.modal.body.connectFail=Unfortunately we could not connect. Please gathering.connect.title=Connecting... gathering.info.qr.title.onlineService=Learn More gathering.info.qr.body.onlineService.nso=You need a Nintendo Switch Online membership to join an event in Minecraft. -gathering.info.qr.body.onlineService.psn=You need to be signed-in to the \"PlayStation Plus\" to join an event in Minecraft. +gathering.info.qr.body.onlineService.psn=You need to be signed-in to the PlayStation®Plus to join an event in Minecraft. ### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=You need to be signed-in to join an event in Minecraft. gathering.info.qr.title.childAccount=Online Play Not Allowed gathering.info.qr.body.childAccount=Your current parental controls limit you from playing online. diff --git a/resource_pack/texts/es_ES.lang b/resource_pack/texts/es_ES.lang index 76f6cdb00..f82710f08 100644 --- a/resource_pack/texts/es_ES.lang +++ b/resource_pack/texts/es_ES.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=Elegir semilla # accessibility.start.feedback=Enviar enlace de comentarios al sitio web # accessibility.start.new=Nuevo # -accessibility.start.profile=Elegir perfil # accessibility.start.skinPicker=Selecc. aspecto # accessibility.store.tag=Etiqueta # @@ -1094,10 +1093,6 @@ commands.me.description=Muestra un mensaje sobre ti. # commands.message.display.incoming=%1$s te susurra: %2$s. # commands.message.display.outgoing=Susurraste a %1$s: %2$s. # commands.message.sameTarget=¡No puedes enviarte un mensaje privado a ti mismo! # -commands.message.warn=§4Te han enviado un aviso. Puede que a otros jugadores tu comportamiento les parezca ofensivo. Ten en cuenta a los demás jugadores. # -commands.message.toastWarn=¡Minecraft es para todo el mundo! No olvides comportarte según los estándares de la comunidad. # -commands.warn.invalidWarningLevel=Nivel de aviso no válido. # -commands.warn.playerDoesNotExist=No se ha encontrado al jugador. Selecciona un jugador válido. # commands.mobevent.description=Controla qué eventos de criatura pueden llevarse a cabo. # commands.mobevent.eventsEnabledSetToTrue=Se han habilitado los eventos de criatura. Los eventos individuales que estén marcados como "false" no se llevarán a cabo. # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=- %s: %s de %d %d %d a %d %d %d # commands.volumearea.entry.withoutIdentifier=- %s: de %d %d %d a %d %d %d # commands.volumearea.noneExist.currentDimension=No hay volúmenes en la dimensión actual. # commands.volumearea.inUse=%1$d/%2$d volúmenes en uso. # -commands.warn.description=Envía un mensaje de aviso al jugador. # commands.weather.clear=Se ha cambiado el tiempo a soleado # commands.weather.description=Establece el tiempo atmosférico. # commands.weather.disabled=El Ciclo de tiempo atmosférico no está activado en este mundo. # @@ -1572,6 +1566,7 @@ container.beacon=Faro # container.brewing=Soporte para pociones # container.chest=Cofre # container.chestDouble=Cofre grande # +container.crafter=Fabricante # container.crafting=Fabricar # container.creative=Selección de objetos # container.dispenser=Dispensador # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=Cuevas y acantilados # createWorldScreen.cavesandcliffsDescription=Explora la nueva y variada generación de cuevas # createWorldScreen.spectatorMode=Modo espectador # createWorldScreen.spectatorModeDescription=Prueba las primeras versiones del modo espectador # -createWorldScreen.experimentalCameras=Cámaras experimentales # -createWorldScreen.experimentalCamerasDescription=Incluye ejemplos de preajustes de cámara (el comando de la cámara ya no es experimental) # createWorldScreen.recipeUnlocking=Desbloqueo de recetas # createWorldScreen.recipeUnlockingDescription=Habilitar desbloqueo de recetas # createWorldScreen.experimentalholiday=Funciones del creador festivo # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=Creando mundo nuevo... # createWorldScreen.progress.realms=Restableciendo Realm... # createWorldScreen.seed.desc=Introduce una semilla para volver a generar el mismo terreno. Déjalo vacío para un mundo aleatorio. # createWorldScreen.showCoordinates=Mostrar coordenadas # +createWorldScreen.showDaysPlayed=Mostrar días jugados # createWorldScreen.worldType=Tipo de mundo # createWorldScreen.randomtickspeed=Velocidad de marca aleatoria # createWorldScreen.randomtickspeed.reset=Restablecer velocidad de marca aleatoria # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=Eliminar proyecto # createWorldScreen.editor.projectOptionsLabel=Opciones del proyecto # createWorldScreen.editor.delete.confirm=¿Quieres borrar el proyecto para siempre? # createWorldScreen.editor.deleteWarningFormat=¿Seguro que deseas eliminar "%s"? ¡El proyecto se perderá para siempre! # +createWorldScreen.eduCloud.about.body=Nombre de archivo: «%1$s»%2$sÚltima actualización: %3$s%4$sPara descargar, haz clic en Aceptar y luego en Descargar.%5$s # +createWorldScreen.eduCloud.about.title=Acerca del archivo de Mundo en la nube # createWorldScreen.eduCloud.delete.confirm=¿Eliminar mundo local? # createWorldScreen.eduCloud.deleteWarningFormat=¿Seguro que quieres eliminar «%1$s» en este dispositivo? %2$sLa versión en la nube «%3$s» no se verá afectada y podrás volver a sincronizarla más tarde. # createWorldScreen.experimentalDeferredTechnicalPreview=Renderizar características de dragón para creadores # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Tienda Windows # realmsSettingsScreen.xboxOneStoreDisplayName=Tienda Xbox # realmsSettingsScreen.amazonStoreDisplayName=Amazon Appstore # realmsSettingsScreen.oculusStoreDisplayName=Oculus Store # -realmsSettingsScreen.berwickStoreDisplayName="PlayStation Store" # -realmsSettingsScreen.SonyStoreDisplayName=«PlayStation Store» #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=tienda desconocida # realmsSettingsScreen.extendingRealm=Ampliando Realm... # realmsSettingsScreen.offerError.title=Compra pendiente # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=Los packs que compres fuera del xbl.syncIAP.confirmSync.prompt.yes=Sí, sincronizar mis compras # xbl.marketplace.account.error.body.nobutton=Hay un error con tu cuenta. No podrás utilizar el Marketplace hasta que hayamos resuelto el problema. Si el persiste durante varios días, ponte en contacto con el servicio de asistencia. # -xbl.marketplace.account.banned.body.nobutton=No puedes utilizar el marketplace hasta que termine tu suspensión. # playfab.account.banned.temporary=suspendido # playfab.account.banned.permanent=Bloqueado # @@ -2487,6 +2482,14 @@ date.daysAbbreviated1Char=%sd ### It needs to be abbreviated with no more than date.hoursAbbreviated1Char=%s h ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%s m ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%s s ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s días # +date.hoursPlural=%s horas # +date.minutesPlural=%s minutos # +date.secondsPlural=%s segundos # +date.daySingular=%s día # +date.hourSingular=%s hora # +date.minuteSingular=%s minuto # +date.secondSingular=%s segundo # date.timeLeft=Queda(n): %s # dayOneExperience.carousel.title=¡Te damos la bienvenida a New Minecraft! # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=ANFITRIÓN # edu.worlds_screen.settings=AJUSTES # edu.worlds_screen.download=DESCARGAR ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=ADMINISTRAR # +edu.worlds_screen.about=ACERCA DE # edu.worlds_screen.back=ATRÁS # edu.worlds_screen.copy=COPIAR # edu.worlds_screen.export=EXPORTAR # @@ -2791,7 +2795,13 @@ edu.templates.empty_banner=Puedes conseguir plantillas de mundos en la bibliotec edu.pause.multiplayer.disabled=El modo multijugador no está disponible en esta lección. # effect.badOmen=Mal presagio # +effect.infested=Infestado # +effect.oozing=Supuración # +effect.raid_omen=Presagio de asalto # +effect.trial_omen=Presagio de prueba # effect.villageHero=Héroe de la aldea # +effect.weaving=Tejer # +effect.wind_charged=Con carga de viento # enchantment.arrowDamage=Poder # enchantment.arrowFire=Llama # @@ -2810,6 +2820,9 @@ enchantment.durability=Irrompible # enchantment.fire=Aspecto ígneo # enchantment.fishingSpeed=Atracción # enchantment.frostwalker=Paso helado # +enchantment.heavy_weapon.breach=Incumplimiento # +enchantment.heavy_weapon.density=Densidad # +enchantment.heavy_weapon.windburst=Ráfaga de viento # enchantment.knockback=Derribar # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=Murciélago # entity.bee.name=Abeja # entity.blaze.name=Blaze # entity.boat.name=Barco # +entity.bogged.name=Empantanado # +entity.breeze.name=Brisa # +entity.breeze_wind_charge_projectile.name=Carga de viento # entity.cat.name=Gato # entity.cave_spider.name=Araña de las cuevas # entity.chicken.name=Gallina # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=Aldeano no cualificado # entity.villager_v2.name=Aldeano # entity.vindicator.name=Vindicador # entity.wandering_trader.name=Vendedor errante # +entity.wind_charge_projectile.name=Carga de viento # entity.witch.name=Bruja # entity.wither.name=Wither # entity.wither_skeleton.name=Esqueleto de Wither # @@ -3009,6 +3026,7 @@ feature.ruins=Ruinas oceánicas # feature.pillager_outpost=Puesto de saqueadores # feature.bastion_remnant=Restos del bastión # feature.ruined_portal=Portal destrozado # +feature.trial_chambers=Cámaras de prueba # feed.like=Me gusta # feed.manage_feed=Administrar feed # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=Mueve :tip_left_stick: para moverte a tu alred gameTip.flying.mouse=Toca :_input_key.jump: dos veces para volar # gameTip.flying.touch=Toca salto dos veces para volar # +gameTip.flyDown.mouse=Pulsa :_input_key.sneak: para volar hacia abajo # +gameTip.flyUp.mouse=Pulsa :_input_key.jump: para volar hacia arriba # + +gameTip.stopFlying.mouse=Toca :_input_key.jump: dos veces para detener el vuelo # +gameTip.stopFlying.touch=Toca Volar hacia abajo dos veces para detener el vuelo # + gameTip.jump.mouse=Salta con :_input_key.jump: # +gameTip.swim.mouse=Mantén pulsado :_input_key.jump: para nadar hacia arriba # -gameTip.hotbar.mouse=Desplaza la rueda del ratón para seleccionar # en la barra activa y mantenerlo. # -gameTip.hotbar.touch=Toca # en la barra activa para mantenerlo. # -gameTip.hotbar.controller=Toca # en la barra activa para mantenerlo. # +gameTip.hotbar.selection.mouse=Usa la rueda del ratón o pulsa %s para coger un objeto ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=Toca un objeto de la barra de acceso rápido para cogerlo # gameTip.breakBlock.mouse=Haz clic con el botón izquierdo y mantén para romper bloques # gameTip.breakBlock.touch=Toca y mantén para romper bloques. # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=¡Vas agachado! No puedes caerte por los bordes. # gameTip.sneak.touch=Vas agachado, así que no puedes caerte por los bordes # gameTip.sneak.controller=Vas agachado, así que no puedes caerte por los bordes # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=Coloca tu mesa de trabajo. Cógela y haz clic para colocarla # gameTip.placeCraftingTable.touch=Toca el suelo para colocar tu mesa de trabajo # gameTip.placeCraftingTable.controller=Coloca tu mesa de trabajo, mantenla pulsada y luego toca el suelo. # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=¡Gracias por dejar tu reseña! # gui.submitFeedback.failure.status.unprocessableEntity=No has adquirido el artículo sobre el que quieres dejar comentarios. (Código de error: %d) # gui.submitFeedback.failure.status.tooManyRequests=¡Oh, no! Has enviado demasiadas reseñas; vuelve a intentarlo más tarde. (Código de error: %d) # gui.submitFeedback.failure.status.other=No es posible enviar tu reseña en este momento; vuelve a intentarlo más tarde. (Código de error: %d) # +gui.togglable_slot=Pulsa para desactivar el espacio # gui.playOffline=Jugar fuera de línea # gui.signIn=Iniciar sesión # gui.genericNetworkError=Algo no va bien. Comprueba tu conexión a internet. # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=¡Explora un mundo de posibilidades con las minecoins howtoplay.minecoins.text.2=¡Al canjearlas, tus minecoins estarán vinculadas a tu cuenta de Microsoft para que puedas acceder a tus monedas y compras en otros dispositivos compatibles! # howtoplay.minecoins.button.text.1=Conseguir monedas # howtoplay.minecoins.header.1=Aviso legal # -howtoplay.minecoins.text.3=* Las minecoins requieren una versión de Minecraft: Bedrock Edition con el Marketplace de Minecraft. Las minecoins no son compatibles con PlayStation de Sony. Para obtener información sobre compatibilidad, visita minecraft.net/minecoins  # +howtoplay.minecoins.text.3=* Las minecoins requieren una versión de Minecraft: Bedrock Edition con el Marketplace de Minecraft. Las minecoins no son compatibles con PlayStation® de Sony. Para obtener información sobre compatibilidad, visita minecraft.net/minecoins  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=Minería # @@ -4145,7 +4170,7 @@ level.editor.export.failed=Error en la exportación del proyecto. # level.editor.import.failed=Error en la importación del proyecto # level.editor.import.failed.incompatibleEdition=Se ha producido un error al importar el proyecto: formato de archivo no compatible. # -inbox.invite.title=Invitación a Realms # +inbox.invite.title=Invitación de Realms a # invite.clear=Anular selección # invite.send=Enviar %d invitaciones # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=Tajado rojo invertido # item.banner.diagonal_up_right.silver=Tajado gris claro invertido # item.banner.diagonal_up_right.white=Tajado blanco invertido # item.banner.diagonal_up_right.yellow=Tajado amarillo invertido # +item.banner.flow.black=Flujo negro # +item.banner.flow.blue=Flujo azul # +item.banner.flow.brown=Flujo marrón # +item.banner.flow.cyan=Flujo cian # +item.banner.flow.gray=Flujo gris # +item.banner.flow.green=Flujo verde # +item.banner.flow.lightBlue=Flujo azul claro # +item.banner.flow.lime=Flujo verde lima # +item.banner.flow.magenta=Flujo magenta # +item.banner.flow.orange=Flujo naranja # +item.banner.flow.pink=Flujo rosa # +item.banner.flow.purple=Flujo morado # +item.banner.flow.red=Flujo rojo # +item.banner.flow.silver=Flujo gris claro # +item.banner.flow.white=Flujo blanco # +item.banner.flow.yellow=Flujo amarillo # item.banner.flower.black=Estampado negro de flores # item.banner.flower.blue=Estampado azul de flores # item.banner.flower.brown=Estampado marrón de flores # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=Gradiente blanco en base # item.banner.gradient_up.yellow=Gradiente amarillo en base # item.banner.gray.name=Estandarte gris # item.banner.green.name=Estandarte verde # +item.banner.guster.black=Guster negro # +item.banner.guster.blue=Guster azul # +item.banner.guster.brown=Guster marrón # +item.banner.guster.cyan=Guster cian # +item.banner.guster.gray=Guster gris # +item.banner.guster.green=Guster verde # +item.banner.guster.lightBlue=Guster azul claro # +item.banner.guster.lime=Guster verde lima # +item.banner.guster.magenta=Guster Magenta # +item.banner.guster.orange=Guster naranja # +item.banner.guster.pink=Guster rosa # +item.banner.guster.purple=Guster morado # +item.banner.guster.red=Guster rojo # +item.banner.guster.silver=Guster gris claro # +item.banner.guster.white=Guster blanco # +item.banner.guster.yellow=Guster amarillo # item.banner.half_horizontal.black=Cortado negro # item.banner.half_horizontal.blue=Cortado azul # item.banner.half_horizontal.brown=Cortado marrón # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=Barco de acacia # item.boat.big_oak.name=Barco de roble oscuro # item.bone.name=Hueso # item.book.name=Libro # +item.breeze_rod.name=Vara de brisa # item.chainmail_boots.name=Botas de malla # item.leather_boots.name=Botas de cuero # item.diamond_boots.name=Botas de diamante # @@ -4991,6 +5049,7 @@ item.comparator.name=Comparador de redstone # item.compass.name=Brújula # item.lodestonecompass.name=Brújula de magnetita # item.cookie.name=Galleta # +item.copper_door.name=Puerta de cobre # item.crossbow.name=Ballesta # item.diamond.name=Diamante # item.repeater.name=Repetidor de redstone # @@ -5038,6 +5097,7 @@ tile.end_rod.name=Vara de End # item.ender_eye.name=Ojo de Ender # item.ender_pearl.name=Perla de Ender # item.experience_bottle.name=Botella de hechizo # +item.exposed_copper_door.name=Puerta de cobre expuesto # item.feather.name=Pluma # item.fermented_spider_eye.name=Ojo de araña fermentado # item.fireball.name=Descarga de fuego # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=Mallas de oro # item.iron_leggings.name=Mallas de hierro # item.nautilus_shell.name=Concha de Nautilus # item.heart_of_the_sea.name=Corazón del mar # +item.mace.name=Maza # item.magma_cream.name=Crema de magma # item.map.name=Mapa # item.map.exploration.mansion.name=Mapa de explorador del bosque # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=Mapa de aldea de la sabana # item.map.exploration.village_desert.name=Mapa de aldea del desierto # item.map.exploration.jungle_temple.name=Mapa de explorador de la jungla # item.map.exploration.swamp_hut.name=Mapa de explorador del pantano # +item.map.exploration.trial_chambers.name=Mapa de explorador de la prueba # item.melon.name=Sandía # item.milk.name=Leche # item.minecart.name=Vagoneta # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=Vagoneta con cofre # item.command_block_minecart.name=Vagoneta con bloque de comandos # item.minecartFurnace.name=Vagoneta con horno # item.hopper_minecart.name=Vagoneta con embudo # +item.ominous_bottle.name=Botella ominosa # +item.ominous_trial_key.name=Llave de prueba ominosa # +item.oxidized_copper_door.name=Puerta de cobre oxidado # item.tnt_minecart.name=Vagoneta con dinamita # item.pitcher_pod.name=Semilla jarra # item.torchflower_seeds.name=Semillas de bastón de emperador # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=Huevo generador de Agent # item.spawn_egg.entity.armadillo.name=Huevo generador de armadillo # item.spawn_egg.entity.axolotl.name=Huevo generador de ajolote # item.spawn_egg.entity.bee.name=Huevo generador de abeja # +item.spawn_egg.entity.bogged.name=Huevo generador empantanado # +item.spawn_egg.entity.breeze.name=Huevo generador de brisa # item.spawn_egg.entity.hoglin.name=Huevo generador de hoglin # item.spawn_egg.entity.cat.name=Huevo generador de gato # item.spawn_egg.entity.chicken.name=Huevo generador de gallina # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 - sala # item.record_pigstep.desc=Lena Raine - Pigstep # item.record_otherside.desc=Lena Raine - Otherside # item.record_relic.desc=Aaron Cherof - Relic # +item.record_creator.desc=Lena Raine: creadora # +item.record_creator_music_box.desc=Lena Raine: creadora (caja de música) # +item.record_precipice.desc=Aaron Cherof: precipicio # item.redstone.name=Polvo de redstone # item.reeds.name=Cañas de azúcar # item.kelp.name=Alga marina # @@ -5324,6 +5394,12 @@ item.iron_sword.name=Espada de hierro # item.stone_sword.name=Espada de piedra # item.wooden_sword.name=Espada de madera # item.unbreakable=Irrompible # +item.waxed_copper_door.name=Puerta de cobre encerado # +item.waxed_exposed_copper_door.name=Puerta de cobre expuesto encerado # +item.waxed_oxidized_copper_door.name=Puerta de cobre oxidado encerado # +item.waxed_weathered_copper_door.name=Puerta de cobre erosionado encerado # +item.weathered_copper_door.name=Puerta de cobre erosionado # +item.wind_charge.name=Carga de viento # item.wheat.name=Trigo # item.wolf_armor.name=Armadura para lobo # item.writable_book.name=Libro y pluma # @@ -5331,6 +5407,7 @@ item.written_book.name=Libro escrito # item.glowstone_dust.name=Polvo de piedra brillante # item.shulker_shell.name=Caparazón de Shulker # item.totem.name=Tótem de la inmortalidad # +item.trial_key.name=Llave de prueba # item.turtle_helmet.name=Caparazón de tortuga # item.turtle_shell_piece.name=Escama de tortuga # item.phantom_membrane.name=Membrana de fantasma # @@ -5338,8 +5415,10 @@ item.sweet_berries.name=Bayas dulces # item.suspicious_stew.name=Estofado sospechoso # item.banner_pattern.bricks=Mazonado # item.banner_pattern.creeper=Estampado de Creeper # +item.banner_pattern.flow=Flujo # item.banner_pattern.flower=Estampado floral # item.banner_pattern.globe=Esfera # +item.banner_pattern.guster=Guster # item.banner_pattern.name=Patrón de estandarte # item.banner_pattern.piglin=Hocico # item.banner_pattern.skull=Estampado de calaveras # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=Patrones de estandarte # itemGroup.name.netherWartBlock=Verrugas del Inframundo # itemGroup.name.candles=Velas # itemGroup.name.goatHorn=Cuernos de cabra # +itemGroup.name.compounds=Compuestos # +itemGroup.name.products=Productos # jigsaw.title.target_pool=Grupo de objetivo: # jigsaw.title.name=Nombre: # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=AJUSTES DE AULA # menu.serverStore=Tienda de %s # menu.serverGenericName=Servidor # menu.play=Jugar # +menu.profile=Perfil # menu.playdemo=Jugar mundo de demostración # menu.playOnRealms=Jugar en Realm # menu.quickplay=Partida rápida # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=Elige tu personaje inicial # menu.character_cast.preview_title=¡Conoce al elenco! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Servidor Realms ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=Servidores # merchant.deprecated=¡Comercia otra cosa para desbloquear! # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=Jugar solo con teclado # options.fullKeyboardLayout=Diseño de teclado completo # options.improvedInputResponsePlaceholder=Mejor respuesta de entrada # options.improvedInputResponsePlaceholder.tooltip=Reduce el tiempo de espera desde que actúas hasta que se refleja en la pantalla. Este parámetro puede consumir más batería. # +options.dynamicTexturesToggle=Eliminar límite de texturas # +options.dynamicTexturesToggle.tooltip=Para activarlo o desactivarlo será necesario reiniciar el juego. Usar varios complementos o paquetes de recursos con muchas texturas puede causar inestabilidad. # +options.dynamicTextures.popUp=Si activas la opción de Eliminar límite de texturas, tendrás que reiniciar el juego para desactivarla. # +options.dynamicTextures.popUp.title=¿Seguro? # options.fullscreen=Pantalla completa # options.gamepadcursorsensitivity=Sensibilidad del cursor del mando # options.gamertag=Gamertag: # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=Conectar # options.creator.debuggerListen=Escucha # options.creator.debuggerHost=Anfitrión # options.creator.debuggerPort=Puerto # +options.creator.watchdogHeading=Ajustes del controlador de scripts # +options.creator.watchdogSlowWarning=Avisos de script lento # +options.creator.watchdogSlowThreshold=La media supera los # +options.creator.watchdogSlowFormat=%s milisegundos # +options.creator.watchdogSlowFormatDefault=%s milisegundos (predeterminado) # +options.creator.watchdogSpikeWarning=Avisos de picos de script # +options.creator.watchdogSpikeThreshold=El pico supera los # +options.creator.watchdogSpikeFormat=%s milisegundos # +options.creator.watchdogSpikeFormatDefault=%s milisegundos (predeterminado) # +options.creator.watchdogHangThreshold=Interrumpir a los # +options.creator.watchdogHangFormat=%s segundos # +options.creator.watchdogHangFormatDefault=%s segundos (predeterminado) # options.vr_classic_box_selection=Selección de contorno de bloques # options.hidegamepadcursor=Ocultar cursor del mando # options.hidegui=Ocultar interfaz de juego # @@ -6662,7 +6761,7 @@ options.makeBackup=Realizar una copia de seguridad de mi mundo # options.managePrivacy=Para administrar los ajustes de privacidad, visita https://account.xbox.com/Settings en cualquier navegador web. ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Desvincular cuenta de Microsoft # options.unlink_msa.confirm.title=¿Desvincular cuenta de Microsoft? # -options.unlink_msa.confirm.warning=ADVERTENCIA: Después de desvincularte, ya no podrás almacenar el progreso ni las compras que realices en tu sistema "PlayStation 4" en tu cuenta %s. # +options.unlink_msa.confirm.warning=AVISO: Después de desvincularte, ya no podrás almacenar el progreso ni las compras que realices en tu sistema PlayStation®4 con la cuenta %s. #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=Desvincular tu cuenta de Microsoft desde dentro de este juego afectará a todos los juegos de Minecraft en esta plataforma que hayan usado esta cuenta de Microsoft. # options.unlink_msa.confirm.checkbox1=Ya no podré acceder a ningún contenido de la Tienda del juego cuando juegue en otras plataformas. # options.unlink_msa.confirm.checkbox2=Ya no podré jugar a juegos multiplataforma con mis amigos en otras plataformas. # @@ -6688,7 +6787,7 @@ options.editor.modeDescription.messageWithMouse=El modo Editor añade poderosas options.editor.modeActive=Minecraft está actualmente en modo Editor. # options.editor.modeNotActive=Minecraft no está actualmente en modo Editor. # options.editor.achievementsDisabled=No se pueden obtener logros en este proyecto. # -options.newUiPlayScreen.initiate=Cambiar a la nueva interfaz de usuario # +options.newUiPlayScreen.initiate=Cambiar a la nueva UI # options.openPage.continue=Más información # options.graphicsMode=Modo de gráficos # options.graphicsMode.simple=Sencillo # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=Carga un mundo para personalizar los cont hudScreen.controlCustomization.tooltip.notouch=Usar un dispositivo táctil para personalizar los controles # hudScreen.controlCustomization.tooltip.alreadycustomizing=Ya hay una pantalla de personalización de control táctil abierta # hudScreen.controlCustomization.tooltip.alive=El jugador debe estar vivo para personalizar los controles. # +hudScreen.daysPlayed=Días jugados: %s # +hudScreen.daysPlayed.overflow=¡Demasiados como para contarlos! # playscreen.fileSize.MB=MB # playscreen.fileSize.GB=GB # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=Poción de curación de salpicadura # potion.heal.linger.name=Poción de curación persistente # potion.healthBoost=Mejora de salud # potion.hunger=Hambre # +potion.infested.linger.name=Poción persistente de infestación # +potion.infested.name=Poción de infestación # +potion.infested.splash.name=Poción de salpicadura de infestación # +potion.infested=Infestado # potion.invisibility=Invisibilidad # potion.invisibility.name=Poción de invisibilidad # potion.invisibility.splash.name=Poción de invisibilidad de salpicadura # @@ -7067,6 +7172,10 @@ potion.nightVision=Visión nocturna # potion.nightVision.name=Poción de visión nocturna # potion.nightVision.splash.name=Poción de visión nocturna de salpicadura # potion.nightVision.linger.name=Poción de visión nocturna persistente # +potion.oozing.linger.name=Poción persistente de supuración # +potion.oozing.name=Poción de supuración # +potion.oozing.splash.name=Poción de salpicadura de supuración # +potion.oozing=Supuración # potion.poison=Veneno # potion.poison.name=Poción de veneno # potion.poison.splash.name=Poción de veneno de salpicadura # @@ -7108,6 +7217,14 @@ potion.weakness=Debilidad # potion.weakness.name=Poción de debilidad # potion.weakness.splash.name=Poción de debilidad de salpicadura # potion.weakness.linger.name=Poción de debilidad persistente # +potion.weaving.linger.name=Poción persistente de tejido # +potion.weaving.name=Poción de tejido # +potion.weaving.splash.name=Poción de salpicadura de tejido # +potion.weaving=Tejer # +potion.windCharged.linger.name=Poción persistente de carga de viento # +potion.windCharged.name=Poción de carga de viento # +potion.windCharged.splash.name=Poción de salpicadura de carga de viento # +potion.windCharged=Con carga de viento # potion.wither=Wither # potion.wither.name=Poción de decadencia # potion.wither.splash.name=Poción de decadencia de salpicadura # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=No se puede abrir este mundo debido a progressScreen.message.forbiddenContent=No posees uno o más de los packs aplicados. # progressScreen.message.loadingSplitScreenAppearances=Cargando los aspectos de la pantalla dividida... # progressScreen.message.finishedLoadingSplitScreenAppearances=Se han cargado los aspectos de la pantalla dividida. # -progressScreen.message.modifiedWorldWarning=Puede que este mundo no sea o se comporte de la misma manera que los mundos no modificados y no puedas conseguir logros. # +progressScreen.message.modifiedWorldWarning.1=¡Estás jugando en un mundo con complementos! Esto le añadirá nuevas características a tu mundo de Minecraft. # +progressScreen.message.modifiedWorldWarning.2=¡No te limites a tener solo uno! Puedes cargar varios complementos a la vez en un único mundo. # +progressScreen.message.modifiedWorldWarning.3=Consejo avanzado: un pack de recursos puede cambiar las texturas de diferentes bloques y entidades. # +progressScreen.message.modifiedWorldWarning.4=Consejo avanzado: un pack de comportamiento puede cambiar la forma en que funcionan varios objetos, entidades o bloques diferentes. # +progressScreen.message.modifiedWorldWarning.5=Consejo avanzado: un complemento incluye tanto un pack de comportamiento como un pack de recursos. ¡Asegúrate de que ambos estén activados para que el complemento funcione! # +progressScreen.message.modifiedWorldWarning.6=Los complementos añaden nuevos bloques, objetos o criaturas a tus mundos. # +progressScreen.message.modifiedWorldWarning.7=¡Los mundos y los complementos son complejos! Aunque algunos combinan muy bien, podrías conseguir resultados graciosos con algunas combinaciones. # +progressScreen.message.modifiedWorldWarning.8=Cuantos más complementos, más diversión, pero puede que el juego tarde más en cargar. # progressScreen.dialog.title.resourcePack=¿Quieres descargar los packs de recursos? # progressScreen.dialog.title.behaviorAndResourcePack=¿Descargar paquetes de recursos y comportamientos del mundo? # progressScreen.dialog.title.onlyBehavior=¿Descargar packs de comportamientos del mundo? # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=¿Actualizar el mundo? # resourcePack.warning.add.body=Puede que este mundo tenga un aspecto o un comportamiento diferente a los mundos no modificados. Guarda una copia de tu mundo antes de continuar. # resourcePack.warning.add.button.cancel=No añadir pack # resourcePack.warning.add.button.ok=Añadir el pack igualmente # +resourcePack.warnings.contentKeyErrorBody=Se ha producido un problema al cargar el pack %s. # +resourcePack.warnings.contentKeyErrorBodyMultiple=Se ha producido un problema al cargar los packs %s. # +resourcePack.warnings.contentKeyErrorTitle=¡Error! # resourcePack.warning.remove.title=¡Peligro, peligro! # resourcePack.warning.remove.body=Añadir o eliminar packs de un mundo después de haber jugado en él podría causar errores y hacer que pierdas todo lo que has creado. # resourcePack.warning.remove.button.cancel=Conservar el pack # @@ -7557,7 +7684,9 @@ item.crimson_hanging_sign.name=Señal colgante carmesí # item.danger_pottery_sherd.name=Fragmento de cerámica con peligro # item.dark_oak_hanging_sign.name=Señal colgante de roble oscuro # item.explorer_pottery_sherd.name=Fragmento de cerámica con explorador # +item.flow_pottery_sherd.name=Fragmento de cerámica con flujo # item.friend_pottery_sherd.name=Fragmento de cerámica con amigo # +item.guster_pottery_sherd.name=Fragmento de cerámica con Guster # item.heart_pottery_sherd.name=Fragmento de cerámica con corazón # item.heartbreak_pottery_sherd.name=Fragmento de cerámica con corazón roto # item.howl_pottery_sherd.name=Fragmento de cerámica con aullido # @@ -7568,6 +7697,7 @@ item.mourner_pottery_sherd.name=Fragmento de cerámica con doliente # item.oak_hanging_sign.name=Señal colgante de roble # item.plenty_pottery_sherd.name=Fragmento de cerámica con riquezas # item.prize_pottery_sherd.name=Fragmento de cerámica con tesoro # +item.scrape_pottery_sherd.name=Fragmento de cerámica con arañazos # item.sheaf_pottery_sherd.name=Fragmento de cerámica con gavilla # item.shelter_pottery_sherd.name=Fragmento de cerámica con refugio # item.skull_pottery_sherd.name=Fragmento de cerámica con calavera # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=Escaleras de cerezo # tile.cherry_trapdoor.name=Escotilla de cerezo # tile.cherry_wood.name=Madera de cerezo # tile.chiseled_bookshelf.name=Estantería cincelada # +tile.chiseled_tuff.name=Toba volcánica cincelada # +tile.chiseled_tuff_bricks.name=Ladrillos de toba volcánica cincelada # tile.decorated_pot.name=Maceta decorada # tile.pink_petals.name=Pétalos rosas # tile.stripped_bamboo_block.name=Bloque de bambú sin corteza # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=Acabado de armadura de vex # trim_pattern.ward.name=Acabado de armadura de custodio # trim_pattern.wayfinder.name=Acabado de armadura de buscador de caminos # trim_pattern.wild.name=Acabado de armadura salvaje # +trim_pattern.bolt.name=Acabado de armadura de rayo # +trim_pattern.flow.name=Acabado de armadura de flujo # upgrade.netherite_upgrade.name=Mejora de inframundita # storageManager.mainSizeLabel=%s: 1 objeto # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=¿Eliminar plantilla de mundo? # selectTemplate.delete=Eliminar # selectTemplate.myTemplates=Mis plantillas de mundo # selectTemplate.realmsPlus=Plantillas destacadas de Realms Plus # -selectTemplate.marketplacePass=Plantillas destacadas del Marketplace Pass #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=Contenido destacado del Marketplace Pass #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=Plantillas importadas # selectTemplate.download=Descargar # selectTemplate.noTemplates=No hay plantillas de mundo en este dispositivo. # -selectTemplate.suggestedContent.title=Plantillas destacadas del Marketplace # +selectTemplate.suggestedContent.title=Contenido destacado del Marketplace # selectTemplate.suggestedContent.button=Ver más plantillas # selectTemplate.createdBy=Creado por %s # selectTemplate.inventory=Mis packs de Marketplace # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=Se ha producido un problema al conectarse. Sal e store.loading.error.issues=Mmm, estamos teniendo algunos problemas con el Marketplace. Intenta conectarte más tarde. # store.loading.error.internetDown=No podemos encontrar ninguna conexión a internet. # store.loading.error.account=Hay un problema con tu cuenta. Vuelve a intentarlo más tarde y ponte en contacto con el servicio de asistencia si no se soluciona. # +store.loading.error.account.banned=No puedes utilizar el marketplace hasta que termine tu suspensión. # store.giftPromo.day=Día %s ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=Obtenido # @@ -8405,10 +8540,17 @@ store.mashup.count.skin=1 aspecto # store.mashup.count.skins=%s aspectos # store.mashup.count.texturePack=1 pack de texturas # store.mashup.count.texturePacks=%s packs de texturas #number of texture packs # -store.mashup.count.world=1 mundo # +store.mashup.count.world=1 mundo # store.mashup.count.worlds=%s mundos #number of worlds # store.mashup.count.addonPack=1 complemento # store.mashup.count.addonPacks=%s complementos #number of addons # +store.mashup.count.mashup=Popurrí # +store.mashup.hover.label.addonPack=Los complementos se pueden aplicar a cualquier mundo. # +store.mashup.hover.label.world=Un mapa de Minecraft hecho a mano. # +store.mashup.hover.label.skin=Dale un nuevo aspecto a tu personaje. # +store.mashup.hover.label.texturePack=Añádele nuevos gráficos a tu mundo o la interfaz del juego. # +store.mashup.hover.label.mashup.lineOne=Una combinación de diferentes tipos de contenido. # +store.mashup.hover.label.mashup.lineTwo=Este popurrí incluye: # store.addon.activateAddonPack=¡Activar complemento! # store.addon.newOrExistingTitle=¿Dónde se puede añadir? # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=Pizarrón # tile.chest.name=Cofre # tile.ender_chest.name=Cofre de Ender # tile.jigsaw.name=Bloque rompecabezas # +tile.heavy_core.name=Núcleo pesado # tile.honey_block.name=Bloque de miel # tile.honeycomb_block.name=Bloque de panales # tile.lodestone.name=Magnetita # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=Losa de rocanegra pulida # tile.polished_blackstone_pressure_plate.name=Plato de presión de rocanegra pulida # tile.polished_blackstone_button.name=Botón de rocanegra pulida # tile.polished_blackstone_wall.name=Pared de rocanegra pulida # +tile.polished_tuff.name=Toba volcánica pulida # +tile.polished_tuff_slab.name=Losa de toba volcánica pulida # +tile.polished_tuff_stairs.name=Escaleras de toba volcánica pulida # +tile.polished_tuff_wall.name=Pared de toba volcánica pulida # tile.soul_campfire.name=Fogata de alma # tile.chiseled_nether_bricks.name=Ladrillos del Inframundo cincelados # tile.cracked_nether_bricks.name=Ladrillos del Inframundo agrietados # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=Terracota amarilla # tile.structure_block.name=Bloque de estructuras # structure_block.waterlog_block=Bloques de agua # tile.structure_void.name=Vacío de estructuras # +tile.trial_spawner.name=Generador de prueba # +tile.vault.name=Caja fuerte # tile.wool.black.name=Lana negra # tile.wool.blue.name=Lana azul # tile.wool.brown.name=Lana marrón # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=Helecho # tile.tallgrass.grass.name=Hierba # tile.tallgrass.name=Hierba # tile.tallgrass.shrub.name=Arbusto # +tile.tuff_brick_slab.name=Losa de ladrillos de toba volcánica # +tile.tuff_brick_stairs.name=Escaleras de ladrillos de toba volcánica # +tile.tuff_brick_wall.name=Pared de ladrillos de toba volcánica # +tile.tuff_bricks.name=Ladrillos de toba volcánica # +tile.tuff_slab.name=Losa de toba volcánica # +tile.tuff_stairs.name=Escaleras de toba volcánica # +tile.tuff_wall.name=Pared de toba volcánica # tile.seagrass.seagrass.name=Fondo marino # tile.sea_pickle.name=Escabeche marino # tile.turtle_egg.name=Huevo de tortuga marina # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=Alfombra roja # tile.carpet.silver.name=Alfombra gris claro # tile.carpet.white.name=Alfombra blanca # tile.carpet.yellow.name=Alfombra amarilla # +tile.crafter.name=Fabricante # tile.crafting_table.name=Mesa de trabajo # tile.glazedTerracotta.white.name=Terracota acristalada blanca # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=Losa de cobre cortado encerado # tile.waxed_exposed_cut_copper_slab.name=Losa de cobre cortado, expuesto y encerado # tile.waxed_weathered_cut_copper_slab.name=Losa de cobre cortado, erosionado y encerado # tile.waxed_oxidized_cut_copper_slab.name=Losa de cobre cortado, oxidado y encerado # + +tile.chiseled_copper.name=Cobre cincelado # +tile.exposed_chiseled_copper.name=Cobre cincelado expuesto # +tile.oxidized_chiseled_copper.name=Cobre cincelado oxidado # +tile.waxed_chiseled_copper.name=Cobre cincelado encerado # +tile.waxed_exposed_chiseled_copper.name=Cobre cincelado, expuesto y encerado # +tile.waxed_oxidized_chiseled_copper.name=Cobre cincelado, oxidado y encerado # +tile.waxed_weathered_chiseled_copper.name=Cobre cincelado, erosionado y encerado # +tile.weathered_chiseled_copper.name=Cobre cincelado erosionado # + +tile.copper_bulb.name=Bombilla de cobre # +tile.exposed_copper_bulb.name=Bombilla de cobre expuesto # +tile.oxidized_copper_bulb.name=Bombilla de cobre oxidado # +tile.waxed_copper_bulb.name=Bombilla de cobre encerado # +tile.waxed_exposed_copper_bulb.name=Bombilla de cobre expuesto encerado # +tile.waxed_oxidized_copper_bulb.name=Bombilla de cobre oxidado encerado # +tile.waxed_weathered_copper_bulb.name=Bombilla de cobre erosionado encerado # +tile.weathered_copper_bulb.name=Bombilla de cobre erosionado # + +tile.copper_door.name=Puerta de cobre # +tile.exposed_copper_door.name=Puerta de cobre expuesto # +tile.oxidized_copper_door.name=Puerta de cobre oxidado # +tile.waxed_copper_door.name=Puerta de cobre encerado # +tile.waxed_exposed_copper_door.name=Puerta de cobre expuesto encerado # +tile.waxed_oxidized_copper_door.name=Puerta de cobre oxidado encerado # +tile.waxed_weathered_copper_door.name=Puerta de cobre erosionado encerado # +tile.weathered_copper_door.name=Bombilla de cobre erosionado # + +tile.copper_grate.name=Rejilla de cobre # +tile.exposed_copper_grate.name=Rejilla de cobre expuesto # +tile.oxidized_copper_grate.name=Rejilla de cobre oxidado # +tile.waxed_copper_grate.name=Rejilla de cobre encerado # +tile.waxed_exposed_copper_grate.name=Rejilla de cobre expuesto encerado # +tile.waxed_oxidized_copper_grate.name=Rejilla de cobre oxidado encerado # +tile.waxed_weathered_copper_grate.name=Rejilla de cobre erosionado encerado # +tile.weathered_copper_grate.name=Rejilla de cobre erosionado # + +tile.copper_trapdoor.name=Escotilla de cobre # +tile.exposed_copper_trapdoor.name=Escotilla de cobre expuesto # +tile.oxidized_copper_trapdoor.name=Escotilla de cobre oxidado # +tile.waxed_copper_trapdoor.name=Escotilla de cobre encerado # +tile.waxed_exposed_copper_trapdoor.name=Escotilla de cobre expuesto encerado # +tile.waxed_oxidized_copper_trapdoor.name=Escotilla de cobre oxidado encerado # +tile.waxed_weathered_copper_trapdoor.name=Escotilla de cobre erosionado encerado # +tile.weathered_copper_trapdoor.name=Escotilla de cobre erosionado # + tile.raw_copper_block.name=Bloque de cobre bruto # tile.raw_iron_block.name=Bloque de hierro bruto # tile.raw_gold_block.name=Bloque de oro bruto # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=Flecha de la suerte # tipped_arrow.effect.wither=Flecha de decadencia # tipped_arrow.effect.turtleMaster=Flecha de la tortuga maestra # tipped_arrow.effect.slowFalling=Flecha de caída lenta # +tipped_arrow.effect.infested=Flecha de infestación # +tipped_arrow.effect.oozing=Flecha de supuración # +tipped_arrow.effect.weaving=Flecha de tejido # +tipped_arrow.effect.windCharged=Flecha de carga de viento # structure_block.title=Bloque de estructuras # structure_block.structure_name=Nombre de estructura # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=Es posible que algunos de los cambios worldError.worldFailedRecovery=Fallo de recuperación # worldError.worldFailedRecoveryText=Hemos detectado un mundo dañado y no hemos podido recuperarlo. # +writeThrottling.osDialog.body=La operación solicitada tardará %d minutos aproximadamente en completarse. No apagues el dispositivo durante este tiempo. # +writeThrottling.osDialog.cancel=Cancelar operación # +writeThrottling.osDialog.confirm=Continuar # +writeThrottling.progressBar.title=Preparando datos # +writeThrottling.progressBar.body=Preparando tus archivos… # + userData.recovered.title=Datos guardados recuperados # userData.recovered.text=Se han recuperado con éxito tus ajustes de usuario dañados. # userData.recovered.warning=Es posible que algunos de los cambios más recientes se hayan perdido durante la recuperación. # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=Mensaje de chat # xbox.report.area.skin=Aspecto de jugador # xbox.report.area.gameplay=Forma de jugar # xbox.report.area.ingame=Creaciones en el juego # -xbox.report.area.other=Otros # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=Ciberacoso # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=Por desgracia, no hemos podido establecer gathering.connect.title=Conectando... # gathering.info.qr.title.onlineService=Aprender más # gathering.info.qr.body.onlineService.nso=Necesitas una suscripción a Nintendo Switch Online para unirte a un evento en Minecraft. # -gathering.info.qr.body.onlineService.psn=Tienes que haber iniciado sesión en \"PlayStation Plus\" para unirte a un evento en Minecraft. # +gathering.info.qr.body.onlineService.psn=Tienes que haber iniciado sesión en PlayStation®Plus para unirte a un evento en Minecraft. #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=Debes haber iniciado sesión para unirte a un evento en Minecraft. # gathering.info.qr.title.childAccount=Juego en línea no permitido # gathering.info.qr.body.childAccount=Tu control parental actual no te permite jugar en línea. # diff --git a/resource_pack/texts/es_MX.lang b/resource_pack/texts/es_MX.lang index 12f0fb076..f2dbe3e57 100644 --- a/resource_pack/texts/es_MX.lang +++ b/resource_pack/texts/es_MX.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=Elegir semilla # accessibility.start.feedback=Enviar enlace de comentarios al sitio web # accessibility.start.new=Nuevo # -accessibility.start.profile=Elegir perfil # accessibility.start.skinPicker=Elegir aspecto # accessibility.store.tag=Etiqueta # @@ -1094,10 +1093,6 @@ commands.me.description=Muestra un mensaje acerca de ti. # commands.message.display.incoming=%1$s te susurró: %2$s. # commands.message.display.outgoing=Susurraste a %1$s: %2$s. # commands.message.sameTarget=¡No puedes enviarte un mensaje privado a ti mismo! # -commands.message.warn=§4Te enviaron un aviso. Puede que a otros jugadores tu comportamiento les parezca ofensivo. Ten en cuenta a los demás jugadores. # -commands.message.toastWarn=¡Minecraft es para todo el mundo! No olvides comportarte según los estándares de la comunidad. # -commands.warn.invalidWarningLevel=Nivel de aviso no válido. # -commands.warn.playerDoesNotExist=No se encontró al jugador. Selecciona un jugador válido. # commands.mobevent.description=Controla qué eventos de criatura pueden ejecutarse. # commands.mobevent.eventsEnabledSetToTrue=Los eventos de criaturas ahora están habilitados y los eventos individuales que están configurados como falsos no se ejecutarán. # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=- %s: %s de %d %d %d a %d %d %d # commands.volumearea.entry.withoutIdentifier=- %s: de %d %d %d a %d %d %d # commands.volumearea.noneExist.currentDimension=No existe ningún volumen en la dimensión actual. # commands.volumearea.inUse=%1$d/%2$d volúmenes en uso. # -commands.warn.description=Envía un mensaje de aviso al jugador. # commands.weather.clear=Cambiando a clima despejado # commands.weather.description=Establece el clima. # commands.weather.disabled=El ciclo atmosférico no está habilitado en este mundo. # @@ -1572,6 +1566,7 @@ container.beacon=Faro # container.brewing=Puesto de destilado # container.chest=Cofre # container.chestDouble=Cofre grande # +container.crafter=Fabricante # container.crafting=Fabricar # container.creative=Selección de objetos # container.dispenser=Dispensador # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=Cuevas y acantilados # createWorldScreen.cavesandcliffsDescription=Explora la generación de cuevas nueva y variada # createWorldScreen.spectatorMode=Modo espectador # createWorldScreen.spectatorModeDescription=Prueba las primeras versiones del modo espectador # -createWorldScreen.experimentalCameras=Cámaras experimentales # -createWorldScreen.experimentalCamerasDescription=Incluye ejemplos de preajustes de cámara (el comando de la cámara ya no es experimental) # createWorldScreen.recipeUnlocking=Desbloqueo de recetas # createWorldScreen.recipeUnlockingDescription=Habilitar desbloqueo de recetas # createWorldScreen.experimentalholiday=Funciones del creador de días festivos # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=Creando mundo nuevo... # createWorldScreen.progress.realms=Restableciendo el Realm... # createWorldScreen.seed.desc=Ingresa una semilla para generar otra vez el mismo terreno. Déjalo en blanco si prefieres un mundo aleatorio. # createWorldScreen.showCoordinates=Mostrar coordenadas # +createWorldScreen.showDaysPlayed=Mostrar días jugados # createWorldScreen.worldType=Tipo de mundo # createWorldScreen.randomtickspeed=Velocidad de marca aleatoria # createWorldScreen.randomtickspeed.reset=Restablecimiento de velocidad de marca aleatoria # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=Eliminar proyecto # createWorldScreen.editor.projectOptionsLabel=Opciones de proyecto # createWorldScreen.editor.delete.confirm=¿Eliminar el proyecto de forma permanente? # createWorldScreen.editor.deleteWarningFormat=¿Realmente quieres eliminar "%s"? ¡Este proyecto se perderá para siempre! # +createWorldScreen.eduCloud.about.body=Nombre de archivo: «%1$s»%2$sÚltima actualización: %3$s%4$sPara descargar, haz clic en Aceptar y luego en Descargar.%5$s # +createWorldScreen.eduCloud.about.title=Acerca del archivo de Mundo en la nube # createWorldScreen.eduCloud.delete.confirm=¿Eliminar mundo local? # createWorldScreen.eduCloud.deleteWarningFormat=¿Seguro que quieres eliminar ''%1$s'' en este dispositivo? %2$sLa versión en la nube ''%3$s'' no se verá afectada y podrás volver a sincronizarla más tarde. # createWorldScreen.experimentalDeferredTechnicalPreview=Renderizar características de dragón para creadores # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Tienda Windows # realmsSettingsScreen.xboxOneStoreDisplayName=Tienda Xbox # realmsSettingsScreen.amazonStoreDisplayName=Amazon Appstore # realmsSettingsScreen.oculusStoreDisplayName=Tienda Oculus # -realmsSettingsScreen.berwickStoreDisplayName="PlayStation Store" # -realmsSettingsScreen.SonyStoreDisplayName=\"PlayStation Store\" #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=tienda desconocida # realmsSettingsScreen.extendingRealm=Extendiendo Realm... # realmsSettingsScreen.offerError.title=Compra pendiente # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=Los packs comprados fuera del M xbl.syncIAP.confirmSync.prompt.yes=Sí, sincronizar mis compras # xbl.marketplace.account.error.body.nobutton=Hay un error con tu cuenta. No podrás usar el Mercado hasta que resolvamos este inconveniente. Si el problema continúa durante varios días, ponte en contacto con el servicio de soporte. # -xbl.marketplace.account.banned.body.nobutton=No puedes utilizar el mercado hasta que termine tu suspensión. # playfab.account.banned.temporary=suspendido # playfab.account.banned.permanent=Bloqueado # @@ -2487,6 +2482,14 @@ date.daysAbbreviated1Char=%sd ### It needs to be abbreviated with no more than date.hoursAbbreviated1Char=%sh ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%sm ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%ss ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s días # +date.hoursPlural=%s horas # +date.minutesPlural=%s minutos # +date.secondsPlural=%s segundos # +date.daySingular=%s día # +date.hourSingular=%s hora # +date.minuteSingular=%s minuto # +date.secondSingular=%s segundo # date.timeLeft=%s restantes # dayOneExperience.carousel.title=¡Te damos la bienvenida a New Minecraft! # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=ANFITRIÓN # edu.worlds_screen.settings=CONFIGURACIÓN # edu.worlds_screen.download=DESCARGAR ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=ADMINISTRAR # +edu.worlds_screen.about=ACERCA DE # edu.worlds_screen.back=ATRÁS # edu.worlds_screen.copy=COPIAR # edu.worlds_screen.export=EXPORTAR # @@ -2791,7 +2795,13 @@ edu.templates.empty_banner=Puedes conseguir plantillas de mundos en la bibliotec edu.pause.multiplayer.disabled=El modo multijugador no está disponible para esta clase. # effect.badOmen=Mal presagio # +effect.infested=Infestado # +effect.oozing=Exudación # +effect.raid_omen=Presagio de asalto # +effect.trial_omen=Presagio de prueba # effect.villageHero=Héroe de la aldea # +effect.weaving=Tejer # +effect.wind_charged=Carga ventosa # enchantment.arrowDamage=Poder # enchantment.arrowFire=Llama # @@ -2810,6 +2820,9 @@ enchantment.durability=Irrompibilidad # enchantment.fire=Aspecto de fuego # enchantment.fishingSpeed=Señuelo # enchantment.frostwalker=Paso helado # +enchantment.heavy_weapon.breach=Invasión # +enchantment.heavy_weapon.density=Densidad # +enchantment.heavy_weapon.windburst=Ráfaga ventosa # enchantment.knockback=Empuje # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=Murciélago # entity.bee.name=Abeja # entity.blaze.name=Blaze # entity.boat.name=Bote # +entity.bogged.name=Empantanado # +entity.breeze.name=Brisa # +entity.breeze_wind_charge_projectile.name=Carga ventosa # entity.cat.name=Gato # entity.cave_spider.name=Araña de las cuevas # entity.chicken.name=Gallina # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=Aldeano sin habilidades # entity.villager_v2.name=Aldeano # entity.vindicator.name=Vindicador # entity.wandering_trader.name=Comerciante errante # +entity.wind_charge_projectile.name=Carga ventosa # entity.witch.name=Bruja # entity.wither.name=Wither # entity.wither_skeleton.name=Esqueleto de Wither # @@ -3009,6 +3026,7 @@ feature.ruins=Ruinas del océano # feature.pillager_outpost=Puesto de vigilancia de saqueador # feature.bastion_remnant=Restos del bastión # feature.ruined_portal=Portal arruinado # +feature.trial_chambers=Cámara de desafíos # feed.like=Me gusta # feed.manage_feed=Gestionar fuentes # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=Mueve :tip_left_stick: para moverte a tu alred gameTip.flying.mouse=Toca :_input_key.jump: dos veces para volar # gameTip.flying.touch=Toca salto dos veces para volar # +gameTip.flyDown.mouse=Presiona :_input_key.sneak: para volar hacia abajo # +gameTip.flyUp.mouse=Presiona :_input_key.jump: para volar hacia arriba # + +gameTip.stopFlying.mouse=Toca :_input_key.jump: dos veces para detener el vuelo # +gameTip.stopFlying.touch=Toca Volar hacia abajo dos veces para detener el vuelo # + gameTip.jump.mouse=Salta con :_input_key.jump: # +gameTip.swim.mouse=Mantén presionado :_input_key.jump: para nadar hacia arriba # -gameTip.hotbar.mouse=Desplaza la rueda del ratón para seleccionar # en la barra activa y mantén la selección # -gameTip.hotbar.touch=Toca # en la barra activa para mantenerlo # -gameTip.hotbar.controller=Toca # en la barra activa para mantenerlo # +gameTip.hotbar.selection.mouse=Usa la rueda del ratón o presiona %s para tomar un objeto ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=Toca un objeto de la barra de acceso rápido para tomarlo # gameTip.breakBlock.mouse=Mantén presionado el botón izquierdo para romper bloques # gameTip.breakBlock.touch=Toca y mantén para romper bloques # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=¡Vas agachado! Ahora no puedes caerte por los bordes. # gameTip.sneak.touch=Vas agachado, así que no puedes caerte por los bordes # gameTip.sneak.controller=Vas agachado, así que no puedes caerte por los bordes # -gameTip.placeCraftingTable.mouse=Coloca tu mesa de trabajo. Mantenla presionada y haz clic para colocar  'LINEBREAK'. #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=Coloca tu mesa de trabajo. Sostenla y haz clic para colocarla # gameTip.placeCraftingTable.touch=Toca el suelo para colocar tu mesa de trabajo # gameTip.placeCraftingTable.controller=Coloca tu mesa de trabajo, mantenla presionada y, luego, toca el suelo # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=¡Gracias por dejar tu reseña! # gui.submitFeedback.failure.status.unprocessableEntity=No adquiriste el artículo sobre el que quieres dejar comentarios. (Código de error: %d) # gui.submitFeedback.failure.status.tooManyRequests=¡Oh, no! Enviaste demasiadas reseñas; vuelve a intentarlo más tarde. (Código de error: %d) # gui.submitFeedback.failure.status.other=No es posible enviar tu reseña en este momento; vuelve a intentarlo más tarde. (Código de error: %d) # +gui.togglable_slot=Presiona para desactivar la ranura # gui.playOffline=Jugar sin conexión # gui.signIn=Iniciar sesión # gui.genericNetworkError=Algo salió mal. Revisa tu conexión a internet. # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=¡Explora un mundo de posibilidades con las minecoins howtoplay.minecoins.text.2=¡Al canjearlas, tus minecoins estarán vinculadas a tu cuenta de Microsoft para que puedas acceder a tus monedas y compras en otros dispositivos compatibles! # howtoplay.minecoins.button.text.1=Conseguir Minecoins # howtoplay.minecoins.header.1=Aviso legal # -howtoplay.minecoins.text.3=* Las minecoins requieren una versión de Minecraft: Bedrock Edition con el Marketplace de Minecraft. Las minecoins no son compatibles con PlayStation de Sony. Para obtener información sobre compatibilidad, visita minecraft.net/minecoins  # +howtoplay.minecoins.text.3=* Las minecoins requieren una versión de Minecraft: Bedrock Edition con el Mercado de Minecraft. Las minecoins no son compatibles con PlayStation® de Sony. Para obtener información sobre compatibilidad, visita minecraft.net/minecoins  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=Minería # @@ -4145,7 +4170,7 @@ level.editor.export.failed=Error en la exportación del proyecto # level.editor.import.failed=Error en la importación del proyecto # level.editor.import.failed.incompatibleEdition=Ocurrió un error al importar el proyecto: formato de archivo no compatible # -inbox.invite.title=Invitación a Realms # +inbox.invite.title=Invitación de Realms a # invite.clear=Borrar selección # invite.send=Enviar %d invitaciones # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=Tajado rojo invertido # item.banner.diagonal_up_right.silver=Tajado gris claro invertido # item.banner.diagonal_up_right.white=Tajado blanco invertido # item.banner.diagonal_up_right.yellow=Tajado amarillo invertido # +item.banner.flow.black=Flujo negro # +item.banner.flow.blue=Flujo azul # +item.banner.flow.brown=Flujo marrón # +item.banner.flow.cyan=Flujo cian # +item.banner.flow.gray=Flujo gris # +item.banner.flow.green=Flujo verde # +item.banner.flow.lightBlue=Flujo celeste # +item.banner.flow.lime=Flujo verde lima # +item.banner.flow.magenta=Flujo magenta # +item.banner.flow.orange=Flujo naranja # +item.banner.flow.pink=Flujo rosa # +item.banner.flow.purple=Flujo morado # +item.banner.flow.red=Flujo rojo # +item.banner.flow.silver=Flujo gris claro # +item.banner.flow.white=Flujo blanco # +item.banner.flow.yellow=Flujo amarillo # item.banner.flower.black=Figura de flor negra # item.banner.flower.blue=Figura de flor azul # item.banner.flower.brown=Figura de flor marrón # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=Gradiente blanco en campaña # item.banner.gradient_up.yellow=Gradiente amarillo en campaña # item.banner.gray.name=Estandarte gris # item.banner.green.name=Estandarte verde # +item.banner.guster.black=Guster negro # +item.banner.guster.blue=Guster azul # +item.banner.guster.brown=Guster marrón # +item.banner.guster.cyan=Guster cian # +item.banner.guster.gray=Guster gris # +item.banner.guster.green=Guster verde # +item.banner.guster.lightBlue=Guster celeste # +item.banner.guster.lime=Guster verde lima # +item.banner.guster.magenta=Guster Magenta # +item.banner.guster.orange=Guster naranja # +item.banner.guster.pink=Guster rosa # +item.banner.guster.purple=Guster morado # +item.banner.guster.red=Guster rojo # +item.banner.guster.silver=Guster gris claro # +item.banner.guster.white=Guster blanco # +item.banner.guster.yellow=Guster amarillo # item.banner.half_horizontal.black=Cortado negro # item.banner.half_horizontal.blue=Cortado azul # item.banner.half_horizontal.brown=Cortado marrón # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=Bote de acacia # item.boat.big_oak.name=Bote de roble oscuro # item.bone.name=Hueso # item.book.name=Libro # +item.breeze_rod.name=Vara de vorágine # item.chainmail_boots.name=Botas de malla # item.leather_boots.name=Botas de cuero # item.diamond_boots.name=Botas de diamante # @@ -4991,6 +5049,7 @@ item.comparator.name=Comparador de redstone # item.compass.name=Brújula # item.lodestonecompass.name=Brújula de magnetita # item.cookie.name=Galleta # +item.copper_door.name=Puerta de cobre # item.crossbow.name=Ballesta # item.diamond.name=Diamante # item.repeater.name=Repetidor de redstone # @@ -5038,6 +5097,7 @@ tile.end_rod.name=Vara de End # item.ender_eye.name=Ojo de Ender # item.ender_pearl.name=Perla de Ender # item.experience_bottle.name=Botella de hechizo # +item.exposed_copper_door.name=Puerta de cobre expuesto # item.feather.name=Pluma # item.fermented_spider_eye.name=Ojo de araña fermentado # item.fireball.name=Descarga de fuego # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=Musleras de oro # item.iron_leggings.name=Musleras de hierro # item.nautilus_shell.name=Concha de Nautilus # item.heart_of_the_sea.name=Corazón del Mar # +item.mace.name=Maza # item.magma_cream.name=Crema de magma # item.map.name=Mapa # item.map.exploration.mansion.name=Mapa de explorador del bosque # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=Mapa de aldea de la sabana # item.map.exploration.village_desert.name=Mapa de aldea del desierto # item.map.exploration.jungle_temple.name=Mapa de explorador de la jungla # item.map.exploration.swamp_hut.name=Mapa de explorador del pantano # +item.map.exploration.trial_chambers.name=Mapa de explorador de la prueba # item.melon.name=Sandía # item.milk.name=Leche # item.minecart.name=Vagoneta # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=Vagoneta con cofre # item.command_block_minecart.name=Vagoneta con bloque de comandos # item.minecartFurnace.name=Vagoneta con horno # item.hopper_minecart.name=Vagoneta con tolva # +item.ominous_bottle.name=Botella ominosa # +item.ominous_trial_key.name=Llave de desafío ominosa # +item.oxidized_copper_door.name=Puerta de cobre oxidado # item.tnt_minecart.name=Vagoneta con dinamita # item.pitcher_pod.name=Semilla jarra # item.torchflower_seeds.name=Semillas de bastón de emperador # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=Huevo generador de Agent # item.spawn_egg.entity.armadillo.name=Huevo generador de armadillo # item.spawn_egg.entity.axolotl.name=Huevo generador de ajolote # item.spawn_egg.entity.bee.name=Huevo generador de abeja # +item.spawn_egg.entity.bogged.name=Huevo generador empantanado # +item.spawn_egg.entity.breeze.name=Huevo generador de vorágine # item.spawn_egg.entity.hoglin.name=Huevo generador de hoglin # item.spawn_egg.entity.cat.name=Huevo generador de gato # item.spawn_egg.entity.chicken.name=Huevo generador de gallina # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 - ward # item.record_pigstep.desc=Lena Raine - Pigstep # item.record_otherside.desc=Lena Raine - otherside # item.record_relic.desc=Aaron Cherof - Relic # +item.record_creator.desc=Lena Raine: creadora # +item.record_creator_music_box.desc=Lena Raine: creadora (caja de música) # +item.record_precipice.desc=Aaron Cherof: precipicio # item.redstone.name=Polvo de redstone # item.reeds.name=Cañas de azúcar # item.kelp.name=Alga parda # @@ -5324,6 +5394,12 @@ item.iron_sword.name=Espada de hierro # item.stone_sword.name=Espada de piedra # item.wooden_sword.name=Espada de madera # item.unbreakable=Irrompible # +item.waxed_copper_door.name=Puerta de cobre encerado # +item.waxed_exposed_copper_door.name=Puerta de cobre expuesto y encerado # +item.waxed_oxidized_copper_door.name=Puerta de cobre oxidado y encerado # +item.waxed_weathered_copper_door.name=Puerta de cobre desgastado y encerado # +item.weathered_copper_door.name=Puerta de cobre desgastado # +item.wind_charge.name=Carga ventosa # item.wheat.name=Trigo # item.wolf_armor.name=Armadura para lobo # item.writable_book.name=Libro y pluma # @@ -5331,6 +5407,7 @@ item.written_book.name=Libro escrito # item.glowstone_dust.name=Polvo de piedra luminosa # item.shulker_shell.name=Coraza de Shulker # item.totem.name=Tótem de la inmortalidad # +item.trial_key.name=Llave de desafío # item.turtle_helmet.name=Caparazón de tortuga # item.turtle_shell_piece.name=Escama de tortuga # item.phantom_membrane.name=Membrana de fantasma # @@ -5338,8 +5415,10 @@ item.sweet_berries.name=Bayas dulces # item.suspicious_stew.name=Estofado sospechoso # item.banner_pattern.bricks=Mazonado de campo # item.banner_pattern.creeper=Figura de Creeper # +item.banner_pattern.flow=Flujo # item.banner_pattern.flower=Figura de flor # item.banner_pattern.globe=Globo terráqueo # +item.banner_pattern.guster=Guster # item.banner_pattern.name=Patrón de estandarte # item.banner_pattern.piglin=Trompa # item.banner_pattern.skull=Figura de calavera # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=Patrones de estandarte # itemGroup.name.netherWartBlock=Verrugas del inframundo # itemGroup.name.candles=Velas # itemGroup.name.goatHorn=Cuernos de cabra # +itemGroup.name.compounds=Compuestos # +itemGroup.name.products=Productos # jigsaw.title.target_pool=Grupo objetivo: # jigsaw.title.name=Nombre: # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=CONFIGURACIÓN DE SALÓN DE CLASES # menu.serverStore=Tienda de %s # menu.serverGenericName=Servidor # menu.play=Jugar # +menu.profile=Perfil # menu.playdemo=Jugar mundo de prueba # menu.playOnRealms=Jugar en el realm # menu.quickplay=Juego rápido # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=Elige tu personaje inicial # menu.character_cast.preview_title=¡Conoce al elenco! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Servidor Realms ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=Servidores # merchant.deprecated=¡Comercia otra cosa para desbloquear más! # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=Disposición de teclas del juego # options.fullKeyboardLayout=Diseño completo del teclado # options.improvedInputResponsePlaceholder=Mejor respuesta de entrada # options.improvedInputResponsePlaceholder.tooltip=Reduce el tiempo de espera desde que actúas hasta que se refleja en la pantalla. Este parámetro puede consumir más batería. # +options.dynamicTexturesToggle=Eliminar límite de texturas # +options.dynamicTexturesToggle.tooltip=Para activarlo o desactivarlo será necesario reiniciar el juego. Usar varios complementos o paquetes de recursos con muchas texturas puede causar inestabilidad. # +options.dynamicTextures.popUp=Si activas la opción de Eliminar límite de texturas, tendrás que reiniciar el juego para desactivarla. # +options.dynamicTextures.popUp.title=¿Seguro? # options.fullscreen=Pantalla completa # options.gamepadcursorsensitivity=Sensibilidad del cursor del control # options.gamertag=Gamertag: # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=Conectar # options.creator.debuggerListen=Escucha # options.creator.debuggerHost=Anfitrión # options.creator.debuggerPort=Puerto # +options.creator.watchdogHeading=Ajustes del controlador de secuencias de comandos # +options.creator.watchdogSlowWarning=Avisos de secuencias de comandos lentos # +options.creator.watchdogSlowThreshold=La media supera los # +options.creator.watchdogSlowFormat=%s milisegundos # +options.creator.watchdogSlowFormatDefault=%s milisegundos (predeterminado) # +options.creator.watchdogSpikeWarning=Avisos de picos de secuencias de comandos # +options.creator.watchdogSpikeThreshold=El pico supera los # +options.creator.watchdogSpikeFormat=%s milisegundos # +options.creator.watchdogSpikeFormatDefault=%s milisegundos (predeterminado) # +options.creator.watchdogHangThreshold=Interrumpir a los # +options.creator.watchdogHangFormat=%s segundos # +options.creator.watchdogHangFormatDefault=%s segundos (predeterminado) # options.vr_classic_box_selection=Selección de contorno # options.hidegamepadcursor=Ocultar el cursor del control # options.hidegui=Ocultar interfaz de juego # @@ -6662,7 +6761,7 @@ options.makeBackup=Hacer una copia de seguridad de mi mundo # options.managePrivacy=Para administrar tu configuración de privacidad, visita https://account.xbox.com/Settings en cualquier navegador. ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Desvincular la cuenta de Microsoft # options.unlink_msa.confirm.title=¿Quieres desvincular la cuenta de Microsoft? # -options.unlink_msa.confirm.warning=ADVERTENCIA: si desvinculas las cuentas, ya no podrás almacenar el progreso o las compras realizadas en tu consola "PlayStation 4" o en tu cuenta %s. # +options.unlink_msa.confirm.warning=AVISO: Después de desvincularte, ya no podrás almacenar el progreso ni las compras que realices en tu sistema PlayStation®4 con la cuenta %s. #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=Si desvinculas tu cuenta de Microsoft de este juego, se verán afectadas todas las partidas de Minecraft creadas con esta cuenta de Microsoft en esta plataforma. # options.unlink_msa.confirm.checkbox1=Ya no podré acceder a ningún contenido de la tienda dentro del juego al jugar en otras plataformas. # options.unlink_msa.confirm.checkbox2=Ya no podré jugar juegos entre plataformas con mis amigos que utilizan otras plataformas. # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=Carga un mundo para personalizar los cont hudScreen.controlCustomization.tooltip.notouch=Usar un dispositivo táctil para personalizar los controles # hudScreen.controlCustomization.tooltip.alreadycustomizing=Ya hay una pantalla de personalización de control táctil abierta # hudScreen.controlCustomization.tooltip.alive=El jugador debe estar vivo para personalizar los controles. # +hudScreen.daysPlayed=Días jugados: %s # +hudScreen.daysPlayed.overflow=¡Demasiados como para contarlos! # playscreen.fileSize.MB=MB # playscreen.fileSize.GB=GB # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=Poción de salpicadura de curación # potion.heal.linger.name=Poción persistente de curación # potion.healthBoost=Recuperación # potion.hunger=Hambre # +potion.infested.linger.name=Poción persistente de infestación # +potion.infested.name=Poción de infestación # +potion.infested.splash.name=Poción de salpicadura de infestación # +potion.infested=Infestado # potion.invisibility=Invisibilidad # potion.invisibility.name=Poción de invisibilidad # potion.invisibility.splash.name=Poción de salpicadura de invisibilidad # @@ -7067,6 +7172,10 @@ potion.nightVision=Visión nocturna # potion.nightVision.name=Poción de visión nocturna # potion.nightVision.splash.name=Poción de salpicadura de visión nocturna # potion.nightVision.linger.name=Poción persistente de visión nocturna # +potion.oozing.linger.name=Poción persistente de exudación # +potion.oozing.name=Poción de exudación # +potion.oozing.splash.name=Poción de salpicadura de exudación # +potion.oozing=Exudación # potion.poison=Veneno # potion.poison.name=Poción de veneno # potion.poison.splash.name=Poción de salpicadura de veneno # @@ -7108,6 +7217,14 @@ potion.weakness=Debilidad # potion.weakness.name=Poción de debilidad # potion.weakness.splash.name=Poción de salpicadura de debilidad # potion.weakness.linger.name=Poción persistente de debilidad # +potion.weaving.linger.name=Poción persistente de tejido # +potion.weaving.name=Poción de tejido # +potion.weaving.splash.name=Poción de salpicadura de tejido # +potion.weaving=Tejer # +potion.windCharged.linger.name=Poción persistente de carga ventosa # +potion.windCharged.name=Poción de carga ventosa # +potion.windCharged.splash.name=Poción de salpicadura de carga ventosa # +potion.windCharged=Con carga de viento # potion.wither=Wither # potion.wither.name=Poción de deterioro # potion.wither.splash.name=Poción de salpicadura de deterioro # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=No se puede abrir este mundo debido a progressScreen.message.forbiddenContent=No posees uno o más de los packs aplicados. # progressScreen.message.loadingSplitScreenAppearances=Cargando aspectos de pantalla dividida... # progressScreen.message.finishedLoadingSplitScreenAppearances=Se cargaron los aspectos de pantalla dividida. # -progressScreen.message.modifiedWorldWarning=Puede que este mundo no se vea o se comporte de la misma manera que los mundos no modificados y no puedas conseguir logros. # +progressScreen.message.modifiedWorldWarning.1=¡Estás jugando en un mundo con complementos! Esto le añadirá nuevas características a tu mundo de Minecraft. # +progressScreen.message.modifiedWorldWarning.2=¡No te limites a tener solo uno! Puedes cargar varios complementos a la vez en un único mundo. # +progressScreen.message.modifiedWorldWarning.3=Consejo avanzado: un pack de recursos puede cambiar las texturas de diferentes bloques y entidades. # +progressScreen.message.modifiedWorldWarning.4=Consejo avanzado: un pack de comportamiento puede cambiar la forma en que funcionan varios objetos, entidades o bloques diferentes. # +progressScreen.message.modifiedWorldWarning.5=Consejo avanzado: un complemento incluye tanto un pack de comportamiento como un pack de recursos. ¡Asegúrate de que ambos estén activados para que el complemento funcione! # +progressScreen.message.modifiedWorldWarning.6=Los complementos agregan nuevos bloques, objetos o criaturas a tus mundos. # +progressScreen.message.modifiedWorldWarning.7=¡Los mundos y los complementos son complejos! Aunque algunos combinan muy bien, podrías conseguir resultados graciosos con algunas combinaciones. # +progressScreen.message.modifiedWorldWarning.8=Cuantos más complementos, más diversión, pero puede que el juego tarde más en cargar. # progressScreen.dialog.title.resourcePack=¿Descargar packs de recursos? # progressScreen.dialog.title.behaviorAndResourcePack=¿Descargar packs de recursos y comportamientos del mundo? # progressScreen.dialog.title.onlyBehavior=¿Descargar packs de comportamiento del mundo? # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=¿Actualizar el mundo? # resourcePack.warning.add.body=Puede que este mundo tenga un aspecto o un comportamiento diferente a los mundos no modificados. Guarda una copia de tu mundo antes de continuar. # resourcePack.warning.add.button.cancel=No agregar pack # resourcePack.warning.add.button.ok=Añadir el pack igualmente # +resourcePack.warnings.contentKeyErrorBody=Hubo un problema al cargar el pack %s. # +resourcePack.warnings.contentKeyErrorBodyMultiple=Hubo un problema al cargar los packs %s. # +resourcePack.warnings.contentKeyErrorTitle=¡Error! # resourcePack.warning.remove.title=¡Peligro, peligro! # resourcePack.warning.remove.body=Añadir o eliminar packs de un mundo después de haber jugado en él podría causar errores y hacer que pierdas todo lo que has creado. # resourcePack.warning.remove.button.cancel=Conservar el pack # @@ -7557,7 +7684,9 @@ item.crimson_hanging_sign.name=Letrero colgante carmesí # item.danger_pottery_sherd.name=Fragmento de cerámica con peligro # item.dark_oak_hanging_sign.name=Letrero colgante de roble oscuro # item.explorer_pottery_sherd.name=Fragmento de cerámica con explorador # +item.flow_pottery_sherd.name=Fragmento de cerámica con flujo # item.friend_pottery_sherd.name=Fragmento de cerámica con amigo # +item.guster_pottery_sherd.name=Fragmento de cerámica con Guster # item.heart_pottery_sherd.name=Fragmento de cerámica con corazón # item.heartbreak_pottery_sherd.name=Fragmento de cerámica con corazón roto # item.howl_pottery_sherd.name=Fragmento de cerámica con aullido # @@ -7568,6 +7697,7 @@ item.mourner_pottery_sherd.name=Fragmento de cerámica con doliente # item.oak_hanging_sign.name=Letrero colgante de roble # item.plenty_pottery_sherd.name=Fragmento de cerámica con riquezas # item.prize_pottery_sherd.name=Fragmento de cerámica con tesoro # +item.scrape_pottery_sherd.name=Fragmento de cerámica con arañazos # item.sheaf_pottery_sherd.name=Fragmento de cerámica con gavilla # item.shelter_pottery_sherd.name=Fragmento de cerámica con refugio # item.skull_pottery_sherd.name=Fragmento de cerámica con calavera # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=Escaleras de cerezo # tile.cherry_trapdoor.name=Escotilla de cerezo # tile.cherry_wood.name=Madera de cerezo # tile.chiseled_bookshelf.name=Estantería cincelada # +tile.chiseled_tuff.name=Toba volcánica cincelada # +tile.chiseled_tuff_bricks.name=Ladrillos de toba volcánica cincelada # tile.decorated_pot.name=Maceta decorada # tile.pink_petals.name=Pétalos rosas # tile.stripped_bamboo_block.name=Bloque de bambú sin corteza # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=Acabado de armadura de vex # trim_pattern.ward.name=Acabado de armadura de guardia # trim_pattern.wayfinder.name=Acabado de armadura de buscador de caminos # trim_pattern.wild.name=Acabado de armadura salvaje # +trim_pattern.bolt.name=Acabado de armadura de rayo # +trim_pattern.flow.name=Acabado de armadura de flujo # upgrade.netherite_upgrade.name=Mejora de inframundita # storageManager.mainSizeLabel=%s - 1 objeto # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=¿Quieres eliminar la plantilla de mundo? # selectTemplate.delete=Eliminar # selectTemplate.myTemplates=Mis plantillas de mundo # selectTemplate.realmsPlus=Plantillas destacadas de Realms Plus # -selectTemplate.marketplacePass=Plantillas destacadas del Marketplace Pass #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=Contenido destacado del Marketplace Pass #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=Plantillas importadas # selectTemplate.download=Descargar # selectTemplate.noTemplates=No hay plantillas de mundos en este dispositivo. # -selectTemplate.suggestedContent.title=Plantillas destacadas del Mercado # +selectTemplate.suggestedContent.title=Contenido destacado del Mercado # selectTemplate.suggestedContent.button=Ver más plantillas # selectTemplate.createdBy=Creado por %s # selectTemplate.inventory=Mis packs del Mercado # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=Se produjo un problema al conectarse. Sal e inté store.loading.error.issues=Mmm, estamos teniendo algunos problemas con el Marketplace. Intenta conectarte más tarde. # store.loading.error.internetDown=No podemos encontrar ninguna conexión a internet. # store.loading.error.account=Hay un problema con tu cuenta. Vuelve a intentarlo más tarde y comunícate con el servicio de asistencia si no se soluciona. # +store.loading.error.account.banned=No puedes utilizar el Marketplace hasta que termine tu suspensión. # store.giftPromo.day=Día %s ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=Obtenido # @@ -8405,10 +8540,17 @@ store.mashup.count.skin=1 aspecto # store.mashup.count.skins=%s aspectos # store.mashup.count.texturePack=1 pack de textura # store.mashup.count.texturePacks=%s packs de textura #number of texture packs # -store.mashup.count.world=1 mundo # +store.mashup.count.world=1 mundo # store.mashup.count.worlds=%s mundos #number of worlds # store.mashup.count.addonPack=1 complemento # store.mashup.count.addonPacks=%s complementos #number of addons # +store.mashup.count.mashup=Popurrí # +store.mashup.hover.label.addonPack=Los complementos se pueden aplicar a cualquier mundo. # +store.mashup.hover.label.world=Un mapa de Minecraft hecho a mano. # +store.mashup.hover.label.skin=Dale un nuevo aspecto a tu personaje. # +store.mashup.hover.label.texturePack=Añádele nuevos gráficos a tu mundo o la interfaz del juego. # +store.mashup.hover.label.mashup.lineOne=Una combinación de diferentes tipos de contenido. # +store.mashup.hover.label.mashup.lineTwo=Este popurrí incluye: # store.addon.activateAddonPack=¡Activar complemento! # store.addon.newOrExistingTitle=¿Dónde se puede agregar? # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=Pizarrón # tile.chest.name=Cofre # tile.ender_chest.name=Cofre de Ender # tile.jigsaw.name=Bloque rompecabezas # +tile.heavy_core.name=Núcleo pesado # tile.honey_block.name=Bloque de miel # tile.honeycomb_block.name=Bloque de panal # tile.lodestone.name=Magnetita # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=Losa de piedra negra pulida # tile.polished_blackstone_pressure_plate.name=Placa de presión de piedra negra pulida # tile.polished_blackstone_button.name=Botón de piedra negra pulida # tile.polished_blackstone_wall.name=Pared de piedra negra pulida # +tile.polished_tuff.name=Toba volcánica pulida # +tile.polished_tuff_slab.name=Losa de toba volcánica pulida # +tile.polished_tuff_stairs.name=Escaleras de toba volcánica pulida # +tile.polished_tuff_wall.name=Pared de toba volcánica pulida # tile.soul_campfire.name=Fogata de alma # tile.chiseled_nether_bricks.name=Ladrillos del inframundo cincelados # tile.cracked_nether_bricks.name=Ladrillos del inframundo rotos # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=Terracota amarilla # tile.structure_block.name=Bloque de estructuras # structure_block.waterlog_block=Bloques de agua # tile.structure_void.name=Vacío de estructuras # +tile.trial_spawner.name=Generador de prueba # +tile.vault.name=Bóveda # tile.wool.black.name=Lana negra # tile.wool.blue.name=Lana azul # tile.wool.brown.name=Lana marrón # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=Helecho # tile.tallgrass.grass.name=Pasto # tile.tallgrass.name=Pasto # tile.tallgrass.shrub.name=Arbusto # +tile.tuff_brick_slab.name=Losa de ladrillos de toba volcánica # +tile.tuff_brick_stairs.name=Escaleras de ladrillos de toba volcánica # +tile.tuff_brick_wall.name=Pared de ladrillos de toba volcánica # +tile.tuff_bricks.name=Ladrillos de toba volcánica # +tile.tuff_slab.name=Losa de toba volcánica # +tile.tuff_stairs.name=Escaleras de toba volcánica # +tile.tuff_wall.name=Pared de toba volcánica # tile.seagrass.seagrass.name=Algas marinas # tile.sea_pickle.name=Pepinillo de mar # tile.turtle_egg.name=Huevo pequeño de tortuga marina # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=Alfombra roja # tile.carpet.silver.name=Alfombra gris claro # tile.carpet.white.name=Alfombra blanca # tile.carpet.yellow.name=Alfombra amarilla # +tile.crafter.name=Fabricante # tile.crafting_table.name=Mesa de trabajo # tile.glazedTerracotta.white.name=Terracota vidriada blanca # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=Losa de cobre cortado encerado # tile.waxed_exposed_cut_copper_slab.name=Losa de cobre cortado expuesto encerado # tile.waxed_weathered_cut_copper_slab.name=Losa de cobre cortado desgastado encerado # tile.waxed_oxidized_cut_copper_slab.name=Losa de cobre cortado oxidado encerado # + +tile.chiseled_copper.name=Cobre cincelado # +tile.exposed_chiseled_copper.name=Cobre cincelado expuesto # +tile.oxidized_chiseled_copper.name=Cobre cincelado oxidado # +tile.waxed_chiseled_copper.name=Cobre cincelado encerado # +tile.waxed_exposed_chiseled_copper.name=Cobre cincelado, expuesto y encerado # +tile.waxed_oxidized_chiseled_copper.name=Cobre cincelado, oxidado y encerado # +tile.waxed_weathered_chiseled_copper.name=Cobre cincelado, erosionado y encerado # +tile.weathered_chiseled_copper.name=Cobre cincelado desgastado # + +tile.copper_bulb.name=Lámpara de cobre # +tile.exposed_copper_bulb.name=Lámpara de cobre expuesto # +tile.oxidized_copper_bulb.name=Lámpara de cobre oxidado # +tile.waxed_copper_bulb.name=Lámpara de cobre encerado # +tile.waxed_exposed_copper_bulb.name=Lámpara de cobre expuesto encerado # +tile.waxed_oxidized_copper_bulb.name=Lámpara de cobre oxidado encerado # +tile.waxed_weathered_copper_bulb.name=Lámpara de cobre erosionado encerado # +tile.weathered_copper_bulb.name=Lámpara de cobre desgastado # + +tile.copper_door.name=Puerta de cobre # +tile.exposed_copper_door.name=Puerta de cobre expuesto # +tile.oxidized_copper_door.name=Puerta de cobre oxidado # +tile.waxed_copper_door.name=Puerta de cobre encerado # +tile.waxed_exposed_copper_door.name=Puerta de cobre expuesto encerado # +tile.waxed_oxidized_copper_door.name=Puerta de cobre oxidado encerado # +tile.waxed_weathered_copper_door.name=Puerta de cobre erosionado encerado # +tile.weathered_copper_door.name=Puerta de cobre desgastado # + +tile.copper_grate.name=Rejilla de cobre # +tile.exposed_copper_grate.name=Rejilla de cobre expuesto # +tile.oxidized_copper_grate.name=Rejilla de cobre oxidado # +tile.waxed_copper_grate.name=Rejilla de cobre encerado # +tile.waxed_exposed_copper_grate.name=Rejilla de cobre expuesto y encerado # +tile.waxed_oxidized_copper_grate.name=Rejilla de cobre oxidado y encerado # +tile.waxed_weathered_copper_grate.name=Rejilla de cobre desgastado y encerado # +tile.weathered_copper_grate.name=Rejilla de cobre desgastado # + +tile.copper_trapdoor.name=Escotilla de cobre # +tile.exposed_copper_trapdoor.name=Escotilla de cobre expuesto # +tile.oxidized_copper_trapdoor.name=Escotilla de cobre oxidado # +tile.waxed_copper_trapdoor.name=Escotilla de cobre encerado # +tile.waxed_exposed_copper_trapdoor.name=Escotilla de cobre expuesto y encerado # +tile.waxed_oxidized_copper_trapdoor.name=Escotilla de cobre oxidado y encerado # +tile.waxed_weathered_copper_trapdoor.name=Escotilla de cobre desgastado y encerado # +tile.weathered_copper_trapdoor.name=Escotilla de cobre desgastado # + tile.raw_copper_block.name=Bloque de cobre crudo # tile.raw_iron_block.name=Bloque de hierro crudo # tile.raw_gold_block.name=Bloque de oro crudo # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=Flecha de suerte # tipped_arrow.effect.wither=Flecha de deterioro # tipped_arrow.effect.turtleMaster=Flecha del maestro de tortugas # tipped_arrow.effect.slowFalling=Flecha de caída lenta # +tipped_arrow.effect.infested=Flecha de infestación # +tipped_arrow.effect.oozing=Flecha de exudación # +tipped_arrow.effect.weaving=Flecha de tejido # +tipped_arrow.effect.windCharged=Flecha de carga de viento # structure_block.title=Bloque de estructuras # structure_block.structure_name=Nombre de estructura # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=Algunos de tus cambios más recientes worldError.worldFailedRecovery=Error en la recuperación # worldError.worldFailedRecoveryText=Detectamos un mundo dañado y no pudimos recuperarlo. # +writeThrottling.osDialog.body=La operación solicitada tardará %d minutos aproximadamente en completarse. No apagues el dispositivo durante este tiempo. # +writeThrottling.osDialog.cancel=Cancelar operación # +writeThrottling.osDialog.confirm=Continuar # +writeThrottling.progressBar.title=Preparando datos # +writeThrottling.progressBar.body=Preparando tus archivos… # + userData.recovered.title=Guardar datos recuperados # userData.recovered.text=Los ajustes de usuario dañados se recuperaron correctamente. # userData.recovered.warning=Algunos de tus cambios más recientes se pueden haber perdido durante la recuperación. # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=Mensaje de chat # xbox.report.area.skin=Aspecto de un jugador # xbox.report.area.gameplay=Juego # xbox.report.area.ingame=Creaciones en el juego # -xbox.report.area.other=Otro # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=Abuso cibernético # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=No pudimos establecer una conexión. Vuelv gathering.connect.title=Conectando... # gathering.info.qr.title.onlineService=Aprender más # gathering.info.qr.body.onlineService.nso=Necesitas una suscripción a Nintendo Switch Online para unirte a un evento en Minecraft. # -gathering.info.qr.body.onlineService.psn=Tienes que haber iniciado sesión en \"PlayStation Plus\" para unirte a un evento en Minecraft. # +gathering.info.qr.body.onlineService.psn=Tienes que haber iniciado sesión en PlayStation®Plus para unirte a un evento en Minecraft. #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=Debes haber iniciado sesión para unirte a un evento en Minecraft. # gathering.info.qr.title.childAccount=Juego en línea no permitido # gathering.info.qr.body.childAccount=Tu control parental actual no te permite jugar en línea. # diff --git a/resource_pack/texts/fi_FI.lang b/resource_pack/texts/fi_FI.lang index 8272a7f33..f8ae810fd 100644 --- a/resource_pack/texts/fi_FI.lang +++ b/resource_pack/texts/fi_FI.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=Valitse siemen # accessibility.start.feedback=Lisää palautelinkki verkkosivustolle # accessibility.start.new=Uusi # -accessibility.start.profile=Valitse profiili # accessibility.start.skinPicker=Valitse olemus # accessibility.store.tag=Tunniste # @@ -1094,10 +1093,6 @@ commands.me.description=Näyttää viestin sinusta. # commands.message.display.incoming=%1$s kuiskaa sinulle: %2$s # commands.message.display.outgoing=Kuiskaat pelaajalle %1$s: %2$s # commands.message.sameTarget=Et voi lähettää yksityisviestiä itsellesi! # -commands.message.warn=§4Sinulle on lähetetty varoitus. Käytöksesi voi olla loukkaavaa toisia pelaajia kohtaan. Ota muut pelaajat huomioon pelatessanne yhdessä. # -commands.message.toastWarn=Minecraft on kaikkia varten! Muista käyttäytyä yhteisösääntöjen mukaisesti. # -commands.warn.invalidWarningLevel=Virheellinen varoitustaso. # -commands.warn.playerDoesNotExist=Pelaajaa ei löytynyt. Valitse toinen pelaaja. # commands.mobevent.description=Valitsee, mitä hirviötapahtumia voidaan käyttää. # commands.mobevent.eventsEnabledSetToTrue=Hirviötapahtumat ovat nyt käytössä. Yksittäisiä tapahtumia, joille on valittu epätosi-arvo, ei suoriteta. # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=- %s: %s alkaen %d %d %d ja päättyen commands.volumearea.entry.withoutIdentifier=- %s: alkaen %d %d %d ja päättyen %d %d %d # commands.volumearea.noneExist.currentDimension=Nykyisessä ulottuvuudessa ei ole osia. # commands.volumearea.inUse=%1$d/%2$d osaa käytössä. # -commands.warn.description=Lähettää varoitusviestin pelaajalle. # commands.weather.clear=Vaihto selkeään säähän # commands.weather.description=Asettaa sään. # commands.weather.disabled=Sääsykli ei ole käytössä tässä maailmassa. # @@ -1572,6 +1566,7 @@ container.beacon=Lyhtykuutio # container.brewing=Haudutin # container.chest=Arkku # container.chestDouble=Iso arkku # +container.crafter=Nikkaroija # container.crafting=Nikkarointi # container.creative=Esineen valinta # container.dispenser=Automaatti # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=Luolat ja kalliot # createWorldScreen.cavesandcliffsDescription=Tutustu uuteen monipuoliseen luolien luontiin # createWorldScreen.spectatorMode=Katselijatila # createWorldScreen.spectatorModeDescription=Kokeile katselijatilan varhaisia versioita # -createWorldScreen.experimentalCameras=Kokeelliset kamerat # -createWorldScreen.experimentalCamerasDescription=Sisältää esimerkkejä kameran esiasetuksista (kamerakomento ei ole enää kokeellinen) # createWorldScreen.recipeUnlocking=Reseptien avaaminen # createWorldScreen.recipeUnlockingDescription=Ota reseptien avaaminen käyttöön # createWorldScreen.experimentalholiday=Lomanluojan ominaisuudet # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=Luodaan uutta maailmaa... # createWorldScreen.progress.realms=Alustetaan Realmia... # createWorldScreen.seed.desc=Luo sama maasto uudelleen antamalla siemen. Jätä tyhjäksi satunnaista luontia varten. # createWorldScreen.showCoordinates=Näytä koordinaatit # +createWorldScreen.showDaysPlayed=Näytä pelattujen päivien määrä # createWorldScreen.worldType=Maailman tyyppi # createWorldScreen.randomtickspeed=Satunnainen tikitysnopeus # createWorldScreen.randomtickspeed.reset=Palauta satunnainen tikitysnopeus # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=Poista projekti # createWorldScreen.editor.projectOptionsLabel=Projektin asetukset # createWorldScreen.editor.delete.confirm=Poista projekti pysyvästi? # createWorldScreen.editor.deleteWarningFormat=Haluatko varmasti poistaa kohteen "%s"? Se katoaa ikuisiksi ajoiksi! # +createWorldScreen.eduCloud.about.body=Tiedostonimi: '%1$s'%2$sPäivitetty viimeksi: %3$s%4$sLataa napsauttamalla OK ja sitten Lataa.%5$s # +createWorldScreen.eduCloud.about.title=Tietoja pilvimaailmatiedostosta # createWorldScreen.eduCloud.delete.confirm=Poistetaanko paikallinen maailma? # createWorldScreen.eduCloud.deleteWarningFormat=Haluatko varmasti poistaa kohteen ”%1$s” tältä laitteelta?%2$sTämä ei vaikuta pilviversioon ”%3$s” ja se voidaan synkronoida myöhemmin uudelleen. # createWorldScreen.experimentalDeferredTechnicalPreview=Render Dragon -ominaisuudet sisällöntuottajille # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Windows-kauppa # realmsSettingsScreen.xboxOneStoreDisplayName=Xbox-kauppa # realmsSettingsScreen.amazonStoreDisplayName=Amazon Appstore # realmsSettingsScreen.oculusStoreDisplayName=Oculus Store # -realmsSettingsScreen.berwickStoreDisplayName="PlayStation Store" # -realmsSettingsScreen.SonyStoreDisplayName="PlayStation Store" #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=tuntematon kauppa # realmsSettingsScreen.extendingRealm=Laajennetaan Realmia... # realmsSettingsScreen.offerError.title=Ostos odottaa # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=Muualta kuin Minecraft-kaupasta xbl.syncIAP.confirmSync.prompt.yes=Kyllä, synkronoi ostokseni # xbl.marketplace.account.error.body.nobutton=Tililläsi on virhe. Et voi käyttää kauppaa, kunnes olemme ratkaisseet ongelman. Jos se jatkuu useita päiviä, ota yhteyttä tukeen. # -xbl.marketplace.account.banned.body.nobutton=Et voi käyttää kauppaa, kunnes peliestosi vanhenee. # playfab.account.banned.temporary=hyllytetty # playfab.account.banned.permanent=estetty # @@ -2487,6 +2482,14 @@ date.daysAbbreviated1Char=%sp ### It needs to be abbreviated with no more than date.hoursAbbreviated1Char=%s t ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%s m ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%s s ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s päivää # +date.hoursPlural=%s tuntia # +date.minutesPlural=%s minuuttia # +date.secondsPlural=%s sekuntia # +date.daySingular=%s päivä # +date.hourSingular=%s tunti # +date.minuteSingular=%s minuutti # +date.secondSingular=%s sekunti # date.timeLeft=%s jäljellä # dayOneExperience.carousel.title=Tervetuloa uuteen Minecraftiin! # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=ISÄNNÖI # edu.worlds_screen.settings=ASETUKSET # edu.worlds_screen.download=LATAA ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=HALLITSE # +edu.worlds_screen.about=TIETOJA # edu.worlds_screen.back=TAKAISIN # edu.worlds_screen.copy=KOPIOI # edu.worlds_screen.export=VIE # @@ -2791,7 +2795,13 @@ edu.templates.empty_banner=Saat maailmamalleja Minecraft Education -kirjastosta, edu.pause.multiplayer.disabled=Moninpeli ei ole käytettävissä tässä luennossa. # effect.badOmen=Huono enne # +effect.infested=Saastunut # +effect.oozing=Valuminen # +effect.raid_omen=Rynnäkköenne # +effect.trial_omen=Haaste-enne # effect.villageHero=Kylän sankari # +effect.weaving=Punominen # +effect.wind_charged=Tuulipanostettu # enchantment.arrowDamage=Voimistus # enchantment.arrowFire=Liekitin # @@ -2810,6 +2820,9 @@ enchantment.durability=Lujitin # enchantment.fire=Tulistin # enchantment.fishingSpeed=Viehe # enchantment.frostwalker=Kuurankulkija # +enchantment.heavy_weapon.breach=Tunkeutuminen # +enchantment.heavy_weapon.density=Tiheys # +enchantment.heavy_weapon.windburst=Tuulipurske # enchantment.knockback=Horjutin # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=Lepakko # entity.bee.name=Mehiläinen # entity.blaze.name=Lieska # entity.boat.name=Vene # +entity.bogged.name=Juuttunut # +entity.breeze.name=Tuulahdus # +entity.breeze_wind_charge_projectile.name=Tuulipanos # entity.cat.name=Kissa # entity.cave_spider.name=Luolahämähäkki # entity.chicken.name=Kana # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=Taitamaton kyläläinen # entity.villager_v2.name=Kyläläinen # entity.vindicator.name=Puhdistaja # entity.wandering_trader.name=Kuljeskeleva kauppias # +entity.wind_charge_projectile.name=Tuulipanos # entity.witch.name=Noita # entity.wither.name=Näivettäjä # entity.wither_skeleton.name=Hornaluuranko # @@ -3009,6 +3026,7 @@ feature.ruins=Meriraunio # feature.pillager_outpost=Ryöstelijätukikohta # feature.bastion_remnant=Bastionin jäännös # feature.ruined_portal=Raunioportaali # +feature.trial_chambers=Haastekammiot # feed.like=Tykkää # feed.manage_feed=Hallitse syötettä # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=Siirrä :tip_left_stick: liikkuaksesi # gameTip.flying.mouse=Kaksoisnapauta :_input_key.jump: lentääksesi # gameTip.flying.touch=Kaksoisnapauta hyppyä lentääksesi # +gameTip.flyDown.mouse=Paina :_input_key.sneak: lentääksesi alas # +gameTip.flyUp.mouse=Lennä ylös painamalla :_input_key.jump: # + +gameTip.stopFlying.mouse=Lopeta lentäminen kaksoisnapauttamalla :_input_key.jump: # +gameTip.stopFlying.touch=Lopeta lentäminen kaksoisnapauttamalla lennä alas -näppäintä # + gameTip.jump.mouse=Hyppää: :_input_key.jump: # +gameTip.swim.mouse=Ui ylös pitämällä :_input_key.jump: painettuna # -gameTip.hotbar.mouse=Vieritä hiiren rullaa ja valitse pikapalkista # pitääksesi sitä # -gameTip.hotbar.touch=Napauta pikapalkista # pitääksesi sitä # -gameTip.hotbar.controller=Napauta pikapalkista # pitääksesi sitä # +gameTip.hotbar.selection.mouse=Pitele esinettä vierittämällä tai painamalla %s ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=Pitele pikapalkin esinettä napauttamalla sitä # gameTip.breakBlock.mouse=Riko kuutioita pitämällä hiiren vasenta painiketta painettuna # gameTip.breakBlock.touch=Riko kuutioita napauttamalla ja pitämällä painettuna # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=Sinä hiippailet! Et voi nyt pudota reunoilta # gameTip.sneak.touch=Sinä hiippailet, joten et voi pudota reunoilta # gameTip.sneak.controller=Sinä hiippailet, joten et voi pudota reunoilta # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=Aseta nikkarointipöytäsi. Pitele sitä ja aseta se napsauttamalla # gameTip.placeCraftingTable.touch=Aseta nikkarointipöytä napauttamalla maaperää # gameTip.placeCraftingTable.controller=Aseta nikkarointipöytä pitämällä sitä ja napauta sitten maaperää # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=Kiitos, että jaoit arvostelusi! # gui.submitFeedback.failure.status.unprocessableEntity=Et omista kohdetta, josta yrität antaa palautetta. (Virhekoodi: %d) # gui.submitFeedback.failure.status.tooManyRequests=Voi ei! Olet lähettänyt liian monta arvostelua. Yritä myöhemmin uudelleen. (Virhekoodi: %d) # gui.submitFeedback.failure.status.other=Emme voi lähettää arvosteluasi juuri nyt. Yritä myöhemmin uudelleen. (Virhekoodi: %d) # +gui.togglable_slot=Poista paikka käytöstä painamalla # gui.playOffline=Pelaa offline-tilassa # gui.signIn=Kirjaudu sisään # gui.genericNetworkError=Hups! Jokin meni pieleen. Tarkista internet-yhteytesi. # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=Tutki mahdollisuuksien maailmaa minecoineilla, Minecr howtoplay.minecoins.text.2=Kun minecoinisi on lunastettu, ne linkitetään Microsoft-tiliisi, joten voit käyttää kolikoitasi ja ostoksiasi myös muilla tuetuilla laitteilla! # howtoplay.minecoins.button.text.1=Hanki minecoineja # howtoplay.minecoins.header.1=HUOM # -howtoplay.minecoins.text.3=*Minecoinit edellyttävät Minecraft: Bedrock Edition -versiota, jossa on Minecraft-kauppa. Minecoinit eivät ole yhteensopivia Sony PlayStationin kanssa. Lisätietoja yhteensopivuudesta löydät osoitteesta minecraft.net/minecoins  # +howtoplay.minecoins.text.3=*Minecoinit edellyttävät Minecraft: Bedrock Edition -versiota, jossa on Minecraft-kauppa. Minecoinit eivät ole yhteensopivia Sony PlayStation®in kanssa. Lisätietoja yhteensopivuudesta löydät osoitteesta minecraft.net/minecoins  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=Kaivostoiminta # @@ -4145,7 +4170,7 @@ level.editor.export.failed=Projektin vienti epäonnistui # level.editor.import.failed=Projektin tuonti epäonnistui # level.editor.import.failed.incompatibleEdition=Projektin tuonti epäonnistui: tiedostomuotoa ei tueta # -inbox.invite.title=Realms-kutsu # +inbox.invite.title=Realm-kutsun saaja: # invite.clear=Tyhjennä valinnat # invite.send=Lähetä %d kutsua # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=Punainen oikea alapuoli # item.banner.diagonal_up_right.silver=Vaaleanharmaa oikea alapuoli # item.banner.diagonal_up_right.white=Valkoinen oikea alapuoli # item.banner.diagonal_up_right.yellow=Keltainen oikea alapuoli # +item.banner.flow.black=Musta virtaus # +item.banner.flow.blue=Sininen virtaus # +item.banner.flow.brown=Ruskea virtaus # +item.banner.flow.cyan=Syaani virtaus # +item.banner.flow.gray=Harmaa virtaus # +item.banner.flow.green=Vihreä virtaus # +item.banner.flow.lightBlue=Vaaleansininen virtaus # +item.banner.flow.lime=Limetinvihreä virtaus # +item.banner.flow.magenta=Aniliininpunainen virtaus # +item.banner.flow.orange=Oranssi virtaus # +item.banner.flow.pink=Vaaleanpunainen virtaus # +item.banner.flow.purple=Violetti virtaus # +item.banner.flow.red=Punainen virtaus # +item.banner.flow.silver=Vaaleanharmaa virtaus # +item.banner.flow.white=Valkoinen virtaus # +item.banner.flow.yellow=Keltainen virtaus # item.banner.flower.black=Musta kukka # item.banner.flower.blue=Sininen kukka # item.banner.flower.brown=Ruskea kukka # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=Valkoinen häivytys ylös # item.banner.gradient_up.yellow=Keltainen häivytys ylös # item.banner.gray.name=Harmaa lippu # item.banner.green.name=Vihreä lippu # +item.banner.guster.black=Musta puhuri # +item.banner.guster.blue=Sininen puhuri # +item.banner.guster.brown=Ruskea puhuri # +item.banner.guster.cyan=Syaani puhuri # +item.banner.guster.gray=Harmaa puhuri # +item.banner.guster.green=Vihreä puhuri # +item.banner.guster.lightBlue=Vaaleansininen puhuri # +item.banner.guster.lime=Limetinvihreä puhuri # +item.banner.guster.magenta=Aniliininpunainen puhuri # +item.banner.guster.orange=Oranssi puhuri # +item.banner.guster.pink=Vaaleanpunainen puhuri # +item.banner.guster.purple=Violetti puhuri # +item.banner.guster.red=Punainen puhuri # +item.banner.guster.silver=Vaaleanharmaa puhuri # +item.banner.guster.white=Valkoinen puhuri # +item.banner.guster.yellow=Keltainen puhuri # item.banner.half_horizontal.black=Musta yläpuoli # item.banner.half_horizontal.blue=Sininen yläpuoli # item.banner.half_horizontal.brown=Ruskea yläpuoli # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=Akasiavene # item.boat.big_oak.name=Tumma tammivene # item.bone.name=Luu # item.book.name=Kirja # +item.breeze_rod.name=Liihottajasauva # item.chainmail_boots.name=Silmukkasaappaat # item.leather_boots.name=Nahkasaappaat # item.diamond_boots.name=Timanttisaappaat # @@ -4991,6 +5049,7 @@ item.comparator.name=Punakivivertailija # item.compass.name=Kompassi # item.lodestonecompass.name=Magnetiittikompassi # item.cookie.name=Keksi # +item.copper_door.name=Kupariovi # item.crossbow.name=Varsijousi # item.diamond.name=Timantti # item.repeater.name=Punakivitoistin # @@ -5038,6 +5097,7 @@ tile.end_rod.name=Ääritanko # item.ender_eye.name=Äären silmä # item.ender_pearl.name=Äärenhelmi # item.experience_bottle.name=Lumouspullo # +item.exposed_copper_door.name=Paljas kupariovi # item.feather.name=Höyhen # item.fermented_spider_eye.name=Hapatettu lukinsilmä # item.fireball.name=Tulipanos # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=Kultahousut # item.iron_leggings.name=Rautahousut # item.nautilus_shell.name=Helmiveneen kuori # item.heart_of_the_sea.name=Merensydän # +item.mace.name=Nuija # item.magma_cream.name=Magmarasvaa # item.map.name=Kartta # item.map.exploration.mansion.name=Metsämaan tutkijan kartta # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=Savannikyläkartta # item.map.exploration.village_desert.name=Aavikkokyläkartta # item.map.exploration.jungle_temple.name=Viidakkotutkijakartta # item.map.exploration.swamp_hut.name=Suotutkijakartta # +item.map.exploration.trial_chambers.name=Löytöretkeilijän kokeilukartta # item.melon.name=Meloni # item.milk.name=Maito # item.minecart.name=Kaivosvaunu # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=Arkkuvaunu # item.command_block_minecart.name=Komentokuutiovaunu # item.minecartFurnace.name=Masuunivaunu # item.hopper_minecart.name=Suppilovaunu # +item.ominous_bottle.name=Pahaenteinen pullo # +item.ominous_trial_key.name=Pahaenteinen haasteavain # +item.oxidized_copper_door.name=Hapettunut kupariovi # item.tnt_minecart.name=TNT-vaunu # item.pitcher_pod.name=Kannupalko # item.torchflower_seeds.name=Soihtuinkivääriön siemenet # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=Agentin luontimuna # item.spawn_egg.entity.armadillo.name=Vyötiäisen luontimuna # item.spawn_egg.entity.axolotl.name=Aksolotlin luontimuna # item.spawn_egg.entity.bee.name=Mehiläisen luontimuna # +item.spawn_egg.entity.bogged.name=Juuttuneen luontimuna # +item.spawn_egg.entity.breeze.name=Tuulahduksen luontimuna # item.spawn_egg.entity.hoglin.name=Hoglinin luontimuna # item.spawn_egg.entity.cat.name=Kissan luontimuna # item.spawn_egg.entity.chicken.name=Kanan luontimuna # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 - suoja # item.record_pigstep.desc=Lena Raine – Pigstep # item.record_otherside.desc=Lena Raine – otherside # item.record_relic.desc=Aaron Cherof - Reliikki # +item.record_creator.desc=Lena Raine – tekijä # +item.record_creator_music_box.desc=Lena Raine – tekijä (Music Box) # +item.record_precipice.desc=Aaron Cherof – Precipice # item.redstone.name=Punakivitomu # item.reeds.name=Sokeriruokoja # item.kelp.name=Merilevä # @@ -5324,6 +5394,12 @@ item.iron_sword.name=Rautamiekka # item.stone_sword.name=Kivimiekka # item.wooden_sword.name=Puumiekka # item.unbreakable=Hajoamaton # +item.waxed_copper_door.name=Kiillotettu kupariovi # +item.waxed_exposed_copper_door.name=Kiillotettu paljas kupariovi # +item.waxed_oxidized_copper_door.name=Kiillotettu hapettunut kupariovi # +item.waxed_weathered_copper_door.name=Kiillotettu kulunut kupariovi # +item.weathered_copper_door.name=Kulunut kupariovi # +item.wind_charge.name=Tuulipanos # item.wheat.name=Vehnää # item.wolf_armor.name=Susihaarniska # item.writable_book.name=Kirja ja Sulka # @@ -5331,6 +5407,7 @@ item.written_book.name=Kirjoitettu kirja # item.glowstone_dust.name=Loistekivitomua # item.shulker_shell.name=Kuoripiilijän kuori # item.totem.name=Epäkuoleman toteemi # +item.trial_key.name=Haasteavain # item.turtle_helmet.name=Kilpikonnan kilpi # item.turtle_shell_piece.name=Kilpikonnan kilvenpala # item.phantom_membrane.name=Aavekalvo # @@ -5338,8 +5415,10 @@ item.sweet_berries.name=Makeamarjoja # item.suspicious_stew.name=Epäilyttävä muhennos # item.banner_pattern.bricks=Tiilikuvio # item.banner_pattern.creeper=Creeper # +item.banner_pattern.flow=Virtaus # item.banner_pattern.flower=Kukka # item.banner_pattern.globe=Karttakuutio # +item.banner_pattern.guster=Puhuri # item.banner_pattern.name=Lippukuvio # item.banner_pattern.piglin=Kuono # item.banner_pattern.skull=Kallo # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=Lippukuviot # itemGroup.name.netherWartBlock=Hornapahkoja # itemGroup.name.candles=Kynttilät # itemGroup.name.goatHorn=Vuohen sarvet # +itemGroup.name.compounds=Yhdisteet # +itemGroup.name.products=Tuotteet # jigsaw.title.target_pool=Kohdejoukko: # jigsaw.title.name=Nimi: # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=LUOKKAHUONEASETUKSET # menu.serverStore=%s kauppa # menu.serverGenericName=Palvelin # menu.play=Pelaa # +menu.profile=Profiili # menu.playdemo=Pelaa demomaailmaa # menu.playOnRealms=Pelaa Realmissa # menu.quickplay=Pikapeli # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=Valitse aloitushahmosi # menu.character_cast.preview_title=Tapaa hahmot! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Realms-palvelin ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=Palvelimet # merchant.deprecated=Avaa vaihtamalla jotakin muuta! # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=Täydellä näppäimistöllä pelaaminen # options.fullKeyboardLayout=Täysi näppäimistöasettelu # options.improvedInputResponsePlaceholder=Nopeampi syötereaktio # options.improvedInputResponsePlaceholder.tooltip=Vähentää viivettä syötteen ja ruutunäkymän välillä. Tämä asetus voi käyttää enemmän akkuvirtaa. # +options.dynamicTexturesToggle=Poista tekstuuriraja # +options.dynamicTexturesToggle.tooltip=Tämän kytkeminen päälle tai pois päältä vaatii pelin uudelleenkäynnistyksen. Se voi aiheuttaa epävakautta, kun käytetään useita lisäosia tai resurssipaketteja, jotka sisältävät useita tekstuureja. # +options.dynamicTextures.popUp=Jos otat tekstuurirajan käyttöön, sinun on käynnistettävä peli uudelleen, jotta voit poistaa sen käytöstä. # +options.dynamicTextures.popUp.title=Oletko varma? # options.fullscreen=Koko näyttö # options.gamepadcursorsensitivity=Ohjaimen osoittimen tarkkuus # options.gamertag=Pelaajatunnus: # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=Yhdistä # options.creator.debuggerListen=Kuuntele # options.creator.debuggerHost=Isäntä # options.creator.debuggerPort=Portti # +options.creator.watchdogHeading=Komentosarjan vahtiasetukset # +options.creator.watchdogSlowWarning=Komentosarjan hitausvaroitukset # +options.creator.watchdogSlowThreshold=Keskiarvo ylittää # +options.creator.watchdogSlowFormat=%s millisekuntia # +options.creator.watchdogSlowFormatDefault=%s millisekuntia (oletus) # +options.creator.watchdogSpikeWarning=Komentosarjan piikkivaroitukset # +options.creator.watchdogSpikeThreshold=Piikki ylittää # +options.creator.watchdogSpikeFormat=%s millisekuntia # +options.creator.watchdogSpikeFormatDefault=%s millisekuntia (oletus) # +options.creator.watchdogHangThreshold=Keskeytä kun on kulunut # +options.creator.watchdogHangFormat=%s sekuntia # +options.creator.watchdogHangFormatDefault=%s sekuntia (oletus) # options.vr_classic_box_selection=Ääriviivan valinta # options.hidegamepadcursor=Piilota ohjaimen osoitin # options.hidegui=Piilota graafinen käyttöliittymä # @@ -6662,7 +6761,7 @@ options.makeBackup=Luo varmuuskopio maailmastani # options.managePrivacy=Hallitse tietosuoja-asetuksia osoitteessa https://account.xbox.com/Settings. ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Peru Microsoft-tilin linkitys # options.unlink_msa.confirm.title=Perutaanko Microsoft-tilin linkitys? # -options.unlink_msa.confirm.warning=VAROITUS: Et voi enää tallentaa edistymistä tai ostoksia, jotka on tehty "PlayStation 4" -järjestelmälläsi ja tililläsi %s linkityksen perumisen jälkeen. # +options.unlink_msa.confirm.warning=VAROITUS: Et voi enää tallentaa edistymistä tai ostoksia, jotka on tehty PlayStation®4-järjestelmälläsi ja tililläsi %s linkityksen perumisen jälkeen. #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=Microsoft-tilisi linkityksen poistaminen tämän pelin sisältä vaikuttaa kaikkiin tämän alustan Minecraft-peleihin, joissa on käytetty tätä Microsoft-tiliä. # options.unlink_msa.confirm.checkbox1=Et voi enää käyttää pelin sisäisen kaupan sisältöä, kun pelaat muilla alustoilla. # options.unlink_msa.confirm.checkbox2=En voi enää pelata alustojen välisiä pelejä muita alustoja käyttävien ystävieni kanssa. # @@ -6688,7 +6787,7 @@ options.editor.modeDescription.messageWithMouse=Editoritila lisää tehokkaita t options.editor.modeActive=Minecraft on tällä hetkellä editoritilassa. # options.editor.modeNotActive=Minecraft ei ole tällä hetkellä editoritilassa. # options.editor.achievementsDisabled=Tässä projektissa ei voi ansaita saavutuksia. # -options.newUiPlayScreen.initiate=Vaihda uuteen käyttöliittymään # +options.newUiPlayScreen.initiate=Valitse uusi UI # options.openPage.continue=Lisätietoja # options.graphicsMode=Grafiikkatila # options.graphicsMode.simple=Yksinkertainen # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=Lataa maailma mukauttaaksesi ohjausta # hudScreen.controlCustomization.tooltip.notouch=Mukauta ohjausta kosketuslaitteella # hudScreen.controlCustomization.tooltip.alreadycustomizing=Kosketusohjauksen mukautusnäyttö on jo auki # hudScreen.controlCustomization.tooltip.alive=Pelaajan on oltava elossa muokatakseen ohjauskomentoja. # +hudScreen.daysPlayed=Pelatut päivät: %s # +hudScreen.daysPlayed.overflow=Liian monta laskettavaksi! # playscreen.fileSize.MB=Mt # playscreen.fileSize.GB=Gt # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=Parantumisen roisketaikajuoma # potion.heal.linger.name=Parantumisen viipyilevä taikajuoma # potion.healthBoost=Kuntotehoste # potion.hunger=Nälkä # +potion.infested.linger.name=Saastumisen viipyilevä taikajuoma # +potion.infested.name=Saastumisen taikajuoma # +potion.infested.splash.name=Saastumisen roisketaikajuoma # +potion.infested=Saastunut # potion.invisibility=Näkymättömyys # potion.invisibility.name=Näkymättömyyden taikajuoma # potion.invisibility.splash.name=Näkymättömyyden roisketaikajuoma # @@ -7067,6 +7172,10 @@ potion.nightVision=Pimeänäkö # potion.nightVision.name=Pimeänäön taikajuoma # potion.nightVision.splash.name=Pimeänäön roisketaikajuoma # potion.nightVision.linger.name=Pimeänäön viipyilevä taikajuoma # +potion.oozing.linger.name=Valumisen viipyilevä taikajuoma # +potion.oozing.name=Valumisen taikajuoma # +potion.oozing.splash.name=Valumisen roisketaikajuoma # +potion.oozing=Valuminen # potion.poison=Myrkky # potion.poison.name=Myrkyttämisen taikajuoma # potion.poison.splash.name=Myrkyttämisen roisketaikajuoma # @@ -7108,6 +7217,14 @@ potion.weakness=Heiveröitys # potion.weakness.name=Heiveröityksen taikajuoma # potion.weakness.splash.name=Heiveröityksen roisketaikajuoma # potion.weakness.linger.name=Heiveröityksen viipyilevä taikajuoma # +potion.weaving.linger.name=Punomisen viipyilevä taikajuoma # +potion.weaving.name=Punomisen taikajuoma # +potion.weaving.splash.name=Punomisen roisketaikajuoma # +potion.weaving=Punominen # +potion.windCharged.linger.name=Tuulipanostuksen viipyilevä taikajuoma # +potion.windCharged.name=Tuulipanostuksen taikajuoma # +potion.windCharged.splash.name=Tuulipanostuksen roisketaikajuoma # +potion.windCharged=Tuulipanostettu # potion.wither=Näivetys # potion.wither.name=Näivettymisen taikajuoma # potion.wither.splash.name=Näivettymisen roisketaikajuoma # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=Tätä maailmaa ei voi avata paketin progressScreen.message.forbiddenContent=Et omista vähintään yhtä käyttöön otetuista paketeista # progressScreen.message.loadingSplitScreenAppearances=Ladataan jaetun näytön ulkonäköjä... # progressScreen.message.finishedLoadingSplitScreenAppearances=Jaetun näytön ulkonäöt on ladattu. # -progressScreen.message.modifiedWorldWarning=Tämä maailma ei välttämättä näytä samalta tai toimi samalla tavalla kuin mukauttamattomat maailmat, etkä voi ansaita saavutuksia. # +progressScreen.message.modifiedWorldWarning.1=Pelaat maailmassa, jossa on lisäosia! Tämä lisää uusia ominaisuuksia Minecraft-maailmaasi. # +progressScreen.message.modifiedWorldWarning.2=Älä lopeta vain yhteen! Voit ladata yhteen maailmaan useita lisäosia kerralla. # +progressScreen.message.modifiedWorldWarning.3=Lisävinkki: Resurssipaketti voi muuttaa eri kuutioiden ja entiteettien tekstuureja. # +progressScreen.message.modifiedWorldWarning.4=Lisävinkki: Käyttäytymispaketti voi muuttaa sitä, kuinka eri esineet, entiteetit tai kuutiot toimivat. # +progressScreen.message.modifiedWorldWarning.5=Lisävinkki: Lisäosa sisältää sekä käyttäytymispaketin että resurssipaketin. Muista aktivoida molemmat paketit, jotta lisäosa toimii! # +progressScreen.message.modifiedWorldWarning.6=Lisäosat lisäävät uusia kuutioita, esineitä tai olioita maailmoihisi. # +progressScreen.message.modifiedWorldWarning.7=Maailmat ja lisäosat ovat monimutkaisia! Vaikka jotkin toimivat yhdessä, saatat saada outoja lopputuloksia toisten kanssa. # +progressScreen.message.modifiedWorldWarning.8=Lisää lisäosia tarkoittaa enemmän hauskanpitoa, mutta pelin lataaminen saattaa kestää kauemmin. # progressScreen.dialog.title.resourcePack=Lataa resurssipaketit? # progressScreen.dialog.title.behaviorAndResourcePack=Lataa maailman käyttäytymis- ja resurssipaketit? # progressScreen.dialog.title.onlyBehavior=Lataa maailman käyttäytymispaketit? # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=Päivitetäänkö maailma? # resourcePack.warning.add.body=Tämä maailma ei välttämättä näytä samalta tai toimi samalla tavalla kuin mukauttamattomat maailmat. Suosittelemme tallentamaan kopion maailmastasi ennen kuin jatkat. # resourcePack.warning.add.button.cancel=Älä lisää pakettia # resourcePack.warning.add.button.ok=Lisää paketti silti # +resourcePack.warnings.contentKeyErrorBody=Paketin %s lataamisessa tapahtui ongelma. # +resourcePack.warnings.contentKeyErrorBodyMultiple=Pakettien %s lataamisessa tapahtui ongelma. # +resourcePack.warnings.contentKeyErrorTitle=Virhe! # resourcePack.warning.remove.title=Tämä on vaarallista! # resourcePack.warning.remove.body=Pakettien lisääminen tai poistaminen maailman pelaamisen jälkeen saattaa hajottaa maailman, jolloin voit menettää kaiken luomasi. # resourcePack.warning.remove.button.cancel=Säilytä paketti # @@ -7557,7 +7684,9 @@ item.crimson_hanging_sign.name=Purppuranpunainen roikkuva kyltti # item.danger_pottery_sherd.name=Vaara-keramiikkasirpale # item.dark_oak_hanging_sign.name=Tumma roikkuva tammikyltti # item.explorer_pottery_sherd.name=Löytöretkeilijä-keramiikkasirpale # +item.flow_pottery_sherd.name=Virtaus-keramiikkasirpale # item.friend_pottery_sherd.name=Ystävä-keramiikkasirpale # +item.guster_pottery_sherd.name=Puhuri-keramiikkasirpale # item.heart_pottery_sherd.name=Sydän-keramiikkasirpale # item.heartbreak_pottery_sherd.name=Sydänsärky-keramiikkasirpale # item.howl_pottery_sherd.name=Ulvonta-keramiikkasirpale # @@ -7568,6 +7697,7 @@ item.mourner_pottery_sherd.name=Surija-keramiikkasirpale # item.oak_hanging_sign.name=Roikkuva tammikyltti # item.plenty_pottery_sherd.name=Runsaus-keramiikkasirpale # item.prize_pottery_sherd.name=Palkinto-keramiikkasirpale # +item.scrape_pottery_sherd.name=Naarmu-keramiikkasirpale # item.sheaf_pottery_sherd.name=Lyhde-keramiikkasirpale # item.shelter_pottery_sherd.name=Suoja-keramiikkasirpale # item.skull_pottery_sherd.name=Kallo-keramiikkasirpale # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=Kirsikkaportaat # tile.cherry_trapdoor.name=Kirsikkalattialuukku # tile.cherry_wood.name=Kirsikkapuu # tile.chiseled_bookshelf.name=Kaiverrettu kirjahylly # +tile.chiseled_tuff.name=Kaiverrettu tuffi # +tile.chiseled_tuff_bricks.name=Kaiverretut tuffitiilet # tile.decorated_pot.name=Koristeltu ruukku # tile.pink_petals.name=Vaaleanpunaiset terälehdet # tile.stripped_bamboo_block.name=Kuorittu bambukuutio # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=Piinapanssarikoriste # trim_pattern.ward.name=Ward-panssarikoriste # trim_pattern.wayfinder.name=Navigoijapanssarikoriste # trim_pattern.wild.name=Villipanssarikoriste # +trim_pattern.bolt.name=Pulttipanssarikoriste # +trim_pattern.flow.name=Virtauspanssarikoriste # upgrade.netherite_upgrade.name=Horniittipäivitys # storageManager.mainSizeLabel=%s - 1 kappale # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=Poista maailmamalli? # selectTemplate.delete=Poista # selectTemplate.myTemplates=Omat maailmamallit # selectTemplate.realmsPlus=Realms Plus -mallit # -selectTemplate.marketplacePass=Esitellyt Marketplace Pass -mallit #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=Esitellyt Marketplace Pass -sisällöt #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=Tuodut mallit # selectTemplate.download=Lataa # selectTemplate.noTemplates=Tällä laitteella ei ole maailmamalleja. # -selectTemplate.suggestedContent.title=Kaupassa esittelyssä olevat mallit # +selectTemplate.suggestedContent.title=Esitellyt kaupan sisällöt # selectTemplate.suggestedContent.button=Katso lisää malleja # selectTemplate.createdBy=Tekijänä %s # selectTemplate.inventory=Omat kauppapaketit # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=Yhteydessä oli ongelma. Mene takaisin ja yritä store.loading.error.issues=Hmm, kaupassa on ongelmia. Yritä yhdistää myöhemmin. # store.loading.error.internetDown=Internet-yhteyttä ei löydy. # store.loading.error.account=Tililläsi on ongelma. Yritä pian uudelleen ja ota yhteyttä tukeen, jos tämä jatkuu. # +store.loading.error.account.banned=Et voi käyttää kauppaa, kunnes peliestosi vanhenee. # store.giftPromo.day=Päivä %s ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=Lunastettu # @@ -8405,10 +8540,17 @@ store.mashup.count.skin=1 olemus # store.mashup.count.skins=%s olemusta # store.mashup.count.texturePack=1 tekstuuripaketti # store.mashup.count.texturePacks=%s tekstuuripakettia #number of texture packs # -store.mashup.count.world=1 maailma # +store.mashup.count.world=1 maailma # store.mashup.count.worlds=%s maailmaa #number of worlds # store.mashup.count.addonPack=1 lisäosa # store.mashup.count.addonPacks=%s lisäosaa #number of addons # +store.mashup.count.mashup=Yhdistelmä # +store.mashup.hover.label.addonPack=Lisäosia voidaan käyttää missä tahansa maailmassa. # +store.mashup.hover.label.world=Käsintehty Minecraft-kartta. # +store.mashup.hover.label.skin=Vaihda uusi ilme hahmollesi. # +store.mashup.hover.label.texturePack=Lisää uusi graafinen elementti maailmaasi tai pelin käyttöliittymään. # +store.mashup.hover.label.mashup.lineOne=Erilaisten sisältöjen yhdistelmä. # +store.mashup.hover.label.mashup.lineTwo=Tämän yhdistelmän sisältö: # store.addon.activateAddonPack=Aktivoi lisäosa! # store.addon.newOrExistingTitle=Minne lisätään? # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=Ilmoitustaulu # tile.chest.name=Arkku # tile.ender_chest.name=Ääriarkku # tile.jigsaw.name=Palapelikuutio # +tile.heavy_core.name=Raskas ydin # tile.honey_block.name=Hunajakuutio # tile.honeycomb_block.name=Hunajakennokuutio # tile.lodestone.name=Magnetiitti # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=Kiillotettu hiililiuskelaatta # tile.polished_blackstone_pressure_plate.name=Kiillotettu hiililiuskepainelevy # tile.polished_blackstone_button.name=Kiillotettu hiililiuskepainike # tile.polished_blackstone_wall.name=Kiillotettu hiililiuskeseinä # +tile.polished_tuff.name=Kiillotettu tuffi # +tile.polished_tuff_slab.name=Kiillotettu tuffilaatta # +tile.polished_tuff_stairs.name=Kiillotetut tuffiportaat # +tile.polished_tuff_wall.name=Kiillotettu tuffiseinä # tile.soul_campfire.name=Sielunuotio # tile.chiseled_nether_bricks.name=Veistettyjä hornatiiliä # tile.cracked_nether_bricks.name=Halkeilleita hornatiiliä # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=Keltainen terrakotta # tile.structure_block.name=Rakennekuutio # structure_block.waterlog_block=Vetiset kuutiot # tile.structure_void.name=Rakennetyhjiö # +tile.trial_spawner.name=Haasteluontipaikka # +tile.vault.name=Holvi # tile.wool.black.name=Mustaa villaa # tile.wool.blue.name=Sinistä villaa # tile.wool.brown.name=Ruskeaa villaa # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=Saniainen # tile.tallgrass.grass.name=Ruoho # tile.tallgrass.name=Ruoho # tile.tallgrass.shrub.name=Pensas # +tile.tuff_brick_slab.name=Tuffitiililaatta # +tile.tuff_brick_stairs.name=Tuffitiiliportaat # +tile.tuff_brick_wall.name=Tuffitiiliseinä # +tile.tuff_bricks.name=Tuffitiilet # +tile.tuff_slab.name=Tuffilaatta # +tile.tuff_stairs.name=Tuffiportaat # +tile.tuff_wall.name=Tuffiseinä # tile.seagrass.seagrass.name=Meriruoho # tile.sea_pickle.name=Merimakkara # tile.turtle_egg.name=Merikilpikonnan muna # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=Punainen matto # tile.carpet.silver.name=Vaaleanharmaa matto # tile.carpet.white.name=Valkoinen matto # tile.carpet.yellow.name=Keltainen matto # +tile.crafter.name=Nikkaroija # tile.crafting_table.name=Nikkarointipöytä # tile.glazedTerracotta.white.name=Valkoinen lasitettu terrakotta # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=Kiillotettu leikattu kuparilaatta # tile.waxed_exposed_cut_copper_slab.name=Kiillotettu paljas leikattu kuparilaatta # tile.waxed_weathered_cut_copper_slab.name=Kiillotettu kulunut leikattu kuparilaatta # tile.waxed_oxidized_cut_copper_slab.name=Kiillotettu hapettunut leikattu kuparilaatta # + +tile.chiseled_copper.name=Kaiverrettu kupari # +tile.exposed_chiseled_copper.name=Paljas kaiverrettu kupari # +tile.oxidized_chiseled_copper.name=Hapettunut kaiverrettu kupari # +tile.waxed_chiseled_copper.name=Kiillotettu kaiverrettu kupari # +tile.waxed_exposed_chiseled_copper.name=Kiillotettu paljas kaiverrettu kupari # +tile.waxed_oxidized_chiseled_copper.name=Kiillotettu hapettunut kaiverrettu kupari # +tile.waxed_weathered_chiseled_copper.name=Kiillotettu kulunut kaiverrettu kupari # +tile.weathered_chiseled_copper.name=Kulunut kaiverrettu kupari # + +tile.copper_bulb.name=Kuparilamppu # +tile.exposed_copper_bulb.name=Paljas kuparilamppu # +tile.oxidized_copper_bulb.name=Hapettunut kuparilamppu # +tile.waxed_copper_bulb.name=Kiillotettu kuparilamppu # +tile.waxed_exposed_copper_bulb.name=Kiillotettu paljas kuparilamppu # +tile.waxed_oxidized_copper_bulb.name=Kiillotettu hapettunut kuparilamppu # +tile.waxed_weathered_copper_bulb.name=Kiillotettu kulunut kuparilamppu # +tile.weathered_copper_bulb.name=Kulunut kuparilamppu # + +tile.copper_door.name=Kupariovi # +tile.exposed_copper_door.name=Paljas kupariovi # +tile.oxidized_copper_door.name=Hapettunut kupariovi # +tile.waxed_copper_door.name=Kiillotettu kupariovi # +tile.waxed_exposed_copper_door.name=Kiillotettu paljas kupariovi # +tile.waxed_oxidized_copper_door.name=Kiillotettu hapettunut kupariovi # +tile.waxed_weathered_copper_door.name=Kiillotettu kulunut kupariovi # +tile.weathered_copper_door.name=Kulunut kupariovi # + +tile.copper_grate.name=Kupariritilä # +tile.exposed_copper_grate.name=Paljas kupariritilä # +tile.oxidized_copper_grate.name=Hapettunut kupariritilä # +tile.waxed_copper_grate.name=Kiillotettu kupariritilä # +tile.waxed_exposed_copper_grate.name=Kiillotettu paljas kupariritilä # +tile.waxed_oxidized_copper_grate.name=Kiillotettu hapettunut kupariritilä # +tile.waxed_weathered_copper_grate.name=Kiillotettu kulunut kupariritilä # +tile.weathered_copper_grate.name=Kulunut kupariritilä # + +tile.copper_trapdoor.name=Kuparilattialuukku # +tile.exposed_copper_trapdoor.name=Paljas kuparilattialuukku # +tile.oxidized_copper_trapdoor.name=Hapettunut kuparilattialuukku # +tile.waxed_copper_trapdoor.name=Kiillotettu kuparilattialuukku # +tile.waxed_exposed_copper_trapdoor.name=Kiillotettu paljas kuparilattialuukku # +tile.waxed_oxidized_copper_trapdoor.name=Kiillotettu hapettunut kuparilattialuukku # +tile.waxed_weathered_copper_trapdoor.name=Kiillotettu kulunut kuparilattialuukku # +tile.weathered_copper_trapdoor.name=Kulunut kuparilattialuukku # + tile.raw_copper_block.name=Raakakuparikuutio # tile.raw_iron_block.name=Raakarautakuutio # tile.raw_gold_block.name=Raakakultakuutio # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=Onnen nuoli # tipped_arrow.effect.wither=Näivetyksen nuoli # tipped_arrow.effect.turtleMaster=Kilpikonnamestarin nuoli # tipped_arrow.effect.slowFalling=Tippuhidastuksen nuoli # +tipped_arrow.effect.infested=Saastumisen nuoli # +tipped_arrow.effect.oozing=Valumisen nuoli # +tipped_arrow.effect.weaving=Punomisen nuoli # +tipped_arrow.effect.windCharged=Tuulipanostuksen nuoli # structure_block.title=Rakennekuutio # structure_block.structure_name=Rakenteen nimi # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=Viimeisimmät muutoksesi ovat kuitenki worldError.worldFailedRecovery=Palautus epäonnistui # worldError.worldFailedRecoveryText=Havaitsimme vahingoittuneen maailman, mutta emme onnistuneet palauttamaan sitä. # +writeThrottling.osDialog.body=Pyydetyn toiminnon suorittamisen arvioidaan kestävän %d minuuttia. Älä sammuta laitetta tänä aikana. # +writeThrottling.osDialog.cancel=Peruuta toiminto # +writeThrottling.osDialog.confirm=Jatka # +writeThrottling.progressBar.title=Valmistellaan tietoja # +writeThrottling.progressBar.body=Valmistellaan tiedostojasi... # + userData.recovered.title=Tallennustiedot palautettu # userData.recovered.text=Vahingoittuneet käyttäjäasetuksesi palautettiin onnistuneesti. # userData.recovered.warning=Viimeisimmät muutoksesi ovat kuitenkin saattaneet kadota palauttamisen yhteydessä. # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=Chattiviesti # xbox.report.area.skin=Pelaajan olemus # xbox.report.area.gameplay=Pelattaessa # xbox.report.area.ingame=Pelin sisäiset luomukset # -xbox.report.area.other=Muu # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=Kyberkiusaaminen # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=Valitettavasti yhteyden muodostaminen epä gathering.connect.title=Yhdistetään... # gathering.info.qr.title.onlineService=Opi lisää # gathering.info.qr.body.onlineService.nso=Tarvitset Nintendo Switch Online -jäsenyyden liittyäksesi tapahtumaan Minecraftissa. # -gathering.info.qr.body.onlineService.psn=Sinun on oltava kirjautuneena \"PlayStation Plus\" -palveluun, jotta voit liittyä tapahtumaan Minecraftissa. # +gathering.info.qr.body.onlineService.psn=Sinun on oltava kirjautuneena PlayStation®Plus -palveluun, jotta voit liittyä tapahtumaan Minecraftissa. #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=Sinun on oltava kirjautuneena sisään, jotta voit liittyä tapahtumaan Minecraftissa. # gathering.info.qr.title.childAccount=Verkkopelaaminen ei ole sallittua # gathering.info.qr.body.childAccount=Nykyinen lapsilukko estää sinua pelaamasta verkossa. # diff --git a/resource_pack/texts/fr_CA.lang b/resource_pack/texts/fr_CA.lang index 36e16ba92..516a2051c 100644 --- a/resource_pack/texts/fr_CA.lang +++ b/resource_pack/texts/fr_CA.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=Choisir un code de génération # accessibility.start.feedback=Soumettre le lien de commentaires au site Web # accessibility.start.new=Nouveau # -accessibility.start.profile=Choisir le profil # accessibility.start.skinPicker=Choisir une skin # accessibility.store.tag=Tag # @@ -472,11 +471,11 @@ authentication.location=Pour plus d'informations : # authentication.tryagain=Se connecter avec un autre compte # authentication.welcome=Bienvenue, %s ! # authentication.exitingGame=Au revoir, revenez bientôt. # -authentication.finalTrialWarning=Il s'agit de votre dernier essai sur Minecraft Education.%1%1Après cette session, votre école ou votre organisation devra acheter une licence pour que vous puissiez continuer à utiliser toutes les fonctionnalités de Minecraft Education. # -authentication.oneTrialWarning=Il vous reste 1 essai sur Minecraft Education, votre école ou organisation devra ensuite acheter une licence.%1%1Chaque ouverture de Minecraft Education compte pour un essai. # +authentication.finalTrialWarning=Il s'agit de votre dernier essai de Minecraft Education.%1%1Après cette session, votre école ou votre organisme devra acheter une licence pour que vous puissiez continuer à utiliser toutes les fonctionnalités de Minecraft Education. # +authentication.oneTrialWarning=Il vous reste 1 essai de Minecraft Education. Votre école ou organisme devra ensuite acheter une licence.%1%1Chaque ouverture de Minecraft Education compte pour un essai. # authentication.trialMessageTitle=Essai gratuit # -authentication.trialWelcome=Bienvenue!%1%1Il vous reste %2 essais de Minecraft Education. Ensuite, votre école ou organisme devra acheter une licence.%1%1Chaque ouverture de Minecraft Education compte pour un essai. Amusez-vous bien! # -authentication.trialWarning=Il vous reste %2 essais de Minecraft Education. Ensuite votre école ou organisme devra acheter une licence.%1%1Chaque ouverture de Minecraft Education compte pour un essai. # +authentication.trialWelcome=Bienvenue!%1%1Il vous reste %2 essais de Minecraft Education. Par la suite, votre école ou organisme devra acheter une licence.%1%1Chaque ouverture de Minecraft Education compte pour un essai. Amusez-vous bien! # +authentication.trialWarning=Il vous reste %2 essais de Minecraft Education. Par la suite, votre école ou organisme devra acheter une licence.%1%1Chaque ouverture de Minecraft Education compte pour un essai. # authentication.trialEnded=Votre essai de Minecraft Education est terminé.%1%1Votre école ou organisme devra acheter une licence afin de vous permettre de continuer à utiliser toutes les fonctionnalités de Minecraft Education.%1%1Votre compte %2 sera maintenant déconnecté et vous pourrez explorer notre leçon de démonstration aux fonctionnalités limitées. # authentication.trialEndedTitle=Période d'essai terminée # authentication.clickToPurchase=Comment acheter ### Translations should be 20 characters or less @@ -495,7 +494,7 @@ authentication.store.intro=Votre essai de Minecraft Education est terminé. Vous authentication.store.popup.purchaseFailed.title=Une erreur s'est produite # authentication.store.popup.purchaseFailed.msg=Désolé, nous sommes dans l'incapacité de terminer votre achat. Vous devriez peut-être vérifier votre connexion Internet. # authentication.store.purchase.info1=Le paiement sera prélevé sur votre compte iTunes lors de la confirmation d'achat et l'abonnement sera reconduit automatiquement, à moins de désactiver cette option au moins 24 heures avant la fin de la période en cours. Le montant de la reconduction sera prélevé sur votre compte dans les 24 heures avant la fin de la période en cours, au prix correspondant à l'option d'abonnement sélectionnée. # -authentication.store.purchase.info2=Vous pouvez gérer votre abonnement et désactiver la reconduction automatique en accédant aux paramètres de votre compte iTunes après l'achat. Si vous annulez l'abonnement après son activation, le prorata restant de la période d'abonnement active ne vous sera pas remboursé. Pour cet abonnement, votre compte iTunes sera lié à votre compte Office 365 Éducation, vous ne pourrez donc pas acheter de licences supplémentaires de Minecraft Education avec ce compte iTunes. # +authentication.store.purchase.info2=Vous pouvez gérer votre abonnement et désactiver le renouvellement automatique en accédant aux paramètres de votre compte iTunes après l'achat. Si vous annulez l'abonnement après son activation, le prorata restant de la période d'abonnement active ne vous sera pas remboursé. Pour cet abonnement, votre compte iTunes sera lié à votre compte Office 365 Éducation, vous ne pourrez donc pas acheter de licences supplémentaires de Minecraft Education avec ce compte iTunes. # authentication.store.purchase.button=Achat d'une licence (%s/an) # authentication.store.terms=Conditions d'utilisation # authentication.store.viewTermsAndConditions=Conditions générales d’utilisation # @@ -1094,10 +1093,6 @@ commands.me.description=Affiche un message à propos de vous. # commands.message.display.incoming=%1$s vous chuchote : %2$s # commands.message.display.outgoing=Vous chuchotez à %1$s le message : %2$s # commands.message.sameTarget=Si vous voulez vous dire un message, dites-le dans votre tête, pas dans un jeu! # -commands.message.warn=§4Vous avez reçu un avertissement. Votre comportement est susceptible d'offenser d'autres joueurs. Respectez les personnes avec qui vous jouez. # -commands.message.toastWarn=Minecraft est pour tout le monde! Assurez-vous que votre comportement respecte les normes de notre communauté. # -commands.warn.invalidWarningLevel=Niveau d'avertissement non valide. # -commands.warn.playerDoesNotExist=Impossible de trouver le joueur. Veuillez sélectionner un joueur valide. # commands.mobevent.description=Contrôle ce que les événements de créatures peuvent commander. # commands.mobevent.eventsEnabledSetToTrue=Les événements de créatures sont maintenant activés. Les événements individuels dont la valeur est réglée à faux ne s'exécuteront pas. # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=- %s : %s de %d %d %d à %d %d %d # commands.volumearea.entry.withoutIdentifier=- %s : de %d %d %d à %d %d %d # commands.volumearea.noneExist.currentDimension=Aucun volume n’existe dans la dimension actuelle. # commands.volumearea.inUse=%1$d/%2$d volumes en cours d’utilisation. # -commands.warn.description=Envoie un message d'avertissement au joueur. # commands.weather.clear=Le ciel se dégage # commands.weather.description=Définit la météo. # commands.weather.disabled=Le paramètre Cycle météo n'est pas activé pour ce monde. # @@ -1572,6 +1566,7 @@ container.beacon=Balise # container.brewing=Stand d'alchimie # container.chest=Coffre # container.chestDouble=Grand coffre # +container.crafter=Fabricateur # container.crafting=Fabrication # container.creative=Sélection d'objet # container.dispenser=Distributeur # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=Cavernes et falaises # createWorldScreen.cavesandcliffsDescription=Explorez la nouvelle génération de cavernes variées # createWorldScreen.spectatorMode=Mode Spectateur # createWorldScreen.spectatorModeDescription=Essayez les premières versions du mode Spectateur # -createWorldScreen.experimentalCameras=Caméras expérimentales # -createWorldScreen.experimentalCamerasDescription=Contient des exemples de préréglages de caméra (la commande caméra n'est plus expérimentale). # createWorldScreen.recipeUnlocking=Déverrouillage de recettes # createWorldScreen.recipeUnlockingDescription=Activer le déverrouillage de recettes # createWorldScreen.experimentalholiday=Fonctionnalité du créateur de vacances # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=Création d'un nouveau monde... # createWorldScreen.progress.realms=Réinitialisation du Realm... # createWorldScreen.seed.desc=Saisissez un code de génération pour générer à nouveau le même terrain. Laissez vide pour un monde aléatoire. # createWorldScreen.showCoordinates=Afficher les coordonnées # +createWorldScreen.showDaysPlayed=Afficher le nombre de jours de jeu # createWorldScreen.worldType=Type de monde # createWorldScreen.randomtickspeed=Vitesse de tick aléatoire # createWorldScreen.randomtickspeed.reset=Réinitialisation de la vitesse de tick aléatoire # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=Supprimer le projet # createWorldScreen.editor.projectOptionsLabel=Options de projet # createWorldScreen.editor.delete.confirm=Supprimer définitivement le projet? # createWorldScreen.editor.deleteWarningFormat=Voulez-vous vraiment supprimer « %s »? Ce projet sera perdu à jamais! # +createWorldScreen.eduCloud.about.body=Nom du fichier : « %1$s »%2$sModifié le : %3$s%4$sPour lancer le téléchargement, cliquez sur OK, puis sur Télécharger.%5$s # +createWorldScreen.eduCloud.about.title=À propos du fichier du monde sur nuage # createWorldScreen.eduCloud.delete.confirm=Supprimer le monde local? # createWorldScreen.eduCloud.deleteWarningFormat=Souhaitez-vous vraiment supprimer « %1$s » sur cet appareil? %2$sLa version infonuagique « %3$s » ne sera pas affectée et peut être resynchronisée plus tard. # createWorldScreen.experimentalDeferredTechnicalPreview=Afficher les fonctionnalités de dragon pour les créateurs # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Magasin Windows # realmsSettingsScreen.xboxOneStoreDisplayName=Xbox Store # realmsSettingsScreen.amazonStoreDisplayName=l'App-Shop Amazon # realmsSettingsScreen.oculusStoreDisplayName=l'Oculus Store # -realmsSettingsScreen.berwickStoreDisplayName=« PlayStation Store » # -realmsSettingsScreen.SonyStoreDisplayName=« PlayStation Store » #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=une boutique inconnue # realmsSettingsScreen.extendingRealm=Agrandissement du Realm... # realmsSettingsScreen.offerError.title=Achat en attente # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=Les packs achetés à l'extéri xbl.syncIAP.confirmSync.prompt.yes=Oui, synchroniser mes achats # xbl.marketplace.account.error.body.nobutton=Une erreur est survenue avec votre compte. Vous ne pourrez pas utiliser le marché tant que ce problème ne sera pas résolu. Si le problème persiste pendant plusieurs jours, veuillez communiquer avec l'équipe de soutien. # -xbl.marketplace.account.banned.body.nobutton=Vous ne pouvez pas utiliser le marché jusqu'à la fin de votre suspension. # playfab.account.banned.temporary=suspendu(e) # playfab.account.banned.permanent=banni(e) # @@ -2487,6 +2482,14 @@ date.daysAbbreviated1Char=%s j ### It needs to be abbreviated with no more tha date.hoursAbbreviated1Char=%s h ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%s min ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%s s ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s jours # +date.hoursPlural=%s heures # +date.minutesPlural=%s minutes # +date.secondsPlural=%s secondes # +date.daySingular=%s jour # +date.hourSingular=%s heure # +date.minuteSingular=%s minute # +date.secondSingular=%s seconde # date.timeLeft=%s restant(e)s # dayOneExperience.carousel.title=Bienvenue sur Minecraft! # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=HÉBERGER # edu.worlds_screen.settings=PARAMÈTRES # edu.worlds_screen.download=TÉLÉCHARGER ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=GÉRER # +edu.worlds_screen.about=À PROPOS # edu.worlds_screen.back=RETOUR # edu.worlds_screen.copy=COPIER # edu.worlds_screen.export=EXPORTER # @@ -2786,12 +2790,18 @@ edu.templates.delete_title=Supprimer ce modèle de monde? # edu.templates.delete_body=Êtes-vous sûr de vouloir supprimer le modèle de monde « %s »? Cela n'affectera aucun monde que vous avez créé depuis ce modèle. # edu.templates.delete_confirm=Supprimer # edu.templates.info_banner=Les modèles de monde sont des plans que vous pouvez utiliser pour créer de nouveaux mondes qui commencent toujours de la même manière. # -edu.templates.empty_banner=Vous pouvez obtenir des modèles de monde à partir de la bibliothèque de Minecraft Education, d'autres utilisateurs de Minecraft Education ou de education.minecraft.net. # +edu.templates.empty_banner=Vous pouvez obtenir des modèles de mondes à partir de la bibliothèque de Minecraft Education, d'autres utilisateurs de Minecraft Education ou de education.minecraft.net. # edu.pause.multiplayer.disabled=Le mode multijoueur n'est pas disponible pour cette leçon. # effect.badOmen=Mauvais présage # +effect.infested=Infesté # +effect.oozing=Suintant # +effect.raid_omen=Présage d'invasion # +effect.trial_omen=Augure d'épreuve # effect.villageHero=Héros du village # +effect.weaving=Tissage # +effect.wind_charged=Charge de vent # enchantment.arrowDamage=Puissance # enchantment.arrowFire=Flamme # @@ -2810,6 +2820,9 @@ enchantment.durability=Solidité # enchantment.fire=Aura de feu # enchantment.fishingSpeed=Appât # enchantment.frostwalker=Semelles givrantes # +enchantment.heavy_weapon.breach=Infraction # +enchantment.heavy_weapon.density=Densité # +enchantment.heavy_weapon.windburst=Rafale de vent # enchantment.knockback=Recul # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=Chauve-souris # entity.bee.name=Abeille # entity.blaze.name=Blaze # entity.boat.name=Bateau # +entity.bogged.name=Embourbé # +entity.breeze.name=Breeze # +entity.breeze_wind_charge_projectile.name=Charge de vent # entity.cat.name=Chat # entity.cave_spider.name=Araignée venimeuse # entity.chicken.name=Poulet # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=Villageois non qualifié # entity.villager_v2.name=Villageois # entity.vindicator.name=Vindicateur # entity.wandering_trader.name=Commerçant ambulant # +entity.wind_charge_projectile.name=Charge de vent # entity.witch.name=Sorcière # entity.wither.name=Wither # entity.wither_skeleton.name=Wither squelette # @@ -3009,6 +3026,7 @@ feature.ruins=Ruines océaniques # feature.pillager_outpost=Avant-poste de pillards # feature.bastion_remnant=Vestige du bastion # feature.ruined_portal=Portail en ruines # +feature.trial_chambers=Salles d'épreuve # feed.like=Aime # feed.manage_feed=Gérer le flux # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=Bougez :tip_left_stick: pour vous déplacer. # gameTip.flying.mouse=Appuyez deux fois sur :_input_key.jump: pour voler # gameTip.flying.touch=Appuyez deux fois sur la commande Sauter pour voler # +gameTip.flyDown.mouse=Appuyez sur :_input_key.sneak: pour voler vers le bas # +gameTip.flyUp.mouse=Appuyez sur :_input_key.jump: pour voler vers le haut # + +gameTip.stopFlying.mouse=Appuyez deux fois sur :_input_key.jump: pour arrêter de voler # +gameTip.stopFlying.touch=Appuyez deux fois sur Voler vers le bas pour arrêter de voler # + gameTip.jump.mouse=Sautez avec :_input_key.jump: # +gameTip.swim.mouse=Appuyez longuement sur :_input_key.jump: pour nager vers le haut # -gameTip.hotbar.mouse=Utilisez la molette de la souris pour sélectionner # dans la barre d'action et placer cet objet dans votre main. # -gameTip.hotbar.touch=Sélectionnez # dans la barre d'action pour placer cet objet dans votre main. # -gameTip.hotbar.controller=Sélectionnez # dans la barre d'action pour placer cet objet dans votre main. # +gameTip.hotbar.selection.mouse=Faites défiler ou appuyez sur %s pour tenir l'objet ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=Appuyez sur l'objet dans la barre d'actions pour le tenir # gameTip.breakBlock.mouse=Maintenez le bouton gauche de la souris pour casser les blocs. # gameTip.breakBlock.touch=Touchez et maintenez pour casser les blocs. # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=Vous vous faufilez! Vous ne tomberez pas des bords à prése gameTip.sneak.touch=Vous vous faufilez, vous ne tomberez pas des bords. # gameTip.sneak.controller=Vous vous faufilez, vous ne tomberez pas des bords. # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=Placez votre établi. Maintenez-le et cliquez pour le placer. # gameTip.placeCraftingTable.touch=Placez votre établi en appuyant sur le sol. # gameTip.placeCraftingTable.controller=Pour placer votre établi, placez-le dans votre main puis utilisez-le vers le sol. # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=Merci d’avoir partagé votre avis! # gui.submitFeedback.failure.status.unprocessableEntity=Vous ne possédez pas l’élément pour lequel vous essayez d'envoyer un commentaire. (Code d’erreur : %d) # gui.submitFeedback.failure.status.tooManyRequests=Oh non! Vous avez envoyé trop d’avis, veuillez réessayer ultérieurement. (Code d’erreur : %d) # gui.submitFeedback.failure.status.other=Vous ne pouvez pas envoyer votre avis pour le moment, veuillez réessayer ultérieurement. (Code d’erreur : %d) # +gui.togglable_slot=Appuyez pour désactiver l'emplacement # gui.playOffline=Jouer hors ligne # gui.signIn=Connexion # gui.genericNetworkError=Une erreur s'est produite. Veuillez vérifier votre connexion Internet. # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=Découvrez un monde de possibilités avec les pièces howtoplay.minecoins.text.2=Une fois échangées, vos Minecoins sont liées à votre compte Microsoft, ce qui vous permet d'accéder à vos pièces et à vos achats sur d'autres appareils pris en charge! # howtoplay.minecoins.button.text.1=Obtenir des pièces Minecoins # howtoplay.minecoins.header.1=Clause de non-responsabilité # -howtoplay.minecoins.text.3=* Les Minecoins nécessitent une version Bedrock de Minecraft qui comprend le marché Minecraft. Les Minecoins ne sont pas compatibles avec Sony PlayStation. Pour plus d'informations sur la compatibilité, veuillez consulter la page minecraft.net/minecoins.  # +howtoplay.minecoins.text.3=* Les Minecoins nécessitent une version Bedrock de Minecraft qui comprend le marché Minecraft. Les Minecoins ne sont pas compatibles avec Sony PlayStation®. Pour plus d'informations sur la compatibilité, veuillez consulter la page minecraft.net/minecoins.  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=Miner # @@ -4145,7 +4170,7 @@ level.editor.export.failed=Échec de l’exportation du projet # level.editor.import.failed=Échec de l’importation du projet # level.editor.import.failed.incompatibleEdition=Échec de l'importation du projet : format de fichier incompatible # -inbox.invite.title=Invitation aux Realms # +inbox.invite.title=Invitation au Realm à # invite.clear=Effacer la sélection # invite.send=Envoyer %d invitations # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=Rouge par tranché senestre inversé # item.banner.diagonal_up_right.silver=Gris pâle par tranché senestre inversé # item.banner.diagonal_up_right.white=Blanc par tranché senestre inversé # item.banner.diagonal_up_right.yellow=Jaune part tranché senestre inversé # +item.banner.flow.black=Flux noir # +item.banner.flow.blue=Flux bleu # +item.banner.flow.brown=Flux marron # +item.banner.flow.cyan=Flux cyan # +item.banner.flow.gray=Flux gris # +item.banner.flow.green=Flux vert # +item.banner.flow.lightBlue=Flux bleu ciel # +item.banner.flow.lime=Flux vert clair # +item.banner.flow.magenta=Flux magenta # +item.banner.flow.orange=Flux orange # +item.banner.flow.pink=Flux rose # +item.banner.flow.purple=Flux violet # +item.banner.flow.red=Flux rouge # +item.banner.flow.silver=Flux gris clair # +item.banner.flow.white=Flux blanc # +item.banner.flow.yellow=Flot jaune # item.banner.flower.black=Charge de fleur noire # item.banner.flower.blue=Charge de fleur bleue # item.banner.flower.brown=Charge de fleur brune # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=Dégradé de base blanche # item.banner.gradient_up.yellow=Dégradé de base jaune # item.banner.gray.name=Bannière grise # item.banner.green.name=Bannière verte # +item.banner.guster.black=Tornade noire # +item.banner.guster.blue=Tornade bleue # +item.banner.guster.brown=Tornade marron # +item.banner.guster.cyan=Tornade cyan # +item.banner.guster.gray=Tornade grise # +item.banner.guster.green=Tornade verte # +item.banner.guster.lightBlue=Tornade bleu pâle # +item.banner.guster.lime=Tornade vert clair # +item.banner.guster.magenta=Tornade magenta # +item.banner.guster.orange=Tornade orange # +item.banner.guster.pink=Tornade rose # +item.banner.guster.purple=Tornade violette # +item.banner.guster.red=Tornade rouge # +item.banner.guster.silver=Tornade gris clair # +item.banner.guster.white=Tornade blanche # +item.banner.guster.yellow=Tornade jaune # item.banner.half_horizontal.black=Noir par fasce # item.banner.half_horizontal.blue=Bleu par fasce # item.banner.half_horizontal.brown=Brun par fasce # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=Bateau en acacia # item.boat.big_oak.name=Bateau en chêne noir # item.bone.name=Os # item.book.name=Livre # +item.breeze_rod.name=Bâton de Breeze # item.chainmail_boots.name=Bottes de mailles # item.leather_boots.name=Bottes en cuir # item.diamond_boots.name=Bottes en diamant # @@ -4991,6 +5049,7 @@ item.comparator.name=Comparateur de redstone # item.compass.name=Boussole # item.lodestonecompass.name=Boussole de magnétite # item.cookie.name=Biscuit # +item.copper_door.name=Porte en cuivre # item.crossbow.name=Arbalète # item.diamond.name=Diamant # item.repeater.name=Répéteur de redstone # @@ -5038,6 +5097,7 @@ tile.end_rod.name=Barre de l'Ender # item.ender_eye.name=Œil de l'Ender # item.ender_pearl.name=Perle de l'Ender # item.experience_bottle.name=Fiole d'expérience # +item.exposed_copper_door.name=Porte en cuivre peu oxydé # item.feather.name=Plume # item.fermented_spider_eye.name=Œil d'araignée fermenté # item.fireball.name=Charge de feu # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=Jambières en or # item.iron_leggings.name=Jambières en fer # item.nautilus_shell.name=Coque de nautile # item.heart_of_the_sea.name=Au cœur de la mer # +item.mace.name=Masse d'armes # item.magma_cream.name=Crème de magma # item.map.name=Carte # item.map.exploration.mansion.name=Carte d'exploration des bois # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=Carte du village de la savane # item.map.exploration.village_desert.name=Carte du village du désert # item.map.exploration.jungle_temple.name=Carte d'exploration de la Jungle # item.map.exploration.swamp_hut.name=Carte d'exploration des marais # +item.map.exploration.trial_chambers.name=Carte d'exploration de l'épreuve # item.melon.name=Melon # item.milk.name=Lait # item.minecart.name=Wagonnet # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=Wagonnet de stockage # item.command_block_minecart.name=Wagonnet avec bloc de commande # item.minecartFurnace.name=Wagonnet à vapeur # item.hopper_minecart.name=Wagonnet à entonnoir # +item.ominous_bottle.name=Fiole sinistre # +item.ominous_trial_key.name=Clé des épreuves sinistre # +item.oxidized_copper_door.name=Porte en cuivre oxydé # item.tnt_minecart.name=Wagonnet à TNT # item.pitcher_pod.name=Graine de sarracénie # item.torchflower_seeds.name=Graines de rose de porcelaine # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=Œuf d'apparition d'agent # item.spawn_egg.entity.armadillo.name=Œuf d'apparition de tatou # item.spawn_egg.entity.axolotl.name=Œuf d'apparition d'axolotl # item.spawn_egg.entity.bee.name=Œuf d'apparition d'abeille # +item.spawn_egg.entity.bogged.name=Œuf d'apparition d'embourbé # +item.spawn_egg.entity.breeze.name=Œuf d'apparition de Breeze # item.spawn_egg.entity.hoglin.name=Œuf d'apparition de hoglin # item.spawn_egg.entity.cat.name=Œuf d'apparition de chat # item.spawn_egg.entity.chicken.name=Œuf d'apparition de poulet # @@ -5187,7 +5254,7 @@ item.spawn_egg.entity.ocelot.name=Œuf d'apparition d'ocelot # item.spawn_egg.entity.parrot.name=Œuf d'apparition de perroquet # item.spawn_egg.entity.horse.name=Œuf d'apparition de cheval # item.spawn_egg.entity.llama.name=Œuf d'apparition de lama # -item.spawn_egg.entity.trader_llama.name=Œuf d'apparition de lama marchand # +item.spawn_egg.entity.trader_llama.name=Œuf de génération de commerçant lama # item.spawn_egg.entity.polar_bear.name=Œuf d'apparition d'ours polaire # item.spawn_egg.entity.donkey.name=Œuf d'apparition d'âne # item.spawn_egg.entity.mule.name=Œuf d'apparition de mule # @@ -5218,7 +5285,7 @@ item.spawn_egg.entity.elder_guardian.name=Œuf d'apparition d'ancien gardien # item.spawn_egg.entity.shulker.name=Œuf d'apparition de shulker # item.spawn_egg.entity.endermite.name=Œuf d'apparition d'endermite # item.spawn_egg.entity.evocation_illager.name=Œuf d'apparition d'évocateur # -item.spawn_egg.entity.vex.name=Œuf d'apparition de vex # +item.spawn_egg.entity.vex.name=Œuf de génération de vexe # item.spawn_egg.entity.turtle.name=Œuf d'apparition de tortue de mer # item.spawn_egg.entity.dolphin.name=Œuf d'apparition de dauphin # item.spawn_egg.entity.phantom.name=Œuf d'apparition de revenant # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 - Ward # item.record_pigstep.desc=Lena Raine – Pigstep # item.record_otherside.desc=Lena Raine – otherside # item.record_relic.desc=Aaron Cherof – Relic # +item.record_creator.desc=Lena Raine – Creator # +item.record_creator_music_box.desc=Lena Raine – Creator (Music Box) # +item.record_precipice.desc=Aaron Cherof – Precipice # item.redstone.name=Poudre de redstone # item.reeds.name=Cannes à sucre # item.kelp.name=Varech # @@ -5324,6 +5394,12 @@ item.iron_sword.name=Épée en fer # item.stone_sword.name=Épée en pierre # item.wooden_sword.name=Épée en bois # item.unbreakable=Incassable # +item.waxed_copper_door.name=Porte en cuivre ciré # +item.waxed_exposed_copper_door.name=Porte en cuivre peu oxydé ciré # +item.waxed_oxidized_copper_door.name=Porte en cuivre oxydé ciré # +item.waxed_weathered_copper_door.name=Porte en cuivre semi-oxydé ciré # +item.weathered_copper_door.name=Porte en cuivre semi-oxydé # +item.wind_charge.name=Charge de vent # item.wheat.name=Blé # item.wolf_armor.name=Armure de loup # item.writable_book.name=Le livre et la plume # @@ -5331,6 +5407,7 @@ item.written_book.name=Manuscrit # item.glowstone_dust.name=Poudre lumineuse # item.shulker_shell.name=Carapace de shulker # item.totem.name=Totem d'immortalité # +item.trial_key.name=Clé d'épreuve # item.turtle_helmet.name=Carapace de tortue # item.turtle_shell_piece.name=Scutelle de tortue # item.phantom_membrane.name=Membrane de revenant # @@ -5338,8 +5415,10 @@ item.sweet_berries.name=Baies sucrées # item.suspicious_stew.name=Ragoût suspect # item.banner_pattern.bricks=Déploiement de maçonnerie # item.banner_pattern.creeper=Charge de Creeper # +item.banner_pattern.flow=Flux # item.banner_pattern.flower=Charge de fleur # item.banner_pattern.globe=Globe # +item.banner_pattern.guster=Tornade # item.banner_pattern.name=Motif de bannière # item.banner_pattern.piglin=Museau # item.banner_pattern.skull=Charge de crâne # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=Motifs de bannière # itemGroup.name.netherWartBlock=Verrues du Nether # itemGroup.name.candles=Bougies # itemGroup.name.goatHorn=Cornes de chèvre # +itemGroup.name.compounds=Composés # +itemGroup.name.products=Produits # jigsaw.title.target_pool=Zone cible : # jigsaw.title.name=Nom : # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=Paramètres de la salle de classe # menu.serverStore=Magasin %s # menu.serverGenericName=Serveur # menu.play=Jouer # +menu.profile=Profil # menu.playdemo=Jouer dans le monde de démonstration # menu.playOnRealms=Jouer sur Realm # menu.quickplay=Partie rapide # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=Choisissez votre personnage de départ # menu.character_cast.preview_title=Rencontrez les acteurs! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Serveur Realms ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=Serveurs # merchant.deprecated=Échangez autre chose pour débloquer! # @@ -5988,7 +6071,7 @@ options.codeBuilder=Constructeur de code # options.content_log_file=Activer le fichier du journal de contenu # options.content_log_gui=Activer l'interface du journal de contenu # options.controller=Manette # -options.controllerLayout=Configuration de la manette # +options.controllerLayout=Configuration de la manette de jeu # options.controllerSettings=Paramètres manette # options.controls=Contrôles... # options.control_alt_keybinds_section=Les touches suivantes sont utilisées avec CTRL + ALT # @@ -6270,8 +6353,12 @@ options.fullKeyboardGameplay=Jouabilité sur clavier complet # options.fullKeyboardLayout=Configuration complète du clavier # options.improvedInputResponsePlaceholder=Réactivité aux saisies améliorée # options.improvedInputResponsePlaceholder.tooltip=Réduit la latence entre vos saisies et ce qui s'affiche à l'écran. Il est possible que ce réglage consomme plus de batterie. # +options.dynamicTexturesToggle=Supprimer les limites des textures # +options.dynamicTexturesToggle.tooltip=Pour désactiver cette option, vous devrez redémarrer le jeu. Cela peut rendre le jeu instable si vous utilisez plusieurs extensions ou des packs de ressources contenant de nombreuses textures. # +options.dynamicTextures.popUp=Vous devrez redémarrer le jeu si vous souhaitez désactiver l'option Supprimer les limites des textures. # +options.dynamicTextures.popUp.title=Vraiment? # options.fullscreen=Plein écran # -options.gamepadcursorsensitivity=Sensibilité du curseur de la manette # +options.gamepadcursorsensitivity=Sensibilité du curseur de la manette de jeu # options.gamertag=Gamertag : # options.gamma=Luminosité # options.gamma.max=Claire # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=Connexion # options.creator.debuggerListen=Écouter # options.creator.debuggerHost=Hôte # options.creator.debuggerPort=Port # +options.creator.watchdogHeading=Paramètres de surveillance de script # +options.creator.watchdogSlowWarning=Alertes de script lent # +options.creator.watchdogSlowThreshold=La moyenne dépasse # +options.creator.watchdogSlowFormat=%s millisecondes # +options.creator.watchdogSlowFormatDefault=%s millisecondes (par défaut) # +options.creator.watchdogSpikeWarning=Alertes de pic de script # +options.creator.watchdogSpikeThreshold=Le pic dépasse les # +options.creator.watchdogSpikeFormat=%s millisecondes # +options.creator.watchdogSpikeFormatDefault=%s millisecondes (par défaut) # +options.creator.watchdogHangThreshold=Interrompre après # +options.creator.watchdogHangFormat=%s secondes # +options.creator.watchdogHangFormatDefault=%s secondes (par défaut) # options.vr_classic_box_selection=Créer un aperçu de la sélection # options.hidegamepadcursor=Cacher le curseur de la manette # options.hidegui=Cacher l'interface # @@ -6662,7 +6761,7 @@ options.makeBackup=Faire une copie de sauvegarde de mon monde # options.managePrivacy=Vous pouvez régler vos paramètres de confidentialité à l'adresse https://account.xbox.com/Settings depuis n'importe quel navigateur. ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Dissocier le compte Microsoft # options.unlink_msa.confirm.title=Dissocier le compte Microsoft? # -options.unlink_msa.confirm.warning=ATTENTION : Vous ne pourrez plus stocker vos progrès ou vos achats faits sur le compte %s de votre système « PlayStation 4 » après la dissociation. # +options.unlink_msa.confirm.warning=ATTENTION : Vous ne pourrez plus stocker vos progrès ou vos achats faits sur le compte %s de votre système PlayStation®4 après la dissociation. #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=La dissociation de votre compte Microsoft de ce jeu aura un impact sur tous les jeux Minecraft de cette plateforme qui utilisent ce compte Microsoft. # options.unlink_msa.confirm.checkbox1=Je ne pourrai plus accéder à tout contenu du magasin en jeu en jouant sur d'autres plateformes. # options.unlink_msa.confirm.checkbox2=Je ne pourrai plus jouer à des parties multiplateformes avec mes amis sur d'autres plateformes. # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=Chargez un monde pour personnaliser les c hudScreen.controlCustomization.tooltip.notouch=Utiliser un appareil à écran tactile pour personnaliser les commandes # hudScreen.controlCustomization.tooltip.alreadycustomizing=Un écran de personnalisation des commandes tactiles est déjà ouvert # hudScreen.controlCustomization.tooltip.alive=Le joueur doit être en vie pour personnaliser les commandes. # +hudScreen.daysPlayed=Nombre de jours de jeu : %s # +hudScreen.daysPlayed.overflow=Trop nombreux pour être comptés! # playscreen.fileSize.MB=Mo # playscreen.fileSize.GB=Go # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=Potion de guérison jetable # potion.heal.linger.name=Potion de guérison persistante # potion.healthBoost=Concentré de santé # potion.hunger=Faim # +potion.infested.linger.name=Potion persistante d'infestation # +potion.infested.name=Potion d'infestation # +potion.infested.splash.name=Potion jetable d'infestation # +potion.infested=Infesté # potion.invisibility=Invisibilité # potion.invisibility.name=Potion d'invisibilité # potion.invisibility.splash.name=Potion d'invisibilité jetable # @@ -7067,6 +7172,10 @@ potion.nightVision=Vision nocturne # potion.nightVision.name=Potion de vision nocturne # potion.nightVision.splash.name=Potion de vision nocturne jetable # potion.nightVision.linger.name=Potion de vision nocturne persistante # +potion.oozing.linger.name=Potion persistante de suintement # +potion.oozing.name=Potion de suintement # +potion.oozing.splash.name=Potion jetable de suintement # +potion.oozing=Suintant # potion.poison=Poison # potion.poison.name=Potion de poison # potion.poison.splash.name=Potion de poison jetable # @@ -7108,6 +7217,14 @@ potion.weakness=Faiblesse # potion.weakness.name=Potion de faiblesse # potion.weakness.splash.name=Potion de faiblesse jetable # potion.weakness.linger.name=Potion de faiblesse persistante # +potion.weaving.linger.name=Potion persistante de tissage # +potion.weaving.name=Potion de tissage # +potion.weaving.splash.name=Potion jetable de tissage # +potion.weaving=Tissage # +potion.windCharged.linger.name=Potion persistante de charge du vent # +potion.windCharged.name=Potion de charge du vent # +potion.windCharged.splash.name=Potion jetable de charge du vent # +potion.windCharged=Charge de vent # potion.wither=Wither # potion.wither.name=Potion de décomposition # potion.wither.splash.name=Potion jetable de décomposition # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=Ce monde ne peut pas être ouvert à progressScreen.message.forbiddenContent=Vous ne possédez pas un ou plusieurs des packs appliqués # progressScreen.message.loadingSplitScreenAppearances=Chargement des apparences d’écran partagé... # progressScreen.message.finishedLoadingSplitScreenAppearances=Chargement des apparences d’écran partagé terminé. # -progressScreen.message.modifiedWorldWarning=Ce monde peut présenter des différences dans son aspect ou son fonctionnement par rapport aux mondes non modifiés, et il n'est pas possible d'y obtenir des succès. # +progressScreen.message.modifiedWorldWarning.1=Vous jouez dans un monde avec des extensions! Celles-ci ajoutent de nouvelles fonctionnalités à votre monde Minecraft. # +progressScreen.message.modifiedWorldWarning.2=Ne vous limitez pas à une seule! Vous pouvez charger simultanément plusieurs extensions dans un même monde. # +progressScreen.message.modifiedWorldWarning.3=Conseil de pro : Un pack de ressources peut modifier les textures de divers blocs et entités. # +progressScreen.message.modifiedWorldWarning.4=Conseil de pro : Un pack de comportements peut modifier le fonctionnement de différents objets, entités ou blocs. # +progressScreen.message.modifiedWorldWarning.5=Conseil de pro : Une extension comprend à la fois un pack de comportements et un pack de ressources. Assurez-vous que les deux packs sont activés pour garantir le bon fonctionnement de l'extension! # +progressScreen.message.modifiedWorldWarning.6=Les extensions ajoutent de nouveaux blocs, objets ou créatures à vos mondes. # +progressScreen.message.modifiedWorldWarning.7=Les mondes et les extensions peuvent être complexes! Alors que certains fonctionnent très bien ensemble, d'autres pourraient entraîner des résultats pour le moins inattendus. # +progressScreen.message.modifiedWorldWarning.8=Qui dit un max d'extensions dit un max de plaisir, même si ça risque de prolonger les temps de chargement. # progressScreen.dialog.title.resourcePack=Télécharger les packs de ressources? # progressScreen.dialog.title.behaviorAndResourcePack=Télécharger les packs de comportement et de ressources du monde ? # progressScreen.dialog.title.onlyBehavior=Télécharger les packs de comportement du monde ? # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=Mettre le monde à jour? # resourcePack.warning.add.body=Ce monde peut présenter des différences dans son aspect ou son fonctionnement par rapport aux mondes non modifiés. Nous vous recommandons de sauvegarder une copie de votre monde avant de continuer. # resourcePack.warning.add.button.cancel=Ne pas ajouter le pack # resourcePack.warning.add.button.ok=Ajouter quand même le pack # +resourcePack.warnings.contentKeyErrorBody=Une erreur est survenue lors du chargement du pack %s. # +resourcePack.warnings.contentKeyErrorBodyMultiple=Une erreur est survenue lors du chargement des packs %s. # +resourcePack.warnings.contentKeyErrorTitle=Erreur! # resourcePack.warning.remove.title=Attention danger! # resourcePack.warning.remove.body=L'ajout ou la suppression de packs après avoir joué dans un monde risque de rendre celui-ci dysfonctionnel et de vous faire perdre ce que vous avez créé. # resourcePack.warning.remove.button.cancel=Conserver le pack # @@ -7557,7 +7684,9 @@ item.crimson_hanging_sign.name=Panneau suspendu carmin # item.danger_pottery_sherd.name=Tesson de poterie Danger # item.dark_oak_hanging_sign.name=Panneau suspendu en chêne noir # item.explorer_pottery_sherd.name=Tesson de poterie Explorateur # +item.flow_pottery_sherd.name=Tesson de poterie Flux # item.friend_pottery_sherd.name=Tesson de poterie Ami # +item.guster_pottery_sherd.name=Tesson de poterie Tornade # item.heart_pottery_sherd.name=Tesson de poterie Cœur # item.heartbreak_pottery_sherd.name=Tesson de poterie Cœur brisé # item.howl_pottery_sherd.name=Tesson de poterie Hurlement # @@ -7568,6 +7697,7 @@ item.mourner_pottery_sherd.name=Tesson de poterie Deuil # item.oak_hanging_sign.name=Panneau suspendu en chêne # item.plenty_pottery_sherd.name=Tesson de poterie Abondance # item.prize_pottery_sherd.name=Tesson de poterie Prix # +item.scrape_pottery_sherd.name=Tesson de poterie Éraflure # item.sheaf_pottery_sherd.name=Tesson de poterie Moisson # item.shelter_pottery_sherd.name=Tesson de poterie Abri # item.skull_pottery_sherd.name=Tesson de poterie Crâne # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=Escalier en cerisier # tile.cherry_trapdoor.name=Trappe en cerisier # tile.cherry_wood.name=Bois de cerisier # tile.chiseled_bookshelf.name=Bibliothèque sculptée # +tile.chiseled_tuff.name=Tuf ciselé # +tile.chiseled_tuff_bricks.name=Briques de tuf ciselé # tile.decorated_pot.name=Pot décoré # tile.pink_petals.name=Pétales roses # tile.stripped_bamboo_block.name=Bloc de bambou écorcé # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=Coupe d'armure Vex # trim_pattern.ward.name=Coupe d'armure Ward # trim_pattern.wayfinder.name=Coupe d'armure Boussole # trim_pattern.wild.name=Coupe d'armure Sauvage # +trim_pattern.bolt.name=Coupe d'armure Boulon # +trim_pattern.flow.name=Coupe d'armure Flot # upgrade.netherite_upgrade.name=Amélioration de Netherite # storageManager.mainSizeLabel=%s - 1 objet # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=Supprimer ce modèle de monde? # selectTemplate.delete=Supprimer # selectTemplate.myTemplates=Mes modèles de monde # selectTemplate.realmsPlus=Modèles en vedette dans Realms Plus # -selectTemplate.marketplacePass=Modèles en vedette du Marketplace Pass #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=Contenu en vedette du Marketplace Pass #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=Modèles importés # selectTemplate.download=Télécharger # selectTemplate.noTemplates=Il n'y a pas de modèles de monde sur cet appareil. # -selectTemplate.suggestedContent.title=Modèles en vedette dans le marché # +selectTemplate.suggestedContent.title=Contenu en vedette du marché # selectTemplate.suggestedContent.button=Voir plus de modèles # selectTemplate.createdBy=Créé par %s # selectTemplate.inventory=Mes packs du marché # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=Nous avons rencontré un problème de connexion. store.loading.error.issues=Hmm, le marché connaît quelques difficultés. Veuillez essayer de vous connecter plus tard. # store.loading.error.internetDown=Impossible de détecter une connexion internet. # store.loading.error.account=Votre compte a un problème. Réessayez plus tard et contactez l'assistance si cela persiste. # +store.loading.error.account.banned=Vous ne pouvez pas utiliser le marché jusqu'à la fin de votre suspension. # store.giftPromo.day=Jour %s ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=Récupéré # @@ -8405,10 +8540,17 @@ store.mashup.count.skin=1 skin # store.mashup.count.skins=%s skins # store.mashup.count.texturePack=1 pack de textures # store.mashup.count.texturePacks=%s packs de textures #number of texture packs # -store.mashup.count.world=1 monde # +store.mashup.count.world=1 monde # store.mashup.count.worlds=%s mondes #number of worlds # store.mashup.count.addonPack=1 extension # store.mashup.count.addonPacks=%s extensions #number of addons # +store.mashup.count.mashup=Mash-Up # +store.mashup.hover.label.addonPack=Les extensions peuvent être appliquées à n'importe quel monde. # +store.mashup.hover.label.world=Une carte Minecraft conçue à la main. # +store.mashup.hover.label.skin=Donnez un nouveau look à votre personnage. # +store.mashup.hover.label.texturePack=Donnez une nouvelle apparence à votre monde ou à votre interface de jeu. # +store.mashup.hover.label.mashup.lineOne=Une combinaison de différents types de contenu. # +store.mashup.hover.label.mashup.lineTwo=Ce mash-up contient : # store.addon.activateAddonPack=Activez l'extension! # store.addon.newOrExistingTitle=Où ajouter? # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=Tableau # tile.chest.name=Coffre # tile.ender_chest.name=Coffre de l'Ender # tile.jigsaw.name=Bloc casse-tête # +tile.heavy_core.name=Noyau lourd # tile.honey_block.name=Bloc de miel # tile.honeycomb_block.name=Bloc de rayon de miel # tile.lodestone.name=Magnétite # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=Dalle de roche noire polie # tile.polished_blackstone_pressure_plate.name=Plaque de pression en roche noire polie # tile.polished_blackstone_button.name=Bouton de roche noire polie # tile.polished_blackstone_wall.name=Mur de roche noire polie # +tile.polished_tuff.name=Tuf poli # +tile.polished_tuff_slab.name=Dalle en tuf poli # +tile.polished_tuff_stairs.name=Escaliers en tuf poli # +tile.polished_tuff_wall.name=Muret en tuf poli # tile.soul_campfire.name=Feu de camp des âmes # tile.chiseled_nether_bricks.name=Briques du Nether ciselées # tile.cracked_nether_bricks.name=Briques du Nether craquelées # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=Terre cuite jaune # tile.structure_block.name=Bloc de structure # structure_block.waterlog_block=Blocs remplis d'eau # tile.structure_void.name=Vide de structure # +tile.trial_spawner.name=Générateur d'épreuve # +tile.vault.name=Coffre-fort # tile.wool.black.name=Laine noire # tile.wool.blue.name=Laine bleue # tile.wool.brown.name=Laine brune # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=Fougère # tile.tallgrass.grass.name=Herbe # tile.tallgrass.name=Herbe # tile.tallgrass.shrub.name=Arbuste # +tile.tuff_brick_slab.name=Dalle en briques de tuf # +tile.tuff_brick_stairs.name=Escaliers en briques de tuf # +tile.tuff_brick_wall.name=Muret en briques de tuf # +tile.tuff_bricks.name=Briques de tuf # +tile.tuff_slab.name=Dalle de tuf # +tile.tuff_stairs.name=Escaliers en tuf # +tile.tuff_wall.name=Muret en tuf # tile.seagrass.seagrass.name=Herbier marin # tile.sea_pickle.name=Concombre de mer # tile.turtle_egg.name=Œuf de tortue de mer # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=Tapis rouge # tile.carpet.silver.name=Tapis gris pâle # tile.carpet.white.name=Tapis blanc # tile.carpet.yellow.name=Tapis jaune # +tile.crafter.name=Fabricateur # tile.crafting_table.name=Établi # tile.glazedTerracotta.white.name=Terre cuite blanche émaillée # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=Dalle en cuivre taillé ciré # tile.waxed_exposed_cut_copper_slab.name=Dalle en cuivre taillé, exposé, ciré # tile.waxed_weathered_cut_copper_slab.name=Dalle en cuivre taillé, érodé, ciré # tile.waxed_oxidized_cut_copper_slab.name=Dalle en cuivre taillé, oxydé, ciré # + +tile.chiseled_copper.name=Cuivre ciselé # +tile.exposed_chiseled_copper.name=Cuivre ciselé exposé # +tile.oxidized_chiseled_copper.name=Cuivre ciselé oxydé # +tile.waxed_chiseled_copper.name=Cuivre ciselé ciré # +tile.waxed_exposed_chiseled_copper.name=Cuivre ciselé exposé ciré # +tile.waxed_oxidized_chiseled_copper.name=Cuivre ciselé oxydé ciré # +tile.waxed_weathered_chiseled_copper.name=Cuivre ciselé érodé ciré # +tile.weathered_chiseled_copper.name=Cuivre ciselé érodé # + +tile.copper_bulb.name=Ampoule en cuivre # +tile.exposed_copper_bulb.name=Ampoule de cuivre exposé # +tile.oxidized_copper_bulb.name=Ampoule de cuivre oxydé # +tile.waxed_copper_bulb.name=Ampoule de cuivre ciré # +tile.waxed_exposed_copper_bulb.name=Ampoule de cuivre exposé ciré # +tile.waxed_oxidized_copper_bulb.name=Ampoule de cuivre oxydé ciré # +tile.waxed_weathered_copper_bulb.name=Ampoule de cuivre érodé ciré # +tile.weathered_copper_bulb.name=Ampoule de cuivre érodé # + +tile.copper_door.name=Porte en cuivre # +tile.exposed_copper_door.name=Porte en cuivre exposé # +tile.oxidized_copper_door.name=Porte en cuivre oxydé # +tile.waxed_copper_door.name=Porte en cuivre ciré # +tile.waxed_exposed_copper_door.name=Porte en cuivre exposé ciré # +tile.waxed_oxidized_copper_door.name=Porte en cuivre oxydé ciré # +tile.waxed_weathered_copper_door.name=Porte en cuivre érodé ciré # +tile.weathered_copper_door.name=Porte en cuivre érodé # + +tile.copper_grate.name=Grille en cuivre # +tile.exposed_copper_grate.name=Grille en cuivre exposé # +tile.oxidized_copper_grate.name=Grille en cuivre oxydé # +tile.waxed_copper_grate.name=Grille en cuivre ciré # +tile.waxed_exposed_copper_grate.name=Grille en cuivre exposé ciré # +tile.waxed_oxidized_copper_grate.name=Grille en cuivre oxydé ciré # +tile.waxed_weathered_copper_grate.name=Grille en cuivre érodé ciré # +tile.weathered_copper_grate.name=Grille en cuivre érodé # + +tile.copper_trapdoor.name=Trappe en cuivre # +tile.exposed_copper_trapdoor.name=Trappe en cuivre exposé # +tile.oxidized_copper_trapdoor.name=Trappe en cuivre oxydé # +tile.waxed_copper_trapdoor.name=Trappe en cuivre ciré # +tile.waxed_exposed_copper_trapdoor.name=Trappe en cuivre exposé ciré # +tile.waxed_oxidized_copper_trapdoor.name=Trappe en cuivre oxydé ciré # +tile.waxed_weathered_copper_trapdoor.name=Trappe en cuivre érodé ciré # +tile.weathered_copper_trapdoor.name=Trappe en cuivre érodé # + tile.raw_copper_block.name=Bloc de cuivre brut # tile.raw_iron_block.name=Bloc de fer brut # tile.raw_gold_block.name=Bloc d'or brut # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=Flèche de chance # tipped_arrow.effect.wither=Flèche de flétrissure # tipped_arrow.effect.turtleMaster=Flèche du Maître Tortue # tipped_arrow.effect.slowFalling=Flèche de chute lente # +tipped_arrow.effect.infested=Flèche d'infestation # +tipped_arrow.effect.oozing=Flèche de suintement # +tipped_arrow.effect.weaving=Flèche de tissage # +tipped_arrow.effect.windCharged=Flèche de charge de vent # structure_block.title=Bloc de structure # structure_block.structure_name=Nom de structure # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=Certaines de vos plus récentes modifi worldError.worldFailedRecovery=Échec de la récupération # worldError.worldFailedRecoveryText=Nous avons détecté un monde corrompu, mais n'avons pas pu le récupérer. # +writeThrottling.osDialog.body=L'opération demandée devrait prendre %d minutes. N'éteignez pas votre appareil pendant cette période. # +writeThrottling.osDialog.cancel=Annuler l'opération # +writeThrottling.osDialog.confirm=Continuer # +writeThrottling.progressBar.title=Préparation des données # +writeThrottling.progressBar.body=Préparation de vos fichiers... # + userData.recovered.title=Données sauvegardées récupérées # userData.recovered.text=Récupération réussie de vos paramètres corrompus d'utilisateur. # userData.recovered.warning=Certaines de vos plus récentes modifications peuvent avoir été perdues dans la récupération. # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=Message de chat # xbox.report.area.skin=Skin de joueur # xbox.report.area.gameplay=Jouabilité # xbox.report.area.ingame=Créations en jeu # -xbox.report.area.other=Autre # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=Cyberintimidation # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=Malheureusement, nous n’avons pas pu nou gathering.connect.title=Connexion... # gathering.info.qr.title.onlineService=En savoir plus # gathering.info.qr.body.onlineService.nso=Vous avez besoin d’un abonnement Nintendo Switch Online pour rejoindre un événement dans Minecraft. # -gathering.info.qr.body.onlineService.psn=Vous devez vous connecter au \"PlayStation Plus\" pour rejoindre un événement dans Minecraft. # +gathering.info.qr.body.onlineService.psn=Vous devez vous connecter à PlayStation®Plus pour rejoindre un événement dans Minecraft. #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=Vous devez vous connecter pour rejoindre un événement dans Minecraft. # gathering.info.qr.title.childAccount=Jeu en ligne non autorisé # gathering.info.qr.body.childAccount=Vos paramètres de contrôle parental actuels vous empêchent de jouer en ligne. # diff --git a/resource_pack/texts/fr_FR.lang b/resource_pack/texts/fr_FR.lang index 7a3ca9068..facb5d88b 100644 --- a/resource_pack/texts/fr_FR.lang +++ b/resource_pack/texts/fr_FR.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=Choisir une graine # accessibility.start.feedback=Lien pour envoyer des commentaires vers le site Web # accessibility.start.new=Nouveau # -accessibility.start.profile=Choisir un profil # accessibility.start.skinPicker=Choisir une skin # accessibility.store.tag=Étiquette # @@ -461,23 +460,23 @@ authentication.demo.body.default=Début de l'expérience de démo… # authentication.demo.body.error=Nous sommes désolés, mais cette leçon n'est actuellement pas disponible. # authentication.demo.title=Chargement de la démo # authentication.demo.title.error=Leçon non disponible # -authentication.pleaseSignIn=Connectez-vous à votre compte d'école ou d'organisation pour utiliser Minecraft Education. # +authentication.pleaseSignIn=Connectez-vous à votre compte d'école ou d'organisation pour utiliser Minecraft: Education. # authentication.loggingin=Connexion en cours... # authentication.signIn=Se connecter # authentication.signIn.tryAgain=Réessayer # authentication.signingInTo=Connexion à %s # authentication.unableToConnect=Impossible de se connecter # -authentication.unauthenticated=Ce compte n'est pas autorisé à utiliser Minecraft Education. # +authentication.unauthenticated=Ce compte n'est pas autorisé à utiliser Minecraft: Education. # authentication.location=Pour plus d'informations : # authentication.tryagain=Se connecter avec un autre compte # authentication.welcome=Bienvenue, %s ! # authentication.exitingGame=Au revoir, revenez vite. # -authentication.finalTrialWarning=Il s'agit de votre dernier essai sur Minecraft Education.%1%1Après cette session, votre école ou votre organisation devra acheter une licence pour que vous puissiez continuer à utiliser toutes les fonctionnalités de Minecraft Education. # -authentication.oneTrialWarning=Il vous reste 1 essai sur Minecraft Education, ensuite votre école ou organisation devra acheter une licence.%1%1Chaque ouverture de Minecraft Education compte pour un essai. # +authentication.finalTrialWarning=Il s'agit de votre dernier essai sur Minecraft: Education.%1%1Après cette session, votre école ou votre organisation devra acheter une licence pour que vous puissiez continuer à utiliser toutes les fonctionnalités de Minecraft: Education. # +authentication.oneTrialWarning=Il vous reste 1 essai sur Minecraft: Education, ensuite votre école ou organisation devra acheter une licence.%1%1Chaque ouverture de Minecraft: Education compte pour un essai. # authentication.trialMessageTitle=Essai gratuit # -authentication.trialWelcome=Bienvenue !%1%1Il vous reste %2 essais de Minecraft Education, ensuite votre école ou organisation devra acheter une licence.%1%1Chaque ouverture de Minecraft Education compte pour un essai. Amusez-vous ! # -authentication.trialWarning=Il vous reste %2 essais de Minecraft Education, ensuite votre école ou organisation devra acheter une licence.%1%1Chaque ouverture de Minecraft Education compte pour un essai. # -authentication.trialEnded=Votre essai de Minecraft Education est terminé.%1%1Votre école ou organisation devra acheter une licence afin de vous permettre de continuer à utiliser toutes les fonctionnalités de Minecraft Education.%1%1Cela vous déconnectera de votre compte %2 maintenant et vous pourrez découvrir notre leçon de démonstration limitée. # +authentication.trialWelcome=Bienvenue !%1%1Il vous reste %2 essais de Minecraft: Education, ensuite votre école ou organisation devra acheter une licence.%1%1Chaque ouverture de Minecraft: Education compte pour un essai. Amusez-vous ! # +authentication.trialWarning=Il vous reste %2 essais de Minecraft: Education, ensuite votre école ou organisation devra acheter une licence.%1%1Chaque ouverture de Minecraft: Education compte pour un essai. # +authentication.trialEnded=Votre essai de Minecraft: Education est terminé.%1%1Votre école ou organisation devra acheter une licence afin de vous permettre de continuer à utiliser toutes les fonctionnalités de Minecraft: Education.%1%1Cela vous déconnectera de votre compte %2 maintenant et vous pourrez découvrir notre leçon de démonstration limitée. # authentication.trialEndedTitle=Période d'essai terminée # authentication.clickToPurchase=Comment acheter ### Translations should be 20 characters or less authentication.adalException=Impossible de vous connecter au service demandé pour le moment. Vérifiez votre connexion, puis réessayez. # @@ -491,11 +490,11 @@ authentication.signInButton=Se connecter avec un autre compte # authentication.signInRequired=Connexion requise # authentication.store.confirm.button=Valider # authentication.store.confirmPurchase=Confirmer l'achat # -authentication.store.intro=Votre essai de Minecraft Education est terminé. Vous devez acheter une licence pour continuer à utiliser Minecraft Education. # +authentication.store.intro=Votre essai de Minecraft: Education est terminé. Vous devez acheter une licence pour continuer à utiliser Minecraft: Education. # authentication.store.popup.purchaseFailed.title=Une erreur s'est produite # authentication.store.popup.purchaseFailed.msg=Impossible de terminer votre achat. Peut-être devriez-vous vérifier votre connexion Internet ? # authentication.store.purchase.info1=Le paiement est prélevé sur votre compte iTunes lors de la confirmation d'achat et l'abonnement est reconduit automatiquement, à moins de désactiver cette option au moins 24 heures avant la fin de la période en cours. Le montant de la reconduction est prélevé sur votre compte dans les 24 heures avant la fin de la période en cours, au prix correspondant à l'option d'abonnement sélectionnée. # -authentication.store.purchase.info2=Vous pouvez gérer votre abonnement et désactiver la reconduction automatique en accédant aux paramètres de votre compte iTunes après l'achat. Si vous annulez l'abonnement après son activation, le prorata restant de la période d'abonnement active ne vous sera pas remboursé. Votre compte iTunes doit être connecté à votre compte Office 365 Éducation pour cet abonnement, autrement vous ne pourrez pas acheter de licences Minecraft Education supplémentaires avec ce compte iTunes. # +authentication.store.purchase.info2=Vous pouvez gérer votre abonnement et désactiver la reconduction automatique en accédant aux paramètres de votre compte iTunes après l'achat. Si vous annulez l'abonnement après son activation, le prorata restant de la période d'abonnement active ne vous sera pas remboursé. Votre compte iTunes doit être connecté à votre compte Office 365 Éducation pour cet abonnement, autrement vous ne pourrez pas acheter de licences Minecraft: Education supplémentaires avec ce compte iTunes. # authentication.store.purchase.button=Acheter une licence (%s/an) # authentication.store.terms=Conditions générales # authentication.store.viewTermsAndConditions=Conditions générales de vente # @@ -507,11 +506,11 @@ authentication.error.generic.body=Nous n'avons pas pu vous connecter. Assurez-vo authentication.error.generic.link1=En savoir plus sur l'éligibilité des comptes. # authentication.error.generic.link2=Essayez une leçon de démonstration. # authentication.error.outOfDate.title=Mise à jour nécessaire # -authentication.error.outOfDate.body=Nous sommes désolés, mais cette version de Minecraft Education n'est plus prise en charge. Veuillez procéder à la mise à jour vers la version la plus récente pour continuer à jouer. # +authentication.error.outOfDate.body=Nous sommes désolés, mais cette version de Minecraft: Education n'est plus prise en charge. Veuillez procéder à la mise à jour vers la version la plus récente pour continuer à jouer. # authentication.error.outOfDate.downloadPage=Accéder à la page Télécharger # -authentication.error.accountType.body=Oups ! On dirait que vous utilisez un compte personnel. Vous ne pouvez pas utiliser Minecraft Education avec ce compte. Connectez-vous avec le compte de votre école ou votre organisation, puis réessayez. # +authentication.error.accountType.body=Oups ! On dirait que vous utilisez un compte personnel. Vous ne pouvez pas utiliser Minecraft: Education avec ce compte. Connectez-vous avec le compte de votre école ou votre organisation, puis réessayez. # -eula.intro=Pour utiliser Minecraft Education, vous devez accepter le Contrat de licence utilisateur final. # +eula.intro=Pour utiliser Minecraft: Education, vous devez accepter le Contrat de licence utilisateur final. # eula.location=Le CLUF est disponible à l'adresse : # eula.title=Contrat de licence utilisateur final (CLUF) # eula.view=Voir le CLUF # @@ -1094,10 +1093,6 @@ commands.me.description=Affiche un message à propos de vous. # commands.message.display.incoming=%1$s vous chuchote : %2$s # commands.message.display.outgoing=Vous chuchotez à %1$s : %2$s # commands.message.sameTarget=Vous ne pouvez pas vous envoyer de message privé ! # -commands.message.warn=§4 Vous avez reçu un avertissement. Votre comportement est susceptible d'offenser d'autres joueurs. Respectez les personnes avec lesquelles vous jouez. # -commands.message.toastWarn=Minecraft est pour tout le monde ! Assurez-vous que votre comportement est conforme aux normes de notre communauté. # -commands.warn.invalidWarningLevel=Niveau d'avertissement non valide. # -commands.warn.playerDoesNotExist=Impossible de trouver le joueur. Veuillez sélectionner un joueur valide. # commands.mobevent.description=Contrôle les événements que les créatures peuvent exécuter. # commands.mobevent.eventsEnabledSetToTrue=Les événements de créatures sont désormais activés. Les événements individuels réglés sur Faux ne seront pas exécutés. # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=- %s : %s de %d %d %d à %d %d %d # commands.volumearea.entry.withoutIdentifier=- %s : de %d %d %d à %d %d %d # commands.volumearea.noneExist.currentDimension=Il n'y a aucun volume dans la dimension actuelle. # commands.volumearea.inUse=%1$d/%2$d volumes utilisés. # -commands.warn.description=Envoie un message d'avertissement au joueur. # commands.weather.clear=Changement pour un ciel dégagé # commands.weather.description=Définit la météo. # commands.weather.disabled=Cycle météorologique n'est pas activé dans ce monde. # @@ -1572,6 +1566,7 @@ container.beacon=Balise # container.brewing=Alambic # container.chest=Coffre # container.chestDouble=Grand coffre # +container.crafter=Fabricateur # container.crafting=Fabrication # container.creative=Sélection d'objet # container.dispenser=Distributeur # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=Cavernes et falaises # createWorldScreen.cavesandcliffsDescription=Explorez la nouvelle génération de grottes variées # createWorldScreen.spectatorMode=Mode spectateur # createWorldScreen.spectatorModeDescription=Essayez les premières versions du mode Spectateur # -createWorldScreen.experimentalCameras=Caméras expérimentales # -createWorldScreen.experimentalCamerasDescription=Contient des exemples de préréglages de caméra (la commande caméra n'est plus expérimentale). # createWorldScreen.recipeUnlocking=Déverrouillage de recettes # createWorldScreen.recipeUnlockingDescription=Activer le déverrouillage de recettes # createWorldScreen.experimentalholiday=Fonctionnalités de créateur liées aux fêtes # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=Création du nouveau monde... # createWorldScreen.progress.realms=Réinitialisation du Realm... # createWorldScreen.seed.desc=Saisissez une valeur initiale pour générer à nouveau le même terrain. Champ vide = monde aléatoire. # createWorldScreen.showCoordinates=Afficher les coordonnées # +createWorldScreen.showDaysPlayed=Afficher le nombre de jours joués # createWorldScreen.worldType=Type de monde # createWorldScreen.randomtickspeed=Vitesse de tick aléatoire # createWorldScreen.randomtickspeed.reset=Réinitialiser la vitesse de tick aléatoire # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=Supprimer le projet # createWorldScreen.editor.projectOptionsLabel=Options de projet # createWorldScreen.editor.delete.confirm=Supprimer définitivement le projet ? # createWorldScreen.editor.deleteWarningFormat=Voulez-vous vraiment supprimer « %s » ? Ce projet sera perdu à jamais ! # +createWorldScreen.eduCloud.about.body=Nom du fichier : '%1$s'%2$sModifié le : %3$s%4$sPour lancer le téléchargement, cliquez sur OK, puis sur Télécharger.%5$s # +createWorldScreen.eduCloud.about.title=À propos du fichier du monde Cloud # createWorldScreen.eduCloud.delete.confirm=Supprimer le monde local ? # createWorldScreen.eduCloud.deleteWarningFormat=Êtes-vous sûr de vouloir supprimer « %1$s » sur cet appareil ? %2$sLa version du cloud '%3$s' ne sera pas affectée et peut être resynchronisée plus tard. # createWorldScreen.experimentalDeferredTechnicalPreview=Afficher les fonctionnalités de dragon pour les créateurs # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Windows Store # realmsSettingsScreen.xboxOneStoreDisplayName=Marché Xbox # realmsSettingsScreen.amazonStoreDisplayName=l'App-Shop Amazon # realmsSettingsScreen.oculusStoreDisplayName=l'Oculus Store # -realmsSettingsScreen.berwickStoreDisplayName=« PlayStation Store » # -realmsSettingsScreen.SonyStoreDisplayName=« PlayStation Store » #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=une boutique inconnue # realmsSettingsScreen.extendingRealm=Prolongation du Realm... # realmsSettingsScreen.offerError.title=Achat en attente # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=Les packs achetés en dehors du xbl.syncIAP.confirmSync.prompt.yes=Oui, synchroniser mes achats # xbl.marketplace.account.error.body.nobutton=Il y a un problème avec votre compte. Vous ne pourrez pas utiliser le magasin tant que nous n'aurons pas résolu ce problème. Si celui-ci persiste pendant plusieurs jours, veuillez contacter l'assistance. # -xbl.marketplace.account.banned.body.nobutton=Vous ne pouvez pas utiliser le magasin jusqu'à l'expiration de votre suspension. # playfab.account.banned.temporary=suspendu # playfab.account.banned.permanent=banni # @@ -2487,6 +2482,14 @@ date.daysAbbreviated1Char=%s j ### It needs to be abbreviated with no more than date.hoursAbbreviated1Char=%sh ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%sm ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%ss ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s jours # +date.hoursPlural=%s heures # +date.minutesPlural=%s minutes # +date.secondsPlural=%s secondes # +date.daySingular=%s jour # +date.hourSingular=%s heure # +date.minuteSingular=%s minute # +date.secondSingular=%s seconde # date.timeLeft=%s restant(e)s # dayOneExperience.carousel.title=Bienvenue dans le nouveau Minecraft ! # @@ -2672,10 +2675,10 @@ disconnectionScreen.incompatibleRealm=Votre client est incompatible ou obsolète disconnectionScreen.realmsAlphaEndedTitle=Le test de Realms Alpha a pris fin. Merci pour votre aide ! # disconnectionScreen.realmsAlphaEndedMessage=Realms n'est pas disponible pour l'instant # disconnectionScreen.disconnected=Déconnexion du serveur # -disconnectionScreen.editionMismatch=Ce monde a été sauvegardé depuis Minecraft Education. Vous ne pouvez pas le charger. # -disconnectionScreen.editionMismatchEduToVanilla=Le serveur n'exécute pas Minecraft Education. Échec de la connexion. # +disconnectionScreen.editionMismatch=Ce monde a été sauvegardé depuis Minecraft: Education. Vous ne pouvez pas le charger. # +disconnectionScreen.editionMismatchEduToVanilla=Le serveur n'exécute pas Minecraft: Education. Échec de la connexion. # disconnectionScreen.editionMismatchVanillaToEdu=Le serveur exécute une édition incompatible de Minecraft. Échec de la connexion. # -disconnectionScreen.editionVersionMismatch.body=Le monde que vous avez sélectionné ne peut pas être ouvert avec cette version de Minecraft Education. # +disconnectionScreen.editionVersionMismatch.body=Le monde que vous avez sélectionné ne peut pas être ouvert avec cette version de Minecraft: Education. # disconnectionScreen.editionVersionMismatch.title=Impossible de charger le monde. # disconnectionScreen.futureVersion=Ce monde a été sauvegardé avec une version plus récente du jeu et ne peut pas être chargé. # disconnectionScreen.internalError.cantConnect=Impossible de vous connecter. # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=HÔTE # edu.worlds_screen.settings=PARAMÈTRES # edu.worlds_screen.download=TÉLÉCHARGER ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=GÉRER # +edu.worlds_screen.about=À PROPOS # edu.worlds_screen.back=RETOUR # edu.worlds_screen.copy=COPIER # edu.worlds_screen.export=EXPORTER # @@ -2786,12 +2790,18 @@ edu.templates.delete_title=Supprimer ce modèle de monde ? # edu.templates.delete_body=Êtes-vous sûr de vouloir supprimer le modèle de monde « %s » ? Cela n'affectera aucun monde que vous avez créé depuis ce modèle. # edu.templates.delete_confirm=Supprimer # edu.templates.info_banner=Les modèles de monde sont des plans que vous pouvez utiliser pour créer de nouveaux mondes qui commencent toujours de la même manière. # -edu.templates.empty_banner=Vous pouvez obtenir des modèles de monde à partir de la bibliothèque de Minecraft Education, d'autres utilisateurs de Minecraft Education ou de education.minecraft.net. # +edu.templates.empty_banner=Vous pouvez obtenir des modèles de monde à partir de la bibliothèque de Minecraft: Education, d'autres utilisateurs de Minecraft: Education ou de education.minecraft.net. # edu.pause.multiplayer.disabled=Le mode multijoueur n'est pas disponible dans cette leçon. # effect.badOmen=Mauvais présage # +effect.infested=Infesté # +effect.oozing=Suintant # +effect.raid_omen=Présage d'invasion # +effect.trial_omen=Augure d'épreuve # effect.villageHero=Héros du village # +effect.weaving=Tissage # +effect.wind_charged=Charge de vent # enchantment.arrowDamage=Puissance # enchantment.arrowFire=Flamme # @@ -2810,6 +2820,9 @@ enchantment.durability=Solidité # enchantment.fire=Aura de Feu # enchantment.fishingSpeed=Appât # enchantment.frostwalker=Semelles givrantes # +enchantment.heavy_weapon.breach=Infraction # +enchantment.heavy_weapon.density=Densité # +enchantment.heavy_weapon.windburst=Rafale de vent # enchantment.knockback=Recul # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=Chauve-souris # entity.bee.name=Abeille # entity.blaze.name=Blaze # entity.boat.name=Bateau # +entity.bogged.name=Embourbé # +entity.breeze.name=Breeze # +entity.breeze_wind_charge_projectile.name=Charge de vent # entity.cat.name=Chat # entity.cave_spider.name=Araignée venimeuse # entity.chicken.name=Poulet # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=Villageois non qualifié # entity.villager_v2.name=Villageois # entity.vindicator.name=Vindicateur # entity.wandering_trader.name=Marchand voyageur # +entity.wind_charge_projectile.name=Charge de vent # entity.witch.name=Sorcière # entity.wither.name=Wither # entity.wither_skeleton.name=Wither squelette # @@ -3009,6 +3026,7 @@ feature.ruins=Ruines aquatiques # feature.pillager_outpost=Avant-poste de pillards # feature.bastion_remnant=Vestiges de bastion # feature.ruined_portal=Portail en ruines # +feature.trial_chambers=Salles d'épreuve # feed.like=J'aime # feed.manage_feed=Gérer le flux # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=Utilisez :tip_left_stick: pour vous déplacer. gameTip.flying.mouse=Appuyez deux fois sur :_input_key.jump: pour voler # gameTip.flying.touch=Appuyez deux fois sur la commande Sauter pour voler # +gameTip.flyDown.mouse=Appuyez sur :_input_key.sneak: pour voler vers le bas # +gameTip.flyUp.mouse=Appuyez sur :_input_key.jump: pour voler vers le haut # + +gameTip.stopFlying.mouse=Appuyez deux fois sur :_input_key.jump: pour arrêter de voler # +gameTip.stopFlying.touch=Appuyez deux fois sur « Voler vers le bas » pour arrêter de voler # + gameTip.jump.mouse=Sautez avec :_input_key.jump: # +gameTip.swim.mouse=Appuyez longuement sur :_input_key.jump: pour nager vers le haut # -gameTip.hotbar.mouse=Utilisez la molette de la souris pour sélectionner # dans la barre d'action et le placer dans votre main. # -gameTip.hotbar.touch=Touchez # dans la barre d'action pour le placer dans votre main. # -gameTip.hotbar.controller=Touchez # dans la barre d'action pour le placer dans votre main. # +gameTip.hotbar.selection.mouse=Faites défiler ou appuyez sur %s pour tenir l'élément ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=Appuyez sur l'élément dans la barre d'action pour le tenir # gameTip.breakBlock.mouse=Maintenez le bouton gauche de la souris pour casser les blocs. # gameTip.breakBlock.touch=Touchez et maintenez pour casser les blocs. # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=Vous vous faufilez ! Vous ne tomberez pas des bords mainten gameTip.sneak.touch=Vous vous faufilez, vous ne tomberez pas des bords. # gameTip.sneak.controller=Vous vous faufilez, vous ne tomberez pas des bords. # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=Placez votre établi. Tenez-le et cliquez pour le placer. # gameTip.placeCraftingTable.touch=Placez votre établi en appuyant sur le sol. # gameTip.placeCraftingTable.controller=Pour placer votre établi, placez-le dans votre main puis touchez le sol. # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=Merci d’avoir partagé votre avis ! # gui.submitFeedback.failure.status.unprocessableEntity=Vous ne possédez pas l’objet pour lequel vous essayez de soumettre un commentaire. (Code d’erreur : %d) # gui.submitFeedback.failure.status.tooManyRequests=Oh non ! Vous avez envoyé trop d’avis, veuillez réessayer ultérieurement. (Code d’erreur : %d) # gui.submitFeedback.failure.status.other=Vous ne pouvez pas soumettre votre avis pour le moment, veuillez réessayer ultérieurement. (Code d’erreur : %d) # +gui.togglable_slot=Appuyez pour désactiver l'emplacement # gui.playOffline=Jouer hors ligne # gui.signIn=Se connecter # gui.genericNetworkError=Une erreur est survenue. Vérifiez votre connexion Internet. # @@ -3235,10 +3260,10 @@ gui.editor.exportProject=Exporter le projet # gui.editor.copyProject=Copier le projet # gui.editor.copyProject.failedMessage=Impossible de créer une copie de ce projet. Ce problème peut provenir d'un manque d'espace de stockage ou d'un autre problème. Consultez la page https://aka.ms/MCStorage pour en savoir plus. # -gui.edu.exitGameWarningCaption=Minecraft Education ### Use Minecraft 教育版 in zh_CN translation -gui.edu.exitGameWarningMessage=Quitter Minecraft Education? ### Use 离开 Minecraft 教育版? in zh_CN translation -gui.edu.exitGameWarningCaptionPreview=Avant-première de Minecraft Education # -gui.edu.exitGameWarningMessagePreview=Quitter l'avant-première de Minecraft Education ? # +gui.edu.exitGameWarningCaption=Minecraft: Education ### Use Minecraft 教育版 in zh_CN translation +gui.edu.exitGameWarningMessage=Quitter Minecraft: Education? ### Use 离开 Minecraft 教育版? in zh_CN translation +gui.edu.exitGameWarningCaptionPreview=Avant-première de Minecraft: Education # +gui.edu.exitGameWarningMessagePreview=Quitter l'avant-première de Minecraft: Education ? # updateScreen.update=Mise à jour # updateScreen.updateRequired=Mise à jour nécessaire # @@ -3467,7 +3492,7 @@ howtoplay.craftingATool.text.2.touch=Pour fabriquer un outil, ouvrez votre §eé howtoplay.worldBuilder=Constructeur de monde # howtoplay.worldBuilder.title=Comment jouer : constructeur de monde # -howtoplay.worldBuilder.text.1=Pour placer ou utiliser certains blocs ou objets dans Minecraft Education, le joueur doit posséder une capacité spéciale appelée « Constructeur de monde ». # +howtoplay.worldBuilder.text.1=Pour placer ou utiliser certains blocs ou objets dans Minecraft: Education, le joueur doit posséder une capacité spéciale appelée « Constructeur de monde ». # howtoplay.worldBuilder.text.2=Lorsque les triches sont activées, l'hôte peut activer ou désactiver la capacité Constructeur de monde pour n'importe quel joueur dans le monde. # howtoplay.worldBuilder.text.3=Pour conférer la capacité Constructeur de monde à tous les joueurs dans le monde, exécutez la commande suivante : # howtoplay.worldBuilder.text.4=/ability @a worldbuilder true # @@ -3479,7 +3504,7 @@ howtoplay.worldBuilder.text.9=/ability @p worldbuilder # howtoplay.permissionBlocks=Autorisations des blocs # howtoplay.permissionBlocks.title=Comment jouer : blocs d'autorisation # -howtoplay.permissionBlocks.text.1=Minecraft Education propose différents blocs spéciaux qui aident les enseignants à créer et appliquer des leçons. Seuls les joueurs qui disposent de la capacité Constructeur de monde peuvent placer et détruire ces blocs. Seuls les joueurs qui ne disposent pas de la capacité Constructeur de monde subissent les restrictions imposées par ces blocs. # +howtoplay.permissionBlocks.text.1=Minecraft: Education propose différents blocs spéciaux qui aident les enseignants à créer et appliquer des leçons. Seuls les joueurs qui disposent de la capacité Constructeur de monde peuvent placer et détruire ces blocs. Seuls les joueurs qui ne disposent pas de la capacité Constructeur de monde subissent les restrictions imposées par ces blocs. # howtoplay.permissionBlocks.title.1=Autorisation/Refus # howtoplay.permissionBlocks.text.2=Les blocs d'autorisation et de refus déterminent les endroits où les joueurs peuvent construire dans un monde. # howtoplay.permissionBlocks.text.3=Les joueurs peuvent placer ou détruire des blocs au-dessus des blocs d'autorisation. Les joueurs ne peuvent pas placer ou détruire des blocs au-dessus des blocs de refus. # @@ -3515,7 +3540,7 @@ howtoplay.chalkboard.text.1.touch=Les tableaux noirs permettent d'afficher des t howtoplay.chemistry=Chimie # howtoplay.chemistry.title=Comment jouer : chimie # howtoplay.chemistry.text.1=Les élèves peuvent simuler de vraies expériences chimiques en utilisant les blocs d'équipement de laboratoire. Construisez l'un des 118 éléments différents en ajustant les curseurs dans le constructeur d'éléments ou visualisez la composition des éléments en les plaçant dans le constructeur d'éléments. Combinez des éléments dans le créateur de composés pour produire des composés chimiques. Placez des éléments et des composés sur la paillasse de laboratoire pour créer des objets Minecraft. Réduisez des blocs à leurs éléments de base grâce au réducteur de matières premières. # -howtoplay.chemistry.text.2=Téléchargez la revue de chimie sur le site de Minecraft Education pour tout savoir sur la chimie dans Minecraft. # +howtoplay.chemistry.text.2=Téléchargez la revue de chimie sur le site de Minecraft: Education pour tout savoir sur la chimie dans Minecraft. # howtoplay.npc=Personnages non joueurs # howtoplay.npc.title=Comment jouer : personnages non-joueurs # @@ -3539,8 +3564,8 @@ howtoplay.portfolio.text.1.touch=Les photos que vous avez prises apparaissent da howtoplay.classroomMode=Mode Classe # howtoplay.classroomMode.title=Comment jouer : mode Classe # -howtoplay.classroomMode.text.1=Le Mode Classe est une application externe qui offre aux enseignants des fonctionnalités permettant de faciliter les interactions avec les élèves. Vous pouvez télécharger le Mode Classe sur le site de Minecraft Education. # -howtoplay.classroomMode.text.2=Utilisez la commande /classroommode en tant qu'hôte d'un monde pour lancer l'application Mode Classe et la connecter à Minecraft Education. # +howtoplay.classroomMode.text.1=Le Mode Classe est une application externe qui offre aux enseignants des fonctionnalités permettant de faciliter les interactions avec les élèves. Vous pouvez télécharger le Mode Classe sur le site de Minecraft: Education. # +howtoplay.classroomMode.text.2=Utilisez la commande /classroommode en tant qu'hôte d'un monde pour lancer l'application Mode Classe et la connecter à Minecraft: Education. # howtoplay.codeBuilder=Code Builder # howtoplay.codeBuilder.title=Comment jouer : Code Builder # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=Explorez un monde de possibilités avec les minecoins howtoplay.minecoins.text.2=Une fois échangées, vos minecoins sont liées à votre compte Microsoft, ce qui vous permet d'accéder à vos pièces et à vos achats sur d'autres appareils pris en charge ! # howtoplay.minecoins.button.text.1=Obtenir des Pièces # howtoplay.minecoins.header.1=Clause de non-responsabilité # -howtoplay.minecoins.text.3=*Les minecoins nécessitent une version de Minecraft: Bedrock Edition incluant le magasin Minecraft. Les minecoins ne sont pas compatibles sur Sony PlayStation. Pour plus d'informations sur la compatibilité, veuillez consulter à minecraft.net/minecoins  # +howtoplay.minecoins.text.3=*Les minecoins nécessitent une version de Minecraft: Bedrock Edition incluant le magasin Minecraft. Les minecoins ne sont pas compatibles sur Sony PlayStation®. Pour plus d'informations au sujet de la compatibilité, veuillez consulter minecraft.net/minecoins  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=Minage # @@ -3949,14 +3974,14 @@ howtoplay.redstone.text.3=Placez de la poudre de redstone à côté d'une source howtoplay.redstone.text.4=De nombreux objets utilisent un signal de redstone pour faire quelque chose, comme les entonnoirs ou les pistons. # howtoplay.redstone.text.5=Les possibilités d'utilisation de la redstone sont infinies ! Essayez de créer quelque chose d'utile pour vous-même, comme une ferme automatique ! # -howtoplay.realms_stories=Stories de Realms # +howtoplay.realms_stories=Realms Stories # howtoplay.realms_stories.text.1=Un hub social pour vous et tous les membres du realm. Partagez vos aventures et vos créations en publiant des histoires sur le flux de stories, puis aimez et commentez pour célébrer les histoires partagées par d'autres membres. # howtoplay.realms_stories.header.1=Racontez votre histoire # howtoplay.realms_stories.text.2=Pour écrire votre propre histoire, cliquez sur le bouton « AJOUTER UNE HISTOIRE » dans le flux de stories. Vous pouvez choisir d'inclure une capture d'écran, du texte, ou les deux ! En cliquant sur le bouton « PUBLIER », vous partagerez votre texte ou votre capture d'écran dans le flux de stories pour que tous les membres du realm puissent en profiter. Si vous n'avez pas de capture d'écran à publier, utilisez l'§eappareil photo§f:camera: dans le menu du jeu pour immortaliser le moment. # howtoplay.realms_stories.header.2=Restez à jour # howtoplay.realms_stories.text.3=À chaque nouvelle histoire publiée dans le flux de stories, si vous ne l'avez pas encore lue, un numéro apparaîtra sur le bouton « REALMS STORIES ». Vous saurez ainsi toujours quand il y a quelque chose de nouveau à découvrir dans la communauté de votre realm. Si vous aimez ce que quelqu'un a partagé, n'hésitez pas à lui laisser un J'aime ou un commentaire sur son histoire ! # howtoplay.realms_stories.header.3=Organisez une partie # -howtoplay.realms_stories.text.4=Consultez la Timeline pour savoir qui joue et quand. Faites défiler les membres du realm pour voir quand ils ont joué pour la dernière fois et avec qui. Utilisez ces informations pour organiser une partie et savoir quand tout le monde est disponible. # +howtoplay.realms_stories.text.4=Consultez la Chronologie pour savoir qui joue et quand. Faites défiler les membres du realm pour voir quand ils ont joué pour la dernière fois et avec qui. Utilisez ces informations pour organiser une partie et savoir quand tout le monde est disponible. # howtoplay.realms_stories.header.4=Sachez qui se trouve dans le realm # howtoplay.realms_stories.text.5=Découvrez qui fait partie du realm en utilisant l'onglet « Membres ». Il s'agit d'une liste de tous les joueurs autorisés à jouer ici. Vous pouvez voir qui est le propriétaire du realm, qui sont les administrateurs, et qui a rejoint Realms Stories pour ce realm. Des options de recherche, de tri et de filtrage sont disponibles pour vous aider à trouver exactement qui vous recherchez. # howtoplay.realms_stories.header.5=Connectez-vous depuis n'importe où # @@ -4127,7 +4152,7 @@ howtoplay.yourFirstCraft.text.5=Essayez de placer deux planches l'une au-dessus immersive_reader.book_page_header=Page %1 sur %2 # immersive_reader.portfolio_page_header= Page %1 # immersive_reader.error.webview_failure=Un problème est survenu lors de la connexion avec le lecteur immersif. # -immersive_reader.error.identity_failure=Un problème est survenu lors de la connexion avec le lecteur immersif. Redémarrez Minecraft Education et réessayez. # +immersive_reader.error.identity_failure=Un problème est survenu lors de la connexion avec le lecteur immersif. Redémarrez Minecraft: Education et réessayez. # level.launch.failed=Échec du lancement # level.export.started=L’exportation du monde a commencé... # @@ -4145,7 +4170,7 @@ level.editor.export.failed=Échec de l’exportation du projet # level.editor.import.failed=Échec de l’importation du projet # level.editor.import.failed.incompatibleEdition=Échec de l'importation du projet : format de fichier non pris en charge # -inbox.invite.title=Invitation à Realms # +inbox.invite.title=Invitation au Realm à # invite.clear=Effacer la sélection # invite.send=Envoyer %d invitations # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=Taillé, au second de gueules # item.banner.diagonal_up_right.silver=Taillé, au second d'argent grisé # item.banner.diagonal_up_right.white=Taillé, au second d'argent # item.banner.diagonal_up_right.yellow=Taillé, au second d'or # +item.banner.flow.black=Flux noir # +item.banner.flow.blue=Flux bleu # +item.banner.flow.brown=Flux marron # +item.banner.flow.cyan=Flux cyan # +item.banner.flow.gray=Flux gris # +item.banner.flow.green=Flux vert # +item.banner.flow.lightBlue=Flux bleu ciel # +item.banner.flow.lime=Flux vert clair # +item.banner.flow.magenta=Flux magenta # +item.banner.flow.orange=Flux orange # +item.banner.flow.pink=Flux rose # +item.banner.flow.purple=Flux violet # +item.banner.flow.red=Flux rouge # +item.banner.flow.silver=Flux gris clair # +item.banner.flow.white=Flux blanc # +item.banner.flow.yellow=Flux jaune # item.banner.flower.black=Fleur de sable # item.banner.flower.blue=Fleur d'azur # item.banner.flower.brown=Fleur de tanné # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=Dégradé d'argent en pointe # item.banner.gradient_up.yellow=Dégradé d'or en pointe # item.banner.gray.name=Bannière grise # item.banner.green.name=Bannière verte # +item.banner.guster.black=Tornade noire # +item.banner.guster.blue=Tornade bleue # +item.banner.guster.brown=Tornade marron # +item.banner.guster.cyan=Tornade cyan # +item.banner.guster.gray=Tornade grise # +item.banner.guster.green=Tornade verte # +item.banner.guster.lightBlue=Tornade bleu ciel # +item.banner.guster.lime=Tornade vert clair # +item.banner.guster.magenta=Tornade magenta # +item.banner.guster.orange=Tornade orange # +item.banner.guster.pink=Tornade rose # +item.banner.guster.purple=Tornade violette # +item.banner.guster.red=Tornade rouge # +item.banner.guster.silver=Tornade gris clair # +item.banner.guster.white=Tornade blanche # +item.banner.guster.yellow=Tornade jaune # item.banner.half_horizontal.black=Coupé, au premier de sable # item.banner.half_horizontal.blue=Coupé, au premier d'azur # item.banner.half_horizontal.brown=Coupé, au premier de tanné # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=Bateau en acacia # item.boat.big_oak.name=Bateau en chêne noir # item.bone.name=Os # item.book.name=Livre # +item.breeze_rod.name=Bâton de Breeze # item.chainmail_boots.name=Bottes de mailles # item.leather_boots.name=Bottes en cuir # item.diamond_boots.name=Bottes en diamant # @@ -4991,6 +5049,7 @@ item.comparator.name=Comparateur de redstone # item.compass.name=Boussole # item.lodestonecompass.name=Boussole magnétisée # item.cookie.name=Cookie # +item.copper_door.name=Porte en cuivre # item.crossbow.name=Arbalète # item.diamond.name=Diamant # item.repeater.name=Répéteur de redstone # @@ -5038,6 +5097,7 @@ tile.end_rod.name=Barre de l'Ender # item.ender_eye.name=Œil de l'Ender # item.ender_pearl.name=Perle de l'Ender # item.experience_bottle.name=Fiole d'expérience # +item.exposed_copper_door.name=Porte en cuivre peu oxydé # item.feather.name=Plume # item.fermented_spider_eye.name=Œil d'araignée fermenté # item.fireball.name=Salve de feu # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=Jambières en or # item.iron_leggings.name=Jambières en fer # item.nautilus_shell.name=Coquille de nautile # item.heart_of_the_sea.name=Cœur de l'océan # +item.mace.name=Masse d'armes # item.magma_cream.name=Crème de magma # item.map.name=Carte # item.map.exploration.mansion.name=Carte d'exploration des bois # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=Carte du village de la savane # item.map.exploration.village_desert.name=Carte du village du désert # item.map.exploration.jungle_temple.name=Carte d'exploration de la Jungle # item.map.exploration.swamp_hut.name=Carte d'exploration des marais # +item.map.exploration.trial_chambers.name=Carte d'exploration de l'épreuve # item.melon.name=Pastèque # item.milk.name=Lait # item.minecart.name=Wagonnet # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=Wagonnet de stockage # item.command_block_minecart.name=Wagonnet avec bloc de commande # item.minecartFurnace.name=Wagonnet motorisé # item.hopper_minecart.name=Wagonnet à entonnoir # +item.ominous_bottle.name=Fiole sinistre # +item.ominous_trial_key.name=Clé des épreuves sinistre # +item.oxidized_copper_door.name=Porte en cuivre oxydé # item.tnt_minecart.name=Wagonnet à TNT # item.pitcher_pod.name=Graine de sarracénie # item.torchflower_seeds.name=Graines de rose de porcelaine # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=Œuf d'apparition d'agent # item.spawn_egg.entity.armadillo.name=Œuf d'apparition de tatou # item.spawn_egg.entity.axolotl.name=Œuf d'apparition d'axolotl # item.spawn_egg.entity.bee.name=Œuf d'apparition d'abeille # +item.spawn_egg.entity.bogged.name=Œuf d'apparition d'embourbé # +item.spawn_egg.entity.breeze.name=Œuf d'apparition de Breeze # item.spawn_egg.entity.hoglin.name=Œuf d'apparition de hoglin # item.spawn_egg.entity.cat.name=Œuf d'apparition de chat # item.spawn_egg.entity.chicken.name=Œuf d'apparition de poulet # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 - ward # item.record_pigstep.desc=Lena Raine - Pigstep # item.record_otherside.desc=Lena Raine - otherside # item.record_relic.desc=Aaron Cherof - Relic # +item.record_creator.desc=Lena Raine - Creator # +item.record_creator_music_box.desc=Lena Raine - Creator (boîte à musique) # +item.record_precipice.desc=Aaron Cherof - Precipice # item.redstone.name=Poudre de redstone # item.reeds.name=Cannes à sucre # item.kelp.name=Varech # @@ -5324,6 +5394,12 @@ item.iron_sword.name=Épée en fer # item.stone_sword.name=Épée en pierre # item.wooden_sword.name=Épée en bois # item.unbreakable=Incassable # +item.waxed_copper_door.name=Porte en cuivre ciré # +item.waxed_exposed_copper_door.name=Porte en cuivre peu oxydé ciré # +item.waxed_oxidized_copper_door.name=Porte en cuivre oxydé ciré # +item.waxed_weathered_copper_door.name=Porte en cuivre semi-oxydé ciré # +item.weathered_copper_door.name=Porte en cuivre semi-oxydé # +item.wind_charge.name=Charge de vent # item.wheat.name=Blé # item.wolf_armor.name=Armure de loup # item.writable_book.name=Livre vierge # @@ -5331,6 +5407,7 @@ item.written_book.name=Livre édité # item.glowstone_dust.name=Poudre de pierre lumineuse # item.shulker_shell.name=Carapace de shulker # item.totem.name=Totem d'immortalité # +item.trial_key.name=Clé d'épreuve # item.turtle_helmet.name=Carapace de tortue # item.turtle_shell_piece.name=Écaille de tortue # item.phantom_membrane.name=Membrane de Phantom # @@ -5338,8 +5415,10 @@ item.sweet_berries.name=Baies sucrées # item.suspicious_stew.name=Ragoût suspect # item.banner_pattern.bricks=Champ maçonné # item.banner_pattern.creeper=Visage de creeper # +item.banner_pattern.flow=Flux # item.banner_pattern.flower=Visage de fleur # item.banner_pattern.globe=Globe # +item.banner_pattern.guster=Tornade # item.banner_pattern.name=Motif de bannière # item.banner_pattern.piglin=Groin # item.banner_pattern.skull=Crâne # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=Motifs de bannière # itemGroup.name.netherWartBlock=Verrues du Nether # itemGroup.name.candles=Bougies # itemGroup.name.goatHorn=Cornes de chèvre # +itemGroup.name.compounds=Composés # +itemGroup.name.products=Produits # jigsaw.title.target_pool=Groupe cible : # jigsaw.title.name=Nom : # @@ -5503,7 +5584,7 @@ joincode.generate_new.tooltip.text=Générer un nouveau code n'interrompra pas v joincode.button.share_link.text=Partager un lien # joincode.generating_new=Chargement... # joincode.tooltip.errortext=Une erreur est survenue lors de la génération de votre code d'accès. # -joincode.tooltip.account.error=Un problème est survenu lors de la vérification de votre compte. Redémarrez Minecraft Education et réessayez. # +joincode.tooltip.account.error=Un problème est survenu lors de la vérification de votre compte. Redémarrez Minecraft: Education et réessayez. # joincode.tooltip.infotext=Donnez le code d'accès à vos camarades de classe pour qu'ils puissent rejoindre votre monde. # joincode.button.stop_hosting.text=Arrêter l'hébergement # joincode.confirmation.stop_hosting.message=Si vous arrêtez d'héberger le monde, la session multijoueur prendra fin pour tous les joueurs. Voulez-vous vraiment faire ceci ? # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=PARAMÈTRES DU MODE CLASSROOM # menu.serverStore=Magasin %s # menu.serverGenericName=Serveur # menu.play=Jouer # +menu.profile=Profil # menu.playdemo=Jouer dans le monde de démo # menu.playOnRealms=Jouer sur Realm # menu.quickplay=Jeu rapide # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=Choisissez votre personnage de départ # menu.character_cast.preview_title=Rencontrez les acteurs ! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Serveur Realms ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=Serveurs # merchant.deprecated=Échangez autre chose pour débloquer ! # @@ -6135,7 +6218,7 @@ options.dev_realmsEndpoint=Point de terminaison Realms # options.dev_realmsEndpointPayment=Point de terminaison Realms - paiement # options.dev_realmsRelyingParty=Partie de confiance Realms # options.dev_realmsRelyingPartyPayment=Partie de confiance Realms - paiement # -options.dev_realms_stories=Activer les Stories de Realms # +options.dev_realms_stories=Activer Realms Stories # options.dev_overrideXboxEnvironmentWindows=Remplacer Xbox Sandbox (système d'exploitation contrôlé sur Windows) # options.dev_overrideXboxEnvironment=Remplacer Xbox Sandbox (nécessite un redémarrage) # options.dev_xboxEnvironment=Environnement Xbox Sandbox (nécessite un redémarrage) # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=Gameplay complet au clavier # options.fullKeyboardLayout=Ensemble de touches complet # options.improvedInputResponsePlaceholder=Réactivité aux saisies améliorée # options.improvedInputResponsePlaceholder.tooltip=Réduit la latence entre vos saisies et ce qui s'affiche à l'écran. Il est possible que ce réglage consomme plus de batterie. # +options.dynamicTexturesToggle=Supprimer les limites des textures # +options.dynamicTexturesToggle.tooltip=Pour désactiver cette option, vous devrez redémarrer le jeu. Cela peut rendre le jeu instable si vous utilisez plusieurs extensions ou des packs de ressources contenant de nombreuses textures. # +options.dynamicTextures.popUp=Vous devrez redémarrer le jeu si vous souhaitez désactiver l'option Supprimer les limites des textures. # +options.dynamicTextures.popUp.title=Vraiment ? # options.fullscreen=Plein écran # options.gamepadcursorsensitivity=Sensibilité du curseur de la manette # options.gamertag=Gamertag : # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=Connexion # options.creator.debuggerListen=Écouter # options.creator.debuggerHost=Hôte # options.creator.debuggerPort=Port # +options.creator.watchdogHeading=Paramètres de surveillance de script # +options.creator.watchdogSlowWarning=Alertes script lent # +options.creator.watchdogSlowThreshold=La moyenne dépasse # +options.creator.watchdogSlowFormat=%s millisecondes # +options.creator.watchdogSlowFormatDefault=%s millisecondes (par défaut) # +options.creator.watchdogSpikeWarning=Alertes pic de script # +options.creator.watchdogSpikeThreshold=Le pic dépasse les # +options.creator.watchdogSpikeFormat=%s millisecondes # +options.creator.watchdogSpikeFormatDefault=%s millisecondes (par défaut) # +options.creator.watchdogHangThreshold=Interrompre après # +options.creator.watchdogHangFormat=%s secondes # +options.creator.watchdogHangFormatDefault=%s secondes (par défaut) # options.vr_classic_box_selection=Sélection de plan # options.hidegamepadcursor=Masquer le curseur de la manette # options.hidegui=Masquer l'interface graphique # @@ -6662,7 +6761,7 @@ options.makeBackup=Faire une copie de sauvegarde de mon monde # options.managePrivacy=Pour gérer les paramètres de confidentialité, rendez-vous sur https://account.xbox.com/Settings à partir de votre navigateur. ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Dissocier le compte Microsoft # options.unlink_msa.confirm.title=Dissocier le compte Microsoft ? # -options.unlink_msa.confirm.warning=ATTENTION : vous ne pourrez plus stocker votre progression ou vos achats réalisés sur votre système « PlayStation 4 » avec votre compte %s une fois celui-ci dissocié. # +options.unlink_msa.confirm.warning=ATTENTION : une fois votre compte %s dissocié, vous ne pourrez plus stocker sur celui-ci votre progression ou vos achats réalisés depuis votre système PlayStation®4. #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=Dissocier votre compte Microsoft à partir de ce jeu affectera tous les jeux Minecraft de cette plateforme qui ont utilisé ce compte Microsoft. # options.unlink_msa.confirm.checkbox1=Je ne pourrai plus accéder aux contenus issus du magasin du jeu lorsque je joue sur d'autres plateformes. # options.unlink_msa.confirm.checkbox2=Je ne pourrai plus jouer dans des parties en multiplateforme avec des amis sur d'autres plateformes. # @@ -6688,7 +6787,7 @@ options.editor.modeDescription.messageWithMouse=Le mode éditeur ajoute des outi options.editor.modeActive=Minecraft est actuellement en mode éditeur. # options.editor.modeNotActive=Minecraft n’est pas en mode éditeur actuellement. # options.editor.achievementsDisabled=Vous ne pouvez pas obtenir de succès dans ce projet. # -options.newUiPlayScreen.initiate=Basculer vers la nouvelle interface utilisateur # +options.newUiPlayScreen.initiate=Nouvelle interface utilisateur # options.openPage.continue=Plus d'infos # options.graphicsMode=Mode graphique # options.graphicsMode.simple=Simple # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=Chargez un monde pour personnaliser les c hudScreen.controlCustomization.tooltip.notouch=Utiliser un appareil à écran tactile pour personnaliser les commandes # hudScreen.controlCustomization.tooltip.alreadycustomizing=Un écran de personnalisation des commandes tactiles est déjà ouvert # hudScreen.controlCustomization.tooltip.alive=Le joueur doit être en vie pour personnaliser les commandes. # +hudScreen.daysPlayed=Nombre de jours joués : %s # +hudScreen.daysPlayed.overflow=Trop nombreux pour être comptés ! # playscreen.fileSize.MB=Mo # playscreen.fileSize.GB=Go # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=Potion volatile de soin # potion.heal.linger.name=Potion persistante de soin # potion.healthBoost=Bonus de vie # potion.hunger=Faim # +potion.infested.linger.name=Potion persistante d'infestation # +potion.infested.name=Potion d'infestation # +potion.infested.splash.name=Potion jetable d'infestation # +potion.infested=Infesté # potion.invisibility=Invisibilité # potion.invisibility.name=Potion d'invisibilité # potion.invisibility.splash.name=Potion volatile d'invisibilité # @@ -7067,6 +7172,10 @@ potion.nightVision=Vision nocturne # potion.nightVision.name=Potion de vision nocturne # potion.nightVision.splash.name=Potion volatile de vision nocturne # potion.nightVision.linger.name=Potion persistante de vision nocturne # +potion.oozing.linger.name=Potion persistante de suintement # +potion.oozing.name=Potion de suintement # +potion.oozing.splash.name=Potion jetable de suintement # +potion.oozing=Suintant # potion.poison=Poison # potion.poison.name=Potion de poison # potion.poison.splash.name=Potion volatile de poison # @@ -7108,6 +7217,14 @@ potion.weakness=Faiblesse # potion.weakness.name=Potion de faiblesse # potion.weakness.splash.name=Potion volatile de faiblesse # potion.weakness.linger.name=Potion persistante de faiblesse # +potion.weaving.linger.name=Potion persistante de tissage # +potion.weaving.name=Potion de tissage # +potion.weaving.splash.name=Potion jetable de tissage # +potion.weaving=Tissage # +potion.windCharged.linger.name=Potion persistante de charge du vent # +potion.windCharged.name=Potion de charge du vent # +potion.windCharged.splash.name=Potion jetable de charge du vent # +potion.windCharged=Charge de vent # potion.wither=Wither # potion.wither.name=Potion de flétrissure # potion.wither.splash.name=Potion volatile de flétrissure # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=Ce monde ne peut pas être ouvert à progressScreen.message.forbiddenContent=Vous ne possédez pas un ou plusieurs des packs appliqués # progressScreen.message.loadingSplitScreenAppearances=Chargement des apparences d’écran partagé... # progressScreen.message.finishedLoadingSplitScreenAppearances=Chargement des apparences d’écran partagé terminé. # -progressScreen.message.modifiedWorldWarning=Ce monde peut présenter des différences dans son aspect ou son fonctionnement par rapport aux mondes non modifiés, et il n'est pas possible d'y obtenir des succès. # +progressScreen.message.modifiedWorldWarning.1=Vous jouez dans un monde avec des extensions ! Celles-ci ajoutent de nouvelles fonctionnalités à votre monde Minecraft. # +progressScreen.message.modifiedWorldWarning.2=Ne vous limitez pas à une seule ! Vous pouvez charger simultanément plusieurs extensions dans un même monde. # +progressScreen.message.modifiedWorldWarning.3=Astuce avancée : Un pack de ressources peut modifier les textures de divers blocs et entités. # +progressScreen.message.modifiedWorldWarning.4=Astuce avancée : un pack de comportements peut modifier le fonctionnement de différents objets, entités ou blocs. # +progressScreen.message.modifiedWorldWarning.5=Astuce avancée : une extension inclut à la fois un pack de comportements et un pack de ressources. Assurez-vous que les deux packs sont activés pour garantir le bon fonctionnement de l'extension ! # +progressScreen.message.modifiedWorldWarning.6=Les extensions ajoutent de nouveaux blocs, éléments ou créatures à vos mondes. # +progressScreen.message.modifiedWorldWarning.7=Les mondes et les extensions peuvent être complexes ! Alors que certains fonctionnent très bien ensemble, d'autres pourraient entraîner des résultats pour le moins inattendus. # +progressScreen.message.modifiedWorldWarning.8=Qui dit un max d'extensions dit un max de plaisir, même si ça risque de prolonger les temps de chargement. # progressScreen.dialog.title.resourcePack=Télécharger les packs de ressources ? # progressScreen.dialog.title.behaviorAndResourcePack=Télécharger les packs de comportement et de ressources du monde ? # progressScreen.dialog.title.onlyBehavior=Télécharger les packs de comportement du monde ? # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=Mettre le monde à jour ? # resourcePack.warning.add.body=Ce monde peut présenter des différences dans son aspect ou son fonctionnement par rapport aux mondes non modifiés. Nous vous recommandons de sauvegarder une copie de votre monde avant de continuer. # resourcePack.warning.add.button.cancel=Ne pas ajouter le pack # resourcePack.warning.add.button.ok=Ajouter quand même le pack # +resourcePack.warnings.contentKeyErrorBody=Une erreur est survenue lors du chargement du pack %s. # +resourcePack.warnings.contentKeyErrorBodyMultiple=Une erreur est survenue lors du chargement des packs %s. # +resourcePack.warnings.contentKeyErrorTitle=Erreur ! # resourcePack.warning.remove.title=Attention danger ! # resourcePack.warning.remove.body=L'ajout ou la suppression de packs après avoir joué dans un monde risque de le rendre dysfonctionnel et de vous faire perdre ce que vous avez créé. # resourcePack.warning.remove.button.cancel=Garder le pack # @@ -7557,7 +7684,9 @@ item.crimson_hanging_sign.name=Panneau suspendu carmin # item.danger_pottery_sherd.name=Tesson de poterie Danger # item.dark_oak_hanging_sign.name=Panneau suspendu en chêne noir # item.explorer_pottery_sherd.name=Tesson de poterie Explorateur # +item.flow_pottery_sherd.name=Tesson de poterie Flux # item.friend_pottery_sherd.name=Tesson de poterie Ami # +item.guster_pottery_sherd.name=Tesson de poterie Tornade # item.heart_pottery_sherd.name=Tesson de poterie Cœur # item.heartbreak_pottery_sherd.name=Tesson de poterie Cœur brisé # item.howl_pottery_sherd.name=Tesson de poterie Hurlement # @@ -7568,6 +7697,7 @@ item.mourner_pottery_sherd.name=Tesson de poterie Deuil # item.oak_hanging_sign.name=Panneau suspendu en chêne # item.plenty_pottery_sherd.name=Tesson de poterie Abondance # item.prize_pottery_sherd.name=Tesson de poterie Prix # +item.scrape_pottery_sherd.name=Tesson de poterie Éraflure # item.sheaf_pottery_sherd.name=Tesson de poterie Moisson # item.shelter_pottery_sherd.name=Tesson de poterie Abri # item.skull_pottery_sherd.name=Tesson de poterie Crâne # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=Escalier en cerisier # tile.cherry_trapdoor.name=Trappe en cerisier # tile.cherry_wood.name=Bois de cerisier # tile.chiseled_bookshelf.name=Bibliothèque sculptée # +tile.chiseled_tuff.name=Tuf ciselé # +tile.chiseled_tuff_bricks.name=Briques de tuf ciselé # tile.decorated_pot.name=Pot décoré # tile.pink_petals.name=Pétales roses # tile.stripped_bamboo_block.name=Bloc de bambou écorcé # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=Coupe d'armure Vex # trim_pattern.ward.name=Coupe d'armure Ward # trim_pattern.wayfinder.name=Coupe d'armure Boussole # trim_pattern.wild.name=Coupe d'armure Sauvage # +trim_pattern.bolt.name=Coupe d'armure Boulon # +trim_pattern.flow.name=Coupe d'armure Flux # upgrade.netherite_upgrade.name=Amélioration de Netherite # storageManager.mainSizeLabel=%s - 1 objet # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=Supprimer le modèle de monde ? # selectTemplate.delete=Supprimer # selectTemplate.myTemplates=Mes modèles de monde # selectTemplate.realmsPlus=Modèles Realms Plus à la une # -selectTemplate.marketplacePass=Marketplace Pass en vedette dans le magasin #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=Contenu en vedette du Marketplace Pass #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=Modèles importés # selectTemplate.download=Télécharger # selectTemplate.noTemplates=Il n'y a aucun modèle de monde sur cet appareil. # -selectTemplate.suggestedContent.title=Modèles en vedette dans le magasin # +selectTemplate.suggestedContent.title=Contenu en vedette du magasin # selectTemplate.suggestedContent.button=Voir plus de modèles # selectTemplate.createdBy=Créé par %s # selectTemplate.inventory=Mes packs du Magasin # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=Nous avons rencontré un problème de connexion. store.loading.error.issues=Hmm, le magasin connaît quelques difficultés. Veuillez essayer de vous connecter ultérieurement. # store.loading.error.internetDown=Impossible de détecter une connexion internet. # store.loading.error.account=Votre compte a un problème. Réessayez plus tard et contactez l'assistance si cela persiste. # +store.loading.error.account.banned=Vous ne pouvez pas utiliser le magasin jusqu'à l'expiration de votre suspension. # store.giftPromo.day=Jour %s ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=Récupéré # @@ -8405,10 +8540,17 @@ store.mashup.count.skin=1 skin # store.mashup.count.skins=%s Skins # store.mashup.count.texturePack=1 pack de textures # store.mashup.count.texturePacks=%s packs de textures #number of texture packs # -store.mashup.count.world=1 monde # +store.mashup.count.world=1 monde # store.mashup.count.worlds=%s mondes #number of worlds # store.mashup.count.addonPack=1 extension # store.mashup.count.addonPacks=%s Extensions #number of addons # +store.mashup.count.mashup=Mash-Up # +store.mashup.hover.label.addonPack=Les extensions peuvent être appliquées à n'importe quel monde. # +store.mashup.hover.label.world=Une carte Minecraft conçue à la main. # +store.mashup.hover.label.skin=Donnez un nouveau look à votre personnage. # +store.mashup.hover.label.texturePack=Donnez une nouvelle apparence à votre monde ou à votre interface de jeu. # +store.mashup.hover.label.mashup.lineOne=Une combinaison de différents types de contenu. # +store.mashup.hover.label.mashup.lineTwo=Ce Mash-Up contient : # store.addon.activateAddonPack=Activez l'extension ! # store.addon.newOrExistingTitle=Où ajouter ? # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=Tableau # tile.chest.name=Coffre # tile.ender_chest.name=Coffre de l'Ender # tile.jigsaw.name=Bloc casse-tête # +tile.heavy_core.name=Cœur lourd # tile.honey_block.name=Bloc de miel # tile.honeycomb_block.name=Bloc Rayon de miel # tile.lodestone.name=Magnétite # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=Dalle en roche noire taillée # tile.polished_blackstone_pressure_plate.name=Plaque de pression en roche noire taillée # tile.polished_blackstone_button.name=Bouton en roche noire taillée # tile.polished_blackstone_wall.name=Muret en roche noire taillée # +tile.polished_tuff.name=Tuf poli # +tile.polished_tuff_slab.name=Dalle en tuf poli # +tile.polished_tuff_stairs.name=Escaliers en tuf poli # +tile.polished_tuff_wall.name=Muret en tuf poli # tile.soul_campfire.name=Feu de camp des âmes # tile.chiseled_nether_bricks.name=Briques du Nether sculptées # tile.cracked_nether_bricks.name=Briques du Nether craquelées # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=Terre cuite jaune # tile.structure_block.name=Bloc de structure # structure_block.waterlog_block=Blocs d’engorgement # tile.structure_void.name=Vide de structure # +tile.trial_spawner.name=Générateur d'épreuve # +tile.vault.name=Cache # tile.wool.black.name=Laine noire # tile.wool.blue.name=Laine bleue # tile.wool.brown.name=Laine marron # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=Fougère # tile.tallgrass.grass.name=Hautes herbes # tile.tallgrass.name=Hautes herbes # tile.tallgrass.shrub.name=Arbuste # +tile.tuff_brick_slab.name=Dalle en briques de tuf # +tile.tuff_brick_stairs.name=Escaliers en briques de tuf # +tile.tuff_brick_wall.name=Muret en briques de tuf # +tile.tuff_bricks.name=Briques de tuf # +tile.tuff_slab.name=Dalle en tuf # +tile.tuff_stairs.name=Escaliers en tuf # +tile.tuff_wall.name=Muret en tuf # tile.seagrass.seagrass.name=Herbe marine # tile.sea_pickle.name=Concombre de mer # tile.turtle_egg.name=Œuf de tortue de mer # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=Tapis rouge # tile.carpet.silver.name=Tapis gris clair # tile.carpet.white.name=Tapis blanc # tile.carpet.yellow.name=Tapis jaune # +tile.crafter.name=Fabricateur # tile.crafting_table.name=Établi # tile.glazedTerracotta.white.name=Terre cuite émaillée blanche # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=Dalle en cuivre taillé ciré # tile.waxed_exposed_cut_copper_slab.name=Dalle en cuivre taillé peu oxydé ciré # tile.waxed_weathered_cut_copper_slab.name=Dalle en cuivre taillé semi-oxydé ciré # tile.waxed_oxidized_cut_copper_slab.name=Dalle en cuivre taillé oxydé ciré # + +tile.chiseled_copper.name=Cuivre ciselé # +tile.exposed_chiseled_copper.name=Cuivre ciselé peu oxydé # +tile.oxidized_chiseled_copper.name=Cuivre ciselé oxydé # +tile.waxed_chiseled_copper.name=Cuivre ciselé ciré # +tile.waxed_exposed_chiseled_copper.name=Cuivre ciselé peu oxydé ciré # +tile.waxed_oxidized_chiseled_copper.name=Cuivre ciselé oxydé ciré # +tile.waxed_weathered_chiseled_copper.name=Cuivre ciselé semi-oxydé ciré # +tile.weathered_chiseled_copper.name=Cuivre ciselé semi-oxydé # + +tile.copper_bulb.name=Ampoule en cuivre # +tile.exposed_copper_bulb.name=Ampoule en cuivre peu oxydé # +tile.oxidized_copper_bulb.name=Ampoule en cuivre oxydé # +tile.waxed_copper_bulb.name=Ampoule en cuivre ciré # +tile.waxed_exposed_copper_bulb.name=Ampoule en cuivre peu oxydé ciré # +tile.waxed_oxidized_copper_bulb.name=Ampoule en cuivre oxydé ciré # +tile.waxed_weathered_copper_bulb.name=Ampoule en cuivre semi-oxydé ciré # +tile.weathered_copper_bulb.name=Ampoule en cuivre semi-oxydé # + +tile.copper_door.name=Porte en cuivre # +tile.exposed_copper_door.name=Porte en cuivre peu oxydé # +tile.oxidized_copper_door.name=Porte en cuivre oxydé # +tile.waxed_copper_door.name=Porte en cuivre ciré # +tile.waxed_exposed_copper_door.name=Porte en cuivre peu oxydé ciré # +tile.waxed_oxidized_copper_door.name=Porte en cuivre oxydé ciré # +tile.waxed_weathered_copper_door.name=Porte en cuivre semi-oxydé ciré # +tile.weathered_copper_door.name=Porte en cuivre semi-oxydé # + +tile.copper_grate.name=Grille en cuivre # +tile.exposed_copper_grate.name=Grille en cuivre peu oxydé # +tile.oxidized_copper_grate.name=Grille en cuivre oxydé # +tile.waxed_copper_grate.name=Grille en cuivre ciré # +tile.waxed_exposed_copper_grate.name=Grille en cuivre peu oxydé ciré # +tile.waxed_oxidized_copper_grate.name=Grille en cuivre oxydé ciré # +tile.waxed_weathered_copper_grate.name=Grille en cuivre semi-oxydé ciré # +tile.weathered_copper_grate.name=Grille en cuivre semi-oxydé # + +tile.copper_trapdoor.name=Trappe en cuivre # +tile.exposed_copper_trapdoor.name=Trappe en cuivre peu oxydé # +tile.oxidized_copper_trapdoor.name=Trappe en cuivre oxydé # +tile.waxed_copper_trapdoor.name=Trappe en cuivre ciré # +tile.waxed_exposed_copper_trapdoor.name=Trappe en cuivre peu oxydé ciré # +tile.waxed_oxidized_copper_trapdoor.name=Trappe en cuivre oxydé ciré # +tile.waxed_weathered_copper_trapdoor.name=Trappe en cuivre semi-oxydé ciré # +tile.weathered_copper_trapdoor.name=Trappe en cuivre semi-oxydé # + tile.raw_copper_block.name=Bloc de cuivre brut # tile.raw_iron_block.name=Bloc de fer brut # tile.raw_gold_block.name=Bloc d'or brut # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=Flèche de chance # tipped_arrow.effect.wither=Flèche de flétrissure # tipped_arrow.effect.turtleMaster=Flèche du Maître Tortue # tipped_arrow.effect.slowFalling=Flèche de chute lente # +tipped_arrow.effect.infested=Flèche d'infestation # +tipped_arrow.effect.oozing=Flèche de suintement # +tipped_arrow.effect.weaving=Flèche de tissage # +tipped_arrow.effect.windCharged=Flèche de charge du vent # structure_block.title=Bloc de structure # structure_block.structure_name=Nom de la structure # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=Certaines de vos modifications les plu worldError.worldFailedRecovery=Échec de la récupération # worldError.worldFailedRecoveryText=Nous avons détecté un monde corrompu et nous n'avons pas réussi à le récupérer. # +writeThrottling.osDialog.body=L'opération demandée devrait prendre %d minutes. N'éteignez pas votre appareil pendant cette période. # +writeThrottling.osDialog.cancel=Annuler l'opération # +writeThrottling.osDialog.confirm=Continuer # +writeThrottling.progressBar.title=Préparation des données # +writeThrottling.progressBar.body=Préparation de vos fichiers... # + userData.recovered.title=Données sauvegardées récupérées # userData.recovered.text=Vos paramètres utilisateur corrompus ont bien été récupérés. # userData.recovered.warning=Certaines de vos modifications les plus récentes ont peut-être été effacées lors de la récupération. # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=Message de tchat # xbox.report.area.skin=Skin de joueur # xbox.report.area.gameplay=Gameplay # xbox.report.area.ingame=Créations en jeu # -xbox.report.area.other=Autre # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=Harcèlement en ligne # @@ -10183,7 +10395,7 @@ content.import.failed=L'importation de %s a échoué # content.import.failed.subtitle=Consultez le journal de sortie pour plus d'infos # content.import.failed.subtitle_duplicate=Pack en doublon détecté # content.import.failed.subtitle_malformed_zip=Archive zip non valide # -content.import.failed.subtitle_premiumcontent=Le contenu de ce monde n'est pas pris en charge par Minecraft Education. # +content.import.failed.subtitle_premiumcontent=Le contenu de ce monde n'est pas pris en charge par Minecraft: Education. # content.import.failed.incompatible=Format de fichier non pris en charge # content.import.failed.title_premiumcontent=Contenu incompatible # content.import.succeeded=L'importation de %s a abouti # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=Malheureusement, la connexion a échoué. gathering.connect.title=Connexion... # gathering.info.qr.title.onlineService=En savoir plus # gathering.info.qr.body.onlineService.nso=Vous avez besoin d’un abonnement Nintendo Switch Online pour rejoindre un événement dans Minecraft. # -gathering.info.qr.body.onlineService.psn=Vous devez être connecté(e) au \"PlayStation Plus\" pour rejoindre un événement dans Minecraft. # +gathering.info.qr.body.onlineService.psn=Vous devez être connecté(e) à PlayStation®Plus pour rejoindre un événement dans Minecraft. #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=Vous devez être connecté(e) pour rejoindre un événement dans Minecraft. # gathering.info.qr.title.childAccount=Jeu en ligne non autorisé # gathering.info.qr.body.childAccount=Vos paramètres de contrôle parental actuels vous empêchent de jouer en ligne. # diff --git a/resource_pack/texts/hu_HU.lang b/resource_pack/texts/hu_HU.lang index 8e8555096..806bb7ebe 100644 --- a/resource_pack/texts/hu_HU.lang +++ b/resource_pack/texts/hu_HU.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=Mag kiválasztása # accessibility.start.feedback=Visszajelzés küldése hivatkozás a weboldalra # accessibility.start.new=Új # -accessibility.start.profile=Profil kiválasztása # accessibility.start.skinPicker=Felület kiválasztása # accessibility.store.tag=Címke # @@ -1094,10 +1093,6 @@ commands.me.description=Üzenetet jeleníthetsz meg vele magadról. # commands.message.display.incoming=%1$s ezt súgja: %2$s # commands.message.display.outgoing=Ezt súgod %1$s játékosnak: %2$s # commands.message.sameTarget=Önmagadnak nem küldhetsz privát üzenetet! # -commands.message.warn=§4Kaptál egy figyelmeztetést. A viselkedésedet más játékosok bántónak találhatják. Legyél figyelmes a játékostársaiddal szemben. # -commands.message.toastWarn=A Minecraft mindenkié! Kérünk, hogy viselkedj a közösségi szabályainknak megfelelően. # -commands.warn.invalidWarningLevel=Érvénytelen figyelmeztetési szint. # -commands.warn.playerDoesNotExist=A játékos nem található. Válassz egy érvényes játékost. # commands.mobevent.description=Szabályozza, milyen mobesemények futása engedélyezett. # commands.mobevent.eventsEnabledSetToTrue=A mobesemények immár engedélyezettek. Azok az egyes események, amelyek hamisra vannak állítva, nem futnak le. # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=- %s: %s innen: %d %d %d ide: %d %d %d commands.volumearea.entry.withoutIdentifier=- %s: innen: %d %d %d ide: %d %d %d # commands.volumearea.noneExist.currentDimension=Az aktuális dimenzióban nem léteznek kötetek. # commands.volumearea.inUse=%1$d/%2$d kötet használatban van. # -commands.warn.description=Figyelmeztető üzenetet küld a játékosnak. # commands.weather.clear=Váltás jó időjárásra # commands.weather.description=Bekapcsolja az időjárást. # commands.weather.disabled=Az Időjárásciklus nincs engedélyezve ebben a világban. # @@ -1572,6 +1566,7 @@ container.beacon=Jelzőfény # container.brewing=Főzőállvány # container.chest=Láda # container.chestDouble=Nagy láda # +container.crafter=Barkácsoló # container.crafting=Barkácsolás # container.creative=Tárgy kiválasztása # container.dispenser=Adagoló # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=Barlangok és sziklák # createWorldScreen.cavesandcliffsDescription=Fedezd fel az új, változatos barlangok generálását # createWorldScreen.spectatorMode=Nézői mód # createWorldScreen.spectatorModeDescription=Próbáld ki a Nézői mód előzetes verzióját! # -createWorldScreen.experimentalCameras=Kísérleti kamerák # -createWorldScreen.experimentalCamerasDescription=Példa kamerabeállításokat tartalmaz (a kamera parancs többé nem kísérleti) # createWorldScreen.recipeUnlocking=Recept feloldása # createWorldScreen.recipeUnlockingDescription=Recept feloldásának engedélyezése # createWorldScreen.experimentalholiday=Az Ünnepi építő funkciói # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=Új világ létrehozása... # createWorldScreen.progress.realms=Realm visszaállítása... # createWorldScreen.seed.desc=Ugyanazon terep létrehozásához add meg a kezdőértéket. Véletlenszerű világ létrehozásához hagyd üresen. # createWorldScreen.showCoordinates=Koordináták megjelenítése # +createWorldScreen.showDaysPlayed=Lejátszott napok mutatása # createWorldScreen.worldType=Világ típusa # createWorldScreen.randomtickspeed=Véletlen óraciklus-sebesség # createWorldScreen.randomtickspeed.reset=Véletlen óraciklus-sebesség visszaállítása # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=Projekt törlése # createWorldScreen.editor.projectOptionsLabel=Projekt beállításai # createWorldScreen.editor.delete.confirm=Véglegesen törlöd a projektet? # createWorldScreen.editor.deleteWarningFormat=Biztosan törlöd a(z) „%s” projektet? Ez a projekt örökre elvész! # +createWorldScreen.eduCloud.about.body=Fájlnév: „%1$s”%2$sUtoljára frissítve: %3$s%4$sA letöltéshez kattints az OK, majd a Letöltés gombra.%5$s # +createWorldScreen.eduCloud.about.title=A felhőben lévő világfájllal kapcsolatos információ # createWorldScreen.eduCloud.delete.confirm=Törlöd a helyi világot? # createWorldScreen.eduCloud.deleteWarningFormat=Biztosan törlöd a következőt ezen az eszközön: „%1$s”?%2$sA(z) „%3$s” felhőbeli verziót ez nem befolyásolja, és később újra szinkronizálhatod. # createWorldScreen.experimentalDeferredTechnicalPreview=Sárkány jellemzőinek renderelése alkotók számára # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Windows Áruház # realmsSettingsScreen.xboxOneStoreDisplayName=Xbox Áruház # realmsSettingsScreen.amazonStoreDisplayName=Amazon Appstore # realmsSettingsScreen.oculusStoreDisplayName=Oculus Store # -realmsSettingsScreen.berwickStoreDisplayName=„PlayStation Store” # -realmsSettingsScreen.SonyStoreDisplayName=„PlayStation Store” #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=ismeretlen áruház # realmsSettingsScreen.extendingRealm=Realm meghosszabbítása... # realmsSettingsScreen.offerError.title=A vásárlás folyamatban van # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=A Minecraft Piactéren kívül xbl.syncIAP.confirmSync.prompt.yes=Igen, szinkronizálom vásárlásaimat # xbl.marketplace.account.error.body.nobutton=Probléma lépett fel a fiókoddal. A probléma megoldásáig nem használhatod a Piacteret. Ha a hiba több napon át fennáll, lépj kapcsolatba a terméktámogatással. # -xbl.marketplace.account.banned.body.nobutton=A felfüggesztésed lejártáig nem használhatod a Piacteret. # playfab.account.banned.temporary=Felfüggesztettek # playfab.account.banned.permanent=Letiltottak # @@ -2487,6 +2482,14 @@ date.daysAbbreviated1Char=%s n ### It needs to be abbreviated with no more than date.hoursAbbreviated1Char=%s ó ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%s p ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%s mp ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s nap # +date.hoursPlural=%s óra # +date.minutesPlural=%s perc # +date.secondsPlural=%s másodperc # +date.daySingular=%s nap # +date.hourSingular=%s óra # +date.minuteSingular=%s perc # +date.secondSingular=%s másodperc # date.timeLeft=%s van hátra # dayOneExperience.carousel.title=Üdvözöl az új Minecraft! # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=JÁTÉKGAZDA # edu.worlds_screen.settings=BEÁLLÍTÁSOK # edu.worlds_screen.download=LETÖLTÉS ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=KEZELÉS # +edu.worlds_screen.about=NÉVJEGY # edu.worlds_screen.back=VISSZA # edu.worlds_screen.copy=MÁSOLÁS # edu.worlds_screen.export=EXPORTÁLÁS # @@ -2791,7 +2795,13 @@ edu.templates.empty_banner=A világsablonokat a Minecraft Education könyvtárba edu.pause.multiplayer.disabled=A többjátékos mód ebben a leckében nem elérhető. # effect.badOmen=Rossz ómen # +effect.infested=Fertőzött # +effect.oozing=Ragacskodás # +effect.raid_omen=Rajtaütés ómen # +effect.trial_omen=Próba ómen # effect.villageHero=A falu hőse # +effect.weaving=Fonás # +effect.wind_charged=Széllökött # enchantment.arrowDamage=Erő # enchantment.arrowFire=Láng # @@ -2810,6 +2820,9 @@ enchantment.durability=Törhetetlenség # enchantment.fire=Szikrából pattant # enchantment.fishingSpeed=Műcsali # enchantment.frostwalker=Jégen járó # +enchantment.heavy_weapon.breach=Betörés # +enchantment.heavy_weapon.density=Sűrűség # +enchantment.heavy_weapon.windburst=Széllökés # enchantment.knockback=Hátralökés # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=Denevér # entity.bee.name=Méh # entity.blaze.name=Őrláng # entity.boat.name=Csónak # +entity.bogged.name=Lápos # +entity.breeze.name=Szellő # +entity.breeze_wind_charge_projectile.name=Széltöltet # entity.cat.name=Macska # entity.cave_spider.name=Barlangi pók # entity.chicken.name=Csirke # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=Képzetlen falusi # entity.villager_v2.name=Falusi # entity.vindicator.name=Bosszúálló # entity.wandering_trader.name=Vándorkereskedő # +entity.wind_charge_projectile.name=Széltöltet # entity.witch.name=Boszorkány # entity.wither.name=Sorvasztó # entity.wither_skeleton.name=Sorvasztó csontváz # @@ -3009,6 +3026,7 @@ feature.ruins=Tengermélyi romok # feature.pillager_outpost=Fosztogatótábor # feature.bastion_remnant=Bástyamaradvány # feature.ruined_portal=Romos portál # +feature.trial_chambers=Próbatermek # feed.like=Kedvelés # feed.manage_feed=Hírcsatorna kezelése # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=A(z) :tip_left_stick: segítségével mozoghat gameTip.flying.mouse=A repüléshez koppints duplán a következőre: :_input_key.jump: # gameTip.flying.touch=A repüléshez koppints duplán az ugrásra # +gameTip.flyDown.mouse=A lefelé repüléshez nyomd meg a következő gombot: :_input_key.sneak: # +gameTip.flyUp.mouse=A felfelé repüléshez nyomd meg a következő gombot: :_input_key.jump: # + +gameTip.stopFlying.mouse=A repülés befejezéséhez koppints duplán a következő gombra: :_input_key.jump: # +gameTip.stopFlying.touch=A repülés befejezéséhez koppints duplán a lefelé repülés gombra # + gameTip.jump.mouse=Ugrás: :_input_key.jump: # +gameTip.swim.mouse=A felfelé úszáshoz tartsd lenyomva a következő gombot: :_input_key.jump: # -gameTip.hotbar.mouse=A kézbe vételéhez az egérgörgővel válaszd ki az eszköztár #. helyét # -gameTip.hotbar.touch=A kézbe vételéhez koppints az eszköztár #. helyére # -gameTip.hotbar.controller=A kézbe vételéhez koppints az eszköztár #. helyére # +gameTip.hotbar.selection.mouse=A tárgy kézbe vételéhez görgess vagy nyomd meg a következő gombot: %s ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=A tárgy kézbe vételéhez koppints rá a gyorssávon # gameTip.breakBlock.mouse=A blokkok összetöréséhez kattints a bal egérgombbal, és tartsd lenyomva # gameTip.breakBlock.touch=Koppints, és tartsd lenyomva a blokkok összetöréséhez # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=Most lopakodsz! Ilyenkor nem tudsz leesni # gameTip.sneak.touch=Most lopakodsz, tehát nem zuhanhatsz le # gameTip.sneak.controller=Most lopakodsz, tehát nem zuhanhatsz le # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=Helyezd el a barkácsasztalod. Tartsd meg, és kattints az elhelyezéshez # gameTip.placeCraftingTable.touch=A barkácsasztal elhelyezéséhez koppints a talajra # gameTip.placeCraftingTable.controller=A barkácsasztal elhelyezéséhez tartsd lenyomva, majd koppints a talajra # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=Köszönjük, hogy megosztottad a véleményedet! # gui.submitFeedback.failure.status.unprocessableEntity=Nem rendelkezel azzal a tétellel, amelyről visszajelzést szeretnél küldeni. (Hibakód: %d) # gui.submitFeedback.failure.status.tooManyRequests=Ajjaj! Túl sok véleményt küldtél, próbáld újra később. (Hibakód: %d) # gui.submitFeedback.failure.status.other=Nem sikerült elküldeni a véleményedet, próbáld újra később. (Hibakód: %d) # +gui.togglable_slot=Nyomd meg a hely letiltásához # gui.playOffline=Offline játék # gui.signIn=Bejelentkezés # gui.genericNetworkError=Hiba történt. Ellenőrizd az internetkapcsolatot. # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=A Minecoin: a Minecraft játékbeli fizetőeszköze a howtoplay.minecoins.text.2=A beváltást követően a Minecoinok össze lesznek kapcsolva a Microsoft-fiókoddal, így más támogatott eszközökön is hozzáférhetsz az érméidhez és a vásárlásaidhoz! # howtoplay.minecoins.button.text.1=Vásárolj Minecraft-érméket # howtoplay.minecoins.header.1=Jogi nyilatkozat # -howtoplay.minecoins.text.3=*A Minecoinok használatához a Minecraft: Bedrock Edition Minecraft Piactérrel rendelkező verziója szükséges. A Minecoinok nem kompatibilisek a Sony PlayStationnel. A kompatibilitással kapcsolatos információkért lásd: minecraft.net/minecoins  # +howtoplay.minecoins.text.3=*A Minecoinok használatához a Minecraft: Bedrock Edition Minecraft Piactérrel rendelkező verziója szükséges. A Minecoinok nem kompatibilisek a Sony PlayStationnel®. A kompatibilitással kapcsolatos információkért lásd: minecraft.net/minecoins  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=Bányászat # @@ -4145,7 +4170,7 @@ level.editor.export.failed=A projekt exportálása nem sikerült # level.editor.import.failed=A projekt importálása nem sikerült # level.editor.import.failed.incompatibleEdition=A világ importálása sikertelen: Nem támogatott fájlformátum # -inbox.invite.title=Realms-meghívó # +inbox.invite.title=Realm-meghívó küldése: # invite.clear=Kijelölés törlése # invite.send=%d meghívó elküldése # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=Vörössel jobbharántolt, fordított # item.banner.diagonal_up_right.silver=Világosszürkével jobbharántolt, fordított # item.banner.diagonal_up_right.white=Fehérrel jobbharántolt, fordított # item.banner.diagonal_up_right.yellow=Sárgával jobbharántolt, fordított # +item.banner.flow.black=Fekete folyam # +item.banner.flow.blue=Kék folyam # +item.banner.flow.brown=Barna folyam # +item.banner.flow.cyan=Türkizkék folyam # +item.banner.flow.gray=Szürke folyam # +item.banner.flow.green=Zöld folyam # +item.banner.flow.lightBlue=Világoskék folyam # +item.banner.flow.lime=Limezöld folyam # +item.banner.flow.magenta=Bíborvörös folyam # +item.banner.flow.orange=Narancssárga folyam # +item.banner.flow.pink=Rózsaszín folyam # +item.banner.flow.purple=Lila folyam # +item.banner.flow.red=Vörös folyam # +item.banner.flow.silver=Világosszürke folyam # +item.banner.flow.white=Fehér folyam # +item.banner.flow.yellow=Sárga folyam # item.banner.flower.black=Fekete virág címerkép # item.banner.flower.blue=Kék virág címerkép # item.banner.flower.brown=Barna virág címerkép # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=Fehér színátmenet alulról # item.banner.gradient_up.yellow=Sárga színátmenet alulról # item.banner.gray.name=Szürke zászló # item.banner.green.name=Zöld zászló # +item.banner.guster.black=Fekete löket # +item.banner.guster.blue=Kék Guster # +item.banner.guster.brown=Barna Guster # +item.banner.guster.cyan=Türkizkék Guster # +item.banner.guster.gray=Szürke Guster # +item.banner.guster.green=Zöld Guster # +item.banner.guster.lightBlue=Világoskék Guster # +item.banner.guster.lime=Limezöld Guster # +item.banner.guster.magenta=Bíborvörös Guster # +item.banner.guster.orange=Narancssárga Guster # +item.banner.guster.pink=Rózsaszín Guster # +item.banner.guster.purple=Lila Guster # +item.banner.guster.red=Vörös Guster # +item.banner.guster.silver=Világosszürke Guster # +item.banner.guster.white=Fehér Guster # +item.banner.guster.yellow=Sárga Guster # item.banner.half_horizontal.black=Feketével vágott # item.banner.half_horizontal.blue=Kékkel vágott # item.banner.half_horizontal.brown=Barnával vágott # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=Akáciafa csónak # item.boat.big_oak.name=Sötét tölgyfa csónak # item.bone.name=Csont # item.book.name=Könyv # +item.breeze_rod.name=Szellőrúd # item.chainmail_boots.name=Lánccsizma # item.leather_boots.name=Bőrcsizma # item.diamond_boots.name=Gyémántcsizma # @@ -4991,6 +5049,7 @@ item.comparator.name=Vöröskő-összehasonlító # item.compass.name=Iránytű # item.lodestonecompass.name=Mágneses iránytű # item.cookie.name=Csokis keksz # +item.copper_door.name=Rézajtó # item.crossbow.name=Nyílpuska # item.diamond.name=Gyémánt # item.repeater.name=Vöröskő-jelismétlő # @@ -5038,6 +5097,7 @@ tile.end_rod.name=Vég-oszlop # item.ender_eye.name=Végzet szeme # item.ender_pearl.name=Bevégzőgyöngy # item.experience_bottle.name=Tapasztalatpalack # +item.exposed_copper_door.name=Kopott rézajtó # item.feather.name=Toll # item.fermented_spider_eye.name=Erjesztett pókszem # item.fireball.name=Tűztöltet # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=Arany lábszárvédő # item.iron_leggings.name=Vas lábszárvédő # item.nautilus_shell.name=Nautilusz csigaház # item.heart_of_the_sea.name=A tenger szíve # +item.mace.name=Buzogány # item.magma_cream.name=Magmakrém # item.map.name=Térkép # item.map.exploration.mansion.name=Erdei felfedező térképe # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=Szavannai falu térképe # item.map.exploration.village_desert.name=Sivatagi falu térképe # item.map.exploration.jungle_temple.name=Dzsungelfelfedező térképe # item.map.exploration.swamp_hut.name=Mocsári felfedező térképe # +item.map.exploration.trial_chambers.name=Próba felfedezőtérképe # item.melon.name=Dinnye # item.milk.name=Tej # item.minecart.name=Csille # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=Tárolócsille # item.command_block_minecart.name=Parancsblokk-csille # item.minecartFurnace.name=Csille kemencével # item.hopper_minecart.name=Tölcséres csille # +item.ominous_bottle.name=Baljós palack # +item.ominous_trial_key.name=Baljós próbakulcs # +item.oxidized_copper_door.name=Oxidált rézajtó # item.tnt_minecart.name=Csille dinamittal # item.pitcher_pod.name=Kancsókapszula # item.torchflower_seeds.name=Tűzvirágmagok # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=Agent-idéző tojás # item.spawn_egg.entity.armadillo.name=Tatuidéző tojás # item.spawn_egg.entity.axolotl.name=Axolotlidéző tojás # item.spawn_egg.entity.bee.name=Méhidéző tojás # +item.spawn_egg.entity.bogged.name=Láposidéző tojás # +item.spawn_egg.entity.breeze.name=Szellőidéző tojás # item.spawn_egg.entity.hoglin.name=Hoglinidéző tojás # item.spawn_egg.entity.cat.name=Macskaidéző tojás # item.spawn_egg.entity.chicken.name=Csirkeidéző tojás # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 - ward # item.record_pigstep.desc=Lena Raine – Pigstep # item.record_otherside.desc=Lena Raine – otherside # item.record_relic.desc=Aaron Cherof – Relic # +item.record_creator.desc=Lena Raine – Creator # +item.record_creator_music_box.desc=Lena Raine – Creator (zenedoboz) # +item.record_precipice.desc=Aaron Cherof – Precipice # item.redstone.name=Vöröskőpor # item.reeds.name=Cukornád # item.kelp.name=Hínár # @@ -5324,6 +5394,12 @@ item.iron_sword.name=Vaskard # item.stone_sword.name=Kőkard # item.wooden_sword.name=Fakard # item.unbreakable=Törhetetlen # +item.waxed_copper_door.name=Viaszolt rézajtó # +item.waxed_exposed_copper_door.name=Viaszolt, kopott rézajtó # +item.waxed_oxidized_copper_door.name=Viaszolt, oxidált rézajtó # +item.waxed_weathered_copper_door.name=Viaszolt, viharvert rézajtó # +item.weathered_copper_door.name=Viharvert rézajtó # +item.wind_charge.name=Széltöltet # item.wheat.name=Búza # item.wolf_armor.name=Farkaspáncél # item.writable_book.name=Könyv és toll # @@ -5331,6 +5407,7 @@ item.written_book.name=Megírt könyv # item.glowstone_dust.name=Izzókőpor # item.shulker_shell.name=Shulker-váz # item.totem.name=Halhatatlanság toteme # +item.trial_key.name=Próbakulcs # item.turtle_helmet.name=Teknőspáncél # item.turtle_shell_piece.name=Teknőspáncél # item.phantom_membrane.name=Fantomhártya # @@ -5338,8 +5415,10 @@ item.sweet_berries.name=Édes bogyók # item.suspicious_stew.name=Gyanús pörkölt # item.banner_pattern.bricks=Téglamintás # item.banner_pattern.creeper=Creeper-roham # +item.banner_pattern.flow=Folyam # item.banner_pattern.flower=Virágroham # item.banner_pattern.globe=Gömb # +item.banner_pattern.guster=Tornádó # item.banner_pattern.name=Lobogóminta # item.banner_pattern.piglin=Malacorr # item.banner_pattern.skull=Koponyaroham # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=Lobogóminták # itemGroup.name.netherWartBlock=Alvilági bibircsók # itemGroup.name.candles=Gyertyák # itemGroup.name.goatHorn=Kecskeszarvak # +itemGroup.name.compounds=Vegyületek # +itemGroup.name.products=Termékek # jigsaw.title.target_pool=Célpontkészlet: # jigsaw.title.name=Név: # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=OKTATÁSI MÓD BEÁLLÍTÁSAI # menu.serverStore=%s Áruház # menu.serverGenericName=Kiszolgáló # menu.play=Játék # +menu.profile=Profil # menu.playdemo=Játék a bemutató világban # menu.playOnRealms=Játék indítása a Realmen # menu.quickplay=Gyors játék # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=Válaszd ki a kezdő karakteredet # menu.character_cast.preview_title=Ismerd meg a szereplőket! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Realms-kiszolgáló ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=Kiszolgálók # merchant.deprecated=A feloldáshoz adj el valami mást! # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=Teljes billentyűzetes játékmenet # options.fullKeyboardLayout=Teljes billentyűzetkiosztás # options.improvedInputResponsePlaceholder=Gyorsabb reagálás a bevitelre # options.improvedInputResponsePlaceholder.tooltip=Csökkenti a bevitel és a képernyőn látott reakció közti késleltetést. Ez növelheti az akkumulátorfogyasztást. # +options.dynamicTexturesToggle=Textúrakorlát eltávolítása # +options.dynamicTexturesToggle.tooltip=A funkció kikapcsolása esetén újra kell indítani a játékot. Ha több, sok textúrát tartalmazó bővítményt vagy erőforráscsomagot használsz, az a játék instabilitásához vezethet. # +options.dynamicTextures.popUp=Ha bekapcsolod a Textúrakorlát eltávolítása funkciót, a kikapcsolásához újra kell indítani a játékot. # +options.dynamicTextures.popUp.title=Biztos vagy benne? # options.fullscreen=Teljes képernyő # options.gamepadcursorsensitivity=Kontroller kurzor érzékenysége # options.gamertag=Becenév: # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=Csatlakozás # options.creator.debuggerListen=Hallgatózom # options.creator.debuggerHost=Játékgazda # options.creator.debuggerPort=Portszám # +options.creator.watchdogHeading=Szkriptfigyelő beállításai # +options.creator.watchdogSlowWarning=Lassú szkripttel kapcsolatos figyelmeztetések # +options.creator.watchdogSlowThreshold=Átlagos túllépés # +options.creator.watchdogSlowFormat=%s ezredmásodperc # +options.creator.watchdogSlowFormatDefault=%s ezredmásodperc (alapértelmezett) # +options.creator.watchdogSpikeWarning=Szkript csúcsértékével kapcsolatos figyelmeztetések # +options.creator.watchdogSpikeThreshold=A csúcsértékek meghaladják a következőt: # +options.creator.watchdogSpikeFormat=%s ezredmásodperc # +options.creator.watchdogSpikeFormatDefault=%s ezredmásodperc (alapértelmezett) # +options.creator.watchdogHangThreshold=Megszakítás ennyi idő után: # +options.creator.watchdogHangFormat=%s másodperc # +options.creator.watchdogHangFormatDefault=%s másodperc (alapértelmezett) # options.vr_classic_box_selection=Körvonal kijelölése # options.hidegamepadcursor=Kontroller kurzor elrejtése # options.hidegui=Kezelőfelület elrejtése # @@ -6662,7 +6761,7 @@ options.makeBackup=Biztonsági másolat készítése a világomról # options.managePrivacy=Az adatvédelmi beállítások kezeléséhez nyisd meg bármely böngészőben a https://account.xbox.com/Settings oldalt. ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Microsoft-fiók társításának törlése # options.unlink_msa.confirm.title=Szeretnéd törölni a Microsoft-fiók társítását? # -options.unlink_msa.confirm.warning=FIGYELMEZTETÉS: A társítás törlése után nem tárolhatod „PlayStation 4” rendszeren elért előrehaladásodat és itt végrehajtott vásárlásaidat %s fiókodban. # +options.unlink_msa.confirm.warning=FIGYELMEZTETÉS: A társítás törlése után nem tárolhatod a PlayStation®4 rendszeren elért előrehaladásodat és itt végrehajtott vásárlásaidat %s-fiókodban. #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=A Microsoft-fiók játékból való leválasztása az összes olyan minecraftos játékra hatással lesz ezen a platformon, amelyek ezt a Microsoft-fiókot használják # options.unlink_msa.confirm.checkbox1=A jövőben nem érek majd el semmilyen Áruházban vásárolt játékbeli tartalmat, ha más platformon játszom. # options.unlink_msa.confirm.checkbox2=A jövőben nem tudok majd keresztplatformos játékban részt venni barátaimmal, akik más platformon játszanak. # @@ -6688,7 +6787,7 @@ options.editor.modeDescription.messageWithMouse=A Szerkesztő mód hatékony esz options.editor.modeActive=A Minecraft jelenleg Szerkesztő módban van. # options.editor.modeNotActive=A Minecraft jelenleg nincs Szerkesztő módban. # options.editor.achievementsDisabled=Ebben a projektben nem lehet mérföldköveket elérni. # -options.newUiPlayScreen.initiate=Váltás az új felhasználói felületre # +options.newUiPlayScreen.initiate=Váltás: új UI # options.openPage.continue=További információk # options.graphicsMode=Grafikai mód # options.graphicsMode.simple=Egyszerű # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=Tölts be egy világot a vezérlők testr hudScreen.controlCustomization.tooltip.notouch=Érintőképernyős készülék használata a vezérlők testreszabásához # hudScreen.controlCustomization.tooltip.alreadycustomizing=Már meg van nyitva egy érintésvezérlés testre szabására szolgáló képernyő # hudScreen.controlCustomization.tooltip.alive=A vezérlés testreszabásához a játékosnak életben kell lennie. # +hudScreen.daysPlayed=Lejátszott napok: %s # +hudScreen.daysPlayed.overflow=Megszámlálhatatlan! # playscreen.fileSize.MB=MB # playscreen.fileSize.GB=GB # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=Gyógyítás robbanó bájitala # potion.heal.linger.name=Gyógyítás időző bájitala # potion.healthBoost=Életerősítés # potion.hunger=Éhség # +potion.infested.linger.name=A fertőzés hosszú hatású bájitala # +potion.infested.name=A fertőzés bájitala # +potion.infested.splash.name=A fertőzés robbanó bájitala # +potion.infested=Fertőzött # potion.invisibility=Láthatatlanság # potion.invisibility.name=Láthatatlanság bájitala # potion.invisibility.splash.name=Láthatatlanság robbanó bájitala # @@ -7067,6 +7172,10 @@ potion.nightVision=Éjjellátás # potion.nightVision.name=Éjjellátás bájitala # potion.nightVision.splash.name=Éjjellátás robbanó bájitala # potion.nightVision.linger.name=Éjjellátás időző bájitala # +potion.oozing.linger.name=A ragacskodás hosszú hatású bájitala # +potion.oozing.name=A ragacskodás bájitala # +potion.oozing.splash.name=A ragacskodás robbanó bájitala # +potion.oozing=Ragacskodás # potion.poison=Méreg # potion.poison.name=Méreg bájitala # potion.poison.splash.name=Méreg robbanó bájitala # @@ -7108,6 +7217,14 @@ potion.weakness=Gyengeség # potion.weakness.name=Gyengeség bájitala # potion.weakness.splash.name=Gyengeség robbanó bájitala # potion.weakness.linger.name=Gyengeség időző bájitala # +potion.weaving.linger.name=A szövés hosszú hatású bájitala # +potion.weaving.name=A szövés bájitala # +potion.weaving.splash.name=A szövés robbanó bájitala # +potion.weaving=Fonás # +potion.windCharged.linger.name=A széllökés hosszú hatású bájitala # +potion.windCharged.name=A széllökés bájitala # +potion.windCharged.splash.name=A széllökés robbanó bájitala # +potion.windCharged=Széllökött # potion.wither=Sorvasztó # potion.wither.name=Romlás bájitala # potion.wither.splash.name=Romlás robbanó bájitala # @@ -7144,7 +7261,7 @@ persona.realms.redeem=Beváltás # persona.realms.see.subscription=A Realms Plusban # persona.realms.time.remaining=%s a beváltásig # persona.realms.savings=%s Minecoint takarítasz meg a Realms Plus-előfizetéssel! # -persona.csb.savings=%s Minecoint takarítasz meg a Marketplace Pass-előfizetéssel! # +persona.csb.savings=%s Minecoint takarítasz meg a Piactéri bérlet-előfizetéssel! # persona.preview.emote=Hangulatjel lejátszása # progressScreen.cantConnect=Nem sikerült csatlakozni a világhoz. Ellenőrizd az internetkapcsolatot, majd próbáld újra. # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=Ezt a világot nem lehet megnyitni a progressScreen.message.forbiddenContent=Az alkalmazott csomagok közül egy vagy több nincs a birtokodban # progressScreen.message.loadingSplitScreenAppearances=Osztott képernyős megjelenítés betöltése... # progressScreen.message.finishedLoadingSplitScreenAppearances=Az osztott képernyős megjelenítés betöltése kész. # -progressScreen.message.modifiedWorldWarning=Előfordulhat, hogy ez a világ nem olyan lesz vagy nem úgy működik majd, mint a nem módosított világok, és nem tudsz mérföldköveket elérni. # +progressScreen.message.modifiedWorldWarning.1=A világ, amiben játszol, bővítményeket használ! Ez új funkciókkal ruházza fel a Minecraft-világodat. # +progressScreen.message.modifiedWorldWarning.2=Ne állj meg egynél! Egyszerre akár több bővítményt is betölthetsz egyetlen világba. # +progressScreen.message.modifiedWorldWarning.3=Tipp haladóknak: Az erőforráscsomagokkal módosíthatod a különböző blokkok és entitások textúráit. # +progressScreen.message.modifiedWorldWarning.4=Tipp haladóknak: A viselkedéscsomagokkal módosíthatod a különböző tárgyak, entitások vagy blokkok viselkedését. # +progressScreen.message.modifiedWorldWarning.5=Tipp haladóknak: A bővítmények tartalmaznak egy viselkedéscsomagot és egy erőforráscsomagot. Ahhoz, hogy a bővítmény megfelelően működjön, győződj meg arról, hogy mindkét csomag aktiválva van! # +progressScreen.message.modifiedWorldWarning.6=A bővítményekkel új blokkokat, tárgyakat vagy mobokat adhatsz a világaidhoz. # +progressScreen.message.modifiedWorldWarning.7=A világok és a bővítmények nagyon összetettek! Míg egyes párosítások kitűnően működnek együtt, mások különös eredményekkel járhatnak. # +progressScreen.message.modifiedWorldWarning.8=A több bővítmény még több szórakozást jelent, de egyúttal hosszabb betöltési idővel is jár. # progressScreen.dialog.title.resourcePack=Letöltöd az erőforráscsomagot? # progressScreen.dialog.title.behaviorAndResourcePack=Letöltöd a világ viselkedés- és erőforráscsomagjait? # progressScreen.dialog.title.onlyBehavior=Letöltöd a világ viselkedéscsomagjait? # @@ -7300,7 +7424,7 @@ resourcePack.selected.title.behaviorPacks=Aktív viselkedéscsomagok # resourcePack.selected.title.packs=Aktív # resourcePack.selected.remove=Deaktiválás # resourcePack.realmsPlus.title.packs=Realms Plus csomagok # -resourcePack.realmsPlus.title.packs.contentSub=Marketplace Pass-csomagok # +resourcePack.realmsPlus.title.packs.contentSub=Piactéri bérlet-csomagok # resourcePack.realmsPlus.expired=Lejárt # resourcePack.errors=Hibák: # resourcePack.error.ingame.packs=Az erőforráscsomagokat a világban való játszás közben nem lehet módosítani. # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=Frissíted a világot? # resourcePack.warning.add.body=Előfordulhat, hogy ez a világ nem olyan lesz vagy nem úgy működik majd, mint a nem módosított világok. A folytatás előtt érdemes menteni a világodból egy példányt. # resourcePack.warning.add.button.cancel=Ne adja hozzá a csomagot # resourcePack.warning.add.button.ok=Mindenképpen adja hozzá a csomagot # +resourcePack.warnings.contentKeyErrorBody=Nem sikerült betölteni a következő csomagot: %s. # +resourcePack.warnings.contentKeyErrorBodyMultiple=Nem sikerült betölteni a következő csomagokat: %s. # +resourcePack.warnings.contentKeyErrorTitle=Hiba! # resourcePack.warning.remove.title=Ez veszélyes! # resourcePack.warning.remove.body=Ha hozzáadsz vagy eltávolítasz egy csomagot, miután játszottál egy világgal, akkor előfordulhat, hogy a világ megsérül, az alkotásaid pedig elvesznek. # resourcePack.warning.remove.button.cancel=A csomag megtartása # @@ -7557,7 +7684,9 @@ item.crimson_hanging_sign.name=Karmazsin lógó tábla # item.danger_pottery_sherd.name=Veszély edényszilánk # item.dark_oak_hanging_sign.name=Sötét tölgyfa lógó tábla # item.explorer_pottery_sherd.name=Felfedező edényszilánk # +item.flow_pottery_sherd.name=Áramlás edényszilánk # item.friend_pottery_sherd.name=Barát edényszilánk # +item.guster_pottery_sherd.name=Guster edényszilánk # item.heart_pottery_sherd.name=Szív edényszilánk # item.heartbreak_pottery_sherd.name=Összetört szív edényszilánk # item.howl_pottery_sherd.name=Üvöltés edényszilánk # @@ -7568,6 +7697,7 @@ item.mourner_pottery_sherd.name=Gyászoló edényszilánk # item.oak_hanging_sign.name=Tölgyfa lógó tábla # item.plenty_pottery_sherd.name=Sok edényszilánk # item.prize_pottery_sherd.name=Jutalom edényszilánk # +item.scrape_pottery_sherd.name=Kaparás edényszilánk # item.sheaf_pottery_sherd.name=Nyaláb edényszilánk # item.shelter_pottery_sherd.name=Menedék edényszilánk # item.skull_pottery_sherd.name=Koponya edényszilánk # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=Cseresznyefa lépcső # tile.cherry_trapdoor.name=Cseresznyefa csapóajtó # tile.cherry_wood.name=Cseresznyefa # tile.chiseled_bookshelf.name=Finoman kidolgozott könyvespolc # +tile.chiseled_tuff.name=Finoman kidolgozott tufa # +tile.chiseled_tuff_bricks.name=Finoman kidolgozott tufatéglák # tile.decorated_pot.name=Díszes edény # tile.pink_petals.name=Rózsaszín szirmok # tile.stripped_bamboo_block.name=Gyalult bambuszblokk # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=Vex páncéldíszítő elem # trim_pattern.ward.name=Őrző páncéldíszítő elem # trim_pattern.wayfinder.name=Navigátor páncéldíszítő elem # trim_pattern.wild.name=Vad páncéldíszítő elem # +trim_pattern.bolt.name=Villámcsapáspáncél díszítőeleme # +trim_pattern.flow.name=Áramláspáncél díszítőeleme # upgrade.netherite_upgrade.name=Alvilágérc fejlesztés # storageManager.mainSizeLabel=%s – 1 elem # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=Törlöd a világsablont? # selectTemplate.delete=Törlés # selectTemplate.myTemplates=Saját világsablonok # selectTemplate.realmsPlus=Kiemelt Realms Plus sablonok # -selectTemplate.marketplacePass=Kiemelt sablonok a Marketplace Pass kínálatából #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=Kiemelt tartalmak a Marketplace Pass kínálatából #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=Importált sablonok # selectTemplate.download=Letöltés # selectTemplate.noTemplates=Ezen az eszközön nincsenek világsablonok. # -selectTemplate.suggestedContent.title=Kiemelt sablonok a Piactérről # +selectTemplate.suggestedContent.title=Kiemelt piactéri tartalmak # selectTemplate.suggestedContent.button=További sablonok megjelenítése # selectTemplate.createdBy=Alkotó: %s # selectTemplate.inventory=Piactér csomagjaim # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=Hiba történt a csatlakozás során. Lépj vissz store.loading.error.issues=Hmm, probléma lépett fel a Piactérrel kapcsolatban. Próbálj később újra csatlakozni. # store.loading.error.internetDown=Nem találjuk az internetkapcsolatot. # store.loading.error.account=Probléma lépett fel a fiókoddal kapcsolatban. Próbálkozz újra később. Ha a hiba továbbra is fennáll, lépj kapcsolatba a terméktámogatással. # +store.loading.error.account.banned=A felfüggesztésed lejártáig nem használhatod a Piacteret. # store.giftPromo.day=%s nap ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=Megszerezve # @@ -8409,6 +8544,13 @@ store.mashup.count.world=1 világ # store.mashup.count.worlds=%s világ #number of worlds # store.mashup.count.addonPack=1 bővítmény # store.mashup.count.addonPacks=%s bővítmény #number of addons # +store.mashup.count.mashup=Mix # +store.mashup.hover.label.addonPack=A bővítmények bármely világon alkalmazhatók. # +store.mashup.hover.label.world=Egy kézzel készített Minecraft-térkép. # +store.mashup.hover.label.skin=Ruházd fel a karaktered egy új kinézettel. # +store.mashup.hover.label.texturePack=Kölcsönözz új látványt a világodnak vagy a játék kezelőfelületének. # +store.mashup.hover.label.mashup.lineOne=Különböző típusú tartalmak kombinációja. # +store.mashup.hover.label.mashup.lineTwo=Ez a mixcsomag a következőket tartalmazza: # store.addon.activateAddonPack=Aktiváld a bővítményt! # store.addon.newOrExistingTitle=Mihez szeretnéd hozzáadni? # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=Tábla # tile.chest.name=Láda # tile.ender_chest.name=Végzetláda # tile.jigsaw.name=Kirakósblokk # +tile.heavy_core.name=Nehézmag # tile.honey_block.name=Mézblokk # tile.honeycomb_block.name=Méhsejtblokk # tile.lodestone.name=Mágnes # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=Csiszolt feketekő lépcsőfok # tile.polished_blackstone_pressure_plate.name=Csiszolt feketekő nyomólap # tile.polished_blackstone_button.name=Csiszolt feketekő gomb # tile.polished_blackstone_wall.name=Csiszolt feketekő fal # +tile.polished_tuff.name=Polírozott tufa # +tile.polished_tuff_slab.name=Polírozott tufa lépcsőfok # +tile.polished_tuff_stairs.name=Polírozott tufalépcső # +tile.polished_tuff_wall.name=Polírozott tufafal # tile.soul_campfire.name=Lélektábortűz # tile.chiseled_nether_bricks.name=Vésett alvilági tégla # tile.cracked_nether_bricks.name=Töredezett alvilági tégla # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=Sárga terrakotta # tile.structure_block.name=Szerkezeti blokk # structure_block.waterlog_block=Átnedvesedett blokkok # tile.structure_void.name=Szerkezeti üres hely # +tile.trial_spawner.name=Próbaidéző # +tile.vault.name=Páncélterem # tile.wool.black.name=Fekete gyapjú # tile.wool.blue.name=Kék gyapjú # tile.wool.brown.name=Barna gyapjú # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=Páfrány # tile.tallgrass.grass.name=Fű # tile.tallgrass.name=Fű # tile.tallgrass.shrub.name=Cserje # +tile.tuff_brick_slab.name=Tufatégla lépcsőfok # +tile.tuff_brick_stairs.name=Tufatégla lépcső # +tile.tuff_brick_wall.name=Tufatégla fal # +tile.tuff_bricks.name=Tufatéglák # +tile.tuff_slab.name=Tufa lépcsőfok # +tile.tuff_stairs.name=Tufalépcső # +tile.tuff_wall.name=Tufafal # tile.seagrass.seagrass.name=Tengerifű # tile.sea_pickle.name=Tengeri uborka # tile.turtle_egg.name=Tengeriteknős-tojás # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=Vörös szőnyeg # tile.carpet.silver.name=Világosszürke szőnyeg # tile.carpet.white.name=Fehér szőnyeg # tile.carpet.yellow.name=Sárga szőnyeg # +tile.crafter.name=Barkácsoló # tile.crafting_table.name=Barkácsasztal # tile.glazedTerracotta.white.name=Fehér zománcozott terrakotta # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=Viaszolt vágott rézlap # tile.waxed_exposed_cut_copper_slab.name=Viaszolt kopott vágott rézlap # tile.waxed_weathered_cut_copper_slab.name=Viaszolt viharvert vágott rézlap # tile.waxed_oxidized_cut_copper_slab.name=Viaszolt oxidált vágott rézlap # + +tile.chiseled_copper.name=Finoman kidolgozott réz # +tile.exposed_chiseled_copper.name=Kopott, finoman kidolgozott réz # +tile.oxidized_chiseled_copper.name=Oxidált, finoman kidolgozott réz # +tile.waxed_chiseled_copper.name=Viaszolt, finoman kidolgozott réz # +tile.waxed_exposed_chiseled_copper.name=Viaszolt, kopott, finoman kidolgozott réz # +tile.waxed_oxidized_chiseled_copper.name=Viaszolt, oxidált, finoman kidolgozott réz # +tile.waxed_weathered_chiseled_copper.name=Viaszolt, viharvert, finoman kidolgozott réz # +tile.weathered_chiseled_copper.name=Viharvert, finoman kidolgozott réz # + +tile.copper_bulb.name=Rézizzó # +tile.exposed_copper_bulb.name=Kopott réz izzó # +tile.oxidized_copper_bulb.name=Oxidált rézizzó # +tile.waxed_copper_bulb.name=Viaszolt rézizzó # +tile.waxed_exposed_copper_bulb.name=Viaszolt, kopott rézizzó # +tile.waxed_oxidized_copper_bulb.name=Viaszolt oxidált réz izzó # +tile.waxed_weathered_copper_bulb.name=Viaszolt, viharvert rézizzó # +tile.weathered_copper_bulb.name=Viharvert rézizzó # + +tile.copper_door.name=Rézajtó # +tile.exposed_copper_door.name=Kopott rézajtó # +tile.oxidized_copper_door.name=Oxidált rézajtó # +tile.waxed_copper_door.name=Viaszolt rézajtó # +tile.waxed_exposed_copper_door.name=Viaszolt, kopott rézajtó # +tile.waxed_oxidized_copper_door.name=Viaszolt, oxidált rézajtó # +tile.waxed_weathered_copper_door.name=Viaszolt, viharvert rézajtó # +tile.weathered_copper_door.name=Viharvert rézajtó # + +tile.copper_grate.name=Rézrács # +tile.exposed_copper_grate.name=Kopott rézrács # +tile.oxidized_copper_grate.name=Oxidált rézrács # +tile.waxed_copper_grate.name=Viaszolt rézrács # +tile.waxed_exposed_copper_grate.name=Viaszolt, kopott rézrács # +tile.waxed_oxidized_copper_grate.name=Viaszolt, oxidált rézrács # +tile.waxed_weathered_copper_grate.name=Viaszolt, viharvert rézrács # +tile.weathered_copper_grate.name=Viharvert rézrács # + +tile.copper_trapdoor.name=Réz csapóajtó # +tile.exposed_copper_trapdoor.name=Kopott réz csapóajtó # +tile.oxidized_copper_trapdoor.name=Oxidált réz csapóajtó # +tile.waxed_copper_trapdoor.name=Viaszolt réz csapóajtó # +tile.waxed_exposed_copper_trapdoor.name=Viaszolt kopott réz csapóajtó # +tile.waxed_oxidized_copper_trapdoor.name=Viaszolt, oxidált réz csapóajtó # +tile.waxed_weathered_copper_trapdoor.name=Viaszolt, viharvert réz csapóajtó # +tile.weathered_copper_trapdoor.name=Viharvert réz csapóajtó # + tile.raw_copper_block.name=Nyersrézblokk # tile.raw_iron_block.name=Nyersvasblokk # tile.raw_gold_block.name=Nyersaranyblokk # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=Szerencse nyila # tipped_arrow.effect.wither=Romlás nyila # tipped_arrow.effect.turtleMaster=A Teknősmester nyila # tipped_arrow.effect.slowFalling=Zuhanáslassítás nyílvesszője # +tipped_arrow.effect.infested=A fertőzés nyila # +tipped_arrow.effect.oozing=A ragacskodás nyila # +tipped_arrow.effect.weaving=A szövés nyila # +tipped_arrow.effect.windCharged=A széllökés nyila # structure_block.title=Szerkezeti blokk # structure_block.structure_name=Szerkezet neve # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=Előfordulhat, hogy legutóbbi változ worldError.worldFailedRecovery=Helyreállítás sikertelen # worldError.worldFailedRecoveryText=Találtunk egy sérült világot, de annak helyreállítása sikertelen volt. # +writeThrottling.osDialog.body=A kért művelet végrehajtása körülbelül %d percet vesz igénybe. Ez idő alatt ne kapcsold ki az eszközt. # +writeThrottling.osDialog.cancel=Művelet megszakítása # +writeThrottling.osDialog.confirm=Tovább # +writeThrottling.progressBar.title=Adatok előkészítése # +writeThrottling.progressBar.body=A fájlok előkészítése... # + userData.recovered.title=Mentett adatok helyreállítva # userData.recovered.text=Sérült felhasználói beállításaid sikeresen helyreállítva. # userData.recovered.warning=Előfordulhat, hogy legutóbbi változtatásaid elvesztek a helyreállítás során. # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=Csevegőüzenet # xbox.report.area.skin=Játékosfelület # xbox.report.area.gameplay=Játékmenet # xbox.report.area.ingame=Játékbeli alkotások # -xbox.report.area.other=Egyéb # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=Online zaklatás # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=Sajnos nem sikerült csatlakozni. Próbál gathering.connect.title=Csatlakozás… # gathering.info.qr.title.onlineService=További információk # gathering.info.qr.body.onlineService.nso=A Minecraft-eseményekhez való csatlakozáshoz Nintendo Switch Online-tagság szükséges. # -gathering.info.qr.body.onlineService.psn=Be kell jelentkezned a „PlayStation Plus” szolgáltatásba a Minecraft-eseményekhez való csatlakozáshoz. # +gathering.info.qr.body.onlineService.psn=A Minecraft-eseményekhez való csatlakozáshoz be kell jelentkezned a PlayStation®Plus szolgáltatásba. #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=Jelentkezz be a Minecraft-eseményekhez való csatlakozáshoz. # gathering.info.qr.title.childAccount=Az online játék nem engedélyezett # gathering.info.qr.body.childAccount=A szülői felügyeleti korlátozásaid nem engedélyezik az online játékot. # diff --git a/resource_pack/texts/id_ID.lang b/resource_pack/texts/id_ID.lang index 4d657bdc3..2a645520a 100644 --- a/resource_pack/texts/id_ID.lang +++ b/resource_pack/texts/id_ID.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=Pilih Benih # accessibility.start.feedback=Kirim Tautan Umpan Balik ke Situs Web # accessibility.start.new=Baru # -accessibility.start.profile=Pilih Profil # accessibility.start.skinPicker=Pilih Skin # accessibility.store.tag=Tag # @@ -1094,10 +1093,6 @@ commands.me.description=Menampilkan pesan tentang diri sendiri. # commands.message.display.incoming=%1$s berbisik kepadamu: %2$s # commands.message.display.outgoing=Kamu berbisik ke %1$s: %2$s # commands.message.sameTarget=Kamu tidak bisa mengirim pesan pribadi kepada diri sendiri! # -commands.message.warn=§4Kamu telah mengirim peringatan. Perilaku kamu mungkin dianggap pemain lain menghina. Hormati orang lain yang bermain bersamamu. # -commands.message.toastWarn=Minecraft ada untuk semua orang! Pastikan kamu berperilaku sesuai dengan standar komunitas kami. # -commands.warn.invalidWarningLevel=Level peringatan tidak valid. # -commands.warn.playerDoesNotExist=Tidak bisa menemukan pemain. Pilih pemain yang valid. # commands.mobevent.description=Mengontrol acara mob yang diizinkan untuk dijalankan. # commands.mobevent.eventsEnabledSetToTrue=Acara Mob kini diaktifkan. Acara individual yang diatur ke false tidak akan dijalankan. # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=- %s: %s dari %d %d %d menjadi %d %d %d commands.volumearea.entry.withoutIdentifier=- %s: dari %d %d %d menjadi %d %d %d # commands.volumearea.noneExist.currentDimension=Tidak ada volume di dimensi saat ini. # commands.volumearea.inUse=%1$d/%2$d volume yang digunakan. # -commands.warn.description=Mengirim pesan peringatan ke pemain. # commands.weather.clear=Mengubah ke cuaca cerah # commands.weather.description=Menetapkan cuaca. # commands.weather.disabled=Siklus Cuaca tidak diaktifkan di dunia ini. # @@ -1572,6 +1566,7 @@ container.beacon=Suar # container.brewing=Dudukan Peramuan # container.chest=Peti # container.chestDouble=Peti Besar # +container.crafter=Pembuat # container.crafting=Pembuatan # container.creative=Pilihan Item # container.dispenser=Dispenser # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=Gua dan Tebing # createWorldScreen.cavesandcliffsDescription=Jelajahi bentuk gua baru yang bervariasi # createWorldScreen.spectatorMode=Mode Penonton # createWorldScreen.spectatorModeDescription=Coba versi awal Mode Penonton # -createWorldScreen.experimentalCameras=Kamera Eksperimental # -createWorldScreen.experimentalCamerasDescription=Berisi contoh prasetel kamera (perintah kamera tidak lagi eksperimental) # createWorldScreen.recipeUnlocking=Membuka Resep # createWorldScreen.recipeUnlockingDescription=Aktifkan membuka resep # createWorldScreen.experimentalholiday=Fitur Kreator Liburan # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=Membuat dunia baru... # createWorldScreen.progress.realms=Mengatur ulang Realm... # createWorldScreen.seed.desc=Masukkan benih untuk menghasilkan medan yang sama lagi. Biarkan kosong untuk menghasilkan dunia acak. # createWorldScreen.showCoordinates=Tampilkan Koordinat # +createWorldScreen.showDaysPlayed=Tampilkan Jumlah Hari Bermain # createWorldScreen.worldType=Jenis Dunia # createWorldScreen.randomtickspeed=Kecepatan Tick Acak # createWorldScreen.randomtickspeed.reset=Atur Ulang Kecepatan Tick Acak # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=Hapus Proyek # createWorldScreen.editor.projectOptionsLabel=Opsi Proyek # createWorldScreen.editor.delete.confirm=Hapus proyek secara permanen? # createWorldScreen.editor.deleteWarningFormat=Kamu yakin ingin menghapus "%s"? Proyek ini akan hilang selamanya! # +createWorldScreen.eduCloud.about.body=Namafile:'%1$s'%2$sTerakhir diperbarui: %3$s%4$sUntuk mengunduh, klik OK, lalu Unduh.%5$s # +createWorldScreen.eduCloud.about.title=Tentang File Dunia Awan # createWorldScreen.eduCloud.delete.confirm=Hapus dunia lokal? # createWorldScreen.eduCloud.deleteWarningFormat=Kamu yakin ingin menghapus “%1$s” di perangkat ini?%2$sVersi cloud “%3$s” tidak akan terpengaruh dan dapat disinkronkan lagi nanti. # createWorldScreen.experimentalDeferredTechnicalPreview=Fitur Render Dragon untuk Kreator # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Bursa Windows # realmsSettingsScreen.xboxOneStoreDisplayName=Toko Xbox # realmsSettingsScreen.amazonStoreDisplayName=Amazon Appstore # realmsSettingsScreen.oculusStoreDisplayName=Oculus Store # -realmsSettingsScreen.berwickStoreDisplayName="PlayStation Store" # -realmsSettingsScreen.SonyStoreDisplayName=\"PlayStation Store\" #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=toko tidak diketahui # realmsSettingsScreen.extendingRealm=Memperpanjang Realm... # realmsSettingsScreen.offerError.title=Pembelian Tertunda # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=Paket yang dibeli di luar Marke xbl.syncIAP.confirmSync.prompt.yes=Ya, Sinkronkan Pembelian Saya # xbl.marketplace.account.error.body.nobutton=Ada kesalahan pada akunmu. Kamu tidak bisa menggunakan marketplace hingga kami menyelesaikan masalah tersebut. Jika masalah ini berlanjut selama beberapa hari, harap hubungi dukungan. # -xbl.marketplace.account.banned.body.nobutton=Kamu tidak bisa menggunakan marketplace hingga penangguhan kamu selesai. # playfab.account.banned.temporary=ditangguhkan # playfab.account.banned.permanent=dilarang # @@ -2487,6 +2482,14 @@ date.daysAbbreviated1Char=%sh ### It needs to be abbreviated with no more than date.hoursAbbreviated1Char=%sj ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%sm ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%sd ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s hari # +date.hoursPlural=%s jam # +date.minutesPlural=%s menit # +date.secondsPlural=%s detik # +date.daySingular=%s hari # +date.hourSingular=%s jam # +date.minuteSingular=%s menit # +date.secondSingular=%s detik # date.timeLeft=%s tersisa # dayOneExperience.carousel.title=Selamat datang di Minecraft Baru! # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=HOST # edu.worlds_screen.settings=PENGATURAN # edu.worlds_screen.download=UNDUH ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=KELOLA # +edu.worlds_screen.about=TENTANG # edu.worlds_screen.back=KEMBALI # edu.worlds_screen.copy=SALIN # edu.worlds_screen.export=EKSPOR # @@ -2791,7 +2795,13 @@ edu.templates.empty_banner=Kamu bisa mendapatkan template dunia dari Pustaka Min edu.pause.multiplayer.disabled=Multipemain tidak tersedia dalam pelajaran ini. # effect.badOmen=Pertanda Buruk # +effect.infested=Berisi # +effect.oozing=Mengalir # +effect.raid_omen=Pertanda Buruk Serbuan # +effect.trial_omen=Pertanda Ujian # effect.villageHero=Pahlawan Desa # +effect.weaving=Menenun # +effect.wind_charged=Bertenaga Angin # enchantment.arrowDamage=Kekuatan # enchantment.arrowFire=Api # @@ -2810,6 +2820,9 @@ enchantment.durability=Tak Terpatahkan # enchantment.fire=Aspek Api # enchantment.fishingSpeed=Pancing # enchantment.frostwalker=Pejalan Es # +enchantment.heavy_weapon.breach=Pelanggaran # +enchantment.heavy_weapon.density=Kepadatan # +enchantment.heavy_weapon.windburst=Semburan Angin # enchantment.knockback=Pukul Mundur # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=Kelelawar # entity.bee.name=Lebah # entity.blaze.name=Kobaran Api # entity.boat.name=Perahu # +entity.bogged.name=Bogged # +entity.breeze.name=Breeze # +entity.breeze_wind_charge_projectile.name=Muatan Angin # entity.cat.name=Kucing # entity.cave_spider.name=Laba-Laba Gua # entity.chicken.name=Ayam # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=Orang Desa Tak Terdidik # entity.villager_v2.name=Orang Desa # entity.vindicator.name=Vindicator # entity.wandering_trader.name=Pedagang Keliling # +entity.wind_charge_projectile.name=Muatan Angin # entity.witch.name=Penyihir # entity.wither.name=Wither # entity.wither_skeleton.name=Wither Tengkorak # @@ -3009,6 +3026,7 @@ feature.ruins=Reruntuhan Laut # feature.pillager_outpost=Pos Penjarah # feature.bastion_remnant=Puing Bastion # feature.ruined_portal=Portal Hancur # +feature.trial_chambers=Ruangan Uji Coba # feed.like=Suka # feed.manage_feed=Kelola umpan # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=Gerakkan :tip_left_stick: untuk bergerak # gameTip.flying.mouse=Ketuk dua kali :_input_key.jump: untuk terbang # gameTip.flying.touch=Ketuk dua kali lompat untuk terbang # +gameTip.flyDown.mouse=Tekan :_input_key.sneak: untuk terbang ke bawah # +gameTip.flyUp.mouse=Tekan :_input_key.jump: untuk terbang ke atas # + +gameTip.stopFlying.mouse=Ketuk dua kali :_input_key.jump: untuk berhenti terbang # +gameTip.stopFlying.touch=Ketuk dua kali terbang ke bawah untuk berhenti terbang # + gameTip.jump.mouse=Lompat dengan :_input_key.jump: # +gameTip.swim.mouse=Tekan terus :_input_key.jump: untuk berenang ke atas # -gameTip.hotbar.mouse=Gulirkan roda mouse untuk memilih # di panel pilihan untuk menahannya # -gameTip.hotbar.touch=Ketuk # di panel pilihan untuk menahannya # -gameTip.hotbar.controller=Ketuk # di panel pilihan untuk menahannya # +gameTip.hotbar.selection.mouse=Gulir atau tekan %s untuk memegang item ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=Ketuk item di panel pilihan untuk memegangnya # gameTip.breakBlock.mouse=Tahan klik kiri untuk menghancurkan blok # gameTip.breakBlock.touch=Ketuk dan tahan untuk menghancurkan blok # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=Kamu menyelinap! Tidak bisa jatuh dari tepi sekarang # gameTip.sneak.touch=Kamu menyelinap, jadi kamu tidak bisa jatuh dari tepi # gameTip.sneak.controller=Kamu menyelinap, jadi kamu tidak bisa jatuh dari tepi # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=Tempatkan meja pembuatan kamu. Tahan dan klik untuk menempatkan # gameTip.placeCraftingTable.touch=Tempatkan meja pembuatan dengan mengetuk tanah # gameTip.placeCraftingTable.controller=Tempatkan meja pembuatan, tahan kemudian ketuk tanah # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=Terima kasih telah membagikan ulasanmu! # gui.submitFeedback.failure.status.unprocessableEntity=Kamu tidak memiliki item yang kamu coba berikan umpan baliknya. (Kode Kesalahan: %d) # gui.submitFeedback.failure.status.tooManyRequests=Oh tidak! Kamu mengirim terlalu banyak ulasan, silakan coba lagi nanti. (Kode Kesalahan: %d) # gui.submitFeedback.failure.status.other=Tidak dapat mengirimkan ulasanmu saat ini, silakan coba lagi nanti. (Kode Kesalahan: %d) # +gui.togglable_slot=Tekan untuk menonaktifkan slot # gui.playOffline=Mainkan Secara Offline # gui.signIn=Masuk # gui.genericNetworkError=Terjadi kesalahan. Coba periksa koneksi internet. # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=Jelajahi segudang peluang dengan mata uang dalam game howtoplay.minecoins.text.2=Setelah ditukarkan, Minecoins terhubung ke akun Microsoft kamu sehingga koin itu juga bisa dicek dan dipakai untuk membeli di perangkat lain yang didukung! # howtoplay.minecoins.button.text.1=Dapatkan Koin # howtoplay.minecoins.header.1=Penafian # -howtoplay.minecoins.text.3=*Minecoins memerlukan versi Minecraft: Bedrock Edition dengan Marketplace Minecraft. Minecoins tidak kompatibel di Sony PlayStation. Keterangan kompatibilitas bisa dilihat di minecraft.net/Minecoins  # +howtoplay.minecoins.text.3=*Minecoins memerlukan versi Minecraft: Bedrock Edition dengan Marketplace Minecraft. Minecoins tidak kompatibel di Sony PlayStation®. Keterangan kompatibilitas bisa dilihat di minecraft.net/Minecoins  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=Pertambangan # @@ -4145,7 +4170,7 @@ level.editor.export.failed=Ekspor proyek gagal # level.editor.import.failed=Impor proyek gagal # level.editor.import.failed.incompatibleEdition=Impor proyek gagal: Format file tidak didukung # -inbox.invite.title=Undangan Realm # +inbox.invite.title=Undangan Realm kepada # invite.clear=Hapus Pilihan # invite.send=Kirim %d Undangan # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=Per Bend Kanan Merah Terbalik # item.banner.diagonal_up_right.silver=Per Bend Kanan Abu-Abu Muda Terbalik # item.banner.diagonal_up_right.white=Per Bend Kanan Putih Terbalik # item.banner.diagonal_up_right.yellow=Per Bend Kanan Kuning Terbalik # +item.banner.flow.black=Aliran Hitam # +item.banner.flow.blue=Aliran Biru # +item.banner.flow.brown=Aliran Cokelat # +item.banner.flow.cyan=Aliran Sian # +item.banner.flow.gray=Aliran Abu-Abu # +item.banner.flow.green=Aliran Hijau # +item.banner.flow.lightBlue=Aliran Biru Muda # +item.banner.flow.lime=Aliran Hijau Limau # +item.banner.flow.magenta=Aliran Magenta # +item.banner.flow.orange=Aliran Oranye # +item.banner.flow.pink=Aliran Merah Muda # +item.banner.flow.purple=Aliran Ungu # +item.banner.flow.red=Aliran Merah # +item.banner.flow.silver=Aliran Abu-Abu Muda # +item.banner.flow.white=Aliran Putih # +item.banner.flow.yellow=Aliran Kuning # item.banner.flower.black=Charge Bunga Hitam # item.banner.flower.blue=Charge Bunga Biru # item.banner.flower.brown=Charge Bunga Cokelat # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=Gradien Dasar Putih # item.banner.gradient_up.yellow=Gradien Dasar Kuning # item.banner.gray.name=Banner Abu-Abu # item.banner.green.name=Banner Hijau # +item.banner.guster.black=Guster Hitam # +item.banner.guster.blue=Guster Biru # +item.banner.guster.brown=Guster Cokelat # +item.banner.guster.cyan=Guster Sian # +item.banner.guster.gray=Guster Abu-Abu # +item.banner.guster.green=Guster Hijau # +item.banner.guster.lightBlue=Guster Biru Muda # +item.banner.guster.lime=Guster Hijau Limau # +item.banner.guster.magenta=Guster Magenta # +item.banner.guster.orange=Guster Oranye # +item.banner.guster.pink=Guster Merah Muda # +item.banner.guster.purple=Guster Ungu # +item.banner.guster.red=Guster Merah # +item.banner.guster.silver=Guster Abu-Abu Muda # +item.banner.guster.white=Guster Putih # +item.banner.guster.yellow=Guster Kuning # item.banner.half_horizontal.black=Per Fess Hitam # item.banner.half_horizontal.blue=Per Fess Biru # item.banner.half_horizontal.brown=Per Fess Cokelat # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=Perahu Akasia # item.boat.big_oak.name=Perahu Ek Gelap # item.bone.name=Tulang # item.book.name=Buku # +item.breeze_rod.name=Tongkat Breeze # item.chainmail_boots.name=Sepatu Bot Rantai # item.leather_boots.name=Sepatu Bot Kulit # item.diamond_boots.name=Sepatu Bot Berlian # @@ -4991,6 +5049,7 @@ item.comparator.name=Pembanding Batu Merah # item.compass.name=Kompas # item.lodestonecompass.name=Kompas Batu Magnet # item.cookie.name=Kukis # +item.copper_door.name=Pintu Tembaga # item.crossbow.name=Busur Silang # item.diamond.name=Berlian # item.repeater.name=Pengulang Batu Merah # @@ -5038,6 +5097,7 @@ tile.end_rod.name=Tongkat End # item.ender_eye.name=Mata Ender # item.ender_pearl.name=Mutiara Ender # item.experience_bottle.name=Botol Sihir # +item.exposed_copper_door.name=Pintu Tembaga Terbuka # item.feather.name=Bulu # item.fermented_spider_eye.name=Mata Laba-Laba Fermentasi # item.fireball.name=Bom Api # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=Celana Ketat Emas # item.iron_leggings.name=Celana Ketat Besi # item.nautilus_shell.name=Cangkang Nautilus # item.heart_of_the_sea.name=Hati Lautan # +item.mace.name=Gada # item.magma_cream.name=Krim Magma # item.map.name=Peta # item.map.exploration.mansion.name=Peta Petualang Hutan # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=Peta Desa Sabana # item.map.exploration.village_desert.name=Peta Desa Gurun # item.map.exploration.jungle_temple.name=Peta Penjelajah Rimba # item.map.exploration.swamp_hut.name=Peta Penjelajah Rawa # +item.map.exploration.trial_chambers.name=Peta Penjelajah Uji Coba # item.melon.name=Melon # item.milk.name=Susu # item.minecart.name=Kereta Tambang # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=Kereta Tambang dengan Peti # item.command_block_minecart.name=Kereta Tambang dengan Blok Perintah # item.minecartFurnace.name=Kereta Tambang dengan Tungku # item.hopper_minecart.name=Kereta Tambang dengan Penampung # +item.ominous_bottle.name=Botol Menyeramkan # +item.ominous_trial_key.name=Kunci Ujian Menyeramkan # +item.oxidized_copper_door.name=Pintu Tembaga Teroksidasi # item.tnt_minecart.name=Kereta Tambang dengan Dinamit # item.pitcher_pod.name=Pod Pemakan Serangga # item.torchflower_seeds.name=Biji Kecombrang # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=Telur Kemunculan Agent # item.spawn_egg.entity.armadillo.name=Telur Kemunculan Armadilo # item.spawn_egg.entity.axolotl.name=Telur Kemunculan Axolotl # item.spawn_egg.entity.bee.name=Telur Kemunculan Lebah # +item.spawn_egg.entity.bogged.name=Telur Kemunculan Bogged # +item.spawn_egg.entity.breeze.name=Telur Munculkan Breeze # item.spawn_egg.entity.hoglin.name=Telur Kemunculan Hoglin # item.spawn_egg.entity.cat.name=Telur Kemunculan Kucing # item.spawn_egg.entity.chicken.name=Telur Kemunculan Ayam # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 - bangsal (ward) # item.record_pigstep.desc=Lena Raine - Pigstep # item.record_otherside.desc=Lena Raine - otherside # item.record_relic.desc=Aaron Cherof - Relik # +item.record_creator.desc=Lena Raine - Kreator # +item.record_creator_music_box.desc=Lena Raine - Kreator (Kotak Musik) # +item.record_precipice.desc=Aaron Cherof - Tebing # item.redstone.name=Debu Batu Merah # item.reeds.name=Tebu # item.kelp.name=Rumput Laut # @@ -5324,6 +5394,12 @@ item.iron_sword.name=Pedang Besi # item.stone_sword.name=Pedang Batu # item.wooden_sword.name=Pedang Kayu # item.unbreakable=Tidak Bisa Dipecah # +item.waxed_copper_door.name=Pintu Tembaga Berlapis Lilin # +item.waxed_exposed_copper_door.name=Pintu Tembaga Terbuka Berlapis Lilin # +item.waxed_oxidized_copper_door.name=Pintu Tembaga Teroksidasi Berlapis Lilin # +item.waxed_weathered_copper_door.name=Pintu Tembaga Usang Berlapis Lilin # +item.weathered_copper_door.name=Pintu Tembaga Usang # +item.wind_charge.name=Muatan Angin # item.wheat.name=Gandum # item.wolf_armor.name=Baju Zirah Serigala # item.writable_book.name=Buku & Pena Bulu # @@ -5331,6 +5407,7 @@ item.written_book.name=Buku Tulis # item.glowstone_dust.name=Debu Batu Bersinar # item.shulker_shell.name=Cangkang Shulker # item.totem.name=Totem Tak Mati # +item.trial_key.name=Kunci Uji Coba # item.turtle_helmet.name=Tempurung Kura-kura # item.turtle_shell_piece.name=Skat Kura-kura # item.phantom_membrane.name=Membran Hantu # @@ -5338,8 +5415,10 @@ item.sweet_berries.name=Buah Beri Manis # item.suspicious_stew.name=Semur Mencurigakan # item.banner_pattern.bricks=Field Masoned # item.banner_pattern.creeper=Charge Creeper # +item.banner_pattern.flow=Aliran # item.banner_pattern.flower=Charge Bunga # item.banner_pattern.globe=Globe # +item.banner_pattern.guster=Guster # item.banner_pattern.name=Pola Banner # item.banner_pattern.piglin=Moncong # item.banner_pattern.skull=Charge Kepala Tengkorak # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=Pola Banner # itemGroup.name.netherWartBlock=Nether Wart # itemGroup.name.candles=Lilin # itemGroup.name.goatHorn=Tanduk Kambing # +itemGroup.name.compounds=Senyawa # +itemGroup.name.products=Produk # jigsaw.title.target_pool=Kolam target: # jigsaw.title.name=Nama: # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=PENGATURAN KELAS # menu.serverStore=Toko %s # menu.serverGenericName=Server # menu.play=Main # +menu.profile=Profil # menu.playdemo=Mainkan Dunia Demo # menu.playOnRealms=Bermain di Realm # menu.quickplay=Main Cepat # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=Pilih Karakter Awalmu # menu.character_cast.preview_title=Temui para Pemerannya! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Server Realms ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=Server # merchant.deprecated=Tukarkan sesuatu yang lain untuk membuka! # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=Pola Main Keyboard Lengkap # options.fullKeyboardLayout=Tata Letak Keyboard # options.improvedInputResponsePlaceholder=Tanggapan Input Lebih Baik # options.improvedInputResponsePlaceholder.tooltip=Mengurangi jeda antara input dan apa yang kamu lihat di layar. Pengaturan ini mungkin menggunakan lebih banyak kekuatan baterai. # +options.dynamicTexturesToggle=Hapus Batas Tekstur # +options.dynamicTexturesToggle.tooltip=Mulai ulang game diperlukan untuk mengubah ini dari aktif ke tidak aktif. Hal ini dapat menyebabkan ketidakstabilan saat menggunakan beberapa Add-on atau Paket Sumber Daya dengan banyak tekstur. # +options.dynamicTextures.popUp=Jika Hapus Batas Tekstur aktif, kamu perlu memulai ulang game untuk menonaktifkannya. # +options.dynamicTextures.popUp.title=Kamu yakin? # options.fullscreen=Layar Penuh # options.gamepadcursorsensitivity=Sensitivitas Kursor Pengontrol # options.gamertag=Gamertag: # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=Sambung # options.creator.debuggerListen=Dengarkan # options.creator.debuggerHost=Host # options.creator.debuggerPort=Port # +options.creator.watchdogHeading=Pengaturan Pengawas Skrip # +options.creator.watchdogSlowWarning=Peringatan Skrip Lambat # +options.creator.watchdogSlowThreshold=Rata-rata melebihi # +options.creator.watchdogSlowFormat=%s Milidetik # +options.creator.watchdogSlowFormatDefault=%s Milidetik (default) # +options.creator.watchdogSpikeWarning=Peringatan Lonjakan Skrip # +options.creator.watchdogSpikeThreshold=Lonjakan melebihi # +options.creator.watchdogSpikeFormat=%s Milidetik # +options.creator.watchdogSpikeFormatDefault=%s Milidetik (default) # +options.creator.watchdogHangThreshold=Interupsi setelah # +options.creator.watchdogHangFormat=%s Detik # +options.creator.watchdogHangFormatDefault=%s Detik (default) # options.vr_classic_box_selection=Pilihan Garis Luar # options.hidegamepadcursor=Sembunyikan Kursor Pengontrol # options.hidegui=Sembunyikan GUI # @@ -6662,7 +6761,7 @@ options.makeBackup=Buat salinan cadangan dunia saya # options.managePrivacy=Untuk mengelola pengaturan privasi, kunjungi https://account.xbox.com/Settings di web browser apa pun. ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Hapus Tautan Akun Microsoft # options.unlink_msa.confirm.title=Hapus Tautan Akun Microsoft? # -options.unlink_msa.confirm.warning=PERINGATAN: Kamu tidak akan bisa menyimpan kemajuan atau pembelian yang dilakukan di Sistem "PlayStation 4" di akun %s setelah menghapus tautan. # +options.unlink_msa.confirm.warning=PERINGATAN: Kemajuan atau pembelian di Sistem PlayStation®4 tidak bisa disimpan di akun %s lagi setelah tautan dihapus. #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=Membatalkan tautan Akun Microsoft kamu dari dalam permainan ini akan memengaruhi semua permainan Minecraft di platform ini yang telah menggunakan Akun Microsoft ini. # options.unlink_msa.confirm.checkbox1=Saya tidak akan bisa mengakses segala konten Toko dalam permainan saat bermain di platform lain. # options.unlink_msa.confirm.checkbox2=Saya tidak akan bisa memainkan permainan lintas-platform dengan teman di platform lain. # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=Muat dunia untuk menyesuaikan kontrol # hudScreen.controlCustomization.tooltip.notouch=Pakai perangkat sentuh untuk menyesuaikan kontrol # hudScreen.controlCustomization.tooltip.alreadycustomizing=Sudah ada layar penyesuaian kontrol sentuh yang terbuka # hudScreen.controlCustomization.tooltip.alive=Pemain harus hidup untuk menyesuaikan kontrol. # +hudScreen.daysPlayed=Jumlah hari bermain: %s # +hudScreen.daysPlayed.overflow=Terlalu banyak untuk dihitung! # playscreen.fileSize.MB=MB # playscreen.fileSize.GB=GB # @@ -6911,7 +7012,7 @@ playscreen.realmsWarning.moreinfo=Info lainnya # playscreen.realmsCompatibilityFailure=Kami tidak bisa tersambung ke Realm sekarang. Kami akan mencoba lagi segera. # playscreen.realmsPreProdNotAuthorized=Kamu tidak memiliki akses ke Realms dalam praproduksi. Untuk mendapatkan akses, jangkau di #ask-realms-preprod-access atau lihat panduannya di aka.ms/Realms-preprod-access. # playscreen.realmsSignIn=Masuk untuk bermain di Realms sekarang! # -playscreen.realmsSignInFriends=Masuk untuk melihat Realms milik temanmu sekarang! # +playscreen.realmsSignInFriends=Masuk untuk melihat Realms milik temanmu! # playscreen.worlds=Dunia # playscreen.dontSeeLegacyWorlds=Tidak melihat duniamu? # playscreen.syncLegacyWorlds=Sinkronkan Dunia Lama # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=Percikan Ramuan Penyembuhan # potion.heal.linger.name=Ramuan Bertahan Penyembuhan # potion.healthBoost=Boost Kesehatan # potion.hunger=Kelaparan # +potion.infested.linger.name=Ramuan Bertahan Serangan Invasi # +potion.infested.name=Ramuan Serangan Invasi # +potion.infested.splash.name=Percikan Ramuan Serangan Invasi # +potion.infested=Berisi # potion.invisibility=Kemampuan Menghilang # potion.invisibility.name=Ramuan Menghilang # potion.invisibility.splash.name=Percikan Ramuan Menghilang # @@ -7067,6 +7172,10 @@ potion.nightVision=Penglihatan Malam # potion.nightVision.name=Ramuan Penglihatan Malam # potion.nightVision.splash.name=Percikan Ramuan Penglihatan Malam # potion.nightVision.linger.name=Ramuan Bertahan Penglihatan Malam # +potion.oozing.linger.name=Ramuan Bertahan Mengalir # +potion.oozing.name=Ramuan Mengalir # +potion.oozing.splash.name=Percikan Ramuan Mengalir # +potion.oozing=Mengalir # potion.poison=Racun # potion.poison.name=Ramuan Racun # potion.poison.splash.name=Percikan Ramuan Racun # @@ -7108,6 +7217,14 @@ potion.weakness=Kelemahan # potion.weakness.name=Ramuan Kelemahan # potion.weakness.splash.name=Percikan Ramuan Kelemahan # potion.weakness.linger.name=Ramuan Bertahan Kelemahan # +potion.weaving.linger.name=Ramuan Bertahan Tenun # +potion.weaving.name=Ramuan Tenun # +potion.weaving.splash.name=Percikan Ramuan Tenun # +potion.weaving=Menenun # +potion.windCharged.linger.name=Ramuan Bertahan Pengisian Tenaga Angin # +potion.windCharged.name=Ramuan Pengisian Tenaga Angin # +potion.windCharged.splash.name=Percikan Ramuan Pengisian Tenaga Angin # +potion.windCharged=Bertenaga Angin # potion.wither=Wither # potion.wither.name=Ramuan Kebusukan # potion.wither.splash.name=Percikan Ramuan Kebusukan # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=Dunia ini tidak dapat dibuka karena m progressScreen.message.forbiddenContent=Kamu tidak memiliki satu atau beberapa paket yang diterapkan # progressScreen.message.loadingSplitScreenAppearances=Memuat tampilan layar terpisah ... # progressScreen.message.finishedLoadingSplitScreenAppearances=Selesai memuat tampilan layar terpisah. # -progressScreen.message.modifiedWorldWarning=Dunia ini mungkin tidak terlihat atau berperilaku seperti dunia yang tidak dimodifikasi dan kamu tidak bisa dapat prestasi di sini. # +progressScreen.message.modifiedWorldWarning.1=Kamu main di dunia yang pakai Add-On sehingga akan ada fitur baru di dunia Minecraft ini. # +progressScreen.message.modifiedWorldWarning.2=Kenapa cuma pakai satu? Kamu bisa memuat banyak Add-On ke satu dunia sekaligus, kok! # +progressScreen.message.modifiedWorldWarning.3=Kiat Lanjutan: Paket Sumber Daya dapat mengubah tekstur aneka blok dan entitas. # +progressScreen.message.modifiedWorldWarning.4=Kiat Lanjutan: Paket Perilaku bisa mengubah cara kerja aneka item, entitas, atau blok. # +progressScreen.message.modifiedWorldWarning.5=Kiat Lanjutan: Add-On mencakup Paket Perilaku dan Paket Sumber Daya. Pastikan kedua paket diaktifkan untuk memastikan Add-On berfungsi! # +progressScreen.message.modifiedWorldWarning.6=Add-On menambahkan blok, item, atau mob baru ke duniamu. # +progressScreen.message.modifiedWorldWarning.7=Dunia dan Add-On sangat kompleks! Walau beberapa kombinasi bisa berjalan dengan baik bersama-sama, hasil dari kombinasi yang lain bisa saja janggal. # +progressScreen.message.modifiedWorldWarning.8=Lebih banyak Add-On berarti lebih seru, tetapi proses memuat game mungkin akan jadi lebih lama. # progressScreen.dialog.title.resourcePack=Unduh Paket Sumber Daya? # progressScreen.dialog.title.behaviorAndResourcePack=Unduh Paket Perilaku & Sumber Daya Dunia? # progressScreen.dialog.title.onlyBehavior=Unduh Paket Perilaku & Dunia? # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=Perbarui Dunia? # resourcePack.warning.add.body=Dunia ini mungkin tidak terlihat atau berperilaku seperti dunia yang tidak dimodifikasi. Sebaiknya kamu menyimpan salinan duniamu sebelum melanjutkan. # resourcePack.warning.add.button.cancel=Jangan tambahkan paket # resourcePack.warning.add.button.ok=Tetap tambahkan paket # +resourcePack.warnings.contentKeyErrorBody=Ada masalah saat memuat paket %s. # +resourcePack.warnings.contentKeyErrorBodyMultiple=Ada masalah saat memuat paket %s. # +resourcePack.warnings.contentKeyErrorTitle=Kesalahan! # resourcePack.warning.remove.title=Ini Berbahaya! # resourcePack.warning.remove.body=Menambahkan atau menghapus Paket setelah memainkan sebuah dunia dapat merusak dunia tersebut dan membuatmu kehilangan hal yang telah kamu buat. # resourcePack.warning.remove.button.cancel=Pertahankan paket # @@ -7534,43 +7661,46 @@ howtoplay.smithing_table.title=Meja Tempa # howtoplay.smithing_table=Meja Tempa # hudScreen.tooltip.brush=Kuas # item.acacia_hanging_sign.name=Tanda Gantung Akasia # -item.angler_pottery_sherd.name=Sherd Tembikar Pemancing # -item.archer_pottery_sherd.name=Sherd Tembikar Pemanah # +item.angler_pottery_sherd.name=Pecahan Tembikar Pemancing # +item.archer_pottery_sherd.name=Pecahan Tembikar Pemanah # item.armor.upgrade=Peningkatan: # -item.arms_up_pottery_sherd.name=Sherd Tembikar Angkat Senjata # +item.arms_up_pottery_sherd.name=Pecahan Tembikar Angkat Senjata # item.bamboo_door.name=Pintu Bambu # item.bamboo_hanging_sign.name=Tanda Gantung Bambu # item.bamboo_sign.name=Tanda Bambu # item.birch_hanging_sign.name=Tanda Gantung Betula # -item.blade_pottery_sherd.name=Sherd Tembikar Pedang # +item.blade_pottery_sherd.name=Pecahan Tembikar Pedang # item.boat.bamboo.name=Rakit Bambu # item.boat.cherry.name=Perahu Sakura # -item.brewer_pottery_sherd.name=Sherd Tembikar Pembuat Bir # +item.brewer_pottery_sherd.name=Pecahan Tembikar Pembuat Bir # item.brush.name=Kuas # -item.burn_pottery_sherd.name=Sherd Tembikar Terbakar # +item.burn_pottery_sherd.name=Pecahan Tembikar Terbakar # item.cherry_door.name=Pintu Sakura # item.cherry_hanging_sign.name=Tanda Gantung Sakura # item.cherry_sign.name=Tanda Sakura # item.chest_boat.bamboo.name=Rakit Bambu dengan Peti # item.chest_boat.cherry.name=Perahu Sakura dengan Peti # item.crimson_hanging_sign.name=Tanda Gantung Merah Tua # -item.danger_pottery_sherd.name=Sherd Tembikar Bahaya # +item.danger_pottery_sherd.name=Pecahan Tembikar Bahaya # item.dark_oak_hanging_sign.name=Tanda Gantung Ek Gelap # -item.explorer_pottery_sherd.name=Sherd Tembikar Penjelajah # -item.friend_pottery_sherd.name=Sherd Tembikar Teman # -item.heart_pottery_sherd.name=Sherd Tembikar Hati # -item.heartbreak_pottery_sherd.name=Sherd Tembikar Patah Hati # -item.howl_pottery_sherd.name=Sherd Tembikar Lolongan # +item.explorer_pottery_sherd.name=Pecahan Tembikar Penjelajah # +item.flow_pottery_sherd.name=Pecahan Tembikar Aliran # +item.friend_pottery_sherd.name=Pecahan Tembikar Teman # +item.guster_pottery_sherd.name=Pecahan Tembikar Guster # +item.heart_pottery_sherd.name=Pecahan Tembikar Hati # +item.heartbreak_pottery_sherd.name=Pecahan Tembikar Patah Hati # +item.howl_pottery_sherd.name=Pecahan Tembikar Lolongan # item.jungle_hanging_sign.name=Tanda Gantung Rimba # item.mangrove_hanging_sign.name=Tanda Gantung Bakau # -item.miner_pottery_sherd.name=Sherd Tembikar Penambang # -item.mourner_pottery_sherd.name=Sherd Tembikar Pelayat # +item.miner_pottery_sherd.name=Pecahan Tembikar Penambang # +item.mourner_pottery_sherd.name=Pecahan Tembikar Pelayat # item.oak_hanging_sign.name=Tanda Gantung Ek # -item.plenty_pottery_sherd.name=Sherd Tembikar Berjumlah Banyak # -item.prize_pottery_sherd.name=Sherd Tembikar Hadiah # -item.sheaf_pottery_sherd.name=Sherd Tembikar Tumpukan # -item.shelter_pottery_sherd.name=Sherd Tembikar Perlindungan # -item.skull_pottery_sherd.name=Sherd Tembikar Tengkorak # +item.plenty_pottery_sherd.name=Pecahan Tembikar Berjumlah Banyak # +item.prize_pottery_sherd.name=Pecahan Tembikar Hadiah # +item.scrape_pottery_sherd.name=Pecahan Tembikar Kikis # +item.sheaf_pottery_sherd.name=Pecahan Tembikar Tumpukan # +item.shelter_pottery_sherd.name=Pecahan Tembikar Perlindungan # +item.skull_pottery_sherd.name=Pecahan Tembikar Tengkorak # item.skull.piglin.name=Kepala Piglin # item.smithing_template.applies_to=Berlaku untuk: # item.smithing_template.armor_trim.applies_to=Baju Zirah # @@ -7579,7 +7709,7 @@ item.smithing_template.ingredients=Bahan: # item.smithing_template.name=Template Tempa # item.smithing_template.netherite_upgrade.applies_to=Peralatan Berlian # item.smithing_template.netherite_upgrade.ingredients=Netherit Batangan # -item.snort_pottery_sherd.name=Sherd Tembikar Dengusan # +item.snort_pottery_sherd.name=Pecahan Tembikar Dengusan # item.spawn_egg.entity.camel.name=Telur Munculkan Unta # item.spruce_hanging_sign.name=Tanda Gantung Spruce # item.warped_hanging_sign.name=Tanda Gantung Melengkung # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=Tangga Sakura # tile.cherry_trapdoor.name=Pintu Perangkap Sakura # tile.cherry_wood.name=Kayu Sakura # tile.chiseled_bookshelf.name=Rak Buku yang Dipahat # +tile.chiseled_tuff.name=Tufa Pahatan # +tile.chiseled_tuff_bricks.name=Bata Tufa Pahatan # tile.decorated_pot.name=Pot Berhias # tile.pink_petals.name=Kelopak Merah Muda # tile.stripped_bamboo_block.name=Blok Bambu Bergaris # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=Trim Baju Zirah Vex # trim_pattern.ward.name=Trim Baju Zirah Ward # trim_pattern.wayfinder.name=Trim Baju Zirah Pencari Jalan # trim_pattern.wild.name=Trim Baju Zirah Liar # +trim_pattern.bolt.name=Trim Baju Zirah Kilat # +trim_pattern.flow.name=Trim Baju Zirah Aliran # upgrade.netherite_upgrade.name=Peningkatan Netherit # storageManager.mainSizeLabel=%s - 1 Item # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=Hapus Template Dunia? # selectTemplate.delete=Hapus # selectTemplate.myTemplates=Template Dunia Saya # selectTemplate.realmsPlus=Template Realms Plus Unggulan # -selectTemplate.marketplacePass=Templat Marketplace Pass yang Ditampilkan #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=Konten Marketplace Pass yang Ditampilkan #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=Template yang Diimpor # selectTemplate.download=Unduh # selectTemplate.noTemplates=Tidak ada template dunia di perangkat ini. # -selectTemplate.suggestedContent.title=Template Marketplace Unggulan # +selectTemplate.suggestedContent.title=Konten Marketplace yang Ditampilkan # selectTemplate.suggestedContent.button=Lihat Template Lainnya # selectTemplate.createdBy=Dibuat oleh %s # selectTemplate.inventory=Paket Marketplace Saya # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=Ada masalah saat menghubungkan. Kembalilah dan co store.loading.error.issues=Hmm, Marketplace mengalami beberapa masalah. Coba hubungkan nanti. # store.loading.error.internetDown=Kami tidak dapat mendeteksi sambungan internet. # store.loading.error.account=Ada masalah dengan akunmu. Coba lagi nanti, dan hubungi dukungan jika masalah ini berlanjut. # +store.loading.error.account.banned=Kamu tidak bisa menggunakan marketplace hingga penangguhan kamu selesai. # store.giftPromo.day=Hari %s ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=Diklaim # @@ -8405,10 +8540,17 @@ store.mashup.count.skin=1 Skin # store.mashup.count.skins=%s Skin # store.mashup.count.texturePack=1 Paket Tekstur # store.mashup.count.texturePacks=%s Paket Tekstur #number of texture packs # -store.mashup.count.world=1 Dunia # +store.mashup.count.world=1 Dunia # store.mashup.count.worlds=%s Dunia #number of worlds # store.mashup.count.addonPack=1 Add-on # store.mashup.count.addonPacks=%s Add-on #number of addons # +store.mashup.count.mashup=Perpaduan # +store.mashup.hover.label.addonPack=Add-On bisa diterapkan ke dunia mana pun. # +store.mashup.hover.label.world=Peta Minecraft buatan tangan. # +store.mashup.hover.label.skin=Menerapkan tampilan baru ke karaktermu. # +store.mashup.hover.label.texturePack=Tambahkan visual baru ke antarmuka game atau duniamu. # +store.mashup.hover.label.mashup.lineOne=Kombinasi aneka konten. # +store.mashup.hover.label.mashup.lineTwo=Perpaduan ini berisi: # store.addon.activateAddonPack=Aktifkan Add-On! # store.addon.newOrExistingTitle=Di mana untuk menambahkan? # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=Papan # tile.chest.name=Peti # tile.ender_chest.name=Peti Ender # tile.jigsaw.name=Blok Jigsaw # +tile.heavy_core.name=Inti Berat # tile.honey_block.name=Blok Madu # tile.honeycomb_block.name=Blok Sarang Madu # tile.lodestone.name=Batu Magnet # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=Lempeng Blackstone Dipoles # tile.polished_blackstone_pressure_plate.name=Pelat Tekanan Blackstone Dipoles # tile.polished_blackstone_button.name=Tombol Blackstone Dipoles # tile.polished_blackstone_wall.name=Dinding Blackstone Dipoles # +tile.polished_tuff.name=Tufa Polesan # +tile.polished_tuff_slab.name=Lempeng Tufa Polesan # +tile.polished_tuff_stairs.name=Tangga Tufa Polesan # +tile.polished_tuff_wall.name=Dinding Tufa Polesan # tile.soul_campfire.name=Api Unggun Jiwa # tile.chiseled_nether_bricks.name=Bata Nether Pahatan # tile.cracked_nether_bricks.name=Bata Nether Retak # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=Terakota Kuning # tile.structure_block.name=Blok Struktur # structure_block.waterlog_block=Blok Terendam # tile.structure_void.name=Kekosongan Struktur # +tile.trial_spawner.name=Pemuncul Uji Coba # +tile.vault.name=Brankas # tile.wool.black.name=Wol Hitam # tile.wool.blue.name=Wol Biru # tile.wool.brown.name=Wol Cokelat # @@ -9184,7 +9333,7 @@ tile.red_sandstone.chiseled.name=Batu Pasir Merah Pahatan # tile.red_sandstone.default.name=Batu Pasir Merah # tile.red_sandstone.name=Batu Pasir Merah # tile.red_sandstone.smooth.name=Batu Pasir Merah Halus # -tile.red_sandstone.cut.name=Potongan Batu Pasir Merah # +tile.red_sandstone.cut.name=Batu Pasir Merah Potongan # tile.redstone_wire.name=Debu Batu Merah # tile.redstone_lamp.name=Lampu Batu Merah # tile.reeds.name=Tebu # @@ -9195,7 +9344,7 @@ tile.sandstone.chiseled.name=Batu Pasir Pahatan # tile.sandstone.default.name=Batu Pasir # tile.sandstone.name=Batu Pasir # tile.sandstone.smooth.name=Batu Pasir Halus # -tile.sandstone.cut.name=Potongan Batu Pasir # +tile.sandstone.cut.name=Batu Pasir Potongan # tile.sapling.acacia.name=Pohon Muda Akasia # tile.sapling.big_oak.name=Pohon Muda Ek Gelap # tile.sapling.birch.name=Pohon Muda Betula # @@ -9319,8 +9468,8 @@ tile.stone_slab3.granite.smooth.name=Lempeng Granit Polesan # tile.stone_slab4.mossy_stone_brick.name=Lempeng Batu Bata Berlumut # tile.stone_slab4.smooth_quartz.name=Lempeng Kuarsa Halus # tile.stone_slab4.stone.name=Lempeng Batu # -tile.stone_slab4.cut_sandstone.name=Potongan Lempeng Batu Pasir # -tile.stone_slab4.cut_red_sandstone.name=Potongan Lempeng Batu Pasir Merah # +tile.stone_slab4.cut_sandstone.name=Lempeng Batu Pasir Potongan # +tile.stone_slab4.cut_red_sandstone.name=Lempeng Batu Pasir Merah Potongan # tile.coral_block.blue.name=Blok Koral Tabung # tile.coral_block.pink.name=Blok Koral Otak # tile.coral_block.purple.name=Blok Koral Gelembung # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=Pakis # tile.tallgrass.grass.name=Rumput # tile.tallgrass.name=Rumput # tile.tallgrass.shrub.name=Belukar # +tile.tuff_brick_slab.name=Lempeng Bata Tufa # +tile.tuff_brick_stairs.name=Tangga Bata Tufa # +tile.tuff_brick_wall.name=Dinding Bata Tufa # +tile.tuff_bricks.name=Bata Tufa # +tile.tuff_slab.name=Lempeng Tufa # +tile.tuff_stairs.name=Tangga Tufa # +tile.tuff_wall.name=Dinding Tufa # tile.seagrass.seagrass.name=Lamun # tile.sea_pickle.name=Teripang # tile.turtle_egg.name=Tukik Penyu # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=Karpet Merah # tile.carpet.silver.name=Karpet Abu-Abu Muda # tile.carpet.white.name=Karpet Putih # tile.carpet.yellow.name=Karpet Kuning # +tile.crafter.name=Pembuat # tile.crafting_table.name=Meja Pembuatan # tile.glazedTerracotta.white.name=Terakota Mengkilap Putih # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=Lempeng Tembaga Potongan Berlapis Lilin # tile.waxed_exposed_cut_copper_slab.name=Lempeng Tembaga Potongan Terbuka Berlapis Lilin # tile.waxed_weathered_cut_copper_slab.name=Lempeng Tembaga Potongan Usang Berlapis Lilin # tile.waxed_oxidized_cut_copper_slab.name=Lempeng Tembaga Potongan Teroksidasi Berlapis Lilin # + +tile.chiseled_copper.name=Tembaga Pahatan # +tile.exposed_chiseled_copper.name=Tembaga Pahatan Terbuka # +tile.oxidized_chiseled_copper.name=Tembaga Pahatan Teroksidasi # +tile.waxed_chiseled_copper.name=Tembaga Pahatan Berlapis Lilin # +tile.waxed_exposed_chiseled_copper.name=Tembaga Pahatan Terbuka Berlapis Lilin # +tile.waxed_oxidized_chiseled_copper.name=Tembaga Pahatan Teroksidasi Berlapis Lilin # +tile.waxed_weathered_chiseled_copper.name=Tembaga Pahatan Usang Berlapis Lilin # +tile.weathered_chiseled_copper.name=Tembaga Pahatan Usang # + +tile.copper_bulb.name=Lampu Tembaga # +tile.exposed_copper_bulb.name=Lampu Tembaga Terbuka # +tile.oxidized_copper_bulb.name=Lampu Tembaga Teroksidasi # +tile.waxed_copper_bulb.name=Lampu Tembaga Berlapis Lilin # +tile.waxed_exposed_copper_bulb.name=Lampu Tembaga Terbuka Berlapis Lilin # +tile.waxed_oxidized_copper_bulb.name=Lampu Tembaga Teroksidasi Berlapis Lilin # +tile.waxed_weathered_copper_bulb.name=Lampu Tembaga Usang Berlapis Lilin # +tile.weathered_copper_bulb.name=Lampu Tembaga Usang # + +tile.copper_door.name=Pintu Tembaga # +tile.exposed_copper_door.name=Pintu Tembaga Terbuka # +tile.oxidized_copper_door.name=Pintu Tembaga Teroksidasi # +tile.waxed_copper_door.name=Pintu Tembaga Berlapis Lilin # +tile.waxed_exposed_copper_door.name=Pintu Tembaga Terbuka Berlapis Lilin # +tile.waxed_oxidized_copper_door.name=Pintu Tembaga Teroksidasi Berlapis Lilin # +tile.waxed_weathered_copper_door.name=Pintu Tembaga Usang Berlapis Lilin # +tile.weathered_copper_door.name=Pintu Tembaga Usang # + +tile.copper_grate.name=Grate Tembaga # +tile.exposed_copper_grate.name=Grate Tembaga Terbuka # +tile.oxidized_copper_grate.name=Grate Tembaga Teroksidasi # +tile.waxed_copper_grate.name=Grate Tembaga Berlapis Lilin # +tile.waxed_exposed_copper_grate.name=Grate Tembaga Terbuka Berlapis Lilin # +tile.waxed_oxidized_copper_grate.name=Grate Tembaga Teroksidasi Berlapis Lilin # +tile.waxed_weathered_copper_grate.name=Grate Tembaga Usang Berlapis Lilin # +tile.weathered_copper_grate.name=Grate Tembaga Usang # + +tile.copper_trapdoor.name=Pintu Perangkap Tembaga # +tile.exposed_copper_trapdoor.name=Pintu Perangkap Tembaga Terbuka # +tile.oxidized_copper_trapdoor.name=Pintu Perangkap Tembaga Teroksidasi # +tile.waxed_copper_trapdoor.name=Pintu Perangkap Tembaga Berlapis Lilin # +tile.waxed_exposed_copper_trapdoor.name=Pintu Perangkap Tembaga Terbuka Berlapis Lilin # +tile.waxed_oxidized_copper_trapdoor.name=Pintu Perangkap Tembaga Teroksidasi Berlapis Lilin # +tile.waxed_weathered_copper_trapdoor.name=Pintu Perangkap Tembaga Usang Berlapis Lilin # +tile.weathered_copper_trapdoor.name=Pintu Perangkap Tembaga Usang # + tile.raw_copper_block.name=Blok Tembaga Mentah # tile.raw_iron_block.name=Blok Besi Mentah # tile.raw_gold_block.name=Blok Emas Mentah # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=Panah Keberuntungan # tipped_arrow.effect.wither=Panah Kebusukan # tipped_arrow.effect.turtleMaster=Panah Master Kura-kura # tipped_arrow.effect.slowFalling=Panah Jatuh Perlahan # +tipped_arrow.effect.infested=Panah Serangan Invasi # +tipped_arrow.effect.oozing=Panah Mengalir # +tipped_arrow.effect.weaving=Panah Tenun # +tipped_arrow.effect.windCharged=Panah Pengisian Tenaga Angin # structure_block.title=Blok Struktur # structure_block.structure_name=Nama Struktur # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=Beberapa perubahan terbaru yang kamu b worldError.worldFailedRecovery=Pemulihan Gagal # worldError.worldFailedRecoveryText=Kami mendeteksi kerusakan pada dunia dan gagal memulihkannya. # +writeThrottling.osDialog.body=Operasi yang diminta diperkirakan akan berlangsung %d menit untuk diselesaikan. Jangan matikan perangkat selama waktu ini. # +writeThrottling.osDialog.cancel=Batalkan Operasi # +writeThrottling.osDialog.confirm=Lanjutkan # +writeThrottling.progressBar.title=Menyiapkan Data # +writeThrottling.progressBar.body=Menyiapkan file kamu .... # + userData.recovered.title=Data Tersimpan Dipulihkan # userData.recovered.text=Berhasil memulihkan pengaturan pengguna yang rusak. # userData.recovered.warning=Beberapa perubahan terbaru yang kamu buat mungkin hilang saat pemulihan. # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=Pesan obrolan # xbox.report.area.skin=Skin pemain # xbox.report.area.gameplay=Pola Permainan # xbox.report.area.ingame=Kreasi dalam permainan # -xbox.report.area.other=Lainnya # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=Perundungan Siber # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=Sayangnya kami tidak bisa terhubung. Coba gathering.connect.title=Menghubungkan... # gathering.info.qr.title.onlineService=Selengkapnya # gathering.info.qr.body.onlineService.nso=Kamu perlu memiliki keanggotaan Nintendo Switch Online untuk mengikuti acara di Minecraft. # -gathering.info.qr.body.onlineService.psn=Kamu harus masuk ke \"PlayStation Plus"\ untuk mengikuti acara di Minecraft. # +gathering.info.qr.body.onlineService.psn=Kamu harus masuk ke PlayStation®Plus untuk mengikuti acara di Minecraft. #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=Kamu harus masuk untuk mengikuti acara di Minecraft. # gathering.info.qr.title.childAccount=Bermain Online Tidak Diizinkan # gathering.info.qr.body.childAccount=Kontrol orang tua kamu saat ini membatasi kamu untuk bermain online. # diff --git a/resource_pack/texts/it_IT.lang b/resource_pack/texts/it_IT.lang index 3d5107c57..94dd392aa 100644 --- a/resource_pack/texts/it_IT.lang +++ b/resource_pack/texts/it_IT.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=Scegli seme # accessibility.start.feedback=Invia link di feedback al sito Web # accessibility.start.new=Nuovo # -accessibility.start.profile=Scegli profilo # accessibility.start.skinPicker=Scegli skin # accessibility.store.tag=Tag # @@ -1094,10 +1093,6 @@ commands.me.description=Visualizza un messaggio personale. # commands.message.display.incoming=%1$s ti ha sussurrato: %2$s # commands.message.display.outgoing=Hai sussurrato a %1$s: %2$s # commands.message.sameTarget=Non puoi inviare un messaggio privato a te stesso! # -commands.message.warn=§4Hai ricevuto un avvertimento. Il tuo comportamento potrebbe essere ritenuto offensivo dagli altri giocatori. Ti chiediamo di rispettare le persone con cui stai giocando. # -commands.message.toastWarn=Minecraft è per tutti! Ricorda di rispettare gli standard della community. # -commands.warn.invalidWarningLevel=Livello di avvertimento non valido. # -commands.warn.playerDoesNotExist=Impossibile trovare il giocatore. Seleziona un giocatore valido. # commands.mobevent.description=Controlla quali eventi creatura possono essere eseguiti. # commands.mobevent.eventsEnabledSetToTrue=Adesso gli eventi creatura sono attivi. Non verranno eseguiti determinati eventi impostati su "false". # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=- %s: %s da %d %d %d a %d %d %d # commands.volumearea.entry.withoutIdentifier=- %s: da %d %d %d a %d %d %d # commands.volumearea.noneExist.currentDimension=Non esistono volumi nella dimensione attuale. # commands.volumearea.inUse=%1$d/%2$d volumi in uso. # -commands.warn.description=Invia un messaggio di avvertimento al giocatore. # commands.weather.clear=Il meteo è stato cambiato in sereno # commands.weather.description=Imposta il meteo. # commands.weather.disabled=Meteo variabile non abilitato in questo mondo. # @@ -1572,6 +1566,7 @@ container.beacon=Faro # container.brewing=Alambicco # container.chest=Cassa # container.chestDouble=Cassa grande # +container.crafter=Creatore # container.crafting=Fabbricazione # container.creative=Selezione oggetti # container.dispenser=Distributore # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=Caverne e scogliere # createWorldScreen.cavesandcliffsDescription=Esplora la nuova variegata generazione di caverne # createWorldScreen.spectatorMode=Modalità Spettatore # createWorldScreen.spectatorModeDescription=Prova le prime versioni della Modalità Spettatore # -createWorldScreen.experimentalCameras=Visuali sperimentali # -createWorldScreen.experimentalCamerasDescription=Contiene esempi di impostazioni predefinite della visuale (il comando della visuale non è più sperimentale) # createWorldScreen.recipeUnlocking=Sblocco ricette # createWorldScreen.recipeUnlockingDescription=Abilita lo sblocco delle ricette # createWorldScreen.experimentalholiday=Caratteristiche del Creatore di vacanze # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=Creazione nuovo mondo... # createWorldScreen.progress.realms=Azzeramento reame in corso... # createWorldScreen.seed.desc=Inserisci un seme per generare di nuovo lo stesso terreno. Lascia vuoto per un mondo casuale. # createWorldScreen.showCoordinates=Mostra coordinate # +createWorldScreen.showDaysPlayed=Mostra i giorni di gioco # createWorldScreen.worldType=Tipo di mondo # createWorldScreen.randomtickspeed=Velocità di Tick casuale # createWorldScreen.randomtickspeed.reset=Resetta velocità di Tick casuale # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=Elimina progetto # createWorldScreen.editor.projectOptionsLabel=Opzioni progetto # createWorldScreen.editor.delete.confirm=Cancellare il progetto permanentemente? # createWorldScreen.editor.deleteWarningFormat=Vuoi davvero eliminare "%s"? Questo progetto andrà perso per sempre! # +createWorldScreen.eduCloud.about.body=Nome file: '%1$s'%2$sUltimo aggiornamento: %3$s%4$sPer scaricare, fai clic su OK e poi su Scarica.%5$s # +createWorldScreen.eduCloud.about.title=Informazioni sul file del mondo in cloud # createWorldScreen.eduCloud.delete.confirm=Vuoi eliminare il mondo locale? # createWorldScreen.eduCloud.deleteWarningFormat=Vuoi davvero eliminare “%1$s” da questo dispositivo?%2$sLa versione in cloud di “%3$s” non subirà modifiche e potrà essere nuovamente sincronizzata in seguito. # createWorldScreen.experimentalDeferredTechnicalPreview=Funzionalità Renderdrago per creatori # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Windows Store # realmsSettingsScreen.xboxOneStoreDisplayName=Xbox Store # realmsSettingsScreen.amazonStoreDisplayName=Amazon Appstore # realmsSettingsScreen.oculusStoreDisplayName=Oculus Store # -realmsSettingsScreen.berwickStoreDisplayName="PlayStation Store" # -realmsSettingsScreen.SonyStoreDisplayName=“PlayStation Store” #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=Store sconosciuto # realmsSettingsScreen.extendingRealm=Estensione reame in corso... # realmsSettingsScreen.offerError.title=Acquisto in sospeso # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=I pacchetti acquistati fuori da xbl.syncIAP.confirmSync.prompt.yes=Sì, sincronizza i miei acquisti # xbl.marketplace.account.error.body.nobutton=C'è un errore con il tuo account. Non potrai usare il marketplace finché non risolveremo questo problema. Se il problema dovesse persistere per diversi giorni, contatta l'assistenza. # -xbl.marketplace.account.banned.body.nobutton=Non potrai usare il marketplace fino al termine della sospensione. # playfab.account.banned.temporary=sospeso # playfab.account.banned.permanent=bandito # @@ -2487,6 +2482,14 @@ date.daysAbbreviated1Char=%s d ### It needs to be abbreviated with no more than date.hoursAbbreviated1Char=%s h ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%s m ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%s s ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s giorni # +date.hoursPlural=%s ore # +date.minutesPlural=%s minuti # +date.secondsPlural=%s secondi # +date.daySingular=%s giorno # +date.hourSingular=%s ora # +date.minuteSingular=%s minuto # +date.secondSingular=%s secondo # date.timeLeft=%s rimanenti # dayOneExperience.carousel.title=Ti diamo il benvenuto sul nuovo Minecraft! # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=OSPITA # edu.worlds_screen.settings=IMPOSTAZIONI # edu.worlds_screen.download=SCARICA ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=GESTISCI # +edu.worlds_screen.about=INFORMAZIONI # edu.worlds_screen.back=BACKSPACE # edu.worlds_screen.copy=COPIA # edu.worlds_screen.export=ESPORTA # @@ -2791,7 +2795,13 @@ edu.templates.empty_banner=Puoi ottenere modelli di mondi dalla libreria di Mine edu.pause.multiplayer.disabled=Multigiocatore non disponibile in questa lezione. # effect.badOmen=Cattivo presagio # +effect.infested=Infestazione applicata # +effect.oozing=Fuoriuscita melmosa # +effect.raid_omen=Presagio d'incursione # +effect.trial_omen=Presagio di sfida # effect.villageHero=Eroe del villaggio # +effect.weaving=Tessitura # +effect.wind_charged=Folata di vento applicata # enchantment.arrowDamage=Potenza # enchantment.arrowFire=Fiamma # @@ -2810,6 +2820,9 @@ enchantment.durability=Indistruttibilità # enchantment.fire=Aspetto di fuoco # enchantment.fishingSpeed=Esca # enchantment.frostwalker=Camminatore dei ghiacci # +enchantment.heavy_weapon.breach=Violazione # +enchantment.heavy_weapon.density=Densità # +enchantment.heavy_weapon.windburst=Raffica di vento # enchantment.knockback=Contraccolpo # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=Pipistrello # entity.bee.name=Ape # entity.blaze.name=Blaze # entity.boat.name=Barca # +entity.bogged.name=Paludoso # +entity.breeze.name=Breeze # +entity.breeze_wind_charge_projectile.name=Carica di vento # entity.cat.name=Gatto # entity.cave_spider.name=Ragno delle caverne # entity.chicken.name=Pollo # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=Abitante non qualificato # entity.villager_v2.name=Abitante # entity.vindicator.name=Rivendicatore # entity.wandering_trader.name=Mercante errante # +entity.wind_charge_projectile.name=Carica di vento # entity.witch.name=Strega # entity.wither.name=Wither # entity.wither_skeleton.name=Scheletro Wither # @@ -3009,6 +3026,7 @@ feature.ruins=Rovine oceaniche # feature.pillager_outpost=Avamposto del saccheggiatore # feature.bastion_remnant=Resto di bastione # feature.ruined_portal=Portale in rovina # +feature.trial_chambers=Stanze delle sfide # feed.like=Mi piace # feed.manage_feed=Gestisci feed # @@ -3018,7 +3036,7 @@ feed.ignore=Ignora # feed.nrreport=%d segnalazione # feed.nrreports=%d segnalazione/i # feed.newPost=Nuovo # -feed.daysAgo=%d gg fa # +feed.daysAgo=%d g fa # feed.hoursAgo=%dh fa # feed.minutesAgo=%dm fa # feed.now=Ora # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=Muovi :tip_left_stick: per muoverti # gameTip.flying.mouse=Tocca due volte :_input_key.jump: per volare # gameTip.flying.touch=Tocca due volte Salta per volare # +gameTip.flyDown.mouse=Premi :_input_key.sneak: per volare verso il basso # +gameTip.flyUp.mouse=Premi :_input_key.jump: per volare verso l'alto # + +gameTip.stopFlying.mouse=Tocca due volte :_input_key.jump: per smettere di volare # +gameTip.stopFlying.touch=Tocca due volte il volo verso il basso per smettere di volare # + gameTip.jump.mouse=Salta con :_input_key.jump: # +gameTip.swim.mouse=Tieni premuto :_input_key.jump: per nuotare verso l'alto # -gameTip.hotbar.mouse=Scorri la rotellina del mouse e seleziona # nella hotbar per tenerlo premuto # -gameTip.hotbar.touch=Tocca # nella hotbar per tenerlo premuto # -gameTip.hotbar.controller=Tocca # nella hotbar per tenerlo premuto # +gameTip.hotbar.selection.mouse=Scorri o premi %s per tenere in mano un oggetto ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=Tocca un oggetto nella hotbar per tenerlo in mano # gameTip.breakBlock.mouse=Tieni premuto il pulsante sinistro del mouse per rompere i blocchi # gameTip.breakBlock.touch=Tocca e tieni premuto per rompere i blocchi # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=Ti stai muovendo furtivamente! Ora non puoi cadere dai bordi gameTip.sneak.touch=Ti stai muovendo furtivamente, quindi non puoi cadere dai bordi # gameTip.sneak.controller=Ti stai muovendo furtivamente, quindi non puoi cadere dai bordi # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=Posiziona il tuo banco da lavoro. Tienilo in mano e fai clic per posizionarlo # gameTip.placeCraftingTable.touch=Posiziona il tuo banco da lavoro toccando a terra # gameTip.placeCraftingTable.controller=Posiziona il banco da lavoro, tieni premuto e poi tocca a terra # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=Grazie per aver condiviso la tua recensione! # gui.submitFeedback.failure.status.unprocessableEntity=Non sei il proprietario dell'elemento per cui stai tentando di fornire feedback. (Codice errore: %d) # gui.submitFeedback.failure.status.tooManyRequests=Oh no! Hai inviato troppe recensioni, riprova più tardi. (Codice errore: %d) # gui.submitFeedback.failure.status.other=Impossibile inviare la recensione in questo momento, riprova più tardi. (Codice errore: %d) # +gui.togglable_slot=Premi per disabilitare lo slot # gui.playOffline=Gioca offline # gui.signIn=Accedi # gui.genericNetworkError=Si è verificato un errore. Controlla la tua connessione a Internet. # @@ -3599,7 +3624,7 @@ howtoplay.droppers.text.2=Se lo sgancio è rivolto verso una cassa o un altro co howtoplay.dyes=Tinture # howtoplay.dyes.text.1=La tintura serve a cambiare il colore di molti oggetti di Minecraft. # howtoplay.dyes.text.2=Alcuni materiali per la tintura sono più difficili da reperire rispetto ad altri. La maggior parte può essere creata con i fiori, ad esempio la §etintura rossa§f si ottiene dai papaveri, ma altre si trovano o si creano in modi più occulti. Per esempio: # -howtoplay.dyes.text.3=§eTintura blu§f: si ricava estraendo lapislazzulo dalle profondità sotterranee # +howtoplay.dyes.text.3=§eTintura blu§f: si ricava estraendo lapislazzuli dalle profondità sotterranee # howtoplay.dyes.text.4=§eTintura nera§f: si ricava raccogliendo le sacche d'inchiostro dei calamari # howtoplay.dyes.text.5=§eTintura marrone§f: si ricava raccogliendo le fave di cacao nella giungla # howtoplay.dyes.text.6=§eTintura verde§f: si ricava fondendo i cactus # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=Esplora un mondo di possibilità con i Minecoins, la howtoplay.minecoins.text.2=Una volta riscattati, i tuoi Minecoins vengono collegati al tuo account Microsoft: potrai usarli e accedere ai tuoi acquisti da tutti i dispositivi supportati! # howtoplay.minecoins.button.text.1=Ottieni monete # howtoplay.minecoins.header.1=Disclaimer # -howtoplay.minecoins.text.3=*I Minecoins richiedono una versione di Minecraft: Bedrock Edition con Minecraft Marketplace. I Minecoins non sono compatibili con Sony PlayStation. Per informazioni sulla compatibilità, visita minecraft.net/minecoins  # +howtoplay.minecoins.text.3=*I Minecoins richiedono una versione di Minecraft: Bedrock Edition con Minecraft Marketplace. I Minecoins non sono compatibili con Sony PlayStation®. Per informazioni sulla compatibilità, visita minecraft.net/minecoins  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=Estrazione mineraria # @@ -4145,7 +4170,7 @@ level.editor.export.failed=Impossibile esportare il progetto # level.editor.import.failed=Impossibile importare il progetto # level.editor.import.failed.incompatibleEdition=Impossibile importare il progetto: formato file non supportato # -inbox.invite.title=Invito a Realms # +inbox.invite.title=Invito al Realm per # invite.clear=Annulla selezione # invite.send=Invia %d inviti # @@ -4235,22 +4260,22 @@ item.banner.circle.red=Alla torta di rosso # item.banner.circle.silver=Alla torta di grigio chiaro # item.banner.circle.white=Alla torta di bianco # item.banner.circle.yellow=Alla torta di giallo # -item.banner.creeper.black=Al volto di Creeper di nero # -item.banner.creeper.blue=Al volto di Creeper di blu # -item.banner.creeper.brown=Al volto di Creeper di marrone # -item.banner.creeper.cyan=Al volto di Creeper di ciano # -item.banner.creeper.gray=Al volto di Creeper di grigio # -item.banner.creeper.green=Al volto di Creeper di verde # -item.banner.creeper.lightBlue=Al volto di Creeper d'azzurro # -item.banner.creeper.lime=Al volto di Creeper di lime # -item.banner.creeper.magenta=Al volto di Creeper di magenta # -item.banner.creeper.orange=Al volto di Creeper d'arancione # -item.banner.creeper.pink=Al volto di Creeper di rosa # -item.banner.creeper.purple=Al volto di Creeper di viola # -item.banner.creeper.red=Al volto di Creeper di rosso # -item.banner.creeper.silver=Al volto di Creeper di grigio chiaro # -item.banner.creeper.white=Al volto di Creeper di bianco # -item.banner.creeper.yellow=Al volto di Creeper di giallo # +item.banner.creeper.black=Volto di Creeper di nero # +item.banner.creeper.blue=Volto di Creeper di blu # +item.banner.creeper.brown=Volto di Creeper di marrone # +item.banner.creeper.cyan=Volto di Creeper di ciano # +item.banner.creeper.gray=Volto di Creeper di grigio # +item.banner.creeper.green=Volto di Creeper di verde # +item.banner.creeper.lightBlue=Volto di Creeper d'azzurro # +item.banner.creeper.lime=Volto di Creeper di lime # +item.banner.creeper.magenta=Volto di Creeper di magenta # +item.banner.creeper.orange=Volto di Creeper d'arancione # +item.banner.creeper.pink=Volto di Creeper di rosa # +item.banner.creeper.purple=Volto di Creeper di viola # +item.banner.creeper.red=Volto di Creeper di rosso # +item.banner.creeper.silver=Volto di Creeper di grigio chiaro # +item.banner.creeper.white=Volto di Creeper di bianco # +item.banner.creeper.yellow=Volto di Creeper di giallo # item.banner.cross.black=Al decusse di nero # item.banner.cross.blue=Al decusse di blu # item.banner.cross.brown=Al decusse di marrone # @@ -4348,22 +4373,38 @@ item.banner.diagonal_up_right.red=Tagliato: a sinistra di rosso # item.banner.diagonal_up_right.silver=Tagliato: a sinistra di grigio chiaro # item.banner.diagonal_up_right.white=Tagliato: a sinistra di bianco # item.banner.diagonal_up_right.yellow=Tagliato: a sinistra di giallo # -item.banner.flower.black=Al fiore di nero # -item.banner.flower.blue=Al fiore di blu # -item.banner.flower.brown=Al fiore di marrone # -item.banner.flower.cyan=Al fiore di ciano # -item.banner.flower.gray=Al fiore di grigio # -item.banner.flower.green=Al fiore di verde # -item.banner.flower.lightBlue=Al fiore d'azzurro # -item.banner.flower.lime=Al fiore di lime # -item.banner.flower.magenta=Al fiore di magenta # -item.banner.flower.orange=Al fiore d'arancione # -item.banner.flower.pink=Al fiore di rosa # -item.banner.flower.purple=Al fiore di viola # -item.banner.flower.red=Al fiore di rosso # -item.banner.flower.silver=Al fiore di grigio chiaro # -item.banner.flower.white=Al fiore di bianco # -item.banner.flower.yellow=Al fiore di giallo # +item.banner.flow.black=Flusso nero # +item.banner.flow.blue=Flusso blu # +item.banner.flow.brown=Flusso marrone # +item.banner.flow.cyan=Flusso ciano # +item.banner.flow.gray=Flusso grigio # +item.banner.flow.green=Flusso verde # +item.banner.flow.lightBlue=Flusso azzurro # +item.banner.flow.lime=Flusso lime # +item.banner.flow.magenta=Flusso magenta # +item.banner.flow.orange=Flusso arancione # +item.banner.flow.pink=Flusso rosa # +item.banner.flow.purple=Flusso viola # +item.banner.flow.red=Flusso rosso # +item.banner.flow.silver=Flusso grigio chiaro # +item.banner.flow.white=Flusso bianco # +item.banner.flow.yellow=Flusso giallo # +item.banner.flower.black=Fiore di nero # +item.banner.flower.blue=Fiore di blu # +item.banner.flower.brown=Fiore di marrone # +item.banner.flower.cyan=Fiore di ciano # +item.banner.flower.gray=Fiore di grigio # +item.banner.flower.green=Fiore di verde # +item.banner.flower.lightBlue=Fiore d'azzurro # +item.banner.flower.lime=Fiore di lime # +item.banner.flower.magenta=Fiore di magenta # +item.banner.flower.orange=Fiore d'arancione # +item.banner.flower.pink=Fiore di rosa # +item.banner.flower.purple=Fiore di viola # +item.banner.flower.red=Fiore di rosso # +item.banner.flower.silver=Fiore di grigio chiaro # +item.banner.flower.white=Fiore di bianco # +item.banner.flower.yellow=Fiore di giallo # item.banner.globe.black=Globo nero # item.banner.globe.blue=Globo blu # item.banner.globe.brown=Globo marrone # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=Sfumato in punta di bianco # item.banner.gradient_up.yellow=Sfumato in punta di giallo # item.banner.gray.name=Stendardo grigio # item.banner.green.name=Stendardo verde # +item.banner.guster.black=Raffica nera # +item.banner.guster.blue=Raffica blu # +item.banner.guster.brown=Raffica marrone # +item.banner.guster.cyan=Raffica ciano # +item.banner.guster.gray=Raffica grigia # +item.banner.guster.green=Raffica verde # +item.banner.guster.lightBlue=Raffica azzurra # +item.banner.guster.lime=Raffica lime # +item.banner.guster.magenta=Raffica magenta # +item.banner.guster.orange=Raffica arancione # +item.banner.guster.pink=Raffica rosa # +item.banner.guster.purple=Raffica viola # +item.banner.guster.red=Raffica rossa # +item.banner.guster.silver=Raffica grigio chiaro # +item.banner.guster.white=Raffica bianca # +item.banner.guster.yellow=Raffica gialla # item.banner.half_horizontal.black=Troncato: di sopra di nero # item.banner.half_horizontal.blue=Troncato: di sopra di blu # item.banner.half_horizontal.brown=Troncato: di sopra di marrone # @@ -4535,22 +4592,22 @@ item.banner.rhombus.silver=Alla losanga di grigio chiaro # item.banner.rhombus.white=Alla losanga di bianco # item.banner.rhombus.yellow=Alla losanga di giallo # item.banner.silver.name=Stendardo grigio chiaro # -item.banner.skull.black=Al teschio e tibie incrociate di nero # -item.banner.skull.blue=Al teschio e tibie incrociate di blu # -item.banner.skull.brown=Al teschio e tibie incrociate di marrone # -item.banner.skull.cyan=Al teschio e tibie incrociate di ciano # -item.banner.skull.gray=Al teschio e tibie incrociate di grigio # -item.banner.skull.green=Al teschio e tibie incrociate di verde # -item.banner.skull.lightBlue=Al teschio e tibie incrociate d'azzurro # -item.banner.skull.lime=Al teschio e tibie incrociate di lime # -item.banner.skull.magenta=Al teschio e tibie incrociate di magenta # -item.banner.skull.orange=Al teschio e tibie incrociate d'arancione # -item.banner.skull.pink=Al teschio e tibie incrociate di rosa # -item.banner.skull.purple=Al teschio e tibie incrociate di viola # -item.banner.skull.red=Al teschio e tibie incrociate di rosso # -item.banner.skull.silver=Al teschio e tibie incrociate di grigio chiaro # -item.banner.skull.white=Al teschio e tibie incrociate di bianco # -item.banner.skull.yellow=Al teschio e tibie incrociate di giallo # +item.banner.skull.black=Teschio e tibie incrociate di nero # +item.banner.skull.blue=Teschio e tibie incrociate di blu # +item.banner.skull.brown=Teschio e tibie incrociate di marrone # +item.banner.skull.cyan=Teschio e tibie incrociate di ciano # +item.banner.skull.gray=Teschio e tibie incrociate di grigio # +item.banner.skull.green=Teschio e tibie incrociate di verde # +item.banner.skull.lightBlue=Teschio e tibie incrociate d'azzurro # +item.banner.skull.lime=Teschio e tibie incrociate di lime # +item.banner.skull.magenta=Teschio e tibie incrociate di magenta # +item.banner.skull.orange=Teschio e tibie incrociate d'arancione # +item.banner.skull.pink=Teschio e tibie incrociate di rosa # +item.banner.skull.purple=Teschio e tibie incrociate di viola # +item.banner.skull.red=Teschio e tibie incrociate di rosso # +item.banner.skull.silver=Teschio e tibie incrociate di grigio chiaro # +item.banner.skull.white=Teschio e tibie incrociate di bianco # +item.banner.skull.yellow=Teschio e tibie incrociate di giallo # item.banner.small_stripes.black=Palato di nero # item.banner.small_stripes.blue=Palato di blu # item.banner.small_stripes.brown=Palato di marrone # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=Barca in acacia # item.boat.big_oak.name=Barca in rovere # item.bone.name=Osso # item.book.name=Libro # +item.breeze_rod.name=Verga di Breeze # item.chainmail_boots.name=Stivali di maglia metallica # item.leather_boots.name=Stivali di cuoio # item.diamond_boots.name=Stivali di diamante # @@ -4991,6 +5049,7 @@ item.comparator.name=Comparatore di pietrarossa # item.compass.name=Bussola # item.lodestonecompass.name=Bussola magnetica # item.cookie.name=Biscotto # +item.copper_door.name=Porta di rame # item.crossbow.name=Balestra # item.diamond.name=Diamante # item.repeater.name=Ripetitore di pietrarossa # @@ -5038,6 +5097,7 @@ tile.end_rod.name=Verga dell'End # item.ender_eye.name=Occhio di Ender # item.ender_pearl.name=Perla di Ender # item.experience_bottle.name=Ampolla magica # +item.exposed_copper_door.name=Porta di rame scoperto # item.feather.name=Piuma # item.fermented_spider_eye.name=Occhio di ragno fermentato # item.fireball.name=Scarica di fuoco # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=Gambali d'oro # item.iron_leggings.name=Gambali di ferro # item.nautilus_shell.name=Conchiglia di nautilo # item.heart_of_the_sea.name=Cuore del mare # +item.mace.name=Mazza # item.magma_cream.name=Crema di magma # item.map.name=Mappa # item.map.exploration.mansion.name=Mappa esploratore del bosco # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=Mappa villaggio nella savana # item.map.exploration.village_desert.name=Mappa villaggio nel deserto # item.map.exploration.jungle_temple.name=Mappa esploratore della giungla # item.map.exploration.swamp_hut.name=Mappa esploratore della palude # +item.map.exploration.trial_chambers.name=Mappa esploratore - versione di prova # item.melon.name=Cocomero # item.milk.name=Secchio di latte # item.minecart.name=Vagonetto # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=Vagonetto con cassa # item.command_block_minecart.name=Vagonetto con blocco di comando # item.minecartFurnace.name=Vagonetto propulsore # item.hopper_minecart.name=Vagonetto con tramoggia # +item.ominous_bottle.name=Ampolla nefasta # +item.ominous_trial_key.name=Chiave della sfida nefasta # +item.oxidized_copper_door.name=Porta di rame ossidato # item.tnt_minecart.name=Vagonetto con tritolo # item.pitcher_pod.name=Baccello di sarracenia # item.torchflower_seeds.name=Semi di rosa di porcellana # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=Uovo di generazione dell'Agent # item.spawn_egg.entity.armadillo.name=Uovo di generazione dell'Armadillo # item.spawn_egg.entity.axolotl.name=Uovo di generazione dell'axolotl # item.spawn_egg.entity.bee.name=Uovo di generazione delle api # +item.spawn_egg.entity.bogged.name=Uovo di generazione del Paludoso # +item.spawn_egg.entity.breeze.name=Uovo di generazione del Breeze # item.spawn_egg.entity.hoglin.name=Uovo di generazione dell'Hoglin # item.spawn_egg.entity.cat.name=Uovo di generazione del gatto # item.spawn_egg.entity.chicken.name=Uovo di generazione del pollo # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 - ward # item.record_pigstep.desc=Lena Raine - Pigstep # item.record_otherside.desc=Lena Raine - otherside # item.record_relic.desc=Aaron Cherof - Relic # +item.record_creator.desc=Lena Raine - Creator # +item.record_creator_music_box.desc=Lena Raine - Creator (Music Box) # +item.record_precipice.desc=Aaron Cherof - Precipice # item.redstone.name=Polvere di pietrarossa # item.reeds.name=Canne da zucchero # item.kelp.name=Alga # @@ -5324,6 +5394,12 @@ item.iron_sword.name=Spada di ferro # item.stone_sword.name=Spada di pietra # item.wooden_sword.name=Spada di legno # item.unbreakable=Indistruttibile # +item.waxed_copper_door.name=Porta di rame cerato # +item.waxed_exposed_copper_door.name=Porta di rame scoperto cerato # +item.waxed_oxidized_copper_door.name=Porta di rame ossidato cerato # +item.waxed_weathered_copper_door.name=Porta di rame corroso cerato # +item.weathered_copper_door.name=Porta di rame corroso # +item.wind_charge.name=Carica di vento # item.wheat.name=Grano # item.wolf_armor.name=Armatura da lupo # item.writable_book.name=Libro e penna d'oca # @@ -5331,20 +5407,23 @@ item.written_book.name=Libro scritto # item.glowstone_dust.name=Polvere di luminite # item.shulker_shell.name=Guscio di Shulker # item.totem.name=Totem della non-morte # +item.trial_key.name=Chiave di prova # item.turtle_helmet.name=Guscio di tartaruga # item.turtle_shell_piece.name=Scaglia di tartaruga # item.phantom_membrane.name=Membrana fantasma # item.sweet_berries.name=Bacche dolci # item.suspicious_stew.name=Zuppa sospetta # item.banner_pattern.bricks=Campo seminato di mattoni # -item.banner_pattern.creeper=Al volto di Creeper # -item.banner_pattern.flower=Al fiore # +item.banner_pattern.creeper=Volto di Creeper # +item.banner_pattern.flow=Flusso # +item.banner_pattern.flower=Fiore # item.banner_pattern.globe=Globo # +item.banner_pattern.guster=Raffica # item.banner_pattern.name=Motivo dello stendardo # item.banner_pattern.piglin=Grugno # -item.banner_pattern.skull=Al teschio e tibie incrociate # -item.banner_pattern.thing=All'aggeggio # -item.banner_pattern.vines=Alla bordura cuneato # +item.banner_pattern.skull=Teschio e tibie incrociate # +item.banner_pattern.thing=Aggeggio # +item.banner_pattern.vines=Bordura cuneata # item.bucketPowderSnow.name=Secchio di neve fresca # item.shield.name=Scudo # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=Motivi degli stendardi # itemGroup.name.netherWartBlock=Verruche del Nether # itemGroup.name.candles=Candele # itemGroup.name.goatHorn=Corna di capra # +itemGroup.name.compounds=Composti # +itemGroup.name.products=Prodotti # jigsaw.title.target_pool=Pool di destinazione: # jigsaw.title.name=Nome: # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=IMPOSTAZIONI CLASSE # menu.serverStore=Negozio %s # menu.serverGenericName=Server # menu.play=Gioca # +menu.profile=Profilo # menu.playdemo=Gioca nel mondo della demo # menu.playOnRealms=Gioca sul reame # menu.quickplay=Modalità rapida # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=Scegli il tuo personaggio iniziale # menu.character_cast.preview_title=Incontra i personaggi! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Server Realms ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=Server # merchant.deprecated=Scambia qualcos'altro per sbloccare! # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=Gameplay tastiera completa # options.fullKeyboardLayout=Layout tastiera completa # options.improvedInputResponsePlaceholder=Risposta agli input migliorata # options.improvedInputResponsePlaceholder.tooltip=Riduce il ritardo tra l'input e l'azione visualizzata sullo schermo. Questa impostazione potrebbe aumentare il consumo della batteria. # +options.dynamicTexturesToggle=Rimuovi limite di texture # +options.dynamicTexturesToggle.tooltip=La disattivazione di questa impostazione richiederà il riavvio del gioco. Potrebbe causare instabilità, nel caso si usino più componenti aggiuntivi o pacchetti di risorse con molte texture. # +options.dynamicTextures.popUp=Se l'impostazione Rimuovi limite di texture è attivata, dovrai riavviare il gioco per disattivarla. # +options.dynamicTextures.popUp.title=Confermi? # options.fullscreen=Schermo intero # options.gamepadcursorsensitivity=Sensibilità del cursore del controller # options.gamertag=Gamertag: # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=Connettiti # options.creator.debuggerListen=Ascolta # options.creator.debuggerHost=Ospita # options.creator.debuggerPort=Porta # +options.creator.watchdogHeading=Impostazioni watchdog script # +options.creator.watchdogSlowWarning=Avvisi script lento # +options.creator.watchdogSlowThreshold=La media supera # +options.creator.watchdogSlowFormat=%s millisecondi # +options.creator.watchdogSlowFormatDefault=%s millisecondi (predefinito) # +options.creator.watchdogSpikeWarning=Avvisi picco script # +options.creator.watchdogSpikeThreshold=Il picco supera # +options.creator.watchdogSpikeFormat=%s millisecondi # +options.creator.watchdogSpikeFormatDefault=%s millisecondi (predefinito) # +options.creator.watchdogHangThreshold=Interrompi dopo # +options.creator.watchdogHangFormat=%s secondi # +options.creator.watchdogHangFormatDefault=%s secondi (predefinito) # options.vr_classic_box_selection=Selezione struttura # options.hidegamepadcursor=Nascondi cursore del controller # options.hidegui=Nascondi interfaccia grafica # @@ -6662,7 +6761,7 @@ options.makeBackup=Crea una copia di backup del mio mondo # options.managePrivacy=Per gestire le impostazioni relative alla privacy, visita il sito https://account.xbox.com/Settings da qualsiasi browser. ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Scollega account Microsoft # options.unlink_msa.confirm.title=Vuoi scollegare l'account Microsoft? # -options.unlink_msa.confirm.warning=ATTENZIONE: scollegando il tuo account %s, non sarai più in grado di salvare i progressi o gli acquisti effettuati con esso sul tuo sistema "PlayStation 4". # +options.unlink_msa.confirm.warning=ATTENZIONE: scollegando il tuo account %s, non sarai più in grado di salvare i progressi o gli acquisti effettuati con esso sul tuo sistema PlayStation®4. #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=Scollegare il tuo account Microsoft dall'interno di questo gioco influirà su tutti i giochi Minecraft su questa piattaforma che hanno utilizzato questo account Microsoft. # options.unlink_msa.confirm.checkbox1=Utilizzando altre piattaforme, non sarò più in grado di accedere ad alcun contenuto del negozio di gioco. # options.unlink_msa.confirm.checkbox2=Non sarò più in grado di partecipare a partite cross-platform insieme ai miei amici con altre piattaforme. # @@ -6688,7 +6787,7 @@ options.editor.modeDescription.messageWithMouse=La modalità editor aggiunge att options.editor.modeActive=Minecraft è attualmente in modalità editor. # options.editor.modeNotActive=Minecraft non è attualmente in modalità editor. # options.editor.achievementsDisabled=In questo progetto non è possibile sbloccare obiettivi. # -options.newUiPlayScreen.initiate=Passa alla nuova interfaccia utente # +options.newUiPlayScreen.initiate=Cambia UI # options.openPage.continue=Altre informazioni # options.graphicsMode=Modalità grafica # options.graphicsMode.simple=Semplice # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=Carica un mondo per personalizzare i coma hudScreen.controlCustomization.tooltip.notouch=Usa un dispositivo touch per personalizzare i comandi # hudScreen.controlCustomization.tooltip.alreadycustomizing=C'è già una schermata di personalizzazione dei comandi touch aperta # hudScreen.controlCustomization.tooltip.alive=Il personaggio del giocatore deve essere vivo per poter personalizzare i comandi. # +hudScreen.daysPlayed=Giorni di gioco: %s # +hudScreen.daysPlayed.overflow=Troppi per contarli! # playscreen.fileSize.MB=MB # playscreen.fileSize.GB=GB # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=Pozione di cura lanciabile # potion.heal.linger.name=Pozione di cura persistente # potion.healthBoost=Salute potenziata # potion.hunger=Fame # +potion.infested.linger.name=Pozione persistente di infestazione # +potion.infested.name=Pozione di infestazione # +potion.infested.splash.name=Pozione lanciabile di infestazione # +potion.infested=Infestazione applicata # potion.invisibility=Invisibilità # potion.invisibility.name=Pozione d'invisibilità # potion.invisibility.splash.name=Pozione d'invisibilità lanciabile # @@ -7067,6 +7172,10 @@ potion.nightVision=Visione notturna # potion.nightVision.name=Pozione di visione notturna # potion.nightVision.splash.name=Pozione di visione notturna lanciabile # potion.nightVision.linger.name=Pozione di visione notturna persistente # +potion.oozing.linger.name=Pozione persistente di fuoriuscita melmosa # +potion.oozing.name=Pozione di fuoriuscita melmosa # +potion.oozing.splash.name=Pozione lanciabile di fuoriuscita melmosa # +potion.oozing=Fuoriuscita melmosa # potion.poison=Veleno # potion.poison.name=Pozione di veleno # potion.poison.splash.name=Pozione di veleno lanciabile # @@ -7108,6 +7217,14 @@ potion.weakness=Debolezza # potion.weakness.name=Pozione di debolezza # potion.weakness.splash.name=Pozione di debolezza lanciabile # potion.weakness.linger.name=Pozione di debolezza persistente # +potion.weaving.linger.name=Pozione persistente di tessitura # +potion.weaving.name=Pozione di tessitura # +potion.weaving.splash.name=Pozione lanciabile di tessitura # +potion.weaving=Tessitura # +potion.windCharged.linger.name=Pozione persistente della folata di vento # +potion.windCharged.name=Pozione della folata di vento # +potion.windCharged.splash.name=Pozione lanciabile della folata di vento # +potion.windCharged=Folata di vento applicata # potion.wither=Wither # potion.wither.name=Pozione d'avvizzimento # potion.wither.splash.name=Pozione d'avvizzimento lanciabile # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=Questo mondo non può essere aperto a progressScreen.message.forbiddenContent=Non possiedi uno o più dei pacchetti applicati # progressScreen.message.loadingSplitScreenAppearances=Caricamento degli aspetti a schermo diviso... # progressScreen.message.finishedLoadingSplitScreenAppearances=Caricamento degli aspetti a schermo diviso completato. # -progressScreen.message.modifiedWorldWarning=Questo mondo potrebbe non apparire o funzionare come i mondi non modificati e non ti permette di abilitare gli obiettivi. # +progressScreen.message.modifiedWorldWarning.1=Stai giocando in un mondo con contenuti aggiuntivi! Verranno aggiunte nuove funzionalità al tuo mondo di Minecraft. # +progressScreen.message.modifiedWorldWarning.2=Non limitarti a uno! Puoi caricare più contenuti aggiuntivi contemporaneamente in un singolo mondo. # +progressScreen.message.modifiedWorldWarning.3=Suggerimento avanzato: un pacchetto di risorse può modificare le texture di blocchi ed entità. # +progressScreen.message.modifiedWorldWarning.4=Suggerimento avanzato: un pacchetto di comportamenti può modificare il funzionamento di oggetti, entità o blocchi. # +progressScreen.message.modifiedWorldWarning.5=Suggerimento avanzato: un contenuto aggiuntivo include sia un pacchetto di comportamenti che un pacchetto di risorse. Assicurati che entrambi i pacchetti siano attivati affinché il contenuto aggiuntivo funzioni correttamente! # +progressScreen.message.modifiedWorldWarning.6=I contenuti aggiuntivi aggiungono nuovi blocchi, oggetti o creature ai tuoi mondi. # +progressScreen.message.modifiedWorldWarning.7=L'interazione tra mondi e contenuti aggiuntivi è complessa! Alcuni funzionano benissimo insieme, mentre altri potrebbero produrre risultati bizzarri. # +progressScreen.message.modifiedWorldWarning.8=Più contenuti aggiuntivi significa più divertimento, ma i tempi di caricamento del gioco potrebbero allungarsi. # progressScreen.dialog.title.resourcePack=Scaricare i pacchetti di risorse? # progressScreen.dialog.title.behaviorAndResourcePack=Scaricare i pacchetti di comportamenti e risorse del mondo? # progressScreen.dialog.title.onlyBehavior=Scaricare i pacchetti di comportamenti del mondo? # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=Vuoi aggiornare il mondo? # resourcePack.warning.add.body=Questo mondo potrebbe apparire o funzionare diversamente dai mondi non modificati. Prima di continuare, ti consigliamo di salvare una copia del mondo. # resourcePack.warning.add.button.cancel=Non aggiungere il pacchetto # resourcePack.warning.add.button.ok=Aggiungi comunque il pacchetto # +resourcePack.warnings.contentKeyErrorBody=Si è verificato un problema durante il caricamento del pacchetto %s. # +resourcePack.warnings.contentKeyErrorBodyMultiple=Si è verificato un problema durante il caricamento dei pacchetti %s. # +resourcePack.warnings.contentKeyErrorTitle=Errore! # resourcePack.warning.remove.title=Questo è pericoloso! # resourcePack.warning.remove.body=Aggiungendo o rimuovendo pacchetti dopo avere usato un mondo, potresti danneggiarlo irrimediabilmente e perdere tutto ciò che hai creato. # resourcePack.warning.remove.button.cancel=Mantieni il pacchetto # @@ -7557,7 +7684,9 @@ item.crimson_hanging_sign.name=Insegna sospesa cremisi # item.danger_pottery_sherd.name=Frammento di ceramica Pericolo # item.dark_oak_hanging_sign.name=Insegna sospesa in rovere # item.explorer_pottery_sherd.name=Frammento di ceramica Esploratore # +item.flow_pottery_sherd.name=Frammento di ceramica Flusso # item.friend_pottery_sherd.name=Frammento di ceramica Amico # +item.guster_pottery_sherd.name=Frammento di ceramica Raffica # item.heart_pottery_sherd.name=Frammento di ceramica Cuore # item.heartbreak_pottery_sherd.name=Frammento di ceramica Crepacuore # item.howl_pottery_sherd.name=Frammento di ceramica Ululato # @@ -7568,6 +7697,7 @@ item.mourner_pottery_sherd.name=Frammento di ceramica Dolente # item.oak_hanging_sign.name=Insegna sospesa di quercia # item.plenty_pottery_sherd.name=Frammento di ceramica Abbondanza # item.prize_pottery_sherd.name=Frammento di ceramica Premio # +item.scrape_pottery_sherd.name=Frammento di ceramica Graffio # item.sheaf_pottery_sherd.name=Frammento di ceramica Covone # item.shelter_pottery_sherd.name=Frammento di ceramica Rifugio # item.skull_pottery_sherd.name=Frammento di ceramica Teschio # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=Scale di ciliegio # tile.cherry_trapdoor.name=Botola di ciliegio # tile.cherry_wood.name=Legno di ciliegio # tile.chiseled_bookshelf.name=Libreria intagliata # +tile.chiseled_tuff.name=Tufo intagliato # +tile.chiseled_tuff_bricks.name=Mattoni di tufo intagliato # tile.decorated_pot.name=Vaso decorato # tile.pink_petals.name=Petali rosa # tile.stripped_bamboo_block.name=Blocco di bambù striato # @@ -7626,7 +7758,7 @@ trim_material.diamond.name=Materiale di diamante # trim_material.emerald.name=Materiale di smeraldo # trim_material.gold.name=Materiale d'oro # trim_material.iron.name=Materiale di ferro # -trim_material.lapis.name=Materiale di lapislazzulo # +trim_material.lapis.name=Materiale di lapislazzuli # trim_material.netherite.name=Materiale di Netherite # trim_material.quartz.name=Materiale di quarzo # trim_material.redstone.name=Materiale di pietrarossa # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=Rivestimento armatura Vessante # trim_pattern.ward.name=Rivestimento armatura Sorvegliante # trim_pattern.wayfinder.name=Rivestimento armatura Navigatore # trim_pattern.wild.name=Rivestimento armatura Selvaggia # +trim_pattern.bolt.name=Rivestimento armatura Saetta # +trim_pattern.flow.name=Rivestimento armatura Flusso # upgrade.netherite_upgrade.name=Potenziamento di Netherite # storageManager.mainSizeLabel=%s - 1 oggetto # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=Vuoi eliminare il modello di mondo? # selectTemplate.delete=Elimina # selectTemplate.myTemplates=I miei modelli di mondo # selectTemplate.realmsPlus=Modelli in evidenza di Realms Plus # -selectTemplate.marketplacePass=Modelli in evidenza nel Marketplace Pass #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=Contenuti in evidenza nel Marketplace Pass #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=Modelli importati # selectTemplate.download=Scarica # selectTemplate.noTemplates=Nessun modello di mondo disponibile in questo dispositivo. # -selectTemplate.suggestedContent.title=Modelli in rilievo nel marketplace # +selectTemplate.suggestedContent.title=Contenuti in evidenza nel marketplace # selectTemplate.suggestedContent.button=Visualizza altri modelli # selectTemplate.createdBy=Creato da %s # selectTemplate.inventory=I miei pacchetti marketplace # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=Si è verificato un problema durante la connessio store.loading.error.issues=Uhm, c'è qualche problema con il Marketplace. Prova a connetterti più tardi. # store.loading.error.internetDown=Impossibile rilevare una connessione Internet. # store.loading.error.account=Si è verificato un problema con il tuo account. Riprova tra poco. Se il problema persiste, contatta l'assistenza. # +store.loading.error.account.banned=Non potrai usare il marketplace fino al termine della sospensione. # store.giftPromo.day=G. %s ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=Reclamato # @@ -8405,10 +8540,17 @@ store.mashup.count.skin=1 Skin # store.mashup.count.skins=%s skin # store.mashup.count.texturePack=1 Pacchetto texture # store.mashup.count.texturePacks=%s Pacchetti texture #number of texture packs # -store.mashup.count.world=1 Mondo # +store.mashup.count.world=1 mondo # store.mashup.count.worlds=%s Mondi #number of worlds # store.mashup.count.addonPack=1 componente aggiuntivo # store.mashup.count.addonPacks=%s componenti aggiuntivi #number of addons # +store.mashup.count.mashup=Mash-up # +store.mashup.hover.label.addonPack=I contenuti aggiuntivi possono essere applicati a qualsiasi mondo. # +store.mashup.hover.label.world=Una mappa di Minecraft realizzata a mano. # +store.mashup.hover.label.skin=Applica un nuovo look al tuo personaggio. # +store.mashup.hover.label.texturePack=Applica un nuovo look al tuo mondo o all'interfaccia di gioco. # +store.mashup.hover.label.mashup.lineOne=Una combinazione di diversi tipi di contenuti. # +store.mashup.hover.label.mashup.lineTwo=Questo mash-up contiene: # store.addon.activateAddonPack=Attiva componente aggiuntivo! # store.addon.newOrExistingTitle=Dove si aggiunge? # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=Cartello # tile.chest.name=Cassa # tile.ender_chest.name=Cassa di Ender # tile.jigsaw.name=Blocco mosaico # +tile.heavy_core.name=Nucleo pesante # tile.honey_block.name=Blocco di miele # tile.honeycomb_block.name=Blocco favo # tile.lodestone.name=Magnetite # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=Lastra di pietranera levigata # tile.polished_blackstone_pressure_plate.name=Pedana a pressione di pietranera levigata # tile.polished_blackstone_button.name=Pulsante di pietranera levigata # tile.polished_blackstone_wall.name=Muro di pietranera levigata # +tile.polished_tuff.name=Tufo lucidato # +tile.polished_tuff_slab.name=Lastra di tufo lucidato # +tile.polished_tuff_stairs.name=Scale di tufo lucidato # +tile.polished_tuff_wall.name=Muro di tufo lucidato # tile.soul_campfire.name=Falò dell'anima # tile.chiseled_nether_bricks.name=Mattoni del Nether cesellati # tile.cracked_nether_bricks.name=Mattoni del Nether lesionati # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=Terracotta gialla # tile.structure_block.name=Blocco struttura # structure_block.waterlog_block=Blocchi da inserire in acqua # tile.structure_void.name=Vuoto struttura # +tile.trial_spawner.name=Generatore di sfide # +tile.vault.name=Cassaforte # tile.wool.black.name=Lana nera # tile.wool.blue.name=Lana blu # tile.wool.brown.name=Lana marrone # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=Felce # tile.tallgrass.grass.name=Erba # tile.tallgrass.name=Erba # tile.tallgrass.shrub.name=Arbusto # +tile.tuff_brick_slab.name=Lastra di mattoni di tufo # +tile.tuff_brick_stairs.name=Scale di mattoni di tufo # +tile.tuff_brick_wall.name=Muro di mattoni di tufo # +tile.tuff_bricks.name=Mattoni di tufo # +tile.tuff_slab.name=Lastra di tufo # +tile.tuff_stairs.name=Scale di tufo # +tile.tuff_wall.name=Muro di tufo # tile.seagrass.seagrass.name=Prateria di mare # tile.sea_pickle.name=Cetriolo di mare # tile.turtle_egg.name=Uovo di tartaruga marina # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=Tappeto rosso # tile.carpet.silver.name=Tappeto grigio chiaro # tile.carpet.white.name=Tappeto bianco # tile.carpet.yellow.name=Tappeto giallo # +tile.crafter.name=Creatore # tile.crafting_table.name=Banco da lavoro # tile.glazedTerracotta.white.name=Terracotta smaltata bianca # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=Lastra di rame tagliato cerato # tile.waxed_exposed_cut_copper_slab.name=Lastra di rame tagliato scoperto cerato # tile.waxed_weathered_cut_copper_slab.name=Lastra di rame tagliato corroso cerato # tile.waxed_oxidized_cut_copper_slab.name=Lastra di rame tagliato ossidato cerato # + +tile.chiseled_copper.name=Rame intagliato # +tile.exposed_chiseled_copper.name=Rame intagliato scoperto # +tile.oxidized_chiseled_copper.name=Rame intagliato ossidato # +tile.waxed_chiseled_copper.name=Rame intagliato cerato # +tile.waxed_exposed_chiseled_copper.name=Rame intagliato esposto cerato # +tile.waxed_oxidized_chiseled_copper.name=Rame intagliato ossidato cerato # +tile.waxed_weathered_chiseled_copper.name=Rame intagliato corroso cerato # +tile.weathered_chiseled_copper.name=Rame intagliato corroso # + +tile.copper_bulb.name=Lampadina di rame # +tile.exposed_copper_bulb.name=Lampadina di rame scoperto # +tile.oxidized_copper_bulb.name=Lampadina di rame ossidato # +tile.waxed_copper_bulb.name=Lampadina di rame cerato # +tile.waxed_exposed_copper_bulb.name=Lampadina di rame scoperto cerato # +tile.waxed_oxidized_copper_bulb.name=Lampadina di rame ossidato cerato # +tile.waxed_weathered_copper_bulb.name=Lampadina di rame corroso cerato # +tile.weathered_copper_bulb.name=Lampadina di rame corroso # + +tile.copper_door.name=Porta di rame # +tile.exposed_copper_door.name=Porta di rame scoperto # +tile.oxidized_copper_door.name=Porta di rame ossidato # +tile.waxed_copper_door.name=Porta di rame cerato # +tile.waxed_exposed_copper_door.name=Porta di rame scoperto cerato # +tile.waxed_oxidized_copper_door.name=Porta di rame ossidato cerato # +tile.waxed_weathered_copper_door.name=Porta di rame corroso cerato # +tile.weathered_copper_door.name=Porta di rame corroso # + +tile.copper_grate.name=Grata di rame # +tile.exposed_copper_grate.name=Grata di rame scoperto # +tile.oxidized_copper_grate.name=Grata di rame ossidato # +tile.waxed_copper_grate.name=Grata di rame cerato # +tile.waxed_exposed_copper_grate.name=Grata di rame scoperto cerato # +tile.waxed_oxidized_copper_grate.name=Grata di rame ossidato cerato # +tile.waxed_weathered_copper_grate.name=Grata di rame corroso cerato # +tile.weathered_copper_grate.name=Grata di rame corroso # + +tile.copper_trapdoor.name=Botola di rame # +tile.exposed_copper_trapdoor.name=Botola di rame scoperto # +tile.oxidized_copper_trapdoor.name=Botola di rame ossidato # +tile.waxed_copper_trapdoor.name=Botola di rame cerato # +tile.waxed_exposed_copper_trapdoor.name=Botola di rame scoperto cerato # +tile.waxed_oxidized_copper_trapdoor.name=Botola di rame ossidato cerato # +tile.waxed_weathered_copper_trapdoor.name=Botola di rame corroso cerato # +tile.weathered_copper_trapdoor.name=Botola di rame corroso # + tile.raw_copper_block.name=Blocco di rame grezzo # tile.raw_iron_block.name=Blocco di ferro grezzo # tile.raw_gold_block.name=Blocco d'oro grezzo # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=Freccia di fortuna # tipped_arrow.effect.wither=Freccia d'avvizzimento # tipped_arrow.effect.turtleMaster=Freccia del Maestro Tartaruga # tipped_arrow.effect.slowFalling=Freccia della caduta lenta # +tipped_arrow.effect.infested=Freccia di infestazione # +tipped_arrow.effect.oozing=Freccia di fuoriuscita melmosa # +tipped_arrow.effect.weaving=Freccia di tessitura # +tipped_arrow.effect.windCharged=Freccia della folata di vento # structure_block.title=Blocco struttura # structure_block.structure_name=Nome struttura # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=Alcune delle tue modifiche più recent worldError.worldFailedRecovery=Recupero non riuscito # worldError.worldFailedRecoveryText=Abbiamo individuato un mondo corrotto ma non è stato possibile recuperarlo. # +writeThrottling.osDialog.body=Il completamento dell'operazione richiesta dovrebbe richiedere %d minuti. Non spegnere il dispositivo durante questo periodo. # +writeThrottling.osDialog.cancel=Annulla operazione # +writeThrottling.osDialog.confirm=Procedi # +writeThrottling.progressBar.title=Preparazione dei dati # +writeThrottling.progressBar.body=Preparazione dei file... # + userData.recovered.title=Dati salvati recuperati # userData.recovered.text=Le tue impostazioni utente corrotte sono state recuperate con successo. # userData.recovered.warning=Alcune delle tue modifiche più recenti potrebbero essere andate perse con la procedura di recupero. # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=Messaggio della chat # xbox.report.area.skin=Skin del giocatore # xbox.report.area.gameplay=Gioco # xbox.report.area.ingame=Creazioni di gioco # -xbox.report.area.other=Altro # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=Cyberbullismo # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=Purtroppo al momento non è possibile conn gathering.connect.title=Connessione in corso... # gathering.info.qr.title.onlineService=Maggiori informazioni # gathering.info.qr.body.onlineService.nso=È necessario un abbonamento a Nintendo Switch Online per partecipare a un evento di Minecraft. # -gathering.info.qr.body.onlineService.psn=Devi avere effettuato l'accesso a \''PlayStation Plus\'' per partecipare a un evento di Minecraft. # +gathering.info.qr.body.onlineService.psn=Devi aver effettuato l'accesso a PlayStation®Plus per partecipare a un evento di Minecraft. #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=È necessario avere effettuato l'accesso per partecipare a un evento di Minecraft. # gathering.info.qr.title.childAccount=Gioco online non consentito # gathering.info.qr.body.childAccount=Le impostazioni attuali del filtro famiglia ti impediscono di giocare online. # diff --git a/resource_pack/texts/ja_JP.lang b/resource_pack/texts/ja_JP.lang index 6ebdd84e0..f1cfa3e3d 100644 --- a/resource_pack/texts/ja_JP.lang +++ b/resource_pack/texts/ja_JP.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=シードを選択 # accessibility.start.feedback=Web サイトへフィードバック リンクを送信する # accessibility.start.new=新規 # -accessibility.start.profile=プロフィールを選択 # accessibility.start.skinPicker=スキン選択 # accessibility.store.tag=タグ # @@ -1094,10 +1093,6 @@ commands.me.description=あなたに関するメッセージを表示します # commands.message.display.incoming=%1$s にささやかれました: %2$s # commands.message.display.outgoing=%1$s にささやきました: %2$s # commands.message.sameTarget=自分自身にプライベートメッセージを送信することはできません! # -commands.message.warn=§4あなたに警告が送られました。あなたの行動が他のプレイヤーから不快に思われている可能性があります。一緒にプレイしている他のプレイヤーに配慮してください。 # -commands.message.toastWarn=Minecraft はみんなのために! コミュニティの基準に従って行動してください。 # -commands.warn.invalidWarningLevel=無効な警告レベルです。 # -commands.warn.playerDoesNotExist=プレイヤーが見つかりませんでした。有効なプレイヤーを選択してください。 # commands.mobevent.description=実行を許可するモブ イベントを管理します。 # commands.mobevent.eventsEnabledSetToTrue=モブ イベントは現在オンになっています。false に設定されている個々のイベントは実行されません。 # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=- %s: %d %d %d から %d %d %d まで commands.volumearea.entry.withoutIdentifier=- %s: %d %d %d から %d %d %d まで # commands.volumearea.noneExist.currentDimension=現在のディメンションにボリュームが存在しません。 # commands.volumearea.inUse=使用中のボリューム: %1$d / %2$d # -commands.warn.description=プレイヤーに警告メッセージを送信します。 # commands.weather.clear=天候を晴れに変更しています # commands.weather.description=天気を設定する。 # commands.weather.disabled=この世界では、[天候の変化] は有効になっていません。 # @@ -1572,6 +1566,7 @@ container.beacon=ビーコン # container.brewing=醸造台 # container.chest=チェスト # container.chestDouble=ラージチェスト # +container.crafter=クラフター # container.crafting=クラフト # container.creative=アイテムの選択 # container.dispenser=ディスペンサー # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=洞窟と崖 # createWorldScreen.cavesandcliffsDescription=新しい変化に富んだ洞窟生成を体験する # createWorldScreen.spectatorMode=観戦者モード # createWorldScreen.spectatorModeDescription=観戦者モードの初期バージョンをお試しください # -createWorldScreen.experimentalCameras=試験的カメラ # -createWorldScreen.experimentalCamerasDescription=カメラ プリセット (カメラ コマンドは試験的ではなくなりました) # createWorldScreen.recipeUnlocking=レシピのアンロック # createWorldScreen.recipeUnlockingDescription=レシピのアンロックを有効化します # createWorldScreen.experimentalholiday=ホリデー クリエイターの特徴 # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=新しい世界を作成中... # createWorldScreen.progress.realms=Realm をリセット中... # createWorldScreen.seed.desc=同じ地形を再度生成するには種を入れます。ランダムな世界の場合、空欄のままにします。 # createWorldScreen.showCoordinates=座標を表示 # +createWorldScreen.showDaysPlayed=プレイ日を表示する # createWorldScreen.worldType=ワールドタイプ # createWorldScreen.randomtickspeed=ランダムなティック速度 # createWorldScreen.randomtickspeed.reset=ランダムなティック速度をリセット # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=プロジェクトを削除する # createWorldScreen.editor.projectOptionsLabel=プロジェクトオプション # createWorldScreen.editor.delete.confirm=プロジェクトを完全に削除しますか? # createWorldScreen.editor.deleteWarningFormat=本当に「%s」を削除してもよろしいですか? このプロジェクトは完全に消去されます! # +createWorldScreen.eduCloud.about.body=ファイル名: 「%1$s」%2$s最終更新日: %3$s%4$sダウンロードするには、「OK」 をクリックしてから「ダウンロード」をクリックします %5$s # +createWorldScreen.eduCloud.about.title=クラウド世界ファイルについて # createWorldScreen.eduCloud.delete.confirm=ローカル世界を削除しますか? # createWorldScreen.eduCloud.deleteWarningFormat=このデバイスの「%1$s」を削除してもよろしいですか?%2$sクラウド バージョン '%3$s' は影響を受けず、後で再同期できます。 # createWorldScreen.experimentalDeferredTechnicalPreview=クリエイター向けのドラゴンの機能をレンダリング # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Windows ストア # realmsSettingsScreen.xboxOneStoreDisplayName=Xbox ストア # realmsSettingsScreen.amazonStoreDisplayName=Amazon アプリストア # realmsSettingsScreen.oculusStoreDisplayName=Oculus ストア # -realmsSettingsScreen.berwickStoreDisplayName=「PlayStation Store」 # -realmsSettingsScreen.SonyStoreDisplayName=「PlayStation Store」 #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®ストア #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®ストア #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=未知のストア # realmsSettingsScreen.extendingRealm=Realm を延長中... # realmsSettingsScreen.offerError.title=購入保留中 # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=Minecraft マーケットプレ xbl.syncIAP.confirmSync.prompt.yes=はい、購入を同期します # xbl.marketplace.account.error.body.nobutton=アカウントに関連するエラーが発生しました。この問題が解決するまで、マーケットプレイスはご利用いただけません。この問題が数日経過しても解決しない場合は、サポートにお問い合わせください。 # -xbl.marketplace.account.banned.body.nobutton=アカウントの停止が解除されるまで、マーケットプレイスをご利用いただけません。 # playfab.account.banned.temporary=利用停止 # playfab.account.banned.permanent=アクセス禁止 # @@ -2487,6 +2482,14 @@ date.daysAbbreviated1Char=%s 日 ### It needs to be abbreviated with no more th date.hoursAbbreviated1Char=%s 時間 ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%s 分 ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%s 秒 ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s 日 # +date.hoursPlural=%s 時間 # +date.minutesPlural=%s 分 # +date.secondsPlural=%s 秒 # +date.daySingular=%s 日 # +date.hourSingular=%s 時間 # +date.minuteSingular=%s 分 # +date.secondSingular=%s 秒 # date.timeLeft=残り %s # dayOneExperience.carousel.title=新しい Minecraft へようこそ! # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=ホスト # edu.worlds_screen.settings=設定 # edu.worlds_screen.download=ダウンロード ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=管理 # +edu.worlds_screen.about=バージョン情報 # edu.worlds_screen.back=戻る # edu.worlds_screen.copy=コピー # edu.worlds_screen.export=エクスポート # @@ -2791,7 +2795,13 @@ edu.templates.empty_banner=ワールド テンプレートは、Minecraft Educat edu.pause.multiplayer.disabled=このレッスンではマルチプレイヤーは利用できません。 # effect.badOmen=不吉な予感 # +effect.infested=虫食い # +effect.oozing=滲出 # +effect.raid_omen=襲撃の凶兆 # +effect.trial_omen=試練の予感 # effect.villageHero=村の英雄 # +effect.weaving=機織り # +effect.wind_charged=ウィンドチャージ # enchantment.arrowDamage=射撃ダメージ増加 # enchantment.arrowFire=フレイム # @@ -2810,6 +2820,9 @@ enchantment.durability=耐久力 # enchantment.fire=火属性 # enchantment.fishingSpeed=入れ食い # enchantment.frostwalker=氷渡り # +enchantment.heavy_weapon.breach=違反 # +enchantment.heavy_weapon.density=密度 # +enchantment.heavy_weapon.windburst=爆風 # enchantment.knockback=ノックバック # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=コウモリ # entity.bee.name=ミツバチ # entity.blaze.name=ブレイズ # entity.boat.name=ボート # +entity.bogged.name=行き詰まり # +entity.breeze.name=ブリーズ # +entity.breeze_wind_charge_projectile.name=風力チャージ # entity.cat.name=ネコ # entity.cave_spider.name=洞窟グモ # entity.chicken.name=ニワトリ # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=未熟な村人 # entity.villager_v2.name=村人 # entity.vindicator.name=ヴィンディケーター # entity.wandering_trader.name=行商人 # +entity.wind_charge_projectile.name=風力チャージ # entity.witch.name=ウィッチ # entity.wither.name=ウィザー # entity.wither_skeleton.name=ウィザースケルトン # @@ -3009,6 +3026,7 @@ feature.ruins=海底遺跡 # feature.pillager_outpost=略奪者の前哨基地 # feature.bastion_remnant=砦の遺跡 # feature.ruined_portal=破壊されたポータル # +feature.trial_chambers=チャレンジ部屋 # feed.like=いいね! # feed.manage_feed=フィードを管理 # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=:tip_left_stick: を操作して移動しま gameTip.flying.mouse=:_input_key.jump: をダブルタップして飛ぶ # gameTip.flying.touch=ダブルタップして飛ぶ # +gameTip.flyDown.mouse=:_input_key.sneak: を押して下降する # +gameTip.flyUp.mouse=:_input_key.jump: を押して上昇する # + +gameTip.stopFlying.mouse=:_input_key.jump: をダブルタップして飛行を止める # +gameTip.stopFlying.touch=下降をダブルタップして飛行を止める # + gameTip.jump.mouse=:_input_key.jump: でジャンプ # +gameTip.swim.mouse=:_input_key.jump: を長押しして浮上する # -gameTip.hotbar.mouse=ホットバーでマウスホイールをスクロールして選択 # で持ちます # -gameTip.hotbar.touch=ホットバーで # をタップして持ちます # -gameTip.hotbar.controller=ホットバーで # をタップして持ちます # +gameTip.hotbar.selection.mouse=スクロールまたは %s を押してアイテムを持つ ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=ホットバーでアイテムをタップして持つ # gameTip.breakBlock.mouse=左長押しでブロックを壊します # gameTip.breakBlock.touch=タップと長押しでブロックを壊します # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=スニーク中です! 端から落ちることはありま gameTip.sneak.touch=スニーク中なので、端から落ちることはありません # gameTip.sneak.controller=スニーク中なので、端から落ちることはありません # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=作業台を置いてください。手に持ってクリックして設置します # gameTip.placeCraftingTable.touch=地面をタップして作業台を設置します # gameTip.placeCraftingTable.controller=作業台を置くには、持った後に地面をタップします # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=レビューしていただきありがとうござ gui.submitFeedback.failure.status.unprocessableEntity=フィードバックを送ろうとしようとしているアイテムを所有していません。(エラー コード: %d) # gui.submitFeedback.failure.status.tooManyRequests=送信したレビューが多すぎます。後でもう一度やり直してください。(エラー コード: %d) # gui.submitFeedback.failure.status.other=現在レビューを送信できません。しばらくしてからもう一度お試しください。(エラー コード: %d) # +gui.togglable_slot=押すとスロットを無効にします # gui.playOffline=オフラインでプレイ # gui.signIn=サインイン # gui.genericNetworkError=問題が発生しました。インターネット接続を確認してください。 # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=Minecraft のゲーム内通貨、Minecoins で可能 howtoplay.minecoins.text.2=引き換えると、Minecoins は Microsoft アカウントにリンクされるので、他の対応デバイスでもコインや購入した商品にアクセスできます。 # howtoplay.minecoins.button.text.1=Minecoin を入手 # howtoplay.minecoins.header.1=免責事項 # -howtoplay.minecoins.text.3=*Minecoins を利用するには、Minecraft マーケットプレイスで Betlock版 Minecraf を入手する必要があります。Minecoins は Sony PlayStation には対応していません。互換性の情報については、minecraft.net/minecoins をご覧ください。  # +howtoplay.minecoins.text.3=*Minecoins を利用するには、Minecraft マーケットプレイスで Betlock版 Minecraf を入手する必要があります。Minecoins は Sony PlayStation® には対応していません。互換性に関する情報は、minecraft.net/minecoins をご覧ください。  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=採掘 # @@ -4145,7 +4170,7 @@ level.editor.export.failed=プロジェクト エクスポート失敗 # level.editor.import.failed=プロジェクト インポート失敗 # level.editor.import.failed.incompatibleEdition=プロジェクト インポート失敗: 対応していないファイル形式です # -inbox.invite.title=Realms への招待 # +inbox.invite.title=Realm の招待先 # invite.clear=選択を解除 # invite.send=%d 個の招待を送信 # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=右下半に赤色の斜め分割 # item.banner.diagonal_up_right.silver=右下半に薄灰色の斜め分割 # item.banner.diagonal_up_right.white=右下半に白色の斜め分割 # item.banner.diagonal_up_right.yellow=右下半に黄色の斜め分割 # +item.banner.flow.black=黒のフロー # +item.banner.flow.blue=青のフロー # +item.banner.flow.brown=茶色のフロー # +item.banner.flow.cyan=水色のフロー # +item.banner.flow.gray=灰色のフロー # +item.banner.flow.green=緑ののフロー # +item.banner.flow.lightBlue=空色のフロー # +item.banner.flow.lime=黄緑のフロー # +item.banner.flow.magenta=赤紫のフロー # +item.banner.flow.orange=オレンジのフロー # +item.banner.flow.pink=ピンクのフロー # +item.banner.flow.purple=紫のフロー # +item.banner.flow.red=赤のフロー # +item.banner.flow.silver=薄灰色のフロー # +item.banner.flow.white=白のフロー # +item.banner.flow.yellow=黄色のフロー # item.banner.flower.black=黒色の花模様 # item.banner.flower.blue=青色の花模様 # item.banner.flower.brown=茶色の花模様 # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=下に白色のグラデーション # item.banner.gradient_up.yellow=下に黄色のグラデーション # item.banner.gray.name=灰色の旗 # item.banner.green.name=緑色の旗 # +item.banner.guster.black=黒のガスター # +item.banner.guster.blue=青のガスター # +item.banner.guster.brown=茶色のガスター # +item.banner.guster.cyan=水色のガスター # +item.banner.guster.gray=灰色のガスター # +item.banner.guster.green=緑のガスター # +item.banner.guster.lightBlue=空色のガスター # +item.banner.guster.lime=黄緑のガスター # +item.banner.guster.magenta=赤紫のガスター # +item.banner.guster.orange=オレンジのガスター # +item.banner.guster.pink=ピンクのガスター # +item.banner.guster.purple=紫のガスター # +item.banner.guster.red=赤のガスター # +item.banner.guster.silver=薄灰色のガスター # +item.banner.guster.white=白のガスター # +item.banner.guster.yellow=黄色のガスター # item.banner.half_horizontal.black=上半に黒色の横分割 # item.banner.half_horizontal.blue=上半に青色の横分割 # item.banner.half_horizontal.brown=上半に茶色の横分割 # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=アカシアのボート # item.boat.big_oak.name=ダークオークのボート # item.bone.name=骨 # item.book.name=本 # +item.breeze_rod.name=ブリーズ ロッド # item.chainmail_boots.name=チェーンブーツ # item.leather_boots.name=革のブーツ # item.diamond_boots.name=ダイヤモンドのブーツ # @@ -4991,6 +5049,7 @@ item.comparator.name=レッドストーンコンパレーター # item.compass.name=コンパス # item.lodestonecompass.name=ロードストーンコンパス # item.cookie.name=クッキー # +item.copper_door.name=銅のドア # item.crossbow.name=クロスボウ # item.diamond.name=ダイヤモンド # item.repeater.name=レッドストーンリピーター # @@ -5038,6 +5097,7 @@ tile.end_rod.name=エンドロッド # item.ender_eye.name=エンダーアイ # item.ender_pearl.name=エンダーパール # item.experience_bottle.name=エンチャントの瓶 # +item.exposed_copper_door.name=風化した銅のドア # item.feather.name=羽根 # item.fermented_spider_eye.name=発酵したクモの目 # item.fireball.name=ファイヤーチャージ # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=金のレギンス # item.iron_leggings.name=鉄のレギンス # item.nautilus_shell.name=オウムガイの殻 # item.heart_of_the_sea.name=海洋の心 # +item.mace.name=メイス # item.magma_cream.name=マグマクリーム # item.map.name=地図 # item.map.exploration.mansion.name=森林探検家の地図 # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=サバンナの村の地図 # item.map.exploration.village_desert.name=砂漠の村の地図 # item.map.exploration.jungle_temple.name=ジャングル探検家の地図 # item.map.exploration.swamp_hut.name=湿地帯探検家の地図 # +item.map.exploration.trial_chambers.name=トライアル探検家の地図 # item.melon.name=スイカ # item.milk.name=ミルク # item.minecart.name=トロッコ # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=チェスト付きトロッコ # item.command_block_minecart.name=コマンドブロック付きトロッコ # item.minecartFurnace.name=かまど付きトロッコ # item.hopper_minecart.name=ホッパー付きトロッコ # +item.ominous_bottle.name=不気味なビン # +item.ominous_trial_key.name=不気味なチャレンジ キー # +item.oxidized_copper_door.name=酸化した銅のドア # item.tnt_minecart.name=TNT付きのトロッコ # item.pitcher_pod.name=ウツボカズラのさや # item.torchflower_seeds.name=トーチフラワーの種 # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=エージェントのスポーン エッグ # item.spawn_egg.entity.armadillo.name=アルマジロのスポーン エッグ # item.spawn_egg.entity.axolotl.name=ウーパールーパーのスポーン エッグ # item.spawn_egg.entity.bee.name=ハチのスポーン エッグ # +item.spawn_egg.entity.bogged.name=沼地のスポーンエッグ # +item.spawn_egg.entity.breeze.name=ブリーズのスポーン エッグ # item.spawn_egg.entity.hoglin.name=ホグリンのスポーン エッグ # item.spawn_egg.entity.cat.name=ネコのスポーン エッグ # item.spawn_egg.entity.chicken.name=ニワトリのスポーン エッグ # @@ -5275,9 +5342,12 @@ item.record_stal.desc=C418 - stal # item.record_strad.desc=C418 - strad # item.record_wait.desc=C418 - wait # item.record_ward.desc=C418 - ward # -item.record_pigstep.desc=レナ・レーン - Pigstep # -item.record_otherside.desc=レナ・レーン - otherside # -item.record_relic.desc=アーロン・チェロフ - Relic # +item.record_pigstep.desc=Lena Raine - Pigstep # +item.record_otherside.desc=Lena Raine - otherside # +item.record_relic.desc=Aaron Cherof - Relic # +item.record_creator.desc=レナ レイン - クリエーター # +item.record_creator_music_box.desc=レナ レイン - クリエーター (オルゴール) # +item.record_precipice.desc=アーロン・チェロフ - 断崖 # item.redstone.name=レッドストーンダスト # item.reeds.name=サトウキビ # item.kelp.name=コンブ # @@ -5324,6 +5394,12 @@ item.iron_sword.name=鉄の剣 # item.stone_sword.name=石の剣 # item.wooden_sword.name=木の剣 # item.unbreakable=不可壊 # +item.waxed_copper_door.name=錆止めされた銅のドア # +item.waxed_exposed_copper_door.name=錆止めされた風化した銅のドア # +item.waxed_oxidized_copper_door.name=錆止めされた酸化した銅のドア # +item.waxed_weathered_copper_door.name=錆止めされた錆びた銅のドア # +item.weathered_copper_door.name=錆びた銅のドア # +item.wind_charge.name=風力チャージ # item.wheat.name=小麦 # item.wolf_armor.name=オオカミの防具 # item.writable_book.name=本と羽ペン # @@ -5331,6 +5407,7 @@ item.written_book.name=記入済みの本 # item.glowstone_dust.name=グロウストーンダスト # item.shulker_shell.name=シュルカーの殻 # item.totem.name=不死のトーテム # +item.trial_key.name=チャレンジ キー # item.turtle_helmet.name=カメの甲羅 # item.turtle_shell_piece.name=カメの甲羅 # item.phantom_membrane.name=ファントムの皮膜 # @@ -5338,8 +5415,10 @@ item.sweet_berries.name=スイートベリー # item.suspicious_stew.name=怪しげなシチュー # item.banner_pattern.bricks=レンガ模様 # item.banner_pattern.creeper=クリーパー模様 # +item.banner_pattern.flow=フロー # item.banner_pattern.flower=花模様 # item.banner_pattern.globe=地球の模様 # +item.banner_pattern.guster=ガスター # item.banner_pattern.name=旗の模様 # item.banner_pattern.piglin=ブタの鼻の模様 # item.banner_pattern.skull=骸骨模様 # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=旗の模様 # itemGroup.name.netherWartBlock=ネザーウォート # itemGroup.name.candles=キャンドル # itemGroup.name.goatHorn=ヤギの角 # +itemGroup.name.compounds=化合物 # +itemGroup.name.products=製品 # jigsaw.title.target_pool=ターゲット プール: # jigsaw.title.name=名前: # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=教室の設定 # menu.serverStore=%s ストア # menu.serverGenericName=サーバー # menu.play=プレイ # +menu.profile=プロフィール # menu.playdemo=デモワールドで遊ぶ # menu.playOnRealms=Realm で遊ぶ # menu.quickplay=クイック プレイ # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=始めるキャラクターを選択しよう # menu.character_cast.preview_title=キャストに会おう! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Realms サーバー ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=サーバー # merchant.deprecated=他の取引をして解除してください! # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=フル キーボード ゲームプレイ # options.fullKeyboardLayout=フル キーボード レイアウト # options.improvedInputResponsePlaceholder=入力応答の改善 # options.improvedInputResponsePlaceholder.tooltip=入力してから画面に表示されるまでの遅延を減らします。この設定はバッテリーの消費電力が増える可能性があります。 # +options.dynamicTexturesToggle=テクスチャ制限の解除 # +options.dynamicTexturesToggle.tooltip=これをオンからオフに切り替えるには、ゲームの再起動が必要です。テクスチャの多い複数の追加コンテンツやリソースパックを使用すると、不安定になる場合があります。 # +options.dynamicTextures.popUp=[テクスチャ制限の解除] をオンにした場合、オフにするにはゲームを再起動する必要があります。 # +options.dynamicTextures.popUp.title=よろしいですか? # options.fullscreen=フルスクリーン # options.gamepadcursorsensitivity=コントローラー カーソルの感度 # options.gamertag=ゲーマータグ: # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=接続 # options.creator.debuggerListen=聞く # options.creator.debuggerHost=ホスト # options.creator.debuggerPort=ポート # +options.creator.watchdogHeading=スクリプト ウォッチドッグ設定 # +options.creator.watchdogSlowWarning=スロー スクリプト警告 # +options.creator.watchdogSlowThreshold=平均以上 # +options.creator.watchdogSlowFormat=%s ミリ秒 # +options.creator.watchdogSlowFormatDefault=%s ミリ秒 (デフォルト) # +options.creator.watchdogSpikeWarning=スクリプト スパイク警告 # +options.creator.watchdogSpikeThreshold=スパイク超過 # +options.creator.watchdogSpikeFormat=%s ミリ秒 # +options.creator.watchdogSpikeFormatDefault=%s ミリ秒 (デフォルト) # +options.creator.watchdogHangThreshold=後に割り込む # +options.creator.watchdogHangFormat=%s 秒 # +options.creator.watchdogHangFormatDefault=%s 秒 (デフォルト) # options.vr_classic_box_selection=選択範囲をハイライト # options.hidegamepadcursor=コントローラー カーソルを非表示 # options.hidegui=GUI を隠す # @@ -6662,7 +6761,7 @@ options.makeBackup=世界のバックアップ コピーを作成 # options.managePrivacy=プライバシーの設定を管理するには、Web ブラウザーから https://account.xbox.com/Settings にアクセスしてください。 ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Microsoft アカウントの紐づけ解除 # options.unlink_msa.confirm.title=Microsoft アカウントの紐づけを解除しますか? # -options.unlink_msa.confirm.warning=警告: 紐づけを解除すると、今後はアカウント %s の進行状況や購入情報を 「PlayStation 4」本体に保存できなくなります。 # +options.unlink_msa.confirm.warning=警告: 紐づけを解除すると、今後は PlayStation®4 本体 の進行状況や購入情報を アカウント %s に保存できなくなります。 #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=このゲーム内から Microsoft アカウントのリンクを解除すると、このプラットフォーム上で、この Microsoft アカウントを使用しているすべての Minecraft ゲームに影響します。 # options.unlink_msa.confirm.checkbox1=他のプラットフォームでプレイする際、ゲーム内ストアのコンテンツにアクセスできなくなります。 # options.unlink_msa.confirm.checkbox2=他のプラットフォームのフレンドとクロスプラットフォーム ゲームをプレイできなくなります。 # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=世界を読み込んで操作方法を hudScreen.controlCustomization.tooltip.notouch=タッチ デバイスを使って操作方法をカスタマイズする # hudScreen.controlCustomization.tooltip.alreadycustomizing=タッチ操作のカスタマイズ画面はすでに開いています # hudScreen.controlCustomization.tooltip.alive=コントロールをカスタマイズするには、プレイヤーが生きている必要があります。 # +hudScreen.daysPlayed=プレイ日数: %s # +hudScreen.daysPlayed.overflow=数が多すぎます! # playscreen.fileSize.MB=MB # playscreen.fileSize.GB=GB # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=治癒のスプラッシュポーション # potion.heal.linger.name=治癒の残留ポーション # potion.healthBoost=体力増強 # potion.hunger=空腹 # +potion.infested.linger.name=虫食いの残留ポーション # +potion.infested.name=虫食いのポーション # +potion.infested.splash.name=虫食いのスプラッシュ ポーション # +potion.infested=虫食い # potion.invisibility=透明化 # potion.invisibility.name=透明化のポーション # potion.invisibility.splash.name=透明化のスプラッシュポーション # @@ -7067,6 +7172,10 @@ potion.nightVision=暗視 # potion.nightVision.name=暗視のポーション # potion.nightVision.splash.name=暗視のスプラッシュポーション # potion.nightVision.linger.name=暗視の残留ポーション # +potion.oozing.linger.name=滲出の残留ポーション # +potion.oozing.name=滲出のポーション # +potion.oozing.splash.name=滲出のスプラッシュ ポーション # +potion.oozing=滲出 # potion.poison=毒 # potion.poison.name=毒のポーション # potion.poison.splash.name=毒のスプラッシュポーション # @@ -7108,6 +7217,14 @@ potion.weakness=弱体化 # potion.weakness.name=弱化のポーション # potion.weakness.splash.name=弱化のスプラッシュポーション # potion.weakness.linger.name=弱化の残留ポーション # +potion.weaving.linger.name=織物の残留ポーション # +potion.weaving.name=織物のポーション # +potion.weaving.splash.name=織物のスプラッシュ ポーション # +potion.weaving=機織り # +potion.windCharged.linger.name=ウィンドチャージの残留ポーション # +potion.windCharged.name=ウィンドチャージのポーション # +potion.windCharged.splash.name=ウィンドチャージのスプラッシュ ポーション # +potion.windCharged=ウィンドチャージ # potion.wither=ウィザー # potion.wither.name=衰弱のポーション # potion.wither.splash.name=衰弱のスプラッシュ ポーション # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=パックのディレクトリに問 progressScreen.message.forbiddenContent=適用されているパックの 1 つ以上を所有していません # progressScreen.message.loadingSplitScreenAppearances=画面分割表示の読み込み中... # progressScreen.message.finishedLoadingSplitScreenAppearances=画面分割表示の読み込みが完了しました。 # -progressScreen.message.modifiedWorldWarning=この世界は、変更されていない世界とは見た目や動作が異なる場合があり、実績を獲得できません。 # +progressScreen.message.modifiedWorldWarning.1=あなたは追加コンテンツのある世界で遊んでいます! これにより、Minecraft の世界に新しい機能が追加されます。 # +progressScreen.message.modifiedWorldWarning.2=1 つだけで終わらないでください! 一度に複数の追加コンテンツを 1 つの世界に読み込めます。 # +progressScreen.message.modifiedWorldWarning.3=上級者向けのヒント: リソースパックは、さまざまなブロックやエンティティのテクスチャを変更できます。 # +progressScreen.message.modifiedWorldWarning.4=上級者向けのヒント: ビヘイビアーパックは、さまざまなアイテム、エンティティ、ブロックの動作を変更できます。 # +progressScreen.message.modifiedWorldWarning.5=上級者向けのヒント: 追加コンテンツには、ビヘイビアーパックとリソースパックの両方が含まれています。追加コンテンツが機能するために、両方のパックがアクティブになっていることを確認してください! # +progressScreen.message.modifiedWorldWarning.6=追加コンテンツは、新しいブロックやアイテム、モブを世界に追加します。 # +progressScreen.message.modifiedWorldWarning.7=世界と追加コンテンツの関係は複雑です! 素晴らしい結果になる組み合わせもあれば、奇妙な結果になる組み合わせもあるでしょう。 # +progressScreen.message.modifiedWorldWarning.8=追加コンテンツが多いほど楽しくなりますが、ゲームの読み込みに時間がかかる場合があります。 # progressScreen.dialog.title.resourcePack=リソースパックをダウンロードしますか? # progressScreen.dialog.title.behaviorAndResourcePack=世界のビヘイビアーパックとリソースパックをダウンロードしますか? # progressScreen.dialog.title.onlyBehavior=世界のビヘイビアーパックをダウンロードしますか? # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=世界をアップデートしますか? # resourcePack.warning.add.body=この世界は、変更されていない世界とは見た目や動作が異なる場合があります。続ける前に、世界のコピーを保存してください。 # resourcePack.warning.add.button.cancel=パックを追加しない # resourcePack.warning.add.button.ok=それでもパックを追加する # +resourcePack.warnings.contentKeyErrorBody=パック%sの読み込み中に問題が発生しました。 # +resourcePack.warnings.contentKeyErrorBodyMultiple=パック%sの読み込み中に問題が発生しました。 # +resourcePack.warnings.contentKeyErrorTitle=エラー! # resourcePack.warning.remove.title=これは危険です! # resourcePack.warning.remove.body=世界をプレイした後にパックを追加したり削除したりすると世界が破損して、これまでに作成したものが失われる可能性があります。 # resourcePack.warning.remove.button.cancel=パックを保持する # @@ -7557,7 +7684,9 @@ item.crimson_hanging_sign.name=真紅の吊り看板 # item.danger_pottery_sherd.name=脅威の壺の欠片 # item.dark_oak_hanging_sign.name=ダークオークの吊り看板 # item.explorer_pottery_sherd.name=探検家の壺の欠片 # +item.flow_pottery_sherd.name=フローの壺の欠片 # item.friend_pottery_sherd.name=友の壺の欠片 # +item.guster_pottery_sherd.name=ガスターの壺の欠片 # item.heart_pottery_sherd.name=ハートの壺の欠片 # item.heartbreak_pottery_sherd.name=割れたハートの壺の欠片 # item.howl_pottery_sherd.name=遠吠えの壺の欠片 # @@ -7568,6 +7697,7 @@ item.mourner_pottery_sherd.name=哀悼者の壺の欠片 # item.oak_hanging_sign.name=オークの吊り看板 # item.plenty_pottery_sherd.name=富の壺の欠片 # item.prize_pottery_sherd.name=宝物の壺の欠片 # +item.scrape_pottery_sherd.name=スクレイプの壺の欠片 # item.sheaf_pottery_sherd.name=麦束の壺の欠片 # item.shelter_pottery_sherd.name=木陰の壺の欠片 # item.skull_pottery_sherd.name=頭蓋骨の壺の欠片 # @@ -7584,7 +7714,7 @@ item.spawn_egg.entity.camel.name=ラクダのスポーン エッグ # item.spruce_hanging_sign.name=トウヒの吊り看板 # item.warped_hanging_sign.name=歪んだ吊り看板 # itemGroup.name.hanging_sign=吊り看板 # -itemGroup.name.potterySherds=陶磁器の破片 # +itemGroup.name.potterySherds=壺の欠片 # itemGroup.name.smithing_templates=鍛冶テンプレート # tile.bamboo_block.name=竹ブロック # tile.bamboo_button.name=竹のボタン # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=サクラの階段 # tile.cherry_trapdoor.name=サクラのトラップドア # tile.cherry_wood.name=サクラの木 # tile.chiseled_bookshelf.name=模様入りの本棚 # +tile.chiseled_tuff.name=模様入り凝灰岩 # +tile.chiseled_tuff_bricks.name=模様入り凝灰岩のレンガ # tile.decorated_pot.name=飾り壺 # tile.pink_petals.name=桃色の花びら # tile.stripped_bamboo_block.name=表皮を剥いだ竹ブロック # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=ヴェックス風の装飾 # trim_pattern.ward.name=監獄風の装飾 # trim_pattern.wayfinder.name=先駆者風の装飾 # trim_pattern.wild.name=密林風の装飾 # +trim_pattern.bolt.name=ボルト風の装飾 # +trim_pattern.flow.name=フロー風の装飾 # upgrade.netherite_upgrade.name=ネザライト強化 # storageManager.mainSizeLabel=%s - 1 アイテム # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=世界テンプレートを削除しますか? # selectTemplate.delete=削除 # selectTemplate.myTemplates=所持している世界テンプレート # selectTemplate.realmsPlus=おすすめの Realms Plus テンプレート # -selectTemplate.marketplacePass=Marketplace Pass でおすすめのテンプレート #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=Marketplace Pass でおすすめのコンテンツ #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=インポートされたテンプレート # selectTemplate.download=ダウンロード # selectTemplate.noTemplates=このデバイスには世界のテンプレートがありません。 # -selectTemplate.suggestedContent.title=マーケットプレイスでおすすめのテンプレート # +selectTemplate.suggestedContent.title=マーケットプレイスでおすすめのコンテンツ # selectTemplate.suggestedContent.button=他のテンプレ―トを探す # selectTemplate.createdBy=作成者: %s # selectTemplate.inventory=マイ マーケットプレイスパック # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=接続中に問題が発生しました。もう store.loading.error.issues=現在、マーケットプレイスで問題が発生しています。後ほど接続をお試しください。 # store.loading.error.internetDown=インターネット接続を検出できません。 # store.loading.error.account=アカウントに問題があります。しばらくしてから、もう一度お試しください。問題が解決しない場合は、サポートにお問い合わせください。 # +store.loading.error.account.banned=アカウントの停止が解除されるまで、マーケットプレイスをご利用いただけません。 # store.giftPromo.day= %s 日 ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=獲得済み # @@ -8409,6 +8544,13 @@ store.mashup.count.world=1 個の世界 # store.mashup.count.worlds=%s 個の世界 #number of worlds # store.mashup.count.addonPack=1 アドオン # store.mashup.count.addonPacks=%s アドオン #number of addons # +store.mashup.count.mashup=マッシュアップ # +store.mashup.hover.label.addonPack=追加コンテンツはどの世界にも適用できます。 # +store.mashup.hover.label.world=手作りの Minecraft マップ。 # +store.mashup.hover.label.skin=キャラクターに新しいルックスを適用します。 # +store.mashup.hover.label.texturePack=世界やゲーム インターフェースに新しいビジュアルを追加します。 # +store.mashup.hover.label.mashup.lineOne=異なる種類のコンテンツの組み合わせ。 # +store.mashup.hover.label.mashup.lineTwo=このマッシュアップの内容: # store.addon.activateAddonPack=アドオンを有効化! # store.addon.newOrExistingTitle=追加する場所は? # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=ボード # tile.chest.name=チェスト # tile.ender_chest.name=エンダーチェスト # tile.jigsaw.name=ジグソーブロック # +tile.heavy_core.name=ヘビー コア # tile.honey_block.name=ハチミツブロック # tile.honeycomb_block.name=ハニカムブロック # tile.lodestone.name=ロードストーン # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=磨かれたブラックストーンのハー tile.polished_blackstone_pressure_plate.name=磨かれたブラックストーンの感圧板 # tile.polished_blackstone_button.name=磨かれたブラックストーンのボタン # tile.polished_blackstone_wall.name=磨かれたブラックストーンの塀 # +tile.polished_tuff.name=磨かれた凝灰岩 # +tile.polished_tuff_slab.name=磨かれた凝灰岩のハーフブロック # +tile.polished_tuff_stairs.name=磨かれた凝灰岩の階段 # +tile.polished_tuff_wall.name=磨かれた凝灰岩の壁 # tile.soul_campfire.name=魂の焚き火 # tile.chiseled_nether_bricks.name=模様入りのネザーレンガ # tile.cracked_nether_bricks.name=ひび割れたネザーレンガ # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=黄色のテラコッタ # tile.structure_block.name=ストラクチャーブロック # structure_block.waterlog_block=浸水ブロック # tile.structure_void.name=ストラクチャーヴォイド # +tile.trial_spawner.name=チャレンジ スポナー # +tile.vault.name=金庫 # tile.wool.black.name=黒色の羊毛 # tile.wool.blue.name=青色の羊毛 # tile.wool.brown.name=茶色の羊毛 # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=シダ # tile.tallgrass.grass.name=草 # tile.tallgrass.name=草 # tile.tallgrass.shrub.name=低木 # +tile.tuff_brick_slab.name=凝灰岩のレンガのハーフブロック # +tile.tuff_brick_stairs.name=凝灰岩のレンガの階段 # +tile.tuff_brick_wall.name=凝灰岩のレンガの壁 # +tile.tuff_bricks.name=凝灰岩のレンガ # +tile.tuff_slab.name=凝灰岩のハーフブロック # +tile.tuff_stairs.name=凝灰岩の階段 # +tile.tuff_wall.name=凝灰岩の壁 # tile.seagrass.seagrass.name=海草 # tile.sea_pickle.name=シーピクルス # tile.turtle_egg.name=ウミガメのタマゴ # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=赤色のカーペット # tile.carpet.silver.name=薄灰色のカーペット # tile.carpet.white.name=白色のカーペット # tile.carpet.yellow.name=黄色のカーペット # +tile.crafter.name=クラフター # tile.crafting_table.name=作業台 # tile.glazedTerracotta.white.name=白色の彩釉テラコッタ # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=錆止めされた切り込み入りの銅のハ tile.waxed_exposed_cut_copper_slab.name=錆止めされた風化した切り込み入りの銅のハーフブロック # tile.waxed_weathered_cut_copper_slab.name=錆止めされた錆びた切り込み入りの銅のハーフブロック # tile.waxed_oxidized_cut_copper_slab.name=錆止めされた酸化した切り込み入りの銅のハーフブロック # + +tile.chiseled_copper.name=模様入りの銅 # +tile.exposed_chiseled_copper.name=露出した模様入りの銅 # +tile.oxidized_chiseled_copper.name=酸化した模様入りの銅 # +tile.waxed_chiseled_copper.name=磨いた模様入りの銅 # +tile.waxed_exposed_chiseled_copper.name=錆止めされた風化した模様入りの銅 # +tile.waxed_oxidized_chiseled_copper.name=磨いた酸化した模様入りの銅 # +tile.waxed_weathered_chiseled_copper.name=磨いた風化した模様入りの銅 # +tile.weathered_chiseled_copper.name=風化した模様入りの銅 # + +tile.copper_bulb.name=銅の電球 # +tile.exposed_copper_bulb.name=風化した銅の電球 # +tile.oxidized_copper_bulb.name=酸化した銅の電球 # +tile.waxed_copper_bulb.name=錆止めされた銅の電球 # +tile.waxed_exposed_copper_bulb.name=錆止めされた風化した銅の電球 # +tile.waxed_oxidized_copper_bulb.name=錆止めされた酸化した銅の電球 # +tile.waxed_weathered_copper_bulb.name=錆止めされた錆びた銅の電球 # +tile.weathered_copper_bulb.name=錆びた銅の電球 # + +tile.copper_door.name=銅のドア # +tile.exposed_copper_door.name=風化した銅のドア # +tile.oxidized_copper_door.name=酸化した銅のドア # +tile.waxed_copper_door.name=錆止めされた銅のドア # +tile.waxed_exposed_copper_door.name=錆止めされた風化した銅のドア # +tile.waxed_oxidized_copper_door.name=錆止めされた酸化した銅のドア # +tile.waxed_weathered_copper_door.name=錆止めされた錆びた銅のドア # +tile.weathered_copper_door.name=錆びた銅のドア # + +tile.copper_grate.name=銅の格子 # +tile.exposed_copper_grate.name=風化した銅の格子 # +tile.oxidized_copper_grate.name=酸化した銅の格子 # +tile.waxed_copper_grate.name=錆止めされた銅の格子 # +tile.waxed_exposed_copper_grate.name=錆止めされた風化した銅の格子 # +tile.waxed_oxidized_copper_grate.name=錆止めされた酸化した銅の格子 # +tile.waxed_weathered_copper_grate.name=錆止めされた錆びた銅の格子 # +tile.weathered_copper_grate.name=錆びた銅の格子 # + +tile.copper_trapdoor.name=銅のトラップドア # +tile.exposed_copper_trapdoor.name=風化した銅のトラップドア # +tile.oxidized_copper_trapdoor.name=酸化した銅のトラップドア # +tile.waxed_copper_trapdoor.name=錆止めされた銅のトラップドア # +tile.waxed_exposed_copper_trapdoor.name=錆止めされた風化した銅のトラップドア # +tile.waxed_oxidized_copper_trapdoor.name=錆止めされた酸化した銅のトラップドア # +tile.waxed_weathered_copper_trapdoor.name=錆止めされた錆びた銅のトラップドア # +tile.weathered_copper_trapdoor.name=錆びた銅のトラップドア # + tile.raw_copper_block.name=銅の原石ブロック # tile.raw_iron_block.name=鉄の原石ブロック # tile.raw_gold_block.name=金の原石ブロック # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=幸運の矢 # tipped_arrow.effect.wither=衰弱の矢 # tipped_arrow.effect.turtleMaster=タートルマスターの矢 # tipped_arrow.effect.slowFalling=低速落下の矢 # +tipped_arrow.effect.infested=虫食いの矢 # +tipped_arrow.effect.oozing=滲出の矢 # +tipped_arrow.effect.weaving=織物の矢 # +tipped_arrow.effect.windCharged=ウィンドチャージの矢 # structure_block.title=ストラクチャーブロック # structure_block.structure_name=ストラクチャー名 # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=プレイヤの最新の変更は回 worldError.worldFailedRecovery=回収失敗 # worldError.worldFailedRecoveryText=破損した世界を発見しましたが回復をできませんでした。 # +writeThrottling.osDialog.body=要求された操作の完了には %d 分かかります。この間、デバイスの電源を切らないでください。 # +writeThrottling.osDialog.cancel=操作をキャンセル # +writeThrottling.osDialog.confirm=続ける # +writeThrottling.progressBar.title=データを準備中 # +writeThrottling.progressBar.body=ファイルを準備しています... # + userData.recovered.title=セーブ データの復元完了 # userData.recovered.text=破損したユーザー設定を復元しました。 # userData.recovered.warning=プレイヤの最新の変更は回復中に失われたかもしれません。 # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=チャット メッセージ # xbox.report.area.skin=プレイヤー スキン # xbox.report.area.gameplay=ゲームプレイ # xbox.report.area.ingame=ゲーム内の作品 # -xbox.report.area.other=その他 # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=ネットいじめ # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=残念ながら、接続することがで gathering.connect.title=接続中... # gathering.info.qr.title.onlineService=詳細を見る # gathering.info.qr.body.onlineService.nso=Minecraft のイベントに参加するには、Nintendo Switch Online への加入が必要です。 # -gathering.info.qr.body.onlineService.psn=Minecraft のイベントに参加するには、「PlayStation Plus」にサインインする必要があります。 # +gathering.info.qr.body.onlineService.psn=Minecraft のイベントに参加するには、PlayStation®Plus にサインインする必要があります。 #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=Minecraft のイベントに参加するには、サインインする必要があります。 # gathering.info.qr.title.childAccount=オンラインプレイは許可されていません # gathering.info.qr.body.childAccount=現在のペアレンタル コントロールにより、オンラインでのプレイが制限されています。 # diff --git a/resource_pack/texts/ko_KR.lang b/resource_pack/texts/ko_KR.lang index 243d7ae5e..a91566810 100644 --- a/resource_pack/texts/ko_KR.lang +++ b/resource_pack/texts/ko_KR.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=시드 선택 # accessibility.start.feedback=웹사이트에 피드백 링크 제출하기 # accessibility.start.new=신규 # -accessibility.start.profile=프로필 선택 # accessibility.start.skinPicker=스킨 선택 # accessibility.store.tag=태그 # @@ -1094,10 +1093,6 @@ commands.me.description=본인과 관련된 메시지를 표시합니다. # commands.message.display.incoming=%1$s님의 메시지: %2$s # commands.message.display.outgoing=%1$s님에게 보낸 메시지: %2$s # commands.message.sameTarget=자기 자신에게는 메시지를 보낼 수 없습니다! # -commands.message.warn=§4경고를 받았습니다. 다른 플레이어가 여러분의 행동에 불쾌함을 느꼈을 수 있습니다. 함께 게임을 즐기는 플레이어를 염두에 두고 행동하세요. # -commands.message.toastWarn=Minecraft는 모두를 위한 게임입니다! 커뮤니티 규정에 따라 행동해 주시기 바랍니다. # -commands.warn.invalidWarningLevel=유효하지 않은 경고 수준입니다. # -commands.warn.playerDoesNotExist=플레이어를 찾을 수 없습니다. 유효한 플레이어를 선택하세요. # commands.mobevent.description=실행할 수 있는 몹 이벤트를 제어합니다. # commands.mobevent.eventsEnabledSetToTrue=몹 이벤트가 켜졌습니다. 거짓으로 설정된 개별 이벤트는 실행되지 않습니다. # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=- %s: %d %d %d부터 %d %d %d까지 %s commands.volumearea.entry.withoutIdentifier=- %s: %d %d %d부터 %d %d %d까지 # commands.volumearea.noneExist.currentDimension=현재 차원에 볼륨이 존재하지 않습니다. # commands.volumearea.inUse=%1$d/%2$d 볼륨이 사용 중입니다. # -commands.warn.description=플레이어에게 경고 메시지를 보냅니다. # commands.weather.clear=날씨가 맑아집니다 # commands.weather.description=날씨를 설정합니다. # commands.weather.disabled=이 월드에서는 '날씨 주기'를 사용하지 않습니다. # @@ -1572,6 +1566,7 @@ container.beacon=신호기 # container.brewing=양조대 # container.chest=상자 # container.chestDouble=큰 상자 # +container.crafter=제작자 # container.crafting=제작 # container.creative=아이템 선택 # container.dispenser=디스펜서 # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=동굴과 절벽 # createWorldScreen.cavesandcliffsDescription=새로운 다양한 동굴 생성을 탐색합니다 # createWorldScreen.spectatorMode=관람자 모드 # createWorldScreen.spectatorModeDescription=관람자 모드의 초기 버전을 사용해 보세요. # -createWorldScreen.experimentalCameras=실험 카메라 # -createWorldScreen.experimentalCamerasDescription=예제 카메라 프리셋이 포함되어 있습니다 (카메라 명령어가 더 이상 실험되지 않습니다) # createWorldScreen.recipeUnlocking=제작법 잠금 해제 # createWorldScreen.recipeUnlockingDescription=제작법 잠금 해제 사용 # createWorldScreen.experimentalholiday=홀리데이 크리에이터 기능 # @@ -1907,7 +1900,7 @@ createWorldScreen.worldPreferences=월드 환경 설정 # createWorldScreen.startWithMap=맵 시작 # createWorldScreen.defaultName=내 월드 # createWorldScreen.create=만들기 # -createWorldScreen.createOnRealms=Realms 서버에 생성하기 # +createWorldScreen.createOnRealms=Realm 서버에 생성하기 # createWorldScreen.delete=삭제 # createWorldScreen.deleteWorld=월드 삭제 # createWorldScreen.delete.desc=월드를 영구적으로 삭제합니다. # @@ -1933,7 +1926,7 @@ createWorldScreen.header.general.project=프로젝트 # createWorldScreen.header.general.exportSettings=설정 내보내기 # createWorldScreen.header.general.exportSettings.description=§7일부 기능은 편집 세션 중에 재정의될 수 있지만 내보낼 때는 완전히 적용됩니다. # createWorldScreen.header.local=월드 생성하기 # -createWorldScreen.header.realms=Realms 서버 생성하기 # +createWorldScreen.header.realms=Realm 서버 생성하기 # createWorldScreen.header.realmsReset=Realm을 리셋하시겠습니까? # createWorldScreen.levelName=이름 # createWorldScreen.levelSeed=시드 # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=새로운 월드 생성 중... # createWorldScreen.progress.realms=Realm 초기화 중... # createWorldScreen.seed.desc=시드를 입력해서 같은 지형을 만드십시오. 공백으로 두면 무작위 월드가 생성됩니다. # createWorldScreen.showCoordinates=좌표 보기 # +createWorldScreen.showDaysPlayed=플레이 일수 표시 # createWorldScreen.worldType=월드 유형 # createWorldScreen.randomtickspeed=무작위 시간 속도 # createWorldScreen.randomtickspeed.reset=무작위 시간 속도 초기화 # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=프로젝트 삭제 # createWorldScreen.editor.projectOptionsLabel=프로젝트 옵션 # createWorldScreen.editor.delete.confirm=프로젝트를 영구적으로 삭제하시겠습니까? # createWorldScreen.editor.deleteWarningFormat=정말 "%s"을(를) 삭제하시겠습니까? 이 프로젝트가 완전히 사라집니다! # +createWorldScreen.eduCloud.about.body=파일 이름: '%1$s'%2$s마지막 업데이트: %3$s%4$s다운로드하려면, 확인을 클릭한 다음 다운로드를 클릭하세요.%5$s # +createWorldScreen.eduCloud.about.title=클라우드 월드 파일 정보 # createWorldScreen.eduCloud.delete.confirm=로컬 월드를 삭제할까요? # createWorldScreen.eduCloud.deleteWarningFormat=이 장치에서 '%1$s'을(를) 삭제하시겠습니까?%2$s클라우드 버전 '%3$s'은(는) 영향을 받지 않으며 나중에 다시 동기화할 수 있습니다. # createWorldScreen.experimentalDeferredTechnicalPreview=제작자용 드래곤 기능 렌더링 # @@ -1977,13 +1973,13 @@ crossPlatformToggle.startMenuScreen.enable.line2=크로스 플랫폼 플레이 crossPlatformToggle.startMenuScreen.disable=크로스 플랫폼 플레이 비활성화 # crossPlatformToggle.startMenuScreen.disable.line1=크로스 플랫폼 플레이를 비활성화하시겠습니까? # crossPlatformToggle.startMenuScreen.disable.line2=앞으로 다른 플랫폼에 있는 친구들과 연결되어 플레이할 수 없게 됩니다. # -crossPlatformToggle.crossPlatformDisabled.friends=주 메뉴에서 크로스 플랫폼 플레이를 활성화하여 Realms나 LAN 게임에 참가하여 모든 Minecraft 친구들과 플레이할 수 있게 합니다. # +crossPlatformToggle.crossPlatformDisabled.friends=주 메뉴에서 크로스 플랫폼 플레이를 활성화하여 Realm 또는 LAN 게임에 참가하여 모든 Minecraft 친구들과 플레이할 수 있게 합니다. # crossPlatformToggle.crossPlatformDisabled.invite=주 메뉴에서 크로스 플랫폼 플레이를 활성화하여 다른 플랫폼에 있는 친구들을 초대할 수 있게 합니다. # -crossPlatformToggle.crossPlatformDisabled.realms=주 메뉴에서 크로스 플랫폼 플레이를 활성화하여 Realms에 참가할 수 있게 합니다. # +crossPlatformToggle.crossPlatformDisabled.realms=주 메뉴에서 크로스 플랫폼 플레이를 활성화하여 Realm에 참가할 수 있게 합니다. # crossPlatformToggle.crossPlatformDisabled.servers=주 메뉴에서 크로스 플랫폼 플레이를 활성화하여 서버를 추가하거나 서버에 참가할 수 있게 합니다. # crossPlatformToggle.crossPlatformDisabled.multiplayerSettings=주 메뉴에서 크로스 플랫폼 플레이를 활성화하여 다른 플랫폼에 있는 친구들과 함께 플레이할 수 있게 합니다. # -realmsPendingInvitationsScreen.pendingInvitations=Realms 맴버십 초대 # +realmsPendingInvitationsScreen.pendingInvitations=Realm 멤버십 초대 # realmsPendingInvitationsScreen.noInvites=보류 중인 초대가 없습니다. # realmsPendingInvitationsScreen.fetchingInvites=초대장을 가져오는 중... # realmsPendingInvitationsScreen.decline=거절 # @@ -2012,7 +2008,7 @@ realmsInvitationScreen.blocked=차단됨 # realmsInvitationScreen.myRealm=내 Realm # realmsInvitationScreen.fetchingLink=새 링크를 가져오는 중... # realmsInvitationScreen.fetchingCode=새 초대 코드를 가져 오는 중... # -realmsInvitationScreen.shareTitle=Realms 초대 # +realmsInvitationScreen.shareTitle=Realm 초대 # realmsInvitationScreen.shareText=이 Realm에서 함께 플레이해요! # realmsInvitationScreen.refreshDialogTitle=현재 링크를 비활성화할까요? # realmsInvitationScreen.refreshDialogLabel=현재 링크를 비활성화하고 새로운 링크를 생성합니다. 기존 멤버는 이후에도 계속해서 Realm에 접속할 수 있습니다. # @@ -2066,7 +2062,7 @@ realmsSharingScreen.cantJoinClosedMessage=%s이(가) 닫혀 있습니다. %s님 realmsSharingScreen.failedSignInModalTitle=이 Realm에 참가하려면 로그인하세요. # realmsSharingScreen.failedSignInModalMessage=Realm에 참여하려면 Microsoft 계정에 로그인해야 합니다. 로그인하고 다시 시도하세요. # realmsSharingScreen.invalidPermissionTitle=유효한 권한이 필요합니다 # -realmsSharingScreen.unexpectedServerResponseTitle=Realms 오류 # +realmsSharingScreen.unexpectedServerResponseTitle=Realm 오류 # realmsSharingScreen.unexpectedServerResponseMessage=Realm에 연결하는 중에 문제가 발생했습니다. 다시 시도하세요. # realmsCreateScreen.title.create=Realm 서버 생성 # @@ -2110,14 +2106,14 @@ realmsCreateScreen.offerNotFound.title=상점 연결 끊어짐 # realmsCreateScreen.offerNotFound.content=장치와 상점의 연결이 끊어졌으며 이 혜택을 계속 사용할 수 있는지 확인할 수 없습니다. 인터넷 연결을 확인하거나 나중에 다시 시도하세요. # realmsCreateScreen.offerNotAvailable.title=상점 연결 끊어짐 # realmsCreateScreen.offerNotAvailable.content=장치와 상점의 연결이 끊어졌으며 이 혜택을 계속 사용할 수 있는지 확인할 수 없습니다. 인터넷 연결을 확인하거나 나중에 다시 시도하세요. # -realmsCreateScreen.extendRealms.content=Realms 멤버십을 가능한 만큼 연장했습니다. 지금은 추가 시간을 추가할 수 없습니다. 나중에 다시 시도해 보십시오. # +realmsCreateScreen.extendRealms.content=Realm 멤버십을 가능한 만큼 연장했습니다. 지금은 추가 시간을 추가할 수 없습니다. 나중에 다시 시도해 보세요. # realmsCreateScreen.twoUsers=플레이어 2명 # realmsCreateScreen.tenUsers=플레이어 10명 # -realmsCreateScreen.viewTOS=Minecraft Realms 이용약관을 확인하려면, 웹 브라우저에서 https://www.minecraft.net/eula를 방문하세요. # +realmsCreateScreen.viewTOS=Minecraft Realm 이용 약관을 확인하려면, 웹 브라우저에서 https://www.minecraft.net/eula를 방문하세요. # realmsCreateScreen.viewPrivacyPolicyText=Minecraft Realm에 대한 개인정보 보호정책을 확인하려면 어떤 종류이든 웹 브라우저를 이용하여 https://aka.ms/mcprivacy 링크를 방문하세요. # realmsCreateScreen.waitingPurchase=구매 진행 중! 잠시만 기다려주십시오. # realmsCreateScreen.paymentFailed.title=결제 서비스 # -realmsCreateScreen.paymentFailed.body=지금은 Realms에 연결하고 구매를 완료할 수 없습니다. 나중에 다시 시도해주세요. # +realmsCreateScreen.paymentFailed.body=지금은 Realm에 연결하고 구매를 완료할 수 없습니다. 나중에 다시 시도해 주세요. # realmsCreateScreen.incomplete=미완성 Realm # realmsCreateScreen.incomplete.create.a=이전 작업이 완료되지 않았습니다. 지금 Realm 생성을 완료해 보세요. # realmsCreateScreen.incomplete.create.b=다른 Microsoft 계정으로 Realm을 만들기 시작하신 것 같군요. 이 Microsoft 계정의 소유자로서 해당 Realm 생성을 완료하시겠어요? # @@ -2131,7 +2127,7 @@ realmsCreateScreen.incomplete.override.realm=Realm 갱신 시도 중에 이전 realmsCreateScreen.prepare.store.title=구매 확인 필요 # realmsCreateScreen.prepare.store.body=계속 진행하려면 구매 내역을 확인해야 합니다. 스토어에 로그인해주세요. # realmsCreateScreen.prepare.store.button=상점 로그인 # -realmsCreateScreen.nsoinfotext=Realms를 이용하려면 Nintendo Switch Online을 구독해야 합니다. # +realmsCreateScreen.nsoinfotext=Realm을 이용하려면 Nintendo Switch Online을 구독해야 합니다. # realmsCreateScreen.playNowTitle=지금 Realm에서 플레이하시겠습니까? # realmsCreateScreen.playNowMessage1=이제 친구들을 여러분의 Realm에 초대하여 플레이를 시작하게 할 수 있습니다. # realmsCreateScreen.playNowMessage2=아니면 플레이 화면의 월드 탭에서 Realm을 찾을 수 있습니다. 게임 모드를 변경을 위해 편집하거나 월드를 Realm에 업로드할 수도 있습니다. # @@ -2158,13 +2154,13 @@ realmsConfigurationScreen.resetRealmTryAgain=Realm을 초기화하지 못했습 realmsConfigurationScreen.failedOpenCloseTitle=열기/닫기에 실패했습니다. # realmsConfigurationScreen.failedOpenClose=Realm 열기/닫기에 실패했습니다. 다시 시도하시겠습니까? # -realmsWorld.notAvailable=현재 기기는 Minecraft Realms를 지원하지 않습니다. # +realmsWorld.notAvailable=현재 기기는 Minecraft Realm을 지원하지 않습니다. # realmsWorld.ownerPay=소유자는 월간 요금을 지불하며, 친구들은 무료로 함께할 수 있습니다! # -realmsWorld.realmsDescription=Realms는 친구들과 함께 항상 즐길 수 있는 비공개 Minecraft 월드입니다. # +realmsWorld.realmsDescription=Realm은 친구들과 함께 항상 즐길 수 있는 비공개 Minecraft 월드입니다. # realmsWorld.realmsDescription.paragraph2=Realm 소유자가 부재 중일 때도 플레이가 가능하며 모든 Minecraft 기기에서 플레이할 수 있습니다! # realmsWorld.realmsDescription.paragraph3=오늘 Realm을 살펴보십시오! # -realmsWorld.realmsDescription.Beta.line1=Minecraft 월드를 친구와 간단히 공유할 수 있는 Realms는 Minecraft 베타 버전 이용 중에는 사용할 수 없습니다. # -realmsWorld.realmsDescription.Beta.line2=베타 버전 사용을 중지하고 Realms에 접속하려면 아래를 클릭해 지시 사항을 확인하십시오. # +realmsWorld.realmsDescription.Beta.line1=Minecraft 월드를 친구와 간단히 공유할 수 있는 Realm은 Minecraft 베타 버전 이용 중에는 사용할 수 없습니다. # +realmsWorld.realmsDescription.Beta.line2=베타 버전 사용을 중지하고 Realm에 접속하려면 아래를 클릭해 지시 사항을 확인하십시오. # realmsWorld.newRealm=새 Realm # realmsWorld.connectLive=로그인해 무료로 사용해 보십시오! # realmsWorld.owner=소유자 # @@ -2174,13 +2170,13 @@ realmsWorld.creatingWorld=월드 생성 중 # realmsPlus.popup.top_button_text=추가 정보 # realmsPlus.popup.bottom_button_text=구독 갱신 # -realmsPlus.popup.title=Realms Plus 구독 만료 # -realmsPlus.popup.message=Realms Plus 구독이 만료되었습니다. Realms Plus에서 받은 Realm, 팩 또는 스킨에 다시 접속하려면 구독을 갱신해야 합니다. # +realmsPlus.popup.title=Realm Plus 구독 만료 # +realmsPlus.popup.message=Realm Plus 구독이 만료되었습니다. Realm Plus에서 받은 Realm, 팩 또는 스킨에 다시 접속하려면 구독을 갱신해야 합니다. # -realmsPlusUpgradeNotice.title=Realms Plus에 어서 오세요! # -realmsPlusUpgradeNotice.body=Realms 정기 서비스가 Realms Plus로 업그레이드되었습니다. 이제 마켓플레이스에서 추가 비용 없이 150개 이상의 콘텐츠 팩에 접속할 수 있습니다. 최대 10명의 플레이어가 동시에 플레이할 수 있고 Realm에서 모든 구독자 콘텐츠에 무료로 접속할 수 있습니다! # +realmsPlusUpgradeNotice.title=Realm Plus에 어서 오세요! # +realmsPlusUpgradeNotice.body=Realm 정기 서비스가 Realm Plus로 업그레이드되었습니다. 이제 마켓플레이스에서 추가 비용 없이 150개 이상의 콘텐츠 팩에 접속할 수 있습니다. 최대 10명의 플레이어가 동시에 플레이할 수 있고 Realm에서 모든 구독자 콘텐츠에 무료로 접속할 수 있습니다! # realmsPlusUpgradeNotice.continue=계속하기 # -realmsPlusUpgradeNotice.viewpacks=Realms Plus 팩 보기 # +realmsPlusUpgradeNotice.viewpacks=Realm Plus 팩 보기 # csbCreateScreen.popupTitle=Marketplace Pass #### {StrContains="Marketplace Pass"} csbCreateScreen.viewTOS=Marketplace Pass의 이용 약관을 확인하려면, 아무 웹 브라우저에서 https://aka.ms/MinecraftEULA 링크를 방문하세요. #### {StrContains="Marketplace Pass"} @@ -2269,7 +2265,7 @@ thirdPartyWorld.playNow=지금 플레이하기 # thirdPartyWorld.loadingServers=서버 정보를 가져오고 있습니다. 잠시만 기다려주세요... # thirdPartyWorld.loadingFeaturedServers=서버를 가져오는 중... # -realmsSlotsScreen.description=Realms 서버에 업로드할 월드를 최대 3개 선택하세요. 활성화하거나 편집할 월드를 선택하세요! # +realmsSlotsScreen.description=Realm 서버에 업로드할 월드를 최대 3개 선택하세요. 활성화하거나 편집할 월드를 선택하세요! # realmsSlotsScreen.new=새로운 월드 # realmsSlotsScreen.readyToPlay=플레이 준비 # realmsSlotsScreen.editRealm=Realm 관리 # @@ -2278,7 +2274,7 @@ realmsSlotsScreen.activateWorld=월드 활성화 # realmsSlotsScreen.gamesettings=게임 설정 # realmsSlotsScreen.chooseSlot=슬롯 선택 # realmsSlotsScreen.activateWarning=이 월드를 편집하거나 활성화하면 모든 활동 중인 플레이어를 추방하게 됩니다. 다시 접속할 수 있으니 걱정하지 마세요. # -realmsSlotsScreen.celebrationMap=Realms 기념행사 지도 # +realmsSlotsScreen.celebrationMap=Realm 기념행사 지도 # realmsSettingsScreen.playerCountLabel=크기 # realmsSettingsScreen.forceResourcePackFail=포스 리소스 팩 가격 설정 실패 # @@ -2337,7 +2333,7 @@ realmsSettingsScreen.resetButtonHelperLabel=처음부터 시작하시겠습니 realmsSettingsScreen.maxPlayersLabelFormat=친구 %d명 # realmsSettingsScreen.durationLabelFormat=%d일 남음 # realmsSettingsScreen.subscriptionLabelFormat=%d일마다 갱신 # -realmsSettingsScreen.subscriptionLabelFormatPreview=유료 Realms 구독으로 %d일마다 갱신 # +realmsSettingsScreen.subscriptionLabelFormatPreview=유료 Realm 구독으로 %d일마다 갱신 # realmsSettingsScreen.fetchingWorldInfo=Realm 정보 가져오는 중... # realmsSettingsScreen.updatingWorldInfo=Realm 정보 업데이트 중... # realmsSettingsScreen.resettingRealm=Realm 초기화 중... # @@ -2360,12 +2356,12 @@ realmsSettingsScreen.failedLoadingSubscription=멤버십 불러오기 실패 # realmsSettingsScreen.matchingPurchasePlatformFormat=%s 멤버십에 가입했습니다. # realmsSettingsScreen.nonMatchingPurchasePlatformFormat=%s 멤버십에 가입했습니다. 가입을 연장할 수만 있습니다. # realmsSettingsScreen.nonMatchingPurchasePlatformGeneric=Realm을 구매한 플랫폼의 상점에서 Realm 구독을 관리할 수 있습니다. # -realmsSettingsScreen.consumableToSubscriptionTransitionInfo=지금은 Realm을 연장할 수 없습니다. 이제 Realms 정기 서비스가 시작되었으며, 여러분은 Realm이 %d일 후에 만료되는 즉시 새 정기 서비스를 구매할 수 있습니다. 하지만 걱정하지 마세요! 무료로 14일을 추가해 드리겠습니다. 여러분의 Realm은 온라인 상태로 유지되므로 그때까지 연장해 주시면 됩니다. # +realmsSettingsScreen.consumableToSubscriptionTransitionInfo=지금은 Realm을 연장할 수 없습니다. 이제 Realm 정기 서비스가 시작되었으며, 여러분은 Realm이 %d일 후에 만료되는 즉시 새 정기 서비스를 구매할 수 있습니다. 하지만 걱정하지 마세요! 무료로 14일을 추가해 드리겠습니다. 여러분의 Realm은 온라인 상태로 유지되므로 그때까지 연장해 주시면 됩니다. # realmsSettingsScreen.consumableToSubscriptionGracePeriodInfo=Realm이 만료되었지만 걱정하지 마세요! 추가 %d일 동안 온라인 상태로 유지됩니다. 이제 새로 도입된 자동 갱신 구독을 사용하여 Realm을 연장할 수 있으므로 Realm을 번거롭게 유지하거나 실행할 필요가 없습니다. # realmsSettingsScreen.consumableToSubscriptionTransitionInfoExpired=Realm이 만료되었습니다. 자동 갱신 구독을 사용하여 Realm을 연장하세요. 그러면 Realm을 번거롭게 유지하거나 실행할 필요가 없습니다. # realmsSettingsScreen.upload.worldtoobig=업로드에 실패했습니다. 월드 크기가 최대 업로드 가능 한도인 %s를 초과합니다. # realmsSettingsScreen.download.worldtoobig=다운로드에 실패했습니다. 월드 크기가 최대 다운로드 가능 한도인 %s를 초과합니다. # -realmsSettingsScreen.SubscriptionTimeLeftRefresh=누적 시간을 쌓거나 끄기 전에 Realms 멤버십으로 변경되었거나 탈퇴하면 다음 청구 날짜까지 반영되지 않습니다. # +realmsSettingsScreen.SubscriptionTimeLeftRefresh=누적 시간을 쌓거나 끄기 전에 Realm 멤버십으로 변경되었거나 탈퇴하면 다음 청구 날짜까지 반영되지 않습니다. # realmsSettingsScreen.switchStoreDisplayName=Nintendo eShop # realmsSettingsScreen.iosStoreDisplayName=App Store # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Windows 스토어 # realmsSettingsScreen.xboxOneStoreDisplayName=Xbox 스토어 # realmsSettingsScreen.amazonStoreDisplayName=Amazon Appstore # realmsSettingsScreen.oculusStoreDisplayName=Oculus Store # -realmsSettingsScreen.berwickStoreDisplayName="PlayStation Store" # -realmsSettingsScreen.SonyStoreDisplayName='PlayStation Store' #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=알 수 없는 스토어 # realmsSettingsScreen.extendingRealm=Realm 확장하는 중... # realmsSettingsScreen.offerError.title=구매 보류 중 # @@ -2426,13 +2422,12 @@ xbl.syncIAP.confirmSync.prompt.description.line2=Minecraft 마켓플레이스 xbl.syncIAP.confirmSync.prompt.yes=예, 구매 내용을 동기화합니다. # xbl.marketplace.account.error.body.nobutton=계정에 오류가 발생했습니다. 오류가 해결될 때까지 마켓플레이스를 이용하실 수 없습니다. 이 오류가 며칠 동안 지속된다면 고객 지원에 연락하세요. # -xbl.marketplace.account.banned.body.nobutton=정지가 만료될 때까지 마켓플레이스를 사용할 수 없습니다. # playfab.account.banned.temporary=정지됨 # playfab.account.banned.permanent=차단됨 # playfab.account.banned.title=%s 상태가 되었습니다 # -playfab.account.banned.body=Minecraft 멀티 플레이 이용에서 %s 상태가 되었습니다 . 더 이상 서버에서 플레이하거나, Realms에 입장하거나, 멀티 플레이 게임을 호스트 또는 참가하거나 마켓플레이스를 사용할 수 없습니다. # -playfab.account.banned.body.line1="%s" 사유로 인해 Minecraft 멀티 플레이 이용에서 %s 상태가 되었습니다. 더 이상 서버에서 플레이하거나, Realms에 입장하거나, 멀티 플레이 게임을 호스트 또는 참가하거나 마켓플레이스를 사용할 수 없습니다. # +playfab.account.banned.body=Minecraft 멀티플레이 이용에서 %s 상태가 되었습니다. 더 이상 서버에서 플레이하거나, Realm에 입장하거나, 멀티플레이 게임을 호스트 또는 참가하거나 마켓플레이스를 사용할 수 없습니다. # +playfab.account.banned.body.line1=“%s” 사유로 인해 Minecraft 멀티플레이 이용에서 %s 상태가 되었습니다. 더 이상 서버에서 플레이하거나, Realm에 입장하거나, 멀티플레이 게임을 호스트 또는 참가하거나 마켓플레이스를 사용할 수 없습니다. # playfab.account.banned.body.line2=아래의 '%s'(을)를 클릭하여 커뮤니티 규칙 및 %s에 오류가 있었다고 생각되는 경우 사례 검토 요청을 제출하는 방법을 확인하세요. # playfab.account.banned.body.line3.hour=1시간 후 정지가 해제됩니다. # playfab.account.banned.body.line3.hours=%d시간 후 정지가 해제됩니다. # @@ -2487,19 +2482,27 @@ date.daysAbbreviated1Char=%s일 ### It needs to be abbreviated with no more tha date.hoursAbbreviated1Char=%s시간 ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%s분 ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%s초 ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s일 # +date.hoursPlural=%s시간 # +date.minutesPlural=%s분 # +date.secondsPlural=%s초 # +date.daySingular=%s일 # +date.hourSingular=%s시간 # +date.minuteSingular=%s분 # +date.secondSingular=%s초 # date.timeLeft=%s 남음 # dayOneExperience.carousel.title=새로운 Minecraft에 어서 오세요! # dayOneExperience.carousel.welcome_text=이 새 버전의 Minecraft에는 새롭고 흥미진진한 콘텐츠가 가득합니다. 마켓플레이스를 살펴보고, Realm을 만들고, 크로스 플랫폼 친구들과 함께 온라인으로 플레이하세요! # dayOneExperience.carousel.marketplace=Minecraft 마켓플레이스는 다양한 제작자들이 선보이는 새로운 스킨 팩, 텍스처 팩, 월드 팩과 매시업 팩을 만날 수 있는 곳입니다. # dayOneExperience.carousel.cross_platform=크로스 플랫폼 플레이를 통해 다른 플랫폼의 플레이어와 연결할 수 있습니다. Microsoft 계정으로 로그인하여 모든 Minecraft 친구들과 함께 플레이하세요! # -dayOneExperience.carousel.realms=Realms은 여러분과 친구들을 위해 저희가 운영하는 서버입니다. 소유자가 접속하지 않아도 언제나 온라인으로 유지되는 Minecraft 월드를 간직하세요. # +dayOneExperience.carousel.realms=Realm은 여러분과 친구들을 위해 저희가 운영하는 서버입니다. 소유자가 접속하지 않아도 언제나 온라인으로 유지되는 Minecraft 월드를 간직하세요. # dayOneExperience.carousel.villager=새로운 Minecraft는 새로운 기능, 몹, 아이템, 블록 등등 앞으로의 업데이트를 받을 수 있는 유일한 곳입니다! # dayOneExperience.tab.landing=업데이트 정보 # dayOneExperience.tab.marketplace=마켓플레이스 # dayOneExperience.tab.crossplatform=크로스 플랫폼 플레이 # -dayOneExperience.tab.realms=Realms # +dayOneExperience.tab.realms=Realm # dayOneExperience.tab.villager=더 많은 콘텐츠 # dayOneExperience.finish=완료 # @@ -2665,12 +2668,12 @@ disconnectionScreen.blockMismatch=클라이언트와 서버 간의 블록이 일 disconnectionScreen.cantConnect=월드에 연결할 수 없습니다. # disconnectionScreen.cantConnectToRealm=Realm에 연결할 수 없습니다. # disconnectionScreen.forbidden=Realm을 찾을 수 없거나, 멤버가 아닙니다. # -disconnectionScreen.cantConnectToRealms=Realms에 연결할 수 없습니다. # +disconnectionScreen.cantConnectToRealms=Realm에 연결할 수 없습니다. # disconnectionScreen.crossPlatformDisabled=주 메뉴에서 크로스 플랫폼 플레이를 활성화하여 다른 플랫폼에 있는 친구들과 함께 연결할 수 있게 합니다. 크로스 플레이 없이 다른 친구들과 온라인에서 플레이를 하려면 게임 호스트도 주 메뉴에서 크로스 플레이를 비활성화해야 합니다. # disconnectionScreen.crossPlatformDisabled.header=크로스 플랫폼 플레이가 비활성화되어 있습니다. # -disconnectionScreen.incompatibleRealm=클라이언트가 호환되지 않거나 이전 버전입니다. Realms에 연결하려면 클라이언트를 업데이트해야 합니다. # -disconnectionScreen.realmsAlphaEndedTitle=Realms 알파 테스트가 종료되었습니다. 도와주셔서 감사합니다! # -disconnectionScreen.realmsAlphaEndedMessage=지금은 Realms를 사용할 수 없습니다. # +disconnectionScreen.incompatibleRealm=클라이언트가 호환되지 않거나 이전 버전입니다. Realm에 연결하려면 클라이언트를 업데이트해야 합니다. # +disconnectionScreen.realmsAlphaEndedTitle=Realm 알파 테스트가 종료되었습니다. 도와주셔서 감사합니다! # +disconnectionScreen.realmsAlphaEndedMessage=지금은 Realm을 사용할 수 없습니다. # disconnectionScreen.disconnected=서버와의 연결이 끊겼습니다 # disconnectionScreen.editionMismatch=이 월드는 Minecraft Education에서 저장되었습니다. 월드를 불러올 수 없습니다. # disconnectionScreen.editionMismatchEduToVanilla=연결에 실패했습니다. Minecraft Education이 설치된 서버가 아닙니다. # @@ -2721,8 +2724,8 @@ disconnectionScreen.invalidTenant=월드에 연결할 수 없습니다. 입장 disconnectionScreen.resourcePack=리소스 팩 다운로드 또는 적용 중에 문제가 발생했습니다. # disconnectionScreen.restartClient=연결할 수 없습니다. 클라이언트를 다시 시작하십시오. # disconnectionScreen.badPacket=서버에서 손상된 패킷을 보냈습니다. # -disconnectionScreen.realmsDisabled=Realms를 이용할 수 없습니다. # -disconnectionScreen.realmsDisabledBeta=베타에서는 Realms를 이용할 수 없습니다. # +disconnectionScreen.realmsDisabled=Realm을 이용할 수 없습니다. # +disconnectionScreen.realmsDisabledBeta=베타에서는 Realm을 이용할 수 없습니다. # disconnectionScreen.incompatiblePack=다음과 같은 호환되지 않는 팩이 있기 때문에 월드에 참여할 수 없습니다. 대상 팩: %s # disconnectionScreen.incompatiblePack.memory=장치 메모리가 부족하여 월드에 참여할 수 없습니다. 대상 팩: %s # disconnectionScreen.incompatiblePack.graphics.raytracing=장치에 광선 추적을 지원하는 호환 하드웨어가 없기 때문에 월드에 참여할 수 없습니다. # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=호스트 # edu.worlds_screen.settings=설정 # edu.worlds_screen.download=다운로드 ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=관리 # +edu.worlds_screen.about=정보 # edu.worlds_screen.back=뒤로 # edu.worlds_screen.copy=복사 # edu.worlds_screen.export=내보내기 # @@ -2791,7 +2795,13 @@ edu.templates.empty_banner=다른 Minecraft 에듀케이션 사용자, education edu.pause.multiplayer.disabled=이 수업에서는 멀티 플레이를 이용할 수 없습니다. # effect.badOmen=불길한 조짐 # +effect.infested=감염됨 # +effect.oozing=진흙 # +effect.raid_omen=습격의 징조 # +effect.trial_omen=시련의 조짐 # effect.villageHero=마을의 영웅 # +effect.weaving=베 짜기 # +effect.wind_charged=윈드 차지 # enchantment.arrowDamage=강화 # enchantment.arrowFire=화염 # @@ -2810,6 +2820,9 @@ enchantment.durability=견고 # enchantment.fire=발화 # enchantment.fishingSpeed=미끼 # enchantment.frostwalker=차가운 걸음 # +enchantment.heavy_weapon.breach=위반 # +enchantment.heavy_weapon.density=밀도 # +enchantment.heavy_weapon.windburst=돌풍 # enchantment.knockback=밀치기 # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=박쥐 # entity.bee.name=벌 # entity.blaze.name=블레이즈 # entity.boat.name=보트 # +entity.bogged.name=수렁에 빠짐 # +entity.breeze.name=산들바람 # +entity.breeze_wind_charge_projectile.name=바람 돌격 # entity.cat.name=고양이 # entity.cave_spider.name=동굴 거미 # entity.chicken.name=닭 # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=손재주 없는 주민 # entity.villager_v2.name=주민 # entity.vindicator.name=변명자 # entity.wandering_trader.name=떠돌이 상인 # +entity.wind_charge_projectile.name=바람 돌격 # entity.witch.name=마녀 # entity.wither.name=위더 # entity.wither_skeleton.name=위더 스켈레톤 # @@ -3009,6 +3026,7 @@ feature.ruins=바다 폐허 # feature.pillager_outpost=약탈자 전초 기지 # feature.bastion_remnant=요새 잔해 # feature.ruined_portal=폐허가 된 포탈 # +feature.trial_chambers=시련의 방 # feed.like=좋아요 # feed.manage_feed=피드 관리 # @@ -3035,7 +3053,7 @@ feed.upload=스크린샷을 업로드하고 있습니다... # feed.manage=피드 관리 # feed.share=공유 # feed.addScreenshot=스크린샷 추가 # -feed.shareScreenshot=스크린샷을 찍었습니다. Realms Stories로 이동하여 공유하세요. # +feed.shareScreenshot=스크린샷을 찍었습니다. Realm 스토리로 이동하여 공유하세요. # feed.comments=댓글 # feed.edit=편집 # feed.screenshots=스크린샷 # @@ -3056,7 +3074,7 @@ feed.reportToastMessage=보고된 아이템 # feed.forbidden=타임 라인에 게시할 권한이 없습니다. # feed.failedToPost=게시 실패 # feed.failedToPostDescription=잘못된 스크린샷 # -feed.failedToPostRateLimit=몇 분 후에 다시 등록해보세요. Realms가 따라잡으려고 합니다. # +feed.failedToPostRateLimit=몇 분 후에 다시 등록해보세요. Realm이 따라잡으려고 합니다. # feed.uppload_started=스크린샷을 업로드하는 중입니다. # feed.uppload_success=스크린샷이 업로드되었습니다. # feed.connected=모든 Realm은 여러분의 Microsoft 계정과 함께 클럽에 연결되어 있습니다. # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=:tip_left_stick: 버튼을 움직여 둘러보 gameTip.flying.mouse=비행하려면 :_input_key.jump:을(를) 두 번 탭하세요 # gameTip.flying.touch=비행하려면 점프를 두 번 탭하세요 # +gameTip.flyDown.mouse=아래로 하강하려면 :_input_key.sneak:을(를) 누르세요 # +gameTip.flyUp.mouse=위로 상승하려면 :_input_key.jump:을(를) 누르세요 # + +gameTip.stopFlying.mouse=비행을 멈추려면 :_input_key.jump:을(를) 두 번 누르세요 # +gameTip.stopFlying.touch=하강 버튼을 두 번 눌러서 비행을 멈추세요 # + gameTip.jump.mouse=:_input_key.jump:을(를) 눌러 점프하세요 # +gameTip.swim.mouse=:_input_key.jump:을(를) 길게 눌러 위로 수영하세요 # -gameTip.hotbar.mouse=마우스 휠을 스크롤하여 핫바에서 #을 선택하고 길게 누르기 # -gameTip.hotbar.touch=핫바에서 #을 탭하여 길게 누르기 # -gameTip.hotbar.controller=핫바에서 #을 탭하여 길게 누르기 # +gameTip.hotbar.selection.mouse=스크롤하거나 %s을(를) 눌러 아이템을 집으세요 ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=바로가기 바에 있는 아이템을 눌러서 집으세요 # gameTip.breakBlock.mouse=왼쪽 버튼을 길게 눌러 블록을 부수세요 # gameTip.breakBlock.touch=길게 탭하여 블록 부수기 # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=몰래 들어왔어요! 지금은 가장자리에서 떨어 gameTip.sneak.touch=몰래 들어와서 지금은 가장자리에서 떨어질 수 없어요 # gameTip.sneak.controller=몰래 들어와서 지금은 가장자리에서 떨어질 수 없어요 # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=작업대를 놓으세요. 잡고 클릭하면 배치됩니다 # gameTip.placeCraftingTable.touch=바닥을 탭하여 작업대를 배치하세요 # gameTip.placeCraftingTable.controller=작업대를 잡고 바닥을 탭하여 작업대를 배치합니다. # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=리뷰를 공유해 주셔서 감사합니다! # gui.submitFeedback.failure.status.unprocessableEntity=피드백을 전달하려는 이 아이템을 소유하고 있지 않습니다. (오류 코드: %d) # gui.submitFeedback.failure.status.tooManyRequests=이런! 리뷰를 너무 많이 보냈습니다. 나중에 다시 시도하세요. (오류 코드: %d) # gui.submitFeedback.failure.status.other=지금은 리뷰를 제출할 수 없습니다. 나중에 다시 시도해주세요. (오류 코드: %d) # +gui.togglable_slot=눌러서 슬롯 비활성화 # gui.playOffline=오프라인으로 플레이하기 # gui.signIn=로그인 # gui.genericNetworkError=문제가 발생했습니다. 인터넷 연결 상태를 확인하세요. # @@ -3274,7 +3299,7 @@ howtoplay.category.gettingSettled=정착하기 # howtoplay.category.gettingStarted=시작하기 # howtoplay.category.overworld=지상 A-Z # howtoplay.category.preparingForTheNight=밤 대비 중 # -howtoplay.category.realms=Realms # +howtoplay.category.realms=Realm # howtoplay.category.redstoneEngineering=레드스톤 엔지니어링 # howtoplay.category.standsAndTables=스탠드와 테이블 # howtoplay.category.survivingTheFirstNight=첫 번째 밤에 생존하기 # @@ -3284,7 +3309,7 @@ howtoplay.category.marketplace=마켓플레이스 # howtoplay.addons=애드온 # howtoplay.addons.text.1=추가 콘텐츠는 Minecraft 마켓플레이스에서 커스텀 블록, 아이템, 몹, 제작법 및 다른 게임 콘텐츠를 여러분의 월드에 추가할 수 있는 콘텐츠 유형입니다. # -howtoplay.addons.text.2=추가 콘텐츠를 이용하면 월드 편집 화면과 새로운 월드 생성 화면을 통해 기존의 월드와 Realms의 내용을 변경할 수 있습니다. # +howtoplay.addons.text.2=추가 콘텐츠를 이용하면 월드 편집 화면과 새로운 월드 생성 화면을 통해 기존의 월드와 Realm의 내용을 변경할 수 있습니다. # howtoplay.addons.header.1=추가 콘텐츠 중첩 # howtoplay.addons.text.3=중첩 또는 다수의 추가 콘텐츠를 추가하는 작업은 로딩 시간을 늘리며 예상하지 못한 결과를 초래할 수도 있습니다. # howtoplay.addons.text.4=따라서 추가 콘텐츠를 추가하거나 제거하기 전에 현재의 월드 또는 Realm의 사본을 저장하는 것을 권장합니다. # @@ -3494,18 +3519,18 @@ howtoplay.playingTogether.text.1=Minecraft는 기본적으로 멀티 플레이 howtoplay.playingTogether.header.1=온라인 멀티 플레이 # howtoplay.playingTogether.text.2=모든 새로운 월드는 멀티 플레이가 활성화된 상태로 시작됩니다. §p비공개§f 플레이를 원하시면 월드 설정으로 이동하여 멀티 플레이를 끄세요. # howtoplay.playingTogether.header.2=온라인 게임 참여 # -howtoplay.playingTogether.text.3=다른 사람들과 함께 플레이하려면 §e친구 탭§f으로 이동하여 모든 Realms, 친구, LAN 게임을 확인하세요. 참가하려면 게임을 선택하세요. # +howtoplay.playingTogether.text.3=다른 사람들과 함께 플레이하려면 §e친구 탭§f으로 이동하여 모든 Realm, 친구, LAN 게임을 확인하세요. 참가하려면 게임을 선택하세요. # howtoplay.playingTogether.text.4=온라인 게임을 시작하거나 참여하면 친구가 자신의 친구 탭에서 이를 확인할 수 있습니다. 친구가 게임에 참여하면 그들의 친구들에게도 표시됩니다. # howtoplay.playingTogether.text.5=멀티 플레이를 하려면 인터넷에 연결되어 있는 §eMicrosoft 계정§f에 로그인해야 합니다. # -howtoplay.playingTogether.header.3=Realms - 함께 플레이하기에 가장 좋은 방법 # -howtoplay.playingTogether.text.6=§eRealms§f를 통해 쉽게 친구와 함께 플레이할 수 있습니다. # +howtoplay.playingTogether.header.3=Realm - 함께 플레이하기에 가장 좋은 방법 # +howtoplay.playingTogether.text.6=§eRealm§f을 통해 쉽게 친구와 함께 플레이할 수 있습니다. # howtoplay.playingTogether.text.7=본인과 최대 10명의 친구가 항상 온라인 상태인 월드에 연중무휴로 액세스할 수 있습니다. 탐험하거나, 창의력을 발휘하거나, 마켓플레이스에서 선별된 콘텐츠를 사용해 보세요. # -howtoplay.playingTogether.text.8=유료 Realms 구독권만 있으면 됩니다. 무료 30일 체험판을 사용해 보시겠습니까? # +howtoplay.playingTogether.text.8=유료 Realm 구독만 있으면 됩니다. 무료 30일 체험판을 사용해 보시겠어요? # howtoplay.playingTogether.header.4=플레이어 권한 # howtoplay.playingTogether.text.9=§e플레이어 권한§f을 변경하여 월드에서 사람들이 무엇을 할 수 있는지 결정할 수 있습니다. # howtoplay.playingTogether.text.10=게임 메뉴를 열어 현재 월드에 있는 플레이어 목록을 확인한 다음 권한 아이콘을 선택하여 해당 플레이어의 권한을 조정할 수 있습니다. # -howtoplay.playingTogether.realms=Realms 해보기 # -howtoplay.playingTogether.signIn=Realms를 사용하려면 로그인하세요 # +howtoplay.playingTogether.realms=Realm 해보기 # +howtoplay.playingTogether.signIn=Realm을 사용하려면 로그인하세요 # howtoplay.chalkboard=칠판 # howtoplay.chalkboard.title=플레이 방법: 칠판 # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=Minecraft의 게임 내 화폐인 Minecoins로 가능 howtoplay.minecoins.text.2=Minecoin은 수령하면 Microsoft 계정과 연동되므로 다른 호환되는 기기들에서도 코인 및 구매한 상품을 이용할 수 있습니다! # howtoplay.minecoins.button.text.1=코인 구매하기 # howtoplay.minecoins.header.1=주의 사항 # -howtoplay.minecoins.text.3=*Minecoin을 사용하려면 Minecraft 마켓플레이스가 포함된 Minecraft: Bedrock Edition 버전이 필요합니다. Minecoin은 Sony PlayStation에서 호환되지 않습니다. 호환성 정보는 minecraft.net/minecoins에서 확인하세요.  # +howtoplay.minecoins.text.3=*Minecoin을 사용하려면 Minecraft 마켓플레이스가 포함된 Minecraft: Bedrock Edition 버전이 필요합니다. Minecoin은 Sony PlayStation®에서 호환되지 않습니다. 호환성 정보는 minecraft.net/minecoins에서 확인하세요.  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=채광 # @@ -3949,18 +3974,18 @@ howtoplay.redstone.text.3=레드스톤 가루를 동력원 옆에 뿌리고 작 howtoplay.redstone.text.4=호퍼나 피스톤 등 레드스톤 신호로 작동할 수 있는 아이템과 그 작동 효과는 다양합니다. # howtoplay.redstone.text.5=레드스톤의 활용 방법에는 제한이 없습니다. 자동 농장처럼 플레이에 유용한 무언가를 만들어보세요! # -howtoplay.realms_stories=Realms 스토리 # +howtoplay.realms_stories=Realm 스토리 # howtoplay.realms_stories.text.1=여러분과 Realm의 모든 멤버를 위한 소셜 허브입니다. 스토리 피드에 스토리를 게시하여 모험과 창작물을 공유하고, 다른 멤버가 올린 스토리에 좋아요를 누르고 댓글을 달아 보세요. # howtoplay.realms_stories.header.1=스토리를 들려주세요 # howtoplay.realms_stories.text.2=스토리 피드에서 스토리 추가 버튼을 클릭하면 나만의 스토리를 작성할 수 있습니다. 스크린샷 또는 텍스트(또는 둘 다!)를 선택해 입력할 수 있습니다. 게시 버튼을 클릭하면 모든 Realm의 멤버가 즐길 수 있도록 스토리 피드에 텍스트/스크린샷이 게시됩니다. 게시할 스크린샷이 없는 경우, 게임 메뉴의 §e카메라§f:camera:를 사용해 장면을 캡처할 수 있습니다. # howtoplay.realms_stories.header.2=최신 정보를 놓치지 마세요 # -howtoplay.realms_stories.text.3=피드에 아직 읽지 않은 새 스토리가 있을 때마다 REALMS STORIES 버튼에 숫자가 표시됩니다. 내 Realm의 커뮤니티에 새로운 읽을 거리가 있으면 언제든 알 수 있습니다. 다른 사람이 공유한 내용이 마음에 들면 좋아요를 누르거나 댓글을 남기세요! # +howtoplay.realms_stories.text.3=피드에 아직 읽지 않은 새 스토리가 있을 때마다 Realm 스토리 버튼에 숫자가 표시됩니다. 내 Realm의 커뮤니티에 새로운 읽을 거리가 있으면 언제든 알 수 있습니다. 다른 사람이 공유한 내용이 마음에 들면 좋아요를 누르거나 댓글을 남기세요! # howtoplay.realms_stories.header.3=플레이 약속을 짜 보세요 # howtoplay.realms_stories.text.4=타임라인에서 누가 언제 플레이했는지 확인하세요. 스크롤을 내려 Realm 멤버 목록을 확인하며 마지막으로 플레이한 시간과 함께 플레이한 사람들을 확인하세요. 이 정보를 참고하여 모두가 함께 플레이할 수 있는 시간을 정하세요. # howtoplay.realms_stories.header.4=Realm에 누가 있는지 알아보기 # -howtoplay.realms_stories.text.5=멤버 탭을 사용해 Realm에 누가 있는지 알아보세요. 이곳에서 플레이할 수 있는 모든 플레이어의 목록을 확인할 수 있습니다. Realm의 주인과 운영자가 누구인지, 해당 Realm의 Realms Stories에 참여한 사람이 누구인지 확인할 수 있습니다. 검색, 정렬, 필터 옵션이 있어 원하는 멤버를 정확하게 찾을 수 있습니다. # +howtoplay.realms_stories.text.5=멤버 탭을 사용해 Realm에 누가 있는지 알아보세요. 이곳에서 플레이할 수 있는 모든 플레이어의 목록을 확인할 수 있습니다. Realm의 주인과 운영자가 누구인지, 해당 Realm의 Realm 스토리에 참여한 사람이 누구인지 확인할 수 있습니다. 검색, 정렬, 필터 옵션이 있어 원하는 멤버를 정확하게 찾을 수 있습니다. # howtoplay.realms_stories.header.5=어디서든 접속하세요 # -howtoplay.realms_stories.text.6=Realms Stories는 Realm에서 플레이 중 게임 메뉴에서, 그리고 Realms 탭에서 이용할 수 있습니다. 게임을 플레이하지 않을 때에도 어디서든 최신 소식을 확인하고 스토리를 전할 수 있습니다. 콘솔, 컴퓨터, 모바일 기기에서 어디서나 Realms Stories를 이용해 보세요. # +howtoplay.realms_stories.text.6=Realm 스토리는 Realm에서 플레이 중 게임 메뉴에서, 그리고 Realm 탭에서 이용할 수 있습니다. 게임을 플레이하지 않을 때에도 어디서든 최신 소식을 확인하고 스토리를 전할 수 있습니다. 콘솔, 컴퓨터, 모바일 기기에서 어디서나 Realm 스토리를 이용해 보세요. # howtoplay.scaffolding=발판 # @@ -4145,7 +4170,7 @@ level.editor.export.failed=프로젝트 내보내기 실패함 # level.editor.import.failed=프로젝트 가져오기 실패함 # level.editor.import.failed.incompatibleEdition=프로젝트 가져오기 실패함: 지원하지 않는 파일 형식 # -inbox.invite.title=Realms 초대 # +inbox.invite.title=Realm에 초대하기 # invite.clear=선택 해제 # invite.send=%d명에게 초대장 보내기 # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=빨간색 오른쪽 아래 대각무늬 # item.banner.diagonal_up_right.silver=밝은 회색 오른쪽 아래 대각무늬 # item.banner.diagonal_up_right.white=흰색 오른쪽 아래 대각 무늬 # item.banner.diagonal_up_right.yellow=노란색 오른쪽 아래 대각무늬 # +item.banner.flow.black=검은색 플로우 # +item.banner.flow.blue=파란색 플로우 # +item.banner.flow.brown=갈색 플로우 # +item.banner.flow.cyan=청록색 플로우 # +item.banner.flow.gray=회색 플로우 # +item.banner.flow.green=녹색 플로우 # +item.banner.flow.lightBlue=밝은 파란색 플로우 # +item.banner.flow.lime=연두색 플로우 # +item.banner.flow.magenta=자홍색 플로우 # +item.banner.flow.orange=주황색 플로우 # +item.banner.flow.pink=분홍색 플로우 # +item.banner.flow.purple=보라색 플로우 # +item.banner.flow.red=빨간색 플로우 # +item.banner.flow.silver=밝은 회색 플로우 # +item.banner.flow.white=흰색 플로우 # +item.banner.flow.yellow=노란색 플로우 # item.banner.flower.black=검은색 꽃 모양 # item.banner.flower.blue=파란색 꽃 모양 # item.banner.flower.brown=갈색 꽃 모양 # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=흰색 아래쪽 그라데이션 # item.banner.gradient_up.yellow=노란색 아래쪽 그라데이션 # item.banner.gray.name=회색 배너 # item.banner.green.name=녹색 배너 # +item.banner.guster.black=검은색 구스터 # +item.banner.guster.blue=파란색 구스터 # +item.banner.guster.brown=갈색 구스터 # +item.banner.guster.cyan=청록색 구스터 # +item.banner.guster.gray=회색 구스터 # +item.banner.guster.green=녹색 구스터 # +item.banner.guster.lightBlue=밝은 파란색 구스터 # +item.banner.guster.lime=연두색 구스터 # +item.banner.guster.magenta=자홍색 구스터 # +item.banner.guster.orange=주황색 구스터 # +item.banner.guster.pink=분홍색 구스터 # +item.banner.guster.purple=보라색 구스터 # +item.banner.guster.red=빨간색 구스터 # +item.banner.guster.silver=밝은 회색 구스터 # +item.banner.guster.white=흰색 구스터 # +item.banner.guster.yellow=노란색 구스터 # item.banner.half_horizontal.black=검은색 위쪽 수평띠 # item.banner.half_horizontal.blue=파란색 위쪽 수평띠 # item.banner.half_horizontal.brown=갈색 위쪽 수평띠 # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=아카시아나무 보트 # item.boat.big_oak.name=짙은 참나무 보트 # item.bone.name=뼈 # item.book.name=책 # +item.breeze_rod.name=브리즈 막대 # item.chainmail_boots.name=사슬 부츠 # item.leather_boots.name=가죽 부츠 # item.diamond_boots.name=다이아몬드 부츠 # @@ -4991,6 +5049,7 @@ item.comparator.name=레드스톤 비교 회로 # item.compass.name=나침반 # item.lodestonecompass.name=자석석 나침반 # item.cookie.name=쿠키 # +item.copper_door.name=구리 문 # item.crossbow.name=석궁 # item.diamond.name=다이아몬드 # item.repeater.name=레드스톤 탐지기 # @@ -5038,6 +5097,7 @@ tile.end_rod.name=엔더 막대 # item.ender_eye.name=엔더의 눈 # item.ender_pearl.name=엔더 진주 # item.experience_bottle.name=경험치 병 # +item.exposed_copper_door.name=노출된 구리 문 # item.feather.name=깃털 # item.fermented_spider_eye.name=발효된 거미 눈 # item.fireball.name=불쏘시개 # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=황금 다리보호대 # item.iron_leggings.name=철제 다리보호대 # item.nautilus_shell.name=앵무조개 # item.heart_of_the_sea.name=바다의 심장 # +item.mace.name=철퇴 # item.magma_cream.name=마그마 크림 # item.map.name=지도 # item.map.exploration.mansion.name=삼림 탐험 지도 # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=대초원 마을 지도 # item.map.exploration.village_desert.name=사막 마을 지도 # item.map.exploration.jungle_temple.name=정글 탐험 지도 # item.map.exploration.swamp_hut.name=늪 탐험 지도 # +item.map.exploration.trial_chambers.name=체험판 탐험 지도 # item.melon.name=수박 # item.milk.name=우유 # item.minecart.name=광물 수레 # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=상자 광물 수레 # item.command_block_minecart.name=커맨드 블록 광물 수레 # item.minecartFurnace.name=화로 광물 수레 # item.hopper_minecart.name=호퍼 광물 수레 # +item.ominous_bottle.name=불길한 병 # +item.ominous_trial_key.name=불길한 체험판 열쇠 # +item.oxidized_copper_door.name=산화된 구리 문 # item.tnt_minecart.name=TNT 광물 수레 # item.pitcher_pod.name=피처 포드 # item.torchflower_seeds.name=횃불꽃 씨앗 # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=Agent 생성 알 # item.spawn_egg.entity.armadillo.name=아르마딜로 생성 알 # item.spawn_egg.entity.axolotl.name=아홀로틀 생성 알 # item.spawn_egg.entity.bee.name=벌 생성 알 # +item.spawn_egg.entity.bogged.name=수렁에 빠진 생성 달걀 # +item.spawn_egg.entity.breeze.name=바람 생성 알 # item.spawn_egg.entity.hoglin.name=호글린 생성 알 # item.spawn_egg.entity.cat.name=고양이 생성 알 # item.spawn_egg.entity.chicken.name=닭 생성 알 # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 - 와드 # item.record_pigstep.desc=Lena Raine - Pigstep # item.record_otherside.desc=Lena Raine - otherside # item.record_relic.desc=아론 체로프 - 유물 # +item.record_creator.desc=Lena Raine - 창작자 # +item.record_creator_music_box.desc=Lena Raine - 창작자(뮤직 박스) # +item.record_precipice.desc=Aaron Cherof - 벼랑 # item.redstone.name=레드스톤 가루 # item.reeds.name=사탕수수 # item.kelp.name=다시마 # @@ -5324,6 +5394,12 @@ item.iron_sword.name=철제 검 # item.stone_sword.name=돌검 # item.wooden_sword.name=목검 # item.unbreakable=튼튼한 # +item.waxed_copper_door.name=왁스 구리 문 # +item.waxed_exposed_copper_door.name=왁스 노출된 구리 문 # +item.waxed_oxidized_copper_door.name=왁스 산화된 구리 문 # +item.waxed_weathered_copper_door.name=왁스 풍화된 구리 문 # +item.weathered_copper_door.name=풍화된 구리 문 # +item.wind_charge.name=바람 돌격 # item.wheat.name=밀 # item.wolf_armor.name=늑대 방어구 # item.writable_book.name=책과 깃펜 # @@ -5331,6 +5407,7 @@ item.written_book.name=쓰여진 책 # item.glowstone_dust.name=발광석 가루 # item.shulker_shell.name=셜커 껍질 # item.totem.name=불사의 토템 # +item.trial_key.name=체험판 키 # item.turtle_helmet.name=거북 등딱지 # item.turtle_shell_piece.name=거북 등딱지 # item.phantom_membrane.name=팬텀 멤브레인 # @@ -5338,8 +5415,10 @@ item.sweet_berries.name=달콤한 나무열매 # item.suspicious_stew.name=수상한 스튜 # item.banner_pattern.bricks=벽돌 모양 # item.banner_pattern.creeper=크리퍼 모양 # +item.banner_pattern.flow=흐름 # item.banner_pattern.flower=꽃 모양 # item.banner_pattern.globe=지구본 # +item.banner_pattern.guster=구스터 # item.banner_pattern.name=배너 무늬 # item.banner_pattern.piglin=코 # item.banner_pattern.skull=해골 모양 # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=배너 무늬 # itemGroup.name.netherWartBlock=네더 사마귀 # itemGroup.name.candles=촛불 # itemGroup.name.goatHorn=염소 뿔 # +itemGroup.name.compounds=화합물 # +itemGroup.name.products=제품 # jigsaw.title.target_pool=대상 풀: # jigsaw.title.name=이름: # @@ -5802,7 +5883,7 @@ menu.howToPlay.access.noicon=[A] 버튼을 눌러 플레이 방법을 여세요! menu.inbox=받은 편지함 # menu.loadingLevel=월드를 불러오는 중... # menu.multiplayer=멀티플레이 # -menu.online=Minecraft Realms # +menu.online=Minecraft Realm # menu.openMainMenu=메인 메뉴 열기 # menu.options=설정 # menu.settings=설정 # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=클래스룸 설정 # menu.serverStore=%s 스토어 # menu.serverGenericName=서버 # menu.play=플레이 # +menu.profile=프로필 # menu.playdemo=체험판 월드 플레이하기 # menu.playOnRealms=Realm에서 플레이 # menu.quickplay=빠른 플레이 # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=시작 캐릭터 선택 # menu.character_cast.preview_title=캐스트를 만나보세요! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Realms 서버 ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=서버 # merchant.deprecated=잠금을 해제하려면 다른 물건을 거래하세요! # @@ -6011,7 +6094,7 @@ options.delete_account.confirm.warning=경고: %s 계정을 삭제하면 더 이 options.delete_account.confirm.warning.2=이 게임에서 Microsoft 계정을 삭제할 경우 해당 계정을 사용하는 모든 Minecraft 게임에 영향을 미칠 것입니다. # options.delete_account.confirm.checkbox1=다른 플랫폼에서 플레이할 때 더 이상 게임 내 상점 콘텐츠를 이용할 수 없습니다. # options.delete_account.confirm.checkbox2=더 이상 친구들과 온라인으로 플레이할 수 없습니다. # -options.delete_account.confirm.checkbox3=더 이상 Realms에 접속할 수 없습니다. 여기에는 현재 활성화된 Realms 구독 또한 포함됩니다. # +options.delete_account.confirm.checkbox3=더 이상 Realm에 접속할 수 없습니다. 여기에는 현재 활성화된 Realm 구독 또한 포함됩니다. # options.delete_account.confirm.checkbox4=위 내용을 이해했으며 계정 삭제를 계속 진행하고 싶습니다. # options.delete_account.confirm.button=삭제 # options.dev_game_tip=게임 플레이 팁 # @@ -6028,7 +6111,7 @@ options.dev_eduDemo=교육용 데모(다시 로그인 필요) # options.remote_imgui_toggle=원격 IMGUI 사용 # options.dev_enableDebugUI=디버그 UI 사용 # options.dev_createRealmWithoutPurchase=구매하지 않고 Reaml 생성 # -options.dev_flushOrphanedRealmsPurchases=모든 싱글 Realms 구매 제거 # +options.dev_flushOrphanedRealmsPurchases=모든 싱글 Realm 구매 제거 # options.dev_enableMixerInteractive=Mixer 방송 명령어 사용 설정 # options.dev_storeOfferQueryRequiresXbl=스토어 제품 XBL이 필요합니다. ###disable_3rd_party_console_resource_pack_check options.dev_renderBoundingBox=바운딩 박스 랜더링 # @@ -6122,20 +6205,20 @@ options.discoveryEnvironment.production=프로덕션 # options.discoveryEnvironment.staging=스테이징 # options.discoveryEnvironment.local=지역 주민 # options.discoveryEnvironment.dev=개발 [불안정] # -options.dev_realmsEnvironment=Realms 환경 # +options.dev_realmsEnvironment=Realm 환경 # options.dev_realms_environment.production=프로덕션 # options.dev_realms_environment.staging=스테이징 # options.dev_realms_environment.local=지역 주민 # options.dev_realms_environment.dev=개발 # -options.dev_realmsSku=Realms SKU # +options.dev_realmsSku=Realm SKU # options.dev_realms_sku.production=프로덕션 # options.dev_realms_sku.fiveday=5일 # options.dev_realms_sku.default=기본 # -options.dev_realmsEndpoint=Realms 엔드포인트 # -options.dev_realmsEndpointPayment=Realms 엔드포인트 결제 # -options.dev_realmsRelyingParty=Realms RP # -options.dev_realmsRelyingPartyPayment=Realms RP 결제 # -options.dev_realms_stories=Realms 스토리 활성화 # +options.dev_realmsEndpoint=Realm 엔드포인트 # +options.dev_realmsEndpointPayment=Realm 엔드포인트 결제 # +options.dev_realmsRelyingParty=Realm RP # +options.dev_realmsRelyingPartyPayment=Realm RP 결제 # +options.dev_realms_stories=Realm 스토리 활성화 # options.dev_overrideXboxEnvironmentWindows=Xbox 샌드박스 재정의(Windows에서 제어되는 OS) # options.dev_overrideXboxEnvironment=Xbox 샌드박스 재정의(재시작 필요) # options.dev_xboxEnvironment=Xbox 샌드박스 환경(재시작 필요) # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=전체 키보드 게임 플레이 # options.fullKeyboardLayout=전체 키보드 레이아웃 # options.improvedInputResponsePlaceholder=개선된 입력 반응 # options.improvedInputResponsePlaceholder.tooltip=입력과 화면에 표시되는 내용 사이의 지연을 줄입니다. 이 설정은 배터리 전력을 더 많이 사용할 수 있습니다. # +options.dynamicTexturesToggle=텍스처 한도 제거 # +options.dynamicTexturesToggle.tooltip=이 옵션을 비활성화하려면 게임을 다시 시작해야 합니다. 이로 인해 많은 텍스처를 가진 여러 추가 콘텐츠나 리소스 팩이 불안정해질 수 있습니다. # +options.dynamicTextures.popUp=텍스처 한도 제거가 활성화된 경우, 비활성화하기 위해서는 게임을 다시 시작해야 합니다. # +options.dynamicTextures.popUp.title=계속하시겠습니까? # options.fullscreen=전체 화면 # options.gamepadcursorsensitivity=컨트롤러 커서 민감도 # options.gamertag=게이머태그: # @@ -6302,7 +6389,7 @@ options.group.graphics=그래픽 # options.group.graphics.experimental=실험 # options.group.input=컨트롤 # options.group.multiplayer=멀티 플레이 # -options.group.realms=Realms 알파 서버로 이동? # +options.group.realms=Realm 알파 서버로 이동? # options.guiScale=방향 패드 사이즈 # options.guiScale.auto=자동 # options.guiScale.disabled=이 모니터는 UI 크기 조정이 지원되지 않으며, 그 이유는 대부분 해상도가 낮기 때문일 수 있습니다. # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=연결 # options.creator.debuggerListen=듣기 # options.creator.debuggerHost=호스트 # options.creator.debuggerPort=포트 # +options.creator.watchdogHeading=스크립트 와치독 설정 # +options.creator.watchdogSlowWarning=느린 스크립트 경고 # +options.creator.watchdogSlowThreshold=평균 초과 # +options.creator.watchdogSlowFormat=%s밀리초 # +options.creator.watchdogSlowFormatDefault=%s밀리초(기본값) # +options.creator.watchdogSpikeWarning=스크립트 스파이크 경고 # +options.creator.watchdogSpikeThreshold=스파이크 초과 # +options.creator.watchdogSpikeFormat=%s밀리초 # +options.creator.watchdogSpikeFormatDefault=%s밀리초(기본값) # +options.creator.watchdogHangThreshold=다음 시간 이후 인터럽트: # +options.creator.watchdogHangFormat=%s초 # +options.creator.watchdogHangFormatDefault=%s초(기본값) # options.vr_classic_box_selection=외곽선 선택 # options.hidegamepadcursor=컨트롤러 커서 숨기기 # options.hidegui=GUI 숨기기 # @@ -6461,7 +6560,7 @@ options.xboxLiveAccountSettings=Microsoft 계정 설정 # options.xboxLiveSignedIn=Microsoft 계정으로 로그인함 # options.xboxLiveSignedOut=Microsoft 계정에서 로그아웃함 # options.xboxLive.privacyControl=개인 정보 보호 및 온라인 안전 # -options.realms.checkInvites=Realms 멤버십 초대 관리 # +options.realms.checkInvites=Realm 멤버십 초대 관리 # options.skinCustomisation=사용자 지정 스킨... # options.skinCustomisation.title=사용자 지정 스킨 # options.skin.change=스킨 변경 # @@ -6561,16 +6660,16 @@ options.viewSubscriptions.mySubscriptions=내 구독 # options.viewSubscriptions.noActiveSubscriptions=활성화된 구독이 없습니다 # options.viewSubscriptions.signIn=로그인 # options.viewSubscriptions.buyAnAdditionalRealm=추가 Realm 구매 # -options.viewSubscriptions.realmsPlusSubscriptionForRealm=%s Realm용 Realms Plus 구독. # +options.viewSubscriptions.realmsPlusSubscriptionForRealm=%s Realm용 Realm Plus 구독. # options.viewSubscriptions.additionalSubscriptionForRealm=%s Realm용 추가 구독. # options.viewSubscriptions.personalRealmServer=멤버를 무한대로 추가하고 최대 2명의 친구들과 온라인으로 플레이할 수 있는 자신의 Realm 서버 # options.viewSubscriptions.tenPlayers=10인 플레이어 Realm 서버 # options.viewSubscriptions.twoPlayers=2인 플레이어 Realm 서버 # options.viewSubscriptions.startedInStore=상점에서 시작했습니다: %s # options.viewSubscriptions.boughtOnAnotherDevice=다른 장치에서 구매함 # -options.viewSubscriptions.deviceSunsetting=버전이 곧 Realms에 액세스하지 못할 수 있습니다. # -options.viewSubscriptions.deviceSunset=버전이 Realms에 액세스할 수 없습니다. # -options.viewSubscriptions.consumableToSubscriptionTransitionInfo=지금은 Realm을 연장할 수 없습니다. Realms 정기 서비스가 이제 시작되었으므로, 여러분은 Realm이 만료되는 즉시 정기 서비스를 새로 시작할 수 있습니다. 하지만 걱정하지 마세요! 무료로 14일을 추가해 드리겠습니다. 여러분의 Realm은 온라인 상태로 유지되므로 그때까지 연장해 주시면 됩니다. # +options.viewSubscriptions.deviceSunsetting=버전이 곧 Realm에 액세스하지 못할 수 있습니다. # +options.viewSubscriptions.deviceSunset=버전이 Realm에 액세스할 수 없습니다. # +options.viewSubscriptions.consumableToSubscriptionTransitionInfo=지금은 Realm을 연장할 수 없습니다. Realm 정기 서비스가 이제 시작되었으므로, 여러분은 Realm이 만료되는 즉시 정기 서비스를 새로 시작할 수 있습니다. 하지만 걱정하지 마세요! 무료로 14일을 추가해 드리겠습니다. 여러분의 Realm은 온라인 상태로 유지되므로 그때까지 연장해 주시면 됩니다. # options.swapJumpAndSneak=점프와 웅크리기 맞바꾸기 # options.swapGamepadAB=A/B 버튼 교체 # options.swapGamepadXY=X/Y 버튼 교체 # @@ -6662,11 +6761,11 @@ options.makeBackup=내 월드의 백업 사본 만들기 # options.managePrivacy=개인정보 설정을 관리하려면 웹 브라우저에서 https://account.xbox.com/Settings를 방문하세요. ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Microsoft 계정 연결 해제 # options.unlink_msa.confirm.title=Microsoft 계정의 연결을 해제하시겠습니까? # -options.unlink_msa.confirm.warning=경고: 연결을 해제하면 %s 계정의 "PlayStation 4"시스템 진행 상황이나 구매한 항목을 더 이상 저장할 수 없습니다. # +options.unlink_msa.confirm.warning=경고: 연결을 해제하면 %s 계정에서 PlayStation®4 본체의 진행 상황 및 구매 항목을 더 이상 저장할 수 없습니다. #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=이 게임으로부터 Microsoft 계정 연동을 해제할 경우 해당 플랫폼에서 Microsoft 계정을 사용했던 모든 Minecraft 게임에 영향을 미칠 것입니다. # options.unlink_msa.confirm.checkbox1=다른 플랫폼에서 플레이할 때 더 이상 게임 내 상점 콘텐츠에 액세스할 수 없습니다. # options.unlink_msa.confirm.checkbox2=더 이상 다른 플랫폼에서 친구들과 함께 크로스 플랫폼 게임을 플레이할 수 없습니다. # -options.unlink_msa.confirm.checkbox3=현재 활성화된 Realms 구독을 포함하여 Realms에 더 이상 액세스할 수 없습니다. # +options.unlink_msa.confirm.checkbox3=현재 활성화된 Realm 구독을 포함하여 Realm에 더 이상 액세스할 수 없습니다. # options.unlink_msa.confirm.checkbox4=위 내용을 이해했으며 연결을 해제하고 계속 진행하고 싶습니다. # options.unlink_msa.confirm.button=연결 해제 # options.unlink_msa.progress.title=연결 해제 중 # @@ -6745,20 +6844,20 @@ sunsetting.popup.dontshow=이 메시지를 다시 표시 안 함 # sunsetting.popup.moreInfo.gearVR=자세한 내용은 모든 웹 브라우저에서 https://aka.ms/MinecraftSunsetting을 방문하세요. # sunsetting.popup.moreInfo.gearVR.geo=자세한 내용을 보려면 모든 웹 브라우저에서 https://aka.ms/MinecraftGeoSunsetting을 방문하세요. # -sunsetting.popup.pendingSunset.ios=이 장치를 지원하는 서비스가 끝납니다. 2021년 6월까지는 업데이트가 계속 수신되며, 이후 이 장치에 대한 최종 업데이트를 수신하게 됩니다. 불편을 드려 죄송합니다. %s최종 업데이트 후에도 여전히 월드에서 게임을 플레이하고 마켓플레이스 구매(Minecoin 포함)를 이용할 수 있습니다. 하지만 이 기기에서 더 이상 구매할 수 없습니다. Realms 소유자가 다른 장치에서 업데이트하지 않는 한, 이 장치에서 관리되는 Realms는 6개월간 계속 작동합니다. Realms 구독을 취소하려면, Realm이 생성된 기기의 설정 메뉴의 구독에서 취소해야 합니다. 더 이상 최신 업데이트를 수신하지 못하며 업데이트를 계속 수신하는 장치 또는 Realms로는 멀티 플레이 게임을 플레이할 수 없습니다. 또한 특정 서버에 연결할 수 없습니다. %s월드를 새로운 장치로 옮기는 방법을 포함하여 자세한 정보를 보려면 버튼을 클릭하세요. # -sunsetting.popup.pendingSunset.android=이 장치를 지원하는 서비스가 끝납니다. 2021년 6월까지는 업데이트가 계속 수신되며, 이후 이 장치에 대한 최종 업데이트를 수신하게 됩니다. 불편을 드려 죄송합니다. %s최종 업데이트 후에도 여전히 월드에서 게임을 플레이하고 마켓플레이스 구매(Minecoin 포함)를 이용할 수 있습니다. 하지만 이 기기에서 더 이상 구매할 수 없습니다. Realms 소유자가 다른 장치에서 업데이트하지 않는 한, 이 장치에서 관리되는 Realms는 6개월간 계속 작동합니다. Realms 구독을 취소하려면, Google Play의 구독에서 이 작업을 수행해야 하며, 지원되는 모든 기기 또는 계정에 로그인할 수 있는 PC에서 Google Play에 액세스할 수 있습니다. 더 이상 최신 업데이트를 수신하지 못하며 업데이트를 계속 수신하는 장치 또는 Realms로는 멀티 플레이 게임을 플레이할 수 없습니다. 또한 특정 서버에 연결할 수 없습니다. %s월드를 새로운 장치로 옮기는 방법을 포함하여 자세한 정보를 보려면 버튼을 클릭하세요. # -sunsetting.popup.pendingSunset.ios_android=이 장치를 지원하는 서비스가 곧 종료됩니다. 업데이트는 2022년 11월, 해당 장치에 대한 최종 업데이트가 이루어질 때까지만 계속 진행됩니다. 불편을 드려 죄송합니다. %s최종 업데이트 후에도 여전히 월드에서 게임을 플레이하고 마켓플레이스 구매(Minecoin 포함)를 이용할 수 있습니다. Realms 소유자가 다른 장치에서 업데이트하지 않는 한, 이 장치에서 관리하는 Realms은 6개월 동안 유지됩니다. 더 이상 최신 업데이트를 받을 수 없으며, 업데이트를 계속 받는 장치 또는 Realms으로 멀티 플레이 게임을 이용할 수 없게 됩니다. 더불어, 특정 서버에 연결할 수 없을 것입니다. %s월드를 새로운 장치로 옮기는 방법을 포함하여 자세한 정보를 보려면 버튼을 클릭하세요. # -sunsetting.popup.sunset.ios_android=이 장치는 더 이상 지원되지 않습니다. 이 장치에 대한 최종 업데이트를 수신하셨습니다. 이 시점부터, 사용자의 월드에서 건물은 계속 유지할 수 있으며, 마켓플레이스 구매 사항(Minecoin 포함)은 계속 사용할 수 있습니다. Realms 소유자가 다른 장치에서 업데이트하지 않는 한 Realms는 계속 작동합니다. 더 이상 최신 업데이트를 수신하지 못하며 업데이트를 계속 수신하는 장치 또는 Realms로는 멀티 플레이 게임을 플레이할 수 없습니다. 또한 특정 서버에 연결할 수 없습니다. %s월드를 새 장치로 이동하는 방법을 포함하여 자세한 정보를 보려면 버튼을 클릭하세요. 불편을 드려 죄송합니다. 저희 게임을 사랑해 주셔서 감사드리며, 업데이트가 진행된 기기에서 다시 뵙게 되기를 바라겠습니다. # -sunsetting.popup.pendingSunset.gearvr_win10=이 장치를 지원하는 서비스가 끝납니다. 다음 주요 릴리스까지 업데이트를 계속 받게되며, 그 후이 장치에 대한 최종 업데이트를 받게됩니다. 불편을 드려 대단히 죄송합니다. %s최종 업데이트를 수신한 후에도 여전히 월드에서 게임을 플레이하고 마켓플레이스 구매 사항(Minecoin 포함)에 액세스할 수 있습니다. 그러나 이 장치에서 더 이상 멀티 플레이나 Realms에 액세스할 수 없습니다. 더 이상 최신 업데이트를 수신하지 못하며 업데이트를 계속 수신하는 장치 또는 Realms로는 멀티 플레이 게임을 플레이할 수 없습니다. 또한 특정 서버에 연결할 수 없습니다. %s월드를 새로운 장치로 옮기는 방법을 포함하여 자세한 정보를 보려면 버튼을 클릭하세요. # -sunsetting.popup.sunset.gearvr_win10=이 장치는 더 이상 지원되지 않습니다. 이 장치에 대한 최종 업데이트를 수신하셨습니다. 이 시점부터, 사용자의 월드에서 건물은 계속 유지할 수 있으며, 마켓플레이스 구매 사항(Minecoin 포함)은 계속 사용할 수 있습니다. 그러나 이 장치에서 더 이상 멀티 플레이나 Realms에 액세스할 수 없습니다. 더 이상 최신 업데이트를 수신하지 못하며 업데이트를 계속 수신하는 장치로는 플레이할 수 없습니다. 또한 특정 서버에 연결할 수 없습니다. # -sunsetting.popup.pendingSunset.dx10=이 그래픽 장치를 지원하는 서비스가 끝납니다. 다음 주요 릴리스까지 업데이트를 계속 받게되며, 그 후이 장치에 대한 최종 업데이트를 받게됩니다. 불편을 드려 대단히 죄송합니다. %s최종 업데이트를 수신한 후에도 여전히 월드에서 게임을 플레이하고 마켓플레이스 구매 사항(Minecoin 포함)에 액세스할 수 있습니다. Realms 소유자가 다른 장치에서 업데이트하지 않는 한 이 장치에서 관리되는 Realms는 계속 작동합니다. 더 이상 최신 업데이트를 수신하지 못하며 업데이트를 계속 수신하는 장치 또는 Realms로는 멀티 플레이 게임을 플레이할 수 없습니다. 또한 특정 서버에 연결할 수 없습니다. %s월드를 새로운 장치로 옮기는 방법을 포함하여 자세한 정보를 보려면 버튼을 클릭하세요. # -sunsetting.popup.sunset.dx10=이 그래픽 장치는 더 이상 지원되지 않습니다. 이 장치에 대한 최종 업데이트를 수신하셨습니다. 이 시점부터, 사용자의 월드에서 건물은 계속 유지할 수 있으며, 마켓플레이스 구매 사항(코인 포함)은 계속 사용할 수 있습니다. Realms 소유자가 다른 장치에서 업데이트하지 않는 한 Realms는 계속 작동합니다. 더 이상 최신 업데이트를 수신하지 못하며 업데이트를 계속 수신하는 장치 또는 Realms로는 멀티 플레이 게임을 플레이할 수 없습니다. 또한 특정 서버에 연결할 수 없습니다. %s월드를 새 장치로 이동하는 방법을 포함하여 자세한 정보를 보려면 버튼을 클릭하세요. 불편을 드려 죄송합니다. 저희 게임을 사랑해 주셔서 감사합니다. # +sunsetting.popup.pendingSunset.ios=이 장치를 지원하는 서비스가 끝납니다. 2024년 2월까지는 업데이트가 계속 수신되며, 이후 이 장치에 대한 최종 업데이트를 수신하게 됩니다. 불편을 드려 죄송합니다. %s최종 업데이트 후에도 여전히 월드에서 게임을 플레이하고 마켓플레이스 구매(Minecoin 포함)를 이용할 수 있습니다. 하지만 이 기기에서 더 이상 구매할 수 없습니다. Realm 소유자가 다른 장치에서 업데이트하지 않는 한, 이 장치에서 관리되는 Realm은 6개월간 계속 작동합니다. Realm 구독을 취소하려면, Realm이 생성된 기기의 설정 메뉴의 구독에서 취소해야 합니다. 더 이상 최신 업데이트를 수신하지 못하며 업데이트를 계속 수신하는 장치 또는 Realm으로는 멀티플레이 게임을 플레이할 수 없습니다. 또한 특정 서버에 연결할 수 없습니다. %s월드를 새로운 장치로 옮기는 방법을 포함하여 자세한 정보를 보려면 버튼을 클릭하세요. # +sunsetting.popup.pendingSunset.android=이 장치를 지원하는 서비스가 끝납니다. 2024년 2월까지는 업데이트가 계속 수신되며, 이후 이 장치에 대한 최종 업데이트를 수신하게 됩니다. 불편을 드려 죄송합니다. %s최종 업데이트 후에도 여전히 월드에서 게임을 플레이하고 마켓플레이스 구매(Minecoin 포함)를 이용할 수 있습니다. 하지만 이 기기에서 더 이상 구매할 수 없습니다. Realm 소유자가 다른 장치에서 업데이트하지 않는 한, 이 장치에서 관리되는 Realm은 6개월간 계속 작동합니다. Realm 구독을 취소하려면, Google Play의 구독에서 이 작업을 수행해야 하며, 지원되는 모든 기기 또는 계정에 로그인할 수 있는 PC에서 Google Play에 액세스할 수 있습니다. 더 이상 최신 업데이트를 수신하지 못하며 업데이트를 계속 수신하는 장치 또는 Realm으로는 멀티플레이 게임을 플레이할 수 없습니다. 또한 특정 서버에 연결할 수 없습니다. %s월드를 새로운 장치로 옮기는 방법을 포함하여 자세한 정보를 보려면 버튼을 클릭하세요. # +sunsetting.popup.pendingSunset.ios_android=이 장치를 지원하는 서비스가 곧 종료됩니다. 업데이트는 2022년 11월, 해당 장치에 대한 최종 업데이트가 이루어질 때까지만 계속 진행됩니다. 불편을 드려 죄송합니다. %s최종 업데이트 후에도 여전히 월드에서 게임을 플레이하고 마켓플레이스 구매(Minecoin 포함)를 이용할 수 있습니다. Realm 소유자가 다른 장치에서 업데이트하지 않는 한, 이 장치에서 관리하는 Realm은 6개월 동안 유지됩니다. 더 이상 최신 업데이트를 받을 수 없으며, 업데이트를 계속 받는 장치 또는 Realm으로 멀티플레이 게임을 이용할 수 없게 됩니다. 더불어, 특정 서버에 연결할 수 없을 것입니다. %s월드를 새로운 장치로 옮기는 방법을 포함하여 자세한 정보를 보려면 버튼을 클릭하세요. # +sunsetting.popup.sunset.ios_android=이 장치는 더 이상 지원되지 않습니다. 이 장치에 대한 최종 업데이트를 수신하셨습니다. 이 시점부터, 사용자의 월드에서 건물은 계속 유지할 수 있으며, 마켓플레이스 구매 사항(Minecoin 포함)은 계속 사용할 수 있습니다. Realm 소유자가 다른 장치에서 업데이트하지 않는 한 Realm은 계속 작동합니다. 더 이상 최신 업데이트를 수신하지 못하며 업데이트를 계속 수신하는 장치 또는 Realm으로는 멀티플레이 게임을 플레이할 수 없습니다. 또한 특정 서버에 연결할 수 없습니다. %s월드를 새 장치로 이동하는 방법을 포함하여 자세한 정보를 보려면 버튼을 클릭하세요. 불편을 드려 죄송합니다. 저희 게임을 사랑해 주셔서 감사드리며, 업데이트가 진행된 기기에서 다시 뵙게 되기를 바라겠습니다. # +sunsetting.popup.pendingSunset.gearvr_win10=이 장치를 지원하는 서비스가 끝납니다. 다음 주요 릴리스까지 업데이트를 계속 받게되며, 그 후이 장치에 대한 최종 업데이트를 받게됩니다. 불편을 드려 대단히 죄송합니다. %s최종 업데이트를 수신한 후에도 여전히 월드에서 게임을 플레이하고 마켓플레이스 구매 사항(Minecoin 포함)에 액세스할 수 있습니다. 그러나 이 장치에서 더 이상 멀티플레이나 Realm에 액세스할 수 없습니다. 더 이상 최신 업데이트를 수신하지 못하며 업데이트를 계속 수신하는 장치 또는 Realm으로는 멀티플레이 게임을 플레이할 수 없습니다. 또한 특정 서버에 연결할 수 없습니다. %s월드를 새로운 장치로 옮기는 방법을 포함하여 자세한 정보를 보려면 버튼을 클릭하세요. # +sunsetting.popup.sunset.gearvr_win10=이 장치는 더 이상 지원되지 않습니다. 이 장치에 대한 최종 업데이트를 수신하셨습니다. 이 시점부터, 사용자의 월드에서 건물은 계속 유지할 수 있으며, 마켓플레이스 구매 사항(Minecoin 포함)은 계속 사용할 수 있습니다. 그러나 이 장치에서 더 이상 멀티플레이나 Realm에 액세스할 수 없습니다. 더 이상 최신 업데이트를 수신하지 못하며 업데이트를 계속 수신하는 장치로는 플레이할 수 없습니다. 또한 특정 서버에 연결할 수 없습니다. # +sunsetting.popup.pendingSunset.dx10=이 그래픽 장치를 지원하는 서비스가 끝납니다. 다음 주요 릴리스까지 업데이트를 계속 받게되며, 그 후이 장치에 대한 최종 업데이트를 받게됩니다. 불편을 드려 대단히 죄송합니다. %s최종 업데이트를 수신한 후에도 여전히 월드에서 게임을 플레이하고 마켓플레이스 구매 사항(Minecoin 포함)에 액세스할 수 있습니다. Realm 소유자가 다른 장치에서 업데이트하지 않는 한 이 장치에서 관리되는 Realm은 계속 작동합니다. 더 이상 최신 업데이트를 수신하지 못하며 업데이트를 계속 수신하는 장치 또는 Realm으로는 멀티플레이 게임을 플레이할 수 없습니다. 또한 특정 서버에 연결할 수 없습니다. %s월드를 새로운 장치로 옮기는 방법을 포함하여 자세한 정보를 보려면 버튼을 클릭하세요. # +sunsetting.popup.sunset.dx10=이 그래픽 장치는 더 이상 지원되지 않습니다. 이 장치에 대한 최종 업데이트를 수신하셨습니다. 이 시점부터, 사용자의 월드에서 건물은 계속 유지할 수 있으며, 마켓플레이스 구매 사항(코인 포함)은 계속 사용할 수 있습니다. Realm 소유자가 다른 장치에서 업데이트하지 않는 한 Realm은 계속 작동합니다. 더 이상 최신 업데이트를 수신하지 못하며 업데이트를 계속 수신하는 장치 또는 Realm으로는 멀티플레이 게임을 플레이할 수 없습니다. 또한 특정 서버에 연결할 수 없습니다. %s월드를 새 장치로 이동하는 방법을 포함하여 자세한 정보를 보려면 버튼을 클릭하세요. 불편을 드려 죄송합니다. 저희 게임을 사랑해 주셔서 감사합니다. # sunsetting.popup.pendingSunset.geo.ios=귀하의 지역에서 이 기기를 지원하는 서비스가 곧 종료됩니다. 최종 업데이트 후에도 월드에서 계속 게임을 플레이하고 마켓플레이스 구매 내역을 이용할 수 있지만, 더 이상 마켓플레이스에서 구매할 수는 없습니다. 이 기기에서 관리하는 Realm은 6개월 동안 유지됩니다. 2023년 9월 30일부터는 해당 Realm에 액세스할 수 없습니다. 그전에 월드를 다운로드하고 기기에서 구독 설정을 확인하여 구독을 취소하는 것이 좋습니다. %sMicrosoft/Xbox Live 계정으로 로그인한 경우, 다른 플랫폼에서도 마켓플레이스 구매 내역 및 Minecoin, Realm 구독을 이용할 수 있습니다. 이 기기에서 다른 기기로 월드를 옮기고 싶다면, 월드를 Realm에 업로드한 후 새 기기에 백업을 다운로드하면 됩니다. %s월드를 새로운 기기로 옮기는 방법을 포함하여 자세한 정보를 보려면 버튼을 클릭하세요. ###disable_3rd_party_console_resource_pack_check sunsetting.popup.sunset.geo.ios=귀하의 지역에서 이 기기를 지원하는 서비스가 종료되었습니다. 계속해서 월드에서 게임을 플레이하고 마켓플레이스 구매 내역을 이용할 수 있지만, 더 이상 마켓플레이스에서 구매할 수는 불가능합니다. 이 기기에서 관리하는 Realm은 2023년 9월 30일까지 유지됩니다. 이후에는 해당 Realm에 액세스할 수 없습니다. 그전에 월드를 다운로드하시기 바랍니다. %sMicrosoft/Xbox Live 계정으로 로그인한 경우, 다른 플랫폼에서도 마켓플레이스 구매 내역 및 Minecoin, Realm 구독을 이용할 수 있습니다. 이 기기에서 다른 기기로 월드를 옮기고 싶다면, 월드를 Realm에 업로드한 후 새 기기에 백업을 다운로드하면 됩니다. %s월드를 새로운 기기로 옮기는 방법을 포함하여 자세한 정보를 보려면 버튼을 클릭하세요. ###disable_3rd_party_console_resource_pack_check sunsetting.popup.pendingSunset.geo.amazon=귀하의 지역에서 이 장치를 지원하는 서비스가 곧 종료됩니다. 최종 업데이트 후에도 월드에서 계속 게임을 플레이하고 마켓플레이스 구매 내역을 이용할 수 있지만, 더 이상 마켓플레이스에서 구매할 수는 없습니다. 이 기기에서 관리하는 Realm은 6개월 동안 유지됩니다. 2023년 9월 30일부터는 해당 Realm에 액세스할 수 없습니다. 그전에 월드를 다운로드하시기 바랍니다. %sMicrosoft/Xbox Live 계정으로 로그인한 경우, 다른 플랫폼에서도 마켓플레이스 구매 내역 및 Minecoin, Realm 구독을 이용할 수 있습니다. 이 기기에서 다른 기기로 월드를 옮기고 싶다면, 월드를 Realm에 업로드한 후 새 기기에 백업을 다운로드하면 됩니다. %s월드를 새로운 기기로 옮기는 방법을 포함하여 자세한 정보를 보려면 버튼을 클릭하세요. ###disable_3rd_party_console_resource_pack_check sunsetting.popup.sunset.geo.amazon=귀하의 지역에서 이 기기를 지원하는 서비스가 종료되었습니다. 계속해서 월드에서 게임을 플레이하고 마켓플레이스 구매 내역을 이용할 수 있지만, 더 이상 마켓플레이스에서 구매할 수는 불가능합니다. 이 기기에서 관리하는 Realm은 2023년 9월 30일까지 유지됩니다. 이후에는 해당 Realm에 액세스할 수 없습니다. 그전에 월드를 다운로드하시기 바랍니다. %sMicrosoft/Xbox Live 계정으로 로그인한 경우, 다른 플랫폼에서도 마켓플레이스 구매 내역 및 Minecoin, Realm 구독을 이용할 수 있습니다. 이 기기에서 다른 기기로 월드를 옮기고 싶다면, 월드를 Realm에 업로드한 후 새 기기에 백업을 다운로드하면 됩니다. %s월드를 새로운 기기로 옮기는 방법을 포함하여 자세한 정보를 보려면 버튼을 클릭하세요. ###disable_3rd_party_console_resource_pack_check -sunsetting.popup.pendingSunset.geo.android=귀하의 지역에서 이 장치를 지원하는 서비스가 곧 종료됩니다. 이번 최종 업데이트를 통해 월드에서 계속 게임을 플레이하고 마켓플레이스 구매 내역을 이용할 수 있지만, 더 이상 마켓플레이스에서 구매할 수 없습니다. 이 기기에서 관리하는 Realm은 6개월 동안 유지됩니다. 2023년 9월 30일 이후에는 이 기기에서 해당 Realm에 액세스할 수 없습니다. 그전에 월드를 다운로드하고 Google Play에서 구독을 확인하여 구독을 취소하는 것이 좋습니다. %s더 이상 최신 업데이트를 받을 수 없으며 멀티 플레이를 할 수 없습니다. 또한 특정 서버에 연결할 수 없게 됩니다. %sMicrosoft/Xbox Live 계정으로 로그인한 경우, Minecraft를 플레이하는 다른 플랫폼에서도 마켓플레이스 구매 내역 및 Minecoin, Realms 구독을 이용할 수 있습니다. Minecraft를 플레이하는 다른 플랫폼에서 새 구독을 시작할 수 있습니다. %s이 기기에서 다른 기기로 월드를 옮기고 싶다면, 월드를 Realm에 업로드한 후 새 기기에 백업을 다운로드하면 됩니다. %s월드를 새로운 기기로 옮기는 방법을 포함하여 자세한 정보를 보려면 버튼을 클릭하세요. ###disable_3rd_party_console_resource_pack_check +sunsetting.popup.pendingSunset.geo.android=귀하의 지역에서 이 장치를 지원하는 서비스가 곧 종료됩니다. 이번 최종 업데이트를 통해 월드에서 계속 게임을 플레이하고 마켓플레이스 구매 내역을 이용할 수 있지만, 더 이상 마켓플레이스에서 구매할 수 없습니다. 이 기기에서 관리하는 Realm은 6개월 동안 유지됩니다. 2023년 9월 30일 이후에는 이 기기에서 해당 Realm에 액세스할 수 없습니다. 그전에 월드를 다운로드하고 Google Play에서 구독을 확인하여 구독을 취소하는 것이 좋습니다. %s더 이상 최신 업데이트를 받을 수 없으며 멀티플레이를 할 수 없습니다. 또한 특정 서버에 연결할 수 없게 됩니다. %sMicrosoft/Xbox Live 계정으로 로그인한 경우, Minecraft를 플레이하는 다른 플랫폼에서도 마켓플레이스 구매 내역 및 Minecoin, Realm 구독을 이용할 수 있습니다. Minecraft를 플레이하는 다른 플랫폼에서 새 구독을 시작할 수 있습니다. %s이 기기에서 다른 기기로 월드를 옮기고 싶다면, 월드를 Realm에 업로드한 후 새 기기에 백업을 다운로드하면 됩니다. %s월드를 새로운 기기로 옮기는 방법을 포함하여 자세한 정보를 보려면 버튼을 클릭하세요. ###disable_3rd_party_console_resource_pack_check sunsetting.popup.sunset.geo.android=귀하의 지역에서 이 기기를 지원하는 서비스가 종료되었습니다. 계속해서 월드에서 게임을 플레이하고 마켓플레이스 구매 내역을 이용할 수 있지만, 더 이상 마켓플레이스에서 구매할 수는 불가능합니다. 이 기기에서 관리하는 Realm은 2023년 9월 30일까지 유지됩니다. 이후에는 해당 Realm에 액세스할 수 없습니다. 그전에 월드를 다운로드하시기 바랍니다. %sMicrosoft/Xbox Live 계정으로 로그인한 경우, 다른 플랫폼에서도 마켓플레이스 구매 내역 및 Minecoin, Realm 구독을 이용할 수 있습니다. 이 기기에서 다른 기기로 월드를 옮기고 싶다면, 월드를 Realm에 업로드한 후 새 기기에 백업을 다운로드하면 됩니다. %s월드를 새로운 기기로 옮기는 방법을 포함하여 자세한 정보를 보려면 버튼을 클릭하세요. ###disable_3rd_party_console_resource_pack_check sunsetting.popup.pendingSunset.geo.generic=귀하의 지역에서 이 장치를 지원하는 서비스가 곧 종료됩니다. 최종 업데이트 후에도 월드에서 계속 게임을 플레이하고 마켓플레이스 구매 내역을 이용할 수 있지만, 더 이상 마켓플레이스에서 구매할 수는 없습니다. 이 기기에서 관리하는 Realm은 6개월 동안 유지됩니다. 2023년 9월 30일부터는 해당 Realm에 액세스할 수 없습니다. 그전에 월드를 다운로드하시기 바랍니다. %sMicrosoft/Xbox Live 계정으로 로그인한 경우, 다른 플랫폼에서도 마켓플레이스 구매 내역 및 Minecoin, Realm 구독을 이용할 수 있습니다. 이 기기에서 다른 기기로 월드를 옮기고 싶다면, 월드를 Realm에 업로드한 후 새 기기에 백업을 다운로드하면 됩니다. %s월드를 새로운 기기로 옮기는 방법을 포함하여 자세한 정보를 보려면 버튼을 클릭하세요. # sunsetting.popup.sunset.geo.generic=귀하의 지역에서 이 기기를 지원하는 서비스가 종료되었습니다. 계속해서 월드에서 게임을 플레이하고 마켓플레이스 구매 내역을 이용할 수 있지만, 더 이상 마켓플레이스에서 구매할 수는 불가능합니다. 이 기기에서 관리하는 Realm은 2023년 9월 30일까지 유지됩니다. 이후에는 해당 Realm에 액세스할 수 없습니다. 그전에 월드를 다운로드하시기 바랍니다. %sMicrosoft/Xbox Live 계정으로 로그인한 경우, 다른 플랫폼에서도 마켓플레이스 구매 내역 및 Minecoin, Realm 구독을 이용할 수 있습니다. 이 기기에서 다른 기기로 월드를 옮기고 싶다면, 월드를 Realm에 업로드한 후 새 기기에 백업을 다운로드하면 됩니다. %s월드를 새로운 기기로 옮기는 방법을 포함하여 자세한 정보를 보려면 버튼을 클릭하세요. # @@ -6775,7 +6874,7 @@ sunsetting.store.incompatible=비호환 항목 # sunsetting.store.incompatiblePopup=이 콘텐츠는 장치와 호환되지 않습니다. https://aka.ms/MinecraftSunsetting을 확인하세요. # pauseScreen.back=게임으로 돌아가기 # -pauseScreen.realmsStories=Realms 스토리 # +pauseScreen.realmsStories=Realm 스토리 # pauseScreen.currentWorld=현재 월드 # pauseScreen.header=게임 메뉴 # pauseScreen.options=설정 # @@ -6874,13 +6973,15 @@ hudScreen.controlCustomization.tooltip=월드를 불러오고 컨트롤 설정 hudScreen.controlCustomization.tooltip.notouch=터치 장치를 사용하여 컨트롤 설정하기 # hudScreen.controlCustomization.tooltip.alreadycustomizing=터치 컨트롤러 사용자 지정 화면이 이미 열려 있습니다. # hudScreen.controlCustomization.tooltip.alive=컨트롤을 사용자 지정하려면 플레이어가 살아있어야 합니다. # +hudScreen.daysPlayed=플레이 일수: %s일 # +hudScreen.daysPlayed.overflow=너무 많아요! # playscreen.fileSize.MB=MB # playscreen.fileSize.GB=GB # -playscreen.joinableRealms=참가할 수 있는 Realms # -playscreen.noFriendsRealms=지금은 아무 Realms에도 속해있지 않습니다. # +playscreen.joinableRealms=참가할 수 있는 Realm # +playscreen.noFriendsRealms=지금은 아무 Realm에도 속해 있지 않습니다. # playscreen.header.local=플레이 # -playscreen.header.realms=Realms # +playscreen.header.realms=Realm # playscreen.lastPlayed.daysAgo=%1 일 전 # playscreen.lastPlayed.longAgo=오래전 # playscreen.lastPlayed.today=오늘 # @@ -6888,30 +6989,30 @@ playscreen.lastPlayed.weeksAgo=%1주 전 # playscreen.lastPlayed.yesterday=어제 # playscreen.new=신규 # playscreen.remoteWorld=원격 월드: # -playscreen.realmsTrialWorld=30일 무료 Realms Plus를 체험해보세요 # +playscreen.realmsTrialWorld=30일 무료 Realm Plus를 체험해보세요 # playscreen.freePreviewRealmAvailable=무료 프리뷰 Realm 사용 가능 # playscreen.freeBetaRealmAvailable=무료 베타 Realm 사용 가능 # -playscreen.withYourPaidRealms=유료 realms 구독으로 이용 # +playscreen.withYourPaidRealms=유료 Realm 구독으로 이용 # playscreen.realmsCreateFirstWorld=첫 영역을 만들어 보세요. # playscreen.realmsCombo=친구들과 함께 플레이하고 150개 이상의 팩을 즐기세요 # playscreen.realmsGetServer=나만의 서버와 150개 이상의 팩을 받으세요 # -playscreen.realmGoogleHoldBody=하나 이상의 Realms 구독에 문제가 발생했습니다. Google Play 구독 설정으로 이동하여 결제 수단을 수정하려면 '확인'을 클릭하세요. # +playscreen.realmGoogleHoldBody=하나 이상의 Realm 구독에 문제가 발생했습니다. Google Play 구독 설정으로 이동하여 결제 수단을 수정하려면 '확인'을 클릭하세요. # playscreen.realmsContent=150개가 넘는 마켓플레이스 팩을 플레이하세요 # -playscreen.checkingRealmsCompatibility=Realms 호환성 검사 중... # -playscreen.fetchingRealms=Realms 가져오는 중... # +playscreen.checkingRealmsCompatibility=Realm 호환성 검사 중... # +playscreen.fetchingRealms=Realm 가져오는 중... # playscreen.confirmLeaveMessage=정말로 %1$s Realm에서 나가시겠습니까? # playscreen.confirmLeaveTitle=나가기 # playscreen.realmExpired=만료됨 # playscreen.realmFull=전체 # -playscreen.realmClientOutdated=모든 Realm이 업데이트되었습니다. Realm를 계속 플레이하려면 게임을 업데이트해야 합니다. # -playscreen.realms=Realms # -playscreen.previewRealms=프리뷰 Realms # -playscreen.betaRealms=베타 Realms # +playscreen.realmClientOutdated=모든 Realm이 업데이트되었습니다. Realm을 계속 플레이하려면 게임을 업데이트해야 합니다. # +playscreen.realms=Realm # +playscreen.previewRealms=프리뷰 Realm # +playscreen.betaRealms=베타 Realm # playscreen.realmsWarning.moreinfo=추가 정보 # playscreen.realmsCompatibilityFailure=지금은 Realm에 연결할 수 없습니다. 곧 다시 시도하겠습니다. # -playscreen.realmsPreProdNotAuthorized=프리 프로덕션 단계에서는 Realms에 액세스할 수 없습니다. 액세스 권한을 얻으려면 #ask-realms-preprod-access로 문의하거나 aka.ms/Realms-preprod-access에서 가이드를 참조하세요. # -playscreen.realmsSignIn=오늘 Realms에서 플레이하려면 로그인하세요! # -playscreen.realmsSignInFriends=오늘 친구의 Realms를 보려면 로그인하세요! # +playscreen.realmsPreProdNotAuthorized=프리 프로덕션 단계에서는 Realm에 액세스할 수 없습니다. 액세스 권한을 얻으려면 #ask-Realm-preprod-access로 문의하거나 aka.ms/Realm-preprod-access에서 가이드를 참조하세요. # +playscreen.realmsSignIn=오늘 Realm에서 플레이하려면 로그인하세요! # +playscreen.realmsSignInFriends=오늘 친구의 Realm을 보려면 로그인하세요! # playscreen.worlds=월드 # playscreen.dontSeeLegacyWorlds=월드를 찾을 수 없으신가요? # playscreen.syncLegacyWorlds=기존 월드 동기화하기 # @@ -6947,12 +7048,12 @@ permissions.ability.invisible=투명화 # permissions.ability.teleport=순간이동 사용하기 # permissions.NeedPermission=권한 필요 # permissions.AddFriends=Microsoft 계정 설정 방식 때문에 친구들을 추가할 수 없습니다. 온라인 안전 설정에서의 친구들 추가 허용 여부를 확인하세요. aka.ms/MCMultiplayerHelp 에서 해당 설정 변경에 대한 지침을 참조하세요. # -permissions.MultiplayerSessions=Microsoft 계정 설정 방식 때문에 Realms에서 플레이할 수 없습니다. 온라인 안전 설정에서의 멀티 플레이 허용 여부를 확인하세요. aka.ms/MCMultiplayerHelp에서 해당 설정 변경에 대한 지침을 참조하세요. # +permissions.MultiplayerSessions=Microsoft 계정 설정 방식 때문에 Realm에서 플레이할 수 없습니다. 온라인 안전 설정에서의 멀티플레이 허용 여부를 확인하세요. aka.ms/MCMultiplayerHelp에서 해당 설정 변경에 대한 지침을 참조하세요. # permissions.Communications=Microsoft 계정 설정 방식 때문에 다른 플레이어와 채팅할 수 없습니다. 프라이버시 설정에서의 다른 사람과 공유하기 허용 여부를 확인하세요. aka.ms/MCMultiplayerHelp 에서 해당 설정 변경에 대한 지침을 참조하세요. # permissions.RealmsAddFriends=Xbox 계정 설정 때문에 친구를 새로 추가하여 Realm에서 함께 플레이할 수 없습니다. Xbox.com의 개인 정보 취급 방침 및 온라인 안전 설정에서 설정을 변경할 수 있습니다. 계속 진행하시겠습니까? # permissions.CloudSave=계정 설정 때문에 Xbox 프로필에 월드를 저장할 수 없습니다. Xbox.com의 개인 정보 취급 방침 및 온라인 안전 설정에서 설정을 변경할 수 있습니다. ###disable_3rd_party_console_resource_pack_check -permissions.MultiplayerSessionsOnConsole=Microsoft 계정 설정 방식 때문에 온라인 멀티 플레이 게임을 플레이할 수 없습니다. 온라인 안전 설정에서의 멀티 플레이 허용 및 Xbox Live 골드 정기 서비스 활성화 여부를 확인하세요. aka.ms/MCMultiplayerHelp에서 해당 설정 변경에 대한 지침을 참조하세요. ###disable_3rd_party_console_resource_pack_check -permissions.MultiplayerSessionsOnConsoleGamecore=Microsoft 계정 설정 때문에 Realms에서 플레이할 수 없습니다. ###disable_3rd_party_console_resource_pack_check +permissions.MultiplayerSessionsOnConsole=Microsoft 계정 설정 방식 때문에 온라인 멀티플레이 게임을 플레이할 수 없습니다. 온라인 안전 설정에서의 멀티플레이 허용 및 Xbox Live Gold 구독 활성화 여부를 확인하세요. aka.ms/MCMultiplayerHelp에서 해당 설정 변경에 대한 지침을 참조하세요. ###disable_3rd_party_console_resource_pack_check +permissions.MultiplayerSessionsOnConsoleGamecore=Microsoft 계정 설정 때문에 Realm에서 플레이할 수 없습니다. ###disable_3rd_party_console_resource_pack_check permissions.open.account.help.button=문제 해결 도움말 # permissions.open.account.help.button.gamecore=이 문제 해결 # permissions.open.account.setting.button=서비스 약관 보기 # @@ -6990,8 +7091,8 @@ permissions.banplayer=플레이어 차단 # permissions.banplayer.reason=호스트가 플레이어님을 세션에서 차단했습니다. # permissions.banplayer.message=%s 님을 월드에서 차단하시겠습니까? 차단당한 플레이어는 다시 참가할 수 없습니다. # permissions.banplayer.title=플레이어를 차단할까요? # -permissions.ClubsAccess=클럽에 대한 액세스 권한이 없으므로 Realms 피드에 접속할 수 없습니다. aka.ms/MCClubsHelp에서 이러한 설정을 변경하는 방법에 대한 지침을 참조하십시오. # -permissions.ClubsPost=클럽에 대한 액세스 권한이 없으므로 Realms 피드에 게시할 수 없습니다. aka.ms/MCClubsHelp에서 이러한 설정을 변경하는 방법에 대한 지침을 참조하십시오. # +permissions.ClubsAccess=클럽에 대한 액세스 권한이 없으므로 Realm 피드에 접속할 수 없습니다. aka.ms/MCClubsHelp에서 이러한 설정을 변경하는 방법에 대한 지침을 참조하세요. # +permissions.ClubsPost=클럽에 대한 액세스 권한이 없으므로 Realm 피드에 게시할 수 없습니다. aka.ms/MCClubsHelp에서 이러한 설정을 변경하는 방법에 대한 지침을 참조하세요. # ## edu permissions popup permissions.button.kickplayer=게임에서 플레이어 제거 # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=투척용 회복 포션 # potion.heal.linger.name=잔류형 회복 포션 # potion.healthBoost=체력 강화 # potion.hunger=배고픔 # +potion.infested.linger.name=오래 가는 감염 포션 # +potion.infested.name=감염 포션 # +potion.infested.splash.name=투척용 감염 포션 # +potion.infested=감염됨 # potion.invisibility=투명화 # potion.invisibility.name=투명화 포션 # potion.invisibility.splash.name=투척용 투명화 포션 # @@ -7067,6 +7172,10 @@ potion.nightVision=야간 시야 # potion.nightVision.name=야간 시야 포션 # potion.nightVision.splash.name=투척용 야간 시야 포션 # potion.nightVision.linger.name=잔류형 야간 시야 포션 # +potion.oozing.linger.name=오래 가는 진흙 포션 # +potion.oozing.name=진흙 포션 # +potion.oozing.splash.name=투척용 진흙 포션 # +potion.oozing=진흙 # potion.poison=독 # potion.poison.name=독 포션 # potion.poison.splash.name=투척용 독 포션 # @@ -7108,6 +7217,14 @@ potion.weakness=피해 약화 # potion.weakness.name=나약의 포션 # potion.weakness.splash.name=투척용 나약의 포션 # potion.weakness.linger.name=잔류형 나약의 포션 # +potion.weaving.linger.name=오래 가는 위빙 포션 # +potion.weaving.name=위빙 포션 # +potion.weaving.splash.name=투척용 위빙 포션 # +potion.weaving=베 짜기 # +potion.windCharged.linger.name=오래 가는 윈드 차징 포션 # +potion.windCharged.name=윈드 차징 포션 # +potion.windCharged.splash.name=투척용 윈드 차징 포션 # +potion.windCharged=윈드 차지 # potion.wither=위더 # potion.wither.name=부패 포션 # potion.wither.splash.name=투척용 부패 포션 # @@ -7141,9 +7258,9 @@ persona.small.title=소형 # persona.medium.title=중형 # persona.tall.title=대형 # persona.realms.redeem=교환 # -persona.realms.see.subscription=Realms Plus 내 # +persona.realms.see.subscription=Realm Plus 내 # persona.realms.time.remaining=교환하려면 %s # -persona.realms.savings=Realms Plus 구독으로 %s Minecoin을 아꼈습니다! # +persona.realms.savings=Realm Plus 구독으로 %s Minecoin을 아꼈습니다! # persona.csb.savings=Marketplace Pass 구독으로 %s Minecoin을 아꼈습니다! # persona.preview.emote=이모티콘 재생 # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=이 월드는 팩에 문제가 있기 progressScreen.message.forbiddenContent=적용된 팩 중 하나 이상을 보유하지 않았습니다. # progressScreen.message.loadingSplitScreenAppearances=분할 화면 모양 로딩 중... # progressScreen.message.finishedLoadingSplitScreenAppearances=분할 화면 모양 불러오기를 완료했습니다. # -progressScreen.message.modifiedWorldWarning=이 월드는 수정하지 않은 월드와는 모양이나 동작이 다를 수 있으며, 도전 과제를 획득할 수 없습니다. # +progressScreen.message.modifiedWorldWarning.1=추가 콘텐츠가 있는 월드에서 플레이하고 있습니다! 이것은 당신의 Minecraft 월드에 새로운 기능을 추가할 겁니다. # +progressScreen.message.modifiedWorldWarning.2=하나만으로 멈추지 마세요! 월드에 여러 추가 콘텐츠를 한 번에 불러올 수 있습니다. # +progressScreen.message.modifiedWorldWarning.3=고급 팁: 리소스 팩은 다양한 블록과 엔티티의 텍스처를 변경할 수 있습니다. # +progressScreen.message.modifiedWorldWarning.4=고급 팁: 행동 팩은 다양한 아이템, 엔티티 또는 블록의 작동 방식을 변경할 수 있습니다. # +progressScreen.message.modifiedWorldWarning.5=고급 팁: 추가 콘텐츠에는 행동 팩과 리소스 팩이 모두 포함되어 있습니다. 추가 콘텐츠가 올바르게 작동하도록 두 팩이 모두 활성화되어 있는지 확인하세요! # +progressScreen.message.modifiedWorldWarning.6=추가 콘텐츠는 당신의 월드에 새로운 블록, 아이템 또는 몹을 추가합니다. # +progressScreen.message.modifiedWorldWarning.7=월드와 추가 콘텐츠는 복잡합니다! 몇 가지는 잘 어울리지만, 그렇지 않을 수도 있습니다. # +progressScreen.message.modifiedWorldWarning.8=추가 콘텐츠가 많을수록 재미가 커지지만, 게임을 불러오는 시간이 길어질 수 있습니다. # progressScreen.dialog.title.resourcePack=리소스 팩을 다운로드하시겠습니까? # progressScreen.dialog.title.behaviorAndResourcePack=월드 행동 및 리소스 팩을 다운로드하시겠습니까? # progressScreen.dialog.title.onlyBehavior=월드 행동 팩을 다운로드하시겠습니까? # @@ -7299,14 +7423,14 @@ resourcePack.selected.title=선택된 리소스 팩 # resourcePack.selected.title.behaviorPacks=활성화된 행동 팩 # resourcePack.selected.title.packs=활성화 # resourcePack.selected.remove=비활성화 # -resourcePack.realmsPlus.title.packs=Realms Plus 팩 # +resourcePack.realmsPlus.title.packs=Realm Plus 팩 # resourcePack.realmsPlus.title.packs.contentSub=Marketplace Pass 팩 # resourcePack.realmsPlus.expired=만료됨 # resourcePack.errors=오류: # resourcePack.error.ingame.packs=월드에서 플레이하는 중에는 리소스 팩을 변경할 수 없습니다. # resourcePack.error.ingame.behaviorPacks=월드에서 플레이하는 중에는 행동 팩을 변경할 수 없습니다. # resourcePack.error.enteringgame.title=Realm에서 만료된 팩 # -resourcePack.error.enteringgame.message=Realm에 Realms Plus에서 만료된 리소스 또는 행동 팩이 포함되어 있습니다. 이 Realm에서 플레이를 하려면 해당 팩을 비활성화하거나 마켓플레이스에서 구매해야 합니다. # +resourcePack.error.enteringgame.message=Realm에 Realm Plus에서 만료된 리소스 또는 행동 팩이 포함되어 있습니다. 이 Realm에서 플레이를 하려면 해당 팩을 비활성화하거나 마켓플레이스에서 구매해야 합니다. # resourcePack.error.enteringgame.button=활성화 팩 보기 # resourcePack.title=리소스 팩 선택 # resourcePack.toast.atlasFallback.message=메모리가 부족합니다. 텍스처 세부 표현 수준이 하락합니다. # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=월드를 업데이트하시겠습니까? # resourcePack.warning.add.body=이 월드는 모드가 없는 월드와는 모양이나 동작이 다를 수 있습니다. 계속하기 전에 월드의 복사본을 저장해야 합니다. # resourcePack.warning.add.button.cancel=팩을 추가하지 않음 # resourcePack.warning.add.button.ok=그래도 팩 추가 # +resourcePack.warnings.contentKeyErrorBody=%s 팩을 불러오는 중에 문제가 발생했습니다. # +resourcePack.warnings.contentKeyErrorBodyMultiple=%s 팩을 불러오는 중에 문제가 발생했습니다. # +resourcePack.warnings.contentKeyErrorTitle=오류! # resourcePack.warning.remove.title=위험! # resourcePack.warning.remove.body=월드를 플레이한 후 팩을 추가하거나 삭제하면 월드가 손상되어 생성한 콘텐츠를 잃을 수 있습니다. # resourcePack.warning.remove.button.cancel=팩 유지 # @@ -7384,8 +7511,8 @@ sidebar.skinsOwned=소유 스킨 # sidebar.skyblock=Skyblock # sidebar.simulation=시뮬레이션 # sidebar.survival=서바이벌 # -sidebar.realmsPlus=Realms Plus # -sidebar.skinsRealmsPlus=Realms Plus 스킨 # +sidebar.realmsPlus=Realm Plus # +sidebar.skinsRealmsPlus=Realm Plus 스킨 # sidebar.skinsUnowned=더 보기 # sidebar.topSellers=가장 많이 판매한 판매자 # sidebar.trending=인기 # @@ -7557,7 +7684,9 @@ item.crimson_hanging_sign.name=진홍색 매다는 표지판 # item.danger_pottery_sherd.name=위험의 도자기 조각 # item.dark_oak_hanging_sign.name=짙은 참나무 매다는 표지판 # item.explorer_pottery_sherd.name=탐험가 도자기 조각 # +item.flow_pottery_sherd.name=플로우 도자기 조각 # item.friend_pottery_sherd.name=친구 도자기 조각 # +item.guster_pottery_sherd.name=거스터 도자기 조각 # item.heart_pottery_sherd.name=하트 도자기 조각 # item.heartbreak_pottery_sherd.name=비탄의 도자기 조각 # item.howl_pottery_sherd.name=울부짖는 도자기 조각 # @@ -7568,6 +7697,7 @@ item.mourner_pottery_sherd.name=애도자 도자기 조각 # item.oak_hanging_sign.name=참나무 매다는 표지판 # item.plenty_pottery_sherd.name=풍요의 도자기 조각 # item.prize_pottery_sherd.name=상품 도자기 조각 # +item.scrape_pottery_sherd.name=도자기 조각 긁기 # item.sheaf_pottery_sherd.name=뭉치 도자기 조각 # item.shelter_pottery_sherd.name=피난처 도자기 조각 # item.skull_pottery_sherd.name=해골 도자기 조각 # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=체리 계단 # tile.cherry_trapdoor.name=체리 뚜껑문 # tile.cherry_wood.name=체리 원목 # tile.chiseled_bookshelf.name=깎아놓은 책장 # +tile.chiseled_tuff.name=깎아놓은 응회암 # +tile.chiseled_tuff_bricks.name=깎아놓은 응회암 벽돌 # tile.decorated_pot.name=장식 화분 # tile.pink_petals.name=분홍색 꽃잎 # tile.stripped_bamboo_block.name=껍질을 벗긴 대나무 블록 # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=벡스 방어구 트림 # trim_pattern.ward.name=와드 방어구 트림 # trim_pattern.wayfinder.name=웨이파인더 방어구 트림 # trim_pattern.wild.name=미개척지 방어구 트림 # +trim_pattern.bolt.name=볼트 방어구 트림 # +trim_pattern.flow.name=흐름 방어구 트림 # upgrade.netherite_upgrade.name=네더라이트 업그레이드 # storageManager.mainSizeLabel=%s - 아이템 1개 # @@ -7849,8 +7983,8 @@ selectWorld.newWorld.educationCopyOf=[교육] %s # selectWorld.worldTags.experimental=실험 # selectWorld.worldTags.hardcore=하드코어 # ## NOTE: "Realms" is the name of a service and doesn't get localized. -selectWorld.realmsComingSoon=Realms 출시 예정! # -selectWorld.realmsBeta=Realms 베타 # +selectWorld.realmsComingSoon=Realm 출시 예정! # +selectWorld.realmsBeta=Realm 베타 # selectWorld.worldTags=%1$s - %2$s # selectWorld.learnMore=자세한 정보 # selectWorld.recreate=다시 만들기 # @@ -7861,7 +7995,7 @@ selectWorld.resultFolder=저장될 이름: # selectWorld.seedInfo=빈칸으로 놔두면 랜덤 시드가 적용됩니다 # selectWorld.select=선택된 월드 시작 # selectWorld.tab.worlds=월드 # -selectWorld.tab.realms=Realms # +selectWorld.tab.realms=Realm # selectWorld.tab.friends=친구 # selectWorld.tab.classmates=친구 # selectWorld.tab.thirdParty=서버 # @@ -7888,12 +8022,12 @@ selectTemplate.deleteMessage=%s을(를) 영구 삭제합니다. 계속할까요? selectTemplate.delete.confirm=월드 템플릿을 삭제할까요? # selectTemplate.delete=삭제 # selectTemplate.myTemplates=내 월드 템플릿 # -selectTemplate.realmsPlus=추천 Realms Plus 템플릿 # -selectTemplate.marketplacePass=Marketplace Pass 추천 템플릿 #### {StrContains="Marketplace Pass"} +selectTemplate.realmsPlus=추천 Realm Plus 템플릿 # +selectTemplate.marketplacePass=Marketplace Pass 추천 콘텐츠 #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=가져온 템플릿 # selectTemplate.download=다운로드 # selectTemplate.noTemplates=이 장치에는 월드 템플릿이 없습니다. # -selectTemplate.suggestedContent.title=마켓플레이스 추천 템플릿 # +selectTemplate.suggestedContent.title=추천 마켓플레이스 콘텐츠 # selectTemplate.suggestedContent.button=다른 템플릿 보기 # selectTemplate.createdBy=만든 사람: %s # selectTemplate.inventory=내 마켓플레이스 팩 # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=연결 중 문제가 발생했습니다. 돌아 store.loading.error.issues=잠깐만요, 마켓플레이스에 문제가 발생했습니다. 나중에 다시 연결해 보세요. # store.loading.error.internetDown=인터넷 연결을 감지할 수 없습니다. # store.loading.error.account=계정에 문제가 발생했습니다. 잠시 후 다시 시도하고 문제가 지속되면 지원팀에 문의해 주세요. # +store.loading.error.account.banned=정지가 만료될 때까지 마켓플레이스를 사용할 수 없습니다. # store.giftPromo.day=%s 일 ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=신청 완료 # @@ -8054,26 +8189,26 @@ store.promo.claimDay=수령 일자 # store.promo.restrictedPopup.title=플랫폼 제한 # store.promo.restrictedPopup.body=이 아이템은 사용 중인 장치와 호환되지 않습니다. # -store.realmsPreview=Realms 프리뷰 # -store.realmsBeta=Realms 베타 # -store.realmsPlus=Realms Plus # +store.realmsPreview=Realm 프리뷰 # +store.realmsBeta=Realm 베타 # +store.realmsPlus=Realm Plus # store.realmsPlus.content=콘텐츠 # store.realmsPlus.faq=질문과 답변 # store.realmsPlus.buyNow=지금 구독 ### Maximum 13 characters store.realmsPlus.buyNowPerMonth=지금 구독 - 매월 %s # -store.realmsPlus.signInToSubscribe=Realms Plus를 구독하려면 로그인하세요 # +store.realmsPlus.signInToSubscribe=Realm Plus를 구독하려면 로그인하세요 # store.realmsPlus.buyNowTrialPerMonth=체험판 시작 ### Maximum 25 characters store.realmsPlus.errorNoOffer=오류. 할인 발견되지 않음 # store.realmsPlus.manageSubscription=구독 관리 # store.realmsPlus.viewAllPacksTitle=최고의 가치 - §g$150(USD)§r 이상의 가치를 가진 팩! # -store.realmsPlus.nowActive=이제 이 장치에 Realms Plus가 활성화되었습니다. 이제 마켓플레이스에서 추가 비용 없이 150개 이상의 콘텐츠 팩에 접속할 수 있습니다. 귀하의 Realm에서 최대 10명의 플레이어가 동시에 플레이할 수 있고 Realm에서 모든 구독자 콘텐츠에 무료로 접속할 수 있습니다! # +store.realmsPlus.nowActive=이제 이 장치에 Realm Plus가 활성화되었습니다. 이제 마켓플레이스에서 추가 비용 없이 150개 이상의 콘텐츠 팩에 접속할 수 있습니다. 귀하의 Realm에서 최대 10명의 플레이어가 동시에 플레이할 수 있고 Realm에서 모든 구독자 콘텐츠에 무료로 접속할 수 있습니다! # store.realmsPlus.buyNow.buttonText=%s에 구매 # store.realmsPlus.buyNow.viewTerms=이용 약관 # store.realmsPlus.buyNow.viewPrivacyPolicy=개인정보처리방침 # -store.realmsPlus.buyNow.title=Realms Plus 구독 시작 # +store.realmsPlus.buyNow.title=Realm Plus 구독 시작 # store.realmsPlus.startTrial.description=Realm과 150개 이상의 마켓플레이스 팩을 즉시 사용할 수 있게 됩니다. 또한 최대 10명의 플레이어가 동시에 플레이를 할 수 있으며, 귀하의 Realm의 월드에 무료로 액세스할 수도 있습니다! 첫 달은 무료고 그 후 매월 %s의 요금이 청구되며, 언제든지 취소할 수 있습니다. # store.realmsPlus.startTrial.description.contentSub=Realm과 Marketplace Pass에 포함된 150개 이상의 마켓플레이스 팩을 즉시 사용할 수 있게 됩니다. 또한 최대 10명의 플레이어가 동시에 플레이를 할 수 있으며, 귀하의 Realm의 월드에 무료로 액세스할 수도 있습니다! 첫 달은 무료고 그 후 매월 %s의 요금이 청구되며, 언제든지 취소할 수 있습니다. # store.realmsPlus.noTrial.description=Realm과 150개 이상의 마켓플레이스 팩을 즉시 사용할 수 있게 됩니다. 또한 최대 10명의 플레이어가 동시에 플레이를 할 수 있으며, 내 Realm의 월드에 무료로 액세스할 수도 있습니다! 30일 동안 :minecoin:%s에 정기 서비스를 이용할 수 있습니다. # @@ -8082,10 +8217,10 @@ store.realmsPlus.noTrial.description.iap=Realm과 150개 이상의 마켓플레 store.realmsPlus.noTrial.description.iap.contentSub=Realm과 Marketplace Pass에 포함된 150개 이상의 마켓플레이스 팩을 즉시 사용할 수 있습니다. 한 번에 최대 10명의 플레이어가 플레이할 수 있으며, 내 영역의 모든 월드를 무료로 이용할 수 있습니다! 월 %s이(가) 청구되며, 구독 설정에 액세스하여 구독을 취소하여 향후 요금이 청구되지 않도록 할 수 있습니다. # store.realmsPlus.realmName.placeholder=%s님의 Realm #The string passed in here is the gamertag of the player to indicate the name of the player's world. # -store.realmsPlus.recurring.offerTrial=Realms Plus는 정기 서비스를 취소할 때까지 매월 정기 서비스 자동 결제 요금이 청구되는 정기 서비스 상품입니다.%sRealm과 150개 이상의 마켓플레이스 팩을 즉시 사용할 수 있게 됩니다. 또한 최대 10명의 플레이어가 동시에 플레이를 할 수 있으며, 귀하의 Realm의 월드에 무료로 액세스할 수도 있습니다! 첫 30일은 무료고 그 후 매월 %s의 요금이 청구되며, 정기 서비스 설정에서 언제든 정기 서비스를 취소하여 이후 청구를 중단할 수 있습니다. # -store.realmsPlus.recurring.offerTrial.contentSub=Realms Plus는 정기 서비스를 취소할 때까지 매월 정기 서비스 자동 결제 요금이 청구되는 정기 서비스 상품입니다.%sRealm과 Marketplace Pass에 포함된 150개 이상의 마켓플레이스 팩을 즉시 사용할 수 있게 됩니다. 또한 최대 10명의 플레이어가 동시에 플레이를 할 수 있으며, 귀하의 Realm의 월드에 무료로 액세스할 수도 있습니다! 첫 30일은 무료고 그 후 매월 %s의 요금이 청구되며, 정기 서비스 설정에서 언제든 정기 서비스를 취소하여 이후 청구를 중단할 수 있습니다. # -store.realmsPlus.recurring.withoutTrial=Realms Plus는 정기 서비스를 취소할 때까지 매월 정기 서비스 자동 결제 요금이 청구되는 정기 서비스 상품입니다.%sRealm과 150개 이상의 마켓플레이스 팩을 즉시 사용할 수 있게 됩니다. 또한 최대 10명의 플레이어가 동시에 플레이를 할 수 있으며, 귀하의 Realm의 월드에 무료로 액세스할 수도 있습니다! 매월 %s의 요금이 청구되며, 정기 서비스 설정에서 언제든 정기 서비스를 취소하여 이후 청구를 중단할 수 있습니다. # -store.realmsPlus.recurring.withoutTrial.contentSub=Realms Plus는 정기 서비스를 취소할 때까지 매월 정기 서비스 자동 결제 요금이 청구되는 정기 서비스 상품입니다.%sRealm과 마켓 플레이스 팩에 포함된 150개 이상의 마켓플레이스 팩을 즉시 사용할 수 있게 됩니다. 또한 최대 10명의 플레이어가 동시에 플레이를 할 수 있으며, 귀하의 Realm의 월드에 무료로 액세스할 수도 있습니다! 매월 %s의 요금이 청구되며, 정기 서비스 설정에서 언제든 정기 서비스를 취소하여 이후 청구를 중단할 수 있습니다. # +store.realmsPlus.recurring.offerTrial=Realm Plus는 정기 서비스를 취소할 때까지 매월 정기 서비스 자동 결제 요금이 청구되는 정기 서비스 상품입니다.%sRealm과 150개 이상의 마켓플레이스 팩을 즉시 사용할 수 있게 됩니다. 또한 최대 10명의 플레이어가 동시에 플레이를 할 수 있으며, 귀하의 Realm의 월드에 무료로 액세스할 수도 있습니다! 첫 30일은 무료고 그 후 매월 %s의 요금이 청구되며, 정기 서비스 설정에서 언제든 정기 서비스를 취소하여 이후 청구를 중단할 수 있습니다. # +store.realmsPlus.recurring.offerTrial.contentSub=Realm Plus는 정기 서비스를 취소할 때까지 매월 정기 서비스 자동 결제 요금이 청구되는 정기 서비스 상품입니다.%sRealm과 마켓플레이스 패스에 포함된 150개 이상의 마켓플레이스 팩을 즉시 사용할 수 있게 됩니다. 또한 최대 10명의 플레이어가 동시에 플레이를 할 수 있으며, 귀하의 Realm의 월드에 무료로 액세스할 수도 있습니다! 첫 30일은 무료고 그 후 매월 %s의 요금이 청구되며, 정기 서비스 설정에서 언제든 정기 서비스를 취소하여 이후 청구를 중단할 수 있습니다. # +store.realmsPlus.recurring.withoutTrial=Realm Plus는 정기 서비스를 취소할 때까지 매월 정기 서비스 자동 결제 요금이 청구되는 정기 서비스 상품입니다.%sRealm과 150개 이상의 마켓플레이스 팩을 즉시 사용할 수 있게 됩니다. 또한 최대 10명의 플레이어가 동시에 플레이를 할 수 있으며, 귀하의 Realm의 월드에 무료로 액세스할 수도 있습니다! 매월 %s의 요금이 청구되며, 정기 서비스 설정에서 언제든 정기 서비스를 취소하여 이후 청구를 중단할 수 있습니다. # +store.realmsPlus.recurring.withoutTrial.contentSub=Realm Plus는 정기 서비스를 취소할 때까지 매월 정기 서비스 자동 결제 요금이 청구되는 정기 서비스 상품입니다.%sRealm과 마켓플레이스 패스에 포함된 150개 이상의 마켓플레이스 팩을 즉시 사용할 수 있게 됩니다. 또한 최대 10명의 플레이어가 동시에 플레이를 할 수 있으며, 귀하의 Realm의 월드에 무료로 액세스할 수도 있습니다! 매월 %s의 요금이 청구되며, 정기 서비스 설정에서 언제든 정기 서비스를 취소하여 이후 청구를 중단할 수 있습니다. # store.realmsPlus.consumable.offerTrial=Realm과 150개 이상의 마켓플레이스 팩을 즉시 사용할 수 있게 됩니다. 또한 최대 10명의 플레이어가 동시에 플레이를 할 수 있으며, 귀하의 Realm의 월드에 무료로 액세스할 수도 있습니다! 첫 30일은 무료고, 그 후 30일마다 %s의 가격으로 서비스를 갱신할 수 있습니다. # store.realmsPlus.consumable.offerTrial.contentSub=Realm과 Marketplace Pass에 포함된 150개 이상의 마켓플레이스 팩을 즉시 사용할 수 있게 됩니다. 또한 최대 10명의 플레이어가 동시에 플레이를 할 수 있으며, 귀하의 Realm의 월드에 무료로 액세스할 수도 있습니다! 첫 30일은 무료고, 그 후 30일마다 %s의 가격으로 서비스를 갱신할 수 있습니다. # store.realmsPlus.consumable.withoutTrial=Realm과 150개 이상의 마켓플레이스 팩을 즉시 사용할 수 있게 됩니다. 또한 최대 10명의 플레이어가 동시에 플레이를 할 수 있으며, 귀하의 Realm의 월드에 무료로 액세스할 수도 있습니다! 30일 동안 %s에 정기 서비스를 이용할 수 있습니다. # @@ -8106,42 +8241,42 @@ store.realmsPlus.landing.info2.cancel=Minecraft 설정의 구독 페이지에서 store.realmsPlus.landing.info2.subscribe=매월 %s에 지금 구독하세요 # store.realmsPlus.landing.info2.recentlyAdded=최근 추가한 항목 # store.realmsPlus.landing.info2.persona=무료 캐릭터 만들기 아이템. 매달 새로운 세트를 받으세요! # -store.realmsPlus.landing.info2.social=Realms 스토리로 인싸가 되세요 # +store.realmsPlus.landing.info2.social=Realm 스토리로 인싸가 되세요 # store.realmsPlus.landing.beta=베타 # store.realmsPlus.landing.preview=프리뷰 # -store.realmsPlus.landing.info3.para1=Realms는 Minecraft %s의 모든 Realms 구독자에게 무료로 제공됩니다! 이 새로운 Realm은 새로운 기능이 출시되기 전에 미리 체험해볼 수 있는 기회를 제공합니다. # -store.realmsPlus.landing.info3.para2=Realms를 구독하면 기본 메뉴의 '새로 만들기' 버튼을 사용하여 새로운 %s Realm을 만들 수 있습니다. 아직 구독하지 않았다면, Minecraft 정식 버전으로 이동하여 가입하세요. # -store.realmsPlus.landing.info3.para3=새 구독을 구매하거나 기존 Realms의 구독을 관리하는 것을 제외한 모든 Realms 화면과 기능은 %s에서 사용할 수 있습니다. # +store.realmsPlus.landing.info3.para1=Realm은 Minecraft %s의 모든 Realm 구독자에게 무료로 제공됩니다! 이 새로운 Realm은 새로운 기능이 출시되기 전에 미리 체험해볼 수 있는 기회를 제공합니다. # +store.realmsPlus.landing.info3.para2=Realm을 구독하면 기본 메뉴의 '새로 만들기' 버튼을 사용하여 새로운 %s Realm을 만들 수 있습니다. 아직 구독하지 않았다면, Minecraft 정식 버전으로 이동하여 가입하세요. # +store.realmsPlus.landing.info3.para3=새 구독을 구매하거나 기존 Realm의 구독을 관리하는 것을 제외한 모든 Realm 화면과 기능은 %s에서 사용할 수 있습니다. # store.realmsPlus.landing.info3.para4=%s Realm은 %s Realm이 연결된 유료 Realm 구독이 있는 한 활성 상태로 유지됩니다. # store.realmsPlus.faq.header=자주 묻는 질문 # -store.realmsPlus.faq.question1=Realms Plus는 무엇인가요? # -store.realmsPlus.faq.answer1=Realms Plus는 동시에 10명의 플레이어를 지원하는 개인 서버 정기 서비스이며, 매월 저렴한 가격으로 150가지가 넘는 뛰어난 Minecraft 월드, 텍스처 팩, 스킨 팩, 매시업을 무제한 이용할 수 있습니다. # +store.realmsPlus.faq.question1=Realm Plus는 무엇인가요? # +store.realmsPlus.faq.answer1=Realm Plus는 동시에 10명의 플레이어를 지원하는 개인 서버 정기 서비스이며, 매월 저렴한 가격으로 150가지가 넘는 뛰어난 Minecraft 월드, 텍스처 팩, 스킨 팩, 매시업을 무제한 이용할 수 있습니다. # store.realmsPlus.faq.question2=개인 서버란 무엇인가요? # store.realmsPlus.faq.answer2=개인 서버를 사용하면 Minecraft 마켓플레이스가 있는 모든 장치에 언제든 온라인으로 접근할 수 있는 공유형 월드를 생성할 수 있습니다. 여러분이 Realm에 초대한 플레이어는 언제든 해당 월드에서 플레이할 수 있습니다. # -store.realmsPlus.faq.question3=친구들도 Realms Plus를 구매해야 내 Realm에서 플레이할 수 있나요? # -store.realmsPlus.faq.answer3=친구들이 Realms Plus 정기 서비스를 구매해야 내 Realm에서 플레이할 수 있는 것은 아닙니다. 멀티 플레이 이용 권한이 있는 친구라면 누구든 내 Realm을 무료로 이용할 수 있도록 초대할 수 있습니다. # -store.realmsPlus.faq.question4=어떤 장치에서 Minecraft Realms Plus를 지원하나요? # -store.realmsPlus.faq.answer4=Realms Plus는 현재 Minecraft Bedrock Edition을 설치할 수 있는 모든 플랫폼에서 사용할 수 있습니다. Microsoft 계정으로 로그인할 경우 해당 기기에서 Realm을 플레이할 수 있으며 Realms Plus의 모든 콘텐츠를 사용할 수 있습니다. ###disable_3rd_party_console_resource_pack_check -store.realmsPlus.faq.question5=Realms Plus 구독 요금은 얼마인가요? # +store.realmsPlus.faq.question3=친구들도 Realm Plus를 구매해야 내 Realm에서 플레이할 수 있나요? # +store.realmsPlus.faq.answer3=친구들이 Realm Plus 정기 서비스를 구매해야 내 Realm에서 플레이할 수 있는 것은 아닙니다. 멀티플레이 이용 권한이 있는 친구라면 누구든 내 Realm을 무료로 이용할 수 있도록 초대할 수 있습니다. # +store.realmsPlus.faq.question4=어떤 장치에서 Minecraft Realm Plus를 지원하나요? # +store.realmsPlus.faq.answer4=Realm Plus는 현재 Minecraft Bedrock Edition을 설치할 수 있는 모든 플랫폼에서 사용할 수 있습니다. Microsoft 계정으로 로그인할 경우 해당 기기에서 Realm을 플레이할 수 있으며 Realm Plus의 모든 콘텐츠를 사용할 수 있습니다. ###disable_3rd_party_console_resource_pack_check +store.realmsPlus.faq.question5=Realm Plus 구독 요금은 얼마인가요? # store.realmsPlus.faq.answer5=매월 %s에 10인 플레이어 서버 및 150개 이상의 마켓플레이스 팩 이용 권한을 제공합니다. # store.realmsPlus.faq.answer5.contentSub=매월 %s. 멤버를 무한하게 추가하여 다른 플레이어 10명과 동시에 온라인으로 플레이하세요. 그리고 Marketplace Pass 카탈로그에 있는 150개 이상의 마켓플레이스 콘텐츠를 무료로 즐기세요. # -store.realmsPlus.faq.question6=Realms Plus에 새 팩이 얼마나 자주 추가되나요? # -store.realmsPlus.faq.answer6=새 팩은 매달 Realms Plus에 추가됩니다. # -store.realmsPlus.faq.question7=Realms Plus 내의 팩들은 얼마나 오래 접속할 수 있나요? # -store.realmsPlus.faq.answer7=Realms Plus 멤버는 150가지가 넘는 엄청난 Minecraft 월드, 텍스처 팩, 스킨 팩, 매시업 등을 정기 서비스가 만료되거나 팩이 카탈로그에서 제외될 때까지 무제한으로 이용할 수 있습니다. # -store.realmsPlus.faq.question8=어디서 내 Realms Plus 팩을 이용할 수 있나요? # +store.realmsPlus.faq.question6=Realm Plus에 새 팩이 얼마나 자주 추가되나요? # +store.realmsPlus.faq.answer6=새 팩은 매달 Realm Plus에 추가됩니다. # +store.realmsPlus.faq.question7=Realm Plus 내의 팩들은 얼마나 오래 접속할 수 있나요? # +store.realmsPlus.faq.answer7=Realm Plus 멤버는 150가지가 넘는 엄청난 Minecraft 월드, 텍스처 팩, 스킨 팩, 매시업 등을 정기 서비스가 만료되거나 팩이 카탈로그에서 제외될 때까지 무제한으로 이용할 수 있습니다. # +store.realmsPlus.faq.question8=어디서 내 Realm Plus 팩을 이용할 수 있나요? # store.realmsPlus.faq.answer8=정기 서비스에 포함된 월드와 팩은 온라인, 개인 Realm, 로컬 장치에서 플레이할 수 있습니다. 30일에 최소 한 번 온라인으로 플레이하여 정기 서비스가 활성화되어 있음을 확인하면 됩니다. # -store.realmsPlus.faq.question9=정기 서비스가 만료되면 내 Realms와 월드는 어떻게 되나요? # -store.realmsPlus.faq.answer9=정기 서비스가 종료되면 여러분과 친구들이 Realm에서 온라인으로 함께 플레이할 수 없고, Realms Plus 팩에 접속할 수 없습니다. 정기 서비스 종료 후 18개월 동안 Realm에 저장된 모든 월드를 다운로드할 수 있습니다. Realms Plus 월드, 텍스처 팩 또는 매시업을 이용했다면 해당 팩을 상점에서 구매해야 하며, 아직 Realms Plus에 남아 있다면 재구독해서 해당 월드 템플릿을 플레이할 수 있습니다. # -store.realmsPlus.faq.question10=Realms Plus와 Marketplace Pass 둘 다 꼭 구매해야 하나요? # -store.realmsPlus.faq.answer10=아니요. Marketplace Pass는 150개 이상의 팩을 포함하는 카탈로그입니다. Realms Plus는 Marketplace Pass가 포함된 10인 플레이어 Realm입니다. 그러므로 당신에게 적합한 것을 골라서 구독하는 것을 권장합니다. # -store.realmsPlus.faq.question11=Realms 스토리는 무엇인가요? # -store.realmsPlus.faq.answer11=Realms 스토리는 내 Realm과 관련된 소셜 허브입니다. 스토리 피드에 게시물을 올려 지금 무엇을 하는지 다른 사람들에게 알리고 모험과 창작물을 공유하세요. 멤버 목록으로 누가 누구인지 쉽게 확인할 수 있습니다. 다른 멤버들이 플레이하는 시간을 확인하고 창작물을 구경하러 가거나, 추후에 함께 할 계획을 세우세요. # - -store.realmsPlus.content.marketplacePass=Realms Plus에는 Marketplace Pass가 포함되어 있습니다! # +store.realmsPlus.faq.question9=정기 서비스가 만료되면 내 Realm와 월드는 어떻게 되나요? # +store.realmsPlus.faq.answer9=정기 서비스가 종료되면 여러분과 친구들이 Realm에서 온라인으로 함께 플레이할 수 없고, Realm Plus 팩에 접속할 수 없습니다. 정기 서비스 종료 후 18개월 동안 Realm에 저장된 모든 월드를 다운로드할 수 있습니다. Realm Plus 월드, 텍스처 팩 또는 매시업을 이용했다면 해당 팩을 상점에서 구매해야 하며, 아직 Realm Plus에 남아 있다면 재구독해서 해당 월드 템플릿을 플레이할 수 있습니다. # +store.realmsPlus.faq.question10=Realm Plus와 마켓플레이스 패스 둘 다 꼭 구매해야 하나요? # +store.realmsPlus.faq.answer10=아니요. 마켓플레이스 패스는 150개 이상의 팩을 포함하는 카탈로그입니다. Realm Plus는 마켓플레이스 패스가 포함된 10인 플레이어 Realm입니다. 그러므로 당신에게 적합한 것을 골라서 구독하는 것을 권장합니다. # +store.realmsPlus.faq.question11=Realm 스토리는 무엇인가요? # +store.realmsPlus.faq.answer11=Realm 스토리는 내 Realm과 관련된 소셜 허브입니다. 스토리 피드에 게시물을 올려 지금 무엇을 하는지 다른 사람들에게 알리고 모험과 창작물을 공유하세요. 멤버 목록으로 누가 누구인지 쉽게 확인할 수 있습니다. 다른 멤버들이 플레이하는 시간을 확인하고 창작물을 구경하러 가거나, 추후에 함께 할 계획을 세우세요. # + +store.realmsPlus.content.marketplacePass=Realm Plus에는 마켓플레이스 패스가 포함되어 있습니다! # store.realmsPlus.content.skinDescription=스킨으로 외모를 바꾸세요! # store.realmsPlus.content.skinDescriptionPersona=스킨으로 옷을 입으세요! # store.realmsPlus.content.skinDescriptionPersona.contentSub=스킨으로 여러분의 옷장을 확장하세요! # @@ -8155,14 +8290,14 @@ store.realmsPlus.content.personaDescription.contentSub=탈의실에서 매달 store.realmsPlus.content.recentlyAdded=최근 추가한 항목 # store.realmsPlus.content.friendsGetAccess=친구들이 귀하의 Realm에서 사용된 콘텐츠를 무료로 이용할 수 있습니다. # -store.realmsPlus.content.popularPacks=Realms Plus의 인기 있는 팩들: # +store.realmsPlus.content.popularPacks=Realm Plus의 인기 있는 팩: # store.realmsPlus.content.viewAllPacks=모든 팩 보기 # -store.realmsPlus.content.contentDescription=놀라운 Minecraft 콘텐츠 소스를 활용하세요! Realms Plus로 매시업, 월드, 스킨 팩, 에픽 모험 등 150가지 이상의 마켓플레이스 아이템을 바로 이용할 수 있습니다. 또한 매월 새로운 아이템이 추가됩니다. 여러분의 콘텐츠는 개인 서버에 저장되며, Realms와 Minecraft 마켓플레이스를 이용하는 모든 플랫폼에서 사용할 수 있습니다. 최대 10명의 플레이어가 동시에 플레이하고 무료로 내 Realm의 월드를 이용할 수 있습니다! # +store.realmsPlus.content.contentDescription=놀라운 Minecraft 콘텐츠 소스를 활용하세요! Realm Plus로 매시업, 월드, 스킨 팩, 에픽 모험 등 150가지 이상의 마켓플레이스 아이템을 바로 이용할 수 있습니다. 또한 매월 새로운 아이템이 추가됩니다. 여러분의 콘텐츠는 개인 서버에 저장되며, Realm과 Minecraft 마켓플레이스를 이용하는 모든 플랫폼에서 사용할 수 있습니다. 최대 10명의 플레이어가 동시에 플레이하고 무료로 내 Realm의 월드를 이용할 수 있습니다! # store.realmsPlus.freeTrial=무료 체험판 시작 # store.realmsPlus.purchase.warningDialog.title=알림 # -store.realmsPlus.purchase.warningDialog.body=Realms Plus에는 Marketplace Pass 콘텐츠가 포함되어 있습니다. Realms Plus에 가입한 후에는 Marketplace Pass 구독을 취소하는 것이 좋습니다. #### {StrContains="Marketplace Pass"} +store.realmsPlus.purchase.warningDialog.body=Realm Plus에는 마켓플레이스 패스 콘텐츠가 포함되어 있습니다. Realm Plus에 가입한 후에는 Marketplace Pass 구독을 취소하는 것이 좋습니다. #### {StrContains="Marketplace Pass"} store.realmsPlus.purchase.warningDialog.checkbox=이해했습니다 # store.realmsPlus.purchase.warningDialog.button.back=돌아가기 # store.realmsPlus.purchase.warningDialog.button.continue=구매 # @@ -8220,10 +8355,10 @@ store.csb.faq.question4=Marketplace Pass를 해지하면 내 콘텐츠는 어떻 store.csb.faq.answer4=카탈로그에서 삭제된 월드, 텍스처 팩, 스킨 팩, 매시업을 계속 플레이하려면 마켓플레이스에서 해당 아이템을 구매해야 합니다. 팩은 삭제할 때까지 로컬 저장소에 저장됩니다. 사용한 월간 캐릭터 만들기 아이템은 보유할 수 있습니다. # store.csb.faq.question5=구독이 끝나면 어떻게 되나요? # store.csb.faq.answer5=Minecraft에서 제공 중인 아이템이라면, 구독 종료 후 18개월 이내에 클라우드 저장소에 저장된 모든 월드 템플릿을 구매하여 다운로드할 수 있습니다. 사용한 월간 캐릭터 만들기 아이템은 보유할 수 있습니다. # -store.csb.faq.question6=이것과 Realms Plus의 차이점은 무엇인가요? # -store.csb.faq.answer6=두 구독의 차이점은 Realms Plus에는 한 번에 최대 10명의 친구와 플레이할 수 있는 개인 서버가 포함되어 있다는 것입니다. Marketplace Pass 구독으로 액세스할 수 있는 컨텐츠 카탈로그는 Realms Plus 구독에서 사용할 수 있는 것과 동일한 카탈로그입니다. #### {StrContains="Marketplace Pass"} -store.csb.faq.question7=Marketplace Pass와 Realms Plus를 모두 구독할 수 있나요? #### {StrContains="Marketplace Pass"} -store.csb.faq.answer7=Realms Plus 구독은 Marketplace Pass를 포함합니다. Marketplace Pass를 구독하고 Realms Plus를 탐험하고 싶다면, 먼저 Marketplace Pass의 구독을 해지하세요. Realms Plus 구독을 활성화한 구독자는 Marketplace Pass를 구독할 수 없습니다. #### {StrContains="Marketplace Pass"} +store.csb.faq.question6=이것과 Realm Plus의 차이점은 무엇인가요? # +store.csb.faq.answer6=두 구독의 차이점은 Realm Plus에는 한 번에 최대 10명의 친구와 플레이할 수 있는 개인 서버가 포함되어 있다는 것입니다. Marketplace Pass 구독으로 액세스할 수 있는 컨텐츠 카탈로그는 Realm Plus 구독에서 사용할 수 있는 것과 동일한 카탈로그입니다. #### {StrContains="Marketplace Pass"} +store.csb.faq.question7=Marketplace Pass와 Realm Plus를 모두 구독할 수 있나요? #### {StrContains="Marketplace Pass"} +store.csb.faq.answer7=Realm Plus 구독은 Marketplace Pass를 포함합니다. 마켓플레이스 패스를 구독하고 Realm Plus를 탐험하고 싶다면, 먼저 Marketplace Pass의 구독을 해지하세요. Realm Plus 구독을 활성화한 구독자는 Marketplace Pass를 구독할 수 없습니다. #### {StrContains="Marketplace Pass"} store.csb.faq.question8=어떤 기기에서든 Marketplace Pass 콘텐츠를 이용할 수 있나요? #### {StrContains="Marketplace Pass"} store.csb.faq.answer8=Marketplace Pass를 구매한 경우, Marketplace 계정에 로그인하면 Minecraft Marketplace(별도 판매)가 포함된 Minecraft: Bedrock Edition의 호환 버전이 있는 기기에서 모든 팩에 액세스할 수 있습니다. Amazon Kindle Fire 또는 Minecraft Java Edition에서는 지원되지 않습니다. #### {StrContains="Marketplace Pass"} store.csb.faq.question9=Windows 또는 XBOX에서 Minecraft 베타에 참여하면 Marketplace Pass 콘텐츠를 플레이할 수 있나요? #### {StrContains="Marketplace Pass"} @@ -8248,8 +8383,8 @@ store.csb.welcomeDialog.body=지금 바로 150개 이상의 모험, 미니 게 store.csb.welcomeDialog.continue=브라우저 사용 시작하기 # store.csb.purchase.warningDialog.title=알림 # -store.csb.purchase.warningDialog.body.line1=Marketplace Pass는 Realms Plus 구독에 포함되어 있습니다. #### {StrContains="Marketplace Pass"} -store.csb.purchase.warningDialog.body.line2=활성화된 Realms Plus 구독을 취소한 후 구매를 시도하세요. # +store.csb.purchase.warningDialog.body.line1=Marketplace Pass는 Realm Plus 구독에 포함되어 있습니다. #### {StrContains="Marketplace Pass"} +store.csb.purchase.warningDialog.body.line2=활성화된 Realm Plus 구독을 취소한 후 구매를 시도하세요. # store.csb.purchase.warningDialog.button.back=돌아가기 # store.csb.upsell.bestValue=최고의 가격 # @@ -8266,7 +8401,7 @@ store.csb.upsell.learnMore=더 알아보기 # store.csb.upsell.price=%s/월 # store.csb.upsell.firstPeriodFree=30일 무료 체험! # -store.csb.upsell.realmsPlus=§dREALMS PLUS # +store.csb.upsell.realmsPlus=§dRealm PLUS # store.csb.purchaseErrorDialog.title=구입 오류 # store.csb.purchaseErrorDialog.body=지금 구독을 처리하는 데 문제가 있습니다. 잠시 후 다시 시도해 주세요. 감사합니다! # @@ -8405,10 +8540,17 @@ store.mashup.count.skin=스킨 1개 # store.mashup.count.skins=스킨 %s개 # store.mashup.count.texturePack=텍스처 팩 1개 # store.mashup.count.texturePacks=텍스처 팩 %s개 #number of texture packs # -store.mashup.count.world=월드 1개 # +store.mashup.count.world=월드 1개 # store.mashup.count.worlds=월드 %s개 #number of worlds # store.mashup.count.addonPack=추가 콘텐츠 1개 # store.mashup.count.addonPacks=추가 콘텐츠 %s개 #number of addons # +store.mashup.count.mashup=매시업 # +store.mashup.hover.label.addonPack=추가 콘텐츠는 모든 월드에 적용할 수 있습니다. # +store.mashup.hover.label.world=수제작한 Minecraft 지도입니다. # +store.mashup.hover.label.skin=캐릭터에 새로운 외형을 적용하세요. # +store.mashup.hover.label.texturePack=월드나 게임 인터페이스에 새로운 시각적 요소를 추가하세요. # +store.mashup.hover.label.mashup.lineOne=다양한 유형의 콘텐츠의 조합입니다. # +store.mashup.hover.label.mashup.lineTwo=이 매시업의 포함 내역: # store.addon.activateAddonPack=추가 콘텐츠 활성화! # store.addon.newOrExistingTitle=어디에 추가할까요? # @@ -8417,13 +8559,13 @@ store.addon.choseNewWorld=신규 # store.addon.selectWorldTitle=월드 선택 # store.addon.continue=계속하기 # store.addon.local.worlds.title=월드(%s) # -store.addon.realms.worlds.title=Realms(%s) # +store.addon.realms.worlds.title=Realm(%s) # store.addon.update.local.title=월드를 업데이트하시겠습니까? # store.addon.update.local.body1=이 월드는 수정하지 않은 월드와는 모양이나 동작이 다를 수 있으며, 도전 과제를 획득할 수 없습니다. # store.addon.update.local.body2=계속하기 전에 월드의 사본을 저장하는 것이 좋습니다. # store.addon.update.local.buttonCopy=사본 생성 및 계속하기 # store.addon.update.local.buttonContinue=계속하기 # -store.addon.update.realms.title=Realms에서 월드를 업데이트하시겠습니까? # +store.addon.update.realms.title=Realm에서 월드를 업데이트하시겠어요? # store.addon.update.realms.body1=이 월드는 수정하지 않은 월드와는 모양이나 동작이 다를 수 있으며, 도전 과제를 획득할 수 없습니다. # store.addon.update.realms.body2=Realm의 백업은 자동으로 저장되지만, 해당 백업을 영구적으로 보존하려면 기기에 로컬로 다운로드해야 합니다. # store.addon.update.realms.buttonCopy=다운로드 및 계속하기 # @@ -8525,7 +8667,7 @@ store.coins.fixAppReceipt.button=상점 로그인 # store.purchase.toast.generic=구매 완료: %s # -store.featured.realms.title=Realms 무료 체험 # +store.featured.realms.title=Realm 무료 체험 # store.featured.realms.desc=친구들과 함께 Minecraft를 플레이할 가장 좋은 방법을 경험하십시오. # store.hyperlink.creator.notFound=죄송합니다. 하이퍼링크에 지정된 제작자를 찾을 수 없습니다. # @@ -8639,7 +8781,7 @@ store.search.filter.creator.selectedCount=%d 제작자 # store.search.filter.offer_type=할인 유형 # store.search.filter.offer_type.selectedCount=할인 유형 %d개 # store.search.filter.offer_type.bundles=번들 # -store.search.filter.offer_type.realmsplus=Realms Plus # +store.search.filter.offer_type.realmsplus=Realm Plus # store.search.filter.offer_type.csb=Marketplace Pass #### {StrContains="Marketplace Pass"} store.search.filter.clear.pack_type=팩 유형 필터 지우기 # @@ -8694,7 +8836,7 @@ store.uploadContentToRealmsProgressText=선택한 콘텐츠를 Realm에 적용 store.uploadContentToRealmsFail.message=선택한 Realms에 콘텐츠를 업로드하지 못했습니다! # store.uploadContentToRealmsFail.forbidden.message=적용된 콘텐츠 중 하나 이상을 보유하지 않았습니다! # store.applyToRealm=Realm에서 만들기 # -store.inRealmsPlus=Realms Plus 내 # +store.inRealmsPlus=Realm Plus 내 # store.inCsb=Marketplace Pass에 있음 #### {StrContains="Marketplace Pass"} store.uploadWorldTitle=월드를 교체할까요? # store.uploadPackTitle=팩을 교체할까요? # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=칠판 # tile.chest.name=상자 # tile.ender_chest.name=엔더 상자 # tile.jigsaw.name=직소 블록 # +tile.heavy_core.name=무거운 코어 # tile.honey_block.name=꿀 블록 # tile.honeycomb_block.name=벌집 블록 # tile.lodestone.name=자석석 # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=광택 블랙스톤 판 # tile.polished_blackstone_pressure_plate.name=광택 블랙스톤 감압판 # tile.polished_blackstone_button.name=광택 블랙스톤 버튼 # tile.polished_blackstone_wall.name=광택 블랙스톤 벽 # +tile.polished_tuff.name=광택 나는 응회암 # +tile.polished_tuff_slab.name=광택 나는 응회암 판 # +tile.polished_tuff_stairs.name=광택 나는 응회암 계단 # +tile.polished_tuff_wall.name=광택 나는 응회암 벽 # tile.soul_campfire.name=영혼의 모닥불 # tile.chiseled_nether_bricks.name=깎아놓은 네더 벽돌 # tile.cracked_nether_bricks.name=갈라진 네더 벽돌 # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=노란색 테라코타 # tile.structure_block.name=구조물 블록 # structure_block.waterlog_block=워터로그 블록 # tile.structure_void.name=구조물 공허 공간 # +tile.trial_spawner.name=체험판 생성지 # +tile.vault.name=금고 털기 # tile.wool.black.name=검은색 양털 # tile.wool.blue.name=파란색 양털 # tile.wool.brown.name=갈색 양털 # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=양치식물 # tile.tallgrass.grass.name=잔디 # tile.tallgrass.name=잔디 # tile.tallgrass.shrub.name=관목 # +tile.tuff_brick_slab.name=응회암 벽돌 판 # +tile.tuff_brick_stairs.name=응회암 벽돌 계단 # +tile.tuff_brick_wall.name=응회암 벽돌 벽 # +tile.tuff_bricks.name=응회암 벽돌 # +tile.tuff_slab.name=응회암 판 # +tile.tuff_stairs.name=응회암 계단 # +tile.tuff_wall.name=응회암 벽 # tile.seagrass.seagrass.name=해초 # tile.sea_pickle.name=해삼 # tile.turtle_egg.name=바다 거북 알 # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=빨간색 카펫 # tile.carpet.silver.name=밝은 회색 카펫 # tile.carpet.white.name=흰색 카펫 # tile.carpet.yellow.name=노란색 카펫 # +tile.crafter.name=제작자 # tile.crafting_table.name=작업대 # tile.glazedTerracotta.white.name=흰색 유광 테라코타 # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=왁스 절단된 구리 판 # tile.waxed_exposed_cut_copper_slab.name=왁스 노출 절단된 구리 판 # tile.waxed_weathered_cut_copper_slab.name=왁스 풍화 절단된 구리 판 # tile.waxed_oxidized_cut_copper_slab.name=왁스 산화 절단된 구리 판 # + +tile.chiseled_copper.name=깎아놓은 구리 # +tile.exposed_chiseled_copper.name=노출된 깎아놓은 구리 # +tile.oxidized_chiseled_copper.name=산화된 깎아놓은 구리 # +tile.waxed_chiseled_copper.name=왁스 깎아놓은 구리 # +tile.waxed_exposed_chiseled_copper.name=왁스 노출된 깎아놓은 구리 # +tile.waxed_oxidized_chiseled_copper.name=왁스 산화된 깎아놓은 구리 # +tile.waxed_weathered_chiseled_copper.name=왁스 풍화된 깎아놓은 구리 # +tile.weathered_chiseled_copper.name=풍화된 깎아놓은 구리 # + +tile.copper_bulb.name=구리 전구 # +tile.exposed_copper_bulb.name=노출된 구리 전구 # +tile.oxidized_copper_bulb.name=산화된 구리 전구 # +tile.waxed_copper_bulb.name=왁스 구리 전구 # +tile.waxed_exposed_copper_bulb.name=왁스 노출된 구리 전구 # +tile.waxed_oxidized_copper_bulb.name=왁스 산화된 구리 전구 # +tile.waxed_weathered_copper_bulb.name=왁스 풍화된 구리 전구 # +tile.weathered_copper_bulb.name=풍화된 구리 전구 # + +tile.copper_door.name=구리 문 # +tile.exposed_copper_door.name=노출된 구리 문 # +tile.oxidized_copper_door.name=산화된 구리 문 # +tile.waxed_copper_door.name=왁스 구리 문 # +tile.waxed_exposed_copper_door.name=왁스 노출된 구리 문 # +tile.waxed_oxidized_copper_door.name=왁스 산화된 구리 문 # +tile.waxed_weathered_copper_door.name=왁스 풍화된 구리 문 # +tile.weathered_copper_door.name=풍화된 구리 문 # + +tile.copper_grate.name=구리 쇠살대 # +tile.exposed_copper_grate.name=노출된 구리 쇠살대 # +tile.oxidized_copper_grate.name=산화된 구리 쇠살대 # +tile.waxed_copper_grate.name=왁스 구리 쇠살대 # +tile.waxed_exposed_copper_grate.name=왁스 노출된 구리 쇠살대 # +tile.waxed_oxidized_copper_grate.name=왁스 산화된 구리 쇠살대 # +tile.waxed_weathered_copper_grate.name=왁스 풍화된 구리 쇠살대 # +tile.weathered_copper_grate.name=풍화된 구리 쇠살대 # + +tile.copper_trapdoor.name=구리 뚜껑문 # +tile.exposed_copper_trapdoor.name=노출된 구리 뚜껑문 # +tile.oxidized_copper_trapdoor.name=산화된 구리 뚜껑문 # +tile.waxed_copper_trapdoor.name=왁스 구리 뚜껑문 # +tile.waxed_exposed_copper_trapdoor.name=왁스 노출된 구리 뚜껑문 # +tile.waxed_oxidized_copper_trapdoor.name=왁스 산화된 구리 뚜껑문 # +tile.waxed_weathered_copper_trapdoor.name=왁스 풍화된 구리 뚜껑문 # +tile.weathered_copper_trapdoor.name=풍화된 구리 뚜껑문 # + tile.raw_copper_block.name=원시 구리 블록 # tile.raw_iron_block.name=원시 철 블록 # tile.raw_gold_block.name=원시 금 블록 # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=행운의 화살 # tipped_arrow.effect.wither=부패 화살 # tipped_arrow.effect.turtleMaster=거북 마스터의 화살 # tipped_arrow.effect.slowFalling=느린 낙하 화살 # +tipped_arrow.effect.infested=감염 화살 # +tipped_arrow.effect.oozing=진흙 화살 # +tipped_arrow.effect.weaving=위빙 화살 # +tipped_arrow.effect.windCharged=윈드 차징 화살 # structure_block.title=구조물 블록 # structure_block.structure_name=구조물 이름 # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=최근 변경 사항 중 일부가 복 worldError.worldFailedRecovery=복구 실패 # worldError.worldFailedRecoveryText=손상된 월드를 발견했지만 복구하지 못했습니다. # +writeThrottling.osDialog.body=요청하신 작업은 완료할 때까지 %d분 소요될 것으로 예상됩니다. 이 시간 동안 장치의 전원을 끄지 마십시오. # +writeThrottling.osDialog.cancel=작업 취소 # +writeThrottling.osDialog.confirm=진행 # +writeThrottling.progressBar.title=데이터 준비 중 # +writeThrottling.progressBar.body=파일을 준비하는 중... # + userData.recovered.title=저장된 게임 복구됨 # userData.recovered.text=손상된 사용자 설정을 복구했습니다. # userData.recovered.warning=최근 변경 사항 중 일부가 복구 과정에서 손실되었을 수 있습니다. # @@ -9826,7 +10039,7 @@ trial.upsell.expiredDescription.line1=시간이 만료되었습니다. 전체 trial.upsell.expiredDescription.line2=-무제한의 월드를 탐험하세요 # trial.upsell.expiredDescription.line3=-친구와 함께 플레이하세요 # trial.upsell.expiredDescription.line4=-수백 개의 아이템을 제작하세요 # -trial.upsell.expiredDescription.line5=-불가사의한 건축물과 realms를 발견하세요 # +trial.upsell.expiredDescription.line5=-불가사의한 건축물과 Realm을 발견하세요 # trial.upsell.expiredNewDescription=탐험, 제작, 건설을 계속하시겠습니까? 정식 버전을 잠금 해제하면 원하는 만큼 얼마든지 플레이가 가능합니다! 이 월드는 게임을 종료한 상태에서 저장되지만, 정식 버전을 구매하지 않으면 월드를 변경할 수 없습니다. # trial.upsell.expiredNewDescription.worldsDontTransferToFullGame.line1=계속 탐험하고, 제작하고, 건설하고 싶나요? 정식 버전 게임을 잠금 해제해서 원하는 만큼 오랫동안 무한한 월드를 즐기세요!* # trial.upsell.expiredTitle=시간 종료! # @@ -9940,7 +10153,7 @@ autosave.info.desktop=이 아이콘이 보이면 게임을 저장 중인 것입 ## Xbox network strings xbox.signin.error=Microsoft 계정으로 로그인하여 친구와 함께 플레이하고 게이머 점수와 도전 과제를 얻으세요. # -xbox.signin.error.pocket.line1=Realms를 테스트해 주셔서 감사합니다! 현재 기능은 최종 사항이 아니며 버그가 발생할 수도 있습니다. 여러분의 의견을 보내주세요! 귀 기울여 듣겠습니다. # +xbox.signin.error.pocket.line1=Realm를 테스트해 주셔서 감사합니다! 현재 기능은 최종 사항이 아니며 버그가 발생할 수도 있습니다. 여러분의 의견을 보내주세요! 귀 기울여 듣겠습니다. # xbox.signin.error.pocket.line2= # xbox.signin.error.pocket.line3=이 테스트가 진행되는 동안 모든 사람이 Microsoft 계정에 로그인되어 있어야 초대를 받고 Realm에 추가될 수 있습니다. # xbox.signin.warning.kickPlayer=이렇게 하면 메인 메뉴로 돌아갑니다. 계속하시겠습니까? # @@ -9970,7 +10183,7 @@ xbox.signinquestion=로그인할까요? # xbox.notnow=나중에 # xbox.signingin=Microsoft 계정으로 로그인하는 중... # xbox.signingin.offline=로그인 # -xbox.failedsignin.body=Microsoft 계정으로 로그인하지 못했습니다. Realms, 프로필, 마켓플레이스 아이템 이용이 제한됩니다. 나중에 다시 시도해 주세요. # +xbox.failedsignin.body=Microsoft 계정으로 로그인하지 못했습니다. Realm, 프로필, 마켓플레이스 아이템 이용이 제한됩니다. 나중에 다시 시도해 주세요. # xbox.failedsignin.error=오류 코드: # xbox.failedsignin.moreInfo=추가 정보 # xbox.dev_wrongSandboxSigninFailed.title=오류가 발생했습니다. # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=채팅 메시지 # xbox.report.area.skin=플레이어 스킨 # xbox.report.area.gameplay=게임 플레이 # xbox.report.area.ingame=게임 내 창작 # -xbox.report.area.other=기타 # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=사이버 폭력 # @@ -10389,12 +10601,12 @@ lategameTips.27=섬록암은 좋아하거나 싫어하거나 둘 중 하나입 tips.realms.1=게임 메뉴를 사용하여 스크린샷을 찍습니다. # tips.realms.2=Realm은 언제나 온라인이니, 원할 때마다 언제든지 친구들과 함께 플레이하세요. # -tips.realms.3=Realms 스토리의 스토리 피드를 확인하여 Realm에서 일어나는 일을 놓치지 마세요. # +tips.realms.3=Realm 스토리의 스토리 피드를 확인하여 Realm에서 일어나는 일을 놓치지 마세요. # tips.realms.4=스토리 피드에 스토리를 추가하여 이 Realm의 다른 플레이어들과 멋진 순간을 공유하세요. # -tips.realms.5=다른 사람들이 언제 플레이하는지 확인하려면 Realms 스토리의 타임라인을 확인하세요. # -tips.realms.6=Realm에서 플레이하는 동안 게임 메뉴에서 Realms 스토리에 접속하세요. # -tips.realms.7=Realms 스토리의 멤버 탭에서 Realm 커뮤니티에 대해 알아보세요. # -tips.realms.8=Realms 스토리를 사용하여 사람들과 어울리고, 친구의 진행 상황을 확인하고, 플레이 시간을 계획하세요. # +tips.realms.5=다른 사람들이 언제 플레이하는지 확인하려면 Realm 스토리의 타임라인을 확인하세요. # +tips.realms.6=Realm에서 플레이하는 동안 게임 메뉴에서 Realm 스토리에 접속하세요. # +tips.realms.7=Realm 스토리의 멤버 탭에서 Realm 커뮤니티에 대해 알아보세요. # +tips.realms.8=Realm 스토리를 사용하여 사람들과 어울리고, 친구의 진행 상황을 확인하고, 플레이 시간을 계획하세요. # splitscreen.joinPrompt=플레이어 %s(으)로 참가하기 # splitscreen.unavailable.toastHeader=분할 화면 이용 불가 # @@ -10554,7 +10766,7 @@ dr.classic_skins.custom_skin_section_title=소유 스킨 # dr.classic_skins.invalidCustomSkin=선택한 이미지는 Minecraft 스킨이 아닙니다. # dr.classic_skins.owned=보유함 # dr.classic_skins.purchasable=더 보기 # -dr.classic_skins.realms_plus=Realms Plus # +dr.classic_skins.realms_plus=Realm Plus # dr.classic_skins.right_side.author_name=제작자: %s # dr.classic_skins.right_side.author_minecraft=Minecraft # dr.classic_skins.right_side.featured_title=인기 및 추천 스킨 팩 # @@ -10571,7 +10783,7 @@ dr.classic_skins.right_side.world_count.plural=월드 %s개 # dr.classic_skins.right_side.world_count.singular=월드 %s개 # dr.classic_skins.see_pack_in_store=상점에서 팩 보기 # dr.classic_skins.see_in_store=상점에서 보기 # -dr.classic_skins.realms_plus_button=Realms Plus # +dr.classic_skins.realms_plus_button=Realm Plus # dr.classic_skins.select_skin=스킨에 맞는 모델을 선택하세요 # dr.classic_skins.select_skin.title=스킨 유형 # dr.classic_skins.upsellWithoutStore=해당 스킨을 사용하려면 스킨 팩을 구매해야 합니다. 지금은 마켓플레이스에 연결할 수 없습니다. # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=안타깝게도 연결하지 못했습니 gathering.connect.title=연결 중... # gathering.info.qr.title.onlineService=자세한 정보 # gathering.info.qr.body.onlineService.nso=Minecraft 이벤트에 참여하려면 Nintendo Switch Online 멤버십이 필요합니다. # -gathering.info.qr.body.onlineService.psn=Minecraft에서 이벤트에 참여하려면 \"PlayStation Plus\"에 로그인해야 합니다. # +gathering.info.qr.body.onlineService.psn=Minecraft에서 이벤트에 참여하려면 PlayStation®Plus에 로그인해야 합니다. #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=Minecraft에서 이벤트에 참여하려면 로그인해야 합니다. # gathering.info.qr.title.childAccount=온라인 플레이가 허용되지 않음 # gathering.info.qr.body.childAccount=현재 자녀 보호 기능으로 온라인 게임을 할 수 없습니다. # diff --git a/resource_pack/texts/nb_NO.lang b/resource_pack/texts/nb_NO.lang index 352b4d521..58eab0f39 100644 --- a/resource_pack/texts/nb_NO.lang +++ b/resource_pack/texts/nb_NO.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=Velg seed # accessibility.start.feedback=Send tilbakemeldingskobling til nettstedet # accessibility.start.new=Ny(tt) # -accessibility.start.profile=Velg profil # accessibility.start.skinPicker=Velg skall # accessibility.store.tag=Tagg # @@ -1094,10 +1093,6 @@ commands.me.description=Viser en melding om deg selv. # commands.message.display.incoming=%1$s hvisker til deg: %2$s # commands.message.display.outgoing=Du hvisker til %1$s: %2$s # commands.message.sameTarget=Du kan ikke sende en privat melding til deg selv! # -commands.message.warn=§4Du har blitt tilsendt en advarsel. Adferden din kan bli ansett støtende av andre spillere. Vær hensynsfull overfor de andre du spiller med. # -commands.message.toastWarn=Minecraft er for alle! Pass på at du overholder samfunnstandardene våre. # -commands.warn.invalidWarningLevel=Ugyldig advarselnivå. # -commands.warn.playerDoesNotExist=Fant ikke spilleren. Velg en gyldig spiller. # commands.mobevent.description=Styrer hvilke vesenhendelser som er tillatt å kjøre. # commands.mobevent.eventsEnabledSetToTrue=Vesenhendelser er nå aktivert. Individuelle hendelser som er satt til usanne vil ikke kjøre. # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=– %s: %s fra %d %d %d til %d %d %d # commands.volumearea.entry.withoutIdentifier=– %s: fra %d %d %d til %d %d %d # commands.volumearea.noneExist.currentDimension=Det finnes ingen volumer i gjeldende dimensjon. # commands.volumearea.inUse=%1$d/%2$d volumer i bruk. # -commands.warn.description=Sender en advarselsmelding til spilleren. # commands.weather.clear=Endrer til skyfri himmel # commands.weather.description=Angir været. # commands.weather.disabled=Værsyklus er ikke aktivert i denne verden. # @@ -1572,6 +1566,7 @@ container.beacon=Lyssignal # container.brewing=Bryggeapparat # container.chest=Kiste # container.chestDouble=Stor kiste # +container.crafter=Bygger # container.crafting=Utforming # container.creative=Gjenstandsvalg # container.dispenser=Dispenser # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=Grotter og klipper # createWorldScreen.cavesandcliffsDescription=Utforsk den nye varierte grottegenereringen # createWorldScreen.spectatorMode=Tilskuermodus # createWorldScreen.spectatorModeDescription=Prøv de tidlige versjonene av tilskuermodus # -createWorldScreen.experimentalCameras=Eksperimentelle kameraer # -createWorldScreen.experimentalCamerasDescription=Inneholder eksempel på kameraforhåndsinnstillinger (kamerakommandoen er ikke lenger eksperimentell) # createWorldScreen.recipeUnlocking=Oppskrift-opplåsing # createWorldScreen.recipeUnlockingDescription=Aktiver oppskrift-opplåsing # createWorldScreen.experimentalholiday=Funksjoner for høytidsskapere # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=Lager ny verden … # createWorldScreen.progress.realms=Tilbakestiller realmen … # createWorldScreen.seed.desc=Oppgi et frø for å generere det samme terrenget på nytt. La stå tomt for å generere en tilfeldig verden. # createWorldScreen.showCoordinates=Vis koordinater # +createWorldScreen.showDaysPlayed=Vis spilte dager # createWorldScreen.worldType=Verdenstype # createWorldScreen.randomtickspeed=Tilfeldig intervallhastighet # createWorldScreen.randomtickspeed.reset=Tilbakestill tilfeldig intervallhastighet # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=Slett prosjekt # createWorldScreen.editor.projectOptionsLabel=Prosjektalternativer # createWorldScreen.editor.delete.confirm=Slette prosjektet for godt? # createWorldScreen.editor.deleteWarningFormat=Er du sikker på at du vil slette «%s»? Dette prosjektet går tapt for alltid! # +createWorldScreen.eduCloud.about.body=Filnavn: «%1$s»%2$sSist oppdatert: %3$s%4$sKlikk på OK og deretter Last ned for å laste ned.%5$s # +createWorldScreen.eduCloud.about.title=Om skyverdenfil # createWorldScreen.eduCloud.delete.confirm=Slette lokal verden? # createWorldScreen.eduCloud.deleteWarningFormat=Er du sikker på at du vil slette «%1$s» på denne enheten?%2$sSkyversjonen «%3$s» blir ikke påvirket og kan synkroniseres på nytt senere. # createWorldScreen.experimentalDeferredTechnicalPreview=Vis dragefunksjoner for skapere # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Windows Store # realmsSettingsScreen.xboxOneStoreDisplayName=Xbox Store # realmsSettingsScreen.amazonStoreDisplayName=Amazon Appstore # realmsSettingsScreen.oculusStoreDisplayName=Oculus Store # -realmsSettingsScreen.berwickStoreDisplayName=«PlayStation Store» # -realmsSettingsScreen.SonyStoreDisplayName=«PlayStation Store» #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=en ukjent butikk # realmsSettingsScreen.extendingRealm=Forlenger realmen … # realmsSettingsScreen.offerError.title=Ventende kjøp # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=Pakker kjøpt utenfor Minecraft xbl.syncIAP.confirmSync.prompt.yes=Ja, synkroniser kjøpene mine # xbl.marketplace.account.error.body.nobutton=Det er en feil med kontoen din. Du kan ikke bruke markedsplassen før vi har løst problemet. Hvis problemet vedvarer i flere dager, kontakter du brukerstøtten. # -xbl.marketplace.account.banned.body.nobutton=Du kan ikke bruke markedsplassen før utestengingen utløper. # playfab.account.banned.temporary=utestengt # playfab.account.banned.permanent=utestengt # @@ -2487,6 +2482,14 @@ date.daysAbbreviated1Char=%s d ### It needs to be abbreviated with no more than date.hoursAbbreviated1Char=%s t ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%s m ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%s s ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s dager # +date.hoursPlural=%s timer # +date.minutesPlural=%s minutter # +date.secondsPlural=%s sekunder # +date.daySingular=%s dag # +date.hourSingular=%s time # +date.minuteSingular=%s minutt # +date.secondSingular=%s sekund # date.timeLeft=%s igjen # dayOneExperience.carousel.title=Velkommen til nye Minecraft! # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=VERT # edu.worlds_screen.settings=INNSTILLINGER # edu.worlds_screen.download=LAST NED ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=BEHANDLE # +edu.worlds_screen.about=OM # edu.worlds_screen.back=TILBAKE # edu.worlds_screen.copy=KOPIER # edu.worlds_screen.export=EKSPORTER # @@ -2791,7 +2795,13 @@ edu.templates.empty_banner=Du kan få verdensmaler fra Minecraft Education-bibli edu.pause.multiplayer.disabled=Flerspiller er ikke tilgjengelig i denne leksjonen. # effect.badOmen=Ondt varsel # +effect.infested=Infisert # +effect.oozing=Oser # +effect.raid_omen=Plyndringsvarsel # +effect.trial_omen=Prøvevarsel # effect.villageHero=Landsbyens helt # +effect.weaving=Veving # +effect.wind_charged=Vindladet # enchantment.arrowDamage=Kraft # enchantment.arrowFire=Flamme # @@ -2810,6 +2820,9 @@ enchantment.durability=Uknuselig # enchantment.fire=Ild # enchantment.fishingSpeed=Agn # enchantment.frostwalker=Rimvandrer # +enchantment.heavy_weapon.breach=Utbrudd # +enchantment.heavy_weapon.density=Tetthet # +enchantment.heavy_weapon.windburst=Vindeksplosjon # enchantment.knockback=Tilbakeslag # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=Flaggermus # entity.bee.name=Bie # entity.blaze.name=Blusser # entity.boat.name=Båt # +entity.bogged.name=Fast # +entity.breeze.name=Bris # +entity.breeze_wind_charge_projectile.name=Vindladning # entity.cat.name=Katt # entity.cave_spider.name=Huleedderkopp # entity.chicken.name=Høne # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=Landsbyboer uten yrke # entity.villager_v2.name=Landsbyboer # entity.vindicator.name=Hevner # entity.wandering_trader.name=Handelsreisende # +entity.wind_charge_projectile.name=Vindladning # entity.witch.name=Heks # entity.wither.name=Wither # entity.wither_skeleton.name=Wither-skjelett # @@ -3009,6 +3026,7 @@ feature.ruins=Ruinene i dypet # feature.pillager_outpost=Plyndrerutpost # feature.bastion_remnant=Bastionsruin # feature.ruined_portal=Ødelagt portal # +feature.trial_chambers=Prøvekamre # feed.like=Liker # feed.manage_feed=Administrer tidslinje # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=Beveg :tip_left_stick: for å gå omkring # gameTip.flying.mouse=Dobbelttrykk på :_input_key.jump: for å fly # gameTip.flying.touch=Dobbelttrykk på hopp for å fly # +gameTip.flyDown.mouse=Trykk på :_input_key.sneak: for å fly ned # +gameTip.flyUp.mouse=Trykk på :_input_key.jump: for å fly opp # + +gameTip.stopFlying.mouse=Dobbelttrykk på :_input_key.jump: for å slutte å fly # +gameTip.stopFlying.touch=Dobbelttrykk på fly ned for å slutte å fly # + gameTip.jump.mouse=Hopp med :_input_key.jump: # +gameTip.swim.mouse=Trykk på og hold inne :_input_key.jump: for å svømme opp # -gameTip.hotbar.mouse=Rull på musehjulet for å velge # i verktøylinjen for å holde den # -gameTip.hotbar.touch=Trykk på # i verktøylinjen for å holde den # -gameTip.hotbar.controller=Trykk på # i verktøylinjen for å holde den # +gameTip.hotbar.selection.mouse=Rull eller trykk på %s for å holde elementet ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=Trykk på elementet i verktøylinjen for å holde det # gameTip.breakBlock.mouse=Hold inne venstreklikk for å knuse blokker # gameTip.breakBlock.touch=Trykk og hold inne for å knuse blokker # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=Du sniker og kan ikke falle av kanter nå # gameTip.sneak.touch=Du sniker, så du kan ikke falle av kanter # gameTip.sneak.controller=Du sniker, så du kan ikke falle av kanter # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=Plasser arbeidsbenken din. Hold den og klikk for å plassere den # gameTip.placeCraftingTable.touch=Plasser arbeidsbenken ved å trykke på bakken # gameTip.placeCraftingTable.controller=Plasser arbeidsbenken ved å holde den og trykke på bakken # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=Takk for anmeldelsen! # gui.submitFeedback.failure.status.unprocessableEntity=Du eier ikke det du prøver å gi tilbakemelding på. (Feilkode: %d) # gui.submitFeedback.failure.status.tooManyRequests=Å nei! Du har sendt for mange anmeldelser, prøv igjen senere. (Feilkode: %d) # gui.submitFeedback.failure.status.other=Klarte ikke å sende inn anmeldelsen. Prøv igjen senere. (Feilkode: %d) # +gui.togglable_slot=Trykk for å deaktivere plassen # gui.playOffline=Spill uten Internett-tilkobling # gui.signIn=Logg på # gui.genericNetworkError=Noe gikk galt. Kan du sjekke Internett-tilkoblingen? # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=Utforsk en verden av muligheter med Minecoins, som er howtoplay.minecoins.text.2=Når du har løst dem inn, vil Minecoins bli tilknyttet Microsoft-kontoen din, slik at du også kan få tilgang til myntene og kjøpene dine på andre støttede enheter! # howtoplay.minecoins.button.text.1=Skaff deg mynter # howtoplay.minecoins.header.1=Ansvarsfraskrivelse # -howtoplay.minecoins.text.3=*Minecoins krever en versjon av Minecraft: Bedrock Edition med Minecraft-markedsplassen. Minecoins kan ikke brukes på Sony PlayStation. Gå til minecraft.net/minecoins for mer informasjon om kompatibilitet  # +howtoplay.minecoins.text.3=*Minecoins krever en versjon av Minecraft: Bedrock Edition med Minecraft-markedsplassen. Minecoins kan ikke brukes på Sony PlayStation®. Gå til minecraft.net/minecoins for mer informasjon om kompatibilitet  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=Gruvedrift # @@ -4145,7 +4170,7 @@ level.editor.export.failed=Prosjekteksporten mislyktes # level.editor.import.failed=Prosjektimporten mislyktes # level.editor.import.failed.incompatibleEdition=Kunne ikke importere prosjektet: Filformatet støttes ikke # -inbox.invite.title=Realms-invitasjon # +inbox.invite.title=Realm-invitasjon til # invite.clear=Opphev valg # invite.send=Inviter %d # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=Rød trekant nede til høyre # item.banner.diagonal_up_right.silver=Lysegrå trekant nede til høyre # item.banner.diagonal_up_right.white=Hvit trekant nede til høyre # item.banner.diagonal_up_right.yellow=Gul trekant nede til høyre # +item.banner.flow.black=Svart flyt # +item.banner.flow.blue=Blå flyt # +item.banner.flow.brown=Brun flyt # +item.banner.flow.cyan=Cyanfarget flyt # +item.banner.flow.gray=Grå flyt # +item.banner.flow.green=Grønn flyt # +item.banner.flow.lightBlue=Lyseblå flyt # +item.banner.flow.lime=Limegrønn flyt # +item.banner.flow.magenta=Magentarød flyt # +item.banner.flow.orange=Oransje flyt # +item.banner.flow.pink=Rosa flyt # +item.banner.flow.purple=Lilla flyt # +item.banner.flow.red=Rød flyt # +item.banner.flow.silver=Lysegrå flyt # +item.banner.flow.white=Hvit flyt # +item.banner.flow.yellow=Gul flyt # item.banner.flower.black=Svart blomst # item.banner.flower.blue=Blå blomst # item.banner.flower.brown=Brun blomst # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=Hvit gradering fra bunnen # item.banner.gradient_up.yellow=Gul gradering fra bunnen # item.banner.gray.name=Grått banner # item.banner.green.name=Grønt banner # +item.banner.guster.black=Svart guster # +item.banner.guster.blue=Blå guster # +item.banner.guster.brown=Brun guster # +item.banner.guster.cyan=Cyanfarget guster # +item.banner.guster.gray=Grå guster # +item.banner.guster.green=Grønn guster # +item.banner.guster.lightBlue=Lyseblå guster # +item.banner.guster.lime=Limegrønn guster # +item.banner.guster.magenta=Magentarød guster # +item.banner.guster.orange=Oransje guster # +item.banner.guster.pink=Rosa guster # +item.banner.guster.purple=Lilla guster # +item.banner.guster.red=Rød guster # +item.banner.guster.silver=Lysegrå guster # +item.banner.guster.white=Hvit guster # +item.banner.guster.yellow=Gul guster # item.banner.half_horizontal.black=Svart øvre halvdel # item.banner.half_horizontal.blue=Blå øvre halvdel # item.banner.half_horizontal.brown=Brun øvre halvdel # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=Akasiebåt # item.boat.big_oak.name=Båt av mørk eik # item.bone.name=Bein # item.book.name=Bok # +item.breeze_rod.name=Brisstav # item.chainmail_boots.name=Ringstøvler # item.leather_boots.name=Skinnstøvler # item.diamond_boots.name=Diamantstøvler # @@ -4991,6 +5049,7 @@ item.comparator.name=Rødsteinskomparator # item.compass.name=Kompass # item.lodestonecompass.name=Magnetsteinkompass # item.cookie.name=Kjeks # +item.copper_door.name=Kobberdør # item.crossbow.name=Armbrøst # item.diamond.name=Diamant # item.repeater.name=Rødsteinsrepeater # @@ -5038,6 +5097,7 @@ tile.end_rod.name=Sluttstav # item.ender_eye.name=Enderøye # item.ender_pearl.name=Enderperle # item.experience_bottle.name=Flaske med fortryllelse # +item.exposed_copper_door.name=Eksponert kobberdør # item.feather.name=Fjær # item.fermented_spider_eye.name=Gjæret edderkoppøye # item.fireball.name=Ildladning # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=Gullbukser # item.iron_leggings.name=Jernbukser # item.nautilus_shell.name=Perlebåtskall # item.heart_of_the_sea.name=Havets hjerte # +item.mace.name=Stridsklubbe # item.magma_cream.name=Magmakrem # item.map.name=Kart # item.map.exploration.mansion.name=Skogsutforskerkart # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=Savannelandsbykart # item.map.exploration.village_desert.name=Ørkenlandsbykart # item.map.exploration.jungle_temple.name=Jungelutforskerkart # item.map.exploration.swamp_hut.name=Sumputforskerkart # +item.map.exploration.trial_chambers.name=Prøveutforskerkart # item.melon.name=Melon # item.milk.name=Melk # item.minecart.name=Gruvevogn # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=Gruvevogn med kiste # item.command_block_minecart.name=Gruvevogn med kommandoblokk # item.minecartFurnace.name=Gruvevogn med smelteovn # item.hopper_minecart.name=Gruvevogn med trakt # +item.ominous_bottle.name=Illevarslende flaske # +item.ominous_trial_key.name=Illevarslende prøvenøkkel # +item.oxidized_copper_door.name=Oksidert kobberdør # item.tnt_minecart.name=Gruvevogn med TNT # item.pitcher_pod.name=Pitcher-kapsel # item.torchflower_seeds.name=Fakkelblomstfrø # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=Genereringsegg for agent # item.spawn_egg.entity.armadillo.name=Genereringsegg for beltedyr # item.spawn_egg.entity.axolotl.name=Genereringsegg for axolotl # item.spawn_egg.entity.bee.name=Genereringsegg for bie # +item.spawn_egg.entity.bogged.name=Genereringsegg for fast # +item.spawn_egg.entity.breeze.name=Genereringsegg for bris # item.spawn_egg.entity.hoglin.name=Genereringsegg for hoglin # item.spawn_egg.entity.cat.name=Genereringsegg for katt # item.spawn_egg.entity.chicken.name=Genereringsegg for høne # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 – dyster låt # item.record_pigstep.desc=Lena Raine – Pigstep # item.record_otherside.desc=Lena Raine – otherside # item.record_relic.desc=Aaron Cherof – Relic # +item.record_creator.desc=Lena Raine – skaper # +item.record_creator_music_box.desc=Lena Raine – skaper (musikkboks) # +item.record_precipice.desc=Aaron Cherof – stup # item.redstone.name=Rødsteinstøv # item.reeds.name=Sukkerrør # item.kelp.name=Tare # @@ -5324,6 +5394,12 @@ item.iron_sword.name=Jernsverd # item.stone_sword.name=Steinsverd # item.wooden_sword.name=Tresverd # item.unbreakable=Uknuselig # +item.waxed_copper_door.name=Vokset kobberdør # +item.waxed_exposed_copper_door.name=Vokset eksponert kobberdør # +item.waxed_oxidized_copper_door.name=Vokset oksidert kobberdør # +item.waxed_weathered_copper_door.name=Vokset forvitret kobberdør # +item.weathered_copper_door.name=Forvitret kobberdør # +item.wind_charge.name=Vindladning # item.wheat.name=Hvete # item.wolf_armor.name=Ulverustning # item.writable_book.name=Bok og fjærpenn # @@ -5331,6 +5407,7 @@ item.written_book.name=Ferdigskrevet bok # item.glowstone_dust.name=Glødesteinstøv # item.shulker_shell.name=Shulkerskall # item.totem.name=Udødelighetstotem # +item.trial_key.name=Prøvenøkkel # item.turtle_helmet.name=Skilpaddeskall # item.turtle_shell_piece.name=Skilpaddehornskjell # item.phantom_membrane.name=Fantommembran # @@ -5338,8 +5415,10 @@ item.sweet_berries.name=Søte bær # item.suspicious_stew.name=Suspekt stuing # item.banner_pattern.bricks=Mursteinsmønster # item.banner_pattern.creeper=Smygerfjes # +item.banner_pattern.flow=Flyt # item.banner_pattern.flower=Blomst # item.banner_pattern.globe=Globus # +item.banner_pattern.guster=Guster # item.banner_pattern.name=Bannermønster # item.banner_pattern.piglin=Snute # item.banner_pattern.skull=Hodeskalle # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=Bannermønstre # itemGroup.name.netherWartBlock=Underverdenvorter # itemGroup.name.candles=Stearinlys # itemGroup.name.goatHorn=Geitehorn # +itemGroup.name.compounds=Forbindelser # +itemGroup.name.products=Produkter # jigsaw.title.target_pool=Målutvalg: # jigsaw.title.name=Navn: # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=KLASSEROMINNSTILLINGER # menu.serverStore=%s-butikk # menu.serverGenericName=Server # menu.play=Spill # +menu.profile=Profil # menu.playdemo=Spill demoverden # menu.playOnRealms=Spill på realm # menu.quickplay=Hurtigspilling # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=Velg startkarakteren din # menu.character_cast.preview_title=Møt rollebesetningen! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Realms-server ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=Servere # merchant.deprecated=Kjøp/selg noe annet for å låse opp! # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=Spilling med fullt tastatur # options.fullKeyboardLayout=Fullt tastaturoppsett # options.improvedInputResponsePlaceholder=Forbedret inndata-respons # options.improvedInputResponsePlaceholder.tooltip=Reduserer forsinkelsen mellom inndata og det du ser på skjermen. Denne innstillingen kan bruke mer batteristrøm. # +options.dynamicTexturesToggle=Fjern teksturgrense # +options.dynamicTexturesToggle.tooltip=Hvis du skrur dette av, må du starte spillet på nytt. Det kan forårsake ustabilitet når du bruker flere tillegg eller ressurspakker med mange teksturer. # +options.dynamicTextures.popUp=Hvis du slår på Fjern teksturgrense, må du starte spillet på nytt for å slå det av. # +options.dynamicTextures.popUp.title=Er du sikker? # options.fullscreen=Fullskjerm # options.gamepadcursorsensitivity=Kontrollermarkørens følsomhet # options.gamertag=Gamertag: # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=Koble til # options.creator.debuggerListen=Lytt # options.creator.debuggerHost=Vert # options.creator.debuggerPort=Port # +options.creator.watchdogHeading=Skriptovervåkingsinnstillinger # +options.creator.watchdogSlowWarning=Advarsler om tregt skript # +options.creator.watchdogSlowThreshold=Gjennomsnittet overstiger # +options.creator.watchdogSlowFormat=%s millisekunder # +options.creator.watchdogSlowFormatDefault=%s millisekunder (standard) # +options.creator.watchdogSpikeWarning=Advarsler om skript-spike # +options.creator.watchdogSpikeThreshold=Spike overstiger # +options.creator.watchdogSpikeFormat=%s millisekunder # +options.creator.watchdogSpikeFormatDefault=%s millisekunder (standard) # +options.creator.watchdogHangThreshold=Avbryt etter # +options.creator.watchdogHangFormat=%s sekunder # +options.creator.watchdogHangFormatDefault=%s sekunder (standard) # options.vr_classic_box_selection=Valg av omriss # options.hidegamepadcursor=Skjul kontrollermarkøren # options.hidegui=Skjul det grafiske brukergrensesnittet # @@ -6662,7 +6761,7 @@ options.makeBackup=Lag en sikkerhetskopi av min verden # options.managePrivacy=Gå til https://account.xbox.com/Settings i en hvilken som helst nettleser for å administrere personverninnstillingene. ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Koble fra Microsoft-konto # options.unlink_msa.confirm.title=Koble fra Microsoft-kontoen? # -options.unlink_msa.confirm.warning=ADVARSEL: Etter at du har koblet fra, kan du ikke lenger lagre fremdrift eller kjøp gjort på «PlayStation 4»-systemet ditt i kontoen %s. # +options.unlink_msa.confirm.warning=ADVARSEL: Etter at du har koblet fra, kan du ikke lenger lagre fremdrift eller kjøp gjort på PlayStation®4-systemet ditt på kontoen %s. #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=Hvis du fjerner tilknytningen til Microsoft-kontoen din fra dette spillet, påvirkes alle Minecraft-spill på denne plattformen som har brukt denne Microsoft-kontoen. # options.unlink_msa.confirm.checkbox1=Jeg vil ikke lenger få tilgang til noe innhold fra butikken i spillet når jeg spiller på andre plattformer. # options.unlink_msa.confirm.checkbox2=Jeg vil ikke lenger kunne spille på forskjellige plattformer med venner på andre plattformer. # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=Last inn en verden for å tilpasse kontro hudScreen.controlCustomization.tooltip.notouch=Bruk en berøringsenhet for å tilpasse kontroller # hudScreen.controlCustomization.tooltip.alreadycustomizing=En tilpasningsskjerm for berøringskontroller er allerede åpnet # hudScreen.controlCustomization.tooltip.alive=Spilleren må være i live for å tilpasse kontroller # +hudScreen.daysPlayed=Spilte dager: %s # +hudScreen.daysPlayed.overflow=Klarer ikke telle så høyt! # playscreen.fileSize.MB=MB # playscreen.fileSize.GB=GB # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=Sprutende helbredelseseliksir # potion.heal.linger.name=Langvarig helbredelseseliksir # potion.healthBoost=Helseøkning # potion.hunger=Sult # +potion.infested.linger.name=Langvarig infestasjonseliksir # +potion.infested.name=Infestasjonseliksir # +potion.infested.splash.name=Sprutende infestasjonseliksir # +potion.infested=Infisert # potion.invisibility=Usynlighet # potion.invisibility.name=Usynlighetseliksir # potion.invisibility.splash.name=Sprutende usynlighetseliksir # @@ -7067,6 +7172,10 @@ potion.nightVision=Nattsyn # potion.nightVision.name=Nattsynseliksir # potion.nightVision.splash.name=Sprutende nattsynseliksir # potion.nightVision.linger.name=Langvarig nattsynseliksir # +potion.oozing.linger.name=Langvarig oseeliksir # +potion.oozing.name=Oseeliksir # +potion.oozing.splash.name=Sprutende oseeliksir # +potion.oozing=Oser # potion.poison=Gift # potion.poison.name=Gifteliksir # potion.poison.splash.name=Sprutende gifteliksir # @@ -7108,6 +7217,14 @@ potion.weakness=Svakhet # potion.weakness.name=Svakhetseliksir # potion.weakness.splash.name=Sprutende svakhetseliksir # potion.weakness.linger.name=Langvarig svakhetseliksir # +potion.weaving.linger.name=Langvarig veveeliksir # +potion.weaving.name=Veveeliksir # +potion.weaving.splash.name=Sprutende veveeliksir # +potion.weaving=Veving # +potion.windCharged.linger.name=Langvarig vindladeeliksir # +potion.windCharged.name=Vindladeeliksir # +potion.windCharged.splash.name=Sprutende vindladeeliksir # +potion.windCharged=Vindladet # potion.wither=Wither # potion.wither.name=Forfallseliksir # potion.wither.splash.name=Sprutende forfallseliksir # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=Denne verdenen kan ikke åpnes på gr progressScreen.message.forbiddenContent=Du eier ikke én eller flere av de brukte pakkene # progressScreen.message.loadingSplitScreenAppearances=Laster inn delt skjerm-utseendet ... # progressScreen.message.finishedLoadingSplitScreenAppearances=Ferdig med å laste inn delt skjerm-utseendet. # -progressScreen.message.modifiedWorldWarning=Denne verdenen vil kanskje ikke ligne eller oppføre seg på samme måte som ikke-modifiserte verdener, og du kan ikke oppnå prestasjoner. # +progressScreen.message.modifiedWorldWarning.1=Du spiller i en verden med tillegg! Dette legger til nye funksjoner i Minecraft-verdenen din. # +progressScreen.message.modifiedWorldWarning.2=Ikke gi deg med bare ett! Du kan laste inn flere tillegg i én verden samtidig. # +progressScreen.message.modifiedWorldWarning.3=Avansert tips: En ressurspakke kan endre teksturene til forskjellige blokker og enheter. # +progressScreen.message.modifiedWorldWarning.4=Avansert tips: En atferdspakke kan endre hvordan forskjellige elementer, enheter eller blokker fungerer. # +progressScreen.message.modifiedWorldWarning.5=Avansert tips: Et tillegg inneholder både en atferdspakke og en ressurspakke. Kontroller at begge pakkene er aktivert for å forsikre deg om at tillegget fungerer! # +progressScreen.message.modifiedWorldWarning.6=Tillegg legger til nye blokker, elementer eller vesener i verdenene dine. # +progressScreen.message.modifiedWorldWarning.7=Verdener og tillegg er kompliserte! Noen fungerer flott sammen, men andre kan gi deg merkelige resultater. # +progressScreen.message.modifiedWorldWarning.8=Flere tillegg betyr mer moro, men spillet bruker kanskje lengre tid på å laste inn. # progressScreen.dialog.title.resourcePack=Laste ned ressurspakker? # progressScreen.dialog.title.behaviorAndResourcePack=Laste ned verdenens atferds- og ressurspakker? # progressScreen.dialog.title.onlyBehavior=Laste ned verdenens atferdspakker? # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=Oppdatere verdenen? # resourcePack.warning.add.body=Denne verdenen vil kanskje ikke ligne eller oppføre seg på samme måte som ikke-modifiserte verdener. Du bør lagre en kopi av verdenen din før du fortsetter. # resourcePack.warning.add.button.cancel=Ikke legg til pakke # resourcePack.warning.add.button.ok=Legg til pakken uansett # +resourcePack.warnings.contentKeyErrorBody=Kunne ikke laste inn pakken %s. # +resourcePack.warnings.contentKeyErrorBodyMultiple=Kunne ikke laste inn pakkene %s. # +resourcePack.warnings.contentKeyErrorTitle=Feil! # resourcePack.warning.remove.title=Dette er farlig! # resourcePack.warning.remove.body=Hvis du legger til eller fjerner pakker etter å ha brukt en verden, kan du ødelegge verdenen og miste det du har laget. # resourcePack.warning.remove.button.cancel=Behold pakken # @@ -7557,7 +7684,9 @@ item.crimson_hanging_sign.name=Høyrødt hengende skilt # item.danger_pottery_sherd.name=Fare-potteskår # item.dark_oak_hanging_sign.name=Hengende skilt av mørkt eiketre # item.explorer_pottery_sherd.name=Utforsker-potteskår # +item.flow_pottery_sherd.name=Strøm-potteskår # item.friend_pottery_sherd.name=Venn-potteskår # +item.guster_pottery_sherd.name=Guster-potteskår # item.heart_pottery_sherd.name=Hjerte-potteskår # item.heartbreak_pottery_sherd.name=Hjertesorg-potteskår # item.howl_pottery_sherd.name=Ul-potteskår # @@ -7568,6 +7697,7 @@ item.mourner_pottery_sherd.name=Sørgende-potteskår # item.oak_hanging_sign.name=Hengende skilt av eiketre # item.plenty_pottery_sherd.name=Massevis-potteskår # item.prize_pottery_sherd.name=Premiepotteskår # +item.scrape_pottery_sherd.name=Skrap-potteskår # item.sheaf_pottery_sherd.name=Bunt-potteskår # item.shelter_pottery_sherd.name=Ly-potteskår # item.skull_pottery_sherd.name=Hodeskalle-potteskår # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=Kirsebærtretrapp # tile.cherry_trapdoor.name=Kirsebærtreluke # tile.cherry_wood.name=Kirsebærtre # tile.chiseled_bookshelf.name=Meislet bokhylle # +tile.chiseled_tuff.name=Meislet tuffstein # +tile.chiseled_tuff_bricks.name=Meislede tuffsteinmursteiner # tile.decorated_pot.name=Dekorert potte # tile.pink_petals.name=Rosa kronblader # tile.stripped_bamboo_block.name=Høvlet bambusblokk # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=Plageåndrustningstrim # trim_pattern.ward.name=Vokterrustningstrim # trim_pattern.wayfinder.name=Veifinnerrustningstrim # trim_pattern.wild.name=Villrustningstrim # +trim_pattern.bolt.name=Lynrustningstrim # +trim_pattern.flow.name=Flytrustningstrim # upgrade.netherite_upgrade.name=Underverdensstein-oppgradering # storageManager.mainSizeLabel=%s – ett element # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=Slette verdensmal? # selectTemplate.delete=Slett # selectTemplate.myTemplates=Mine verdensmaler # selectTemplate.realmsPlus=Utvalgte Realms Plus-maler # -selectTemplate.marketplacePass=Utvalgte Marketplace Pass-maler #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=Fremhevet Marketplace Pass-innhold #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=Importerte maler # selectTemplate.download=Last ned # selectTemplate.noTemplates=Det finnes ingen verdensmaler på denne enheten. # -selectTemplate.suggestedContent.title=Utvalgte markedsplassmaler # +selectTemplate.suggestedContent.title=Fremhevet markedsplass-innhold # selectTemplate.suggestedContent.button=Se flere maler # selectTemplate.createdBy=Laget av %s # selectTemplate.inventory=Mine markedsplasspakker # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=Vi klarte ikke å koble til. Gå tilbake og prøv store.loading.error.issues=Hmm, markedsplassen har noen problemer. Prøv å koble deg til senere. # store.loading.error.internetDown=Vi finner ikke Internett-tilkoblingen. # store.loading.error.account=Det er et problem med kontoen din. Prøv på nytt om en liten stund, og kontakt kundestøtten hvis dette vedvarer. # +store.loading.error.account.banned=Du kan ikke bruke markedsplassen før utestengingen utløper. # store.giftPromo.day=Dag %s ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=Løst inn # @@ -8405,10 +8540,17 @@ store.mashup.count.skin=1 skall # store.mashup.count.skins=%s skall # store.mashup.count.texturePack=1 teksturpakke # store.mashup.count.texturePacks=%s teksturpakker #number of texture packs # -store.mashup.count.world=1 verden # +store.mashup.count.world=En verden # store.mashup.count.worlds=%s verdener #number of worlds # store.mashup.count.addonPack=Ett tillegg # store.mashup.count.addonPacks=%s tillegg #number of addons # +store.mashup.count.mashup=Mash-up-pakke # +store.mashup.hover.label.addonPack=Tillegg kan brukes på enhver verden. # +store.mashup.hover.label.world=Et håndlaget Minecraft-kart. # +store.mashup.hover.label.skin=Gi figuren din et nytt utseende. # +store.mashup.hover.label.texturePack=Gi verdenen eller spillgrensesnittet et nytt utseende. # +store.mashup.hover.label.mashup.lineOne=En kombinasjon av forskjellige typer innhold. # +store.mashup.hover.label.mashup.lineTwo=Denne mash-up-pakken inneholder: # store.addon.activateAddonPack=Aktiver tillegg # store.addon.newOrExistingTitle=Hvor skal du legge det til? # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=Stor tavle # tile.chest.name=Kiste # tile.ender_chest.name=Enderkiste # tile.jigsaw.name=Puslespillblokk # +tile.heavy_core.name=Tung kjerne # tile.honey_block.name=Honningblokk # tile.honeycomb_block.name=Bikakeblokk # tile.lodestone.name=Magnetstein # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=Helle av polert svartstein # tile.polished_blackstone_pressure_plate.name=Trykkplate av polert svartstein # tile.polished_blackstone_button.name=Knapp av polert svartstein # tile.polished_blackstone_wall.name=Mur av polert svartstein # +tile.polished_tuff.name=Polert tuffstein # +tile.polished_tuff_slab.name=Polert tuffsteinhelle # +tile.polished_tuff_stairs.name=Polert tuffsteintrapp # +tile.polished_tuff_wall.name=Polert tuffsteinmur # tile.soul_campfire.name=Sjelleirbål # tile.chiseled_nether_bricks.name=Meislede underverdenmursteiner # tile.cracked_nether_bricks.name=Sprukne underverdenmursteiner # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=Gul terrakotta # tile.structure_block.name=Byggverksblokk # structure_block.waterlog_block=Fyll blokker med vann # tile.structure_void.name=Tomrom # +tile.trial_spawner.name=Prøveyngler # +tile.vault.name=Hvelv # tile.wool.black.name=Svart ull # tile.wool.blue.name=Blå ull # tile.wool.brown.name=Brun ull # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=Bregne # tile.tallgrass.grass.name=Gress # tile.tallgrass.name=Gress # tile.tallgrass.shrub.name=Kratt # +tile.tuff_brick_slab.name=Tuffsteinmursteinhelle # +tile.tuff_brick_stairs.name=Tuffsteinmursteintrapp # +tile.tuff_brick_wall.name=Tuffsteinmursteinmur # +tile.tuff_bricks.name=Tuffsteinmursteiner # +tile.tuff_slab.name=Tuffsteinhelle # +tile.tuff_stairs.name=Tuffsteintrapp # +tile.tuff_wall.name=Tuffsteinmur # tile.seagrass.seagrass.name=Sjøgress # tile.sea_pickle.name=Sjøpølse # tile.turtle_egg.name=Havskilpaddeegg # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=Rødt teppe # tile.carpet.silver.name=Lysegrått teppe # tile.carpet.white.name=Hvitt teppe # tile.carpet.yellow.name=Gult teppe # +tile.crafter.name=Bygger # tile.crafting_table.name=Arbeidsbenk # tile.glazedTerracotta.white.name=Hvit glasert terrakotta # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=Vokset tilskåret kobberhelle # tile.waxed_exposed_cut_copper_slab.name=Vokset og eksponert tilskåret kobberhelle # tile.waxed_weathered_cut_copper_slab.name=Vokset og forvitret tilskåret kobberhelle # tile.waxed_oxidized_cut_copper_slab.name=Vokset oksidert tilskåret kobberhelle # + +tile.chiseled_copper.name=Meislet kobber # +tile.exposed_chiseled_copper.name=Eksponert meislet kobber # +tile.oxidized_chiseled_copper.name=Oksidert meislet kobber # +tile.waxed_chiseled_copper.name=Vokset meislet kobber # +tile.waxed_exposed_chiseled_copper.name=Vokset eksponert meislet kobber # +tile.waxed_oxidized_chiseled_copper.name=Vokset oksidert meislet kobber # +tile.waxed_weathered_chiseled_copper.name=Vokset forvitret meislet kobber # +tile.weathered_chiseled_copper.name=Forvitret meislet kobber # + +tile.copper_bulb.name=Kobberpære # +tile.exposed_copper_bulb.name=Eksponert kobberpære # +tile.oxidized_copper_bulb.name=Oksidert kobberpære # +tile.waxed_copper_bulb.name=Vokset kobberpære # +tile.waxed_exposed_copper_bulb.name=Vokset eksponert kobberpære # +tile.waxed_oxidized_copper_bulb.name=Vokset oksidert kobberpære # +tile.waxed_weathered_copper_bulb.name=Vokset forvitret kobberpære # +tile.weathered_copper_bulb.name=Forvitret kobberpære # + +tile.copper_door.name=Kobberdør # +tile.exposed_copper_door.name=Eksponert kobberdør # +tile.oxidized_copper_door.name=Oksidert kobberdør # +tile.waxed_copper_door.name=Vokset kobberdør # +tile.waxed_exposed_copper_door.name=Vokset eksponert kobberdør # +tile.waxed_oxidized_copper_door.name=Vokset oksidert kobberdør # +tile.waxed_weathered_copper_door.name=Vokset forvitret kobberdør # +tile.weathered_copper_door.name=Forvitret kobberdør # + +tile.copper_grate.name=Kobberrist # +tile.exposed_copper_grate.name=Eksponert kobberrist # +tile.oxidized_copper_grate.name=Oksidert kobberrist # +tile.waxed_copper_grate.name=Vokset kobberrist # +tile.waxed_exposed_copper_grate.name=Vokset eksponert kobberrist # +tile.waxed_oxidized_copper_grate.name=Vokset oksidert kobberrist # +tile.waxed_weathered_copper_grate.name=Vokset forvitret kobberrist # +tile.weathered_copper_grate.name=Forvitret kobberrist # + +tile.copper_trapdoor.name=Kobberluke # +tile.exposed_copper_trapdoor.name=Eksponert kobberluke # +tile.oxidized_copper_trapdoor.name=Oksidert kobberluke # +tile.waxed_copper_trapdoor.name=Vokset kobberluke # +tile.waxed_exposed_copper_trapdoor.name=Vokset eksponert kobberluke # +tile.waxed_oxidized_copper_trapdoor.name=Vokset oksidert kobberluke # +tile.waxed_weathered_copper_trapdoor.name=Vokset forvitret kobberluke # +tile.weathered_copper_trapdoor.name=Forvitret kobberluke # + tile.raw_copper_block.name=Blokk av råkobber # tile.raw_iron_block.name=Blokk av råjern # tile.raw_gold_block.name=Blokk av rågull # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=Lykkepil # tipped_arrow.effect.wither=Forfallspil # tipped_arrow.effect.turtleMaster=Skilpaddemesterens pil # tipped_arrow.effect.slowFalling=Langsomt-fall-pil # +tipped_arrow.effect.infested=Infestasjonspil # +tipped_arrow.effect.oozing=Osepil # +tipped_arrow.effect.weaving=Vevepil # +tipped_arrow.effect.windCharged=Vindladepil # structure_block.title=Byggverksblokk # structure_block.structure_name=Byggverkets navn # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=Noen av de nylige endringene dine kan worldError.worldFailedRecovery=Gjenopprettelsen feilet # worldError.worldFailedRecoveryText=Vi oppdaget en korrupt verden og feilet i å gjenopprette den. # +writeThrottling.osDialog.body=Det vil antakelig ta %d minutter å fullføre den forespurte operasjonen. Ikke slå av enheten i mellomtiden. # +writeThrottling.osDialog.cancel=Avbryt operasjon # +writeThrottling.osDialog.confirm=Fortsett # +writeThrottling.progressBar.title=Forbereder data # +writeThrottling.progressBar.body=Forbereder filene dine ... # + userData.recovered.title=Lagrede data gjenopprettet # userData.recovered.text=Gjenopprettet de skadede brukerinnstillingene. # userData.recovered.warning=Noen av de nylige endringene dine kan ha gått tapt under gjenopprettelsen. # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=Chatmelding # xbox.report.area.skin=Spillerskall # xbox.report.area.gameplay=Spillopplevelse # xbox.report.area.ingame=Kreasjoner i spillet # -xbox.report.area.other=Annet # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=Nettmobbing # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=Vi kan ikke koble til. Prøv på nytt sene gathering.connect.title=Kobler til … # gathering.info.qr.title.onlineService=Finn ut mer # gathering.info.qr.body.onlineService.nso=Du trenger et Nintendo Switch Online-medlemskap for å bli med på et arrangement i Minecraft. # -gathering.info.qr.body.onlineService.psn=Du må være logget på \«PlayStation Plus»\ for å bli med på et arrangement i Minecraft. # +gathering.info.qr.body.onlineService.psn=Du må være logget på PlayStation®Plus for å bli med på et arrangement i Minecraft. #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=Du må være logget på for å bli med på et arrangement i Minecraft. # gathering.info.qr.title.childAccount=Onlinespilling ikke tillatt # gathering.info.qr.body.childAccount=Dine nåværende foreldrekontroller hindrer deg i å spille online. # diff --git a/resource_pack/texts/nl_NL.lang b/resource_pack/texts/nl_NL.lang index 5ae8c725c..8a4955d5c 100644 --- a/resource_pack/texts/nl_NL.lang +++ b/resource_pack/texts/nl_NL.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=Seed kiezen # accessibility.start.feedback=Koppeling Feedback verzenden naar website # accessibility.start.new=Nieuw # -accessibility.start.profile=Profiel kiezen # accessibility.start.skinPicker=Skin kiezen # accessibility.store.tag=Label # @@ -1094,10 +1093,6 @@ commands.me.description=Hiermee laat je een bericht over jezelf zien. # commands.message.display.incoming=%1$s fluistert je toe: %2$s # commands.message.display.outgoing=Jij fluistert %1$s iets toe: %2$s # commands.message.sameTarget=Je kunt geen privébericht naar jezelf sturen! # -commands.message.warn=§4Je hebt een waarschuwing ontvangen. Je gedrag kan als kwetsend worden ervaren door andere spelers. Houd rekening met andere spelers. # -commands.message.toastWarn=Minecraft is voor iedereen! Zorg dat je je gedraagt overeenkomstig onze communitynormen. # -commands.warn.invalidWarningLevel=Ongeldig waarschuwingsniveau. # -commands.warn.playerDoesNotExist=Kan speler niet vinden. Selecteer een geldige speler. # commands.mobevent.description=Bepaalt welke mobgebeurtenissen mogen plaatsvinden. # commands.mobevent.eventsEnabledSetToTrue=Mobgebeurtenissen zijn nu ingeschakeld. Afzonderlijke gebeurtenissen die zijn ingesteld op onwaar, vinden niet plaats. # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=- %s: %s van %d %d %d aan %d %d %d # commands.volumearea.entry.withoutIdentifier=- %s: van %d %d %d aan %d %d %d # commands.volumearea.noneExist.currentDimension=Er bestaan geen volumes in de huidige dimensie. # commands.volumearea.inUse=%1$d/%2$d volumes in gebruik. # -commands.warn.description=Stuurt een waarschuwingsbericht naar speler. # commands.weather.clear=Veranderen naar helder weer # commands.weather.description=Stelt het weer in. # commands.weather.disabled=Weercyclus is niet ingeschakeld voor deze wereld. # @@ -1572,6 +1566,7 @@ container.beacon=Baken # container.brewing=Brouwstandaard # container.chest=Kist # container.chestDouble=Grote kist # +container.crafter=De fabrikant # container.crafting=Vervaardiging # container.creative=Itemselectie # container.dispenser=Automaat # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=Caves and Cliffs # createWorldScreen.cavesandcliffsDescription=Ontdek de nieuwe gevarieerde grotgeneratie # createWorldScreen.spectatorMode=Toeschouwermodus # createWorldScreen.spectatorModeDescription=Probeer de vroege versie van de Toeschouwermodus uit # -createWorldScreen.experimentalCameras=Experimentele camera's # -createWorldScreen.experimentalCamerasDescription=Bevat voorbeelden van camera-instellingen (de cameraopdracht is niet langer experimenteel) # createWorldScreen.recipeUnlocking=Ontgrendelen van recepten # createWorldScreen.recipeUnlockingDescription=Ontgrendelen van recepten inschakelen # createWorldScreen.experimentalholiday=Functies van Vakantiemaker # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=Nieuwe wereld maken... # createWorldScreen.progress.realms=Realm opnieuw instellen... # createWorldScreen.seed.desc=Voer een seed in om hetzelfde terrein opnieuw te genereren. Laat leeg voor een willekeurige wereld. # createWorldScreen.showCoordinates=Coördinaten tonen # +createWorldScreen.showDaysPlayed=Dagen gespeeld weergeven # createWorldScreen.worldType=Type wereld # createWorldScreen.randomtickspeed=Willekeurige tiksnelheid # createWorldScreen.randomtickspeed.reset=Willekeurige tiksnelheid resetten # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=Project verwijderen # createWorldScreen.editor.projectOptionsLabel=Projectopties # createWorldScreen.editor.delete.confirm=Project permanent verwijderen? # createWorldScreen.editor.deleteWarningFormat=Weet je zeker dat je '%s' wilt verwijderen? Dit project gaat voor altijd verloren! # +createWorldScreen.eduCloud.about.body=Bestandsnaam: '%1$s'%2$sLaatst bijgewerkt: %3$s%4$sOm te downloaden, klik je op OK en vervolgens op Downloaden.%5$s # +createWorldScreen.eduCloud.about.title=Over cloudwereldbestand # createWorldScreen.eduCloud.delete.confirm=Lokale wereld verwijderen? # createWorldScreen.eduCloud.deleteWarningFormat=Weet je zeker dat je '%1$s' op dit apparaat wilt verwijderen? %2$sDe cloudversie '%3$s' wordt niet beïnvloed en kan later opnieuw worden gesynchroniseerd. # createWorldScreen.experimentalDeferredTechnicalPreview=Drakenfuncties voor makers renderen # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Windows Store # realmsSettingsScreen.xboxOneStoreDisplayName=Xbox Store # realmsSettingsScreen.amazonStoreDisplayName=Amazon Appstore # realmsSettingsScreen.oculusStoreDisplayName=Oculus Store # -realmsSettingsScreen.berwickStoreDisplayName="PlayStation Store" # -realmsSettingsScreen.SonyStoreDisplayName='PlayStation Store' #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=onbekende winkel # realmsSettingsScreen.extendingRealm=Realm verlengen... # realmsSettingsScreen.offerError.title=Aankoop in behandeling # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=Je kunt pakketten die je niet i xbl.syncIAP.confirmSync.prompt.yes=Ja, mijn aankopen synchroniseren # xbl.marketplace.account.error.body.nobutton=Er is een probleem met je account. Je kunt de Marketplace pas weer gebruiken totdat we het probleem hebben opgelost. Als dit probleem meerdere dagen aanhoudt, kun je contact opnemen met de ondersteuning. # -xbl.marketplace.account.banned.body.nobutton=Je kunt de Marketplace niet gebruiken totdat je schorsing afloopt. # playfab.account.banned.temporary=geschorst # playfab.account.banned.permanent=geband # @@ -2487,6 +2482,14 @@ date.daysAbbreviated1Char=%sd ### It needs to be abbreviated with no more than date.hoursAbbreviated1Char=%s u ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%s min ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%s s ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s dagen # +date.hoursPlural=%s uur # +date.minutesPlural=%s minuten # +date.secondsPlural=%s seconden # +date.daySingular=%s dag # +date.hourSingular=%s uur # +date.minuteSingular=%s minuut # +date.secondSingular=%s seconde # date.timeLeft=%s resterend # dayOneExperience.carousel.title=Welkom bij het nieuwe Minecraft! # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=HOSTEN # edu.worlds_screen.settings=INSTELLINGEN # edu.worlds_screen.download=DOWNLOADEN ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=BEHEREN # +edu.worlds_screen.about=OVER # edu.worlds_screen.back=TERUG # edu.worlds_screen.copy=KOPIËREN # edu.worlds_screen.export=EXPORTEREN # @@ -2791,7 +2795,13 @@ edu.templates.empty_banner=Je kunt wereldsjablonen krijgen in de Minecraft Educa edu.pause.multiplayer.disabled=Multiplayer is niet beschikbaar in deze les. # effect.badOmen=Slecht voorteken # +effect.infested=Geïnfesteerd # +effect.oozing=Druipen # +effect.raid_omen=Rooftocht voorteken # +effect.trial_omen=Proefomen # effect.villageHero=Dorpsheld # +effect.weaving=Weven # +effect.wind_charged=Getroffen door windvlaag # enchantment.arrowDamage=Kracht # enchantment.arrowFire=Vlam # @@ -2810,6 +2820,9 @@ enchantment.durability=Duurzaamheid # enchantment.fire=Vuuraspect # enchantment.fishingSpeed=Lokaas # enchantment.frostwalker=IJsloper # +enchantment.heavy_weapon.breach=Ontsnapping # +enchantment.heavy_weapon.density=Dichtheid # +enchantment.heavy_weapon.windburst=Windstoot # enchantment.knockback=Terugslag # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=Vleermuis # entity.bee.name=Bij # entity.blaze.name=Blaze # entity.boat.name=Boot # +entity.bogged.name=Bogged # +entity.breeze.name=Bries # +entity.breeze_wind_charge_projectile.name=Windlading # entity.cat.name=Kat # entity.cave_spider.name=Grotspin # entity.chicken.name=Kip # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=Ongeschoolde dorpeling # entity.villager_v2.name=Dorpeling # entity.vindicator.name=Verdediger # entity.wandering_trader.name=Zwervende handelaar # +entity.wind_charge_projectile.name=Windlading # entity.witch.name=Heks # entity.wither.name=Wither # entity.wither_skeleton.name=Wither-skelet # @@ -3009,6 +3026,7 @@ feature.ruins=Oceaanruïne # feature.pillager_outpost=Plunderaarsvoorpost # feature.bastion_remnant=Bastionruïne # feature.ruined_portal=Verwoest portaal # +feature.trial_chambers=Proefkamers # feed.like=Leuk vinden # feed.manage_feed=Feed beheren # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=Beweeg :tip_left_stick: om te bewegen # gameTip.flying.mouse=Dubbeltik op :_input_key.jump: om te vliegen # gameTip.flying.touch=Dubbeltik op springen om te vliegen # +gameTip.flyDown.mouse=Druk op :_input_key.sneak: om omlaag te vliegen # +gameTip.flyUp.mouse=Druk op :_input_key.jump: om omhoog te vliegen # + +gameTip.stopFlying.mouse=Dubbeltik op :_input_key.jump: om te stoppen met vliegen # +gameTip.stopFlying.touch=Dubbeltik op omlaag vliegen om te stoppen met vliegen # + gameTip.jump.mouse=Spring met :_input_key.jump: # +gameTip.swim.mouse=Houd :_input_key.jump: ingedrukt om omhoog te zwemmen # -gameTip.hotbar.mouse=Scroll met het muiswiel en selecteer # in de snelbalk om vast te houden # -gameTip.hotbar.touch=Tik op # in snelbalk om vast te houden # -gameTip.hotbar.controller=Tik op # in snelbalk om vast te houden # +gameTip.hotbar.selection.mouse=Scrol of druk op %s om het item vast te houden ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=Tik op het item in de snelbalk om het vast te houden # gameTip.breakBlock.mouse=Houd de linkermuisknop ingedrukt om blokken te breken # gameTip.breakBlock.touch=Tik en houd vast om blokken te breken # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=Je bent aan het sluipen! Je kunt niet van randen vallen # gameTip.sneak.touch=Je bent aan het sluipen, waardoor je niet van randen kunt vallen # gameTip.sneak.controller=Je bent aan het sluipen, waardoor je niet van randen kunt vallen # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=Plaats je werkbank. Houd deze vast en klik om 'm te plaatsen # gameTip.placeCraftingTable.touch=Plaats je werkbank door op de grond te tikken # gameTip.placeCraftingTable.controller=Plaats je werkbank, houd deze vast en tik vervolgens op de grond # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=Bedankt voor het delen van je beoordeling! # gui.submitFeedback.failure.status.unprocessableEntity=Je bent niet de eigenaar van dit voorwerp waarop je feedback wilt geven. (Foutcode: %d) # gui.submitFeedback.failure.status.tooManyRequests=O, nee! Je hebt te veel beoordelingen verzonden, probeer het later opnieuw. (Foutcode: %d) # gui.submitFeedback.failure.status.other=Je beoordeling kan op dit moment niet worden verzonden. Probeer het later opnieuw. (Foutcode: %d) # +gui.togglable_slot=Druk om vak uit te schakelen # gui.playOffline=Offline spelen # gui.signIn=Aanmelden # gui.genericNetworkError=Er is iets misgegaan. Controleer je internetverbinding. # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=Verken een wereld vol mogelijkheden met Minecoins: Mi howtoplay.minecoins.text.2=Eenmaal ingewisseld, worden je Minecoins aan je Microsoft-account gekoppeld, zodat je ook toegang tot je munten en aankopen hebt op andere ondersteunde apparaten! # howtoplay.minecoins.button.text.1=Munten krijgen # howtoplay.minecoins.header.1=Disclaimer # -howtoplay.minecoins.text.3=* Minecoins vereisen een versie van Mineraft: Bedrock Edition met Minecraft Marketplace. Minecoins zijn niet compatibel met Sony PlayStation. Voor compatibiliteitsinformatie ga je naar minecraft.net/minecoins  # +howtoplay.minecoins.text.3=*Minecoins vereisen een versie van Mineraft: Bedrock Edition met Minecraft Marketplace. Minecoins zijn niet compatibel met Sony PlayStation®. Voor compatibiliteitsinformatie ga je naar minecraft.net/minecoins  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=Mijnbouw # @@ -4145,7 +4170,7 @@ level.editor.export.failed=Project exporteren mislukt # level.editor.import.failed=Project importeren mislukt # level.editor.import.failed.incompatibleEdition=Kan project niet importeren: niet-ondersteunde bestandsindeling # -inbox.invite.title=Realms-uitnodiging # +inbox.invite.title=Realm-uitnodiging voor # invite.clear=Selectie wissen # invite.send=%d uitnodigingen sturen # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=Rood per band sinister omgekeerd # item.banner.diagonal_up_right.silver=Lichtgrijs per band sinister omgekeerd # item.banner.diagonal_up_right.white=Wit per band sinister omgekeerd # item.banner.diagonal_up_right.yellow=Geel per band sinister omgekeerd # +item.banner.flow.black=Zwarte stroom # +item.banner.flow.blue=Blauwe stroom # +item.banner.flow.brown=Bruine stroom # +item.banner.flow.cyan=Cyaanblauwe stroom # +item.banner.flow.gray=Grijze stroom # +item.banner.flow.green=Groene stroom # +item.banner.flow.lightBlue=Lichtblauwe stroom # +item.banner.flow.lime=Limoengroene stroom # +item.banner.flow.magenta=Magenta stroom # +item.banner.flow.orange=Oranje stroom # +item.banner.flow.pink=Roze stroom # +item.banner.flow.purple=Paarse stroom # +item.banner.flow.red=Rode stroom # +item.banner.flow.silver=Lichtgrijze stroom # +item.banner.flow.white=Witte stroom # +item.banner.flow.yellow=Gele stroom # item.banner.flower.black=Zwart bloemwapen # item.banner.flower.blue=Blauw bloemwapen # item.banner.flower.brown=Bruin bloemwapen # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=Witte schildbasis geschuind # item.banner.gradient_up.yellow=Gele schildbasis geschuind # item.banner.gray.name=Grijze banier # item.banner.green.name=Groene banier # +item.banner.guster.black=Zwarte Guster # +item.banner.guster.blue=Blauwe Guster # +item.banner.guster.brown=Bruine Guster # +item.banner.guster.cyan=Cyaanblauwe Guster # +item.banner.guster.gray=Grijze Guster # +item.banner.guster.green=Groene Guster # +item.banner.guster.lightBlue=Lichtblauwe Guster # +item.banner.guster.lime=Limoengroene Guster # +item.banner.guster.magenta=Magenta Guster # +item.banner.guster.orange=Oranje Guster # +item.banner.guster.pink=Roze Guster # +item.banner.guster.purple=Paarse Guster # +item.banner.guster.red=Rode Guster # +item.banner.guster.silver=Lichtgrijze Guster # +item.banner.guster.white=Witte Guster # +item.banner.guster.yellow=Gele Guster # item.banner.half_horizontal.black=Zwart per faas # item.banner.half_horizontal.blue=Blauw per faas # item.banner.half_horizontal.brown=Bruin per faas # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=Acacia boot # item.boat.big_oak.name=Donkereiken boot # item.bone.name=Bot # item.book.name=Boek # +item.breeze_rod.name=Bries-staaf # item.chainmail_boots.name=Maliënlaarzen # item.leather_boots.name=Leren laarzen # item.diamond_boots.name=Diamanten laarzen # @@ -4991,6 +5049,7 @@ item.comparator.name=Redstone-vergelijker # item.compass.name=Kompas # item.lodestonecompass.name=Zeilsteenkompas # item.cookie.name=Koekje # +item.copper_door.name=Koperen deur # item.crossbow.name=Kruisboog # item.diamond.name=Diamant # item.repeater.name=Redstone-herhaler # @@ -5038,6 +5097,7 @@ tile.end_rod.name=End-staaf # item.ender_eye.name=Enderoog # item.ender_pearl.name=Enderparel # item.experience_bottle.name=Betoverfles # +item.exposed_copper_door.name=Blootgestelde koperen deur # item.feather.name=Veer # item.fermented_spider_eye.name=Kolkend spinnenoog # item.fireball.name=Vuurlading # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=Gouden beenbeschermer # item.iron_leggings.name=IJzeren beenbeschermer # item.nautilus_shell.name=Nautilus-schelp # item.heart_of_the_sea.name=Hart van de zee # +item.mace.name=Knots # item.magma_cream.name=Magmaroom # item.map.name=Kaart # item.map.exploration.mansion.name=Bosverkenningskaart # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=Savannedorpkaart # item.map.exploration.village_desert.name=Woestijndorpkaart # item.map.exploration.jungle_temple.name=Jungleverkenningskaart # item.map.exploration.swamp_hut.name=Moerasverkenningskaart # +item.map.exploration.trial_chambers.name=Proefverkenningskaart # item.melon.name=Meloen # item.milk.name=Melk # item.minecart.name=Mijnkar # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=Mijnkar met kist # item.command_block_minecart.name=Mijnkar met commandoblok # item.minecartFurnace.name=Mijnkar met oven # item.hopper_minecart.name=Mijnkar met trechter # +item.ominous_bottle.name=Onheilspellende fles # +item.ominous_trial_key.name=Onheilspellende proefsleutel # +item.oxidized_copper_door.name=Geoxideerde koperen deur # item.tnt_minecart.name=Mijnkar met TNT # item.pitcher_pod.name=Kruikplantpeul # item.torchflower_seeds.name=Fakkelbloemzaden # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=Agentspawnei # item.spawn_egg.entity.armadillo.name=Gordeldier-spawnei # item.spawn_egg.entity.axolotl.name=Axolotlspawnei # item.spawn_egg.entity.bee.name=Bijspawnei # +item.spawn_egg.entity.bogged.name=Boggedspawnei # +item.spawn_egg.entity.breeze.name=Bries-spawnei # item.spawn_egg.entity.hoglin.name=Hoglinspawnei # item.spawn_egg.entity.cat.name=Katspawnei # item.spawn_egg.entity.chicken.name=Kipspawnei # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 - afdeling # item.record_pigstep.desc=Lena Raine - Pigstep # item.record_otherside.desc=Lena Raine - otherside # item.record_relic.desc=Aaron Cherof - Relic # +item.record_creator.desc=Lena Raine - Maker # +item.record_creator_music_box.desc=Lena Raine - Maker (muziekdoos) # +item.record_precipice.desc=Aaron Cherof - Afgrond # item.redstone.name=Redstone-stof # item.reeds.name=Suikerriet # item.kelp.name=Kelp # @@ -5324,6 +5394,12 @@ item.iron_sword.name=IJzeren zwaard # item.stone_sword.name=Stenen zwaard # item.wooden_sword.name=Houten zwaard # item.unbreakable=Onbreekbaar # +item.waxed_copper_door.name=Gewaxte koperen deur # +item.waxed_exposed_copper_door.name=Gewaxte blootgestelde koperen deur # +item.waxed_oxidized_copper_door.name=Gewaxte geoxideerde koperen deur # +item.waxed_weathered_copper_door.name=Gewaxte verweerde koperen deur # +item.weathered_copper_door.name=Verweerde koperen deur # +item.wind_charge.name=Windlading # item.wheat.name=Tarwe # item.wolf_armor.name=Wolvenharnas # item.writable_book.name=Boek en veer # @@ -5331,6 +5407,7 @@ item.written_book.name=Geschreven boek # item.glowstone_dust.name=Gloeisteenstof # item.shulker_shell.name=Sjoelkerschelp # item.totem.name=Totem van Onsterfelijkheid # +item.trial_key.name=Proefsleutel # item.turtle_helmet.name=Schildpadschild # item.turtle_shell_piece.name=Schildpadschub # item.phantom_membrane.name=Fantoommembraan # @@ -5338,8 +5415,10 @@ item.sweet_berries.name=Zoete bessen # item.suspicious_stew.name=Schimmige stoofschotel # item.banner_pattern.bricks=Veld gemetseld # item.banner_pattern.creeper=Creeperwapen # +item.banner_pattern.flow=Stroom # item.banner_pattern.flower=Bloemwapen # item.banner_pattern.globe=Globe # +item.banner_pattern.guster=Guster # item.banner_pattern.name=Vlagpatroon # item.banner_pattern.piglin=Snuit # item.banner_pattern.skull=Schedelwapen # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=Vlagpatronen # itemGroup.name.netherWartBlock=Netherkruid # itemGroup.name.candles=Kaarsen # itemGroup.name.goatHorn=Geitenhoorns # +itemGroup.name.compounds=Verbindingen # +itemGroup.name.products=Producten # jigsaw.title.target_pool=Doelgroep: # jigsaw.title.name=Naam: # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=KLASLOKAALINSTELLINGEN # menu.serverStore=%s winkel # menu.serverGenericName=Server # menu.play=Spelen # +menu.profile=Profiel # menu.playdemo=Demowereld spelen # menu.playOnRealms=Spelen op Realm # menu.quickplay=Snel spel # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=Kies je startpersonage # menu.character_cast.preview_title=Maak kennis met de cast! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Realms-server ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=Servers # merchant.deprecated=Verhandel iets anders om te ontgrendelen! # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=Spelen met volledig toetsenbord # options.fullKeyboardLayout=Toetsenbordindeling # options.improvedInputResponsePlaceholder=Verbeterde invoerrespons # options.improvedInputResponsePlaceholder.tooltip=Vermindert de vertraging tussen je invoer en wat je op je scherm ziet. Deze instelling verbruikt mogelijk meer batterijvermogen. # +options.dynamicTexturesToggle=Texturelimiet verwijderen # +options.dynamicTexturesToggle.tooltip=Als je dit van aan naar uit zet, moet het spel opnieuw worden opgestart. Het kan instabiliteit veroorzaken bij het gebruik van meerdere add-ons of resourcepakketten met veel textures. # +options.dynamicTextures.popUp=Als je 'Texturelimiet verwijderen' inschakelt, moet je het spel opnieuw opstarten om het uit te schakelen. # +options.dynamicTextures.popUp.title=Weet je het zeker? # options.fullscreen=Volledig scherm # options.gamepadcursorsensitivity=Cursorgevoeligheid controller # options.gamertag=Gamertag: # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=Verbinding maken # options.creator.debuggerListen=Luister # options.creator.debuggerHost=Hosten # options.creator.debuggerPort=Poort # +options.creator.watchdogHeading=Instellingen script-watchdog # +options.creator.watchdogSlowWarning=Waarschuwingen traag script # +options.creator.watchdogSlowThreshold=Gemiddelde overschrijdt # +options.creator.watchdogSlowFormat=%s milliseconden # +options.creator.watchdogSlowFormatDefault=%s milliseconden (standaard) # +options.creator.watchdogSpikeWarning=Waarschuwingen piek script # +options.creator.watchdogSpikeThreshold=Piek overschrijdt # +options.creator.watchdogSpikeFormat=%s milliseconden # +options.creator.watchdogSpikeFormatDefault=%s milliseconden (standaard) # +options.creator.watchdogHangThreshold=Onderbreken na # +options.creator.watchdogHangFormat=%s seconden # +options.creator.watchdogHangFormatDefault=%s seconden (standaard) # options.vr_classic_box_selection=Selectie markeren # options.hidegamepadcursor=Controllercursor verbergen # options.hidegui=GUI verbergen # @@ -6662,7 +6761,7 @@ options.makeBackup=Maak een back-up van mijn wereld # options.managePrivacy=Om je privacyinstellingen te beheren, ga je in een webbrowser naar https://account.xbox.com/Settings. ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Microsoft-account ontkoppelen # options.unlink_msa.confirm.title=Microsoft-account ontkoppelen? # -options.unlink_msa.confirm.warning=WAARSCHUWING: je kunt je voortgang of aankopen op je "PlayStation 4"-systeem niet meer opslaan op je account %s als je deze ontkoppelt. # +options.unlink_msa.confirm.warning=WAARSCHUWING: je kunt je voortgang of aankopen op je PlayStation®4-systeem niet meer opslaan op je account %s als je deze ontkoppelt. #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=Als je je Microsoft-account ontkoppelt vanuit dit spel, heeft dit invloed op alle Minecraft-spellen op dit platform die dit Microsoft-account gebruiken. # options.unlink_msa.confirm.checkbox1=Ik heb geen toegang meer tot winkelcontent in het spel als ik speel op andere platformen. # options.unlink_msa.confirm.checkbox2=Ik kan geen platformoverschrijdende spellen meer spelen met mijn vrienden op andere platformen. # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=Laad een wereld om de besturing aan te pa hudScreen.controlCustomization.tooltip.notouch=Gebruik een touchapparaat om de besturing aan te passen # hudScreen.controlCustomization.tooltip.alreadycustomizing=Er is al een aanpassingsscherm voor de aanraakbediening geopend # hudScreen.controlCustomization.tooltip.alive=Speler moet in leven zijn om de besturing aan te passen. # +hudScreen.daysPlayed=Dagen gespeeld: %s # +hudScreen.daysPlayed.overflow=Te veel om te tellen! # playscreen.fileSize.MB=MB # playscreen.fileSize.GB=GB # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=Spattende drank der genezing # potion.heal.linger.name=Aanhoudende drank der genezing # potion.healthBoost=Gezondheidsboost # potion.hunger=Honger # +potion.infested.linger.name=Aanhoudende drank van Plaag # +potion.infested.name=Drank van Plaag # +potion.infested.splash.name=Spattende drank van Plaag # +potion.infested=Geïnfesteerd # potion.invisibility=Onzichtbaarheid # potion.invisibility.name=Drankje van Onzichtbaarheid # potion.invisibility.splash.name=Spattende drank der onzichtbaarheid # @@ -7067,6 +7172,10 @@ potion.nightVision=Nachtzicht # potion.nightVision.name=Drankje der Nachtzicht # potion.nightVision.splash.name=Spattende drank des nachtzichts # potion.nightVision.linger.name=Aanhoudende drank des nachtzichts # +potion.oozing.linger.name=Aanhoudende drank van Druipen # +potion.oozing.name=Drank van Druipen # +potion.oozing.splash.name=Spattende drank van Druipen # +potion.oozing=Druipen # potion.poison=Vergif # potion.poison.name=Drankje van Vergif # potion.poison.splash.name=Spattende drank des gifs # @@ -7108,6 +7217,14 @@ potion.weakness=Zwakheid # potion.weakness.name=Drankje van Zwakheid # potion.weakness.splash.name=Spattende drank der zwakheid # potion.weakness.linger.name=Aanhoudende drank der zwakheid # +potion.weaving.linger.name=Aanhoudende drank van Weven # +potion.weaving.name=Drank van Weven # +potion.weaving.splash.name=Spattende drank van Weven # +potion.weaving=Weven # +potion.windCharged.linger.name=Aanhoudende drank van Windvlagen # +potion.windCharged.name=Drank van Windvlagen # +potion.windCharged.splash.name=Spattende drank van Windvlagen # +potion.windCharged=Getroffen door windvlaag # potion.wither=Wither # potion.wither.name=Drankje van Verval # potion.wither.splash.name=Spattende drank der verschrompeling # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=Deze wereld kan niet worden geopend v progressScreen.message.forbiddenContent=Je bezit een of meerdere van de toegepaste pakketten niet # progressScreen.message.loadingSplitScreenAppearances=Gesplitste schermweergaven laden... # progressScreen.message.finishedLoadingSplitScreenAppearances=Gesplitste schermweergaven zijn geladen. # -progressScreen.message.modifiedWorldWarning=Het uiterlijk en het gedrag van deze wereld is mogelijk anders dan die van niet-aangepaste werelden en je kunt geen achievements verdienen. # +progressScreen.message.modifiedWorldWarning.1=Je speelt in een wereld met add-ons! Hiermee voeg je nieuwe functies toe aan je Minecraft-wereld. # +progressScreen.message.modifiedWorldWarning.2=Stop niet na eentje! Je kunt meerdere add-ons in één wereld tegelijk laden. # +progressScreen.message.modifiedWorldWarning.3=Geavanceerde tip: een resourcepakket kan de textures van verschillende blokken en entiteiten wijzigen. # +progressScreen.message.modifiedWorldWarning.4=Geavanceerde tip: een gedragspakket kan veranderen hoe verschillende items, entiteiten of blokken werken. # +progressScreen.message.modifiedWorldWarning.5=Geavanceerde tip: een add-on omvat zowel een gedragspakket als een resourcepakket. Zorg ervoor dat beide pakketten worden geactiveerd om de add-on te kunnen gebruiken! # +progressScreen.message.modifiedWorldWarning.6=Add-ons voegen nieuwe blokken, items of mobs toe aan je werelden. # +progressScreen.message.modifiedWorldWarning.7=Werelden en add-ons zijn complex! Hoewel sommige prima samenwerken, krijg je misschien maffe resultaten met anderen. # +progressScreen.message.modifiedWorldWarning.8=Meer add-ons betekent meer plezier, maar het kan langer duren om het spel te laden. # progressScreen.dialog.title.resourcePack=Resourcepakketten downloaden? # progressScreen.dialog.title.behaviorAndResourcePack=Wereldgedrag- en resourcepakketten downloaden? # progressScreen.dialog.title.onlyBehavior=Wereldgedragspakketten downloaden? # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=Wereld bijwerken? # resourcePack.warning.add.body=Het uiterlijk en het gedrag van deze wereld is mogelijk anders dan die van niet-aangepaste werelden. Je kunt het beste een kopie van je wereld opslaan voordat je doorgaat. # resourcePack.warning.add.button.cancel=Het pakket niet toevoegen # resourcePack.warning.add.button.ok=Het pakket toch toevoegen # +resourcePack.warnings.contentKeyErrorBody=Er is een probleem opgetreden bij het laden van pakket %s. # +resourcePack.warnings.contentKeyErrorBodyMultiple=Er is een probleem opgetreden bij het laden van pakketten %s. # +resourcePack.warnings.contentKeyErrorTitle=Fout! # resourcePack.warning.remove.title=Dit is gevaarlijk! # resourcePack.warning.remove.body=Als je pakketten toevoegt of verwijdert nadat je in een wereld hebt gespeeld, kan deze wereld beschadigd raken en verlies je mogelijk alles wat je hebt gemaakt. # resourcePack.warning.remove.button.cancel=Het pakket behouden # @@ -7557,7 +7684,9 @@ item.crimson_hanging_sign.name=Karmozijnrood hangbordje # item.danger_pottery_sherd.name=Aardewerkscherf met gevaar # item.dark_oak_hanging_sign.name=Donkereiken hangbordje # item.explorer_pottery_sherd.name=Aardewerkscherf met ontdekkingsreiziger # +item.flow_pottery_sherd.name=Aardewerkscherf met stroom # item.friend_pottery_sherd.name=Aardewerkscherf met vriend # +item.guster_pottery_sherd.name=Aardewerkscherf met guster # item.heart_pottery_sherd.name=Aardewerkscherf met hart # item.heartbreak_pottery_sherd.name=Aardewerkscherf met gebroken hart # item.howl_pottery_sherd.name=Aardewerkscherf met wolf # @@ -7568,6 +7697,7 @@ item.mourner_pottery_sherd.name=Aardewerkscherf met rouwdrager # item.oak_hanging_sign.name=Eiken hangbordje # item.plenty_pottery_sherd.name=Aardewerkscherf met schatkist # item.prize_pottery_sherd.name=Aardewerkscherf met prijs # +item.scrape_pottery_sherd.name=Aardewerkscherf met schraap # item.sheaf_pottery_sherd.name=Aardewerkscherf met bundel # item.shelter_pottery_sherd.name=Aardewerkscherf met schuilplaats # item.skull_pottery_sherd.name=Aardewerkscherf met schedel # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=Kersentrap # tile.cherry_trapdoor.name=Kersenvalluik # tile.cherry_wood.name=Kersenhout # tile.chiseled_bookshelf.name=Gebeitelde boekenplank # +tile.chiseled_tuff.name=Gebeiteld tufsteen # +tile.chiseled_tuff_bricks.name=Gebeitelde tufbakstenen # tile.decorated_pot.name=Versierde pot # tile.pink_petals.name=Roze bloemblaadjes # tile.stripped_bamboo_block.name=Gestript bamboeblok # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=Plaaggeest-harnasuitrusting # trim_pattern.ward.name=Wachterharnas-uitrusting # trim_pattern.wayfinder.name=Wegwijzerharnasuitsrusting # trim_pattern.wild.name=Wildernisharnasuitrusting # +trim_pattern.bolt.name=Bliksem-harnasrand # +trim_pattern.flow.name=Stroom-harnasrand # upgrade.netherite_upgrade.name=Netherite-upgrade # storageManager.mainSizeLabel=%s - 1 item # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=Wereldsjabloon verwijderen? # selectTemplate.delete=Verwijderen # selectTemplate.myTemplates=Mijn wereldsjablonen # selectTemplate.realmsPlus=Uitgelichte Realms Plus-sjablonen # -selectTemplate.marketplacePass=Uitgelichte Marketplace Pass-sjablonen #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=Uitgelichte Marketplace Pass-content #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=Geïmporteerde sjablonen # selectTemplate.download=Downloaden # selectTemplate.noTemplates=Er zijn geen wereldsjablonen op dit apparaat. # -selectTemplate.suggestedContent.title=Uitgelichte Marketplace-sjablonen # +selectTemplate.suggestedContent.title=Uitgelichte Marketplace-content # selectTemplate.suggestedContent.button=Meer sjablonen bekijken # selectTemplate.createdBy=Gemaakt door %s # selectTemplate.inventory=Mijn Marketplace-pakketten # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=Er is een probleem met de verbinding. Ga terug en store.loading.error.issues=Hmm, er zijn problemen met de Marketplace. Probeer het later nog eens. # store.loading.error.internetDown=We hebben geen internetverbinding gevonden. # store.loading.error.account=Er is een probleem met je account. Probeer het binnenkort nog eens en neem contact op met support als het probleem zich blijft voordoen. # +store.loading.error.account.banned=Je kunt de Marketplace niet gebruiken totdat je schorsing afloopt. # store.giftPromo.day=Dag %s ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=Geclaimd # @@ -8409,6 +8544,13 @@ store.mashup.count.world=1 wereld # store.mashup.count.worlds=%s werelden #number of worlds # store.mashup.count.addonPack=1 uitbreiding # store.mashup.count.addonPacks=%s uitbreidingen #number of addons # +store.mashup.count.mashup=Mashup # +store.mashup.hover.label.addonPack=Add-ons kunnen op elke wereld worden toegepast. # +store.mashup.hover.label.world=Een met de hand gemaakte Minecraft-kaart. # +store.mashup.hover.label.skin=Geef je personage een nieuwe look. # +store.mashup.hover.label.texturePack=Voeg nieuwe beelden toe aan je wereld of game-interface. # +store.mashup.hover.label.mashup.lineOne=Een combinatie van verschillende soorten content. # +store.mashup.hover.label.mashup.lineTwo=Deze mashup bevat: # store.addon.activateAddonPack=Activeer de uitbreiding! # store.addon.newOrExistingTitle=Waar voeg je het toe? # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=Schrijfbord # tile.chest.name=Kist # tile.ender_chest.name=Enderkist # tile.jigsaw.name=Puzzelblok # +tile.heavy_core.name=Zware kern # tile.honey_block.name=Honingblok # tile.honeycomb_block.name=Honingraatblok # tile.lodestone.name=Zeilsteen # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=Gepolijste zwartstenen plaat # tile.polished_blackstone_pressure_plate.name=Gepolijste zwartstenen drukplaat # tile.polished_blackstone_button.name=Gepolijste zwartstenen knop # tile.polished_blackstone_wall.name=Gepolijste zwartstenen muur # +tile.polished_tuff.name=Gepolijst tufsteen # +tile.polished_tuff_slab.name=Gepolijste tufsteenplaat # +tile.polished_tuff_stairs.name=Gepolijste tufsteentrap # +tile.polished_tuff_wall.name=Gepolijste tufsteenmuur # tile.soul_campfire.name=Zielenkampvuur # tile.chiseled_nether_bricks.name=Gebeitelde Nether-bakstenen # tile.cracked_nether_bricks.name=Gebarsten Nether-bakstenen # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=Gele terracotta # tile.structure_block.name=Constructieblok # structure_block.waterlog_block=Wateroverlastblokken # tile.structure_void.name=Constructieleegte # +tile.trial_spawner.name=Proefspawner # +tile.vault.name=Kluis # tile.wool.black.name=Zwarte wol # tile.wool.blue.name=Blauwe wol # tile.wool.brown.name=Bruine wol # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=Varen # tile.tallgrass.grass.name=Gras # tile.tallgrass.name=Gras # tile.tallgrass.shrub.name=Struik # +tile.tuff_brick_slab.name=Tufstenen baksteenplaat # +tile.tuff_brick_stairs.name=Tufstenen baksteentrap # +tile.tuff_brick_wall.name=Tufstenen baksteenmuur # +tile.tuff_bricks.name=Tufstenen bakstenen # +tile.tuff_slab.name=Tufsteenplaat # +tile.tuff_stairs.name=Tufsteentrap # +tile.tuff_wall.name=Tufsteenmuur # tile.seagrass.seagrass.name=Zeegras # tile.sea_pickle.name=Zeekomkommer # tile.turtle_egg.name=Zeeschildpadei # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=Rood tapijt # tile.carpet.silver.name=Lichtgrijs tapijt # tile.carpet.white.name=Wit tapijt # tile.carpet.yellow.name=Geel tapijt # +tile.crafter.name=De fabrikant # tile.crafting_table.name=Werkbank # tile.glazedTerracotta.white.name=Wit geglazuurde terracotta # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=Gewaxte gesneden koperen plaat # tile.waxed_exposed_cut_copper_slab.name=Gewaxte, blootgestelde gesneden koperen plaat # tile.waxed_weathered_cut_copper_slab.name=Gewaxte, verweerde gesneden koperen plaat # tile.waxed_oxidized_cut_copper_slab.name=Gewaxte, geoxideerde gesneden koperen plaat # + +tile.chiseled_copper.name=Gebeiteld koper # +tile.exposed_chiseled_copper.name=Blootgesteld gebeiteld koper # +tile.oxidized_chiseled_copper.name=Geoxideerd gebeiteld koper # +tile.waxed_chiseled_copper.name=Gewaxt gebeiteld koper # +tile.waxed_exposed_chiseled_copper.name=Gewaxt blootgesteld gebeiteld koper # +tile.waxed_oxidized_chiseled_copper.name=Gewaxt geoxideerd gebeiteld koper # +tile.waxed_weathered_chiseled_copper.name=Gewaxt verweerd gebeiteld koper # +tile.weathered_chiseled_copper.name=Verweerd gebeiteld koper # + +tile.copper_bulb.name=Koperen lamp # +tile.exposed_copper_bulb.name=Blootgestelde koperen lamp # +tile.oxidized_copper_bulb.name=Geoxideerde koperen lamp # +tile.waxed_copper_bulb.name=Gewaxte koperen lamp # +tile.waxed_exposed_copper_bulb.name=Gewaxte blootgestelde koperen lamp # +tile.waxed_oxidized_copper_bulb.name=Gewaxte geoxideerde koperen lamp # +tile.waxed_weathered_copper_bulb.name=Gewaxte verweerde koperen lamp # +tile.weathered_copper_bulb.name=Verweerde koperen lamp # + +tile.copper_door.name=Koperen deur # +tile.exposed_copper_door.name=Blootgestelde koperen deur # +tile.oxidized_copper_door.name=Geoxideerde koperen deur # +tile.waxed_copper_door.name=Gewaxte koperen deur # +tile.waxed_exposed_copper_door.name=Gewaxte blootgestelde koperen deur # +tile.waxed_oxidized_copper_door.name=Gewaxte geoxideerde koperen deur # +tile.waxed_weathered_copper_door.name=Gewaxte verweerde koperen deur # +tile.weathered_copper_door.name=Verweerde koperen deur # + +tile.copper_grate.name=Koperen rooster # +tile.exposed_copper_grate.name=Blootgesteld koperen rooster # +tile.oxidized_copper_grate.name=Geoxideerd koperrooster # +tile.waxed_copper_grate.name=Gewaxt koperrooster # +tile.waxed_exposed_copper_grate.name=Gewaxt blootgesteld koperrooster # +tile.waxed_oxidized_copper_grate.name=Gewaxt geoxideerd koperrooster # +tile.waxed_weathered_copper_grate.name=Gewaxt verweerd koperrooster # +tile.weathered_copper_grate.name=Verweerd koperrooster # + +tile.copper_trapdoor.name=Koperen valluik # +tile.exposed_copper_trapdoor.name=Blootgesteld koperen valluik # +tile.oxidized_copper_trapdoor.name=Geoxideerd koperen valluik # +tile.waxed_copper_trapdoor.name=Gewaxt koperen valluik # +tile.waxed_exposed_copper_trapdoor.name=Gewaxt blootgesteld koperen valluik # +tile.waxed_oxidized_copper_trapdoor.name=Gewaxt geoxideerd koperen valluik # +tile.waxed_weathered_copper_trapdoor.name=Gewaxt verweerd koperen valluik # +tile.weathered_copper_trapdoor.name=Verweerd koperen valluik # + tile.raw_copper_block.name=Blok ruw koper # tile.raw_iron_block.name=Blok ruw ijzer # tile.raw_gold_block.name=Blok ruw goud # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=Pijl van Geluk # tipped_arrow.effect.wither=Pijl van Verval # tipped_arrow.effect.turtleMaster=Pijl van de Schildpadmeester # tipped_arrow.effect.slowFalling=Pijl van Langzaam vallen # +tipped_arrow.effect.infested=Pijl van Plaag # +tipped_arrow.effect.oozing=Pijl van Druipen # +tipped_arrow.effect.weaving=Pijl van Weven # +tipped_arrow.effect.windCharged=Pijl van Windvlagen # structure_block.title=Constructieblok # structure_block.structure_name=Constructienaam # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=Een aantal van je recente wijzigingen worldError.worldFailedRecovery=Herstellen mislukt # worldError.worldFailedRecoveryText=We hebben een beschadigde wereld gedetecteerd, maar kunnen deze niet herstellen. # +writeThrottling.osDialog.body=De gevraagde bewerking duurt naar schatting %d minuten. Schakel je apparaat gedurende deze tijd niet uit. # +writeThrottling.osDialog.cancel=Bewerking annuleren # +writeThrottling.osDialog.confirm=Doorgaan # +writeThrottling.progressBar.title=Gegevens worden voorbereid # +writeThrottling.progressBar.body=Je bestanden worden klaargemaakt... # + userData.recovered.title=Opslaggegevens hersteld # userData.recovered.text=Je beschadigde gebruikersinstellingen zijn hersteld. # userData.recovered.warning=Een aantal van je recente wijzigingen is tijdens het herstel mogelijk verloren gegaan. # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=Chatbericht # xbox.report.area.skin=Spelerskin # xbox.report.area.gameplay=Gameplay # xbox.report.area.ingame=Creaties in het spel # -xbox.report.area.other=Overig # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=Cyberpesten # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=We kunnen geen verbinding maken. Probeer h gathering.connect.title=Verbinding maken... # gathering.info.qr.title.onlineService=Meer informatie # gathering.info.qr.body.onlineService.nso=Je hebt een Nintendo Switch Online-lidmaatschap nodig om aan een evenement in Minecraft te kunnen deelnemen. # -gathering.info.qr.body.onlineService.psn=Je moet zijn aangemeld bij \"PlayStation Plus\" om aan een evenement in Minecraft te kunnen deelnemen. # +gathering.info.qr.body.onlineService.psn=Je moet zijn aangemeld bij PlayStation®Plus om aan een Minecraft-event te kunnen deelnemen. #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=Je moet zijn aangemeld om aan een evenement in Minecraft te kunnen deelnemen. # gathering.info.qr.title.childAccount=Online spelen niet toegestaan # gathering.info.qr.body.childAccount=Je huidige ouderlijk toezicht beperkt je om online te spelen. # diff --git a/resource_pack/texts/pl_PL.lang b/resource_pack/texts/pl_PL.lang index 1b94b9310..22b1bc365 100644 --- a/resource_pack/texts/pl_PL.lang +++ b/resource_pack/texts/pl_PL.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=Wybierz ziarno # accessibility.start.feedback=Link do strony internetowej umożliwiający przesłanie opinii # accessibility.start.new=Nowy # -accessibility.start.profile=Wybierz profil # accessibility.start.skinPicker=Wybierz skórkę # accessibility.store.tag=Znacznik # @@ -305,7 +304,7 @@ achievement.killCow.desc=Zbierz trochę skóry # achievement.killEnemy=Łowca potworów # achievement.killEnemy.desc=Zaatakuj i zabij potwora # achievement.killWither=Początek. # -achievement.killWither.desc=Zabij withera # +achievement.killWither.desc=Zabij withera. # achievement.makeBread=Pieczenie chleba # achievement.makeBread.desc=Zrób chleb z pszenicy # achievement.mineWood=Zbieranie drewna # @@ -327,7 +326,7 @@ achievement.requires=Potrzeba '%1$s' # achievement.snipeSkeleton=Pojedynek snajperów # achievement.snipeSkeleton.desc=Zabij szkielet strzałą z dystansu ponad 50 metrów # achievement.spawnWither=Początek? # -achievement.spawnWither.desc=Zespawnuj withera # +achievement.spawnWither.desc=Zespawnuj withera. # achievement.taken=Zabrano! # achievement.theEnd=Kres? # achievement.theEnd.desc=Zlokalizuj Kres # @@ -1094,10 +1093,6 @@ commands.me.description=Wyświetla wiadomość o Tobie. # commands.message.display.incoming=Gracz %1$s szepcze do ciebie: %2$s # commands.message.display.outgoing=Szepczesz do gracza %1$s: %2$s # commands.message.sameTarget=Nie możesz wysyłać sobie prywatnych wiadomości! # -commands.message.warn=§4Otrzymujesz ostrzeżenie. Inni gracze mogą uznać twoje zachowanie za obraźliwe. Miej na uwadze inne osoby, z którymi grasz. # -commands.message.toastWarn=Minecraft jest dla wszystkich! Pamiętaj, aby zachowywać się zgodnie ze standardami przyjętymi w naszej społeczności. # -commands.warn.invalidWarningLevel=Nieprawidłowy poziom ostrzeżenia. # -commands.warn.playerDoesNotExist=Nie można odnaleźć gracza. Wybierz prawidłowego gracza. # commands.mobevent.description=Kontroluje, które wydarzenia mobów mogą zostać uruchomione. # commands.mobevent.eventsEnabledSetToTrue=Wydarzenia mobów są teraz włączone. Wydarzenia indywidualne ustawione na false nie będą uruchamiane. # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=– %s: %s od %d %d %d do %d %d %d # commands.volumearea.entry.withoutIdentifier=– %s: od %d %d %d do %d %d %d # commands.volumearea.noneExist.currentDimension=W obecnym wymiarze nie istnieją żadne woluminy. # commands.volumearea.inUse=Woluminy w użyciu: %1$d/%2$d. # -commands.warn.description=Wysyła graczowi wiadomość z ostrzeżeniem. # commands.weather.clear=Zmiana na słoneczną pogodę # commands.weather.description=Ustawia pogodę. # commands.weather.disabled=Cykl pogodowy nie jest aktywny w tym świecie. # @@ -1572,6 +1566,7 @@ container.beacon=Magiczna latarnia # container.brewing=Statyw alchemiczny # container.chest=Skrzynia # container.chestDouble=Duża skrzynia # +container.crafter=Automatyczny stół rzemieślniczy # container.crafting=Konstruowanie # container.creative=Wybór przedmiotu # container.dispenser=Dozownik # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=Jaskinie i klify # createWorldScreen.cavesandcliffsDescription=Poznaj nowy sposób generowania zróżnicowanych jaskiń # createWorldScreen.spectatorMode=Tryb widza # createWorldScreen.spectatorModeDescription=Wypróbuj wczesne wersje trybu widza # -createWorldScreen.experimentalCameras=Kamery eksperymentalne # -createWorldScreen.experimentalCamerasDescription=Zawiera przykładowe ustawienia kamery (polecenie kamery nie jest już eksperymentalne) # createWorldScreen.recipeUnlocking=Odblokowywanie przepisów # createWorldScreen.recipeUnlockingDescription=Włącz odblokowywanie przepisów # createWorldScreen.experimentalholiday=Świąteczne funkcje kreatora # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=Tworzenie nowego świata... # createWorldScreen.progress.realms=Resetowanie świata Realms... # createWorldScreen.seed.desc=Podaj ziarno generatora, aby wygenerować ponownie ten sam teren. Pozostaw pole puste, aby uzyskać losowy świat. # createWorldScreen.showCoordinates=Pokaż współrzędne # +createWorldScreen.showDaysPlayed=Pokaż dni gry # createWorldScreen.worldType=Typ świata # createWorldScreen.randomtickspeed=Losowa szybkość ticków # createWorldScreen.randomtickspeed.reset=Resetuj losową szybkość ticków # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=Usuń projekt # createWorldScreen.editor.projectOptionsLabel=Opcje projektu # createWorldScreen.editor.delete.confirm=Usunąć projekt na zawsze? # createWorldScreen.editor.deleteWarningFormat=Czy na pewno chcesz usunąć „%s”? Stracisz ten projekt na zawsze! # +createWorldScreen.eduCloud.about.body=Nazwa pliku: „%1$s”%2$sOstatnia aktualizacja: %3$s%4$sAby pobrać, kliknij OK, a następnie Pobierz.%5$s # +createWorldScreen.eduCloud.about.title=Informacje o pliku świata w chmurze # createWorldScreen.eduCloud.delete.confirm=Usunąć lokalny świat? # createWorldScreen.eduCloud.deleteWarningFormat=Czy na pewno chcesz usunąć '%1$s' na tym urządzeniu?%2$sNie będzie to miało wpływu na '%3$s' wersji w chmurze i można ją później ponownie zsynchronizować. # createWorldScreen.experimentalDeferredTechnicalPreview=Renderuj funkcje Smoka dla twórców # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Sklep Windows # realmsSettingsScreen.xboxOneStoreDisplayName=Sklep Xbox Games # realmsSettingsScreen.amazonStoreDisplayName=Amazon Appstore # realmsSettingsScreen.oculusStoreDisplayName=Sklep Oculus # -realmsSettingsScreen.berwickStoreDisplayName=Sklep „PlayStation Store” # -realmsSettingsScreen.SonyStoreDisplayName=Sklep „PlayStation Store” #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=nieznany sklep # realmsSettingsScreen.extendingRealm=Rozszerzanie świata Realms... # realmsSettingsScreen.offerError.title=Zakup w toku # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=Zestawy kupione poza rynkiem Mi xbl.syncIAP.confirmSync.prompt.yes=Tak, proszę zsynchronizować moje zakupy # xbl.marketplace.account.error.body.nobutton=Wykryliśmy błąd związany z twoim kontem. Do momentu jego naprawienia nie możesz korzystać z rynku. Jeśli sytuacja nie ulegnie zmianie w ciągu kilku dni, skontaktuj się z pomocą techniczną. # -xbl.marketplace.account.banned.body.nobutton=Nie możesz korzystać z Rynku do momentu wygaśnięcia zawieszenia. # playfab.account.banned.temporary=wstrzymany # playfab.account.banned.permanent=zablokowany # @@ -2487,6 +2482,14 @@ date.daysAbbreviated1Char=%sd. ### It needs to be abbreviated with no more than date.hoursAbbreviated1Char=%sg ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%sm ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%ss ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s dni # +date.hoursPlural=%s h # +date.minutesPlural=%s min # +date.secondsPlural=%s sek. # +date.daySingular=%s dzień # +date.hourSingular=%s h # +date.minuteSingular=%s min # +date.secondSingular=%s sek. # date.timeLeft=Zostało %s # dayOneExperience.carousel.title=Witamy w nowym Minecrafcie! # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=GOSPODARZ # edu.worlds_screen.settings=USTAWIENIA # edu.worlds_screen.download=POBIERZ ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=ZARZĄDZAJ # +edu.worlds_screen.about=WIĘCEJ INFORMACJI # edu.worlds_screen.back=WSTECZ # edu.worlds_screen.copy=KOPIUJ # edu.worlds_screen.export=EKSPORTUJ # @@ -2791,7 +2795,13 @@ edu.templates.empty_banner=Możesz zdobywać szablony świata z biblioteki eduka edu.pause.multiplayer.disabled=W przypadku tej lekcji tryb wieloosobowy jest niedostępny. # effect.badOmen=Zły omen # +effect.infested=Zainfekowane # +effect.oozing=Wyciekanie # +effect.raid_omen=Zwiastun najazdu # +effect.trial_omen=Omen próby # effect.villageHero=Bohater wioski # +effect.weaving=Tkanie # +effect.wind_charged=Z ładunkiem wiatru # enchantment.arrowDamage=Moc # enchantment.arrowFire=Płomień # @@ -2810,6 +2820,9 @@ enchantment.durability=Niezniszczalność # enchantment.fire=Zaklęty ogień # enchantment.fishingSpeed=Przynęta # enchantment.frostwalker=Spacer po lodzie # +enchantment.heavy_weapon.breach=Naruszenie # +enchantment.heavy_weapon.density=Gęstość # +enchantment.heavy_weapon.windburst=Podmuch wiatru # enchantment.knockback=Odrzut # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=Nietoperz # entity.bee.name=Pszczoła # entity.blaze.name=Płomyk # entity.boat.name=Łódka # +entity.bogged.name=Ugrzęźnięty # +entity.breeze.name=Bryza # +entity.breeze_wind_charge_projectile.name=Ładunek wiatru # entity.cat.name=Kot # entity.cave_spider.name=Pająk jaskiniowy # entity.chicken.name=Kura # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=Niedoświadczony osadnik # entity.villager_v2.name=Osadnik # entity.vindicator.name=Obrońca # entity.wandering_trader.name=Kupiec wędrowny # +entity.wind_charge_projectile.name=Ładunek wiatru # entity.witch.name=Wiedźma # entity.wither.name=Wither # entity.wither_skeleton.name=Mroczny szkielet # @@ -3009,6 +3026,7 @@ feature.ruins=Ruiny w oceanie # feature.pillager_outpost=Posterunek grabieżców # feature.bastion_remnant=Ruiny bastionu # feature.ruined_portal=Ruiny portalu # +feature.trial_chambers=Komnaty prób # feed.like=Polub # feed.manage_feed=Zarządzaj aktualnościami # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=Przechyl :tip_left_stick:, aby się poruszać gameTip.flying.mouse=Stuknij :_input_key.jump: dwukrotnie, żeby latać # gameTip.flying.touch=Dwukrotnie stuknij skok, aby latać # +gameTip.flyDown.mouse=Naciśnij :_input_key.sneak:, aby polecieć w dół # +gameTip.flyUp.mouse=Naciśnij :_input_key.jump:, aby polecieć do góry # + +gameTip.stopFlying.mouse=Naciśnij dwukrotnie :_input_key.jump:, aby przestać latać # +gameTip.stopFlying.touch=Naciśnij dwukrotnie instrukcję lotu w dół, aby przestać lecieć # + gameTip.jump.mouse=Skacz za pomocą :_input_key.jump: # +gameTip.swim.mouse=Naciśnij i przytrzymaj :_input_key.jump:, aby podpłynąć # -gameTip.hotbar.mouse=Przewiń kółko myszy, aby wybrać # na pasku narzędzi i to chwycić # -gameTip.hotbar.touch=Stuknij # na pasku narzędzi, aby to chwycić # -gameTip.hotbar.controller=Stuknij # na pasku narzędzi, aby to chwycić # +gameTip.hotbar.selection.mouse=Przewiń lub naciśnij %s, aby przytrzymać element ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=Naciśnij element na pasku narzędzi, aby go przytrzymać # gameTip.breakBlock.mouse=Przytrzymaj lewy przycisk myszy, aby rozbijać bloki # gameTip.breakBlock.touch=Stuknij ekran i przytrzymaj go, aby rozbijać bloki # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=Skradasz się! Teraz nie możesz spaść z krawędzi # gameTip.sneak.touch=Skradasz się, więc nie możesz spaść z krawędzi # gameTip.sneak.controller=Skradasz się, więc nie możesz spaść z krawędzi # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=Umieść stół rzemieślniczy. Weź go w ręce i kliknij, aby umieścić # gameTip.placeCraftingTable.touch=Umieść stół rzemieślniczy, dotykając ziemi # gameTip.placeCraftingTable.controller=Umieść stół rzemieślniczy, przytrzymaj go, a następnie stuknij na ziemi # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=Dziękujemy za podzielenie się swoją recenzją! # gui.submitFeedback.failure.status.unprocessableEntity=Nie jesteś właścicielem przedmiotu, którego dotyczy opinia. (Kod błędu: %d) # gui.submitFeedback.failure.status.tooManyRequests=O nie! Wysłałeś zbyt wiele recenzji, spróbuj ponownie później. (Kod błędu: %d) # gui.submitFeedback.failure.status.other=W tej chwili nie można przesłać opinii, spróbuj ponownie później. (Kod błędu: %d) # +gui.togglable_slot=Naciśnij, aby wyłączyć gniazdo # gui.playOffline=Graj offline # gui.signIn=Zaloguj się # gui.genericNetworkError=Coś poszło nie tak. Sprawdź swoje połączenie internetowe. # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=Odkryj świat możliwości z Minecoins: walutą w grz howtoplay.minecoins.text.2=Po odebraniu twoje Minecoins są połączone z kontem Microsoft, dzięki czemu możesz uzyskać dostęp do swoich monet i zakupów również na innych obsługiwanych urządzeniach! # howtoplay.minecoins.button.text.1=Zdobądź monety # howtoplay.minecoins.header.1=Ograniczenie odpowiedzialności # -howtoplay.minecoins.text.3=* Minecoins wymagają wersji Minecraft: Bedrock Edition z Rynkiem gry Minecraft. Minecoins nie są obsługiwane na konsolach Sony PlayStation. Informacje na temat kompatybilności można znaleźć na stronie minecraft.net/minecoins  # +howtoplay.minecoins.text.3=*Minecoins wymagają wersji Minecraft: Bedrock Edition z dostępem do Rynku Minecrafta. Minecoins nie są obsługiwane na konsolach Sony PlayStation®. Informacje na temat kompatybilności znajdziesz na stronie minecraft.net/minecoins  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=Górnictwo # @@ -4145,7 +4170,7 @@ level.editor.export.failed=Eksport projektu nie powiódł się # level.editor.import.failed=Import projektu nie powiódł się # level.editor.import.failed.incompatibleEdition=Import świata nie powiódł się: nieobsługiwany format pliku # -inbox.invite.title=Zaproszenie do Realms # +inbox.invite.title=Zaproszenie do świata Realms # invite.clear=Wyczyść zaznaczenie # invite.send=Wyślij zaproszenia: %d # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=Czerwona skośna prawa odwrócona połowa # item.banner.diagonal_up_right.silver=Jasnoszara skośna prawa odwrócona połowa # item.banner.diagonal_up_right.white=Biała skośna prawa odwrócona połowa # item.banner.diagonal_up_right.yellow=Żółta skośna prawa odwrócona połowa # +item.banner.flow.black=Czarny przepływ # +item.banner.flow.blue=Niebieski przepływ # +item.banner.flow.brown=Brązowy przepływ # +item.banner.flow.cyan=Błękitny przepływ # +item.banner.flow.gray=Szary przepływ # +item.banner.flow.green=Zielony przepływ # +item.banner.flow.lightBlue=Jasnoniebieski przepływ # +item.banner.flow.lime=Jasnozielony przepływ # +item.banner.flow.magenta=Karmazynowy przepływ # +item.banner.flow.orange=Pomarańczowy przepływ # +item.banner.flow.pink=Różowy przepływ # +item.banner.flow.purple=Fioletowy przepływ # +item.banner.flow.red=Czerwony przepływ # +item.banner.flow.silver=Jasnoszary przepływ # +item.banner.flow.white=Biały przepływ # +item.banner.flow.yellow=Żółty przepływ # item.banner.flower.black=Czarny symbol kwiatu # item.banner.flower.blue=Niebieski symbol kwiatu # item.banner.flower.brown=Brązowy symbol kwiatu # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=Biały gradient od dołu # item.banner.gradient_up.yellow=Żółty gradient od dołu # item.banner.gray.name=Szary sztandar # item.banner.green.name=Zielony sztandar # +item.banner.guster.black=Czarny pyłowiec # +item.banner.guster.blue=Niebieski pyłowiec # +item.banner.guster.brown=Brązowy pyłowiec # +item.banner.guster.cyan=Błękitny pyłowiec # +item.banner.guster.gray=Szary pyłowiec # +item.banner.guster.green=Zielony pyłowiec # +item.banner.guster.lightBlue=Jasnoniebieski pyłowiec # +item.banner.guster.lime=Jasnozielony pyłowiec # +item.banner.guster.magenta=Karmazynowy pyłowiec # +item.banner.guster.orange=Pomarańczowy pyłowiec # +item.banner.guster.pink=Różowy pyłowiec # +item.banner.guster.purple=Fioletowy pyłowiec # +item.banner.guster.red=Czerwony pyłowiec # +item.banner.guster.silver=Jasnoszary pyłowiec # +item.banner.guster.white=Biały pyłowiec # +item.banner.guster.yellow=Żółty pyłowiec # item.banner.half_horizontal.black=Czarna górna połowa # item.banner.half_horizontal.blue=Niebieska górna połowa # item.banner.half_horizontal.brown=Brązowa górna połowa # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=Akacjowa łódka # item.boat.big_oak.name=Ciemna dębowa łódka # item.bone.name=Kość # item.book.name=Książka # +item.breeze_rod.name=Bryzowa różdżka # item.chainmail_boots.name=Buty kolcze # item.leather_boots.name=Skórzane buty # item.diamond_boots.name=Diamentowe buty # @@ -4991,6 +5049,7 @@ item.comparator.name=Komparator # item.compass.name=Kompas # item.lodestonecompass.name=Magnetytowy kompas # item.cookie.name=Ciastko # +item.copper_door.name=Miedziane drzwi # item.crossbow.name=Kusza # item.diamond.name=Diament # item.repeater.name=Przekaźnik z czerwienitu # @@ -5038,6 +5097,7 @@ tile.end_rod.name=Słupek Kresu # item.ender_eye.name=Oko Kresu # item.ender_pearl.name=Perła Kresu # item.experience_bottle.name=Zaklęta butelka # +item.exposed_copper_door.name=Odsłonięte miedziane drzwi # item.feather.name=Piórko # item.fermented_spider_eye.name=Sfermentowane oko pająka # item.fireball.name=Ognista kula # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=Złote nogawice # item.iron_leggings.name=Żelazne nogawice # item.nautilus_shell.name=Muszla łodzika # item.heart_of_the_sea.name=Serce mórz # +item.mace.name=Buława # item.magma_cream.name=Magmowy krem # item.map.name=Mapa # item.map.exploration.mansion.name=Mapa leśnego badacza # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=Mapa wioski na sawannie # item.map.exploration.village_desert.name=Mapa pustynnej wioski # item.map.exploration.jungle_temple.name=Mapa badacza dżungli # item.map.exploration.swamp_hut.name=Mapa badacza bagien # +item.map.exploration.trial_chambers.name=Mapa badacza wersji próbnej # item.melon.name=Arbuz # item.milk.name=Mleko # item.minecart.name=Wagonik # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=Wagonik ze skrzynią # item.command_block_minecart.name=Wagonik z blokiem poleceń # item.minecartFurnace.name=Wagonik z piecem # item.hopper_minecart.name=Wagonik z lejkiem # +item.ominous_bottle.name=Złowieszcza butelka # +item.ominous_trial_key.name=Złowieszczy klucz próby # +item.oxidized_copper_door.name=Utlenione miedziane drzwi # item.tnt_minecart.name=Wagonik z TNT # item.pitcher_pod.name=Torebka nasienna dzbanecznika # item.torchflower_seeds.name=Nasiona etlingery wyniosłej # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=Jajko spawnowania agentów # item.spawn_egg.entity.armadillo.name=Jajko spawnowania pancernika # item.spawn_egg.entity.axolotl.name=Jajko spawnowania aksolotli # item.spawn_egg.entity.bee.name=Jajko spawnowania pszczół # +item.spawn_egg.entity.bogged.name=Ugrzęźnięte zespawnowane jajo # +item.spawn_egg.entity.breeze.name=Jajko spawnowania bryz # item.spawn_egg.entity.hoglin.name=Jajko spawnowania hoglinów # item.spawn_egg.entity.cat.name=Jajko spawnowania kotów # item.spawn_egg.entity.chicken.name=Jajko spawnowania kur # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 – oddział # item.record_pigstep.desc=Lena Raine – Pigstep # item.record_otherside.desc=Lena Raine – otherside # item.record_relic.desc=Aaron Cherof – Relic # +item.record_creator.desc=Lena Raine – Twórczyni # +item.record_creator_music_box.desc=Lena Raine - Twórczyni (Music Box) # +item.record_precipice.desc=Aaron Cherof – Precipice # item.redstone.name=Pył czerwienitu # item.reeds.name=Trzcina cukrowa # item.kelp.name=Krasnorosty # @@ -5324,6 +5394,12 @@ item.iron_sword.name=Żelazny miecz # item.stone_sword.name=Kamienny miecz # item.wooden_sword.name=Drewniany miecz # item.unbreakable=Nie można zepsuć # +item.waxed_copper_door.name=Woskowane miedziane drzwi # +item.waxed_exposed_copper_door.name=Woskowane odsłonięte miedziane drzwi # +item.waxed_oxidized_copper_door.name=Woskowane utlenione miedziane drzwi # +item.waxed_weathered_copper_door.name=Woskowane zwietrzałe miedziane drzwi # +item.weathered_copper_door.name=Zwietrzałe miedziane drzwi # +item.wind_charge.name=Ładunek wiatru # item.wheat.name=Pszenica # item.wolf_armor.name=Pancerz dla wilka # item.writable_book.name=Książka i pióro # @@ -5331,6 +5407,7 @@ item.written_book.name=Zapisana książka # item.glowstone_dust.name=Jasnopył # item.shulker_shell.name=Muszla shulkera # item.totem.name=Totem nieśmiertelnych # +item.trial_key.name=Klucz próby # item.turtle_helmet.name=Skorupa żółwia # item.turtle_shell_piece.name=Tarczka żółwia # item.phantom_membrane.name=Upiorna membrana # @@ -5338,8 +5415,10 @@ item.sweet_berries.name=Słodkie jagody # item.suspicious_stew.name=Podejrzana potrawka # item.banner_pattern.bricks=Ceglane tło # item.banner_pattern.creeper=Głowa creepera # +item.banner_pattern.flow=Przepływ # item.banner_pattern.flower=Symbol kwiatu # item.banner_pattern.globe=Glob # +item.banner_pattern.guster=Pyłowiec # item.banner_pattern.name=Wzór sztandaru # item.banner_pattern.piglin=Ryjek # item.banner_pattern.skull=Symbol czaszki # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=Wzory sztandarów # itemGroup.name.netherWartBlock=Netherowe brodawki # itemGroup.name.candles=Świece # itemGroup.name.goatHorn=Kozie rogi # +itemGroup.name.compounds=Związki # +itemGroup.name.products=Produkty # jigsaw.title.target_pool=Pula docelowa: # jigsaw.title.name=Nazwa: # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=USTAWIENIA KLASY # menu.serverStore=Sklep (%s) # menu.serverGenericName=Serwer # menu.play=Graj # +menu.profile=Profil # menu.playdemo=Zagraj w świat demonstracyjny # menu.playOnRealms=Zagraj w świecie Realms # menu.quickplay=Szybka gra # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=Wybierz swoją postać startową # menu.character_cast.preview_title=Poznaj obsadę! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Serwer Realms ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=Serwery # merchant.deprecated=Sprzedaj coś innego, żeby odblokować! # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=Rozgrywka z pełną klawiaturą # options.fullKeyboardLayout=Układ pełnej klawiatury # options.improvedInputResponsePlaceholder=Szybsza odpowiedź na sygnały wejściowe # options.improvedInputResponsePlaceholder.tooltip=Skraca opóźnienie między użyciem elementów sterujących a reakcją gry na ekranie. To ustawienie może zużywać więcej baterii. # +options.dynamicTexturesToggle=Usuń limit tekstur # +options.dynamicTexturesToggle.tooltip=Wyłączenie tej opcji będzie wymagać ponownego uruchomienia gry. Może to spowodować niestabilność podczas korzystania z wielu dodatków lub pakietów zasobów z wieloma teksturami. # +options.dynamicTextures.popUp=Przywrócenie limitu tekstur będzie wymagać ponownego uruchomienia gry. # +options.dynamicTextures.popUp.title=Na pewno? # options.fullscreen=Pełny ekran # options.gamepadcursorsensitivity=Czułość kursora kontrolera # options.gamertag=Tag gracza: # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=Połącz # options.creator.debuggerListen=Słuchaj # options.creator.debuggerHost=Gospodarz # options.creator.debuggerPort=Port # +options.creator.watchdogHeading=Ustawienia systemu skryptów Watchdog # +options.creator.watchdogSlowWarning=Ostrzeżenia o wolnym skrypcie # +options.creator.watchdogSlowThreshold=Średnia przekracza # +options.creator.watchdogSlowFormat=%s milisek. # +options.creator.watchdogSlowFormatDefault=%s milisek. (domyślnie) # +options.creator.watchdogSpikeWarning=Ostrzeżenia o skokach stabilności skryptu # +options.creator.watchdogSpikeThreshold=Skoki stabilności przekraczają # +options.creator.watchdogSpikeFormat=%s milisek. # +options.creator.watchdogSpikeFormatDefault=%s milisek. (domyślnie) # +options.creator.watchdogHangThreshold=Przerwij po # +options.creator.watchdogHangFormat=%s sek. # +options.creator.watchdogHangFormatDefault=%s sek. (domyślnie) # options.vr_classic_box_selection=Wybór konturu # options.hidegamepadcursor=Ukryj kursor kontrolera # options.hidegui=Ukryj interfejs # @@ -6662,7 +6761,7 @@ options.makeBackup=Utwórz kopię zapasową mojego świata # options.managePrivacy=Aby zarządzać ustawieniami prywatności, wejdź na stronę https://account.xbox.com/Settings w dowolnej wyszukiwarce. ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Odłącz konto Microsoft # options.unlink_msa.confirm.title=Odłączyć konto Microsoft? # -options.unlink_msa.confirm.warning=UWAGA: po odłączeniu utracisz możliwość przechowywania postępów i zakupów dokonanych na platformie „PlayStation 4” z poziomu konta %s. # +options.unlink_msa.confirm.warning=UWAGA: po odłączeniu utracisz możliwość zachowywania postępów i zakupów dokonanych na systemie PlayStation®4 z poziomu konta %s. #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=Odłączenie konta Microsoft z poziomu niniejszej gry będzie miało wpływ na wszystkie gry Minecraft na obecnej platformie, które korzystały z tego konta Microsoft. # options.unlink_msa.confirm.checkbox1=Nie będę mieć już dostępu do żadnej zawartości dostępnej w sklepie podczas gry na innych platformach. # options.unlink_msa.confirm.checkbox2=Nie będę mieć już możliwości gry ze znajomymi z innych platform. # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=Wczytaj świat, aby dostosować sterowani hudScreen.controlCustomization.tooltip.notouch=Dostosuj sterowanie za pomocą urządzenia dotykowego # hudScreen.controlCustomization.tooltip.alreadycustomizing=Ekran dostosowywania sterowania dotykowego jest już otwarty # hudScreen.controlCustomization.tooltip.alive=Gracz musi żyć, aby dostosować sterowanie. # +hudScreen.daysPlayed=Dni gry: %s # +hudScreen.daysPlayed.overflow=Zbyt wiele, aby je zliczyć! # playscreen.fileSize.MB=MB # playscreen.fileSize.GB=GB # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=Miotana mikstura leczenia # potion.heal.linger.name=Długotrwała mikstura leczenia # potion.healthBoost=Wzmocnienie zdrowia # potion.hunger=Głód # +potion.infested.linger.name=Długotrwała mikstura infekcji # +potion.infested.name=Mikstura infekcji # +potion.infested.splash.name=Miotana mikstura infekcji # +potion.infested=Zainfekowane # potion.invisibility=Niewidzialność # potion.invisibility.name=Mikstura niewidzialności # potion.invisibility.splash.name=Miotana mikstura niewidzialności # @@ -7067,6 +7172,10 @@ potion.nightVision=Widzenie w ciemności # potion.nightVision.name=Mikstura widzenia w ciemności # potion.nightVision.splash.name=Miotana mikstura widzenia w ciemności # potion.nightVision.linger.name=Długotrwała mikstura widzenia w ciemności # +potion.oozing.linger.name=Długotrwała mikstura wyciekania # +potion.oozing.name=Mikstura wyciekania # +potion.oozing.splash.name=Mikstura miotana wyciekania # +potion.oozing=Wyciekanie # potion.poison=Trucizna # potion.poison.name=Trująca mikstura # potion.poison.splash.name=Miotana trująca mikstura # @@ -7108,6 +7217,14 @@ potion.weakness=Słabość # potion.weakness.name=Mikstura osłabienia # potion.weakness.splash.name=Miotana mikstura osłabienia # potion.weakness.linger.name=Długotrwała mikstura osłabienia # +potion.weaving.linger.name=Długotrwała mikstura tkania # +potion.weaving.name=Mikstura tkania # +potion.weaving.splash.name=Mikstura miotana tkania # +potion.weaving=Tkanie # +potion.windCharged.linger.name=Długotrwała mikstura ładunku wiatru # +potion.windCharged.name=Mikstura ładunku wiatru # +potion.windCharged.splash.name=Mikstura miotana ładunku wiatru # +potion.windCharged=Z ładunkiem wiatru # potion.wither=Obumieranie # potion.wither.name=Mikstura zepsucia # potion.wither.splash.name=Miotana mikstura zepsucia # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=Ten świat nie może zostać otwarty progressScreen.message.forbiddenContent=Nie posiadasz przynajmniej jednego ze stosowanych zestawów # progressScreen.message.loadingSplitScreenAppearances=Ładowanie wyglądu podzielonego ekranu… # progressScreen.message.finishedLoadingSplitScreenAppearances=Zakończono ładowanie wyglądu podzielonego ekranu. # -progressScreen.message.modifiedWorldWarning=Ten świat może nie wyglądać lub zachowywać się w taki sam sposób co niezmodyfikowane światy. Co więcej, nie można zdobywać w nim osiągnięć. # +progressScreen.message.modifiedWorldWarning.1=Grasz w świecie z dodatkami! Spowoduje to dodanie nowych funkcji do twojego świata Minecraft. # +progressScreen.message.modifiedWorldWarning.2=Nie poprzestawaj tylko na jednym! Możesz załadować wiele dodatków do jednego świata jednocześnie. # +progressScreen.message.modifiedWorldWarning.3=Wskazówka dla zaawansowanych: pakiet zasobów może zmieniać tekstury różnych bloków i elementów. # +progressScreen.message.modifiedWorldWarning.4=Wskazówka dla zaawansowanych: pakiet zachowań może zmienić sposób działania różnych przedmiotów, elementów lub bloków. # +progressScreen.message.modifiedWorldWarning.5=Wskazówka dla zaawansowanych: dodatek zawiera zarówno pakiet zachowań, jak i pakiet zasobów. Upewnij się, że oba pakiety są aktywowane, aby mieć pewność, że dodatek działa! # +progressScreen.message.modifiedWorldWarning.6=Dodatki dodają nowe bloki, przedmioty lub moby do swoich światów. # +progressScreen.message.modifiedWorldWarning.7=Światy i dodatki są złożone! Choć niektóre świetnie działają razem, z innymi możesz mieć osobliwe rezultaty. # +progressScreen.message.modifiedWorldWarning.8=Więcej dodatków oznacza więcej zabawy, ale ładowanie gry może potrwać dłużej. # progressScreen.dialog.title.resourcePack=Pobrać paczki zasobów świata? # progressScreen.dialog.title.behaviorAndResourcePack=Pobrać paczki zasobów i zachowania świata? # progressScreen.dialog.title.onlyBehavior=Pobrać paczki zachowania świata? # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=Zaktualizować świat? # resourcePack.warning.add.body=Ten świat może nie wyglądać lub zachowywać się w taki sam sposób, jak niezmodyfikowane światy. Zanim przejdziesz dalej, lepiej zapisz kopię swojego świata. # resourcePack.warning.add.button.cancel=Nie dodawaj pakietu # resourcePack.warning.add.button.ok=Mimo to dodaj pakiet # +resourcePack.warnings.contentKeyErrorBody=Wystąpił problem podczas wczytywania zestawu %s. # +resourcePack.warnings.contentKeyErrorBodyMultiple=Wystąpił problem podczas wczytywania zestawów %s. # +resourcePack.warnings.contentKeyErrorTitle=Błąd! # resourcePack.warning.remove.title=To jest niebezpieczne! # resourcePack.warning.remove.body=Dodawanie lub usuwanie pakietów po rozpoczęciu korzystania z danego świata może doprowadzić do wystąpienia w nim błędów, przez co możesz stracić to, co udało ci się stworzyć. # resourcePack.warning.remove.button.cancel=Zachowaj pakiet # @@ -7448,7 +7575,7 @@ itemGroup.name.sculk=Skulk # effect.darkness=Ciemność # entity.frog.name=Żaba # entity.tadpole.name=Kijanka # -item.spawn_egg.entity.warden.name=Jajko spawnowania strażników # +item.spawn_egg.entity.warden.name=Jajko spawnowania nadzorców # entity.warden.name=Nadzorca # entity.allay.name=Allaj # item.spawn_egg.entity.allay.name=Jajko spawnowania allajów # @@ -7557,7 +7684,9 @@ item.crimson_hanging_sign.name=Karmazynowa wisząca tabliczka # item.danger_pottery_sherd.name=Odłamek ceramiki – niebezpieczeństwo # item.dark_oak_hanging_sign.name=Wisząca tabliczka z ciemnego dębu # item.explorer_pottery_sherd.name=Odłamek ceramiki – badacz # +item.flow_pottery_sherd.name=Odłamek ceramiki – przepływ # item.friend_pottery_sherd.name=Odłamek ceramiki – przyjaciel # +item.guster_pottery_sherd.name=Odłamek ceramiki – porywisty wiatr # item.heart_pottery_sherd.name=Odłamek ceramiki – serce # item.heartbreak_pottery_sherd.name=Odłamek ceramiki – zawód miłosny # item.howl_pottery_sherd.name=Odłamek ceramiki – wycie # @@ -7568,6 +7697,7 @@ item.mourner_pottery_sherd.name=Odłamek ceramiki – żałobnik # item.oak_hanging_sign.name=Dębowa wisząca tabliczka # item.plenty_pottery_sherd.name=Odłamek ceramiki – obfitość # item.prize_pottery_sherd.name=Odłamek ceramiki – nagroda # +item.scrape_pottery_sherd.name=Odłamek ceramiki – zgrzyt # item.sheaf_pottery_sherd.name=Odłamek ceramiki – snop # item.shelter_pottery_sherd.name=Odłamek ceramiki – schronienie # item.skull_pottery_sherd.name=Odłamek ceramiki – czaszka # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=Wiśniowe schody # tile.cherry_trapdoor.name=Wiśniowa zapadnia # tile.cherry_wood.name=Drewno wiśniowe # tile.chiseled_bookshelf.name=Rzeźbiona biblioteczka # +tile.chiseled_tuff.name=Rzeźbiony tuf # +tile.chiseled_tuff_bricks.name=Cegły z rzeźbionego tufu # tile.decorated_pot.name=Udekorowany garnek # tile.pink_petals.name=Różowe płatki # tile.stripped_bamboo_block.name=Blok okorowanego bambusa # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=Wykończenie zbroi dręczyciela # trim_pattern.ward.name=Wykończenie zbroi strażnika # trim_pattern.wayfinder.name=Wykończenie zbroi – nawigator # trim_pattern.wild.name=Wykończenie dzikiej zbroi # +trim_pattern.bolt.name=Błyskawicowe wykończenie zbroi # +trim_pattern.flow.name=Przepływowe wykończenie zbroi # upgrade.netherite_upgrade.name=Ulepszenie netherytu # storageManager.mainSizeLabel=%s – 1 przedmiot # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=Usunąć szablon świata? # selectTemplate.delete=Usuń # selectTemplate.myTemplates=Moje szablony światów # selectTemplate.realmsPlus=Polecane szablony Realms Plus # -selectTemplate.marketplacePass=Wyróżnione szablony w Marketplace Pass #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=Wyróżniona zawartość w Marketplace Pass #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=Zaimportowane szablony # selectTemplate.download=Pobierz # selectTemplate.noTemplates=Brak szablonów świata na to urządzenie. # -selectTemplate.suggestedContent.title=Polecane szablony dostępne na rynku # +selectTemplate.suggestedContent.title=Polecana zawartość dostępna na Rynku # selectTemplate.suggestedContent.button=Zobacz więcej szablonów # selectTemplate.createdBy=Autor: %s # selectTemplate.inventory=Moje pakiety rynkowe # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=Wystąpił problem. Cofnij się i spróbuj ponown store.loading.error.issues=Hmm, wystąpił problem z Rynkiem. Spróbuj połączyć się później. # store.loading.error.internetDown=Nie można wykryć połączenia z Internetem. # store.loading.error.account=Wystąpił problem z kontem. Spróbuj ponownie wkrótce i skontaktuj się z pomocą techniczną, jeśli sytuacja się powtórzy. # +store.loading.error.account.banned=Nie możesz korzystać z Rynku do momentu wygaśnięcia zawieszenia. # store.giftPromo.day=Dzień %s ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=Odebrany # @@ -8409,6 +8544,13 @@ store.mashup.count.world=1 świat # store.mashup.count.worlds=Światy (%s) #number of worlds # store.mashup.count.addonPack=1 dodatek # store.mashup.count.addonPacks=Dodatki: %s #number of addons # +store.mashup.count.mashup=Miks # +store.mashup.hover.label.addonPack=Dodatki można zastosować do dowolnego świata. # +store.mashup.hover.label.world=Ręcznie wykonana mapa Minecrafta. # +store.mashup.hover.label.skin=Nadaj swojej postaci nowy wygląd. # +store.mashup.hover.label.texturePack=Dodaj nową grafikę do swojego świata lub interfejsu gry. # +store.mashup.hover.label.mashup.lineOne=Połączenie różnych rodzajów zawartości. # +store.mashup.hover.label.mashup.lineTwo=Ten miks zawiera: # store.addon.activateAddonPack=Aktywuj dodatek! # store.addon.newOrExistingTitle=Gdzie można dodać? # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=Tablica # tile.chest.name=Skrzynia # tile.ender_chest.name=Skrzynia Kresu # tile.jigsaw.name=Blok konstrukcyjny # +tile.heavy_core.name=Ciężki rdzeń # tile.honey_block.name=Blok miodu # tile.honeycomb_block.name=Blok plastra miodu # tile.lodestone.name=Magnetyt # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=Płyta z wypolerowanego czernitu # tile.polished_blackstone_pressure_plate.name=Płyta naciskowa z wypolerowanego czernitu # tile.polished_blackstone_button.name=Przycisk z wypolerowanego czernitu # tile.polished_blackstone_wall.name=Mur z wypolerowanego czernitu # +tile.polished_tuff.name=Wypolerowany tuf # +tile.polished_tuff_slab.name=Półblok z wypolerowanego tufu # +tile.polished_tuff_stairs.name=Schody z wypolerowanego tufu # +tile.polished_tuff_wall.name=Mur z wypolerowanego tufu # tile.soul_campfire.name=Ognisko dusz # tile.chiseled_nether_bricks.name=Rzeźbione netherowe cegły # tile.cracked_nether_bricks.name=Popękane netherowe cegły # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=Żółta terakota # tile.structure_block.name=Blok budowli # structure_block.waterlog_block=Bloki zalane wodą # tile.structure_void.name=Pustka obiektu # +tile.trial_spawner.name=Spawner prób # +tile.vault.name=Skarbiec # tile.wool.black.name=Czarna wełna # tile.wool.blue.name=Niebieska wełna # tile.wool.brown.name=Brązowa wełna # @@ -9244,7 +9393,7 @@ tile.mossy_stone_brick_stairs.name=Schody z omszałej kamiennej cegły # tile.smooth_red_sandstone_stairs.name=Schody z gładkiego czerwonego piaskowca # tile.smooth_sandstone_stairs.name=Schody z gładkiego piaskowca # tile.end_brick_stairs.name=Schody z cegły z Kamienia Kresu # -tile.mossy_cobblestone_stairs.name=Omszałe brukowane schody # +tile.mossy_cobblestone_stairs.name=Omszałe brukowe schody # tile.red_nether_brick_stairs.name=Schody z czerwonej netherowej cegły # tile.smooth_stone.name=Gładki kamień # tile.standing_banner.black.name=Czarny sztandar # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=Paproć # tile.tallgrass.grass.name=Trawa # tile.tallgrass.name=Trawa # tile.tallgrass.shrub.name=Uschnięty chwast # +tile.tuff_brick_slab.name=Półblok z cegły z tufu # +tile.tuff_brick_stairs.name=Schody z cegieł z tufu # +tile.tuff_brick_wall.name=Mur z cegieł z tufu # +tile.tuff_bricks.name=Cegły z tufu # +tile.tuff_slab.name=Tufowy półblok # +tile.tuff_stairs.name=Schody z tufu # +tile.tuff_wall.name=Mur z tufu # tile.seagrass.seagrass.name=Trawa morska # tile.sea_pickle.name=Iskrzyłuda # tile.turtle_egg.name=Jajo żółwia morskiego # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=Czerwony dywan # tile.carpet.silver.name=Jasnoszary dywan # tile.carpet.white.name=Biały dywan # tile.carpet.yellow.name=Żółty dywan # +tile.crafter.name=Automatyczny stół rzemieślniczy # tile.crafting_table.name=Stół rzemieślniczy # tile.glazedTerracotta.white.name=Biała glazurowana terakota # @@ -9591,13 +9748,59 @@ tile.waxed_weathered_cut_copper_stairs.name=Woskowane zwietrzałe żłobione mie tile.waxed_oxidized_cut_copper_stairs.name=Woskowane utlenione żłobione miedziane schody # tile.cut_copper_slab.name=Żłobiony półblok miedzi # -tile.exposed_cut_copper_slab.name=Odsłonięty żłobiony półblok miedzi # +tile.exposed_cut_copper_slab.name=Zaśniedziały żłobiony półblok miedzi # tile.weathered_cut_copper_slab.name=Zwietrzały żłobiony półblok miedzi # tile.oxidized_cut_copper_slab.name=Utleniony żłobiony półblok miedzi # tile.waxed_cut_copper_slab.name=Woskowany żłobiony półblok miedzi # -tile.waxed_exposed_cut_copper_slab.name=Woskowany odsłonięty żłobiony półblok miedzi # +tile.waxed_exposed_cut_copper_slab.name=Woskowany zaśniedziały żłobiony półblok miedzi # tile.waxed_weathered_cut_copper_slab.name=Woskowany zwietrzały żłobiony półblok miedzi # tile.waxed_oxidized_cut_copper_slab.name=Woskowany utleniony żłobiony półblok miedzi # + +tile.chiseled_copper.name=Rzeźbiona miedź # +tile.exposed_chiseled_copper.name=Odsłonięta rzeźbiona miedź # +tile.oxidized_chiseled_copper.name=Utleniona rzeźbiona miedź # +tile.waxed_chiseled_copper.name=Woskowana rzeźbiona miedź # +tile.waxed_exposed_chiseled_copper.name=Woskowana odsłonięta rzeźbiona miedź # +tile.waxed_oxidized_chiseled_copper.name=Woskowana rzeźbiona utleniona miedź # +tile.waxed_weathered_chiseled_copper.name=Woskowana zwietrzała rzeźbiona miedź # +tile.weathered_chiseled_copper.name=Zwietrzała rzeźbiona miedź # + +tile.copper_bulb.name=Miedziana żarówka # +tile.exposed_copper_bulb.name=Odsłonięta miedziana żarówka # +tile.oxidized_copper_bulb.name=Utleniona miedziana żarówka # +tile.waxed_copper_bulb.name=Woskowana miedziana żarówka # +tile.waxed_exposed_copper_bulb.name=Woskowana odsłonięta miedziana żarówka # +tile.waxed_oxidized_copper_bulb.name=Woskowana utleniona miedziana żarówka # +tile.waxed_weathered_copper_bulb.name=Woskowana zwietrzała miedziana żarówka # +tile.weathered_copper_bulb.name=Zwietrzała miedziana żarówka # + +tile.copper_door.name=Miedziane drzwi # +tile.exposed_copper_door.name=Odsłonięte miedziane drzwi # +tile.oxidized_copper_door.name=Utlenione miedziane drzwi # +tile.waxed_copper_door.name=Woskowane miedziane drzwi # +tile.waxed_exposed_copper_door.name=Woskowane odsłonięte miedziane drzwi # +tile.waxed_oxidized_copper_door.name=Woskowane utlenione miedziane drzwi # +tile.waxed_weathered_copper_door.name=Woskowane zwietrzałe miedziane drzwi # +tile.weathered_copper_door.name=Zwietrzałe miedziane drzwi # + +tile.copper_grate.name=Miedziana krata # +tile.exposed_copper_grate.name=Odsłonięta miedziana krata # +tile.oxidized_copper_grate.name=Utleniona miedziana krata # +tile.waxed_copper_grate.name=Woskowana miedziana krata # +tile.waxed_exposed_copper_grate.name=Woskowana odsłonięta miedziana krata # +tile.waxed_oxidized_copper_grate.name=Woskowana utleniona miedziana krata # +tile.waxed_weathered_copper_grate.name=Woskowana zwietrzała miedziana krata # +tile.weathered_copper_grate.name=Zwietrzała miedziana krata # + +tile.copper_trapdoor.name=Miedziana zapadnia # +tile.exposed_copper_trapdoor.name=Odsłonięta miedziana zapadnia # +tile.oxidized_copper_trapdoor.name=Utleniona miedziana zapadnia # +tile.waxed_copper_trapdoor.name=Woskowana miedziana zapadnia # +tile.waxed_exposed_copper_trapdoor.name=Woskowana odsłonięta miedziana zapadnia # +tile.waxed_oxidized_copper_trapdoor.name=Woskowana utleniona miedziana zapadnia # +tile.waxed_weathered_copper_trapdoor.name=Woskowana zwietrzała miedziana zapadnia # +tile.weathered_copper_trapdoor.name=Zwietrzała miedziana zapadnia # + tile.raw_copper_block.name=Blok surowej miedzi # tile.raw_iron_block.name=Blok surowego żelaza # tile.raw_gold_block.name=Blok surowego złota # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=Strzała szczęścia # tipped_arrow.effect.wither=Strzała rozkładu # tipped_arrow.effect.turtleMaster=Strzała mistrza żółwi # tipped_arrow.effect.slowFalling=Strzała powolnego opadania # +tipped_arrow.effect.infested=Strzała infekcji # +tipped_arrow.effect.oozing=Strzała wyciekania # +tipped_arrow.effect.weaving=Strzała tkania # +tipped_arrow.effect.windCharged=Strzała ładunku wiatru # structure_block.title=Blok budowli # structure_block.structure_name=Nazwa budowli # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=Część ostatnio wprowadzonych zmian worldError.worldFailedRecovery=Odzyskiwanie nie powiodło się # worldError.worldFailedRecoveryText=Wykryliśmy uszkodzony świat i nie udało nam się go odzyskać. # +writeThrottling.osDialog.body=Żądana operacja zajmie około %d min. Nie wyłączaj swojego urządzenia w tym czasie. # +writeThrottling.osDialog.cancel=Anuluj operację # +writeThrottling.osDialog.confirm=Kontynuuj # +writeThrottling.progressBar.title=Przygotowywanie danych # +writeThrottling.progressBar.body=Przygotowywanie plików... # + userData.recovered.title=Odzyskano dane zapisu # userData.recovered.text=Udało się odzyskać twoje uszkodzone ustawienia użytkownika. # userData.recovered.warning=Część ostatnio wprowadzonych zmian mogła zostać utracona w procesie odzyskiwania. # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=Wiadomość na czacie # xbox.report.area.skin=Skórka gracza # xbox.report.area.gameplay=Rozgrywka # xbox.report.area.ingame=Dzieła w grze # -xbox.report.area.other=Inne # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=Cyberprzemoc # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=Nie udało się nam nawiązać połączeni gathering.connect.title=Łączenie... # gathering.info.qr.title.onlineService=Więcej info # gathering.info.qr.body.onlineService.nso=Aby dołączyć do wydarzenia w grze Minecraft, musisz mieć konto Nintendo Switch Online. # -gathering.info.qr.body.onlineService.psn=Aby dołączyć do wydarzenia w grze Minecraft, musisz zalogować się do „PlayStation Plus”. # +gathering.info.qr.body.onlineService.psn=Aby dołączyć do wydarzenia w grze Minecraft, musisz zalogować się do PlayStation®Plus. #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=Musisz się zalogować, aby dołączyć do wydarzenia w grze Minecraft. # gathering.info.qr.title.childAccount=Gra online niedozwolona # gathering.info.qr.body.childAccount=Obecna kontrola rodzicielska ogranicza możliwość gry online. # diff --git a/resource_pack/texts/pt_BR.lang b/resource_pack/texts/pt_BR.lang index 3cc8073b1..fe4caf532 100644 --- a/resource_pack/texts/pt_BR.lang +++ b/resource_pack/texts/pt_BR.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=Escolher seed # accessibility.start.feedback=Enviar Link de Feedback para o Site # accessibility.start.new=Novo # -accessibility.start.profile=Escolher Perfil # accessibility.start.skinPicker=Escolher capa # accessibility.store.tag=Marca # @@ -1094,10 +1093,6 @@ commands.me.description=Exibe uma mensagem sobre você. # commands.message.display.incoming=%1$s sussurrou para você: %2$s # commands.message.display.outgoing=Você sussurrou para %1$s: %2$s # commands.message.sameTarget=Você não pode enviar uma mensagem privada para si mesmo! # -commands.message.warn=§4 Você recebeu uma advertência. Seu comportamento pode ser ofensivo por outros jogadores. Tenha mais cautela com os outros jogadores. # -commands.message.toastWarn=Minecraft é para todo mundo! Certifique-se de seguir os nossos padrões da comunidade. # -commands.warn.invalidWarningLevel=Nível de advertência inválido. # -commands.warn.playerDoesNotExist=Não foi possível encontrar o jogador. Selecione um jogador válido. # commands.mobevent.description=Controla quais eventos de criaturas podem ser executados. # commands.mobevent.eventsEnabledSetToTrue=Os eventos de criaturas agora estão ativados. Os eventos individuais que estão configurados como falsos não serão executados. # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=- %s: %s de %d %d %d a %d %d %d # commands.volumearea.entry.withoutIdentifier=- %s: de %d %d %d a %d %d %d # commands.volumearea.noneExist.currentDimension=Não existem volumes na dimensão atual. # commands.volumearea.inUse=%1$d/%2$d volumes em uso. # -commands.warn.description=Envia um aviso para o jogador. # commands.weather.clear=Mudando para tempo limpo # commands.weather.description=Define o clima. # commands.weather.disabled=O Ciclo Climático não está habilitado neste mundo. # @@ -1572,6 +1566,7 @@ container.beacon=Sinalizador # container.brewing=Suporte de Poções # container.chest=Baú # container.chestDouble=Baú Grande # +container.crafter=Criador # container.crafting=Criação # container.creative=Seleção de Itens # container.dispenser=Ejetor # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=Caves and Cliffs # createWorldScreen.cavesandcliffsDescription=Explore o novo e variado sistema de geração de cavernas # createWorldScreen.spectatorMode=Modo Espectador # createWorldScreen.spectatorModeDescription=Experimente as primeiras versões do Modo Espectador # -createWorldScreen.experimentalCameras=Câmeras Experimentais # -createWorldScreen.experimentalCamerasDescription=Contém exemplos de predefinições de câmera (o comando da câmera não é mais experimental) # createWorldScreen.recipeUnlocking=Desbloqueio de Receitas # createWorldScreen.recipeUnlockingDescription=Ativar o desbloqueio de receitas # createWorldScreen.experimentalholiday=Recursos de Criador de Férias # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=Criando mundo novo... # createWorldScreen.progress.realms=Redefinindo Realm... # createWorldScreen.seed.desc=Insira uma seed para gerar novamente o mesmo terreno. Deixe vazio para gerar um mundo aleatório. # createWorldScreen.showCoordinates=Mostrar Coordenadas # +createWorldScreen.showDaysPlayed=Exibir Dias Jogados # createWorldScreen.worldType=Tipo de mundo # createWorldScreen.randomtickspeed=Velocidade de Tick Aleatória # createWorldScreen.randomtickspeed.reset=Redefinir Velocidade de Tick Aleatória # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=Excluir Projeto # createWorldScreen.editor.projectOptionsLabel=Opções de Projeto # createWorldScreen.editor.delete.confirm=Excluir o projeto permanentemente? # createWorldScreen.editor.deleteWarningFormat=Tem certeza de que quer excluir "%s"? Este projeto será perdido para sempre! # +createWorldScreen.eduCloud.about.body=Nome do arquivo: '%1$s'%2$sÚltima atualização: %3$s%4$sPara baixar, clique em OK e em Baixar.%5$s # +createWorldScreen.eduCloud.about.title=Sobre o Arquivo do Cloud World # createWorldScreen.eduCloud.delete.confirm=Excluir mundo local? # createWorldScreen.eduCloud.deleteWarningFormat=Tem certeza de que deseja excluir ''%1$s'' neste dispositivo?%2$sA versão da nuvem ''%3$s'' não será afetada e pode ser sincronizada mais tarde. # createWorldScreen.experimentalDeferredTechnicalPreview=Renderizar Recursos de Dragão para Criadores # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Windows Store # realmsSettingsScreen.xboxOneStoreDisplayName=Loja Xbox # realmsSettingsScreen.amazonStoreDisplayName=Amazon Appstore # realmsSettingsScreen.oculusStoreDisplayName=Oculus Store # -realmsSettingsScreen.berwickStoreDisplayName="PlayStation Store" # -realmsSettingsScreen.SonyStoreDisplayName=''PlayStation Store'' #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=loja desconhecida # realmsSettingsScreen.extendingRealm=Estendendo Realm... # realmsSettingsScreen.offerError.title=Compra pendente # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=Você só pode sincronizar paco xbl.syncIAP.confirmSync.prompt.yes=Sim, Sincronize Minhas Compras # xbl.marketplace.account.error.body.nobutton=Há um erro na sua conta. Você não conseguirá usar o Marketplace até resolvermos o problema. Se ele persistir por muitos dias, entre em contato com o suporte. # -xbl.marketplace.account.banned.body.nobutton=Você não pode usar o Marketplace até que sua suspensão acabe. # playfab.account.banned.temporary=sofreu suspensão # playfab.account.banned.permanent=sofreu banimento # @@ -2487,6 +2482,14 @@ date.daysAbbreviated1Char=%s dias ### It needs to be abbreviated with no more t date.hoursAbbreviated1Char=%sh ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%sm ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%ss ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s dias # +date.hoursPlural=%s horas # +date.minutesPlural=%s minutos # +date.secondsPlural=%s segundos # +date.daySingular=%s dia # +date.hourSingular=%s hora # +date.minuteSingular=%s minuto # +date.secondSingular=%s segundo # date.timeLeft=%s restantes # dayOneExperience.carousel.title=Bem-Vindo ao Novo Minecraft! # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=HOST # edu.worlds_screen.settings=CONFIGURAÇÕES # edu.worlds_screen.download=BAIXAR ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=GERENCIAR # +edu.worlds_screen.about=SOBRE # edu.worlds_screen.back=VOLTAR # edu.worlds_screen.copy=COPIAR # edu.worlds_screen.export=EXPORTAR # @@ -2791,7 +2795,13 @@ edu.templates.empty_banner=Você pode obter modelos de mundo da Biblioteca do Mi edu.pause.multiplayer.disabled=Multijogador não está disponível nesta lição. # effect.badOmen=Mal Presságio # +effect.infested=Infestado # +effect.oozing=Gotejante # +effect.raid_omen=Presságio de Ataque # +effect.trial_omen=Desafio de Presságio # effect.villageHero=Herói da Vila # +effect.weaving=Tecelagem # +effect.wind_charged=Vento Carregado # enchantment.arrowDamage=Força # enchantment.arrowFire=Chama # @@ -2810,6 +2820,9 @@ enchantment.durability=Inquebrável # enchantment.fire=Aspecto de Fogo # enchantment.fishingSpeed=Isca # enchantment.frostwalker=Caminhante de Geada # +enchantment.heavy_weapon.breach=Violação # +enchantment.heavy_weapon.density=Densidade # +enchantment.heavy_weapon.windburst=Explosão de Vento # enchantment.knockback=Repulsão # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=Morcego # entity.bee.name=Abelha # entity.blaze.name=Chama # entity.boat.name=Barco # +entity.bogged.name=Atolado # +entity.breeze.name=Brisa # +entity.breeze_wind_charge_projectile.name=Carga de Vento # entity.cat.name=Gato # entity.cave_spider.name=Aranha da Caverna # entity.chicken.name=Galinha # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=Aldeão Inexperiente # entity.villager_v2.name=Aldeão # entity.vindicator.name=Vingador # entity.wandering_trader.name=Comerciante Nômade # +entity.wind_charge_projectile.name=Carga de Vento # entity.witch.name=Bruxa # entity.wither.name=Wither # entity.wither_skeleton.name=Esqueleto Wither # @@ -3009,6 +3026,7 @@ feature.ruins=Ruínas do Oceano # feature.pillager_outpost=Posto Avançado do Saqueador # feature.bastion_remnant=Bastião Remanescente # feature.ruined_portal=Portal Arruinado # +feature.trial_chambers=Câmaras de Teste # feed.like=Curtir # feed.manage_feed=Gerenciar Feed # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=Mova :tip_left_stick: para se mover # gameTip.flying.mouse=Toque :_input_key.jump: duas vezes para voar # gameTip.flying.touch=Toque duas vezes em pular para voar # +gameTip.flyDown.mouse=Pressione :_input_key.sneak: para voar para baixo # +gameTip.flyUp.mouse=Pressione :_input_key.jump: para voar para cima # + +gameTip.stopFlying.mouse=Toque :_input_key.jump: duas vezes para parar de voar # +gameTip.stopFlying.touch=Toque duas vezes em voar para baixo para parar de voar # + gameTip.jump.mouse=Pule com :_input_key.jump: # +gameTip.swim.mouse=Pressione e segure :_input_key.jump: para nadar # -gameTip.hotbar.mouse=Role a roda do mouse para selecionar # na barra rápida e segurar # -gameTip.hotbar.touch=Toque em # na barra rápida para segurar # -gameTip.hotbar.controller=Toque em # na barra rápida para segurar # +gameTip.hotbar.selection.mouse=Role ou pressione %s para segurar o item ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=Toque no item na barra rápida para segurar # gameTip.breakBlock.mouse=Segure o botão esquerdo do mouse para quebrar blocos # gameTip.breakBlock.touch=Toque e segure para quebrar os blocos # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=Você está se esgueirando! Agora não pode cair das bordas gameTip.sneak.touch=Você está se esgueirando, então não pode cair das bordas # gameTip.sneak.controller=Você está se esgueirando, então não pode cair das bordas # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=Coloque sua bancada. Segure-a e clique para colocar # gameTip.placeCraftingTable.touch=Coloque sua bancada tocando no chão # gameTip.placeCraftingTable.controller=Posicione sua bancada, segure e toque no chão # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=Agradecemos por compartilhar a sua avaliação! # gui.submitFeedback.failure.status.unprocessableEntity=Você não possui o item para o qual está tentando fornecer comentários. (Código de Erro: %d) # gui.submitFeedback.failure.status.tooManyRequests=Essa não! Você enviou avaliações demais. Por favor, tente novamente mais tarde. (Código de Erro: %d) # gui.submitFeedback.failure.status.other=Não foi possível enviar a sua avaliação. Tente novamente mais tarde. (Código de Erro: %d) # +gui.togglable_slot=Pressione para desativar o espaço # gui.playOffline=Jogar Offline # gui.signIn=Entrar # gui.genericNetworkError=Ocorreu um erro. Verifique sua conexão com a internet. # @@ -3462,8 +3487,8 @@ howtoplay.craftingATool=Criando uma Ferramenta # howtoplay.craftingATool.title=Como Jogar: Criando uma Ferramenta # howtoplay.craftingATool.text.1=§eFerramentas§f ajudam você a fazer as coisas com mais rapidez. Algumas, como a §epicareta§f:wood_pickaxe: , permitem extrair pedras e vários minérios. Outras, como a §eespada§f:wood_sword: , ajudam você a manter os inimigos afastados. # howtoplay.craftingATool.text.2.keyboard=Para criar uma ferramenta, abra sua §ebancada§f:crafting_table: andando até ela e clicando com o botão direito nele. Você pode criar uma versão básica da maioria das ferramentas usando dois gravetos e algumas tábuas. O seu §elivro de receitas§f vai te ajudar nisso! # -howtoplay.craftingATool.text.2.gamepad=Para criar uma ferramenta, abra sua §emesa de criação§f:crafting_table: andando até ela e pressionando :_input_key.use:. Você pode criar uma versão básica da maioria das ferramentas usando dois gravetos e algumas tábuas. O seu §elivro de receitas§f vai te ajudar nisso! # -howtoplay.craftingATool.text.2.touch=Para criar uma ferramenta, abra sua §emesa de criação§f:crafting_table: andando até ela e a tocando. Você pode criar uma versão básica da maioria das ferramentas usando dois gravetos e algumas tábuas. O seu §elivro de receitas§f vai te ajudar nisso! # +howtoplay.craftingATool.text.2.gamepad=Para criar uma ferramenta, abra sua §ebancada§f:crafting_table: andando até ela e pressionando :_input_key.use:. Você pode criar uma versão básica da maioria das ferramentas usando dois gravetos e algumas tábuas. O seu §elivro de receitas§f vai te ajudar nisso! # +howtoplay.craftingATool.text.2.touch=Para criar uma ferramenta, abra sua §ebancada§f:crafting_table: andando até ela e a tocando. Você pode criar uma versão básica da maioria das ferramentas usando dois gravetos e algumas tábuas. O seu §elivro de receitas§f vai te ajudar nisso! # howtoplay.worldBuilder=Construtor do Mundo # howtoplay.worldBuilder.title=Como Jogar: Construtor do Mundo # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=Explore um mundo de possibilidades com Minecoins: moe howtoplay.minecoins.text.2=Uma vez resgatadas, suas Minecoins ficam vinculadas à sua conta da Microsoft, para que você também possa acessar suas moedas e compras em outros dispositivos compatíveis! # howtoplay.minecoins.button.text.1=Obter Moedas # howtoplay.minecoins.header.1=Aviso de isenção # -howtoplay.minecoins.text.3=*As minecoins requerem a versão Minecraft: Bedrock Edition com o Marketplace do Minecraft. Minecoins não são compatíveis no Sony PlayStation. Para informações sobre compatibilidade, consulte minecraft.net/minecoins  # +howtoplay.minecoins.text.3=*As minecoins requerem a versão Minecraft: Bedrock Edition com o Marketplace do Minecraft. Minecoins não são compatíveis no Sony PlayStation®. Para informações sobre compatibilidade, consulte minecraft.net/minecoins  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=Mineração # @@ -4145,7 +4170,7 @@ level.editor.export.failed=Falha ao exportar projeto # level.editor.import.failed=Falha ao importar projeto # level.editor.import.failed.incompatibleEdition=Falha ao importar projeto: formato de arquivo incompatível # -inbox.invite.title=Convite do Realms # +inbox.invite.title=Convite de Realm para # invite.clear=Limpar seleção # invite.send=Enviar %d convites # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=Talhado Invertido Vermelho # item.banner.diagonal_up_right.silver=Talhado Invertido Cinza Claro # item.banner.diagonal_up_right.white=Talhado Invertido Branco # item.banner.diagonal_up_right.yellow=Talhado Invertido Amarelo # +item.banner.flow.black=Fluxo Preto # +item.banner.flow.blue=Fluxo Azul # +item.banner.flow.brown=Fluxo Marrom # +item.banner.flow.cyan=Fluxo Ciano # +item.banner.flow.gray=Fluxo Cinza # +item.banner.flow.green=Fluxo Verde # +item.banner.flow.lightBlue=Fluxo Azul-claro # +item.banner.flow.lime=Fluxo Verde-limão # +item.banner.flow.magenta=Fluxo Magenta # +item.banner.flow.orange=Fluxo Laranja # +item.banner.flow.pink=Fluxo Rosa # +item.banner.flow.purple=Fluxo Lilás # +item.banner.flow.red=Fluxo Vermelho # +item.banner.flow.silver=Fluxo Cinza-claro # +item.banner.flow.white=Fluxo Branco # +item.banner.flow.yellow=Fluxo Amarelo # item.banner.flower.black=Figura de Flor Preta # item.banner.flower.blue=Figura de Flor Azul # item.banner.flower.brown=Figura de Flor Marrom # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=Gradiente Branco na Base # item.banner.gradient_up.yellow=Gradiente Amarelo na Base # item.banner.gray.name=Estandarte Cinza # item.banner.green.name=Estandarte Verde # +item.banner.guster.black=Rajada Preta # +item.banner.guster.blue=Rajada Azul # +item.banner.guster.brown=Rajada Marrom # +item.banner.guster.cyan=Rajada Ciano # +item.banner.guster.gray=Rajada Cinza # +item.banner.guster.green=Rajada Verde # +item.banner.guster.lightBlue=Rajada Azul-claro # +item.banner.guster.lime=Rajada Verde-limão # +item.banner.guster.magenta=Rajada Magenta # +item.banner.guster.orange=Rajada Laranja # +item.banner.guster.pink=Rajada Rosa # +item.banner.guster.purple=Rajada Lilás # +item.banner.guster.red=Rajada Vermelho # +item.banner.guster.silver=Rajada Cinza-claro # +item.banner.guster.white=Rajada Branca # +item.banner.guster.yellow=Rajada Amarela # item.banner.half_horizontal.black=Lapidado Preto # item.banner.half_horizontal.blue=Lapidado Azul # item.banner.half_horizontal.brown=Lapidado Marrom # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=Barco de Acácia # item.boat.big_oak.name=Barco de Carvalho Escuro # item.bone.name=Osso # item.book.name=Livro # +item.breeze_rod.name=Bastão da Brisa # item.chainmail_boots.name=Botas de Cota de Malha # item.leather_boots.name=Botas de Couro # item.diamond_boots.name=Botas de Diamante # @@ -4991,6 +5049,7 @@ item.comparator.name=Comparador de Redstone # item.compass.name=Bússola # item.lodestonecompass.name=Bússola de Magnetita # item.cookie.name=Biscoito # +item.copper_door.name=Porta de Cobre # item.crossbow.name=Besta # item.diamond.name=Diamante # item.repeater.name=Repetidor de Redstone # @@ -5038,6 +5097,7 @@ tile.end_rod.name=Haste de Extremidade # item.ender_eye.name=Olho de Ender # item.ender_pearl.name=Pérola do End # item.experience_bottle.name=Frasco de Encantamentos # +item.exposed_copper_door.name=Porta de Cobre Exposta # item.feather.name=Pena # item.fermented_spider_eye.name=Olho de Aranha Fermentado # item.fireball.name=Bola de Fogo # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=Calças de Ouro # item.iron_leggings.name=Calças de Ferro # item.nautilus_shell.name=Concha de náutilo # item.heart_of_the_sea.name=Coração do mar # +item.mace.name=Maça # item.magma_cream.name=Creme de Magma # item.map.name=Mapa # item.map.exploration.mansion.name=Mapa do Explorador da Mata # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=Mapa da Vila da Savana # item.map.exploration.village_desert.name=Mapa da Vila do Deserto # item.map.exploration.jungle_temple.name=Mapa do Explorador da Selva # item.map.exploration.swamp_hut.name=Mapa do Explorador do Pântano # +item.map.exploration.trial_chambers.name=Teste do Mapa do Explorador # item.melon.name=Melancia # item.milk.name=Leite # item.minecart.name=Carrinho de Minas # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=Carrinho com Baú # item.command_block_minecart.name=Carrinho de Minas com Bloco de Comando # item.minecartFurnace.name=Carrinho com Fornalha # item.hopper_minecart.name=Carrinho com Funil # +item.ominous_bottle.name=Garrafa Sinistra # +item.ominous_trial_key.name=Chave de Teste Sinistra # +item.oxidized_copper_door.name=Porta de Cobre Oxidada # item.tnt_minecart.name=Carrinho com Dinamite # item.pitcher_pod.name=Vagem de Cântaro # item.torchflower_seeds.name=Sementes de Plantocha # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=Ovo de Invocação de Agent # item.spawn_egg.entity.armadillo.name=Ovo de Invocação de Tatu # item.spawn_egg.entity.axolotl.name=Ovo de Invocação de Axolote # item.spawn_egg.entity.bee.name=Ovo de Invocação de Abelha # +item.spawn_egg.entity.bogged.name=Ovo de Invocação Atolado # +item.spawn_egg.entity.breeze.name=Ovo de Invocação de Brisa # item.spawn_egg.entity.hoglin.name=Ovo de Invocação de Hoglin # item.spawn_egg.entity.cat.name=Ovo de Invocação de Gato # item.spawn_egg.entity.chicken.name=Ovo de Invocação de Galinha # @@ -5212,7 +5279,7 @@ item.spawn_egg.entity.zombie_villager_v2.name=Ovo de Invocação de Aldeão Zumb item.spawn_egg.entity.witch.name=Ovo de Invocação de Bruxa # item.spawn_egg.entity.stray.name=Ovo de Invocação de Nômade # item.spawn_egg.entity.husk.name=Ovo de Invocação de Zumbi-múmia # -item.spawn_egg.entity.wither_skeleton.name=Ovo de Invocação de Esqueleto Definhado # +item.spawn_egg.entity.wither_skeleton.name=Ovo de Invocação de Esqueleto Wither # item.spawn_egg.entity.guardian.name=Ovo de Invocação de Guardião # item.spawn_egg.entity.elder_guardian.name=Ovo de Invocação de Guardião-mestre # item.spawn_egg.entity.shulker.name=Ovo de Invocação de Shulker # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 - ala # item.record_pigstep.desc=Lena Raine - Pigstep # item.record_otherside.desc=Lena Raine - otherside # item.record_relic.desc=Aaron Cherof - Relic # +item.record_creator.desc=Lena Raine - Creator # +item.record_creator_music_box.desc=Lena Raine - Creator (Music Box) # +item.record_precipice.desc=Aaron Cherof - Precipice # item.redstone.name=Pó de Redstone # item.reeds.name=Canas-de-Açúcar # item.kelp.name=Alga # @@ -5324,6 +5394,12 @@ item.iron_sword.name=Espada de Ferro # item.stone_sword.name=Espada de Pedra # item.wooden_sword.name=Espada de Madeira # item.unbreakable=Inquebrável # +item.waxed_copper_door.name=Porta de Cobre Encerada # +item.waxed_exposed_copper_door.name=Porta de Cobre Exposta e Encerada # +item.waxed_oxidized_copper_door.name=Porta de Cobre Oxidada e Encerada # +item.waxed_weathered_copper_door.name=Porta de Cobre Desbotada e Encerada # +item.weathered_copper_door.name=Porta de Cobre Desbotada # +item.wind_charge.name=Carga de Vento # item.wheat.name=Trigo # item.wolf_armor.name=Armadura para Lobo # item.writable_book.name=Livro e Pena # @@ -5331,15 +5407,18 @@ item.written_book.name=Livro Escrito # item.glowstone_dust.name=Pó de Pedra Luminosa # item.shulker_shell.name=Casca de Shulker # item.totem.name=Totem da Imortalidade # +item.trial_key.name=Chave de Teste # item.turtle_helmet.name=Casco de Tartaruga # -item.turtle_shell_piece.name=Escama de Tartaruga # +item.turtle_shell_piece.name=Carapaça de Tartaruga # item.phantom_membrane.name=Membrana de Fantasma # item.sweet_berries.name=Frutas Vermelhas Doces # item.suspicious_stew.name=Sopa Suspeita # item.banner_pattern.bricks=Campo em Alvenaria # item.banner_pattern.creeper=Figura de Creeper # +item.banner_pattern.flow=Fluxo # item.banner_pattern.flower=Figura de Flor # item.banner_pattern.globe=Globo # +item.banner_pattern.guster=Rajada # item.banner_pattern.name=Padrão da Bandeira # item.banner_pattern.piglin=Focinho # item.banner_pattern.skull=Figura de Caveira # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=Padrões da Bandeira # itemGroup.name.netherWartBlock=Fungos do Nether # itemGroup.name.candles=Velas # itemGroup.name.goatHorn=Chifres de Cabra # +itemGroup.name.compounds=Compostos # +itemGroup.name.products=Produtos # jigsaw.title.target_pool=Conjunto de alvos: # jigsaw.title.name=Nome: # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=CONFIGURAÇÕES DA SALA DE AULA # menu.serverStore=Loja %s # menu.serverGenericName=Servidor # menu.play=Jogar # +menu.profile=Perfil # menu.playdemo=Jogar Mundo Demo # menu.playOnRealms=Jogar no Realm # menu.quickplay=Jogo Rápido # @@ -5840,7 +5922,8 @@ menu.editor.play=Continuar # menu.character_cast.select_title=Escolha seu Personagem Inicial # menu.character_cast.preview_title=Conheça o Elenco! # menu.realms=Realms ####{StrContains="Realms"} -menu.realmsServer=Realms Server ####{StrContains="Realms"}{MaxLength='18'} +menu.realmsServer=Servidor de Realms ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=Servidores # merchant.deprecated=Troque algo mais para desbloquear! # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=Jogar Somente com Teclado # options.fullKeyboardLayout=Layout Completo do Teclado # options.improvedInputResponsePlaceholder=Resposta de Entrada Aprimorada # options.improvedInputResponsePlaceholder.tooltip=Reduz o atraso entre sua entrada e o que você vê na tela. Esta configuração pode usar mais energia da bateria. # +options.dynamicTexturesToggle=Remover Limite de Textura # +options.dynamicTexturesToggle.tooltip=Ligar e desligar isso exigirá uma reinicialização do jogo. Isso pode causar instabilidade ao usar vários complementos ou pacotes de recursos com muitas texturas. # +options.dynamicTextures.popUp=Se você ligar Remover Limite de Textura, você precisará reiniciar o jogo para desligá-lo. # +options.dynamicTextures.popUp.title=Tem certeza? # options.fullscreen=Tela Inteira # options.gamepadcursorsensitivity=Sensibilidade do Cursor do Controlador # options.gamertag=Gamertag: # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=Conectar # options.creator.debuggerListen=Escutar # options.creator.debuggerHost=Host # options.creator.debuggerPort=Porta # +options.creator.watchdogHeading=Configurações de Vigia de Script # +options.creator.watchdogSlowWarning=Avisos de Script Lento # +options.creator.watchdogSlowThreshold=Média excede # +options.creator.watchdogSlowFormat=%s Milissegundos # +options.creator.watchdogSlowFormatDefault=%s Milissegundos (padrão) # +options.creator.watchdogSpikeWarning=Avisos de Pico de Script # +options.creator.watchdogSpikeThreshold=Pico excede # +options.creator.watchdogSpikeFormat=%s Milissegundos # +options.creator.watchdogSpikeFormatDefault=%s Milissegundos (padrão) # +options.creator.watchdogHangThreshold=Interromper após # +options.creator.watchdogHangFormat=%s Segundos # +options.creator.watchdogHangFormatDefault=%s Segundos (padrão) # options.vr_classic_box_selection=Seleção de Espaço # options.hidegamepadcursor=Ocultar o Cursor do Controlador # options.hidegui=Ocultar GUI # @@ -6662,7 +6761,7 @@ options.makeBackup=Fazer uma cópia de backup do meu mundo # options.managePrivacy=Para gerenciar as configurações privadas, acesse https://account.xbox.com/Settings em qualquer navegador. ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Desvincular Conta Microsoft # options.unlink_msa.confirm.title=Desvincular Conta Microsoft? # -options.unlink_msa.confirm.warning=AVISO: Você não poderá armazenar o progresso ou compras feitas em seu Sistema "PlayStation 4" em sua conta %s após desvincular. # +options.unlink_msa.confirm.warning=AVISO: Você não poderá armazenar o progresso ou compras feitas em seu Sistema PlayStation®4 em sua conta %s após desvincular. #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=Desvincular sua Conta da Microsoft de dentro deste jogo afetará todos os jogos de Minecraft nesta plataforma que usaram esta Conta da Microsoft. # options.unlink_msa.confirm.checkbox1=Eu não poderei mais acessar qualquer conteúdo da Loja dentro de jogo quando eu jogar em outras plataformas. # options.unlink_msa.confirm.checkbox2=Eu não poderei mais jogar jogos entre plataformas com meus amigos em outras plataformas. # @@ -6688,7 +6787,7 @@ options.editor.modeDescription.messageWithMouse=O Modo Editor adiciona ferrament options.editor.modeActive=Minecraft está atualmente no Modo Editor. # options.editor.modeNotActive=Minecraft não está atualmente no Modo Editor. # options.editor.achievementsDisabled=As conquistas não estão disponíveis neste projeto. # -options.newUiPlayScreen.initiate=Mude para a nova interface de usuário # +options.newUiPlayScreen.initiate=Mude para a nova IU # options.openPage.continue=Mais Informações # options.graphicsMode=Modos de Gráfico # options.graphicsMode.simple=Simples # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=Carregue um mundo para personalizar os co hudScreen.controlCustomization.tooltip.notouch=Use um dispositivo de toque para personalizar os controles # hudScreen.controlCustomization.tooltip.alreadycustomizing=Já existe uma tela de personalização de controle de toque aberta # hudScreen.controlCustomization.tooltip.alive=O jogador precisa estar vivo para personalizar os controles. # +hudScreen.daysPlayed=Dias jogados: %s # +hudScreen.daysPlayed.overflow=Perdi as contas! # playscreen.fileSize.MB=MB # playscreen.fileSize.GB=GB # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=Poção Arremessável de Cura # potion.heal.linger.name=Poção Prolongada de Cura # potion.healthBoost=Vida Extra # potion.hunger=Fome # +potion.infested.linger.name=Poção Prolongada da Infestação # +potion.infested.name=Poção da Infestação # +potion.infested.splash.name=Poção Arremessável da Infestação # +potion.infested=Infestado # potion.invisibility=Invisibilidade # potion.invisibility.name=Poção da Invisibilidade # potion.invisibility.splash.name=Poção Arremessável da Invisibilidade # @@ -7067,6 +7172,10 @@ potion.nightVision=Visão Noturna # potion.nightVision.name=Poção da Visão Noturna # potion.nightVision.splash.name=Poção Arremessável da Visão Noturna # potion.nightVision.linger.name=Poção Prolongada da Visão Noturna # +potion.oozing.linger.name=Poção Prolongada Gotejante # +potion.oozing.name=Poção Gotejante # +potion.oozing.splash.name=Poção Arremessável Gotejante # +potion.oozing=Gotejante # potion.poison=Veneno # potion.poison.name=Poção Venenosa # potion.poison.splash.name=Poção Arremessável de Veneno # @@ -7108,6 +7217,14 @@ potion.weakness=Fraqueza # potion.weakness.name=Poção da Fraqueza # potion.weakness.splash.name=Poção Arremessável da Fraqueza # potion.weakness.linger.name=Poção Prolongada da Fraqueza # +potion.weaving.linger.name=Poção Prolongada da Tecelagem # +potion.weaving.name=Poção da Tecelagem # +potion.weaving.splash.name=Poção Arremessável da Tecelagem # +potion.weaving=Tecelagem # +potion.windCharged.linger.name=Poção Prolongada de Carregamento do Vento # +potion.windCharged.name=Poção de Carregamento do Vento # +potion.windCharged.splash.name=Poção Arremessável de Carregamento do Vento # +potion.windCharged=Vento Carregado # potion.wither=Wither # potion.wither.name=Poção da Decomposição # potion.wither.splash.name=Poção Arremessável da Decomposição # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=Este mundo não pode ser aberto devid progressScreen.message.forbiddenContent=Você não possui um ou mais dos pacotes aplicados # progressScreen.message.loadingSplitScreenAppearances=Carregando exibições em tela dividida... # progressScreen.message.finishedLoadingSplitScreenAppearances=Carregamento de exibições em tela dividida concluído. # -progressScreen.message.modifiedWorldWarning=Este mundo pode não parecer ou se comportar da mesma forma que mundos não modificados, e você não pode ganhar conquistas. # +progressScreen.message.modifiedWorldWarning.1=Você está jogando em um mundo com complementos! Isso adicionará novos recursos ao seu mundo de Minecraft. # +progressScreen.message.modifiedWorldWarning.2=Não parem com só um! Você pode carregar vários complementos em um único mundo de uma só vez. # +progressScreen.message.modifiedWorldWarning.3=Dica Avançada: um Pacote de Recursos pode alterar as texturas de diferentes blocos e entidades. # +progressScreen.message.modifiedWorldWarning.4=Dica Avançada: um Pacote de Comportamento pode mudar como diferentes itens, entidades ou blocos funcionam. # +progressScreen.message.modifiedWorldWarning.5=Dica Avançada: um complemento inclui um Pacote de Comportamento e um Pacote de Recursos. Certifique-se de que os dois pacotes estejam ativados para garantir que o complemento funcione! # +progressScreen.message.modifiedWorldWarning.6=Complementos adicionam novos blocos, itens ou criaturas aos seus mundos. # +progressScreen.message.modifiedWorldWarning.7=Mundos e Complementos são complexos! Embora alguns funcionem muito bem juntos, outros podem resultar em problemas. # +progressScreen.message.modifiedWorldWarning.8=Mais complementos significa mais diversão, mas o jogo pode demorar mais para carregar. # progressScreen.dialog.title.resourcePack=Baixar Pacotes de Recursos? # progressScreen.dialog.title.behaviorAndResourcePack=Baixar pacotes de comportamento e recursos do mundo? # progressScreen.dialog.title.onlyBehavior=Baixar pacotes de comportamento do mundo? # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=Atualizar Mundo? # resourcePack.warning.add.body=Este mundo pode não parecer ou se comportar da mesma maneira que os mundos não modificados. Você deve salvar uma cópia do seu mundo antes de continuar. # resourcePack.warning.add.button.cancel=Não adicionar pacote # resourcePack.warning.add.button.ok=Adicionar o pacote mesmo assim # +resourcePack.warnings.contentKeyErrorBody=Houve um problema ao carregar o pacote %s. # +resourcePack.warnings.contentKeyErrorBodyMultiple=Houve um problema ao carregar os pacotes %s. # +resourcePack.warnings.contentKeyErrorTitle=Erro! # resourcePack.warning.remove.title=Isso é perigoso! # resourcePack.warning.remove.body=Adicionar ou remover Pacotes depois de jogar em um mundo pode quebrá-lo, fazendo você perder tudo que criou. # resourcePack.warning.remove.button.cancel=Manter o pacote # @@ -7557,7 +7684,9 @@ item.crimson_hanging_sign.name=Placa suspensa carmesim # item.danger_pottery_sherd.name=Fragmento de Cerâmica Perigoso # item.dark_oak_hanging_sign.name=Placa suspensa de carvalho escuro # item.explorer_pottery_sherd.name=Fragmento de Cerâmica do Explorador # +item.flow_pottery_sherd.name=Fragmento de Cerâmica do Fluxo # item.friend_pottery_sherd.name=Fragmento de Cerâmica de Amigo # +item.guster_pottery_sherd.name=Fragmento de Cerâmica da Rajada # item.heart_pottery_sherd.name=Fragmento de Cerâmica de Coração # item.heartbreak_pottery_sherd.name=Fragmento de Cerâmica de Coração Partido # item.howl_pottery_sherd.name=Fragmento de Cerâmica do Uivo # @@ -7568,6 +7697,7 @@ item.mourner_pottery_sherd.name=Fragmento de Cerâmica do Luto # item.oak_hanging_sign.name=Placa suspensa de carvalho # item.plenty_pottery_sherd.name=Vários Fragmentos de Cerâmica # item.prize_pottery_sherd.name=Fragmento de Cerâmica de Prêmio # +item.scrape_pottery_sherd.name=Fragmento de Cerâmica da Raspagem # item.sheaf_pottery_sherd.name=Feixe do Fragmento de Cerâmica # item.shelter_pottery_sherd.name=Fragmento de Cerâmica do Abrigo # item.skull_pottery_sherd.name=Fragmento de Cerâmica de Caveira # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=Escadas de Cerejeira # tile.cherry_trapdoor.name=Alçapão de Cerejeira # tile.cherry_wood.name=Madeira de Cerejeira # tile.chiseled_bookshelf.name=Estante Cinzelada # +tile.chiseled_tuff.name=Tufo Cinzelado # +tile.chiseled_tuff_bricks.name=Tijolos de Tufo Cinzelados # tile.decorated_pot.name=Vaso Decorado # tile.pink_petals.name=Pétalas Cor-de-rosa # tile.stripped_bamboo_block.name=Bloco Despojado de Bambu # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=Acabamento de Armadura Vex # trim_pattern.ward.name=Acabamento da Armadura do Guardião # trim_pattern.wayfinder.name=Acabamento da Armadura do Compasso # trim_pattern.wild.name=Acabamento da Armadura Selvagem # +trim_pattern.bolt.name=Acabamento da Armadura do Parafuso # +trim_pattern.flow.name=Acabamento da Armadura do Fluxo # upgrade.netherite_upgrade.name=Atualização Netherita # storageManager.mainSizeLabel=%s - 1 item # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=Excluir modelo de mundo? # selectTemplate.delete=Excluir # selectTemplate.myTemplates=Modelos do Meu Mundo # selectTemplate.realmsPlus=Modelos em Destaque do Realms Plus # -selectTemplate.marketplacePass=Modelos em Destaque do Marketplace Pass #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=Conteúdo em Destaque do Marketplace Pass #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=Modelos Importados # selectTemplate.download=Fazer Download # selectTemplate.noTemplates=Não há modelos de mundo neste dispositivo. # -selectTemplate.suggestedContent.title=Modelos do Marketplace em Destaque # +selectTemplate.suggestedContent.title=Conteúdo em Destaque do Marketplace # selectTemplate.suggestedContent.button=Ver Mais Modelos # selectTemplate.createdBy=Criado por %s # selectTemplate.inventory=Meus Pacotes do Marketplace # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=Houve um problema ao conectar. Volte e tente nova store.loading.error.issues=Hmm, o Marketplace está tendo problemas. Tente se conectar mais tarde. # store.loading.error.internetDown=Não conseguimos detectar uma conexão com a internet. # store.loading.error.account=Há um problema com a sua conta. Tente novamente mais tarde e entre em contato com o suporte se isso persistir. # +store.loading.error.account.banned=Você não pode usar o Marketplace até que sua suspensão acabe. # store.giftPromo.day=Dia %s ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=Resgatado # @@ -8405,10 +8540,17 @@ store.mashup.count.skin=1 Capa # store.mashup.count.skins=%s Capas # store.mashup.count.texturePack=1 Pacote de Texturas # store.mashup.count.texturePacks=%s Pacotes de Texturas #number of texture packs # -store.mashup.count.world=1 Mundo # +store.mashup.count.world=1 Mundo # store.mashup.count.worlds=%s Mundos #number of worlds # store.mashup.count.addonPack=1 Complemento # store.mashup.count.addonPacks=%s Complementos #number of addons # +store.mashup.count.mashup=Mash-up # +store.mashup.hover.label.addonPack=Os complementos podem ser aplicados a qualquer mundo. # +store.mashup.hover.label.world=Um mapa de Minecraft criado à mão. # +store.mashup.hover.label.skin=Aplica um novo visual ao seu personagem. # +store.mashup.hover.label.texturePack=Adicione um novo visual ao seu mundo ou interface de jogo. # +store.mashup.hover.label.mashup.lineOne=Uma combinação de diferentes tipos de conteúdo. # +store.mashup.hover.label.mashup.lineTwo=Este Mash-Up contém: # store.addon.activateAddonPack=Ativar complemento! # store.addon.newOrExistingTitle=Onde adicionar? # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=Quadro # tile.chest.name=Baú # tile.ender_chest.name=Baú do Ender # tile.jigsaw.name=Bloco de Quebra-Cabeça # +tile.heavy_core.name=Núcleo Pesado # tile.honey_block.name=Bloco de Mel # tile.honeycomb_block.name=Bloco de Favo de Mel # tile.lodestone.name=Magnetita # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=Laje de Pedra-Negra Polida # tile.polished_blackstone_pressure_plate.name=Placa de Pressão de Pedra-Negra Polida # tile.polished_blackstone_button.name=Botão de Pedra-Negra Polida # tile.polished_blackstone_wall.name=Parede de Pedra-Negra Polida # +tile.polished_tuff.name=Tufo Polido # +tile.polished_tuff_slab.name=Laje de Tufo Polida # +tile.polished_tuff_stairs.name=Escada de Tufo Polida # +tile.polished_tuff_wall.name=Parede de Tufo Polida # tile.soul_campfire.name=Fogueira da Alma # tile.chiseled_nether_bricks.name=Tijolos do Nether Cinzelados # tile.cracked_nether_bricks.name=Tijolos do Nether Rachados # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=Terracota Amarela # tile.structure_block.name=Bloco de Estrutura # structure_block.waterlog_block=Blocos de alagamento # tile.structure_void.name=Estrutura Vazia # +tile.trial_spawner.name=Invocador de Teste # +tile.vault.name=Cofre # tile.wool.black.name=Lã Preta # tile.wool.blue.name=Lã Azul # tile.wool.brown.name=Lã Marrom # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=Samambaia # tile.tallgrass.grass.name=Grama # tile.tallgrass.name=Grama # tile.tallgrass.shrub.name=Arbusto # +tile.tuff_brick_slab.name=Laje de Tijolos de Tufo # +tile.tuff_brick_stairs.name=Escada de Tijolos de Tufo # +tile.tuff_brick_wall.name=Parede de Tijolos de Tufo # +tile.tuff_bricks.name=Tijolos de Tufo # +tile.tuff_slab.name=Laje de Tufo # +tile.tuff_stairs.name=Escada de Tufo # +tile.tuff_wall.name=Parede de Tufo # tile.seagrass.seagrass.name=Ervas marinhas # tile.sea_pickle.name=Pepino-do-mar # tile.turtle_egg.name=Ovo de Tartaruga Marinha # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=Carpete Vermelho # tile.carpet.silver.name=Carpete Cinza Claro # tile.carpet.white.name=Carpete Branco # tile.carpet.yellow.name=Carpete Amarelo # +tile.crafter.name=Criador # tile.crafting_table.name=Bancada # tile.glazedTerracotta.white.name=Azulejo Branco # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=Laje de Cobre Cortada e Encerada # tile.waxed_exposed_cut_copper_slab.name=Laje de Cobre Cortada, Exposta e Encerada # tile.waxed_weathered_cut_copper_slab.name=Laje de Cobre Cortada, Desbotada e Encerada # tile.waxed_oxidized_cut_copper_slab.name=Laje de Cobre Cortada, Oxidada e Encerada # + +tile.chiseled_copper.name=Cobre Cinzelado # +tile.exposed_chiseled_copper.name=Cobre Cinzelado Exposto # +tile.oxidized_chiseled_copper.name=Cobre Cinzelado Oxidado # +tile.waxed_chiseled_copper.name=Cobre Cinzelado Encerado # +tile.waxed_exposed_chiseled_copper.name=Cobre Cinzelado Exposto e Encerado # +tile.waxed_oxidized_chiseled_copper.name=Cobre Cinzelado Oxidado e Encerado # +tile.waxed_weathered_chiseled_copper.name=Cobre Cinzelado Desbotado e Encerado # +tile.weathered_chiseled_copper.name=Cobre Cinzelado Desbotado # + +tile.copper_bulb.name=Lâmpada de Cobre # +tile.exposed_copper_bulb.name=Lâmpada de Cobre Exposta # +tile.oxidized_copper_bulb.name=Lâmpada de Cobre Oxidada # +tile.waxed_copper_bulb.name=Lâmpada de Cobre Encerada # +tile.waxed_exposed_copper_bulb.name=Lâmpada de Cobre Exposta e Encerada # +tile.waxed_oxidized_copper_bulb.name=Lâmpada de Cobre Oxidada e Encerada # +tile.waxed_weathered_copper_bulb.name=Lâmpada de Cobre Desbotada e Encerada # +tile.weathered_copper_bulb.name=Lâmpada de Cobre Desbotada # + +tile.copper_door.name=Porta de Cobre # +tile.exposed_copper_door.name=Porta de Cobre Exposta # +tile.oxidized_copper_door.name=Porta de Cobre Oxidada # +tile.waxed_copper_door.name=Porta de Cobre Encerada # +tile.waxed_exposed_copper_door.name=Porta de Cobre Exposta e Encerada # +tile.waxed_oxidized_copper_door.name=Porta de Cobre Oxidada e Encerada # +tile.waxed_weathered_copper_door.name=Porta de Cobre Desbotada e Encerada # +tile.weathered_copper_door.name=Porta de Cobre Desbotada # + +tile.copper_grate.name=Grade de Cobre # +tile.exposed_copper_grate.name=Grade de Cobre Exposta # +tile.oxidized_copper_grate.name=Grade de Cobre Oxidada # +tile.waxed_copper_grate.name=Grade de Cobre Encerada # +tile.waxed_exposed_copper_grate.name=Grade de Cobre Exposta e Encerada # +tile.waxed_oxidized_copper_grate.name=Grade de Cobre Oxidada e Encerada # +tile.waxed_weathered_copper_grate.name=Grade de Cobre Desbotada e Encerada # +tile.weathered_copper_grate.name=Grade de Cobre Desbotada # + +tile.copper_trapdoor.name=Alçapão de Cobre # +tile.exposed_copper_trapdoor.name=Alçapão de Cobre Exposto # +tile.oxidized_copper_trapdoor.name=Alçapão de Cobre Oxidado # +tile.waxed_copper_trapdoor.name=Alçapão de Cobre Encerado # +tile.waxed_exposed_copper_trapdoor.name=Alçapão de Cobre Exposto e Encerado # +tile.waxed_oxidized_copper_trapdoor.name=Alçapão de Cobre Oxidado e Encerado # +tile.waxed_weathered_copper_trapdoor.name=Alçapão de Cobre Desbotado e Encerado # +tile.weathered_copper_trapdoor.name=Alçapão de Cobre Desbotado # + tile.raw_copper_block.name=Bloco de Cobre Bruto # tile.raw_iron_block.name=Bloco de Ferro Bruto # tile.raw_gold_block.name=Bloco de Ouro Bruto # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=Flecha de sorte # tipped_arrow.effect.wither=Flecha da Decomposição # tipped_arrow.effect.turtleMaster=Flecha do Mestre Tartaruga # tipped_arrow.effect.slowFalling=Flecha de Queda Lenta # +tipped_arrow.effect.infested=Flecha de Infestação # +tipped_arrow.effect.oozing=Flecha Gotejante # +tipped_arrow.effect.weaving=Flecha de Tecelagem # +tipped_arrow.effect.windCharged=Flecha de Carregamento do Vento # structure_block.title=Bloco de Estrutura # structure_block.structure_name=Nome da Estrutura # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=Algumas das mudanças mais recentes po worldError.worldFailedRecovery=Falha na recuperação # worldError.worldFailedRecoveryText=Detectamos um mundo corrompido e a recuperação falhou. # +writeThrottling.osDialog.body=A operação solicitada deve levar %d minutos para ser concluída. Não desligue o dispositivo durante este período. # +writeThrottling.osDialog.cancel=Cancelar Operação # +writeThrottling.osDialog.confirm=Continuar # +writeThrottling.progressBar.title=Preparando Dados # +writeThrottling.progressBar.body=Preparando seus arquivos... # + userData.recovered.title=Dados salvos recuperados # userData.recovered.text=As configurações de usuário corrompidas foram recuperadas. # userData.recovered.warning=Algumas das mudanças mais recentes podem ter sido perdidas na recuperação. # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=Mensagem de chat # xbox.report.area.skin=Capa de jogador # xbox.report.area.gameplay=Jogabilidade # xbox.report.area.ingame=Criações no jogo # -xbox.report.area.other=Outro # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=Bullying Virtual # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=Não conseguimos estabelecer a conexão. T gathering.connect.title=Conectando... # gathering.info.qr.title.onlineService=Saiba mais # gathering.info.qr.body.onlineService.nso=Você precisa de uma assinatura da Nintendo Switch Online para participar de um evento no Minecraft. # -gathering.info.qr.body.onlineService.psn=Você precisa fazer login na ''PlayStation Plus'' para participar de um evento no Minecraft. # +gathering.info.qr.body.onlineService.psn=Você precisa fazer login no PlayStation®Plus para participar de um evento no Minecraft. #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=Você precisa fazer login para participar de um evento no Minecraft. # gathering.info.qr.title.childAccount=Jogo Online não é Permitido # gathering.info.qr.body.childAccount=Seus controles parentais atuais limitam você de jogar online. # diff --git a/resource_pack/texts/pt_PT.lang b/resource_pack/texts/pt_PT.lang index 10f23fe0d..d97f6d714 100644 --- a/resource_pack/texts/pt_PT.lang +++ b/resource_pack/texts/pt_PT.lang @@ -134,7 +134,7 @@ accessibility.screenName.play=Ecrã de Jogo # accessibility.screenName.profile=Ecrã de Perfil # accessibility.screenName.realmSettings=Ecrã de Definições do Realm # accessibility.screenName.settings=Ecrã de Definições do Jogo # -accessibility.screenName.addFriend=Ecrã \"Adicionar Amigo\" # +accessibility.screenName.addFriend=Ecrã ''Adicionar Amigo'' # accessibility.screenName.skinPicker=Ecrã de Seleção de Skin # accessibility.screenName.start=Menu Principal # accessibility.screenName.vrAlignment=Ecrã de Orientação de RV # @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=Escolher Semente # accessibility.start.feedback=Enviar Ligação de Feedback para o Website # accessibility.start.new=Novo # -accessibility.start.profile=Escolher Perfil # accessibility.start.skinPicker=Escolher Skin # accessibility.store.tag=Etiqueta # @@ -208,7 +207,7 @@ accessibility.popup.message.line3=Queres desativar esta função? # accessibility.popup.left_button_text=Desligar # accessibility.popup.right_button_text=Manter Ligado # -accessibility.popup.joinRealm=Ecrã \"Juntar-me ao Realm\" # +accessibility.popup.joinRealm=Ecrã ''Juntar-me ao Realm'' # accessibility.controllerLayoutScreen.buttonRemapped=%s is now bound to %s # accessibility.controllerLayoutScreen.buttonBoundTo=%s botão: %s # @@ -1032,8 +1031,8 @@ commands.inputpermission.camera=Câmara # commands.inputpermission.movement=Movimento # commands.inputpermission.enabled=ativado # commands.inputpermission.disabled=desativado # -commands.inputpermission.set.invalidfilter=\"%s\" é um argumento de filtro inválido # -commands.inputpermission.set.missingpermission=\"permissão\" tem uma entrada inválida # +commands.inputpermission.set.invalidfilter=''%s'' é um argumento de filtro inválido # +commands.inputpermission.set.missingpermission=''permissão'' tem uma entrada inválida # commands.inputpermission.set.missingstate='estado' tem uma entrada inválida # commands.inputpermission.set.outputoneplayer=%s introduz %s para %s ###1: Input lock category (camera/movement) ##2: State (enabled/disabled) ##3: Player name commands.inputpermission.set.outputmultipleplayers=%s introduz %s para %d jogadores ###1: Input lock category (camera/movement) ##2: State (enabled/disabled) ##3: Player count @@ -1094,10 +1093,6 @@ commands.me.description=Apresenta uma mensagem sobre ti. # commands.message.display.incoming=%1$s sussurra-te: %2$s # commands.message.display.outgoing=Sussurraste para %1$s: %2$s # commands.message.sameTarget=Não podes mandar uma mensagem privada para ti mesmo! # -commands.message.warn=§4Foi-te enviado um aviso. O teu comportamento pode ser considerado ofensivo por outros jogadores. Tem consideração pelas pessoas com quem jogas. # -commands.message.toastWarn=O Minecraft é para todos! Tem o cuidado de respeitar as normas da comunidade. # -commands.warn.invalidWarningLevel=Nível de aviso inválido. # -commands.warn.playerDoesNotExist=Não foi possível encontrar o jogador. Seleciona um jogador válido. # commands.mobevent.description=Controla que eventos de criaturas podem ser executados. # commands.mobevent.eventsEnabledSetToTrue=Agora, os Eventos de Criatura estão ativados. Os eventos individuais definidos como falsos não serão executados. # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=- %s: %s de %d %d %d a %d %d %d # commands.volumearea.entry.withoutIdentifier=- %s: de %d %d %d a %d %d %d # commands.volumearea.noneExist.currentDimension=Não existem volumes na dimensão atual. # commands.volumearea.inUse=%1$d/%2$d volumes em utilização. # -commands.warn.description=Envia uma mensagem de aviso ao jogador. # commands.weather.clear=Mudar para céu limpo # commands.weather.description=Define o clima. # commands.weather.disabled=Ciclo Atmosférico não está ativado neste mundo. # @@ -1572,6 +1566,7 @@ container.beacon=Sinalizador # container.brewing=Posto de Poções # container.chest=Baú # container.chestDouble=Baú Grande # +container.crafter=Criador # container.crafting=Criação # container.creative=Seleção de Itens # container.dispenser=Distribuidor # @@ -1887,14 +1882,12 @@ createWorldScreen.cavesandcliffs=Cavernas e Falésias # createWorldScreen.cavesandcliffsDescription=Explora a nova geração de cavernas variada # createWorldScreen.spectatorMode=Modo de Espetador # createWorldScreen.spectatorModeDescription=Experimenta as primeiras versões do Modo de Espectador # -createWorldScreen.experimentalCameras=Câmaras Experimentais # -createWorldScreen.experimentalCamerasDescription=Contém exemplos de predefinições de câmara (o comando da câmara já não é experimental) # createWorldScreen.recipeUnlocking=Desbloqueio de Receitas # createWorldScreen.recipeUnlockingDescription=Ativar o desbloqueio de receitas # createWorldScreen.experimentalholiday=Características do Criador de Férias # createWorldScreen.experimentalholidayDescription=Adiciona blocos orientados a dados e tecnologia de itens para personalizares a forma, rotação, danos do bloco e muito mais # createWorldScreen.experimentalGameTest=APIs Beta # -createWorldScreen.experimentalGameTestDescription=Usar versões \"-beta\" de módulos API em packs de suplementos # +createWorldScreen.experimentalGameTestDescription=Usar versões ''-beta'' de módulos API em packs de suplementos # createWorldScreen.experimentalMolangFeatures=Características Molang # createWorldScreen.experimentalMolangFeaturesDescription=Características linguísticas e consultas experimentais Molang # createWorldScreen.experimentalUpdateAnnounced2023=Atualização 1.21 # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=A criar um novo mundo... # createWorldScreen.progress.realms=A reinicializar o Realm... # createWorldScreen.seed.desc=Introduz uma semente para gerar novamente o mesmo terreno. Deixa em branco para um mundo aleatório. # createWorldScreen.showCoordinates=Mostrar Coordenadas # +createWorldScreen.showDaysPlayed=Mostrar Dias Jogados # createWorldScreen.worldType=Tipo de Mundo # createWorldScreen.randomtickspeed=Multa de Velocidade Aleatória # createWorldScreen.randomtickspeed.reset=Reiniciar Multa de Velocidade Aleatória # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=Eliminar Projeto # createWorldScreen.editor.projectOptionsLabel=Opções do Projeto # createWorldScreen.editor.delete.confirm=Eliminar o projeto permanentemente? # createWorldScreen.editor.deleteWarningFormat=Tens a certeza de que pretendes apagar "%s"? Vais perder este projeto para sempre! # +createWorldScreen.eduCloud.about.body=Nome do ficheiro: '%1$s'%2$sÚltima atualização: %3$s %4$sPara transferir, clica em OK e depois em Transferir.%5$s # +createWorldScreen.eduCloud.about.title=Ficheiro Sobre o Mundo da Nuvem # createWorldScreen.eduCloud.delete.confirm=Eliminar mundo local? # createWorldScreen.eduCloud.deleteWarningFormat=Tens a certeza de que queres eliminar “%1$s” neste dispositivo?%2$sA versão na nuvem de “%3$s” não será afetada e pode ser sincronizada novamente mais tarde. # createWorldScreen.experimentalDeferredTechnicalPreview=Caraterísticas do Render Dragon para Criadores # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Loja Windows # realmsSettingsScreen.xboxOneStoreDisplayName=Loja Xbox # realmsSettingsScreen.amazonStoreDisplayName=Amazon Appstore # realmsSettingsScreen.oculusStoreDisplayName=Loja Oculus # -realmsSettingsScreen.berwickStoreDisplayName="PlayStation Store" # -realmsSettingsScreen.SonyStoreDisplayName=“PlayStation Store” #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=loja desconhecida # realmsSettingsScreen.extendingRealm=A Prolongar o Realm... # realmsSettingsScreen.offerError.title=Compra Pendente # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=Apenas podes sincronizar packs xbl.syncIAP.confirmSync.prompt.yes=Sim, Sincronizar as Minhas Compras # xbl.marketplace.account.error.body.nobutton=Há um erro na tua conta. Não vais conseguir usar o marketplace até que este problema esteja resolvido. Se o problema continuar durante vários dias contacta a equipa de suporte. # -xbl.marketplace.account.banned.body.nobutton=Não podes usar o marketplace até a tua suspensão expirar. # playfab.account.banned.temporary=suspenso # playfab.account.banned.permanent=banido # @@ -2487,6 +2482,14 @@ date.daysAbbreviated1Char=%sd ### It needs to be abbreviated with no more than date.hoursAbbreviated1Char=%sh ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%sm ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%ss ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s dias # +date.hoursPlural=%s horas # +date.minutesPlural=%s minutos # +date.secondsPlural=%s segundos # +date.daySingular=%s dia # +date.hourSingular=%s hora # +date.minuteSingular=%s minuto # +date.secondSingular=%s segundo # date.timeLeft=%s restantes # dayOneExperience.carousel.title=Bem-vindo(a) ao Novo Minecraft! # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=ANFITRIÃO # edu.worlds_screen.settings=DEFINIÇÕES # edu.worlds_screen.download=TRANSFERIR ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=GERIR # +edu.worlds_screen.about=SOBRE # edu.worlds_screen.back=VOLTAR # edu.worlds_screen.copy=COPIAR # edu.worlds_screen.export=EXPORTAR # @@ -2791,7 +2795,13 @@ edu.templates.empty_banner=Podes obter modelos de mundos na Biblioteca do Minecr edu.pause.multiplayer.disabled=Esta lição não tem o modo multijogador disponível. # effect.badOmen=Mau Presságio # +effect.infested=Infestado # +effect.oozing=Gotejante # +effect.raid_omen=Presságio de Ataque # +effect.trial_omen=Avaliação Sinistra # effect.villageHero=Herói da Aldeia # +effect.weaving=Tecelagem # +effect.wind_charged=Carregado de Vento # enchantment.arrowDamage=Poder # enchantment.arrowFire=Chama # @@ -2810,6 +2820,9 @@ enchantment.durability=Inquebrável # enchantment.fire=Flamejante # enchantment.fishingSpeed=Isco # enchantment.frostwalker=Congelar Água # +enchantment.heavy_weapon.breach=Incumprimento # +enchantment.heavy_weapon.density=Densidade # +enchantment.heavy_weapon.windburst=Explosão de Vento # enchantment.knockback=Repulsão # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=Morcego # entity.bee.name=Abelhas # entity.blaze.name=Blaze # entity.boat.name=Barco # +entity.bogged.name=Bogged # +entity.breeze.name=Brisa # +entity.breeze_wind_charge_projectile.name=Ataque de Vento # entity.cat.name=Gato # entity.cave_spider.name=Aranha da Caverna # entity.chicken.name=Galinha # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=Aldeão Inexperiente # entity.villager_v2.name=Aldeão # entity.vindicator.name=Vingador # entity.wandering_trader.name=Feirante # +entity.wind_charge_projectile.name=Ataque de Vento # entity.witch.name=Bruxa # entity.wither.name=Wither # entity.wither_skeleton.name=Esqueleto Wither # @@ -3009,6 +3026,7 @@ feature.ruins=Ruínas no Oceano # feature.pillager_outpost=Posto de Saqueador # feature.bastion_remnant=Resto do Bastião # feature.ruined_portal=Portal Arruinado # +feature.trial_chambers=Câmaras da Provação # feed.like=Gostar # feed.manage_feed=Gerir feed # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=Move :tip_left_stick: para te movimentares # gameTip.flying.mouse=Toca duas vezes em :_input_key.jump: para voar # gameTip.flying.touch=Salta duas vezes para voar # +gameTip.flyDown.mouse=Prime :_input_key.sneak: para voar para baixo # +gameTip.flyUp.mouse=Prime :_input_key.jump: para voar para cima # + +gameTip.stopFlying.mouse=Prime duas vezes :_input_key.jump: para parar de voar # +gameTip.stopFlying.touch=Prime duas vezes voar para baixo para parar de voar # + gameTip.jump.mouse=Salta com :_input_key.jump: # +gameTip.swim.mouse=Mantém premido :_input_key.jump: para nadar para cima # -gameTip.hotbar.mouse=Usa a roda do rato para selecionar # na barra principal para segurar # -gameTip.hotbar.touch=Toca em # na barra principal para segurar # -gameTip.hotbar.controller=Prime # na barra principal para segurar # +gameTip.hotbar.selection.mouse=Usa a roda do rato ou prime %s para segurar o item ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=Toca no item no acesso rápido para o segurar # gameTip.breakBlock.mouse=Mantém premido o botão esquerdo para partires os blocos # gameTip.breakBlock.touch=Mantém premido para partir blocos # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=Estás a agachar-te! Quando estás assim, não cais de berma gameTip.sneak.touch=Estás a agachar-te, pelo que não cais de bermas # gameTip.sneak.controller=Estás a agachar-te, pelo que não cais de bermas # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=Coloca a mesa de trabalho. Segura-a e clica para colocar # gameTip.placeCraftingTable.touch=Coloca a mesa de trabalho tocando no chão # gameTip.placeCraftingTable.controller=Coloca a mesa de trabalho. Segura-a e depois toca no chão # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=Obrigado por partilhares a tua avaliação! # gui.submitFeedback.failure.status.unprocessableEntity=Não possuis o item sobre o qual queres enviar um comentário. (Código de Erro: %d) # gui.submitFeedback.failure.status.tooManyRequests=Oh, não! Enviaste demasiadas avaliações. Tenta novamente mais tarde. (Código de Erro: %d) # gui.submitFeedback.failure.status.other=Não é possível enviar a tua avaliação neste momento. Tenta novamente mais tarde. (Código de Erro: %d) # +gui.togglable_slot=Prime para desativar o espaço # gui.playOffline=Jogar Offline # gui.signIn=Iniciar Sessão # gui.genericNetworkError=Algo correu mal. Experimenta verificar a ligação à Internet. # @@ -3314,8 +3339,8 @@ howtoplay.armor.header.2=Escudo # howtoplay.armor.text.5.keyboard=O Escudo vai bloquear os danos recebidos. O Escudo pode ser equipado no compartimento adicional e na barra de itens. Prime :_input_key.sneak: sem soltar para bloquear oses com o Escudo. # howtoplay.armor.text.5.gamepad=O Escudo vai bloquear os danos recebidos. O Escudo pode ser equipado no compartimento adicional e na barra de itens. Prime sem soltar o botão :_input_key.sneak: ou clica em :_gamepad_stick_right: para alternares o bloqueio com o Escudo. # howtoplay.armor.text.5a.touch=O Escudo bloqueia todo o tipo de danos que pudesses sofrer, incluindo explosões de Creepers! Podes equipá-lo na vaga adicional ou na barra principal. # -howtoplay.armor.text.5b.touch=Quando utilizas o sistema de controlos \"D-Pad e tocar para interagir\", prime :touch_sneak: para ativar ou desativar o bloqueio com o escudo. # -howtoplay.armor.text.5c.touch=Quando utilizas o sistema de controlos \"Joystick\", prime :tip_virtual_button_sneak: para ativar ou desativar o bloqueio com o escudo. # +howtoplay.armor.text.5b.touch=Quando utilizas o sistema de controlos ''D-Pad e tocar para interagir'', prime :touch_sneak: para ativar ou desativar o bloqueio com o escudo. # +howtoplay.armor.text.5c.touch=Quando utilizas o sistema de controlos ''Joystick'', prime :tip_virtual_button_sneak: para ativar ou desativar o bloqueio com o escudo. # howtoplay.armor.text.5.rift_controller=O Escudo vai bloquear os danos recebidos. O Escudo pode ser equipado no compartimento adicional e na barra de itens. Prime sem soltar o botão :_input_key.sneak: ou clica em :rift_X: para alternares o bloqueio com o Escudo. # howtoplay.armor.text.5.windowsmr_controller=O Escudo vai bloquear os danos recebidos. O Escudo pode ser equipado no compartimento adicional e na barra de itens. Prime sem soltar o botão :_input_key.sneak: ou clica em :windowsmr_right_stick: para alternares o bloqueio com o Escudo. # howtoplay.armor.text.6=O Escudo pode bloquear uma explosão de um Creeper! # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=Explora um mundo de possibilidades com as Minecoins: howtoplay.minecoins.text.2=Depois de as obteres, as tuas Minecoins ficam associadas à tua conta Microsoft, para também poderes aceder às tuas Minecoins e às tuas compras noutros dispositivos compatíveis! # howtoplay.minecoins.button.text.1=Obter moedas # howtoplay.minecoins.header.1=Renúncia de responsabilidade # -howtoplay.minecoins.text.3=*As Minecoins requerem uma versão do Minecraft: Bedrock Edition com o Marketplace do Minecraft. As Minecoins não são compatíveis com a versão para a PlayStation da Sony. Para mais informações sobre a compatibilidade, visita minecraft.net/minecoins  # +howtoplay.minecoins.text.3=*As Minecoins requerem uma versão do Minecraft: Bedrock Edition com o Marketplace do Minecraft. As Minecoins não são compatíveis com a versão para a PlayStation® da Sony. Para mais informações sobre a compatibilidade, visita minecraft.net/minecoins  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=Mineração # @@ -4145,7 +4170,7 @@ level.editor.export.failed=O projeto não foi exportado # level.editor.import.failed=A importação do projeto falhou # level.editor.import.failed.incompatibleEdition=Falha ao importar projeto: formato de ficheiro não suportado # -inbox.invite.title=Convite de Realms # +inbox.invite.title=Convite de Realm para # invite.clear=Limpar Seleção # invite.send=Enviar %d Convites # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=Talhado Invertido Vermelho à Esquerda # item.banner.diagonal_up_right.silver=Talhado Invertido Cinzento-Claro à Esquerda # item.banner.diagonal_up_right.white=Talhado Invertido Branco à Esquerda # item.banner.diagonal_up_right.yellow=Talhado Invertido Amarelo à Esquerda # +item.banner.flow.black=Fluxo Preto # +item.banner.flow.blue=Fluxo Azul # +item.banner.flow.brown=Fluxo Castanho # +item.banner.flow.cyan=Fluxo Ciano # +item.banner.flow.gray=Fluxo Cinzento # +item.banner.flow.green=Fluxo Verde # +item.banner.flow.lightBlue=Fluxo Azul-Claro # +item.banner.flow.lime=Fluxo Verde-Lima # +item.banner.flow.magenta=Fluxo Magenta # +item.banner.flow.orange=Fluxo Cor de Laranja # +item.banner.flow.pink=Fluxo Rosa # +item.banner.flow.purple=Fluxo Roxo # +item.banner.flow.red=Fluxo Vermelho # +item.banner.flow.silver=Fluxo Cinzento-Claro # +item.banner.flow.white=Fluxo Branco # +item.banner.flow.yellow=Fluxo Amarelo # item.banner.flower.black=Divisa de Flor Negra # item.banner.flower.blue=Divisa de Flor Azul # item.banner.flower.brown=Divisa de Flor Castanha # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=Gradiente de Base Branca # item.banner.gradient_up.yellow=Gradiente de Base Amarela # item.banner.gray.name=Estandarte Cinzento # item.banner.green.name=Estandarte Verde # +item.banner.guster.black=Lufada Preta # +item.banner.guster.blue=Lufada Azul # +item.banner.guster.brown=Lufada Castanha # +item.banner.guster.cyan=Lufada Ciano # +item.banner.guster.gray=Lufada Cinzenta # +item.banner.guster.green=Lufada Verde # +item.banner.guster.lightBlue=Lufada Azul-Clara # +item.banner.guster.lime=Lufada Verde-Lima # +item.banner.guster.magenta=Lufada Magenta # +item.banner.guster.orange=Lufada Cor de Laranja # +item.banner.guster.pink=Lufada Rosa # +item.banner.guster.purple=Lufada Roxa # +item.banner.guster.red=Lufada Vermelha # +item.banner.guster.silver=Lufada Cinzento-Clara # +item.banner.guster.white=Lufada Branca # +item.banner.guster.yellow=Lufada Amarela # item.banner.half_horizontal.black=Cortado Negro # item.banner.half_horizontal.blue=Cortado Azul # item.banner.half_horizontal.brown=Cortado Castanho # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=Barco de Acácia # item.boat.big_oak.name=Barco de Carvalho Escuro # item.bone.name=Osso # item.book.name=Livro # +item.breeze_rod.name=Varinha de Brisa # item.chainmail_boots.name=Botas de Malha # item.leather_boots.name=Botas de Cabedal # item.diamond_boots.name=Botas de Diamante # @@ -4991,6 +5049,7 @@ item.comparator.name=Comparador de Redstone # item.compass.name=Bússola # item.lodestonecompass.name=Bússola de Magnetita # item.cookie.name=Bolacha # +item.copper_door.name=Porta de Cobre # item.crossbow.name=Besta # item.diamond.name=Diamante # item.repeater.name=Repetidor de Redstone # @@ -5038,6 +5097,7 @@ tile.end_rod.name=Varinha do Fim # item.ender_eye.name=Olho de Ender # item.ender_pearl.name=Pérola de Ender # item.experience_bottle.name=Frasco de Encantamentos # +item.exposed_copper_door.name=Porta de Cobre Exposto # item.feather.name=Pena # item.fermented_spider_eye.name=Olho de Aranha Fermentado # item.fireball.name=Carga de Fogo # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=Perneiras de Ouro # item.iron_leggings.name=Perneiras de Ferro # item.nautilus_shell.name=Concha de Nautilóide # item.heart_of_the_sea.name=Coração do Mar # +item.mace.name=Maça # item.magma_cream.name=Creme de Magma # item.map.name=Mapa # item.map.exploration.mansion.name=Mapa de Explorador da Floresta # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=Mapa da Aldeia na Savana # item.map.exploration.village_desert.name=Mapa da Aldeia do Deserto # item.map.exploration.jungle_temple.name=Mapa de Explorador da Selva # item.map.exploration.swamp_hut.name=Mapa de Explorador do Pântano # +item.map.exploration.trial_chambers.name=Mapa de Explorador de Avaliação # item.melon.name=Melancia # item.milk.name=Leite # item.minecart.name=Vagoneta # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=Vagoneta com Baú # item.command_block_minecart.name=Vagoneta com Bloco de Comando # item.minecartFurnace.name=Vagoneta com Fornalha # item.hopper_minecart.name=Vagoneta com Funil # +item.ominous_bottle.name=Garrafa Sinistra # +item.ominous_trial_key.name=Chave de Avaliação Sinistra # +item.oxidized_copper_door.name=Porta de Cobre Oxidado # item.tnt_minecart.name=Vagoneta com TNT # item.pitcher_pod.name=Vagem de Planta Carnívora # item.torchflower_seeds.name=Sementes de rosa-de-porcelana # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=Ovo de Geração de Agente # item.spawn_egg.entity.armadillo.name=Ovo de Geração de Tatu # item.spawn_egg.entity.axolotl.name=Ovo de Geração de Axolote # item.spawn_egg.entity.bee.name=Ovo de Geração de Abelha # +item.spawn_egg.entity.bogged.name=Ovo de Geração de Bogged # +item.spawn_egg.entity.breeze.name=Ovo de Geração de Brisa # item.spawn_egg.entity.hoglin.name=Ovo de Geração de Hoglin # item.spawn_egg.entity.cat.name=Ovo de Geração de Gato # item.spawn_egg.entity.chicken.name=Ovo de Geração de Galinha # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 - enfermaria # item.record_pigstep.desc=Lena Raine - Pigstep # item.record_otherside.desc=Lena Raine - otherside # item.record_relic.desc=Aaron Cherof - Relic # +item.record_creator.desc=Lena Raine - Creator # +item.record_creator_music_box.desc=Lena Raine - Creator (Music Box) # +item.record_precipice.desc=Aaron Cherof - Precipice # item.redstone.name=Pó de Redstone # item.reeds.name=Canas-de-açúcar # item.kelp.name=Algas # @@ -5324,6 +5394,12 @@ item.iron_sword.name=Espada de Ferro # item.stone_sword.name=Espada de Pedra # item.wooden_sword.name=Espada de Madeira # item.unbreakable=Inquebrável # +item.waxed_copper_door.name=Porta de Cobre Encerado # +item.waxed_exposed_copper_door.name=Porta de Cobre Exposto Encerado # +item.waxed_oxidized_copper_door.name=Porta de Cobre Oxidado Encerado # +item.waxed_weathered_copper_door.name=Porta de Cobre Desgastado Encerado # +item.weathered_copper_door.name=Porta de Cobre Desgastado # +item.wind_charge.name=Ataque de Vento # item.wheat.name=Trigo # item.wolf_armor.name=Armadura para Lobo # item.writable_book.name=Livro e Pena # @@ -5331,6 +5407,7 @@ item.written_book.name=Livro Escrito # item.glowstone_dust.name=Pó de Pedra Luminosa # item.shulker_shell.name=Carapaça de Shulker # item.totem.name=Totem de Ressuscitação # +item.trial_key.name=Chave da Provação # item.turtle_helmet.name=Carapaça de Tartaruga # item.turtle_shell_piece.name=Carapaça de Tartaruga # item.phantom_membrane.name=Membrana de Fantasma # @@ -5338,8 +5415,10 @@ item.sweet_berries.name=Frutos Vermelhos Doces # item.suspicious_stew.name=Guisado Suspeito # item.banner_pattern.bricks=Padrão de Alvenaria # item.banner_pattern.creeper=Divisa de Creeper # +item.banner_pattern.flow=Fluxo # item.banner_pattern.flower=Divisa de Flor # item.banner_pattern.globe=Globo # +item.banner_pattern.guster=Lufada # item.banner_pattern.name=Padrão de Estandarte # item.banner_pattern.piglin=Focinho # item.banner_pattern.skull=Divisa de Caveira # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=Padrões de Estandarte # itemGroup.name.netherWartBlock=Fungos do Nether # itemGroup.name.candles=Velas # itemGroup.name.goatHorn=Chifres de Cabra # +itemGroup.name.compounds=Compostos # +itemGroup.name.products=Produtos # jigsaw.title.target_pool=Piscina de destino: # jigsaw.title.name=Nome: # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=DEFINIÇÕES DE SALA DE AULA # menu.serverStore=Loja %s # menu.serverGenericName=Servidor # menu.play=Jogar # +menu.profile=Perfil # menu.playdemo=Jogar Mundo Demo # menu.playOnRealms=Jogar no Realm # menu.quickplay=Jogo Rápido # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=Escolhe a Tua Personagem Inicial # menu.character_cast.preview_title=Conhece o Elenco! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Servidor Realms ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=Serv. # merchant.deprecated=Troca alguma coisa para desbloquear! # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=Jogabilidade com Teclado Completo # options.fullKeyboardLayout=Esquema de Teclado Completo # options.improvedInputResponsePlaceholder=Resposta de Entrada Melhorada # options.improvedInputResponsePlaceholder.tooltip=Reduz o atraso entre a tua entrada e o que vês no ecrã. Esta definição pode utilizar mais energia da bateria. # +options.dynamicTexturesToggle=Remover Limite de Texturas # +options.dynamicTexturesToggle.tooltip=Para desligar esta opção, tens de reiniciar o jogo. Isto pode causar instabilidade quando utiliza vários suplementos ou Packs de Recursos com muitas texturas. # +options.dynamicTextures.popUp=Se ativares a opção para Remover o Limite de Texturas, tens de reiniciar o jogo para o desativar. # +options.dynamicTextures.popUp.title=Tens a certeza? # options.fullscreen=Ecrã inteiro # options.gamepadcursorsensitivity=Sensibilidade do Cursor do Comando # options.gamertag=Gamertag: # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=Ligar # options.creator.debuggerListen=Ouvir # options.creator.debuggerHost=Anfitrião # options.creator.debuggerPort=Porta # +options.creator.watchdogHeading=Definições do Watchdog de Script # +options.creator.watchdogSlowWarning=Avisos de Script Lento # +options.creator.watchdogSlowThreshold=A média excede # +options.creator.watchdogSlowFormat=%s milissegundos # +options.creator.watchdogSlowFormatDefault=%s milissegundos (predefinição) # +options.creator.watchdogSpikeWarning=Avisos de Pico de Scripts # +options.creator.watchdogSpikeThreshold=Pico excede # +options.creator.watchdogSpikeFormat=%s milissegundos # +options.creator.watchdogSpikeFormatDefault=%s milissegundos (predefinição) # +options.creator.watchdogHangThreshold=Interromper após # +options.creator.watchdogHangFormat=%s segundos # +options.creator.watchdogHangFormatDefault=%s segundos (predefinição) # options.vr_classic_box_selection=Seleção do Destaque # options.hidegamepadcursor=Ocultar Cursor do Comando # options.hidegui=Ocultar GUI # @@ -6538,7 +6637,7 @@ options.touchscreen=Modo de Ecrã Táctil # options.uiprofile=Perfil de IU # options.uiprofile.classic=Clássico # options.uiprofile.pocket=Pocket # -options.betaNewDeathScreenToggle=Novo ecrã \"Morreste\" (Experimental) # +options.betaNewDeathScreenToggle=Novo ecrã ''Morreste'' (Experimental) # options.betaNewDeathScreenToggle.disabled=Não podes alterar esta definição enquanto estás a jogar num mundo # options.usetouchpad=Controlos Divididos # options.viewSubscriptions=Subscrições # @@ -6662,7 +6761,7 @@ options.makeBackup=Fazer uma cópia de segurança do meu mundo # options.managePrivacy=Para gerires as definições de privacidade, visita https://account.xbox.com/Settings em qualquer navegador. ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Desassociar Conta Microsoft # options.unlink_msa.confirm.title=Desassociar Conta Microsoft? # -options.unlink_msa.confirm.warning=ATENÇÃO: Vais deixar de poder armazenar a progressão ou as compras realizadas no Sistema "PlayStation 4" na tua conta %s depois de realizares a desassociação. # +options.unlink_msa.confirm.warning=ATENÇÃO: Vais deixar de poder guardar progresso ou compras feitos na PlayStation®4 na tua conta %s depois de realizar a desassociação. #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=Desvincular a tua Conta Microsoft a partir deste jogo vai afetar todos os jogos Minecraft nesta plataforma que utilizam esta Conta Microsoft. # options.unlink_msa.confirm.checkbox1=Vou deixar de ter acesso a todos os conteúdos da Loja no jogo quando jogar noutras plataformas. # options.unlink_msa.confirm.checkbox2=Vou deixar de poder jogar jogos de outras plataformas com os meus amigos noutras plataformas. # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=Carrega um mundo para personalizar os con hudScreen.controlCustomization.tooltip.notouch=Utiliza um dispositivo tátil para personalizar os controlos # hudScreen.controlCustomization.tooltip.alreadycustomizing=Já existe um ecrã de personalização de controlos táteis aberto # hudScreen.controlCustomization.tooltip.alive=O jogador tem de estar vivo para personalizar os controlos. # +hudScreen.daysPlayed=Dias jogados: %s # +hudScreen.daysPlayed.overflow=Demasiados para contar! # playscreen.fileSize.MB=MB # playscreen.fileSize.GB=GB # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=Poção de Cura Com Efeito Prolongado # potion.heal.linger.name=Poção de Cura Persistente # potion.healthBoost=Bónus de Vida # potion.hunger=Fome # +potion.infested.linger.name=Poção Persistente de Infestação # +potion.infested.name=Poção de Infestação # +potion.infested.splash.name=Poção Lançável de Infestação # +potion.infested=Infestado # potion.invisibility=Invisibilidade # potion.invisibility.name=Poção de Invisibilidade # potion.invisibility.splash.name=Poção de Invisibilidade Com Efeito Prolongado # @@ -7067,6 +7172,10 @@ potion.nightVision=Visão Noturna # potion.nightVision.name=Poção de Visão Noturna # potion.nightVision.splash.name=Poção de Visão Noturna Com Efeito Prolongado # potion.nightVision.linger.name=Poção de Visão Noturna Persistente # +potion.oozing.linger.name=Poção Persistente Gotejante # +potion.oozing.name=Poção Gotejante # +potion.oozing.splash.name=Poção Lançável Gotejante # +potion.oozing=Gotejante # potion.poison=Veneno # potion.poison.name=Poção de Veneno # potion.poison.splash.name=Poção de Veneno Com Efeito Prolongado # @@ -7108,6 +7217,14 @@ potion.weakness=Fraqueza # potion.weakness.name=Poção de Fraqueza # potion.weakness.splash.name=Poção de Fraqueza Com Efeito Prolongado # potion.weakness.linger.name=Poção de Fraqueza Persistente # +potion.weaving.linger.name=Poção Persistente de Tecelagem # +potion.weaving.name=Poção de Tecelagem # +potion.weaving.splash.name=Poção Lançável de Tecelagem # +potion.weaving=Tecelagem # +potion.windCharged.linger.name=Poção Persistente de Carregamento de Vento # +potion.windCharged.name=Poção de Carregamento de Vento # +potion.windCharged.splash.name=Poção Lançável de Carregamento de Vento # +potion.windCharged=Carregado de Vento # potion.wither=Wither # potion.wither.name=Poção de Decadência # potion.wither.splash.name=Poção de Decadência Com Efeito Prolongado # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=Este mundo não pode ser aberto devid progressScreen.message.forbiddenContent=Não tens um ou mais dos packs aplicados # progressScreen.message.loadingSplitScreenAppearances=A carregar aparências com ecrã dividido... # progressScreen.message.finishedLoadingSplitScreenAppearances=Aparências com ecrã dividido carregadas. # -progressScreen.message.modifiedWorldWarning=Este mundo pode não ter o mesmo aspeto ou comportar-se da mesma forma que os mundos não modificados e não podes obter conquistas. # +progressScreen.message.modifiedWorldWarning.1=Estás a jogar num mundo com Suplementos! Isto irá adicionar novas funcionalidades ao teu mundo Minecraft. # +progressScreen.message.modifiedWorldWarning.2=Não te fiques só por um! Podes carregar múltiplos Suplementos em simultâneo num só mundo. # +progressScreen.message.modifiedWorldWarning.3=Dica Avançada: Um Pack de Recursos pode alterar as texturas de diferentes blocos e entidades. # +progressScreen.message.modifiedWorldWarning.4=Dica Avançada: Um Pack de Comportamento pode alterar o funcionamento de diferentes itens, entidades e blocos. # +progressScreen.message.modifiedWorldWarning.5=Dica Avançada: Um Suplemento inclui um Pack de Comportamento e um Pack de Recursos. Certifica-te de que ambos os packs estão ativados para garantir que o Suplemento funciona! # +progressScreen.message.modifiedWorldWarning.6=Os Suplementos adicionam novos blocos, itens ou criaturas aos teus mundos. # +progressScreen.message.modifiedWorldWarning.7=Os mundos e os Suplementos são complexos! Embora alguns funcionem muito bem juntos, poderás obter resultados bizarros com outros. # +progressScreen.message.modifiedWorldWarning.8=Mais Suplementos significa mais diversão, mas o jogo poderá demorar mais tempo a ser carregado. # progressScreen.dialog.title.resourcePack=Transferir Pacotes de Recursos? # progressScreen.dialog.title.behaviorAndResourcePack=Transferir pacotes comportamentais e de recursos do mundo? # progressScreen.dialog.title.onlyBehavior=Transferir pacotes comportamentais do mundo? # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=Atualizar mundo? # resourcePack.warning.add.body=Este mundo pode não ter o mesmo aspeto ou comportar-se da mesma forma que os mundos não modificados. Talvez queiras guardar uma cópia do teu mundo antes de continuar. # resourcePack.warning.add.button.cancel=Não adicionar o pack # resourcePack.warning.add.button.ok=Adicionar o pack na mesma # +resourcePack.warnings.contentKeyErrorBody=Ocorreu um problema ao carregar o pack %s. # +resourcePack.warnings.contentKeyErrorBodyMultiple=Ocorreu um problema ao carregar os packs %s. # +resourcePack.warnings.contentKeyErrorTitle=Erro! # resourcePack.warning.remove.title=Isto é perigoso! # resourcePack.warning.remove.body=Adicionar ou remover Packs depois de jogar num mundo pode danificar o mundo e fazer com que percas o que criaste. # resourcePack.warning.remove.button.cancel=Manter o pack # @@ -7420,9 +7547,9 @@ storageManager.sync_retailtopreview_worlds=Sincronizar Mundos da Versão Comerci storageManager.sync_retailtopreview_worlds_description=Procura mundos da versão comercial do Minecraft. Isto pode demorar algum tempo a terminar. # storageManager.sync_retailtopreview_worlds.conversion_description=Clica num mundo para o converter num mundo de pré-visualização jogável # -storageManager.sync_legacy_worlds.conversion_complete.content=Converteste o teu mundo. Agora podes encontrá-lo em \"todos os mundos\". # +storageManager.sync_legacy_worlds.conversion_complete.content=Converteste o teu mundo. Agora podes encontrá-lo em ''todos os mundos''. # storageManager.sync_legacy_worlds.conversion_complete.title=Boa! # -storageManager.sync_legacy_worlds.conversion_complete.confirm_button=Vai a \"todos os mundos\" # +storageManager.sync_legacy_worlds.conversion_complete.confirm_button=Vai a ''todos os mundos'' # storageManager.sync_legacy_worlds.conversion_complete.cancel_button=Fechar # storageManager.sync_legacy_worlds.fetch_complete.title=Boa! # @@ -7432,7 +7559,7 @@ storageManager.sync_retailtopreview_worlds.fetch_complete.title=Boa! # storageManager.sync_retailtopreview_worlds.fetch_complete.content=Encontrámos %s mundos comerciais da versão Comercial do Minecraft. # storageManager.sync_legacy_worlds.conversion_explanation.title=A converter o teu mundo # -storageManager.sync_legacy_worlds.conversion_explanation.content=Tens de converter \"%s\" para a versão mais recente do Minecraft para o tornar jogável. # +storageManager.sync_legacy_worlds.conversion_explanation.content=Tens de converter ''%s'' para a versão mais recente do Minecraft para o tornar jogável. # storageManager.sync_legacy_worlds.conversion_explanation.confirm_button=Converter # storageManager.sync_legacy_worlds.conversion_explanation.cancel_button=Cancelar # @@ -7557,7 +7684,9 @@ item.crimson_hanging_sign.name=Tabuleta Suspensa Carmesim # item.danger_pottery_sherd.name=Fragmento de Cerâmica de Perigo # item.dark_oak_hanging_sign.name=Tabuleta Suspensa de Carvalho Escuro # item.explorer_pottery_sherd.name=Fragmento de Cerâmica de Explorador # +item.flow_pottery_sherd.name=Fragmento de Cerâmica de Fluxo # item.friend_pottery_sherd.name=Fragmento de Cerâmica de Amigo # +item.guster_pottery_sherd.name=Fragmento de Cerâmica de Lufada # item.heart_pottery_sherd.name=Fragmento de Cerâmica de Coração # item.heartbreak_pottery_sherd.name=Fragmento de Cerâmica de Coração Partido # item.howl_pottery_sherd.name=Fragmento de Cerâmica de Uivo # @@ -7568,6 +7697,7 @@ item.mourner_pottery_sherd.name=Fragmento de Cerâmica de Luto # item.oak_hanging_sign.name=Tabuleta Suspensa de Carvalho # item.plenty_pottery_sherd.name=Fragmento de Cerâmica de Abundância # item.prize_pottery_sherd.name=Fragmento de Cerâmica de Prémio # +item.scrape_pottery_sherd.name=Fragmento de Cerâmica de Raspagem # item.sheaf_pottery_sherd.name=Fragmento de Cerâmica de Trigo # item.shelter_pottery_sherd.name=Fragmento de Cerâmica de Abrigo # item.skull_pottery_sherd.name=Fragmento de Cerâmica de Caveira # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=Escadas de Cerejeira # tile.cherry_trapdoor.name=Alçapão de Cerejeira # tile.cherry_wood.name=Madeira de Cerejeira # tile.chiseled_bookshelf.name=Estante Cinzelada # +tile.chiseled_tuff.name=Tufo Cinzelado # +tile.chiseled_tuff_bricks.name=Tijolos de Tufo Cinzelados # tile.decorated_pot.name=Vaso Decorado # tile.pink_petals.name=Pétalas Rosa # tile.stripped_bamboo_block.name=Bloco de Bambu às Riscas # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=Personalização de Armadura Vex # trim_pattern.ward.name=Personalização de Armadura de Guarda # trim_pattern.wayfinder.name=Personalização de Armadura do Indicador do Caminho # trim_pattern.wild.name=Personalização de Armadura Selvagem # +trim_pattern.bolt.name=Personalização de Armadura de Raio # +trim_pattern.flow.name=Personalização de Armadura de Fluxo # upgrade.netherite_upgrade.name=Melhoria de Netherite # storageManager.mainSizeLabel=%s - 1 Item # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=Eliminar Modelo de Mundo? # selectTemplate.delete=Eliminar # selectTemplate.myTemplates=Modelos do Meu Mundo # selectTemplate.realmsPlus=Modelos de Realms Plus Destacados # -selectTemplate.marketplacePass=Modelos de Marketplace Pass em Destaque #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=Conteúdo em Destaque do Marketplace Pass #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=Modelos Importados # selectTemplate.download=Transferir # selectTemplate.noTemplates=Não existem modelos de mundo neste dispositivo. # -selectTemplate.suggestedContent.title=Modelos Destacados no Marketplace # +selectTemplate.suggestedContent.title=Conteúdo em Destaque do Marketplace # selectTemplate.suggestedContent.button=Ver Mais Modelos # selectTemplate.createdBy=Criado por %s # selectTemplate.inventory=Os Meus Packs do Marketplace # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=Tivemos um problema de ligação. Volta atrás e store.loading.error.issues=Hmm, o Marketplace está com problemas. Tenta ligar-te mais tarde. # store.loading.error.internetDown=Não é possível detetar uma ligação à internet. # store.loading.error.account=Há um problema com a tua conta. Tenta novamente em breve e contacta o apoio ao cliente se continuar. # +store.loading.error.account.banned=Não podes usar o marketplace até a tua suspensão expirar. # store.giftPromo.day=%s do dia ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=Reclamado # @@ -8112,7 +8247,7 @@ store.realmsPlus.landing.beta=Beta # store.realmsPlus.landing.preview=Antevisão # store.realmsPlus.landing.info3.para1=Os Realms estão disponíveis gratuitamente no Minecraft %s para todos os subscritores de Realms! Este é um novo Realm que te dá a oportunidade de experimentar novas funcionalidades antes do seu lançamento. # -store.realmsPlus.landing.info3.para2=Com uma subscrição do Realm, podes criar um novo Realm %s através do botão \"Criar Novo\" no menu principal. Se ainda não tens uma subscrição do Realms, vai à versão completa do Minecraft para te inscreveres. # +store.realmsPlus.landing.info3.para2=Com uma subscrição do Realm, podes criar um novo Realm %s através do botão ''Criar Novo'' no menu principal. Se ainda não tens uma subscrição do Realms, vai à versão completa do Minecraft para te inscreveres. # store.realmsPlus.landing.info3.para3=Todos os ecrãs e funções do Realms estão disponíveis em %s, exceto a compra de uma nova subscrição ou a gestão de subscrições já existentes do Realms. # store.realmsPlus.landing.info3.para4=O teu Realm %s permanecerá ativo enquanto tiveres a subscrição paga do Realm à qual o Realm %s está vinculado. # @@ -8405,10 +8540,17 @@ store.mashup.count.skin=1 Skin # store.mashup.count.skins=%s Skins # store.mashup.count.texturePack=1 Pack de Texturas # store.mashup.count.texturePacks=%s Packs de Texturas #number of texture packs # -store.mashup.count.world=1 Mundo # +store.mashup.count.world=1 Mundo # store.mashup.count.worlds=%s Mundos #number of worlds # store.mashup.count.addonPack=1 Suplemento # store.mashup.count.addonPacks=%s Suplementos #number of addons # +store.mashup.count.mashup=Mash-Up # +store.mashup.hover.label.addonPack=Os Suplementos podem ser aplicados a qualquer mundo. # +store.mashup.hover.label.world=Um mapa do Minecraft feito à mão. # +store.mashup.hover.label.skin=Aplica um novo visual à tua personagem. # +store.mashup.hover.label.texturePack=Dá um novo visual ao teu mundo ou à interface do jogo. # +store.mashup.hover.label.mashup.lineOne=Uma combinação de diferentes tipos de conteúdo. # +store.mashup.hover.label.mashup.lineTwo=Este Mash-Up contém: # store.addon.activateAddonPack=Ativar Suplemento! # store.addon.newOrExistingTitle=Onde adicionar? # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=Quadro # tile.chest.name=Baú # tile.ender_chest.name=Baú de Ender # tile.jigsaw.name=Bloco Quebra-Cabeças # +tile.heavy_core.name=Núcleo Pesado # tile.honey_block.name=Bloco de Mel # tile.honeycomb_block.name=Bloco de Favo de mel # tile.lodestone.name=Magnetita # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=Laje de Pedra Negra Polida # tile.polished_blackstone_pressure_plate.name=Placa de Pressão de Pedra Negra Polida # tile.polished_blackstone_button.name=Botão de Pedra Negra Polida # tile.polished_blackstone_wall.name=Parede de Pedra Negra Polida # +tile.polished_tuff.name=Tufo Polido # +tile.polished_tuff_slab.name=Laje de Tufo Polido # +tile.polished_tuff_stairs.name=Escadas de Tufo Polido # +tile.polished_tuff_wall.name=Parede de Tufo Polido # tile.soul_campfire.name=Fogueira das Almas # tile.chiseled_nether_bricks.name=Tijolos do Nether Cinzelados # tile.cracked_nether_bricks.name=Tijolos do Nether Rachados # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=Terracota Amarela # tile.structure_block.name=Bloco de Estrutura # structure_block.waterlog_block=Blocos de Alagamento # tile.structure_void.name=Estrutura Nula # +tile.trial_spawner.name=Gerador da Provação # +tile.vault.name=Cofre # tile.wool.black.name=Lã Preta # tile.wool.blue.name=Lã Azul # tile.wool.brown.name=Lã Castanha # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=Samambaia # tile.tallgrass.grass.name=Relva # tile.tallgrass.name=Relva # tile.tallgrass.shrub.name=Arbusto # +tile.tuff_brick_slab.name=Laje de Tijolo de Tufo # +tile.tuff_brick_stairs.name=Escadas de Tijolo de Tufo # +tile.tuff_brick_wall.name=Parede de Tijolo de Tufo # +tile.tuff_bricks.name=Tijolos de Tufo # +tile.tuff_slab.name=Laje do Tufo # +tile.tuff_stairs.name=Escadas de Tufo # +tile.tuff_wall.name=Parede de Tufo # tile.seagrass.seagrass.name=Erva Marinha # tile.sea_pickle.name=Pepino-do-Mar # tile.turtle_egg.name=Ovo de Tartaruga Marinha # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=Tapete Vermelho # tile.carpet.silver.name=Tapete Cinzento-Claro # tile.carpet.white.name=Tapete Branco # tile.carpet.yellow.name=Tapete Amarelo # +tile.crafter.name=Criador # tile.crafting_table.name=Mesa de Trabalho # tile.glazedTerracotta.white.name=Terracota Vidrada Branca # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=Laje de Cobre Cortado Encerado # tile.waxed_exposed_cut_copper_slab.name=Laje de Cobre Cortado Exposto Encerado # tile.waxed_weathered_cut_copper_slab.name=Laje de Cobre Cortado Desgastado Encerado # tile.waxed_oxidized_cut_copper_slab.name=Laje de Cobre Cortada Oxidada Encerada # + +tile.chiseled_copper.name=Cobre Cinzelado # +tile.exposed_chiseled_copper.name=Cobre Cinzelado Exposto # +tile.oxidized_chiseled_copper.name=Cobre Cinzelado Oxidado # +tile.waxed_chiseled_copper.name=Cobre Cinzelado Encerado # +tile.waxed_exposed_chiseled_copper.name=Cobre Cinzelado Exposto Encerado # +tile.waxed_oxidized_chiseled_copper.name=Cobre Cinzelado Oxidado Encerado # +tile.waxed_weathered_chiseled_copper.name=Cobre Cinzelado Desgastado Encerado # +tile.weathered_chiseled_copper.name=Cobre Cinzelado Desgastado # + +tile.copper_bulb.name=Lâmpada de Cobre # +tile.exposed_copper_bulb.name=Lâmpada de Cobre Exposto # +tile.oxidized_copper_bulb.name=Lâmpada de Cobre Oxidado # +tile.waxed_copper_bulb.name=Lâmpada de Cobre Encerado # +tile.waxed_exposed_copper_bulb.name=Lâmpada de Cobre Exposto Encerado # +tile.waxed_oxidized_copper_bulb.name=Lâmpada de Cobre Oxidado Encerado # +tile.waxed_weathered_copper_bulb.name=Lâmpada de Cobre Desgastado Encerado # +tile.weathered_copper_bulb.name=Lâmpada de Cobre Desgastado # + +tile.copper_door.name=Porta de Cobre # +tile.exposed_copper_door.name=Porta de Cobre Exposto # +tile.oxidized_copper_door.name=Porta de Cobre Oxidado # +tile.waxed_copper_door.name=Porta de Cobre Encerado # +tile.waxed_exposed_copper_door.name=Porta de Cobre Exposto Encerado # +tile.waxed_oxidized_copper_door.name=Porta de Cobre Oxidado Encerado # +tile.waxed_weathered_copper_door.name=Porta de Cobre Desgastado Encerado # +tile.weathered_copper_door.name=Porta de Cobre Desgastado # + +tile.copper_grate.name=Grade de Cobre # +tile.exposed_copper_grate.name=Grade de Cobre Exposto # +tile.oxidized_copper_grate.name=Grade de Cobre Oxidado # +tile.waxed_copper_grate.name=Grade de Cobre Encerado # +tile.waxed_exposed_copper_grate.name=Grade de Cobre Exposto Encerado # +tile.waxed_oxidized_copper_grate.name=Grade de Cobre Oxidado Encerado # +tile.waxed_weathered_copper_grate.name=Grade de Cobre Desgastado Encerado # +tile.weathered_copper_grate.name=Grade de Cobre Desgastado # + +tile.copper_trapdoor.name=Alçapão de Cobre # +tile.exposed_copper_trapdoor.name=Alçapão de Cobre Exposto # +tile.oxidized_copper_trapdoor.name=Alçapão de Cobre Oxidado # +tile.waxed_copper_trapdoor.name=Alçapão de Cobre Encerado # +tile.waxed_exposed_copper_trapdoor.name=Alçapão de Cobre Exposto Encerado # +tile.waxed_oxidized_copper_trapdoor.name=Alçapão de Cobre Oxidado Encerado # +tile.waxed_weathered_copper_trapdoor.name=Alçapão de Cobre Desgastado Encerado # +tile.weathered_copper_trapdoor.name=Alçapão de Cobre Desgastado # + tile.raw_copper_block.name=Bloco de Cobre Bruto # tile.raw_iron_block.name=Bloco de Ferro Bruto # tile.raw_gold_block.name=Bloco de Ouro Bruto # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=Flecha de Sorte # tipped_arrow.effect.wither=Flecha de Decadência # tipped_arrow.effect.turtleMaster=Flecha da Tartaruga Mestre # tipped_arrow.effect.slowFalling=Flecha de Queda Lenta # +tipped_arrow.effect.infested=Flecha de Infestação # +tipped_arrow.effect.oozing=Flecha Gotejante # +tipped_arrow.effect.weaving=Flecha de Tecelagem # +tipped_arrow.effect.windCharged=Flecha de Carregamento de Vento # structure_block.title=Bloco de Estrutura # structure_block.structure_name=Nome da Estrutura # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=Algumas das tuas alterações mais rec worldError.worldFailedRecovery=Falha na Recuperação # worldError.worldFailedRecoveryText=Detetámos um mundo corrompido e não conseguimos recuperá-lo. # +writeThrottling.osDialog.body=Estima-se que a operação solicitada demore %d minutos. Não desligues o teu dispositivo entretanto. # +writeThrottling.osDialog.cancel=Cancelar Operação # +writeThrottling.osDialog.confirm=Avançar # +writeThrottling.progressBar.title=A Preparar Dados # +writeThrottling.progressBar.body=A preparar os teus ficheiros... # + userData.recovered.title=Guardar Dados Recuperados # userData.recovered.text=Definições de utilizador corrompido recuperadas com êxito. # userData.recovered.warning=Algumas das tuas alterações mais recentes podem ter sido perdidas durante a recuperação. # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=Mensagem do Chat # xbox.report.area.skin=Skin de jogador # xbox.report.area.gameplay=Jogo # xbox.report.area.ingame=Criações no jogo # -xbox.report.area.other=Outro # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=Ciberbullying # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=Infelizmente, não conseguimos encontrar u gathering.connect.title=A ligar... # gathering.info.qr.title.onlineService=Saber Mais # gathering.info.qr.body.onlineService.nso=Precisas de uma adesão do Nintendo Switch Online para participar num evento no Minecraft. # -gathering.info.qr.body.onlineService.psn=Precisas de ter sessão iniciada no \"PlayStation Plus\" para participares num evento no Minecraft. # +gathering.info.qr.body.onlineService.psn=Deves ter sessão iniciada no PlayStation®Plus para participar num evento no Minecraft. #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=Precisas de ter a sessão iniciada para participar num evento no Minecraft. # gathering.info.qr.title.childAccount=Jogo Online Não Permitido # gathering.info.qr.body.childAccount=Os teus controlos parentais atuais limitam o teu jogo online. # diff --git a/resource_pack/texts/ru_RU.lang b/resource_pack/texts/ru_RU.lang index 785bbece6..849dc00ba 100644 --- a/resource_pack/texts/ru_RU.lang +++ b/resource_pack/texts/ru_RU.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=Выбрать ключ # accessibility.start.feedback=Ссылка для отправки отзыва через веб-сайт # accessibility.start.new=Создать # -accessibility.start.profile=Выбрать профиль # accessibility.start.skinPicker=Выбрать скин # accessibility.store.tag=Тег # @@ -1094,10 +1093,6 @@ commands.me.description=Отображает сообщение о вас. # commands.message.display.incoming=%1$s шепчет вам: «%2$s» # commands.message.display.outgoing=Вы шепчете игроку %1$s: «%2$s» # commands.message.sameTarget=Нельзя отправить личное сообщение самому себе. # -commands.message.warn=§4Вы получили предупреждение. Другие игроки могут посчитать ваше поведение оскорбительным. Уважайте тех, с кем играете. # -commands.message.toastWarn=В Minecraft играет огромное множество людей! Пожалуйста, соблюдайте правила сообщества. # -commands.warn.invalidWarningLevel=Недопустимый порог предупреждений. # -commands.warn.playerDoesNotExist=Не удалось найти игрока. Укажите существующего игрока. # commands.mobevent.description=Контролирует, какие события мобов разрешено запускать. # commands.mobevent.eventsEnabledSetToTrue=События мобов теперь включены. Отдельные события, для которых задано значение false, не будут запускаться. # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=- %s: %s с %d %d %d по %d %d %d # commands.volumearea.entry.withoutIdentifier=- %s: с %d %d %d по %d %d %d # commands.volumearea.noneExist.currentDimension=В текущем измерении нет существующих томов. # commands.volumearea.inUse=Используемые тома: %1$d/%2$d. # -commands.warn.description=Отправляет игроку предупреждение. # commands.weather.clear=Смена погоды на ясную # commands.weather.description=Задает погоду. # commands.weather.disabled=В этом мире не включена смена погоды. # @@ -1572,6 +1566,7 @@ container.beacon=Маяк # container.brewing=Варочная стойка # container.chest=Сундук # container.chestDouble=Большой сундук # +container.crafter=Сборочный автомат # container.crafting=Создание # container.creative=Выбор предмета # container.dispenser=Раздатчик # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=Пещеры и утесы # createWorldScreen.cavesandcliffsDescription=Исследуйте новое разнообразное генерирование пещер # createWorldScreen.spectatorMode=Режим зрителя # createWorldScreen.spectatorModeDescription=Попробуйте ранние версии режима зрителя # -createWorldScreen.experimentalCameras=Экспериментальные камеры # -createWorldScreen.experimentalCamerasDescription=Содержит предустановленные варианты камеры (команды, связанные с камерой, больше не экспериментальные) # createWorldScreen.recipeUnlocking=Разблокировка рецепта # createWorldScreen.recipeUnlockingDescription=Включить разблокировку рецепта # createWorldScreen.experimentalholiday=Возможности создателя праздника # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=Создается новый мир... # createWorldScreen.progress.realms=Выполняется сброс вашего Realm... # createWorldScreen.seed.desc=Введите ключ, чтобы сгенерировать этот же рельеф еще раз. Оставьте поле пустым, чтобы сгенерировать случайный мир. # createWorldScreen.showCoordinates=Показать координаты # +createWorldScreen.showDaysPlayed=Показать количество прошедших дней # createWorldScreen.worldType=Тип мира # createWorldScreen.randomtickspeed=Случайная скорость такта # createWorldScreen.randomtickspeed.reset=Сбросить случайную скорость такта # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=Удалить проект # createWorldScreen.editor.projectOptionsLabel=Настройки проекта # createWorldScreen.editor.delete.confirm=Удалить проект без возможности восстановления? # createWorldScreen.editor.deleteWarningFormat="%s" — действительно удалить? Проект будет потерян навсегда! # +createWorldScreen.eduCloud.about.body=Файл с именем «%1$s»%2$sПоследнее обновление: %3$s%4$s Чтобы загрузить его, нажмите кнопку «OK», затем «Загрузить».%5$s # +createWorldScreen.eduCloud.about.title=Об облачном хранении файла мира # createWorldScreen.eduCloud.delete.confirm=Удалить локальный мир? # createWorldScreen.eduCloud.deleteWarningFormat=Вы действительно хотите удалить «%1$s» с этого устройства?%2$sВерсия «%3$s» в облачном хранилище не будет затронута и вы сможете синхронизировать ее позже. # createWorldScreen.experimentalDeferredTechnicalPreview=Отображение характеристик дракона для авторов # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Магазин Windows # realmsSettingsScreen.xboxOneStoreDisplayName=Магазин Xbox # realmsSettingsScreen.amazonStoreDisplayName=Amazon Appstore # realmsSettingsScreen.oculusStoreDisplayName=Oculus Store # -realmsSettingsScreen.berwickStoreDisplayName=«PlayStation Store» # -realmsSettingsScreen.SonyStoreDisplayName=«PlayStation Store» #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=неизвестный магазин # realmsSettingsScreen.extendingRealm=Продление действия Realm... # realmsSettingsScreen.offerError.title=Ожидание обработки покупки # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=Вы можете синхро xbl.syncIAP.confirmSync.prompt.yes=Да, синхронизировать мои покупки # xbl.marketplace.account.error.body.nobutton=В вашей учетной записи произошла ошибка. Вы не сможете пользоваться Рынком, пока мы ее не исправим. Если ошибка не будет устранена в течение нескольких дней, обратитесь в службу поддержки. # -xbl.marketplace.account.banned.body.nobutton=Вы не можете пользоваться рынком до истечения срока приостановки учетной записи. # playfab.account.banned.temporary=приостановлен # playfab.account.banned.permanent=заблокирован # @@ -2487,6 +2482,14 @@ date.daysAbbreviated1Char=%sдн ### It needs to be abbreviated with no more th date.hoursAbbreviated1Char=%s ч ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%s м ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%s с ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s д. # +date.hoursPlural=%s ч. # +date.minutesPlural=%s мин. # +date.secondsPlural=%s сек. # +date.daySingular=%s д. # +date.hourSingular=%s ч. # +date.minuteSingular=%s мин. # +date.secondSingular=%s сек. # date.timeLeft=Осталось: %s # dayOneExperience.carousel.title=Добро пожаловать в новый Minecraft! # @@ -2532,7 +2535,7 @@ death.attack.cactus.player=%1$s натыкается на кактус, прес death.attack.drown=%1$s утонул(а) # death.attack.drown.player=%1$s утонул(а), преследователь: %2$s # death.attack.explosion=%1$s взорвался(лась) # -death.attack.explosion.by.bed=%1$s был(а) убит(а) [Intentional Game Design] # +death.attack.explosion.by.bed=%1$s был(а) убит(а) [Преднамеренным гейм-дизайном] # death.attack.explosion.player=%1$s был(а) взорван(а), убийца: %2$s # death.attack.fall=%1$s ударился(лась) о землю слишком сильно # death.attack.fallingBlock=%1$s попадает под падающий блок # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=РАЗМЕСТИТЬ # edu.worlds_screen.settings=НАСТРОЙКИ # edu.worlds_screen.download=СКАЧАТЬ ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=УПРАВЛЕНИЕ # +edu.worlds_screen.about=СВЕДЕНИЯ # edu.worlds_screen.back=НАЗАД # edu.worlds_screen.copy=КОПИРОВАТЬ # edu.worlds_screen.export=ЭКСПОРТ # @@ -2791,7 +2795,13 @@ edu.templates.empty_banner=Вы можете скачать готовые ша edu.pause.multiplayer.disabled=Игра по сети недоступна для этого урока. # effect.badOmen=Дурное знамение # +effect.infested=Заражение # +effect.oozing=Слизь # +effect.raid_omen=Знамение налета # +effect.trial_omen=Испытание знамением # effect.villageHero=Герой деревни # +effect.weaving=Ткачество # +effect.wind_charged=Ветровой заряд # enchantment.arrowDamage=Мощь # enchantment.arrowFire=Воспламенение # @@ -2810,6 +2820,9 @@ enchantment.durability=Неразрушимость # enchantment.fire=Облик огня # enchantment.fishingSpeed=Приманка # enchantment.frostwalker=Морозная поступь # +enchantment.heavy_weapon.breach=Нарушение # +enchantment.heavy_weapon.density=Плотность # +enchantment.heavy_weapon.windburst=Порыв ветра # enchantment.knockback=Отбрасывание # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=Летучая мышь # entity.bee.name=Пчела # entity.blaze.name=Ифрит # entity.boat.name=Лодка # +entity.bogged.name=Увязнувший # +entity.breeze.name=Бриз # +entity.breeze_wind_charge_projectile.name=Заряд ветра # entity.cat.name=Кот # entity.cave_spider.name=Пещерный паук # entity.chicken.name=Курица # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=Селянин-неумеха # entity.villager_v2.name=Селянин # entity.vindicator.name=Поборник # entity.wandering_trader.name=Бродячий торговец # +entity.wind_charge_projectile.name=Заряд ветра # entity.witch.name=Ведьма # entity.wither.name=Иссушитель # entity.wither_skeleton.name=Скелет-иссушитель # @@ -3009,6 +3026,7 @@ feature.ruins=Подводные руины # feature.pillager_outpost=Аванпост мародеров # feature.bastion_remnant=Остаток бастиона # feature.ruined_portal=Разрушенный портал # +feature.trial_chambers=Комнаты испытаний # feed.like=Нравится # feed.manage_feed=Управление веб-каналом # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=Используйте :tip_left_stick: для gameTip.flying.mouse=Чтобы взлететь, дважды коснитесь :_input_key.jump: # gameTip.flying.touch=Чтобы взлететь, дважды коснитесь кнопки для прыжка # +gameTip.flyDown.mouse=Нажмите :_input_key.sneak:, чтобы опуститься # +gameTip.flyUp.mouse=Нажмите :_input_key.jump:, чтобы подняться # + +gameTip.stopFlying.mouse=Дважды коснитесь :_input_key.jump:, чтобы приземлиться # +gameTip.stopFlying.touch=Дважды коснитесь кнопки «Опуститься», чтобы приземлиться # + gameTip.jump.mouse=Кнопка для прыжка — :_input_key.jump: # +gameTip.swim.mouse=Нажмите и удерживайте :_input_key.jump:, чтобы плыть вверх # -gameTip.hotbar.mouse=Прокрутите колесо мыши для выбора # в панели быстрого доступа, чтобы взять в руку # -gameTip.hotbar.touch=Нажмите # в панели быстрого доступа, чтобы взять в руку # -gameTip.hotbar.controller=Нажмите # в панели быстрого доступа, чтобы взять в руку # +gameTip.hotbar.selection.mouse=Прокрутите колесо мыши или нажмите %s, чтобы взять предмет ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=Нажмите на предмет в панели быстрого доступа, чтобы взять его в руку # gameTip.breakBlock.mouse=Удерживайте левую кнопку мыши, чтобы разрушить блок # gameTip.breakBlock.touch=Коснитесь и удерживайте, чтобы разбить блоки # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=Вы научились красться! Пока вы кр gameTip.sneak.touch=Пока вы крадетесь, вы ни за что не упадете с высоты и не свалитесь в лаву # gameTip.sneak.controller=Пока вы крадетесь, вы ни за что не упадете с высоты и не свалитесь в лаву # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=Выберите верстак и щелкните мышью по месту, куда хотите его поставить # gameTip.placeCraftingTable.touch=Коснитесь земли, чтобы поставить верстак # gameTip.placeCraftingTable.controller=Разместите верстак, удерживайте его и коснитесь земли # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=Спасибо за отзыв! # gui.submitFeedback.failure.status.unprocessableEntity=Вы не владеете тем, на что пытаетесь оставить отзыв. (Код ошибки: %d) # gui.submitFeedback.failure.status.tooManyRequests=О, нет! Вы отправили слишком много отзывов, пожалуйста, повторите попытку позже. (Код ошибки: %d) # gui.submitFeedback.failure.status.other=В данный момент не удается оставить отзыв, пожалуйста, повторите попытку позже. (Код ошибки: %d) # +gui.togglable_slot=Нажмите, чтобы отключить ячейку # gui.playOffline=Автономная игра # gui.signIn=Войти # gui.genericNetworkError=Что-то пошло не так. Проверьте подключение к Интернету. # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=Игровая валюта Minecoins: Minecraft от howtoplay.minecoins.text.2=Полученные Minecoins привязаны к вашей учетной записи Microsoft, так что у вас есть доступ к монетам и покупкам на любых поддерживаемых устройствах! # howtoplay.minecoins.button.text.1=Получить Minecoins # howtoplay.minecoins.header.1=Отказ от ответственности # -howtoplay.minecoins.text.3=*Для использования Minecoins требуется версия Minecraft: Bedrock Edition с Рынком Minecraft. Minecoins несовместимы с Sony PlayStation. Узнать о совместимости вы можете по ссылке minecraft.net/minecoins  # +howtoplay.minecoins.text.3=*Для использования Minecoins требуется версия Minecraft: Bedrock Edition с Рынком Minecraft. Minecoins несовместимы с Sony PlayStation®. Узнать о совместимости вы можете по ссылке minecraft.net/minecoins  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=Добыча # @@ -4145,7 +4170,7 @@ level.editor.export.failed=Не удалось экспортировать пр level.editor.import.failed=Не удалось импортировать проект # level.editor.import.failed.incompatibleEdition=Сбой импорта проекта: формат файла не поддерживается # -inbox.invite.title=Приглашение в Realms # +inbox.invite.title=Приглашение в мир Realm игроку # invite.clear=Отменить выбор # invite.send=Отправить приглашения: %d # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=Красный обратный скос сл item.banner.diagonal_up_right.silver=Светло-серый обратный скос слева # item.banner.diagonal_up_right.white=Белый обратный скос слева # item.banner.diagonal_up_right.yellow=Желтый обратный скос слева # +item.banner.flow.black=Черный поток # +item.banner.flow.blue=Синий поток # +item.banner.flow.brown=Коричневый поток # +item.banner.flow.cyan=Бирюзовый поток # +item.banner.flow.gray=Серый поток # +item.banner.flow.green=Зеленый поток # +item.banner.flow.lightBlue=Голубой поток # +item.banner.flow.lime=Лаймовый поток # +item.banner.flow.magenta=Пурпурный поток # +item.banner.flow.orange=Оранжевый поток # +item.banner.flow.pink=Розовый поток # +item.banner.flow.purple=Фиолетовый поток # +item.banner.flow.red=Красный поток # +item.banner.flow.silver=Светло-серый поток # +item.banner.flow.white=Белый поток # +item.banner.flow.yellow=Желтый поток # item.banner.flower.black=Черный цветок # item.banner.flower.blue=Синий цветок # item.banner.flower.brown=Коричневый цветок # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=Белый градиент снизу # item.banner.gradient_up.yellow=Желтый градиент снизу # item.banner.gray.name=Серое знамя # item.banner.green.name=Зеленое знамя # +item.banner.guster.black=Черный вихревик # +item.banner.guster.blue=Синий вихревик # +item.banner.guster.brown=Коричневый вихревик # +item.banner.guster.cyan=Бирюзовый вихревик # +item.banner.guster.gray=Серый вихревик # +item.banner.guster.green=Зеленый вихревик # +item.banner.guster.lightBlue=Голубой вихревик # +item.banner.guster.lime=Лаймовый вихревик # +item.banner.guster.magenta=Пурпурный вихревик # +item.banner.guster.orange=Оранжевый вихревик # +item.banner.guster.pink=Розовый вихревик # +item.banner.guster.purple=Фиолетовый вихревик # +item.banner.guster.red=Красный вихревик # +item.banner.guster.silver=Светло-серый вихревик # +item.banner.guster.white=Белый вихревик # +item.banner.guster.yellow=Желтый вихревик # item.banner.half_horizontal.black=Черное верхнее пересечение # item.banner.half_horizontal.blue=Синее верхнее пересечение # item.banner.half_horizontal.brown=Коричневое верхнее пересечение # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=Лодка из акации # item.boat.big_oak.name=Лодка из темного дуба # item.bone.name=Кость # item.book.name=Книга # +item.breeze_rod.name=Вихревый стержень # item.chainmail_boots.name=Кольчужные ботинки # item.leather_boots.name=Кожаные ботинки # item.diamond_boots.name=Алмазные ботинки # @@ -4991,6 +5049,7 @@ item.comparator.name=Редстоуновый компаратор # item.compass.name=Компас # item.lodestonecompass.name=Магнетитовый компас # item.cookie.name=Печенье # +item.copper_door.name=Медная дверь # item.crossbow.name=Арбалет # item.diamond.name=Алмаз # item.repeater.name=Редстоуновый повторитель # @@ -5038,6 +5097,7 @@ tile.end_rod.name=Стержень Энда # item.ender_eye.name=Око Эндера # item.ender_pearl.name=Эндер-жемчуг # item.experience_bottle.name=Пузырек опыта # +item.exposed_copper_door.name=Слегка окисленная медная дверь # item.feather.name=Перо # item.fermented_spider_eye.name=Маринованный паучий глаз # item.fireball.name=Огненный шар # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=Золотые поножи # item.iron_leggings.name=Железные поножи # item.nautilus_shell.name=Раковина наутилуса # item.heart_of_the_sea.name=Сердце моря # +item.mace.name=Палица # item.magma_cream.name=Сгусток магмы # item.map.name=Карта # item.map.exploration.mansion.name=Карта исследователя лесов # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=Карта деревни в сава item.map.exploration.village_desert.name=Карта деревни в пустыне # item.map.exploration.jungle_temple.name=Карта исследователя джунглей # item.map.exploration.swamp_hut.name=Карта исследователя болот # +item.map.exploration.trial_chambers.name=Карта исследователя комнаты испытаний # item.melon.name=Арбуз # item.milk.name=Ведро с молоком # item.minecart.name=Вагонетка # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=Грузовая вагонетка # item.command_block_minecart.name=Вагонетка с командным блоком # item.minecartFurnace.name=Самоходная вагонетка # item.hopper_minecart.name=Вагонетка с загрузочной воронкой # +item.ominous_bottle.name=Зловещая бутылка # +item.ominous_trial_key.name=Зловещий ключ испытаний # +item.oxidized_copper_door.name=Окисленная медная дверь # item.tnt_minecart.name=Вагонетка с динамитом # item.pitcher_pod.name=Стручок кувшинника # item.torchflower_seeds.name=Семена огнецветов # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=Яйцо призыва Agent # item.spawn_egg.entity.armadillo.name=Яйцо призыва броненосца # item.spawn_egg.entity.axolotl.name=Яйцо призыва аксолотля # item.spawn_egg.entity.bee.name=Яйцо призыва пчелы # +item.spawn_egg.entity.bogged.name=Яйцо призыва увязнувшего # +item.spawn_egg.entity.breeze.name=Яйцо призыва бриза # item.spawn_egg.entity.hoglin.name=Яйцо призыва хоглина # item.spawn_egg.entity.cat.name=Яйцо призыва кота # item.spawn_egg.entity.chicken.name=Яйцо призыва курицы # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 – Оберег # item.record_pigstep.desc=Лена Райн — Pigstep # item.record_otherside.desc=Лена Райн — otherside # item.record_relic.desc=Aaron Cherof - Relic # +item.record_creator.desc=Лена Райн — Creator # +item.record_creator_music_box.desc=Лена Райн — Creator (Music Box) # +item.record_precipice.desc=Аарон Шероф — Precipice # item.redstone.name=Редстоуновая пыль # item.reeds.name=Сахарный тростник # item.kelp.name=Водоросли # @@ -5324,6 +5394,12 @@ item.iron_sword.name=Железный меч # item.stone_sword.name=Каменный меч # item.wooden_sword.name=Деревянный меч # item.unbreakable=Неразрушимый # +item.waxed_copper_door.name=Вощеная медная дверь # +item.waxed_exposed_copper_door.name=Вощеная слегка окисленная медная дверь # +item.waxed_oxidized_copper_door.name=Вощеная окисленная медная дверь # +item.waxed_weathered_copper_door.name=Вощеная полуокисленная медная дверь # +item.weathered_copper_door.name=Полуокисленная медная дверь # +item.wind_charge.name=Заряд ветра # item.wheat.name=Пшеница # item.wolf_armor.name=Доспехи волка # item.writable_book.name=Книга с пером # @@ -5331,6 +5407,7 @@ item.written_book.name=Завершенная книга # item.glowstone_dust.name=Светопыль # item.shulker_shell.name=Панцирь шалкера # item.totem.name=Тотем бессмертия # +item.trial_key.name=Ключ испытаний # item.turtle_helmet.name=Панцирь черепахи # item.turtle_shell_piece.name=Щиток черепахи # item.phantom_membrane.name=Мембрана фантома # @@ -5338,8 +5415,10 @@ item.sweet_berries.name=Сладкие ягоды # item.suspicious_stew.name=Подозрительное рагу # item.banner_pattern.bricks=Кирпичная кладка # item.banner_pattern.creeper=Лицо крипера # +item.banner_pattern.flow=Поток # item.banner_pattern.flower=Цветок # item.banner_pattern.globe=Шар # +item.banner_pattern.guster=Вихревик # item.banner_pattern.name=Узор знамени # item.banner_pattern.piglin=Морда # item.banner_pattern.skull=Череп # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=Узоры знамени # itemGroup.name.netherWartBlock=Незерские наросты # itemGroup.name.candles=Свечи # itemGroup.name.goatHorn=Козьи рога # +itemGroup.name.compounds=Соединения # +itemGroup.name.products=Товары # jigsaw.title.target_pool=Целевой пул: # jigsaw.title.name=Имя: # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=НАСТРОЙКИ КЛАССА # menu.serverStore=Магазин %s # menu.serverGenericName=Сервер # menu.play=Играть # +menu.profile=Профиль # menu.playdemo=Играть в демомире # menu.playOnRealms=Играть в Realm # menu.quickplay=Быстрая игра # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=Выберите стартового перс menu.character_cast.preview_title=Познакомьтесь с командой! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Сервер Realms ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=Серверы # merchant.deprecated=Чтобы разблокировать, обменяйте что-то еще! # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=Полноклавиатурный режим # options.fullKeyboardLayout=Раскладка полной клавиатуры # options.improvedInputResponsePlaceholder=Улучшенный отклик # options.improvedInputResponsePlaceholder.tooltip=Уменьшает задержку между вводимыми данными и отображением их на экране. Эта настройка может привести к потере заряда аккумулятора. # +options.dynamicTexturesToggle=Убрать ограничение текстур # +options.dynamicTexturesToggle.tooltip=Для отключения данного параметра требуется перезагрузить игру. При использовании нескольких дополнений или наборов ресурсов работа может быть нестабильной. # +options.dynamicTextures.popUp=Если после включения параметра «Убрать ограничение текстур» вы захотите вновь отключить его, потребуется перезагрузить игру. # +options.dynamicTextures.popUp.title=Вы уверены? # options.fullscreen=Полный экран # options.gamepadcursorsensitivity=Чувствительность курсора контроллера # options.gamertag=Тег игрока: # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=Подключиться # options.creator.debuggerListen=Послушать # options.creator.debuggerHost=Разместить # options.creator.debuggerPort=Порт # +options.creator.watchdogHeading=Настройки часового таймера сценариев # +options.creator.watchdogSlowWarning=Предупреждения о замедленных сценариях # +options.creator.watchdogSlowThreshold=Превышено среднее значение # +options.creator.watchdogSlowFormat=Миллисекунд: %s # +options.creator.watchdogSlowFormatDefault=Миллисекунд (по умолчанию): %s # +options.creator.watchdogSpikeWarning=Предупреждения о пиковых сценариях # +options.creator.watchdogSpikeThreshold=Превышено пиковое значение # +options.creator.watchdogSpikeFormat=Миллисекунд: %s # +options.creator.watchdogSpikeFormatDefault=Миллисекунд (по умолчанию): %s # +options.creator.watchdogHangThreshold=Прервать после # +options.creator.watchdogHangFormat=%s сек. # +options.creator.watchdogHangFormatDefault=Секунд (по умолчанию): %s # options.vr_classic_box_selection=Выбор контура # options.hidegamepadcursor=Скрыть курсор контроллера # options.hidegui=Скрыть ГПИ # @@ -6662,7 +6761,7 @@ options.makeBackup=Сделать резервную копию моего ми options.managePrivacy=Чтобы изменить настройки конфиденциальности, откройте https://account.xbox.com/Settings в любом веб-браузере. ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Отвязать учетную запись Майкрософт # options.unlink_msa.confirm.title=Отвязать учетную запись Майкрософт? # -options.unlink_msa.confirm.warning=ВНИМАНИЕ! Отвязав учетную запись, вы больше не сможете сохранять свой прогресс и покупки, сделанные через систему «PlayStation 4», в своей учетной записи %s. # +options.unlink_msa.confirm.warning=ВНИМАНИЕ! Отвязав учетную запись, вы больше не сможете сохранять свой прогресс и покупки, сделанные с помощью системы PlayStation®4, в своей учетной записи %s. #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=Отключение учетной записи Майкрософт из этой игры повлияет на все игры Minecraft на этой платформе, которые использовали эту учетную запись Майкрософт. # options.unlink_msa.confirm.checkbox1=Я больше не смогу получать доступ к контенту игрового Магазина, играя на других платформах. # options.unlink_msa.confirm.checkbox2=Я больше не смогу участвовать в кроссплатформенных играх с друзьями, использующими другие платформы. # @@ -6688,7 +6787,7 @@ options.editor.modeDescription.messageWithMouse=Редактор добавля options.editor.modeActive=Сейчас в Minecraft включен режим редактора. # options.editor.modeNotActive=Режим редактора Minecraft не включен # options.editor.achievementsDisabled=В этом проекте недоступны достижения. # -options.newUiPlayScreen.initiate=Переключение на новый пользовательский интерфейс # +options.newUiPlayScreen.initiate=Новый интерфейс # options.openPage.continue=Подробнее # options.graphicsMode=Графический режим # options.graphicsMode.simple=Простые # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=Загрузите мир для наст hudScreen.controlCustomization.tooltip.notouch=Использовать сенсорное устройство для настройки элементов управления # hudScreen.controlCustomization.tooltip.alreadycustomizing=Экран настройки сенсорного управления уже открыт # hudScreen.controlCustomization.tooltip.alive=Чтобы настроить управление, игрок должен быть живой. # +hudScreen.daysPlayed=Прошло дней: %s # +hudScreen.daysPlayed.overflow=Слишком много! # playscreen.fileSize.MB=МБ # playscreen.fileSize.GB=ГБ # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=Взрывное зелье исцеления # potion.heal.linger.name=Оседающее зелье исцеления # potion.healthBoost=Увеличение здоровья # potion.hunger=Голод # +potion.infested.linger.name=Оседающее зелье заражения # +potion.infested.name=Зелье заражения # +potion.infested.splash.name=Взрывное зелье заражения # +potion.infested=Заражение # potion.invisibility=Невидимость # potion.invisibility.name=Зелье невидимости # potion.invisibility.splash.name=Взрывное зелье невидимости # @@ -7067,6 +7172,10 @@ potion.nightVision=Ночное зрение # potion.nightVision.name=Зелье ночного зрения # potion.nightVision.splash.name=Взрывное зелье ночного зрения # potion.nightVision.linger.name=Оседающее зелье ночного зрения # +potion.oozing.linger.name=Оседающее зелье слизи # +potion.oozing.name=Зелье слизи # +potion.oozing.splash.name=Взрывное зелье слизи # +potion.oozing=Слизь # potion.poison=Отравление # potion.poison.name=Зелье отравления # potion.poison.splash.name=Взрывное зелье отравления # @@ -7108,6 +7217,14 @@ potion.weakness=Слабость # potion.weakness.name=Зелье слабости # potion.weakness.splash.name=Взрывное зелье слабости # potion.weakness.linger.name=Оседающее зелье слабости # +potion.weaving.linger.name=Оседающее зелье паутины # +potion.weaving.name=Зелье паутины # +potion.weaving.splash.name=Взрывное зелье паутины # +potion.weaving=Ткачество # +potion.windCharged.linger.name=Оседающее зелье ветрового заряда # +potion.windCharged.name=Зелье ветрового заряда # +potion.windCharged.splash.name=Взрывное зелье ветрового заряда # +potion.windCharged=Ветровой заряд # potion.wither=Иссушение # potion.wither.name=Зелье разложения # potion.wither.splash.name=Взрывное зелье разложения # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=Не удается открыть э progressScreen.message.forbiddenContent=У вас нет как минимум одного из примененных наборов # progressScreen.message.loadingSplitScreenAppearances=Загрузка отображения с разделенным экраном... # progressScreen.message.finishedLoadingSplitScreenAppearances=Загрузка отображения с разделенным экраном завершена. # -progressScreen.message.modifiedWorldWarning=Этот мир может выглядеть и работать не так, как классические миры и вы сможете получать в нем достижения. # +progressScreen.message.modifiedWorldWarning.1=Вы играете в мире с дополнениями! Благодаря этому в Minecraft появятся новые возможности. # +progressScreen.message.modifiedWorldWarning.2=Не ограничивайте себя! В один мир можно добавить сразу несколько дополнений. # +progressScreen.message.modifiedWorldWarning.3=Подсказка: с помощью набора ресурсов можно изменить текстуры различных блоков и сущностей. # +progressScreen.message.modifiedWorldWarning.4=Подсказка: с помощью набора параметров можно изменить принципы работы различных элементов, сущностей или блоков. # +progressScreen.message.modifiedWorldWarning.5=Подсказка: в дополнение входит как набор параметров, так и набор ресурсов. Чтобы дополнение работало, оба набора должны быть активированы! # +progressScreen.message.modifiedWorldWarning.6=Дополнения добавляют в ваши миры новые блоки, предметы или мобов. # +progressScreen.message.modifiedWorldWarning.7=Миры и дополнения сложно устроены! Некоторые из них отлично работают вместе, а другие — нет, поэтому иногда можно столкнуться со странными последствиями. # +progressScreen.message.modifiedWorldWarning.8=Чем больше дополнений, тем веселее играть, но загрузка может занять больше времени. # progressScreen.dialog.title.resourcePack=Загрузить наборы ресурсов? # progressScreen.dialog.title.behaviorAndResourcePack=Загрузить наборы параметров и ресурсов для мира? # progressScreen.dialog.title.onlyBehavior=Загрузить наборы параметров для мира? # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=Обновить мир? # resourcePack.warning.add.body=Этот мир может выглядеть и работать не так, как классические миры. Советуем вам сохранить копию этого мира, прежде чем продолжить. # resourcePack.warning.add.button.cancel=Не добавлять набор # resourcePack.warning.add.button.ok=Все равно добавить # +resourcePack.warnings.contentKeyErrorBody=Возникла проблема с загрузкой набора: %s. # +resourcePack.warnings.contentKeyErrorBodyMultiple=Возникла проблема с загрузкой наборов: %s. # +resourcePack.warnings.contentKeyErrorTitle=Ошибка! # resourcePack.warning.remove.title=Это опасно! # resourcePack.warning.remove.body=Добавление и удаление наборов после игры в мире может повредить его данные и привести к потере ваших игровых результатов. # resourcePack.warning.remove.button.cancel=Оставить набор # @@ -7557,7 +7684,9 @@ item.crimson_hanging_sign.name=Багряная табличка # item.danger_pottery_sherd.name=Осколок горшка «Угроза» # item.dark_oak_hanging_sign.name=Табличка из темного дуба # item.explorer_pottery_sherd.name=Осколок горшка «Исследователь» # +item.flow_pottery_sherd.name=Осколок горшка «Поток» # item.friend_pottery_sherd.name=Осколок горшка «Друг» # +item.guster_pottery_sherd.name=Осколок горшка «Вихревик» # item.heart_pottery_sherd.name=Осколок горшка «Сердце» # item.heartbreak_pottery_sherd.name=Осколок горшка «Душевные муки» # item.howl_pottery_sherd.name=Осколок горшка «Вой» # @@ -7568,6 +7697,7 @@ item.mourner_pottery_sherd.name=Осколок горшка «Плачея» # item.oak_hanging_sign.name=Табличка из дуба # item.plenty_pottery_sherd.name=Осколок горшка «Достаток» # item.prize_pottery_sherd.name=Осколок горшка «Трофей» # +item.scrape_pottery_sherd.name=Осколок горшка «Царапины» # item.sheaf_pottery_sherd.name=Осколок горшка «Пучок» # item.shelter_pottery_sherd.name=Осколок горшка «Укрытие» # item.skull_pottery_sherd.name=Осколок горшка «Череп» # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=Вишневые ступени # tile.cherry_trapdoor.name=Вишневый люк # tile.cherry_wood.name=Древесина вишни # tile.chiseled_bookshelf.name=Резная книжная полка # +tile.chiseled_tuff.name=Точеный туф # +tile.chiseled_tuff_bricks.name=Точеные туфовые кирпичи # tile.decorated_pot.name=Украшенный горшок # tile.pink_petals.name=Розовые лепестки # tile.stripped_bamboo_block.name=Полосатый бамбуковый блок # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=Отделка брони досаждателя # trim_pattern.ward.name=Отделка брони смотрителя # trim_pattern.wayfinder.name=Отделка брони «Проводник» # trim_pattern.wild.name=Отделка дикой брони # +trim_pattern.bolt.name=Отделка брони «Молния» # +trim_pattern.flow.name=Отделка брони «Поток» # upgrade.netherite_upgrade.name=Незеритовое обновление # storageManager.mainSizeLabel=%s (1 элемент) # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=Удалить шаблон мира? # selectTemplate.delete=Удалить # selectTemplate.myTemplates=Мои шаблоны миров # selectTemplate.realmsPlus=Избранные шаблоны Realms Plus # -selectTemplate.marketplacePass=Избранные шаблоны Marketplace Pass #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=Избранный контент Marketplace Pass #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=Импортированные шаблоны # selectTemplate.download=Скачать # selectTemplate.noTemplates=На этом устройстве нет шаблонов миров. # -selectTemplate.suggestedContent.title=Избранные шаблоны с рынка # +selectTemplate.suggestedContent.title=Избранный контент Рынка # selectTemplate.suggestedContent.button=Просмотреть другие шаблоны # selectTemplate.createdBy=Автор: %s # selectTemplate.inventory=Мои наборы для Рынка # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=Возникла проблема с подклю store.loading.error.issues=Хм, похоже, Рынок сейчас недоступен. Попробуйте переподключиться позже. # store.loading.error.internetDown=Не удается обнаружить соединение с Интернетом. # store.loading.error.account=С вашей учетной записью возникли проблемы. Попробуйте подключиться еще раз и сообщите в техподдержку, если ошибка повторится. # +store.loading.error.account.banned=Вы не можете пользоваться рынком до истечения срока приостановки учетной записи. # store.giftPromo.day=День %s ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=Получено # @@ -8405,10 +8540,17 @@ store.mashup.count.skin=1 скин # store.mashup.count.skins=Скины: %s # store.mashup.count.texturePack=1 набор текстур # store.mashup.count.texturePacks=Наборы текстур: %s #number of texture packs # -store.mashup.count.world=1 мир # +store.mashup.count.world=1 мир # store.mashup.count.worlds=Миры %s #number of worlds # store.mashup.count.addonPack=Одно дополнение # store.mashup.count.addonPacks=%s дополнений #number of addons # +store.mashup.count.mashup=Микс # +store.mashup.hover.label.addonPack=Дополнения можно использовать в любом мире. # +store.mashup.hover.label.world=Созданная вручную карта Minecraft. # +store.mashup.hover.label.skin=Придайте новый облик своему персонажу. # +store.mashup.hover.label.texturePack=Добавьте красок своему миру и игровому интерфейсу. # +store.mashup.hover.label.mashup.lineOne=Сочетание различных типов контента. # +store.mashup.hover.label.mashup.lineTwo=В микс-набор входит: # store.addon.activateAddonPack=Активировать дополнение! # store.addon.newOrExistingTitle=Куда добавить? # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=Доска # tile.chest.name=Сундук # tile.ender_chest.name=Эндер-сундук # tile.jigsaw.name=Блок-фрагмент # +tile.heavy_core.name=Тяжелая сердцевина # tile.honey_block.name=Блок меда # tile.honeycomb_block.name=Блок медовых сот # tile.lodestone.name=Магнетит # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=Плита из полированного ч tile.polished_blackstone_pressure_plate.name=Нажимная пластина из полированного чернокамня # tile.polished_blackstone_button.name=Кнопка из полированного чернокамня # tile.polished_blackstone_wall.name=Стена из полированного чернокамня # +tile.polished_tuff.name=Полированный туф # +tile.polished_tuff_slab.name=Плита из полированного туфа # +tile.polished_tuff_stairs.name=Ступени из полированного туфа # +tile.polished_tuff_wall.name=Стена из полированного туфа # tile.soul_campfire.name=Костер с огнем душ # tile.chiseled_nether_bricks.name=Резные незерские кирпичи # tile.cracked_nether_bricks.name=Потрескавшиеся незерские кирпичи # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=Желтая терракота # tile.structure_block.name=Структурный блок # structure_block.waterlog_block=Затопленные блоки # tile.structure_void.name=Структурная пустота # +tile.trial_spawner.name=Спаунер испытаний # +tile.vault.name=Сокровищница # tile.wool.black.name=Черная шерсть # tile.wool.blue.name=Синяя шерсть # tile.wool.brown.name=Коричневая шерсть # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=Папоротник # tile.tallgrass.grass.name=Трава # tile.tallgrass.name=Трава # tile.tallgrass.shrub.name=Куст # +tile.tuff_brick_slab.name=Плита из туфовых кирпичей # +tile.tuff_brick_stairs.name=Ступени из туфовых кирпичей # +tile.tuff_brick_wall.name=Стена из туфового кирпича # +tile.tuff_bricks.name=Кирпич из туфа # +tile.tuff_slab.name=Туфовая плита # +tile.tuff_stairs.name=Ступени из туфа # +tile.tuff_wall.name=Стена из туфа # tile.seagrass.seagrass.name=Морская трава # tile.sea_pickle.name=Морской огурец # tile.turtle_egg.name=Яйцо морской черепахи # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=Красный ковер # tile.carpet.silver.name=Светло-серый ковер # tile.carpet.white.name=Белый ковер # tile.carpet.yellow.name=Желтый ковер # +tile.crafter.name=Сборочный автомат # tile.crafting_table.name=Верстак # tile.glazedTerracotta.white.name=Белая глазурованная терракота # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=Вощеная резная медная пли tile.waxed_exposed_cut_copper_slab.name=Вощеная слегка окисленная резная медная плита # tile.waxed_weathered_cut_copper_slab.name=Вощеная полуокисленная резная медная плита # tile.waxed_oxidized_cut_copper_slab.name=Вощеная окисленная резная медная плита # + +tile.chiseled_copper.name=Точеная медь # +tile.exposed_chiseled_copper.name=Слегка окисленная точеная медь # +tile.oxidized_chiseled_copper.name=Окисленная точеная медь # +tile.waxed_chiseled_copper.name=Вощеная точеная медь # +tile.waxed_exposed_chiseled_copper.name=Вощеная слегка окисленная точеная медь # +tile.waxed_oxidized_chiseled_copper.name=Вощеная окисленная точеная медь # +tile.waxed_weathered_chiseled_copper.name=Вощеная полуокисленная точеная медь # +tile.weathered_chiseled_copper.name=Полуокисленная точеная медь # + +tile.copper_bulb.name=Медная лампочка # +tile.exposed_copper_bulb.name=Слегка окисленная медная лампочка # +tile.oxidized_copper_bulb.name=Окисленная медная лампочка # +tile.waxed_copper_bulb.name=Вощеная медная лампочка # +tile.waxed_exposed_copper_bulb.name=Вощеная слегка окисленная медная лампочка # +tile.waxed_oxidized_copper_bulb.name=Вощеная окисленная медная лампочка # +tile.waxed_weathered_copper_bulb.name=Вощеная полуокисленная медная лампочка # +tile.weathered_copper_bulb.name=Полуокисленная медная лампочка # + +tile.copper_door.name=Медная дверь # +tile.exposed_copper_door.name=Слегка окисленная медная дверь # +tile.oxidized_copper_door.name=Окисленная медная дверь # +tile.waxed_copper_door.name=Вощеная медная дверь # +tile.waxed_exposed_copper_door.name=Вощеная слегка окисленная медная дверь # +tile.waxed_oxidized_copper_door.name=Вощеная окисленная медная дверь # +tile.waxed_weathered_copper_door.name=Вощеная полуокисленная медная дверь # +tile.weathered_copper_door.name=Полуокисленная медная дверь # + +tile.copper_grate.name=Медная решетка # +tile.exposed_copper_grate.name=Слегка окисленная медная решетка # +tile.oxidized_copper_grate.name=Окисленная медная решетка # +tile.waxed_copper_grate.name=Вощеная медная решетка # +tile.waxed_exposed_copper_grate.name=Вощеная слегка окисленная медная решетка # +tile.waxed_oxidized_copper_grate.name=Вощеная окисленная медная решетка # +tile.waxed_weathered_copper_grate.name=Вощеный полуокисленная медная решетка # +tile.weathered_copper_grate.name=Полуокисленная медная решетка # + +tile.copper_trapdoor.name=Медный люк # +tile.exposed_copper_trapdoor.name=Слегка окисленный медный люк # +tile.oxidized_copper_trapdoor.name=Окисленный медный люк # +tile.waxed_copper_trapdoor.name=Вощеный медный люк # +tile.waxed_exposed_copper_trapdoor.name=Вощеный слегка окисленный медный люк # +tile.waxed_oxidized_copper_trapdoor.name=Вощеный окисленный медный люк # +tile.waxed_weathered_copper_trapdoor.name=Вощеный полуокисленный медный люк # +tile.weathered_copper_trapdoor.name=Полуокисленный медный люк # + tile.raw_copper_block.name=Блок необработанной меди # tile.raw_iron_block.name=Блок необработанного железа # tile.raw_gold_block.name=Блок необработанного золота # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=Стрела удачи # tipped_arrow.effect.wither=Стрела разложения # tipped_arrow.effect.turtleMaster=Стрела знатока черепах # tipped_arrow.effect.slowFalling=Стрела замедленного падения # +tipped_arrow.effect.infested=Стрела заражения # +tipped_arrow.effect.oozing=Стрела слизи # +tipped_arrow.effect.weaving=Стрела паутины # +tipped_arrow.effect.windCharged=Стрела ветрового заряда # structure_block.title=Структурный блок # structure_block.structure_name=Имя структуры # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=Во время восстановле worldError.worldFailedRecovery=Ошибка восстановления # worldError.worldFailedRecoveryText=Мы обнаружили поврежденный мир, но не смогли его восстановить. # +writeThrottling.osDialog.body=Ожидаемое время завершения данной операции: %d мин. Не выключайте устройство. # +writeThrottling.osDialog.cancel=Отменить операцию # +writeThrottling.osDialog.confirm=Продолжить # +writeThrottling.progressBar.title=Подготовка данных # +writeThrottling.progressBar.body=Подготовка файлов... # + userData.recovered.title=Сохраненные данные восстановлены # userData.recovered.text=Ваши поврежденные пользовательские настройки успешно восстановлены. # userData.recovered.warning=Во время восстановления могли быть потеряны последние изменения. # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=Сообщение в чате # xbox.report.area.skin=Скин игрока # xbox.report.area.gameplay=Игровой процесс # xbox.report.area.ingame=Игровые постройки # -xbox.report.area.other=Другое # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=Виртуальная травля # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=К сожалению, не удалось gathering.connect.title=Подключение... # gathering.info.qr.title.onlineService=Подробнее # gathering.info.qr.body.onlineService.nso=Чтобы присоединиться к событию в Minecraft, вам необходимо членство в Nintendo Switch Online. # -gathering.info.qr.body.onlineService.psn=Чтобы присоединиться к событию в Minecraft, необходимо выполнить вход в PlayStation Plus. # +gathering.info.qr.body.onlineService.psn=Чтобы присоединиться к событию в Minecraft, необходимо выполнить вход в PlayStation®Plus. #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=Чтобы присоединиться к событию в Minecraft, необходимо выполнить вход. # gathering.info.qr.title.childAccount=Игра по сети не разрешена # gathering.info.qr.body.childAccount=Настройки родительского контроля запрещают игру по сети. # diff --git a/resource_pack/texts/sk_SK.lang b/resource_pack/texts/sk_SK.lang index 50de615a4..61d491f38 100644 --- a/resource_pack/texts/sk_SK.lang +++ b/resource_pack/texts/sk_SK.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=Vybrať počiatočnú hodnotu # accessibility.start.feedback=Odkaz na webovú stránku na odoslanie spätnej väzby # accessibility.start.new=Nové # -accessibility.start.profile=Vybrať profil # accessibility.start.skinPicker=Vybrať vzhľad # accessibility.store.tag=Značka # @@ -1094,10 +1093,6 @@ commands.me.description=Zobrazí správu o vás. # commands.message.display.incoming=%1$s vám šepká: %2$s # commands.message.display.outgoing=Šepkáte hráčovi %1$s: %2$s # commands.message.sameTarget=Súkromnú správu nemôžete poslať sebe. # -commands.message.warn=§4Bolo vám zaslané varovanie. Vaše správanie môžu ostatní hráči považovať za urážlivé. Prosím, berte ohľad na ostatných. # -commands.message.toastWarn=Minecraft je pre každého! Prosím, dbajte na to, aby ste sa správali v súlade s normami našej komunity. # -commands.warn.invalidWarningLevel=Neplatná úroveň varovania. # -commands.warn.playerDoesNotExist=Nepodarilo sa nájsť hráča. Vyberte platného hráča. # commands.mobevent.description=Určuje, aké udalosti tvorov môžu prebiehať. # commands.mobevent.eventsEnabledSetToTrue=Udalosti tvorov sa povolili. Jednotlivé udalosti nastavené na hodnotu false sa nespustia. # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=- %s: %s z %d %d %d do %d %d %d # commands.volumearea.entry.withoutIdentifier=- %s: z %d %d %d do %d %d %d # commands.volumearea.noneExist.currentDimension=V aktuálnej dimenzii neexistujú žiadne zväzky. # commands.volumearea.inUse=Používané zväzky: %1$d/%2$d. # -commands.warn.description=Odošle hráčovi varovanie. # commands.weather.clear=Zmena na jasné počasie # commands.weather.description=Nastaví počasie. # commands.weather.disabled=V tomto svete nie je povolené nastavenie Cyklus počasia. # @@ -1572,6 +1566,7 @@ container.beacon=Lúč # container.brewing=Varný stojan # container.chest=Truhlica # container.chestDouble=Veľká truhlica # +container.crafter=Výrobník # container.crafting=Výroba # container.creative=Výber položiek # container.dispenser=Výdajný blok # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=Jaskyne a útesy # createWorldScreen.cavesandcliffsDescription=Preskúmajte nové rozmanité generovanie jaskýň # createWorldScreen.spectatorMode=Režim diváka # createWorldScreen.spectatorModeDescription=Vyskúšajte prvé verzie režimu diváka # -createWorldScreen.experimentalCameras=Experimentálne kamery # -createWorldScreen.experimentalCamerasDescription=Obsahuje vzorové prednastavenie kamery (príkaz kamery už nie je experimentálny) # createWorldScreen.recipeUnlocking=Odomykanie receptov # createWorldScreen.recipeUnlockingDescription=Povoliť odomykanie receptov # createWorldScreen.experimentalholiday=Funkcie Tvorcu prázdnin # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=Vytvára sa nový svet... # createWorldScreen.progress.realms=Ríša sa obnovuje... # createWorldScreen.seed.desc=Zadajte počiatočnú hodnotu na opätovné generovanie rovnakého terénu. Ak chcete náhodný svet, nechajte pole prázdne. # createWorldScreen.showCoordinates=Zobraziť súradnice # +createWorldScreen.showDaysPlayed=Zobraziť odohrané dni # createWorldScreen.worldType=Typ sveta # createWorldScreen.randomtickspeed=Rýchlosť náhodného tikania # createWorldScreen.randomtickspeed.reset=Obnoviť rýchlosť náhodného tikania # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=Odstrániť projekt # createWorldScreen.editor.projectOptionsLabel=Možnosti projektu # createWorldScreen.editor.delete.confirm=Odstrániť projekt natrvalo? # createWorldScreen.editor.deleteWarningFormat=Naozaj chcete odstrániť %s? Tento projekt sa stratí navždy! # +createWorldScreen.eduCloud.about.body=Názov súboru: '%1$s'%2$sPosledná aktualizácia: %3$s%4$sAk chcete prevziať súbor, kliknite na tlačidlo OK a potom na tlačidlo Prevziať.%5$s # +createWorldScreen.eduCloud.about.title=Informácie o súbore cloudového sveta # createWorldScreen.eduCloud.delete.confirm=Odstrániť lokálny svet? # createWorldScreen.eduCloud.deleteWarningFormat=Naozaj chcete odstrániť „%1$s“ v tomto zariadení?%2$sCloudová verzia „%3$s“ nebude ovplyvnená a neskôr ju možno znova synchronizovať. # createWorldScreen.experimentalDeferredTechnicalPreview=Funkcia renderovania drakov pre tvorcov # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Windows Obchod # realmsSettingsScreen.xboxOneStoreDisplayName=Obchod Xbox # realmsSettingsScreen.amazonStoreDisplayName=Amazon Appstore # realmsSettingsScreen.oculusStoreDisplayName=Oculus Store # -realmsSettingsScreen.berwickStoreDisplayName=„PlayStation Store“ # -realmsSettingsScreen.SonyStoreDisplayName=„PlayStation Store“ #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=Obchod PlayStation®Store #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=Obchod PlayStation®Store #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=neznámy obchod # realmsSettingsScreen.extendingRealm=Predlžuje sa trvanie ríše... # realmsSettingsScreen.offerError.title=Nákup sa spracúva # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=Balíky kúpené mimo Trhoviska xbl.syncIAP.confirmSync.prompt.yes=Áno, synchronizovať moje nákupy # xbl.marketplace.account.error.body.nobutton=Vyskytla sa chyba vášho konta. Až do vyriešenia problému nebudete môcť používať Trhovisko. Ak tento problém pretrváva niekoľko dní, obráťte sa na podporu. # -xbl.marketplace.account.banned.body.nobutton=Trhovisko nemôžete používať, kým neskončí vaše pozastavenie. # playfab.account.banned.temporary=Pozastavené # playfab.account.banned.permanent=Zakázané # @@ -2487,6 +2482,14 @@ date.daysAbbreviated1Char=%sd ### It needs to be abbreviated with no more than date.hoursAbbreviated1Char=%s h ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%s min ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%s s ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s dní # +date.hoursPlural=%s hodín # +date.minutesPlural=%s minút # +date.secondsPlural=%s sekúnd # +date.daySingular=%s deň # +date.hourSingular=%s hodina # +date.minuteSingular=%s minúta # +date.secondSingular=%s sekunda # date.timeLeft=Zostáva: %s # dayOneExperience.carousel.title=Víta vás nová hra Minecraft! # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=HOSTIŤ # edu.worlds_screen.settings=NASTAVENIA # edu.worlds_screen.download=STIAHNUŤ ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=SPRAVOVAŤ # +edu.worlds_screen.about=INFORMÁCIE # edu.worlds_screen.back=SPÄŤ # edu.worlds_screen.copy=KOPÍROVAŤ # edu.worlds_screen.export=EXPORTOVAŤ # @@ -2791,7 +2795,13 @@ edu.templates.empty_banner=Šablóny sveta môžete získať z knižnice Minecra edu.pause.multiplayer.disabled=V tejto lekcii nie je k dispozícii hra pre viacerých hráčov. # effect.badOmen=Zlé znamenie # +effect.infested=Zamorené # +effect.oozing=Bahnenie # +effect.raid_omen=Znamenie nájazdu # +effect.trial_omen=Skúšobné znamenie # effect.villageHero=Hrdina dediny # +effect.weaving=Tkanie # +effect.wind_charged=Nabité vetrom # enchantment.arrowDamage=Prerazenie # enchantment.arrowFire=Plameň # @@ -2810,6 +2820,9 @@ enchantment.durability=Nerozbitnosť # enchantment.fire=Aspekt ohňa # enchantment.fishingSpeed=Návnada # enchantment.frostwalker=Mrazivý chodec # +enchantment.heavy_weapon.breach=Útek # +enchantment.heavy_weapon.density=Hustota # +enchantment.heavy_weapon.windburst=Poryv vetra # enchantment.knockback=Odstrčenie # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=Netopier # entity.bee.name=Včela # entity.blaze.name=Žiarivec # entity.boat.name=Čln # +entity.bogged.name=Zapadnutý # +entity.breeze.name=Vánok # +entity.breeze_wind_charge_projectile.name=Veterná nálož # entity.cat.name=Mačka # entity.cave_spider.name=Jaskynný pavúk # entity.chicken.name=Sliepka # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=Nevyučený dedinčan # entity.villager_v2.name=Dedinčan # entity.vindicator.name=Pomstiteľ # entity.wandering_trader.name=Potulný obchodník # +entity.wind_charge_projectile.name=Veterná nálož # entity.witch.name=Striga # entity.wither.name=Wither # entity.wither_skeleton.name=Wither kostlivec # @@ -3009,6 +3026,7 @@ feature.ruins=Ruiny v oceáne # feature.pillager_outpost=Posádka plieniteľov # feature.bastion_remnant=Pozostatok bašty # feature.ruined_portal=Zničený portál # +feature.trial_chambers=Komory skúšok # feed.like=Páči sa # feed.manage_feed=Spravovať informačný kanál # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=Posúvaním :tip_left_stick: sa presuniete po gameTip.flying.mouse=Dvojitým ťuknutím na :_input_key.jump: lietajte # gameTip.flying.touch=Dvojitým ťuknutím na skok lietajte # +gameTip.flyDown.mouse=Ak chcete letieť nadol, stlačte tlačidlo :_input_key.sneak: # +gameTip.flyUp.mouse=Ak chcete letieť nahor, stlačte tlačidlo :_input_key.jump: # + +gameTip.stopFlying.mouse=Dvojitým ťuknutím tlačidla :_input_key.jump: zastavíte lietanie # +gameTip.stopFlying.touch=Dvojitým ťuknutím tlačidla letieť nadol zastavíte lietanie # + gameTip.jump.mouse=Skočte s :_input_key.jump: # +gameTip.swim.mouse=Stlačením a podržaním tlačidla :_input_key.jump: vyplávate nahor # -gameTip.hotbar.mouse=Posúvaním kolieska myši vyberte # na rýchlom paneli, aby ste to podržali # -gameTip.hotbar.touch=Ťuknutím na # na rýchlom paneli to podržíte # -gameTip.hotbar.controller=Ťuknutím na # na rýchlom paneli to podržíte # +gameTip.hotbar.selection.mouse=Rolovaním alebo stlačením tlačidla %s podržte položku ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=Ťuknutím na položku na rýchlom paneli to podržíte # gameTip.breakBlock.mouse=Podržaním ľavého tlačidla rozbíjajte bloky # gameTip.breakBlock.touch=Ťuknutím a podržaním rozbijete bloky # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=Zakrádate sa! Teraz nemôžete spadnúť z okrajov # gameTip.sneak.touch=Zakrádate sa, takže nemôžete spadnúť z okrajov # gameTip.sneak.controller=Zakrádate sa, takže nemôžete spadnúť z okrajov # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=Umiestnite pracovný stôl. Podržte ho a kliknutím umiestnite # gameTip.placeCraftingTable.touch=Umiestnite pracovný stôl ťuknutím na zem # gameTip.placeCraftingTable.controller=Umiestnite pracovný stôl, podržte a potom ťuknite na zem # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=Ďakujeme, že ste sa podelili o svoju recenziu! # gui.submitFeedback.failure.status.unprocessableEntity=Túto položku, ku ktorej sa pokúšate poskytnúť spätnú väzbu, nevlastníte. (Kód chyby: %d) # gui.submitFeedback.failure.status.tooManyRequests=Ale nie! Odoslali ste príliš veľa recenzií. Skúste to znova neskôr. (Kód chyby: %d) # gui.submitFeedback.failure.status.other=Momentálne nie je možné odoslať recenziu. Skúste to znova neskôr. (Kód chyby: %d) # +gui.togglable_slot=Stlačením vypnete slot # gui.playOffline=Hrať v režime offline # gui.signIn=Prihlásiť sa # gui.genericNetworkError=Vyskytla sa chyba. Skúste skontrolovať svoje pripojenie na internet. # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=Preskúmajte svet možností s hernou menou Minecoins howtoplay.minecoins.text.2=Po uplatnení sa mince Minecoins prepoja s vaším kontom Microsoft, takže k minciam a nákupom máte prístup aj v iných podporovaných zariadeniach! # howtoplay.minecoins.button.text.1=Získať mince # howtoplay.minecoins.header.1=Vyhlásenie # -howtoplay.minecoins.text.3=* Mince Minecoins vyžadujú verziu hry Minecraft: Bedrock Edition s Trhoviskom Minecraft. Mince Minecoins nie sú kompatibilné so Sony PlayStation. Informácie o kompatibilite nájdete na lokalite minecraft.net/minecoins  # +howtoplay.minecoins.text.3=*Mince Minecoins vyžadujú verziu hry Minecraft: Bedrock Edition s Trhoviskom Minecraft. Mince Minecoins nie sú kompatibilné so Sony PlayStation®. Informácie o kompatibilite nájdete na lokalite minecraft.net/minecoins  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=Ťažba # @@ -4145,7 +4170,7 @@ level.editor.export.failed=Exportovanie projektu zlyhalo # level.editor.import.failed=Importovanie projektu zlyhalo # level.editor.import.failed.incompatibleEdition=Importovanie projektu zlyhalo: nepodporovaný formát súboru # -inbox.invite.title=Pozvánka do služby Realms # +inbox.invite.title=Pozvánka do ríše # invite.clear=Vymazať výber # invite.send=Odoslať pozvánky (%d) # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=Červená uhlopriečna výplň napravo # item.banner.diagonal_up_right.silver=Svetlosivá uhlopriečna výplň napravo # item.banner.diagonal_up_right.white=Biela uhlopriečna výplň napravo # item.banner.diagonal_up_right.yellow=Žltá uhlopriečna výplň napravo # +item.banner.flow.black=Čierny tok # +item.banner.flow.blue=Modrý tok # +item.banner.flow.brown=Hnedý tok # +item.banner.flow.cyan=Azúrový tok # +item.banner.flow.gray=Sivý tok # +item.banner.flow.green=Zelený tok # +item.banner.flow.lightBlue=Svetlomodrý tok # +item.banner.flow.lime=Žltozelený tok # +item.banner.flow.magenta=Purpurový tok # +item.banner.flow.orange=Oranžový tok # +item.banner.flow.pink=Ružový tok # +item.banner.flow.purple=Fialový tok # +item.banner.flow.red=Červený tok # +item.banner.flow.silver=Svetlosivý tok # +item.banner.flow.white=Biely tok # +item.banner.flow.yellow=Žltý tok # item.banner.flower.black=Čierny symbol kvetu # item.banner.flower.blue=Modrý symbol kvetu # item.banner.flower.brown=Hnedý symbol kvetu # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=Biely prechod dole # item.banner.gradient_up.yellow=Žltý prechod dole # item.banner.gray.name=Sivá zástava # item.banner.green.name=Zelená zástava # +item.banner.guster.black=Čierny príval # +item.banner.guster.blue=Modrý príval # +item.banner.guster.brown=Hnedý príval # +item.banner.guster.cyan=Azúrový príval # +item.banner.guster.gray=Sivý príval # +item.banner.guster.green=Zelený príval # +item.banner.guster.lightBlue=Svetlomodrý príval # +item.banner.guster.lime=Žltozelený príval # +item.banner.guster.magenta=Purpurový príval # +item.banner.guster.orange=Oranžový príval # +item.banner.guster.pink=Ružový príval # +item.banner.guster.purple=Fialový príval # +item.banner.guster.red=Červený príval # +item.banner.guster.silver=Svetlosivý príval # +item.banner.guster.white=Biely príval # +item.banner.guster.yellow=Žltý príval # item.banner.half_horizontal.black=Čierna vodorovná výplň # item.banner.half_horizontal.blue=Modrá vodorovná výplň # item.banner.half_horizontal.brown=Hnedá vodorovná výplň # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=Agátový čln # item.boat.big_oak.name=Čln z tmavého duba # item.bone.name=Kosť # item.book.name=Kniha # +item.breeze_rod.name=Vánková tyč # item.chainmail_boots.name=Krúžkové čižmy # item.leather_boots.name=Kožené čižmy # item.diamond_boots.name=Diamantové čižmy # @@ -4991,6 +5049,7 @@ item.comparator.name=Ruditový porovnávač # item.compass.name=Kompas # item.lodestonecompass.name=Magnetitový kompas # item.cookie.name=Sušienka # +item.copper_door.name=Medené dvere # item.crossbow.name=Kuša # item.diamond.name=Diamant # item.repeater.name=Ruditový zosilňovač # @@ -5038,6 +5097,7 @@ tile.end_rod.name=Tyč z konca sveta # item.ender_eye.name=Oko z konca sveta # item.ender_pearl.name=Perla z konca sveta # item.experience_bottle.name=Čarovná fľaša # +item.exposed_copper_door.name=Dvere z odkrytej medi # item.feather.name=Perie # item.fermented_spider_eye.name=Skvasené pavúčie oko # item.fireball.name=Ohnivá nálož # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=Zlaté nohavice # item.iron_leggings.name=Železné nohavice # item.nautilus_shell.name=Ulita lodenky # item.heart_of_the_sea.name=Srdce mora # +item.mace.name=Palcát # item.magma_cream.name=Magmový krém # item.map.name=Mapa # item.map.exploration.mansion.name=Mapa prieskumníka lesov # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=Mapa dediny v savane # item.map.exploration.village_desert.name=Mapa púštnej dediny # item.map.exploration.jungle_temple.name=Mapa prieskumníka džungle # item.map.exploration.swamp_hut.name=Mapa prieskumníka močiara # +item.map.exploration.trial_chambers.name=Mapa prieskumníka úloh # item.melon.name=Melón # item.milk.name=Mlieko # item.minecart.name=Banský vozík # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=Banský vozík s truhlicou # item.command_block_minecart.name=Banský vozík s príkazovým blokom # item.minecartFurnace.name=Banský vozík s pecou # item.hopper_minecart.name=Banský vozík s násypníkom # +item.ominous_bottle.name=Zlovestná fľaša # +item.ominous_trial_key.name=Zlovestný skúšobný kľúč # +item.oxidized_copper_door.name=Dvere zo zoxidovanej medi # item.tnt_minecart.name=Banský vozík s TNT # item.pitcher_pod.name=Tobolka mäsožravej rastliny # item.torchflower_seeds.name=Semená zázvoru # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=Vajce narodenia agenta # item.spawn_egg.entity.armadillo.name=Vajce narodenia pásavca # item.spawn_egg.entity.axolotl.name=Vajce narodenia axolotla # item.spawn_egg.entity.bee.name=Vajce narodenia včely # +item.spawn_egg.entity.bogged.name=Vajce narodenia zapadnutého # +item.spawn_egg.entity.breeze.name=Vajce narodenia vánku # item.spawn_egg.entity.hoglin.name=Vajce narodenia hoglina # item.spawn_egg.entity.cat.name=Vajce narodenia mačky # item.spawn_egg.entity.chicken.name=Vajce narodenia sliepky # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 – nádvorie # item.record_pigstep.desc=Lena Raine – Pigstep # item.record_otherside.desc=Lena Raine – otherside # item.record_relic.desc=Aaron Cherof – Relic # +item.record_creator.desc=Lena Raine – Tvorca # +item.record_creator_music_box.desc=Lena Raine – Tvorca (Music Box) # +item.record_precipice.desc=Aaron Cherof – Precipice # item.redstone.name=Ruditový prach # item.reeds.name=Cukrová trstina # item.kelp.name=Morská riasa # @@ -5324,6 +5394,12 @@ item.iron_sword.name=Železný meč # item.stone_sword.name=Kamenný meč # item.wooden_sword.name=Drevený meč # item.unbreakable=Nerozbitné # +item.waxed_copper_door.name=Voskované medené dvere # +item.waxed_exposed_copper_door.name=Dvere z voskovanej odkrytej medi # +item.waxed_oxidized_copper_door.name=Dvere z voskovanej zoxidovanej medi # +item.waxed_weathered_copper_door.name=Dvere z voskovanej zvetranej medi # +item.weathered_copper_door.name=Dvere zo zvetranej medi # +item.wind_charge.name=Veterná nálož # item.wheat.name=Pšenica # item.wolf_armor.name=Vlčie brnenie # item.writable_book.name=Kniha a brko # @@ -5331,6 +5407,7 @@ item.written_book.name=Napísaná kniha # item.glowstone_dust.name=Prach zo žiarivého kameňa # item.shulker_shell.name=Shulkrova ulita # item.totem.name=Totem neumierajúceho # +item.trial_key.name=Kľúč skúšok # item.turtle_helmet.name=Pancier korytnačky # item.turtle_shell_piece.name=Korytnačia šupina # item.phantom_membrane.name=Blana z prízraku # @@ -5338,8 +5415,10 @@ item.sweet_berries.name=Sladké bobule # item.suspicious_stew.name=Podozrivý guláš # item.banner_pattern.bricks=Murované pole # item.banner_pattern.creeper=Symbol creepera # +item.banner_pattern.flow=Tok # item.banner_pattern.flower=Symbol kvetu # item.banner_pattern.globe=Glóbus # +item.banner_pattern.guster=Guster # item.banner_pattern.name=Vzor zástavy # item.banner_pattern.piglin=Rypák # item.banner_pattern.skull=Symbol lebky # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=Vzory zástav # itemGroup.name.netherWartBlock=Netheritové byle # itemGroup.name.candles=Sviečky # itemGroup.name.goatHorn=Kozie rohy # +itemGroup.name.compounds=Zlúčeniny # +itemGroup.name.products=Produkty # jigsaw.title.target_pool=Cieľový fond: # jigsaw.title.name=Názov: # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=NASTAVENIA TRIEDY # menu.serverStore=Obchod %s # menu.serverGenericName=Server # menu.play=Hrať # +menu.profile=Profil # menu.playdemo=Hrať v ukážkovom svete # menu.playOnRealms=Hrať na serveri Realm # menu.quickplay=Rýchla hra # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=Vyberte si počiatočnú postavu # menu.character_cast.preview_title=Spoznajte účinkujúcich! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Server Realms ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=Servery # merchant.deprecated=Na odomknutie obchodujte s niečím iným. # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=Hranie na celej klávesnici # options.fullKeyboardLayout=Rozloženie celej klávesnice # options.improvedInputResponsePlaceholder=Zlepšená odozva vstupu # options.improvedInputResponsePlaceholder.tooltip=Znižuje oneskorenie medzi vstupom a tým, čo vidíte na obrazovke. Toto nastavenie môže spotrebovať viac energie batérie. # +options.dynamicTexturesToggle=Odstrániť limit textúr # +options.dynamicTexturesToggle.tooltip=Prepnutie tejto položky zo zapnutej na vypnutú bude vyžadovať reštartovanie hry. Môže to spôsobiť nestabilitu pri používaní viacerých rozširujúcich modulov alebo balíkov zdrojov s mnohými textúrami. # +options.dynamicTextures.popUp=Ak zapnete funkciu Odstrániť limit textúr, hru bude potrebné reštartovať, aby ste funkciu mohli vypnúť. # +options.dynamicTextures.popUp.title=Naozaj? # options.fullscreen=Na celú obrazovku # options.gamepadcursorsensitivity=Citlivosť kurzora ovládača # options.gamertag=Menovka hráča: # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=Pripojiť # options.creator.debuggerListen=Počúvať # options.creator.debuggerHost=Hostiť # options.creator.debuggerPort=Port # +options.creator.watchdogHeading=Nastavenia strážneho psa skriptov # +options.creator.watchdogSlowWarning=Upozornenia na pomalý skript # +options.creator.watchdogSlowThreshold=Priemer presahuje # +options.creator.watchdogSlowFormat=%s ms # +options.creator.watchdogSlowFormatDefault=%s ms (predvolené) # +options.creator.watchdogSpikeWarning=Upozornenia na špičku skriptu # +options.creator.watchdogSpikeThreshold=Špička presahuje # +options.creator.watchdogSpikeFormat=%s ms # +options.creator.watchdogSpikeFormatDefault=%s ms (predvolené) # +options.creator.watchdogHangThreshold=Prerušiť po # +options.creator.watchdogHangFormat=%s s # +options.creator.watchdogHangFormatDefault=%s s (predvolené) # options.vr_classic_box_selection=Výber obrysu # options.hidegamepadcursor=Skryť kurzor ovládača # options.hidegui=Skryť grafické používateľské rozhranie # @@ -6662,7 +6761,7 @@ options.makeBackup=Vytvoriť záložnú kópiu môjho sveta # options.managePrivacy=Ak chcete spravovať nastavenia ochrany osobných údajov, navštívte lokalitu https://account.xbox.com/Settings v ľubovoľnom webovom prehliadači. ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Odpojiť konto Microsoft # options.unlink_msa.confirm.title=Odpojiť konto Microsoft? # -options.unlink_msa.confirm.warning=UPOZORNENIE: Po odpojení už nebudete môcť ukladať do konta %s svoj postup ani nákupy vykonané v systéme „PlayStation 4“. # +options.unlink_msa.confirm.warning=UPOZORNENIE: Po odpojení už nebudete môcť ukladať do konta %s svoj postup ani nákupy vykonané v systéme PlayStation®4. #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=Odpojenie konta Microsoft z tejto hry ovplyvní všetky hry Minecraft na tejto platforme, ktoré používali toto konto Microsoft. # options.unlink_msa.confirm.checkbox1=Pri hre na iných platformách už nebudem mať prístup k žiadnemu obsahu v obchode v hre. # options.unlink_msa.confirm.checkbox2=S priateľmi na iných platformách už nebudem môcť hrať hry pre rôzne platformy. # @@ -6688,7 +6787,7 @@ options.editor.modeDescription.messageWithMouse=Režim editora pridáva výkonn options.editor.modeActive=Minecraft je momentálne v režime editora. # options.editor.modeNotActive=Minecraft momentálne nie je v režime editora. # options.editor.achievementsDisabled=V tomto projekte nemožno dosahovať výsledky. # -options.newUiPlayScreen.initiate=Prepnúť na nové používateľské rozhranie # +options.newUiPlayScreen.initiate=Nové prostredie # options.openPage.continue=Ďalšie informácie # options.graphicsMode=Grafický režim # options.graphicsMode.simple=Jednoduchý # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=Načítať svet na prispôsobenie ovláda hudScreen.controlCustomization.tooltip.notouch=Použiť dotykové zariadenie na prispôsobenie ovládacích prvkov # hudScreen.controlCustomization.tooltip.alreadycustomizing=Už je otvorená obrazovka prispôsobenia dotykového ovládania # hudScreen.controlCustomization.tooltip.alive=Hráč musí byť nažive, aby si mohol prispôsobiť ovládacie prvky. # +hudScreen.daysPlayed=Počet dní hrania: %s # +hudScreen.daysPlayed.overflow=Príliš veľa na to, aby sa dali spočítať! # playscreen.fileSize.MB=MB # playscreen.fileSize.GB=GB # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=Rozstrekovací elixír hojenia # potion.heal.linger.name=Dlhotrvajúci elixír hojenia # potion.healthBoost=Zlepšenie zdravia # potion.hunger=Hlad # +potion.infested.linger.name=Dlhotrvajúci elixír zamorenia # +potion.infested.name=Elixír zamorenia # +potion.infested.splash.name=Rozstrekovací elixír zamorenia # +potion.infested=Zamorené # potion.invisibility=Neviditeľnosť # potion.invisibility.name=Elixír neviditeľnosti # potion.invisibility.splash.name=Rozstrekovací elixír neviditeľnosti # @@ -7067,6 +7172,10 @@ potion.nightVision=Nočné videnie # potion.nightVision.name=Elixír nočného videnia # potion.nightVision.splash.name=Rozstrekovací elixír nočného videnia # potion.nightVision.linger.name=Dlhotrvajúci elixír nočného videnia # +potion.oozing.linger.name=Dlhotrvajúci elixír bahnenia # +potion.oozing.name=Bahnistý elixír # +potion.oozing.splash.name=Rozstrekovací elixír bahnenia # +potion.oozing=Bahnenie # potion.poison=Jed # potion.poison.name=Elixír s jedom # potion.poison.splash.name=Rozstrekovací elixír s jedom # @@ -7108,6 +7217,14 @@ potion.weakness=Slabosť # potion.weakness.name=Elixír slabosti # potion.weakness.splash.name=Rozstrekovací elixír slabosti # potion.weakness.linger.name=Dlhotrvajúci elixír slabosti # +potion.weaving.linger.name=Dlhotrvajúci elixír tkania # +potion.weaving.name=Elixír tkania # +potion.weaving.splash.name=Rozstrekovací elixír tkania # +potion.weaving=Tkanie # +potion.windCharged.linger.name=Dlhotrvajúci elixír nabíjania vetrom # +potion.windCharged.name=Elixír nabíjania vetrom # +potion.windCharged.splash.name=Rozstrekovací elixír nabíjania vetrom # +potion.windCharged=Nabité vetrom # potion.wither=Chradnutie # potion.wither.name=Elixír rozkladu # potion.wither.splash.name=Rozstrekovací elixír rozkladu # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=Tento svet sa nedá otvoriť kvôli p progressScreen.message.forbiddenContent=Nevlastníte niektorý z použitých balíkov # progressScreen.message.loadingSplitScreenAppearances=Načítavajú sa vzhľady rozdelenej obrazovky... # progressScreen.message.finishedLoadingSplitScreenAppearances=Dokončilo sa načítanie vzhľadov rozdelenej obrazovky. # -progressScreen.message.modifiedWorldWarning=Tento svet nemusí vyzerať alebo sa správať rovnako ako neupravené svety a nebudete môcť dosahovať výsledky. # +progressScreen.message.modifiedWorldWarning.1=Hráte vo svete s doplnkami! Do vášho sveta Minecraftu sa pridajú nové funkcie. # +progressScreen.message.modifiedWorldWarning.2=Neuspokojte sa len s jedným! Na jeden svet môžete načítať viacero doplnkov naraz. # +progressScreen.message.modifiedWorldWarning.3=Pokročilý tip: balík zdrojov môže zmeniť textúry rôznych blokov a subjektov. # +progressScreen.message.modifiedWorldWarning.4=Pokročilý tip: balík správania môže zmeniť spôsob práce rôznych položiek, subjektov alebo blokov. # +progressScreen.message.modifiedWorldWarning.5=Pokročilý tip: doplnok obsahuje balík správania aj balík zdrojov. Uistite sa, že obe balíky sú aktivované, aby ste zabezpečili, že doplnok bude fungovať! # +progressScreen.message.modifiedWorldWarning.6=Doplnky pridajú do vašich svetov nové bloky, predmety alebo tvory. # +progressScreen.message.modifiedWorldWarning.7=Svety a doplnky sú komplexné! Zatiaľ čo niektoré spolu fungujú skvele, s inými môžete dosiahnuť zvláštne výsledky. # +progressScreen.message.modifiedWorldWarning.8=Viac doplnkov znamená viac zábavy, ale nahratie hry môže trvať dlhšie. # progressScreen.dialog.title.resourcePack=Prevziať balíky zdrojov? # progressScreen.dialog.title.behaviorAndResourcePack=Prevziať balíky správania a zdrojov vo svete? # progressScreen.dialog.title.onlyBehavior=Prevziať balíky správania vo svete? # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=Aktualizovať svet? # resourcePack.warning.add.body=Tento svet nemusí vyzerať alebo sa správať rovnako ako neupravené svety. Pred pokračovaním by ste si možno mali uložiť kópiu svojho sveta. # resourcePack.warning.add.button.cancel=Nepridať balík # resourcePack.warning.add.button.ok=Pridať balík aj tak # +resourcePack.warnings.contentKeyErrorBody=Vyskytol sa problém s načítaním balíčka %s. # +resourcePack.warnings.contentKeyErrorBodyMultiple=Vyskytol sa problém s načítaním balíčkov %s. # +resourcePack.warnings.contentKeyErrorTitle=Chyba! # resourcePack.warning.remove.title=Je to nebezpečné! # resourcePack.warning.remove.body=Pridanie alebo odstránenie balíčkov po hraní vo svete môže zničiť svet a spôsobiť stratu vytvoreného obsahu. # resourcePack.warning.remove.button.cancel=Ponechať balík # @@ -7557,7 +7684,9 @@ item.crimson_hanging_sign.name=Karmínová závesná značka # item.danger_pottery_sherd.name=Keramický črep – nebezpečenstvo # item.dark_oak_hanging_sign.name=Závesná značka z tmavého duba # item.explorer_pottery_sherd.name=Keramický črep – prieskumník # +item.flow_pottery_sherd.name=Keramický črep – tok # item.friend_pottery_sherd.name=Keramický črep – priateľ # +item.guster_pottery_sherd.name=Keramický črep – Guster # item.heart_pottery_sherd.name=Keramický črep – srdce # item.heartbreak_pottery_sherd.name=Keramický črep – zlomené srdce # item.howl_pottery_sherd.name=Keramický črep – vytie # @@ -7568,6 +7697,7 @@ item.mourner_pottery_sherd.name=Keramický črep – trúchliaci # item.oak_hanging_sign.name=Dubová závesná značka # item.plenty_pottery_sherd.name=Keramický črep – hojnosť # item.prize_pottery_sherd.name=Keramický črep – cena # +item.scrape_pottery_sherd.name=Keramický črep – škrabanie # item.sheaf_pottery_sherd.name=Keramický črep – snop # item.shelter_pottery_sherd.name=Keramický črep – prístrešok # item.skull_pottery_sherd.name=Keramický črep – lebka # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=Čerešňové schody # tile.cherry_trapdoor.name=Čerešňové padacie dvere # tile.cherry_wood.name=Čerešňové drevo # tile.chiseled_bookshelf.name=Opracovaná polica na knihy # +tile.chiseled_tuff.name=Opracovaný tuf # +tile.chiseled_tuff_bricks.name=Opracované tufové tehly # tile.decorated_pot.name=Vyzdobený hrniec # tile.pink_petals.name=Ružové lupene # tile.stripped_bamboo_block.name=Blok olúpaného bambusu # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=Obšívka vex brnenia # trim_pattern.ward.name=Obšívka ochranného brnenia # trim_pattern.wayfinder.name=Obšívka brnenia hľadača cesty # trim_pattern.wild.name=Obšívka divokého brnenia # +trim_pattern.bolt.name=Blesková obšívka brnenia # +trim_pattern.flow.name=Toková obšívka brnenia # upgrade.netherite_upgrade.name=Netheritová inovácia # storageManager.mainSizeLabel=%s – 1 položka # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=Odstrániť šablónu sveta? # selectTemplate.delete=Odstrániť # selectTemplate.myTemplates=Moje šablóny svetov # selectTemplate.realmsPlus=Odporúčané šablóny Realms Plus # -selectTemplate.marketplacePass=Odporúčané šablóny predplatného Marketplace Pass #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=Odporúčaný obsah Marketplace Pass #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=Importované šablóny # selectTemplate.download=Prevziať # selectTemplate.noTemplates=V tomto zariadení nie sú žiadne šablóny svetov. # -selectTemplate.suggestedContent.title=Odporúčané šablóny Trhovísk # +selectTemplate.suggestedContent.title=Odporúčaný obsah Trhoviska # selectTemplate.suggestedContent.button=Zobraziť ďalšie šablóny # selectTemplate.createdBy=Autor: %s # selectTemplate.inventory=Moje balíky z Trhoviska # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=Mali sme problém s pripojením. Vráťte sa spä store.loading.error.issues=Hmm, zdá sa, že Trhovisko má problémy. Skúste sa pripojiť neskôr. # store.loading.error.internetDown=Nenašli sme pripojenie na internet. # store.loading.error.account=Vyskytol sa problém s vaším kontom. Skúste to znova čoskoro a ak bude problém pretrvávať, obráťte sa na podporu. # +store.loading.error.account.banned=Trhovisko nemôžete používať, kým neskončí vaše pozastavenie. # store.giftPromo.day=Deň %s ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=Prevzaté # @@ -8405,10 +8540,17 @@ store.mashup.count.skin=1 vzhľad # store.mashup.count.skins=Vzhľady (%s) # store.mashup.count.texturePack=1 balíček textúr # store.mashup.count.texturePacks=Balíčky textúr (%s) #number of texture packs # -store.mashup.count.world=1 svet # +store.mashup.count.world=1 svet # store.mashup.count.worlds=Svety (%s) #number of worlds # store.mashup.count.addonPack=1 doplnok # store.mashup.count.addonPacks=Doplnky: %s #number of addons # +store.mashup.count.mashup=Mash-up # +store.mashup.hover.label.addonPack=Doplnky môžu byť použité na akýkoľvek svet. # +store.mashup.hover.label.world=Ručne vyrobená mapa hry Minecraft. # +store.mashup.hover.label.skin=Aplikujte nový vzhľad na vašu postavu. # +store.mashup.hover.label.texturePack=Pridajte nový vizuál do vášho sveta alebo herného rozhrania. # +store.mashup.hover.label.mashup.lineOne=Kombinácia rôznych typov obsahu. # +store.mashup.hover.label.mashup.lineTwo=Tento Mash-Up obsahuje: # store.addon.activateAddonPack=Aktivujte doplnok! # store.addon.newOrExistingTitle=Kam ho chcete pridať? # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=Tabuľa # tile.chest.name=Truhlica # tile.ender_chest.name=Truhlica z konca sveta # tile.jigsaw.name=Skladací blok # +tile.heavy_core.name=Ťažké jadro # tile.honey_block.name=Medový blok # tile.honeycomb_block.name=Blok včelieho plástu # tile.lodestone.name=Magnetit # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=Leštená černitová tabuľa # tile.polished_blackstone_pressure_plate.name=Leštená černitová prítlačná doska # tile.polished_blackstone_button.name=Leštené černitové tlačidlo # tile.polished_blackstone_wall.name=Leštená černitová stena # +tile.polished_tuff.name=Leštený tuf # +tile.polished_tuff_slab.name=Tabuľa z lešteného tufu # +tile.polished_tuff_stairs.name=Schody z lešteného tufu # +tile.polished_tuff_wall.name=Stena z lešteného tufu # tile.soul_campfire.name=Táborák duší # tile.chiseled_nether_bricks.name=Opracované netheritové tehly # tile.cracked_nether_bricks.name=Popraskané netheritové tehly # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=Žltá terakota # tile.structure_block.name=Blok stavby # structure_block.waterlog_block=Bloky zaplavené vodou # tile.structure_void.name=Medzera v stavbe # +tile.trial_spawner.name=Liaheň skúšok # +tile.vault.name=Trezor # tile.wool.black.name=Čierna vlna # tile.wool.blue.name=Modrá vlna # tile.wool.brown.name=Hnedá vlna # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=Papraď # tile.tallgrass.grass.name=Tráva # tile.tallgrass.name=Tráva # tile.tallgrass.shrub.name=Ker # +tile.tuff_brick_slab.name=Tabuľa z tufových tehál # +tile.tuff_brick_stairs.name=Schody z tufových tehál # +tile.tuff_brick_wall.name=Stena z tufových tehál # +tile.tuff_bricks.name=Tufové tehly # +tile.tuff_slab.name=Tufová tabuľa # +tile.tuff_stairs.name=Tufové schody # +tile.tuff_wall.name=Tufová stena # tile.seagrass.seagrass.name=Morská tráva # tile.sea_pickle.name=Holotúria # tile.turtle_egg.name=Vajce morskej korytnačky # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=Červený koberec # tile.carpet.silver.name=Svetlosivý koberec # tile.carpet.white.name=Biely koberec # tile.carpet.yellow.name=Žltý koberec # +tile.crafter.name=Výrobník # tile.crafting_table.name=Pracovný stôl # tile.glazedTerracotta.white.name=Biela leštená terakota # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=Voskovaná zrezaná medená tabuľa # tile.waxed_exposed_cut_copper_slab.name=Voskovaná odkrytá zrezaná medená tabuľa # tile.waxed_weathered_cut_copper_slab.name=Voskovaná zvetraná zrezaná medená tabuľa # tile.waxed_oxidized_cut_copper_slab.name=Voskovaná zoxidovaná zrezaná medená tabuľa # + +tile.chiseled_copper.name=Opracovaná meď # +tile.exposed_chiseled_copper.name=Odkrytá opracovaná meď # +tile.oxidized_chiseled_copper.name=Zoxidovaná opracovaná meď # +tile.waxed_chiseled_copper.name=Voskovaná opracovaná meď # +tile.waxed_exposed_chiseled_copper.name=Voskovaná odkrytá opracovaná meď # +tile.waxed_oxidized_chiseled_copper.name=Voskovaná zoxidovaná opracovaná meď # +tile.waxed_weathered_chiseled_copper.name=Voskovaná zvetraná opracovaná meď # +tile.weathered_chiseled_copper.name=Zvetraná opracovaná meď # + +tile.copper_bulb.name=Medená žiarovka # +tile.exposed_copper_bulb.name=Odkrytá medená žiarovka # +tile.oxidized_copper_bulb.name=Žiarovka zo zoxidovanej medi # +tile.waxed_copper_bulb.name=Žiarovka z voskovanej medi # +tile.waxed_exposed_copper_bulb.name=Žiarovka z voskovanej odkrytej medi # +tile.waxed_oxidized_copper_bulb.name=Voskovaná zoxidovaná medená žiarovka # +tile.waxed_weathered_copper_bulb.name=Žiarovka z voskovanej zvetranej medi # +tile.weathered_copper_bulb.name=Žiarovka zo zvetranej medi # + +tile.copper_door.name=Medené dvere # +tile.exposed_copper_door.name=Dvere z odkrytej medi # +tile.oxidized_copper_door.name=Dvere zo zoxidovanej medi # +tile.waxed_copper_door.name=Dvere z voskovanej medi # +tile.waxed_exposed_copper_door.name=Dvere z voskovanej odkrytej medi # +tile.waxed_oxidized_copper_door.name=Dvere z voskovanej zoxidovanej medi # +tile.waxed_weathered_copper_door.name=Dvere z voskovanej zvetranej medi # +tile.weathered_copper_door.name=Zvetrané medené dvere # + +tile.copper_grate.name=Medená mriežka # +tile.exposed_copper_grate.name=Odkrytá medená mriežka # +tile.oxidized_copper_grate.name=Mriežka zo zoxidovanej medi # +tile.waxed_copper_grate.name=Mriežka z voskovanej medi # +tile.waxed_exposed_copper_grate.name=Mriežka z voskovanej odkrytej medi # +tile.waxed_oxidized_copper_grate.name=Mriežka z voskovanej zoxidovanej medi # +tile.waxed_weathered_copper_grate.name=Mriežka z voskovanej zvetranej medi # +tile.weathered_copper_grate.name=Mriežka zo zvetranej medi # + +tile.copper_trapdoor.name=Medené padacie dvere # +tile.exposed_copper_trapdoor.name=Padacie dvere z odkrytej medi # +tile.oxidized_copper_trapdoor.name=Padacie dvere zo zoxidovanej medi # +tile.waxed_copper_trapdoor.name=Padacie dvere z voskovanej medi # +tile.waxed_exposed_copper_trapdoor.name=Voskované odkryté medené padacie dvere # +tile.waxed_oxidized_copper_trapdoor.name=Padacie dvere z voskovanej zoxidovanej medi # +tile.waxed_weathered_copper_trapdoor.name=Padacie dvere z voskovanej zvetranej medi # +tile.weathered_copper_trapdoor.name=Padacie dvere zo zvetranej medi # + tile.raw_copper_block.name=Blok surovej medi # tile.raw_iron_block.name=Blok surového železa # tile.raw_gold_block.name=Blok surového zlata # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=Šíp šťastia # tipped_arrow.effect.wither=Šíp rozkladu # tipped_arrow.effect.turtleMaster=Šíp pána korytnačiek # tipped_arrow.effect.slowFalling=Šíp pomalého pádu # +tipped_arrow.effect.infested=Šíp zamorenia # +tipped_arrow.effect.oozing=Šíp bahnenia # +tipped_arrow.effect.weaving=Šíp tkania # +tipped_arrow.effect.windCharged=Šíp nabíjania vetrom # structure_block.title=Blok stavby # structure_block.structure_name=Názov stavby # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=Počas obnovy mohlo dôjsť k strate n worldError.worldFailedRecovery=Obnova sa nepodarila # worldError.worldFailedRecoveryText=Odhalili sme poškodený svet a nepodarilo sa nám ho obnoviť. # +writeThrottling.osDialog.body=Dokončenie požadovanej operácie sa odhaduje na %d min. Počas tejto doby nevypínajte zariadenie. # +writeThrottling.osDialog.cancel=Zrušiť operáciu # +writeThrottling.osDialog.confirm=Pokračovať # +writeThrottling.progressBar.title=Pripravujú sa údaje # +writeThrottling.progressBar.body=Pripravujú sa súbory... # + userData.recovered.title=Uložené údaje obnovené # userData.recovered.text=Poškodené používateľské nastavenia sa úspešne obnovili. # userData.recovered.warning=Počas obnovy mohlo dôjsť k strate niektorých vašich nedávnych zmien. # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=Správa chatu # xbox.report.area.skin=Vzhľad hráča # xbox.report.area.gameplay=Hranie hry # xbox.report.area.ingame=Výtvory v hre # -xbox.report.area.other=Iné # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=Kyberšikana # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=Nepodarilo sa nám pripojiť. Skúste to z gathering.connect.title=Pripája sa… # gathering.info.qr.title.onlineService=Ďalšie informácie # gathering.info.qr.body.onlineService.nso=Ak sa chcete zapojiť do udalosti v hre Minecraft, potrebujete členstvo Nintendo Switch Online. # -gathering.info.qr.body.onlineService.psn=Ak sa chcete zapojiť do udalosti v hre Minecraft, musíte byť prihlásení v službe \„PlayStation Plus\“. # +gathering.info.qr.body.onlineService.psn=Ak sa chcete zapojiť do udalosti v hre Minecraft, musíte byť prihlásení v službe PlayStation®Plus. #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=Ak sa chcete zapojiť do udalosti v hre Minecraft, musíte byť prihlásení. # gathering.info.qr.title.childAccount=Online hranie nie je povolené # gathering.info.qr.body.childAccount=Vaša aktuálna rodičovská kontrola vám bráni v hraní online. # diff --git a/resource_pack/texts/sv_SE.lang b/resource_pack/texts/sv_SE.lang index 8b534e134..7168fc1a6 100644 --- a/resource_pack/texts/sv_SE.lang +++ b/resource_pack/texts/sv_SE.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=Välj frö # accessibility.start.feedback=Skicka feedback-länk till webbplatsen # accessibility.start.new=Ny # -accessibility.start.profile=Välj profil # accessibility.start.skinPicker=Välj utseende # accessibility.store.tag=Tagg # @@ -329,7 +328,7 @@ achievement.snipeSkeleton.desc=Döda ett skelett med en pil från mer än 50 met achievement.spawnWither=Början? # achievement.spawnWither.desc=Spawna Wither # achievement.taken=Uppnådd! # -achievement.theEnd=End? # +achievement.theEnd=Slutet? # achievement.theEnd.desc=Hitta End # achievement.theEnd2=End. # achievement.theEnd2.desc=Besegra enderdraken # @@ -1094,10 +1093,6 @@ commands.me.description=Visar ett meddelande om dig. # commands.message.display.incoming=%1$s viskar till dig: %2$s # commands.message.display.outgoing=Du viskar till %1$s: %2$s # commands.message.sameTarget=Du kan inte skicka privata meddelanden till dig själv! # -commands.message.warn=§4Du har fått en varning. Ditt beteende kan uppfattas som stötande av andra spelare. Tänk på dina medspelare. # -commands.message.toastWarn=Minecraft är till för alla! Var noga med att följa våra communityregler. # -commands.warn.invalidWarningLevel=Ogiltig varningsnivå. # -commands.warn.playerDoesNotExist=Kunde inte hitta spelaren. Välj en giltig spelare. # commands.mobevent.description=Bestämmer vilka varelsehändelser som får köras. # commands.mobevent.eventsEnabledSetToTrue=Nu är varelsehändelser aktiverade. Individuella händelser inställda som "false" körs inte. # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=- %s: %s från %d %d %d till %d %d %d # commands.volumearea.entry.withoutIdentifier=- %s: från %d %d %d till %d %d %d # commands.volumearea.noneExist.currentDimension=Det finns inga volymer i den aktuella dimensionen. # commands.volumearea.inUse=%1$d/%2$d volymer som används. # -commands.warn.description=Skickar ett varningsmeddelande till spelaren. # commands.weather.clear=Ändrar till klart väder # commands.weather.description=Bestämmer vädret. # commands.weather.disabled=Vädercykel är inte aktiverat i den här världen. # @@ -1572,6 +1566,7 @@ container.beacon=Fyrljus # container.brewing=Brygdställ # container.chest=Kista # container.chestDouble=Stor kista # +container.crafter=Tillverkare # container.crafting=Tillverkning # container.creative=Föremålsval # container.dispenser=Automat # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=Grottor och klippor # createWorldScreen.cavesandcliffsDescription=Utforska den nya varierade grottgenereringen # createWorldScreen.spectatorMode=Åskådarläge # createWorldScreen.spectatorModeDescription=Prova de tidiga versionerna av åskådarläget # -createWorldScreen.experimentalCameras=Experimentella kameror # -createWorldScreen.experimentalCamerasDescription=Innehåller förinställningar till kameran (kamerakommandot är inte längre experimentellt) # createWorldScreen.recipeUnlocking=Upplåsning av recept # createWorldScreen.recipeUnlockingDescription=Aktivera receptupplåsning # createWorldScreen.experimentalholiday=Funktioner i högtidsskaparen # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=Skapar ny värld ... # createWorldScreen.progress.realms=Nollställer Realm ... # createWorldScreen.seed.desc=Skriv in ett frö för att generera samma terräng på nytt. Lämna tomt för att få en slumpad värld. # createWorldScreen.showCoordinates=Visa koordinater # +createWorldScreen.showDaysPlayed=Visa antal dagar spelade # createWorldScreen.worldType=Världstyp # createWorldScreen.randomtickspeed=Slumpad ticktakt # createWorldScreen.randomtickspeed.reset=Nollställ slumpad ticktakt # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=Ta bort projekt # createWorldScreen.editor.projectOptionsLabel=Projektalternativ # createWorldScreen.editor.delete.confirm=Vill du radera projektet permanent? # createWorldScreen.editor.deleteWarningFormat=Vill du radera "%s"? Projektet kommer att försvinna för alltid! # +createWorldScreen.eduCloud.about.body=Filnamn: '%1$s'%2$sSenast uppdaterad: %3$s%4$sOm du vill ladda ner klickar du på OK och sedan på Hämta.%5$s # +createWorldScreen.eduCloud.about.title=Om världsfiler i molnet # createWorldScreen.eduCloud.delete.confirm=Radera lokal värld? # createWorldScreen.eduCloud.deleteWarningFormat=Vill du radera “%1$s” på den här enheten?%2$sVersionen i molnet, ”%3$s”, påverkas inte och kan synkroniseras senare. # createWorldScreen.experimentalDeferredTechnicalPreview=Rendera drakfunktioner för skapare # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Windows Store # realmsSettingsScreen.xboxOneStoreDisplayName=Xbox Store # realmsSettingsScreen.amazonStoreDisplayName=Amazon Appstore # realmsSettingsScreen.oculusStoreDisplayName=Oculus Store # -realmsSettingsScreen.berwickStoreDisplayName="PlayStation Store" # -realmsSettingsScreen.SonyStoreDisplayName=”PlayStation Store” #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=en okänd butik # realmsSettingsScreen.extendingRealm=Förlänger Realm ... # realmsSettingsScreen.offerError.title=Väntande köp # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=Du kan bara synkronisera paket xbl.syncIAP.confirmSync.prompt.yes=Ja, synkronisera mina köp # xbl.marketplace.account.error.body.nobutton=Ett fel har inträffat med ditt konto. Du kan inte använda marknaden förrän felet är löst. Kontakta kundtjänst om felet kvarstår i flera dagar. # -xbl.marketplace.account.banned.body.nobutton=Du kan inte använda marknaden förrän avstängningen upphör. # playfab.account.banned.temporary=tillfälligt avstängd # playfab.account.banned.permanent=avstängd # @@ -2487,6 +2482,14 @@ date.daysAbbreviated1Char=%s d ### It needs to be abbreviated with no more than date.hoursAbbreviated1Char=%s t ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%s m ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%s s ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s dagar # +date.hoursPlural=%s timmar # +date.minutesPlural=%s minuter # +date.secondsPlural=%s sekunder # +date.daySingular=%s dag # +date.hourSingular=%s timme # +date.minuteSingular=%s minut # +date.secondSingular=%s sekund # date.timeLeft=%s kvar # dayOneExperience.carousel.title=Välkommen till nya Minecraft! # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=VÄRD # edu.worlds_screen.settings=INSTÄLLNINGAR # edu.worlds_screen.download=LADDA NER ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=HANTERA # +edu.worlds_screen.about=OM # edu.worlds_screen.back=TILLBAKA # edu.worlds_screen.copy=KOPIERA # edu.worlds_screen.export=EXPORTERA # @@ -2791,7 +2795,13 @@ edu.templates.empty_banner=Skaffa världsmallar via Minecraft Education-bibliote edu.pause.multiplayer.disabled=Den här lektionen fungerar inte med flera spelare. # effect.badOmen=Dåligt omen # +effect.infested=Angripen # +effect.oozing=Sipprar # +effect.raid_omen=Rädomen # +effect.trial_omen=Utmaningsomen # effect.villageHero=Byns hjälte # +effect.weaving=Vävning # +effect.wind_charged=Vind laddad # enchantment.arrowDamage=Kraft # enchantment.arrowFire=Eld # @@ -2810,6 +2820,9 @@ enchantment.durability=Hållbarhet # enchantment.fire=Eldaspekt # enchantment.fishingSpeed=Bete # enchantment.frostwalker=Frostvandrare # +enchantment.heavy_weapon.breach=Bryt # +enchantment.heavy_weapon.density=Täthet # +enchantment.heavy_weapon.windburst=Vindexplosion # enchantment.knockback=Knuff # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=Fladdermus # entity.bee.name=Bi # entity.blaze.name=Flamgestalt # entity.boat.name=Båt # +entity.bogged.name=Träskzombie # +entity.breeze.name=Bris # +entity.breeze_wind_charge_projectile.name=Vindattack # entity.cat.name=Katt # entity.cave_spider.name=Grottspindel # entity.chicken.name=Höna # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=Outbildad bybo # entity.villager_v2.name=Bybo # entity.vindicator.name=Övertygare # entity.wandering_trader.name=Handelsresande # +entity.wind_charge_projectile.name=Vindattack # entity.witch.name=Häxa # entity.wither.name=Wither # entity.wither_skeleton.name=Wither-skelett # @@ -3009,6 +3026,7 @@ feature.ruins=Havsruiner # feature.pillager_outpost=Plundrarutpost # feature.bastion_remnant=Bastionsruin # feature.ruined_portal=Förstörd portal # +feature.trial_chambers=Utmaningskammare # feed.like=Gilla # feed.manage_feed=Hantera feed # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=Använd :tip_left_stick: för att röra dig # gameTip.flying.mouse=Dubbeltryck på :_input_key.jump: för att flyga # gameTip.flying.touch=Dubbeltryck på hoppa för att flyga # +gameTip.flyDown.mouse=Tryck på :_input_key.sneak: för att flyga nedåt # +gameTip.flyUp.mouse=Tryck på :_input_key.jump: för att flyga uppåt # + +gameTip.stopFlying.mouse=Dubbeltryck på :_input_key.jump: för att sluta flyga # +gameTip.stopFlying.touch=Dubbeltryck på flyg nedåt för att sluta flyga # + gameTip.jump.mouse=Hoppa med :_input_key.jump: # +gameTip.swim.mouse=Tryck och håll in :_input_key.jump: för att simma uppåt # -gameTip.hotbar.mouse=Scrolla med mushjulet för att välja # i snabbfältet för att hålla i den # -gameTip.hotbar.touch=Tryck på # i snabbfältet för att hålla i den # -gameTip.hotbar.controller=Tryck på # i snabbfältet för att hålla i den # +gameTip.hotbar.selection.mouse=Scrolla eller tryck på %s för att hålla föremål ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=Tryck på ett föremål i snabbfältet för att hålla i det # gameTip.breakBlock.mouse=Vänsterklicka och håll in för att bryta block # gameTip.breakBlock.touch=Tryck och håll in för att bryta block # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=Du smyger! Nu kan du inte ramla ner från kanter. # gameTip.sneak.touch=Du smyger, så du kan inte ramla ner från kanter # gameTip.sneak.controller=Du smyger, så du kan inte ramla ner från kanter # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=Placera arbetsbänken. Håll den i handen och klicka för att placera den. # gameTip.placeCraftingTable.touch=Tryck på marken för att placera arbetsbänken # gameTip.placeCraftingTable.controller=Placera din hantverksbord, håll i den och tryck sedan på marken # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=Tack för att du delar din recension! # gui.submitFeedback.failure.status.unprocessableEntity=Du äger inte objektet som du försöker ge feedback för. (Felkod: %d) # gui.submitFeedback.failure.status.tooManyRequests=Åh nej! Du har skickat för många recensioner. Försök igen senare. (Felkod: %d) # gui.submitFeedback.failure.status.other=Det går inte att skicka in din recension just nu. Försök igen senare. (Felkod: %d) # +gui.togglable_slot=Tryck för att stänga av platsen # gui.playOffline=Spela offline # gui.signIn=Logga in # gui.genericNetworkError=Någonting gick fel. Kontrollera din internetanslutning. # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=Utforska en värld full av möjligheter med Minecoins howtoplay.minecoins.text.2=När du har löst in dina Minecoins länkas de till ditt Microsoft-konto, så att du kan komma åt dina mynt och köp på alla enheter som stöds! # howtoplay.minecoins.button.text.1=Skaffa mynt # howtoplay.minecoins.header.1=Friskrivning # -howtoplay.minecoins.text.3=*Minecoins kräver en version av Minecraft: Bedrock Edition som har Minecraft Marketplace. Minecoins fungerar inte på Sony PlayStation. Mer information om kompatibilitet finns på minecraft.net/minecoins  # +howtoplay.minecoins.text.3=*Minecoins kräver en version av Minecraft: Bedrock Edition som har Minecraft Marketplace. Minecoins fungerar inte på Sony PlayStation®. Mer information om kompatibilitet finns på minecraft.net/minecoins  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=Brytning # @@ -4145,7 +4170,7 @@ level.editor.export.failed=Projektexporteringen misslyckades # level.editor.import.failed=Projektimporteringen misslyckades # level.editor.import.failed.incompatibleEdition=Det gick inte att importera projektet: Ogiltigt filformat # -inbox.invite.title=Realms-inbjudan # +inbox.invite.title=Realm-inbjudan till # invite.clear=Rensa val # invite.send=Skicka %d inbjudningar # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=Röd triangel nere till höger # item.banner.diagonal_up_right.silver=Ljusgrå triangel nere till höger # item.banner.diagonal_up_right.white=Vit triangel nere till höger # item.banner.diagonal_up_right.yellow=Gul triangel nere till höger # +item.banner.flow.black=Svart flöde # +item.banner.flow.blue=Blått flöde # +item.banner.flow.brown=Brunt flöde # +item.banner.flow.cyan=Turkost flöde # +item.banner.flow.gray=Grått flöde # +item.banner.flow.green=Grönt flöde # +item.banner.flow.lightBlue=Ljusblått flöde # +item.banner.flow.lime=Limegrönt flöde # +item.banner.flow.magenta=Ljuslila flöde # +item.banner.flow.orange=Orange flöde # +item.banner.flow.pink=Rosa flöde # +item.banner.flow.purple=Lila flöde # +item.banner.flow.red=Rött flöde # +item.banner.flow.silver=Ljusgrått flöde # +item.banner.flow.white=Vitt flöde # +item.banner.flow.yellow=Gult flöde # item.banner.flower.black=Svart blomma # item.banner.flower.blue=Blå blomma # item.banner.flower.brown=Brun blomma # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=Vit övergång nedanifrån # item.banner.gradient_up.yellow=Gul övergång nedanifrån # item.banner.gray.name=Grå banderoll # item.banner.green.name=Grön banderoll # +item.banner.guster.black=Svart breeze # +item.banner.guster.blue=Blå breeze # +item.banner.guster.brown=Brun breeze # +item.banner.guster.cyan=Turkos breeze # +item.banner.guster.gray=Grå breeze # +item.banner.guster.green=Grön breeze # +item.banner.guster.lightBlue=Ljusblå breeze # +item.banner.guster.lime=Limegrön breeze # +item.banner.guster.magenta=Ljuslila breeze # +item.banner.guster.orange=Orange breeze # +item.banner.guster.pink=Rosa breeze # +item.banner.guster.purple=Lila breeze # +item.banner.guster.red=Röd breeze # +item.banner.guster.silver=Ljusgrå breeze # +item.banner.guster.white=Vit breeze # +item.banner.guster.yellow=Gul breeze # item.banner.half_horizontal.black=Svart överhalva # item.banner.half_horizontal.blue=Blå överhalva # item.banner.half_horizontal.brown=Brun överhalva # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=Akaciabåt # item.boat.big_oak.name=Mörk ekbåt # item.bone.name=Ben # item.book.name=Bok # +item.breeze_rod.name=Bris-stav # item.chainmail_boots.name=Ringstövlar # item.leather_boots.name=Läderstövlar # item.diamond_boots.name=Diamantstövlar # @@ -4991,6 +5049,7 @@ item.comparator.name=Rödstensjämförare # item.compass.name=Kompass # item.lodestonecompass.name=Lodstenskompass # item.cookie.name=Kaka # +item.copper_door.name=Koppardörr # item.crossbow.name=Armborst # item.diamond.name=Diamant # item.repeater.name=Rödstensrepeterare # @@ -5038,6 +5097,7 @@ tile.end_rod.name=Slutstav # item.ender_eye.name=Enderöga # item.ender_pearl.name=Enderpärla # item.experience_bottle.name=Förtrollningsflaska # +item.exposed_copper_door.name=Exponerad koppardörr # item.feather.name=Fjäder # item.fermented_spider_eye.name=Jäst spindelöga # item.fireball.name=Eldladdning # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=Guldbyxor # item.iron_leggings.name=Järnbyxor # item.nautilus_shell.name=Nautilusskal # item.heart_of_the_sea.name=Havets hjärta # +item.mace.name=Stridsklubba # item.magma_cream.name=Magmamassa # item.map.name=Karta # item.map.exploration.mansion.name=Skogsutforskarkarta # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=Savannbykarta # item.map.exploration.village_desert.name=Ökenbykarta # item.map.exploration.jungle_temple.name=Djungelutforskarkarta # item.map.exploration.swamp_hut.name=Träskutforskarkarta # +item.map.exploration.trial_chambers.name=Utmaningsutforskarkarta # item.melon.name=Melon # item.milk.name=Mjölk # item.minecart.name=Gruvvagn # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=Gruvvagn med kista # item.command_block_minecart.name=Gruvvagn med kommandoblock # item.minecartFurnace.name=Gruvvagn med smältugn # item.hopper_minecart.name=Gruvvagn med tratt # +item.ominous_bottle.name=Olycksbådande flaska # +item.ominous_trial_key.name=Olycksbådande utmaningsnyckel # +item.oxidized_copper_door.name=Oxiderad koppardörr # item.tnt_minecart.name=Gruvvagn med dynamit # item.pitcher_pod.name=Kapselkanna # item.torchflower_seeds.name=Fackelblomfrön # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=Agentspawnägg # item.spawn_egg.entity.armadillo.name=Bältdjursspawnägg # item.spawn_egg.entity.axolotl.name=Axolotlspawnägg # item.spawn_egg.entity.bee.name=Bispawnägg # +item.spawn_egg.entity.bogged.name=Träskzombieägg # +item.spawn_egg.entity.breeze.name=Brisspawnägg # item.spawn_egg.entity.hoglin.name=Hoglinspawnägg # item.spawn_egg.entity.cat.name=Kattspawnägg # item.spawn_egg.entity.chicken.name=Hönspawnägg # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 - ward # item.record_pigstep.desc=Lena Raine - Pigstep # item.record_otherside.desc=Lena Raine - Otherside # item.record_relic.desc=Aaron Cherof – Relic # +item.record_creator.desc=Lena Raine – skapare # +item.record_creator_music_box.desc=Lena Raine – skapare (speldosa) # +item.record_precipice.desc=Aaron Cherof – stup # item.redstone.name=Rödstenspulver # item.reeds.name=Sockerrör # item.kelp.name=Kelp # @@ -5324,6 +5394,12 @@ item.iron_sword.name=Järnsvärd # item.stone_sword.name=Stensvärd # item.wooden_sword.name=Träsvärd # item.unbreakable=Oförstörbar # +item.waxed_copper_door.name=Vaxad koppardörr # +item.waxed_exposed_copper_door.name=Vaxad och exponerad koppardörr # +item.waxed_oxidized_copper_door.name=Vaxad och oxiderad koppardörr # +item.waxed_weathered_copper_door.name=Vaxad och nött koppardörr # +item.weathered_copper_door.name=Nött koppardörr # +item.wind_charge.name=Vindattack # item.wheat.name=Vete # item.wolf_armor.name=Vargrustning # item.writable_book.name=Bok och fjäderpenna # @@ -5331,6 +5407,7 @@ item.written_book.name=Skriven bok # item.glowstone_dust.name=Glödstensstoft # item.shulker_shell.name=Shulkerskal # item.totem.name=Vandöendets totem # +item.trial_key.name=Utmaningsnyckel # item.turtle_helmet.name=Sköldpaddsskal # item.turtle_shell_piece.name=Sköldpaddsfjäll # item.phantom_membrane.name=Fantommembran # @@ -5338,8 +5415,10 @@ item.sweet_berries.name=Söta bär # item.suspicious_stew.name=Suspekt stuvning # item.banner_pattern.bricks=Tegelmönster # item.banner_pattern.creeper=Creepermönster # +item.banner_pattern.flow=Flöde # item.banner_pattern.flower=Blommönster # item.banner_pattern.globe=glob # +item.banner_pattern.guster=Breeze # item.banner_pattern.name=Fanmönster # item.banner_pattern.piglin=Tryne # item.banner_pattern.skull=Dödskallemönster # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=Fanmönster # itemGroup.name.netherWartBlock=Nether-vårtor # itemGroup.name.candles=Ljus # itemGroup.name.goatHorn=Gethorn # +itemGroup.name.compounds=Föreningar # +itemGroup.name.products=Produkter # jigsaw.title.target_pool=Målpool: # jigsaw.title.name=Namn: # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=KLASSRUMSINSTÄLLNINGAR # menu.serverStore=%s-butik # menu.serverGenericName=Server # menu.play=Spela # +menu.profile=Profil # menu.playdemo=Spela demovärld # menu.playOnRealms=Spela i Realm # menu.quickplay=Snabbspel # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=Välj startkaraktär # menu.character_cast.preview_title=Möt skådespelarna! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Realms-server ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=Servrar # merchant.deprecated=Byt någonting annat för att låsa upp! # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=Spela med helt tangentbord # options.fullKeyboardLayout=Layout för helt tangentbord # options.improvedInputResponsePlaceholder=Förbättrad respons # options.improvedInputResponsePlaceholder.tooltip=Minskar fördröjningen mellan din inmatning och vad du ser på skärmen. Den här inställningen kan använda mer batteri. # +options.dynamicTexturesToggle=Ta bort texturgräns # +options.dynamicTexturesToggle.tooltip=Att stänga av det här kräver en omstart av spelet. Det kan orsaka instabilitet när du använder flera tillägg eller resurspaket med många texturer. # +options.dynamicTextures.popUp=Om du aktiverar Ta bort texturgräns måste du starta om spelet för att det ska stängas av. # +options.dynamicTextures.popUp.title=Är du säker? # options.fullscreen=Helskärm # options.gamepadcursorsensitivity=Känslighet för handkontrollsmarkör # options.gamertag=Gamertag: # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=Anslut # options.creator.debuggerListen=Lyssna # options.creator.debuggerHost=Värd # options.creator.debuggerPort=Port # +options.creator.watchdogHeading=Inställningar för skriptövervakning # +options.creator.watchdogSlowWarning=Varningar om långsamma skript # +options.creator.watchdogSlowThreshold=Genomsnitt överskrider # +options.creator.watchdogSlowFormat=%s millisekunder # +options.creator.watchdogSlowFormatDefault=%s millisekunder (standard) # +options.creator.watchdogSpikeWarning=Varningar om skripttoppar # +options.creator.watchdogSpikeThreshold=Toppen överskrider # +options.creator.watchdogSpikeFormat=%s millisekunder # +options.creator.watchdogSpikeFormatDefault=%s millisekunder (standard) # +options.creator.watchdogHangThreshold=Avbryt efter # +options.creator.watchdogHangFormat=%s sekunder # +options.creator.watchdogHangFormatDefault=%s sekunder (standard) # options.vr_classic_box_selection=Markera val # options.hidegamepadcursor=Dölj handkontrollens markör # options.hidegui=Dölj gränssnitt # @@ -6662,7 +6761,7 @@ options.makeBackup=Gör en säkerhetskopia av min värld # options.managePrivacy=Besök https://account.xbox.com/Settings i valfri webbläsare för att hantera dina sekretessinställningar. ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Koppla ifrån Microsoft-konto # options.unlink_msa.confirm.title=Koppla ifrån Microsoft-konto? # -options.unlink_msa.confirm.warning=VARNING: Efter att du kopplat ifrån kan du inte spara framsteg eller köp du gjort med kontot %s på ditt "PlayStation 4"-system. # +options.unlink_msa.confirm.warning=VARNING: Efter att du kopplat ifrån kan du inte spara framsteg eller köp du gjort med kontot %s på ditt PlayStation®4-system. #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=Om du kopplar ifrån ditt Microsoft-konto inifrån detta spel påverkas alla Minecraft-spel på den här plattformen som har använt detta Microsoft-konto. # options.unlink_msa.confirm.checkbox1=Jag kommer inte längre kunna komma åt butiksinnehåll i spelet när jag spelar på andra plattformar. # options.unlink_msa.confirm.checkbox2=Jag kommer inte längre kunna spela med mina kompisar på andra plattformar. # @@ -6688,7 +6787,7 @@ options.editor.modeDescription.messageWithMouse=Redigeringsläget lägger till k options.editor.modeActive=Minecraft är i redigeringsläge just nu. # options.editor.modeNotActive=Minecraft är inte i redigeringsläge just nu. # options.editor.achievementsDisabled=Det går inte att få achievements i det här projektet. # -options.newUiPlayScreen.initiate=Växla till det nya gränssnittet # +options.newUiPlayScreen.initiate=Nytt UI # options.openPage.continue=Mer information # options.graphicsMode=Grafikläge # options.graphicsMode.simple=Enkla # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=Ladda en värld för att anpassa kontroll hudScreen.controlCustomization.tooltip.notouch=Använd en touchenhet för att anpassa kontrollerna # hudScreen.controlCustomization.tooltip.alreadycustomizing=Skärmen för anpassning av pekkontroller är redan öppen # hudScreen.controlCustomization.tooltip.alive=Spelaren måste vara vid liv för att anpassa kontrollerna. # +hudScreen.daysPlayed=Spelade dagar: %s # +hudScreen.daysPlayed.overflow=För många för att räkna! # playscreen.fileSize.MB=MB # playscreen.fileSize.GB=GB # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=Kastbar läkebrygd # potion.heal.linger.name=Kvardröjande läkebrygd # potion.healthBoost=Hälsobonus # potion.hunger=Hunger # +potion.infested.linger.name=Kvardröjande angreppsbrygd # +potion.infested.name=Angreppsbrygd # +potion.infested.splash.name=Kastbar angreppsbrygd # +potion.infested=Angripen # potion.invisibility=Osynlighet # potion.invisibility.name=Osynlighetsbrygd # potion.invisibility.splash.name=Kastbar osynlighetsbrygd # @@ -7067,6 +7172,10 @@ potion.nightVision=Mörkerseende # potion.nightVision.name=Mörkerseendebrygd # potion.nightVision.splash.name=Kastbar mörkerseendebrygd # potion.nightVision.linger.name=Kvardröjande mörkerseendebrygd # +potion.oozing.linger.name=Kvardröjande sipperbrygd # +potion.oozing.name=Sipperbrygd # +potion.oozing.splash.name=Kastbar sipperbrygd # +potion.oozing=Sipprar # potion.poison=Gift # potion.poison.name=Giftbrygd # potion.poison.splash.name=Kastbar giftbrygd # @@ -7108,6 +7217,14 @@ potion.weakness=Svaghet # potion.weakness.name=Svaghetsbrygd # potion.weakness.splash.name=Kastbar svaghetsbrygd # potion.weakness.linger.name=Kvardröjande svaghetsbrygd # +potion.weaving.linger.name=Kvardröjande vävbrygd # +potion.weaving.name=Vävbrygd # +potion.weaving.splash.name=Kastbar vävbrygd # +potion.weaving=Vävning # +potion.windCharged.linger.name=Kvardröjande vindladdningsbrygd # +potion.windCharged.name=Vindladdningsbrygd # +potion.windCharged.splash.name=Kastbar vindladdningsbrygd # +potion.windCharged=Vind laddad # potion.wither=Wither # potion.wither.name=Förmultningsbrygd # potion.wither.splash.name=Kastbar förmultningsbrygd # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=Den här världen kan inte öppnas p progressScreen.message.forbiddenContent=Du äger inte ett eller flera av de tillämpade paketen # progressScreen.message.loadingSplitScreenAppearances=Laddar gränssnittsutseenden... # progressScreen.message.finishedLoadingSplitScreenAppearances=Laddning av gränssnittsutseenden klar. # -progressScreen.message.modifiedWorldWarning=Den här världen kanske inte fungerar riktigt som andra världar och det går inte att låsa upp achievements. # +progressScreen.message.modifiedWorldWarning.1=Du spelar i en värld med tillägg! Det kommer att läggas till nya funktioner i din Minecraft-värld. # +progressScreen.message.modifiedWorldWarning.2=Nöj dig inte med bara ett! Du kan använda flera tillägg i en och samma värld. # +progressScreen.message.modifiedWorldWarning.3=Avancerat tips: Resurspaket kan ge nya texturer till olika block och entiteter. # +progressScreen.message.modifiedWorldWarning.4=Avancerat tips: Beteendepaket kan ändra hur olika föremål, entiteter och block fungerar. # +progressScreen.message.modifiedWorldWarning.5=Avancerat tips: Tillägg innehåller både ett beteendepaket och resurspaket. Se till att båda paketen är aktiverade för att säkerställa att tillägget fungerar! # +progressScreen.message.modifiedWorldWarning.6=Tillägg kan ge dig nya block, föremål och varelser i dina världar. # +progressScreen.message.modifiedWorldWarning.7=Världar och tillägg är komplicerade! Medan vissa fungerar bra tillsammans kan du få oväntade resultat med andra. # +progressScreen.message.modifiedWorldWarning.8=Du kan ha roligare med fler tillägg, men spelet kan ta längre tid att ladda. # progressScreen.dialog.title.resourcePack=Ladda ned resurspaket? # progressScreen.dialog.title.behaviorAndResourcePack=Ladda ned världens beteende- och resurspaket? # progressScreen.dialog.title.onlyBehavior=Ladda ned världens beteendepaket? # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=Uppdatera världen? # resourcePack.warning.add.body=Den här världen kanske inte fungerar riktigt som andra världar. Du borde spara en kopia av din värld innan du fortsätter. # resourcePack.warning.add.button.cancel=Lägg inte till paket # resourcePack.warning.add.button.ok=Lägg till paketet ändå # +resourcePack.warnings.contentKeyErrorBody=Det gick inte att ladda paketet %s. # +resourcePack.warnings.contentKeyErrorBodyMultiple=Det gick inte att ladda paketen %s. # +resourcePack.warnings.contentKeyErrorTitle=Fel! # resourcePack.warning.remove.title=Det här är farligt! # resourcePack.warning.remove.body=Att lägga till eller ta bort paket efter att ha spelat i en värld kan ha sönder världen och leda till att du förlorar det du har skapat. # resourcePack.warning.remove.button.cancel=Behåll paketet # @@ -7557,7 +7684,9 @@ item.crimson_hanging_sign.name=Hängande karmosinskylt # item.danger_pottery_sherd.name=Varningsmönstrad keramikskärva # item.dark_oak_hanging_sign.name=Hängande mörk ekskylt # item.explorer_pottery_sherd.name=Upptäcktsmönstrad keramikskärva # +item.flow_pottery_sherd.name=Flödes-keramikskärva # item.friend_pottery_sherd.name=Kompismönstrad keramikskärva # +item.guster_pottery_sherd.name=Stormande keramikskärva # item.heart_pottery_sherd.name=Hjärtmönstrad keramikskärva # item.heartbreak_pottery_sherd.name=Hjärtekrossmönstrad keramikskärva # item.howl_pottery_sherd.name=Vargmönstrad keramikskärva # @@ -7568,6 +7697,7 @@ item.mourner_pottery_sherd.name=Sörjarmönstrad keramikskärva # item.oak_hanging_sign.name=Hängande ekskylt # item.plenty_pottery_sherd.name=Ymnighetsmönstrad keramikskärva # item.prize_pottery_sherd.name=Prismönstrad keramikskärva # +item.scrape_pottery_sherd.name=Skrapande keramikskärva # item.sheaf_pottery_sherd.name=Kärvemönstrad keramikskärva # item.shelter_pottery_sherd.name=Vindskyddsmönstrad keramikskärva # item.skull_pottery_sherd.name=Kraniummönstrad keramikskärva # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=Körsbärstrappa # tile.cherry_trapdoor.name=Körsbärsfallucka # tile.cherry_wood.name=Körsbärsträ # tile.chiseled_bookshelf.name=Mejslad bokhylla # +tile.chiseled_tuff.name=Mejslad tuff # +tile.chiseled_tuff_bricks.name=Mejslat tufftegel # tile.decorated_pot.name=Dekorerad kruka # tile.pink_petals.name=Rosa kronblad # tile.stripped_bamboo_block.name=Skalat bambublock # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=Vålnad-rustningsdetaljer # trim_pattern.ward.name=Skydds-rustningsdetaljer # trim_pattern.wayfinder.name=Stigfinnarrustningsdetaljer # trim_pattern.wild.name=Vilda rustningsdetaljer # +trim_pattern.bolt.name=Bult-rustningsdetaljer # +trim_pattern.flow.name=Flödes-rustningsdetaljer # upgrade.netherite_upgrade.name=Netherituppgradering # storageManager.mainSizeLabel=%s - 1 föremål # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=Radera världsmallen? # selectTemplate.delete=Radera # selectTemplate.myTemplates=Mina världsmallar # selectTemplate.realmsPlus=Utvalda Realms Plus-mallar # -selectTemplate.marketplacePass=Utvalda Marketplace Pass-mallar #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=Utvalt Marketplace Pass-innehåll #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=Importerade mallar # selectTemplate.download=Ladda ned # selectTemplate.noTemplates=Det finns inga världsmallar på den här enheten. # -selectTemplate.suggestedContent.title=Utvalda mallar på marknaden # +selectTemplate.suggestedContent.title=Utvalt innehåll på marknaden # selectTemplate.suggestedContent.button=Visa fler mallar # selectTemplate.createdBy=Av %s # selectTemplate.inventory=Mina marknadspaket # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=Ett problem har inträffat med anslutningen. Gå store.loading.error.issues=Ett problem har inträffat med marknaden. Försök senare. # store.loading.error.internetDown=Du verkar inte vara ansluten till internet. # store.loading.error.account=Ett problem har inträffat med ditt konto. Försök senare. Kontakta kundtjänst om problemet kvarstår. # +store.loading.error.account.banned=Du kan inte använda marknaden förrän avstängningen upphör. # store.giftPromo.day=Dag %s ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=Hämtat # @@ -8405,10 +8540,17 @@ store.mashup.count.skin=1 utseende # store.mashup.count.skins=%s utseenden # store.mashup.count.texturePack=1 texturpaket # store.mashup.count.texturePacks=%s texturpaket #number of texture packs # -store.mashup.count.world=1 värld # +store.mashup.count.world=1 värld # store.mashup.count.worlds=%s världar #number of worlds # store.mashup.count.addonPack=1 tillägg # store.mashup.count.addonPacks=%s tillägg #number of addons # +store.mashup.count.mashup=Mixpaket # +store.mashup.hover.label.addonPack=Tillägg kan användas i alla världar. # +store.mashup.hover.label.world=En handgjord Minecraft-karta. # +store.mashup.hover.label.skin=Ge din karaktär ett nytt utseende. # +store.mashup.hover.label.texturePack=Lägg till ett nytt utseende i din värld eller i ditt spelgränssnitt. # +store.mashup.hover.label.mashup.lineOne=En kombination av olika typer av innehåll. # +store.mashup.hover.label.mashup.lineTwo=Mixpaketet innehåller: # store.addon.activateAddonPack=Aktivera tillägg! # store.addon.newOrExistingTitle=Var lägger man till det? # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=Svart tavla # tile.chest.name=Kista # tile.ender_chest.name=Enderkista # tile.jigsaw.name=Pusselblock # +tile.heavy_core.name=Tung kärna # tile.honey_block.name=Honungsblock # tile.honeycomb_block.name=Honungskaksblock # tile.lodestone.name=Lodsten # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=Polerad svarstensplatta # tile.polished_blackstone_pressure_plate.name=Tryckplatta av polerad svartsten # tile.polished_blackstone_button.name=Knapp av polerad svartsten # tile.polished_blackstone_wall.name=Vägg av polerad svartsten # +tile.polished_tuff.name=Polerad tuff # +tile.polished_tuff_slab.name=Polerad tuffplatta # +tile.polished_tuff_stairs.name=Polerad tufftrappa # +tile.polished_tuff_wall.name=Polerad tuffvägg # tile.soul_campfire.name=Själslägereld # tile.chiseled_nether_bricks.name=Huggna Nether-tegelstenar # tile.cracked_nether_bricks.name=Spruckna Nether-tegelstenar # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=Gul terrakotta # tile.structure_block.name=Strukturblock # structure_block.waterlog_block=Vattenfyll block # tile.structure_void.name=Strukturerat tomrum # +tile.trial_spawner.name=Utmaningsspawnare # +tile.vault.name=Valv # tile.wool.black.name=Svart ull # tile.wool.blue.name=Blå ull # tile.wool.brown.name=Brun ull # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=Ormbunke # tile.tallgrass.grass.name=Gräs # tile.tallgrass.name=Gräs # tile.tallgrass.shrub.name=Buskage # +tile.tuff_brick_slab.name=Tufftegelplatta # +tile.tuff_brick_stairs.name=Tufftegeltrappa # +tile.tuff_brick_wall.name=Tufftegelmur # +tile.tuff_bricks.name=Tufftegel # +tile.tuff_slab.name=Tuffplatta # +tile.tuff_stairs.name=Tufftrappa # +tile.tuff_wall.name=Tuffvägg # tile.seagrass.seagrass.name=Sjögräs # tile.sea_pickle.name=Havsgurka # tile.turtle_egg.name=Havssköldpaddsägg # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=Röd matta # tile.carpet.silver.name=Ljusgrå matta # tile.carpet.white.name=Vit matta # tile.carpet.yellow.name=Gul matta # +tile.crafter.name=Tillverkare # tile.crafting_table.name=Arbetsbänk # tile.glazedTerracotta.white.name=Vitglaserad terrakotta # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=Vaxad huggen kopparplatta # tile.waxed_exposed_cut_copper_slab.name=Vaxad exponerad huggen kopparplatta # tile.waxed_weathered_cut_copper_slab.name=Vaxad nött huggen kopparplatta # tile.waxed_oxidized_cut_copper_slab.name=Vaxad oxiderad huggen kopparplatta # + +tile.chiseled_copper.name=Mejslad koppar # +tile.exposed_chiseled_copper.name=Exponerad mejslad koppar # +tile.oxidized_chiseled_copper.name=Oxiderad mejslad koppar # +tile.waxed_chiseled_copper.name=Vaxad mejslad koppar # +tile.waxed_exposed_chiseled_copper.name=Vaxad och exponerad mejslad koppar # +tile.waxed_oxidized_chiseled_copper.name=Vaxad och oxiderad mejslad koppar # +tile.waxed_weathered_chiseled_copper.name=Vaxad och nött mejslad koppar # +tile.weathered_chiseled_copper.name=Nött mejslad koppar # + +tile.copper_bulb.name=Kopparlampa # +tile.exposed_copper_bulb.name=Exponerad kopparlampa # +tile.oxidized_copper_bulb.name=Oxiderad kopparlampa # +tile.waxed_copper_bulb.name=Vaxad kopparlampa # +tile.waxed_exposed_copper_bulb.name=Vaxad oach exponerad kopparlampa # +tile.waxed_oxidized_copper_bulb.name=Vaxad oxiderad kopparlampa # +tile.waxed_weathered_copper_bulb.name=Vaxad och nött kopparlampa # +tile.weathered_copper_bulb.name=Nött kopparlampa # + +tile.copper_door.name=Koppardörr # +tile.exposed_copper_door.name=Exponerad koppardörr # +tile.oxidized_copper_door.name=Oxiderad koppardörr # +tile.waxed_copper_door.name=Vaxad koppardörr # +tile.waxed_exposed_copper_door.name=Vaxad och exponerad koppardörr # +tile.waxed_oxidized_copper_door.name=Vaxad och oxiderad koppardörr # +tile.waxed_weathered_copper_door.name=Vaxad och nött koppardörr # +tile.weathered_copper_door.name=Nött koppardörr # + +tile.copper_grate.name=Koppargaller # +tile.exposed_copper_grate.name=Exponerat koppargaller # +tile.oxidized_copper_grate.name=Oxiderat koppargaller # +tile.waxed_copper_grate.name=Vaxat koppargaller # +tile.waxed_exposed_copper_grate.name=Vaxat och exponerat koppargaller # +tile.waxed_oxidized_copper_grate.name=Vaxat och oxiderat koppargaller # +tile.waxed_weathered_copper_grate.name=Vaxat och nött koppargaller # +tile.weathered_copper_grate.name=Nött koppargaller # + +tile.copper_trapdoor.name=Kopparfallucka # +tile.exposed_copper_trapdoor.name=Exponerad kopparfallucka # +tile.oxidized_copper_trapdoor.name=Oxiderad kopparfallucka # +tile.waxed_copper_trapdoor.name=Vaxad kopparfallucka # +tile.waxed_exposed_copper_trapdoor.name=Vaxad exponerad kopparfallucka # +tile.waxed_oxidized_copper_trapdoor.name=Vaxad och oxiderad kopparfallucka # +tile.waxed_weathered_copper_trapdoor.name=Vaxad och nött kopparfallucka # +tile.weathered_copper_trapdoor.name=Nött kopparfallucka # + tile.raw_copper_block.name=Råkopparblock # tile.raw_iron_block.name=Råjärnsblock # tile.raw_gold_block.name=Råguldsblock # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=Turpil # tipped_arrow.effect.wither=Förmultningspil # tipped_arrow.effect.turtleMaster=Sköldpaddsmästarens pil # tipped_arrow.effect.slowFalling=Pil för långsamma fall # +tipped_arrow.effect.infested=Angreppspil # +tipped_arrow.effect.oozing=Sipperpil # +tipped_arrow.effect.weaving=Vävpil # +tipped_arrow.effect.windCharged=Vindladdningspil # structure_block.title=Strukturblock # structure_block.structure_name=Strukturnamn # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=Några av de senaste ändringarna kan worldError.worldFailedRecovery=Reparationen misslyckades # worldError.worldFailedRecoveryText=Vi hittade en skadad värld, men kunde inte reparera den. # +writeThrottling.osDialog.body=Den begärda åtgärden beräknas ta %d minuter att slutföra. Stäng inte av enheten under tiden. # +writeThrottling.osDialog.cancel=Avbryt åtgärd # +writeThrottling.osDialog.confirm=Fortsätt # +writeThrottling.progressBar.title=Förbereder data # +writeThrottling.progressBar.body=Förbereder dina filer… # + userData.recovered.title=Sparfil reparerad # userData.recovered.text=Dina skadade användarinställningar har reparerats. # userData.recovered.warning=Några av de senaste ändringarna kan ha gått förlorade i reparationen. # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=Chattmeddelande # xbox.report.area.skin=Spelarutseende # xbox.report.area.gameplay=Spelets gång # xbox.report.area.ingame=Spelskapelser # -xbox.report.area.other=Annat # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=Cybermobbning # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=Det gick inte att ansluta. Försök igen s gathering.connect.title=Ansluter ... # gathering.info.qr.title.onlineService=Läs mer # gathering.info.qr.body.onlineService.nso=Du behöver ett Nintendo Switch Online-medlemskap för att delta i evenemang i Minecraft. # -gathering.info.qr.body.onlineService.psn=Du måste vara inloggad på \"PlayStation Plus\" för att delta i evenemang i Minecraft. # +gathering.info.qr.body.onlineService.psn=Du måste vara inloggad på PlayStation®Plus för att delta i evenemang i Minecraft. #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=Du måste vara inloggad för att delta i evenemang i Minecraft. # gathering.info.qr.title.childAccount=Onlinespel är inte tillåtet # gathering.info.qr.body.childAccount=Dina nuvarande föräldrakontroller begränsar dig från att spela online. # diff --git a/resource_pack/texts/tr_TR.lang b/resource_pack/texts/tr_TR.lang index d7dfae460..334210d06 100644 --- a/resource_pack/texts/tr_TR.lang +++ b/resource_pack/texts/tr_TR.lang @@ -92,11 +92,11 @@ accessibility.index= %s/%s ### This is numbering, which number out of the total accessibility.slider.tts.percentValue=Yüzde %s # accessibility.play.editWorld=Dünyayı Düzenle # -accessibility.play.editRealm=Bölgeyi Düzenle # +accessibility.play.editRealm=Realm'i Düzenle # accessibility.play.editServer=Sunucuyu Düzenle # accessibility.play.importWorld=Dünyayı İçeri Aktar # -accessibility.play.leaveRealm=Bölgeden Ayrıl # -accessibility.play.realmFeed=Bölge Akışı # +accessibility.play.leaveRealm=Realm'den Ayrıl # +accessibility.play.realmFeed=Realm Akışı # accessibility.play.noNewPosts=Yeni gönderi yok # accessibility.play.singleNewPost=1 yeni gönderi # accessibility.play.multipleNewPosts=%s yeni gönderi ### %s will be a number @@ -132,7 +132,7 @@ accessibility.screenName.pause=Oyun menüsü # accessibility.screenName.permissions=İzinler Ekranı # accessibility.screenName.play=Oyna Ekranı # accessibility.screenName.profile=Profil Ekranı # -accessibility.screenName.realmSettings=Bölge Ayarları Ekranı # +accessibility.screenName.realmSettings=Realm Ayarları Ekranı # accessibility.screenName.settings=Oyun Ayarları Ekranı # accessibility.screenName.addFriend=Arkadaş Ekle Ekranı # accessibility.screenName.skinPicker=Dış Görünüş Seç Ekranı # @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=Tohum Seç # accessibility.start.feedback=Web Sitesinin Geri Bildirim Gönder Bağlantısı # accessibility.start.new=Yeni # -accessibility.start.profile=Profil Seç # accessibility.start.skinPicker=Dış Görünüş Seç # accessibility.store.tag=Etiket # @@ -329,7 +328,7 @@ achievement.snipeSkeleton.desc=50 metreden uzak mesafeden okla bir iskelet öld achievement.spawnWither=Başlangıç? # achievement.spawnWither.desc=Çağır: Wither # achievement.taken=Alındı! # -achievement.theEnd=The End? # +achievement.theEnd=Son mu? # achievement.theEnd.desc=The End'i yerleştirin # achievement.theEnd2=The End. # achievement.theEnd2.desc=Bir Ender Ejderhasını yenin # @@ -549,7 +548,7 @@ chat.link.open=Tarayıcıda aç # chat.link.warning=Güvenmediğiniz kişilerden gelen bağlantıları hiçbir zaman açmayın! # chat.mentions.autocomplete.allPlayers=tüm oyunculardan bahset # chat.mute=Sohbeti Sessize Al # -chat.realmsFilterDisabled=Bu Bölgenin sohbet filtresi kapalı. # +chat.realmsFilterDisabled=Bu Realm'in sohbet filtresi kapalı. # chat.settings=Sohbet Ayarları # chat.settings.defaultChatColor=Varsayılan Sohbet Rengi # chat.settings.chatColor=Sohbet Rengi # @@ -1094,10 +1093,6 @@ commands.me.description=Sizin hakkınızda bir mesaj görüntüler. # commands.message.display.incoming=%1$s size fısıldıyor: %2$s # commands.message.display.outgoing=%1$s kişisine fısıldıyorsunuz: %2$s # commands.message.sameTarget=Kendinize özel mesaj gönderemezsiniz! # -commands.message.warn=§4Size bir uyarı gönderildi. Davranışlarınız, diğer oyuncular tarafından saldırgan bulunmuş olabilir. Lütfen birlikte oynadığınız kişilere dikkatli davranın. # -commands.message.toastWarn=Minecraft herkes içindir! Lütfen topluluk standartlarımıza uygun bir şekilde davrandığınızdan emin olun. # -commands.warn.invalidWarningLevel=Geçersiz uyarı düzeyi. # -commands.warn.playerDoesNotExist=Oyuncu bulunamadı. Lütfen geçerli bir oyuncu seçin. # commands.mobevent.description=Mob olaylarının çalıştırılmasına izin verilen durumları kontrol eder. # commands.mobevent.eventsEnabledSetToTrue=Mob Olayları şimdi etkin. False olarak ayarlanmış tekil olaylar çalışmayacak. # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=- %s: %d %d %d içinden %d %d %d konumu commands.volumearea.entry.withoutIdentifier=- %s: %d %d %d içinden %d %d %d konumuna # commands.volumearea.noneExist.currentDimension=Geçerli boyutta birim yok. # commands.volumearea.inUse=%1$d/%2$d birim kullanılıyor. # -commands.warn.description=Oyuncuya bir uyarı mesajı gönderir. # commands.weather.clear=Hava durumu açık olarak değiştiriliyor # commands.weather.description=Hava durumunu ayarlar. # commands.weather.disabled=Bu dünyada Hava Durumu Döngüsü etkin değil. # @@ -1572,6 +1566,7 @@ container.beacon=İşaret Işığı # container.brewing=Simya Standı # container.chest=Sandık # container.chestDouble=Büyük Sandık # +container.crafter=Usta # container.crafting=Eşya Yapma # container.creative=Eşya Seçimi # container.dispenser=Dağıtıcı # @@ -1840,7 +1835,7 @@ createWorldUpsell.realm.sellPoint1=Sınırsız üye ekle ve en fazla §d%d§r ar createWorldUpsell.realm.sellPoint2=Çevrimiçi kaydedildi: Minecraft Market ile herhangi bir Minecraft cihazında oynayın # createWorldUpsell.realm.sellPoint3=Cihazınızda hiç yer kaplamaz # createWorldUpsell.realm.sellPoint4=Arkadaşlarınız, uzakta olduğunuzda bile oynayabilirler # -createWorldUpsell.signIn=Microsoft Hesabı ile Bölge Oluştur # +createWorldUpsell.signIn=Microsoft Hesabı ile Realm Oluştur # createWorldUpsell.world.sellPoint1=7 arkadaşınızla çevrimiçi oynayın # createWorldUpsell.world.sellPoint2=Cihazınıza kaydedildi: Çevrimiçi oynayın # createWorldUpsell.world.sellPoint3=Cihaz hafızasını kullanır # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=Mağaralar ve Kayalıklar # createWorldScreen.cavesandcliffsDescription=Yeni çeşitli mağara oluşumunu keşfet # createWorldScreen.spectatorMode=İzleyici Modu # createWorldScreen.spectatorModeDescription=İzleyici Modu'nun ilk sürümlerini dene # -createWorldScreen.experimentalCameras=Deneysel Kameralar # -createWorldScreen.experimentalCamerasDescription=Örnek kamera ön ayarlarını içerir (kamera komutu artık deneysel değildir) # createWorldScreen.recipeUnlocking=Tarif Kilidini Açma # createWorldScreen.recipeUnlockingDescription=Tarif kilidini açmayı etkinleştir # createWorldScreen.experimentalholiday=Tatil Oluşturucu Özellikleri # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=Yeni dünya oluşturuluyor... # createWorldScreen.progress.realms=Realm Sıfırlanıyor... # createWorldScreen.seed.desc=Aynı araziyi tekrar oluşturmak için bir tohum yerleştirin. Karışık bir dünya için boş bırakın. # createWorldScreen.showCoordinates=Koordinatları Göster # +createWorldScreen.showDaysPlayed=Oynanan Günleri Göster # createWorldScreen.worldType=Dünya Türü # createWorldScreen.randomtickspeed=Rastgele İşaretleme Hızı # createWorldScreen.randomtickspeed.reset=Rastgele İşaretleme Hızını Sıfırla # @@ -1953,7 +1947,7 @@ createWorldScreen.disconnectedXboxLive=Microsoft hizmetlerine bağlı değilsini createWorldScreen.clearPlayerData.button=Oyuncu Verilerini Temizle # createWorldScreen.clearPlayerData.title=Oyuncu Verileri Dünyadan Silinsin mi? # createWorldScreen.clearPlayerData.body1=Tüm oyuncu verilerini dünyadan kesin olarak silmek için "Tüm Oyuncu Verileri" öğesini seçin. Dünyaya bir dahaki sefer herhangi bir oyuncu girdiğinde yeni, varsayılan verilerle dünyayı başlatacak. # -createWorldScreen.clearPlayerData.body2="Oyuncu Verilerine Sahip Olmaya Devam Et" öğesi seçildiğinde, mevcut verileriniz (envanter eşyaları ve konumu gibi) korunur ve 'Dünya Sahibi' unvanı verilir. Bu oyuncu, dünyayı yerel olarak yükleyen veya üzerinde bulunduğu bölgenin sahibi olan herhangi bir oyuncu olabilir. # +createWorldScreen.clearPlayerData.body2=''Oyuncu Verilerine Sahip Olmaya Devam Et'' ögesi seçildiğinde mevcut verileriniz (envanter eşyaları ve konum gibi) korunur ve 'Dünya Sahibi' unvanı verilir. Bu oyuncu, dünyayı yerel olarak yükleyen veya üzerinde bulunduğu bölgenin sahibi olan herhangi bir oyuncu olabilir. # createWorldScreen.clearPlayerData.all=Tüm Oyuncu Verileri # createWorldScreen.clearPlayerData.allExceptLocal=Oyuncu Verilerine Sahip Olmaya Devam Et # createWorldScreen.clearPlayerData.cancel=İptal # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=Projeyi Sil # createWorldScreen.editor.projectOptionsLabel=Proje Seçenekleri # createWorldScreen.editor.delete.confirm=Proje kalıcı olarak silinsin mi? # createWorldScreen.editor.deleteWarningFormat="%s" ögesini silmek istediğinden emin misin? Bu proje sonsuza dek kaybolacak! # +createWorldScreen.eduCloud.about.body=Dosya adı: '%1$s'%2$sSon güncelleme: %3$s%4$sİndirmek için Tamam'a ve ardından İndir'e tıklayın.%5$s # +createWorldScreen.eduCloud.about.title=Bulut Dünyası Dosyası Hakkında # createWorldScreen.eduCloud.delete.confirm=Yerel dünya silinsin mi? # createWorldScreen.eduCloud.deleteWarningFormat=Bu cihazdaki ''%1$s'' ögesini silmek istediğinizden emin misiniz?%2$s '%3$s' bulut sürümü etkilenmeyecektir ve daha sonra yeniden senkronize edilebilir. # createWorldScreen.experimentalDeferredTechnicalPreview=İçerik Üreticiler için Ejder Özellikleri İşlemesi # @@ -2012,11 +2008,11 @@ realmsInvitationScreen.blocked=Engellendi # realmsInvitationScreen.myRealm=Realm'ım # realmsInvitationScreen.fetchingLink=Yeni bağlantı getiriliyor... # realmsInvitationScreen.fetchingCode=Yeni davet kodu getiriliyor... # -realmsInvitationScreen.shareTitle=Bölge Davetiyesi # -realmsInvitationScreen.shareText=Bu bölgede bana katıl! # +realmsInvitationScreen.shareTitle=Realms Davetiyesi # +realmsInvitationScreen.shareText=Bu Realm'de bana katıl! # realmsInvitationScreen.refreshDialogTitle=Geçerli Bağlantı Devre Dışı Bırakılsın mı? # realmsInvitationScreen.refreshDialogLabel=Bu işlem geçerli bağlantıyı devre dışı bırakıp yeni bir bağlantı oluşturacak. Daha önce üye olmuş herkes Realm'ına katılabilecektir. # -realmsInvitationScreen.createLinkDialogTitle=Bölge Bağlantısı Oluşturulsun mu? # +realmsInvitationScreen.createLinkDialogTitle=Realm Bağlantısı Oluşturulsun mu? # realmsInvitationScreen.createLinkDialogLabel=Bu bağlantıyı açan herkes Realm'ının üyesi olur. Yeni bir bağlantı oluşturarak bağlantıyı devre dışı bırakabilirsin. # realmsInvitationScreen.shareDialogTitle=Paylaşmadan Önce Yedek İndirilsin mi? # realmsInvitationScreen.shareDialogLabel=Bu bağlantıya sahip olan herkes Realm'ının üyesi olabilir. Bağlantıyı kimlerle paylaştığına dikkat et. Öncelikle dünyanın bir yedeğini indirmek isteyebilirsin. Realm ayarlarından üyeleri çıkarabilirsin. # @@ -2030,9 +2026,9 @@ realmsInvitationScreen.disable=Devre Dışı Bırak # realmsInvitationScreen.backup=İndir # realmsInvitationScreen.shareByLink=Bağlantıyı paylaş # realmsInvitationScreen.shareByCode=Davet kodunu paylaş # -realmsInvitationScreen.shareLinkToRealm=Bölge bağlantısını paylaş # +realmsInvitationScreen.shareLinkToRealm=Realm bağlantısını paylaş # realmsInvitationScreen.shareCodeToRealm=Davet kodunu Realm ile paylaş # -realmsInvitationScreen.shareInfoMessage=Bu bağlantıya sahip olan herkes Bölgenize katılabilir. Dünyanızın bir yedeğini indirmek için Oyun > Dünyayı İndir menüsüne gidin. # +realmsInvitationScreen.shareInfoMessage=Bu bağlantıya sahip olan herkes Realm'inize katılabilir. Dünyanızın bir yedeğini indirmek için Oyun > Dünyayı İndir menüsüne gidin. # realmsInvitationScreen.shareInfoMessageCode=Davet koduna sahip olan herkes Realm'ına katılabilir. Dünyanın bir yedeğini indirmek için Oyun > Dünyayı İndir seçeneğine git. # realmsInvitationScreen.refreshLinkInfoMessage=Bu işlem eski bağlantıyı geçersiz hale getirip yeni bir bağlantı oluşturur. Devam etmek istiyor musunuz? # realmsInvitationScreen.refreshCodeInfoMessage=Bu işlem eski davet kodunu geçersiz hale getirip yeni bir tane oluşturacak. Devam etmek istiyor musun? # @@ -2040,31 +2036,31 @@ realmsInvitationScreen.kick=Kaldır # realmsInvitationScreen.kickAndBlock=Engelle # realmsInvitationScreen.kickPopupTitle=Erişim İptal Edilsin mi? # realmsInvitationScreen.kickPopupText=Bu oyuncunun erişimini iptal etmek istiyor musunuz? Bu işlemi dilediğiniz zaman geri alabilirsiniz. # -realmsInvitationScreen.copyToastMessage=Bölgenizin bağlantısı panoya kopyalandı! # +realmsInvitationScreen.copyToastMessage=Realm'inizin bağlantısı panoya kopyalandı! # realmsInvitationScreen.playerFilterTitle=Oyuncuları filtrele # realmsInvitationScreen.setPermissionFail=%s kullanıcısı için izin ayarlanamadı. # realmsInvitationScreen.setDefaultPermissionFail=Varsayılan izinler ayarlanamadı. # -realmJoining.progressTitle=Bölgeye Katılıyor... # +realmJoining.progressTitle=Realm'e Katılıyor... # realmsClearMembers.clearMembersTitle=Üyeler Temizlensin mi? # -realmsClearMembers.clearMembersText=Bu bölgenin üye listesini temizlemek istiyor musunuz? # +realmsClearMembers.clearMembersText=Bu Realm'in üye listesini temizlemek istiyor musunuz? # realmsClearMembers.clear=Üyeleri Temizle # realmsSharingScreen.join=Katıl # -realmsSharingScreen.joinTitle=Bölgeye katılacak mısınız? # -realmsSharingScreen.joinMessage=%s bölgesine katılacak mısınız? # +realmsSharingScreen.joinTitle=Realm'e katılacak mısınız? # +realmsSharingScreen.joinMessage=%s Realm'ine katılacak mısınız? # realmsSharingScreen.blockedInviteTitle=Oyuncu Engellendi # realmsSharingScreen.blockedInviteMessage=Ne yazık ki engellendin! Realm'ın sahibinden seni Engellenenler listesinden çıkarmasını iste. # -realmsSharingScreen.badInviteTitle=Geçersiz Bölge Bağlantısı # +realmsSharingScreen.badInviteTitle=Geçersiz Realm Bağlantısı # realmsSharingScreen.badInviteMessage=Davet bağlantısı yanlış veya devre dışı bırakılmış. Realm'ın sahibinden güncellenmiş bir bağlantı iste ve bağlantıyı doğru şekilde girdiğinden emin ol. # realmsSharingScreen.regenerateLinkFailed=Yeni davet bağlantısı oluşturulamadı # -realmsSharingScreen.cantJoinExpiredTitle=%s kullanıcısına ait Bölgenin süresi doldu # +realmsSharingScreen.cantJoinExpiredTitle=%s kullanıcısına ait Realm'in süresi doldu # realmsSharingScreen.cantJoinExpiredMessage=%s bölgesinin süresi doldu. %s adlı kullanıcıdan yenilemesini isteyin. # -realmsSharingScreen.cantJoinClosedTitle=%s bu Bölgeyi kapattı # +realmsSharingScreen.cantJoinClosedTitle=%s bu Realm'i kapattı # realmsSharingScreen.cantJoinClosedMessage=%s kapalı. %s adlı oyuncudan yeniden açmasını iste. # -realmsSharingScreen.failedSignInModalTitle=Bu Bölgeye katılmak için oturum açın # -realmsSharingScreen.failedSignInModalMessage=Bir Bölgeye katılmak için Microsoft Hesabıyla oturum açmanız gerekir. Lütfen oturum açıp tekrar deneyin. # +realmsSharingScreen.failedSignInModalTitle=Bu Realm'e katılmak için oturum açın # +realmsSharingScreen.failedSignInModalMessage=Bir Realm'e katılmak için Microsoft Hesabıyla oturum açmanız gerekir. Lütfen oturum açıp tekrar deneyin. # realmsSharingScreen.invalidPermissionTitle=Geçersiz izinler # realmsSharingScreen.unexpectedServerResponseTitle=Realms Hatası # realmsSharingScreen.unexpectedServerResponseMessage=Ne yazık ki Realm'a bağlanırken bir sorun yaşadık. Lütfen daha sonra tekrar dene. # @@ -2100,9 +2096,9 @@ realmsCreateScreen.errorTOS=Bir realm oluşturmak için hizmet koşullarını ka realmsCreateScreen.goBack=Geri Git # realmsCreateScreen.contactSupport=Destek'le iletişime geçin # realmsCreateScreen.createFailed.title=Bir Şeyler Ters Gitti # -realmsCreateScreen.purchaseFailed=Ne yazık ki bölge satın alma işleminizi tamamlayamadık. İnternet bağlantınızı kontrol eder misiniz? # +realmsCreateScreen.purchaseFailed=Ne yazık ki Realm satın alma işleminizi tamamlayamadık. İnternet bağlantınızı kontrol eder misiniz? # realmsCreateScreen.createFailed.content=Satın alma işleminiz tamamlandı ancak şimdilik Realm'ınızı oluşturamadık. En kısa zamanda oluşturacağız. Bu cihazdan daha sonra tekrar kontrol sağlayın. Sorun bir günden fazla sürerse lütfen Mojang Destek ile iletişime geçin. # -realmsCreateScreen.createFailed.profanity=Bölge adı olarak %s kullanılamaz. # +realmsCreateScreen.createFailed.profanity=Realm adı olarak %s kullanılamaz. # realmsCreateScreen.createFailed.generic=Kulüp adı doğrulanamadı. Lütfen daha sonra tekrar deneyin. # realmsCreateScreen.maxRealms.title=Maksimum Abonelik Sayısı # realmsCreateScreen.maxRealms.content=Bu platformda maksimum etkin abonelik sayısına ulaştınız ve şu anda yeni bir abonelik oluşturamazsınız. # @@ -2123,8 +2119,8 @@ realmsCreateScreen.incomplete.create.a=Son girdiğinde her şey tamamlanmamış realmsCreateScreen.incomplete.create.b=Görünüşe göre farklı bir Microsoft Hesabıyla realm oluşturmaya başladın. Realm oluşturma işlemini sahibi olduğun bu Microsoft Hesabı ile tamamlamak istiyor musun? # realmsCreateScreen.incomplete.create.c=Birisi bu cihazdaki fatura hesabıyla Realm oluşturmaya başladı. Realm oluşturmayı sahibi olduğun bu Microsoft Hesabı ile tamamlamak istiyor musun? # realmsCreateScreen.incomplete.renew.a=Son girdiğinde her şey tamamlanmamış gibi görünüyor. Haydi realm'ını yenilemeyi şimdi tamamlayalım. # -realmsCreateScreen.incomplete.renew.b=Görünüşe göre farklı bir Microsoft Hesabı ile bölgeyi yenilemeye başladınız. Bölge yenileme işlemini sahibi olduğunuz bu Microsoft Hesabıyla tamamlamak istiyor musunuz? # -realmsCreateScreen.incomplete.renew.c=Birisi bu cihazda fatura hesabıyla bir bölgeyi yenilemeye başladı. Bölge yenileme işlemini sahibi olduğunuz bu Microsoft Hesabı ile tamamlamak istiyor musunuz? # +realmsCreateScreen.incomplete.renew.b=Görünüşe göre farklı bir Microsoft Hesabı ile Realm'i yenilemeye başladınız. Realm yenileme işlemini sahibi olduğunuz bu Microsoft Hesabıyla tamamlamak istiyor musunuz? # +realmsCreateScreen.incomplete.renew.c=Birisi bu cihazda fatura hesabıyla bir Realm'i yenilemeye başladı. Realm yenileme işlemini sahibi olduğunuz bu Microsoft Hesabı ile tamamlamak istiyor musunuz? # realmsCreateScreen.incomplete.override.renew=Yeni bir realm oluşturmaya çalışıyorsun ancak bir realm'ı yenilemek için daha önce yapılan bir satın alma işlemi bulundu. Bu satın alma işlemini şimdi uygulamak ister misin? # realmsCreateScreen.incomplete.override.create=Bir realm'ı yenilemeye çalışıyorsun ancak realm oluşturmak için daha önce yapılan bir satın alma işlemi bulundu. Bu satın alma işlemini şimdi uygulamak ister misin? # realmsCreateScreen.incomplete.override.realm=Bir realm'ı yenilemeye çalışıyorsun ancak farklı bir realm için daha önce yapılan bir satın alma işlemi bulundu. Bu satın alma işlemini şimdi uygulamak ister misin? # @@ -2194,7 +2190,7 @@ raytracing.RTX.name=RTX ###Brand name, don't localize network.onlinePlay.title=Arkadaşlarla Oyna # network.onlinePlay.msg=Arkadaşlarınızı dünyalarınıza davet edebilir, arkadaşlarınızın oluşturduklarını görüntüleyebilir ve birbirinizin dünyalarında nesne oluşturabilirsiniz. # -network.onlinePlay.instruction=Oyna menüsünden arkadaşlarınızın dünyalarına katılabilir veya arkadaşlarınızı dünyalarınıza ve Bölgelerinize davet edebilirsiniz. # +network.onlinePlay.instruction=Oyna menüsünden arkadaşlarınızın dünyalarına katılabilir veya arkadaşlarınızı dünyalarınıza ve Realm'lerinize davet edebilirsiniz. # network.thirdparty.connect.splitscreen=Bölünmüş ekranda çevrimiçi çok oyunculu oyun oynamak için bir %s hesabıyla oturum aç. # network.thirdparty.connect.benefit=Arkadaşlarınızla çevrimiçi oynamak ve mağazadaki harika şeylere göz atmak için %s ile oturum açın. # network.thirdparty.connect.store=Mağazaya göz atmak için bir %s gereklidir. # @@ -2219,7 +2215,7 @@ networkWorld.joinable_friends_label=Katılabilecek Arkadaşlar # networkWorld.no_joinable_friends_label=Arkadaşlarınız şu anda Minecraft oynamıyor. # networkWorld.check_internet_connection=Hop! İnternet bağlantınızı mı kontrol etseniz? Arkadaşlarınızın dünyalarını bulamıyoruz. # networkWorld.connect_to_xbl=Arkadaşlarınızla oynamak için bir Microsoft Hesabıyla oturum açın. # -networkWorld.memberOfTooManyRealms=Bölge üyeliği limitine ulaştınız. # +networkWorld.memberOfTooManyRealms=Realm üyeliği limitine ulaştınız. # networkWorld.multiplayerPrivilegesBlocked=Microsoft Hesabınızın ayarı nedeniyle çevrimiçi çok oyunculu oyunlar oynayamazsınız. Lütfen çevrimiçi güvenlik ayarlarınızın Çok Oyunculu oyuna izin verdiğinden emin olun. Bu ayarları değiştirme yönergeleri için aka.ms/MCMultiplayerHelp sayfasına gidin. # networkWorld.multiplayerPrivilegesBlockedOnConsole=Microsoft Hesabınızın ayarı nedeniyle çevrimiçi çok oyunculu oyunlar oynayamazsınız. Lütfen çevrimiçi güvenlik ayarlarınızın Çok Oyunculu oyuna izin verdiğinden ve etkin bir Xbox Live Gold aboneliğine sahip olduğunuzdan emin olun. Bu ayarları değiştirme yönergeleri için aka.ms/MCMultiplayerHelp sayfasına gidin. ###disable_3rd_party_console_resource_pack_check networkWorld.multiplayerPrivilegesBlockedOnConsoleGamecore=Microsoft Hesabınızın ayarı nedeniyle çevrimiçi çok oyunculu oyunlar oynayamazsınız. ###disable_3rd_party_console_resource_pack_check @@ -2231,9 +2227,9 @@ networkWorld.lost_connection.needs_restart=Bağlantınızla ilgili bir sorun olu networkWorld.more_servers=Daha Fazla Sunucu # networkWorld.thirdparty.connect='%s' ögesine bağlan # networkWorld.join=Katıl # -networkWorld.joinByCode=Bölgeye Katıl # +networkWorld.joinByCode=Realm'e Katıl # networkWorld.realmsHashPlaceholder=Davet Kodu... # -networkWold.joinByCodeHelpText=Bir Bölge Davet Bağlantısı aldıysanız, katılmak için kodu girin. # +networkWold.joinByCodeHelpText=Bir Realm Davet Bağlantısı aldıysanız, katılmak için kodu girin. # networkWorld.highPingWarning.title=Sunucuya Katıl? # networkWorld.highPingWarning.line1=Şu anda seçilen sunucuyla güçlü bir bağlantın yok. Oyun deneyimin etkilenebilir. # networkWorld.highPingWarning.line2=Yine de bu sunucuya katılmak istiyor musun? # @@ -2290,7 +2286,7 @@ realmsSettingsScreen.manageSubscriptionButton=Aboneliği Yönet # realmsSettingsScreen.manageSubscriptionsButton=Abonelikleri Yönet # realmsSettingsScreen.renewRealmButton=Realm'ı Yenile # realmsSettingsScreen.extendRealmButton=Realm'ı Genişlet # -realmsSettingsScreen.deleteRealmButton=Bölgeyi Sil # +realmsSettingsScreen.deleteRealmButton=Realm'i Sil # realmsSettingsScreen.openRealmButton=Realm'ı Aç # realmsSettingsScreen.closeRealmButton=Realm'ı Kapat # realmsSettingsScreen.playRealmButton=Oyna # @@ -2306,24 +2302,24 @@ realmsSettingsScreen.membersSectionTitle=Üyeler # realmsSettingsScreen.subscriptionSectionTitle=Abonelik # realmsSettingsScreen.devOptionsSectionTitle=Geliştirici Seçenekleri # realmsSettingsScreen.backupSection=Yedeklemeler # -realmsSettingsScreen.backupInfo=Bölgenizdeki dünyayı bu listede bulunan bir yedekle geri yükleyebilirsiniz. # +realmsSettingsScreen.backupInfo=Realm'inizdeki dünyayı bu listede bulunan bir yedekle geri yükleyebilirsiniz. # realmsSettingsScreen.backupReplaced=Dünya seçili yedekle değiştirildi. # realmsSettingsScreen.backupReplacedFailed=Dünya seçili yedekle değiştirilemedi. # realmsSettingsScreen.backupReplacedTimeout=Dünyayı seçili yedekle değiştirme işlemi zaman aşımına uğradı. # realmsSettingsScreen.backupVersion=Sürüm: %s # realmsSettingsScreen.backupVersionUnknown=Sürüm: Bilinmiyor # -realmsSettingsScreen.deleteRealm=Bölgeyi Sil # -realmsSettingsScreen.deleteRealmToast=%s bölgesi silindi. # -realmsSettingsScreen.deleteRealmFailToast=%s bölgesi silinemedi. # -realmsSettingsScreen.deleteRealmModalText=Bölgeniz kalıcı olarak silinecek. Dünyanıza, üye listenize veya kulübe erişemeyeceksiniz. # +realmsSettingsScreen.deleteRealm=Realm'i Sil # +realmsSettingsScreen.deleteRealmToast=%s Realm'i silindi. # +realmsSettingsScreen.deleteRealmFailToast=%s Realm'i silinemedi. # +realmsSettingsScreen.deleteRealmModalText=Realm'iniz kalıcı olarak silinecek. Dünyanıza, üye listenize veya kulübe erişemeyeceksiniz. # realmsSettingsScreen.backupRestoreHeader=Dünya Değiştiriliyor # -realmsSettingsScreen.backupModalText=Bölgenizi bu yedekle değiştirerek Bölgenizde kaydedilen son ilerlemelerin tümünü sileceksiniz. Bölge yeniden başlatılacak ve tüm etkin oyuncuların yeniden bağlanması gerekecek. # -realmsSettingsScreen.replaceWithBackup=Bölgeyi Yedekle Değiştir # -realmsSettingsScreen.backupInProgress=Bölge dünyası yedekle değiştiriliyor # +realmsSettingsScreen.backupModalText=Realm'inizi bu yedekle değiştirerek Realm'inizde kaydedilen son ilerlemelerin tümünü sileceksiniz. Realm yeniden başlatılacak ve tüm etkin oyuncuların yeniden bağlanması gerekecek. # +realmsSettingsScreen.replaceWithBackup=Realm'i Yedekle Değiştir # +realmsSettingsScreen.backupInProgress=Realm dünyası yedekle değiştiriliyor # realmsSettingsScreen.realmNameLabel=Realm Adı # realmsSettingsScreen.realmNameEditPlaceholder=Realm Adı Gir # -realmsSettingsScreen.realmDescriptionEditPlaceholder=Bölge Açıklaması Girin # -realmsSettingsScreen.replaceLoadingText=Bölgenizi bir yedekle değiştiriyoruz. # +realmsSettingsScreen.realmDescriptionEditPlaceholder=Realm Açıklaması Girin # +realmsSettingsScreen.replaceLoadingText=Realm'inizi bir yedekle değiştiriyoruz. # realmsSettingsScreen.replaceWorldButton=Dünyayı Değiştir # realmsSettingsScreen.resetWorldButton=Dünyayı Sıfırla # realmsSettingsScreen.downloadWorldButton=Dünya İndir # @@ -2361,8 +2357,8 @@ realmsSettingsScreen.matchingPurchasePlatformFormat=%s aboneliğinizi satın ald realmsSettingsScreen.nonMatchingPurchasePlatformFormat=%s aboneliğinizi başlattınız. Aboneliğinizi buradan uzatabilirsiniz. # realmsSettingsScreen.nonMatchingPurchasePlatformGeneric=Realm aboneliğinizi ilk satın aldığınız platform mağazasından yönetebilirsiniz. # realmsSettingsScreen.consumableToSubscriptionTransitionInfo=Realm'ınızın süresini şu anda uzatamazsınız. Şimdi Realms için abonelikleri kullanıma sunduk ve %d gün içinde Realm'ınızın kullanım süresi dolar dolmaz yeni bir abonelik satın alabilirsiniz. Ama endişelenmeyin! Size fazladan 14 günü ücretsiz olarak vereceğiz ve Realm'ınız çevrimiçi kalacak. Yani o zamana kadar süre uzatmak için bolca vaktiniz olacak. # -realmsSettingsScreen.consumableToSubscriptionGracePeriodInfo=Bölgenizin kullanım süresi doldu ama endişelenmeyin! %d gün daha çevrimiçi kalacak. Şimdi devam edip yeni otomatik yenilenen aboneliği kullanarak bölgenizin süresini uzatabilirsiniz. Bunu yaptığınızda, Bölgenizi hazır ve çalışır durumda tutma konusunda bir daha endişelenmeniz gerekmeyecek. # -realmsSettingsScreen.consumableToSubscriptionTransitionInfoExpired=Bölgenizin kullanım süresi doldu. Devam edip yeni otomatik yenilenen aboneliği kullanarak bölgenizin süresini uzatın. Bunu yaptığınızda, Bölgenizi hazır ve çalışır durumda tutma konusunda bir daha endişelenmeniz gerekmeyecek. # +realmsSettingsScreen.consumableToSubscriptionGracePeriodInfo=Realm'inizin kullanım süresi doldu ama endişelenmeyin! %d gün daha çevrimiçi kalacak. Şimdi devam edip yeni otomatik yenilenen aboneliği kullanarak Realm'inizin süresini uzatabilirsiniz. Bunu yaptığınızda, Realm'inizi hazır ve çalışır durumda tutma konusunda bir daha endişelenmeniz gerekmeyecek. # +realmsSettingsScreen.consumableToSubscriptionTransitionInfoExpired=Realm'inizin kullanım süresi doldu. Devam edip yeni otomatik yenilenen aboneliği kullanarak Realm'inizin süresini uzatın. Bunu yaptığınızda, Realm'inizi hazır ve çalışır durumda tutma konusunda bir daha endişelenmeniz gerekmeyecek. # realmsSettingsScreen.upload.worldtoobig=Yükleme başarısız oldu. Dünya boyutu %s maksimum yükleme sınırını aşıyor. # realmsSettingsScreen.download.worldtoobig=İndirme başarısız oldu. Dünya boyutu %s maksimum indirme sınırını aşıyor. # realmsSettingsScreen.SubscriptionTimeLeftRefresh=Realms aboneliğinizde yığın süresi veya yinelenen faturalandırmanın kapatılması gibi yapılan değişiklikler, bir sonraki faturalandırma tarihinize kadar yansıtılmayacaktır. # @@ -2374,13 +2370,13 @@ realmsSettingsScreen.windowsStoreDisplayName=Windows Mağazası # realmsSettingsScreen.xboxOneStoreDisplayName=Xbox Mağazası # realmsSettingsScreen.amazonStoreDisplayName=Amazon Uygulama Mağazası # realmsSettingsScreen.oculusStoreDisplayName=Oculus Mağaza # -realmsSettingsScreen.berwickStoreDisplayName="PlayStation Store" # -realmsSettingsScreen.SonyStoreDisplayName=''PlayStation Store'' #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=bilinmeyen mağaza # realmsSettingsScreen.extendingRealm=Realm Uzatılıyor... # realmsSettingsScreen.offerError.title=Satın Alma İşlemi Bekliyor # realmsSettingsScreen.offerError.content=Bekleyen bir satın alma işlemi var. Bu işlem tamamlanana kadar başka bir satın alma işlemi gerçekleştiremezsiniz. Lütfen daha sonra yeniden deneyin. # -realmsSettingsScreen.dev_branch_label=Bölge hangi işleme üzerinde çalışmalıdır? # +realmsSettingsScreen.dev_branch_label=Realm hangi işleme üzerinde çalışmalıdır? # realmsSettingsScreen.dev_current_version_label=Kullanılan Versiyon: # realmsSettingsScreen.dev_matching_version_label=İstemci ile eşleşen işleme: # realmsSettingsScreen.dev_all_commits_label=Tüm kullanılabilir işlemeler: # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=Minecraft Market dışından sa xbl.syncIAP.confirmSync.prompt.yes=Evet, Satın Aldıklarımı Eşitle # xbl.marketplace.account.error.body.nobutton=Hesabınızla ilgili bir hata var. Sorun çözülene kadar marketi kullanamayacaksınız. Bu sorun birkaç gün boyunca devam ederse lütfen desteğe başvurun. # -xbl.marketplace.account.banned.body.nobutton=Uzaklaştırmanın süresi dolana kadar marketi kullanamazsınız. # playfab.account.banned.temporary=askıya alındı # playfab.account.banned.permanent=engellendi # @@ -2487,13 +2482,21 @@ date.daysAbbreviated1Char=%sg ### It needs to be abbreviated with no more than date.hoursAbbreviated1Char=%ss ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%sd ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%ssn ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s gün # +date.hoursPlural=%s saat # +date.minutesPlural=%s dakika # +date.secondsPlural=%s saniye # +date.daySingular=%s gün # +date.hourSingular=%s saat # +date.minuteSingular=%s dakika # +date.secondSingular=%s saniye # date.timeLeft=%s kaldı # dayOneExperience.carousel.title=Yeni Minecraft'a hoş geldin! # dayOneExperience.carousel.welcome_text=Minecraft'ın bu yeni sürümünde bir sürü heyecan verici yeni şey var. Market'e göz atın, bir Realm oluşturun ve Platformlar Arası arkadaşlarınızla çevrimiçi oynayın! # dayOneExperience.carousel.marketplace=Minecraft Market, çeşitli yetenekli içerik üreticilerinin hazırladığı yeni dış görünüş, dünya, doku ve karışık paketlerini bulabileceğin yerdir. # dayOneExperience.carousel.cross_platform=Platformlar arası oyun, farklı platformlardaki oyuncularla bağlantı kurmanıza olanak tanır. Tüm Minecraft arkadaşlarınızla oynamak için Microsoft Hesabınızla oturum açın! # -dayOneExperience.carousel.realms=Bölgeler, sadece siz ve arkadaşlarınız için bizim çalıştırdığımız sunuculardır. Minecraft dünyanızı, oturumu kapattığınızda bile her zaman çevrimiçi ve erişilebilir durumda tutun. # +dayOneExperience.carousel.realms=Realm'ler, sadece siz ve arkadaşlarınız için bizim çalıştırdığımız sunuculardır. Minecraft dünyanızı, oturumu kapattığınızda bile her zaman çevrimiçi ve erişilebilir durumda tutun. # dayOneExperience.carousel.villager=Yeni Minecraft; yeni özellikler, moblar, eşyalar, bloklar ve daha birçok şey içeren gelecek güncellemelerin alınacağı tek yerdir! # dayOneExperience.tab.landing=Yenilikler # @@ -2682,7 +2685,7 @@ disconnectionScreen.internalError.cantConnect=Bağlantı kurulamadı. # disconnectionScreen.internalError.cantEdit=Bu sunucu bulunurken bir sorun oluştu. # disconnectionScreen.internalError.cantFindEdit=Bağlantı kurulamadı. Yeni bir sunucu eklemeyi deneyin. # disconnectionScreen.internalError.cantFindLocal=Bu dünya yüklenirken bir sorun oluştu. # -disconnectionScreen.internalError.cantFindRealm=Bu Bölge bulunurken bir sorun oluştu. # +disconnectionScreen.internalError.cantFindRealm=Bu Realm bulunurken bir sorun oluştu. # disconnectionScreen.internalError.cantFindServer=Bu sunucu bulunurken bir sorun oluştu. # disconnectionScreen.invalidName=Geçersiz ad! # disconnectionScreen.invalidPlayer=Bu dünyanın çok oyunculu ayarı yalnızca arkadaşlar olarak ayarlandı. Katılmak için bu dünyanın sahibi ile arkadaş olmanız gerekir. # @@ -2721,7 +2724,7 @@ disconnectionScreen.invalidTenant=Dünyaya bağlanılamıyor. Lütfen katılma k disconnectionScreen.resourcePack=Kaynak paketi indirirken veya uygularken bir sorunla karşılaşıldı. # disconnectionScreen.restartClient=Bağlanılamıyor, lütfen istemcinizi yeniden başlatın. # disconnectionScreen.badPacket=Sunucu hatalı bir paket gönderdi. # -disconnectionScreen.realmsDisabled=Bölgeler devre dışı. # +disconnectionScreen.realmsDisabled=Realm'ler devre dışı. # disconnectionScreen.realmsDisabledBeta=Realms beta için devre dışı bırakıldı. # disconnectionScreen.incompatiblePack=Dünyaya katılamıyorsun çünkü şu uyumsuz paketlerin var: %s # disconnectionScreen.incompatiblePack.memory=Cihazınızın şu paketler için yeterli belleği olmaması nedeniyle dünyaya katılamıyorsunuz: %s # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=SUNUCU # edu.worlds_screen.settings=AYARLAR # edu.worlds_screen.download=İNDİR ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=YÖNET # +edu.worlds_screen.about=HAKKINDA # edu.worlds_screen.back=GERİ # edu.worlds_screen.copy=KOPYALA # edu.worlds_screen.export=DIŞARI AKTAR # @@ -2791,7 +2795,13 @@ edu.templates.empty_banner=Dünya şablonlarını Minecraft Education Kitaplığ edu.pause.multiplayer.disabled=Bu derste çok oyunculu oyun kullanılamıyor. # effect.badOmen=Kötü Kehanet # +effect.infested=Bulaşmış # +effect.oozing=Sızma # +effect.raid_omen=Baskın Kehaneti # +effect.trial_omen=Serüven Kehaneti # effect.villageHero=Köyün Kahramanı # +effect.weaving=Dokuma # +effect.wind_charged=Rüzgar Saldırısı # enchantment.arrowDamage=Güç # enchantment.arrowFire=Alev # @@ -2810,6 +2820,9 @@ enchantment.durability=Kırılmazlık # enchantment.fire=Ateş Boyutu # enchantment.fishingSpeed=Ayartma # enchantment.frostwalker=Ayazda Yürüyen # +enchantment.heavy_weapon.breach=İhlal # +enchantment.heavy_weapon.density=Yoğunluk # +enchantment.heavy_weapon.windburst=Rüzgar Patlaması # enchantment.knockback=Geri Tepme # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=Yarasa # entity.bee.name=Arı # entity.blaze.name=Blaze # entity.boat.name=Tekne # +entity.bogged.name=Çamur İskelet # +entity.breeze.name=Esinti # +entity.breeze_wind_charge_projectile.name=Rüzgâr Saldırısı # entity.cat.name=Kedi # entity.cave_spider.name=Mağara Örümceği # entity.chicken.name=Tavuk # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=Vasıfsız Köylü # entity.villager_v2.name=Köylü # entity.vindicator.name=İntikamcı # entity.wandering_trader.name=Gezgin Tüccar # +entity.wind_charge_projectile.name=Rüzgâr Saldırısı # entity.witch.name=Cadı # entity.wither.name=Wither # entity.wither_skeleton.name=Wither İskelet # @@ -3009,6 +3026,7 @@ feature.ruins=Okyanus Harabeleri # feature.pillager_outpost=Yağmacı Karakolu # feature.bastion_remnant=Tabya Kalıntısı # feature.ruined_portal=Yıkılmış Geçit # +feature.trial_chambers=Serüven Odaları # feed.like=Beğen # feed.manage_feed=Haber akışını yönet # @@ -3048,8 +3066,8 @@ feed.delete=Sil # feed.deleted=Eşya silindi # feed.report_xbox=Xbox Yaptırımı'na Bildir # feed.report_club=Kulübe Bildir # -feed.clubdescription=Bölge Açıklaması # -feed.no_feed_item_content=Bölgenizdeki ekran görüntüleri ve tartışmalar burada görünecek. Başlamak için "Yeni gönderi" düğmesine basın # +feed.clubdescription=Realm Açıklaması # +feed.no_feed_item_content=Realm'ınızdaki ekran görüntüleri ve tartışmalar burada görünecek. Başlamak için ''Yeni gönderi'' düğmesine basın # feed.no_reported_item_content=Bildirilen eşya yok # feed.no_screenshot=Ekran görüntünüz yok # feed.reportToastMessage=Eşya bildirildi # @@ -3059,7 +3077,7 @@ feed.failedToPostDescription=Ekran görüntüsü geçersiz # feed.failedToPostRateLimit=Birkaç dakika içinde yeniden paylaşmayı deneyin. Realms işlemi gerçekleştirmeye çalışıyor. # feed.uppload_started=Ekran görüntüsü karşıya yükleniyor # feed.uppload_success=Ekran görüntüsü karşıya yüklendi # -feed.connected=Her Bölge, Microsoft Hesabınızla bir Kulübe bağlıdır. # +feed.connected=Her Realm, Microsoft Hesabınızla bir Kulübe bağlıdır. # feed.unviewedPost=Yeni # comment.like=%d beğenme ### 1 like @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=Gezinmek için :tip_left_stick: düğmesini ha gameTip.flying.mouse=Uçmak için :_input_key.jump: ögesine iki kez dokunun # gameTip.flying.touch=Uçmak için zıplamaya iki kez dokunun # +gameTip.flyDown.mouse=Aşağı uçmak için :_input_key.sneak: tuşuna basın # +gameTip.flyUp.mouse=Yukarı uçmak için :_input_key.jump: tuşuna basın # + +gameTip.stopFlying.mouse=Uçmayı durdurmak için :_input_key.jump: düğmesine iki kez dokunun # +gameTip.stopFlying.touch=Uçmayı durdurmak için aşağı uçmaya iki kez dokunun # + gameTip.jump.mouse=:_input_key.jump: ile zıplayın # +gameTip.swim.mouse=Yüzmek için :_input_key.jump: düğmesini basılı tutun # -gameTip.hotbar.mouse=Sık kullanılanlarda # ögesini seçmek ve almak için fare tekerleğini kaydırın # -gameTip.hotbar.touch=Almak için sık kullanılanlarda # ögesine basın # -gameTip.hotbar.controller=Almak için sık kullanılanlarda # ögesine basın # +gameTip.hotbar.selection.mouse=Eşyayı tutmak için kaydırın veya %s tuşuna basın ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=Almak için sık kullanılanlarda eşyaya basın # gameTip.breakBlock.mouse=Blokları kırmak için sol tıka basılı tutun # gameTip.breakBlock.touch=Blokları kırmak için dokunup basılı tutun # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=Gizlice dolaşıyorsunuz! Şu anda kenarlardan düşemezsini gameTip.sneak.touch=Gizlice dolaşıyorsunuz, bu yüzden kenarlardan düşemezsiniz # gameTip.sneak.controller=Gizlice dolaşıyorsunuz, bu yüzden kenarlardan düşemezsiniz # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=Eşya yapma masanızı yerleştirin. Basılı tutun ve yerleştirmek için tıklayın # gameTip.placeCraftingTable.touch=Eşya yapma masanızı yere dokunarak yerleştirin # gameTip.placeCraftingTable.controller=Eşya yapma masanızı yerleştirin, masayı tutun ve yere tıklayın # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=İncelemenizi paylaştığınız için teşekkür ede gui.submitFeedback.failure.status.unprocessableEntity=Geri bildirim vermeye çalıştığınız bu öğeye sahip değilsiniz. (Hata Kodu: %d) # gui.submitFeedback.failure.status.tooManyRequests=Eyvah! Çok fazla değerlendirme yaptınız, lütfen daha sonra tekrar deneyin. (Hata Kodu: %d) # gui.submitFeedback.failure.status.other=İncelemeniz şu anda gönderilemiyor, lütfen daha sonra tekrar deneyin. (Hata Kodu: %d) # +gui.togglable_slot=Yuvayı devre dışı bırakmak için basın # gui.playOffline=Çevrimdışı Oyna # gui.signIn=Oturum Aç # gui.genericNetworkError=Bir sorun oluştu. İnternet bağlantınızı kontrol etmeyi deneyin. # @@ -3274,7 +3299,7 @@ howtoplay.category.gettingSettled=Dünyaya yerleşmek # howtoplay.category.gettingStarted=Başlıyoruz # howtoplay.category.overworld=Dış Dünya A'dan Z'ye # howtoplay.category.preparingForTheNight=Geceye hazırlanmak # -howtoplay.category.realms=Bölgeler # +howtoplay.category.realms=Realm'ler # howtoplay.category.redstoneEngineering=Redstone Mühendisliği # howtoplay.category.standsAndTables=Stantlar ve Masalar # howtoplay.category.survivingTheFirstNight=İlk Gece Hayatta Kalma # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=Minecraft'ın oyun içi para birimi olan Minecoin ile howtoplay.minecoins.text.2=Kullanıldıktan sonra Minecoin'leriniz Microsoft hesabınıza bağlanır, böylece paralarınıza ve satın aldıklarınıza desteklenen diğer cihazlardan da erişebilirsiniz! # howtoplay.minecoins.button.text.1=Para Al # howtoplay.minecoins.header.1=Feragat # -howtoplay.minecoins.text.3=*Minecoin'ler Minecraft Market ile Minecraft: Bedrock Edition sürümünü gerektirir. Minecoin'ler Sony PlayStation ile uyumlu değildir. Uyumluluk bilgileri için minecraft.net/minecoins adresini ziyaret edin  # +howtoplay.minecoins.text.3=*Minecoin'ler Minecraft Market ile Minecraft: Bedrock Edition sürümünü gerektirir. Minecoin'ler Sony PlayStation® ile uyumlu değildir. Uyumluluk bilgileri için minecraft.net/minecoins adresini ziyaret edin  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=Madencilik # @@ -4145,7 +4170,7 @@ level.editor.export.failed=Proje dışa aktarma başarısız oldu # level.editor.import.failed=Proje içe aktarma işlemi başarısız oldu # level.editor.import.failed.incompatibleEdition=Proje içe aktarımı başarısız oldu: Desteklenmeyen dosya biçimi # -inbox.invite.title=Realms Daveti # +inbox.invite.title=Realm daveti # invite.clear=Seçimi Sil # invite.send=%d Davet Gönderin # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=Kırmızı Sağ Alt Üçgen # item.banner.diagonal_up_right.silver=Açık Gri Sağ Alt Üçgen # item.banner.diagonal_up_right.white=Beyaz Sağ Alt Üçgen # item.banner.diagonal_up_right.yellow=Sarı Sağ Alt Üçgen # +item.banner.flow.black=Siyah Akış # +item.banner.flow.blue=Mavi Akış # +item.banner.flow.brown=Kahverengi Akış # +item.banner.flow.cyan=Camgöbeği Akış # +item.banner.flow.gray=Gri Akış # +item.banner.flow.green=Yeşil Akış # +item.banner.flow.lightBlue=Açık Mavi Akış # +item.banner.flow.lime=Açık Yeşil Akış # +item.banner.flow.magenta=Eflatun Akış # +item.banner.flow.orange=Turuncu Akış # +item.banner.flow.pink=Pembe Akış # +item.banner.flow.purple=Mor Akış # +item.banner.flow.red=Kırmızı Akış # +item.banner.flow.silver=Açık Gri Akış # +item.banner.flow.white=Beyaz Akış # +item.banner.flow.yellow=Sarı Akış # item.banner.flower.black=Siyah Çiçek Şekli # item.banner.flower.blue=Mavi Çiçek Şekli # item.banner.flower.brown=Kahverengi Çiçek Şekli # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=Beyaza Geçiş # item.banner.gradient_up.yellow=Sarıya Geçiş # item.banner.gray.name=Gri Flama # item.banner.green.name=Yeşil Flama # +item.banner.guster.black=Siyah Guster # +item.banner.guster.blue=Mavi Guster # +item.banner.guster.brown=Kahverengi Guster # +item.banner.guster.cyan=Camgöbeği Guster # +item.banner.guster.gray=Gri Guster # +item.banner.guster.green=Yeşil Guster # +item.banner.guster.lightBlue=Açık Mavi Guster # +item.banner.guster.lime=Açık Yeşil Guster # +item.banner.guster.magenta=Eflatun Guster # +item.banner.guster.orange=Turuncu Guster # +item.banner.guster.pink=Pembe Guster # +item.banner.guster.purple=Mor Guster # +item.banner.guster.red=Kırmızı Guster # +item.banner.guster.silver=Açık Gri Guster # +item.banner.guster.white=Beyaz Guster # +item.banner.guster.yellow=Sarı Guster # item.banner.half_horizontal.black=Siyah Üst Yarı # item.banner.half_horizontal.blue=Mavi Üst Yarı # item.banner.half_horizontal.brown=Kahverengi Üst Yarı # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=Akasya Tekne # item.boat.big_oak.name=Koyu Meşe Tekne # item.bone.name=Kemik # item.book.name=Kitap # +item.breeze_rod.name=Esinti Çubuğu # item.chainmail_boots.name=Zincir Botlar # item.leather_boots.name=Deri Botlar # item.diamond_boots.name=Elmas Botlar # @@ -4991,6 +5049,7 @@ item.comparator.name=Redstone Karşılaştırıcı # item.compass.name=Pusula # item.lodestonecompass.name=Mıknatıs Taşı Pusula # item.cookie.name=Kurabiye # +item.copper_door.name=Bakır Kapı # item.crossbow.name=Yaylı Tüfek # item.diamond.name=Elmas # item.repeater.name=Redstone Yineleyici # @@ -5038,6 +5097,7 @@ tile.end_rod.name=End Çubuğu # item.ender_eye.name=Ender Gözü # item.ender_pearl.name=Ender İncisi # item.experience_bottle.name=Büyü Şişesi # +item.exposed_copper_door.name=Çıplak Bakır Kapı # item.feather.name=Tüy # item.fermented_spider_eye.name=Fermente Örümcek Gözü # item.fireball.name=Ateş Yükü # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=Altın Bacak Zırhı # item.iron_leggings.name=Demir Bacak Zırhı # item.nautilus_shell.name=Notilus Kabuğu # item.heart_of_the_sea.name=Denizin Kalbi # +item.mace.name=Gürz # item.magma_cream.name=Magma Kremi # item.map.name=Harita # item.map.exploration.mansion.name=Orman Kaşifi Haritası # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=Savan Köyü Haritası # item.map.exploration.village_desert.name=Çöl Köyü Haritası # item.map.exploration.jungle_temple.name=Büyük Orman Kaşifi Haritası # item.map.exploration.swamp_hut.name=Bataklık Kaşifi Haritası # +item.map.exploration.trial_chambers.name=Serüven Kaşifi Haritası # item.melon.name=Karpuz # item.milk.name=Süt # item.minecart.name=Maden arabası # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=Sandıklı Maden arabası # item.command_block_minecart.name=Komut Bloklu Maden Arabası # item.minecartFurnace.name=Ocaklı Maden arabası # item.hopper_minecart.name=Hunili Maden arabası # +item.ominous_bottle.name=Uğursuz Şişe # +item.ominous_trial_key.name=Uğursuz Serüven Anahtarı # +item.oxidized_copper_door.name=Oksitlenmiş Bakır Kapı # item.tnt_minecart.name=TNT'li Maden arabası # item.pitcher_pod.name=Sürahi Pod # item.torchflower_seeds.name=Fener Çiçeği Tohumu # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=Agent Çağırma Yumurtası # item.spawn_egg.entity.armadillo.name=Armadillo Çağırma Yumurtası # item.spawn_egg.entity.axolotl.name=Aksolotl Çağırma Yumurtası # item.spawn_egg.entity.bee.name=Arı Çağırma Yumurtası # +item.spawn_egg.entity.bogged.name=Çamur İskelet Çağırma Yumurtası # +item.spawn_egg.entity.breeze.name=Esinti Çağırma Yumurtası # item.spawn_egg.entity.hoglin.name=Hoglin Çağırma Yumurtası # item.spawn_egg.entity.cat.name=Kedi Çağırma Yumurtası # item.spawn_egg.entity.chicken.name=Tavuk Çağırma Yumurtası # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 - bölge # item.record_pigstep.desc=Lena Raine - Pigstep # item.record_otherside.desc=Lena Raine - otherside # item.record_relic.desc=Aaron Cherof - Relic # +item.record_creator.desc=Lena Raine - Oluşturucu # +item.record_creator_music_box.desc=Lena Raine - Oluşturucu (Müzik Kutusu) # +item.record_precipice.desc=Aaron Cherof - Uçurum # item.redstone.name=Redstone Tozu # item.reeds.name=Şeker Kamışları # item.kelp.name=Varek # @@ -5324,6 +5394,12 @@ item.iron_sword.name=Demir Kılıç # item.stone_sword.name=Taş Kılıç # item.wooden_sword.name=Tahta Kılıç # item.unbreakable=Kırılamaz # +item.waxed_copper_door.name=Mumlu Bakır Kapı # +item.waxed_exposed_copper_door.name=Mumlu Çıplak Bakır Kapı # +item.waxed_oxidized_copper_door.name=Mumlu Oksitlenmiş Bakır Kapı # +item.waxed_weathered_copper_door.name=Mumlu Yıpranmış Bakır Kapı # +item.weathered_copper_door.name=Yıpranmış Bakır Kapı # +item.wind_charge.name=Rüzgâr Saldırısı # item.wheat.name=Buğday # item.wolf_armor.name=Kurt Zırhı # item.writable_book.name=Kitap ve Tüy # @@ -5331,6 +5407,7 @@ item.written_book.name=Yazılı Kitap # item.glowstone_dust.name=Işık Taşı Tozu # item.shulker_shell.name=Shulker Kabuğu # item.totem.name=Ölümsüzlük Totemi # +item.trial_key.name=Deneme Anahtarı # item.turtle_helmet.name=Kaplumbağa Kabuğu # item.turtle_shell_piece.name=Kaplumbağa Sırt Pulu # item.phantom_membrane.name=Fantom Zarı # @@ -5338,8 +5415,10 @@ item.sweet_berries.name=Tatlı Meyveler # item.suspicious_stew.name=Şüpheli Yahni # item.banner_pattern.bricks=Tuğla Deseni # item.banner_pattern.creeper=Creeper Şekli # +item.banner_pattern.flow=Akış # item.banner_pattern.flower=Çiçek Şekli # item.banner_pattern.globe=Küre # +item.banner_pattern.guster=Guster # item.banner_pattern.name=Flama Deseni # item.banner_pattern.piglin=Burun # item.banner_pattern.skull=Kurukafa Şekli # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=Flama Desenleri # itemGroup.name.netherWartBlock=Nether Siğilleri # itemGroup.name.candles=Mumlar # itemGroup.name.goatHorn=Keçi Boynuzları # +itemGroup.name.compounds=Bileşikler # +itemGroup.name.products=Ürünler # jigsaw.title.target_pool=Hedef havuz: # jigsaw.title.name=Ad: # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=SINIF AYARLARI # menu.serverStore=%s Mağazası # menu.serverGenericName=Sunucu # menu.play=Oyna # +menu.profile=Profil # menu.playdemo=Demo Dünya Oyna # menu.playOnRealms=Realm'da Oyna # menu.quickplay=Hızlı Oyun # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=Başlangıç Karakterinizi seçin # menu.character_cast.preview_title=Oyuncularla tanışın! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Realms Sunucusu ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=Sunucular # merchant.deprecated=Kilidi açmak için başka bir şeyi takas et! # @@ -6057,7 +6140,7 @@ options.dev_serverInstanceThread=Sunucu Örneği İş Parçacığı # options.dev_newCuller=Yeni ayırıcı kullan # options.dev_showBuildInfo=Bina bilgilerini göster # options.dev_showDevConsoleButton=Geliştirici konsolu düğmesini göster # -options.dev_realmsPermissionsEnabledButton=Bölge izinlerini göster # +options.dev_realmsPermissionsEnabledButton=Realm izinlerini göster # options.dev_enableProfiler=Profiler uygulamasını etkinleştir # options.dev_newParticleSystem=Yeni Parçacık Sistemini Etkinleştir # options.dev_enableDebugHudOverlay=Hata ayıklama HUD etkinleştir # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=Tam Klavye Oyunu # options.fullKeyboardLayout=Tam Klavye Düzeni # options.improvedInputResponsePlaceholder=İyileştirilmiş Girdi Yanıtı # options.improvedInputResponsePlaceholder.tooltip=Girdiniz ile ekranda gördükleriniz arasındaki gecikmeyi azaltır. Bu ayar daha fazla pil gücü kullanabilir. # +options.dynamicTexturesToggle=Doku Sınırını Kaldır # +options.dynamicTexturesToggle.tooltip=Bunu açık halden kapalıya çevirmek oyunun yeniden başlatılmasını gerektirecektir. Çok sayıda dokuya sahip birden çok Eklenti veya Kaynak Paketi kullanırken kararsızlığa neden olabilir. # +options.dynamicTextures.popUp=Doku Sınırını Kaldır'ı açarsanız bunu kapatmak için oyunu yeniden başlatmanız gerekir. # +options.dynamicTextures.popUp.title=Emin misiniz? # options.fullscreen=Tam Ekran # options.gamepadcursorsensitivity=Kumanda İmleç Hassasiyeti # options.gamertag=Oyuncu Etiketi: # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=Bağlan # options.creator.debuggerListen=Dinle # options.creator.debuggerHost=Sunucu # options.creator.debuggerPort=Bağlantı Noktası # +options.creator.watchdogHeading=Betik Güvenlik Ayarları # +options.creator.watchdogSlowWarning=Yavaş Komut Dosyası Uyarıları # +options.creator.watchdogSlowThreshold=Ortalama aşmalar # +options.creator.watchdogSlowFormat=%s Milisaniye # +options.creator.watchdogSlowFormatDefault=%s Milisaniye (varsayılan) # +options.creator.watchdogSpikeWarning=Komut Dosyası Ani Artış Uyarıları # +options.creator.watchdogSpikeThreshold=Ani artış aşmaları # +options.creator.watchdogSpikeFormat=%s Milisaniye # +options.creator.watchdogSpikeFormatDefault=%s Milisaniye (varsayılan) # +options.creator.watchdogHangThreshold=Sonra kes # +options.creator.watchdogHangFormat=%s Saniye # +options.creator.watchdogHangFormatDefault=%s Saniye (varsayılan) # options.vr_classic_box_selection=Taslak Seçimi # options.hidegamepadcursor=Kumanda İmlecini Gizle # options.hidegui=GUI'yı gizle # @@ -6662,7 +6761,7 @@ options.makeBackup=Dünyamın yedek bir kopyasını oluştur # options.managePrivacy=Gizlilik ayarlarını yönetmek için lütfen herhangi bir tarayıcıdan https://account.xbox.com/Settings sayfasını ziyaret edin. ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Microsoft Hesabının Bağlantısını Kaldır # options.unlink_msa.confirm.title=Microsoft Hesabının bağlantısı kaldırılsın mı? # -options.unlink_msa.confirm.warning=UYARI: Bağlantıyı kaldırdıktan sonra ilerleme durumunuzu veya "PlayStation 4" Sisteminde satın aldığınız içerikleri %s hesabınıza kaydedemeyeceksiniz. # +options.unlink_msa.confirm.warning=UYARI: Bağlantıyı kaldırdıktan sonra ilerleme durumunuzu veya PlayStation®4 sisteminde satın aldığınız içerikleri %s hesabınıza kaydedemeyeceksiniz. #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=Bu oyun içinden Microsoft Hesabınızın bağlantısını kesmek, bu platformda bu Microsoft Hesabını kullanan tüm Minecraft oyunlarını etkileyecektir. # options.unlink_msa.confirm.checkbox1=Bundan sonra diğer platformlarda oynadığımda oyun içi Mağaza içeriklerine erişemeyeceğim. # options.unlink_msa.confirm.checkbox2=Bundan sonra diğer platformlardaki arkadaşlarımla platformlar arası oyunlar oynayamayacağım. # @@ -6688,7 +6787,7 @@ options.editor.modeDescription.messageWithMouse=Düzenleyici Modu, dünyaları d options.editor.modeActive=Minecraft şu anda Düzenleyici Modunda. # options.editor.modeNotActive=Minecraft şu anda Düzenleyici Modunda değil. # options.editor.achievementsDisabled=Bu projede başarı kazanılamaz. # -options.newUiPlayScreen.initiate=Yeni kullanıcı arabirimine geçin # +options.newUiPlayScreen.initiate=Yeni UI'a geç # options.openPage.continue=Daha Fazla Bilgi # options.graphicsMode=Grafɨk Modu # options.graphicsMode.simple=Basit # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=Kontrolleri özelleştirmek için bir dü hudScreen.controlCustomization.tooltip.notouch=Kontrolleri özelleştirmek için dokunmatik bir cihaz kullanın # hudScreen.controlCustomization.tooltip.alreadycustomizing=Zaten açık bir dokunmatik kontrol özelleştirme ekranı var # hudScreen.controlCustomization.tooltip.alive=Kontrolleri özelleştirmek için oyuncunun hayatta olması gerekir. # +hudScreen.daysPlayed=Oynanan gün sayısı: %s # +hudScreen.daysPlayed.overflow=Sayılamayacak kadar çok! # playscreen.fileSize.MB=MB # playscreen.fileSize.GB=GB # @@ -6892,7 +6993,7 @@ playscreen.realmsTrialWorld=Realms Plus'ı 30 gün ücretsiz deneyin # playscreen.freePreviewRealmAvailable=Ücretsiz Ön İzleme Realm'ı Bulunuyor # playscreen.freeBetaRealmAvailable=Ücretsiz Beta Realm'ı Bulunuyor # playscreen.withYourPaidRealms=Ücretli Realms aboneliğinizle # -playscreen.realmsCreateFirstWorld=İlk bölgenizi oluşturun # +playscreen.realmsCreateFirstWorld=İlk Realm'inizi oluşturun # playscreen.realmsCombo=Arkadaşlarınla oyna, 150'den fazla paketin keyfini çıkar # playscreen.realmsGetServer=Kendi sunucuna ve 150'den fazla pakete sahip ol # playscreen.realmGoogleHoldBody=Realms aboneliklerinden bir veya daha fazlasıyla ilgili bir sorun var. Google Play abonelik ayarlarından ödeme yöntemini düzeltmek için Tamam'a tıkla. # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=Sıçrayan İyileşme İksiri # potion.heal.linger.name=Uzun Süreli İyileşme İksiri # potion.healthBoost=Sağlık Arttırıcı # potion.hunger=Açlık # +potion.infested.linger.name=Uzun Süreli İstila İksiri # +potion.infested.name=İstila İksiri # +potion.infested.splash.name=Sıçrayan İstila İksiri # +potion.infested=Bulaşmış # potion.invisibility=Görünmezlik # potion.invisibility.name=Görünmezlik İksiri # potion.invisibility.splash.name=Sıçrayan Görünmezlik İksiri # @@ -7067,6 +7172,10 @@ potion.nightVision=Gece Görüşü # potion.nightVision.name=Gece Görüşü İksiri # potion.nightVision.splash.name=Sıçrayan Gece Görüşü İksiri # potion.nightVision.linger.name=Uzun Süreli Gece Görüşü İksiri # +potion.oozing.linger.name=Uzun Süreli Sızma İksiri # +potion.oozing.name=Sızma İksiri # +potion.oozing.splash.name=Sıçrayan Sızma İksiri # +potion.oozing=Sızma # potion.poison=Zehir # potion.poison.name=Zehir İksiri # potion.poison.splash.name=Sıçrayan Zehir İksiri # @@ -7108,6 +7217,14 @@ potion.weakness=Zayıflık # potion.weakness.name=Zayıflık İksiri # potion.weakness.splash.name=Sıçrayan Zayıflık İksiri # potion.weakness.linger.name=Uzun Süreli Zayıflık İksiri # +potion.weaving.linger.name=Uzun Süreli Dokuma İksiri # +potion.weaving.name=Dokuma İksiri # +potion.weaving.splash.name=Sıçrayan Dokuma İksiri # +potion.weaving=Dokuma # +potion.windCharged.linger.name=Uzun Süreli Rüzgar Saldırısı İksiri # +potion.windCharged.name=Rüzgar Saldırısı İksiri # +potion.windCharged.splash.name=Sıçrayan Rüzgar Saldırısı İksiri # +potion.windCharged=Rüzgar Saldırısı # potion.wither=Wither # potion.wither.name=Zayıflama İksiri # potion.wither.splash.name=Sıçrayan Zayıflama İksiri # @@ -7158,7 +7275,7 @@ progressScreen.title.waitingForStorageProvider=Kullanıcı verileri eşitleniyor progressScreen.title.connectingLocal=Dünya Başlatılıyor # progressScreen.title.connectingLAN=Çok oyunculu oyuna bağlanılıyor # progressScreen.title.connectingExternal=Harici sunucuya bağlanılıyor # -progressScreen.title.connectingRealms=Bölgeye bağlanılıyor # +progressScreen.title.connectingRealms=Realm'e bağlanılıyor # progressScreen.title.copyingWorld=Dünya Kopyası # progressScreen.title.deleteStorageAreaContent=Depolama Önbelleğini Temizleme # progressScreen.title.loadingSplitScreenAppearances=Bölünmüş Ekran Görünümleri Yükleniyor # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=Paketteki bir dizi sorunu nedeniyle b progressScreen.message.forbiddenContent=Uygulanan paketlerden en az birine sahip değilsiniz # progressScreen.message.loadingSplitScreenAppearances=Bölünmüş ekran görünümleri yükleniyor... # progressScreen.message.finishedLoadingSplitScreenAppearances=Bölünmüş ekran görünümlerinin yüklenmesi tamamlandı. # -progressScreen.message.modifiedWorldWarning=Bu dünya, değiştirilmemiş dünyalarla aynı şekilde görünmeyebilir veya davranmayabilir ve başarılar kazanamazsınız. # +progressScreen.message.modifiedWorldWarning.1=Eklentilerin olduğu bir dünyada oynuyorsunuz! Bu, Minecraft dünyanıza yeni özellikler ekleyecektir. # +progressScreen.message.modifiedWorldWarning.2=Sadece bir tanesiyle yetinmeyin! Aynı anda tek bir dünyaya birden fazla Eklenti yükleyebilirsiniz. # +progressScreen.message.modifiedWorldWarning.3=Gelişmiş İpucu: Bir Kaynak Paketi, farklı blokların ve varlıkların dokularını değiştirebilir. # +progressScreen.message.modifiedWorldWarning.4=Gelişmiş İpucu: Davranış Paketi, farklı eşyaların, varlıkların veya blokların çalışma şeklini değiştirebilir. # +progressScreen.message.modifiedWorldWarning.5=Gelişmiş İpucu: Bir Eklenti hem Davranış Paketi hem de Kaynak Paketi içerir. Eklentinin çalıştığından emin olmak için her iki paketin de etkinleştirildiğinden emin olun! # +progressScreen.message.modifiedWorldWarning.6=Eklentiler dünyalarınıza yeni bloklar, eşyalar veya moblar ekler. # +progressScreen.message.modifiedWorldWarning.7=Dünyalar ve Eklentiler karmaşıktır! Bazıları birlikte harika çalışırken, diğerleriyle tuhaf sonuçlar alabilirsiniz. # +progressScreen.message.modifiedWorldWarning.8=Daha fazla Eklenti, daha fazla eğlence anlamına gelir ancak oyunun yüklenmesi daha uzun sürebilir. # progressScreen.dialog.title.resourcePack=Kaynak Paketleri İndirilsin Mi? # progressScreen.dialog.title.behaviorAndResourcePack=Dünya Davranış ve Kaynak Paketlerini İndir? # progressScreen.dialog.title.onlyBehavior=Dünya Davranış Paketlerini İndir? # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=Dünya güncellensin mi? # resourcePack.warning.add.body=Bu dünya, değiştirilmemiş dünyalarla aynı şekilde görünmeyebilir veya aynı şekilde davranmayabilir. Devam etmeden önce dünyanızın bir kopyasını kaydetmelisiniz. # resourcePack.warning.add.button.cancel=Paketi ekleme # resourcePack.warning.add.button.ok=Yine de paketi ekle # +resourcePack.warnings.contentKeyErrorBody=%s paketi yüklenirken bir sorun oluştu. # +resourcePack.warnings.contentKeyErrorBodyMultiple=%s paketleri yüklenirken bir sorun oluştu. # +resourcePack.warnings.contentKeyErrorTitle=Hata! # resourcePack.warning.remove.title=Bu Tehlikeli! # resourcePack.warning.remove.body=Bir dünyayı oynadıktan sonra Paket eklemek veya kaldırmak, dünyayı bozabilir ve oluşturduğunuz şeyi kaybetmenize neden olabilir. # resourcePack.warning.remove.button.cancel=Paketi tut # @@ -7557,7 +7684,9 @@ item.crimson_hanging_sign.name=Kızıl Asılı Levha # item.danger_pottery_sherd.name=Tehlike Çömlekçilik Parçası # item.dark_oak_hanging_sign.name=Koyu Meşe Asılı Levha # item.explorer_pottery_sherd.name=Kaşif Çömlekçilik Parçası # +item.flow_pottery_sherd.name=Akış Çömlekçilik Parçası # item.friend_pottery_sherd.name=Arkadaş Çömlekçilik Parçası # +item.guster_pottery_sherd.name=Guster Çömlekçilik Parçası # item.heart_pottery_sherd.name=Kalp Çömlekçilik Parçası # item.heartbreak_pottery_sherd.name=Kalp Kırıklığı Çömlekçilik Parçası # item.howl_pottery_sherd.name=Uluyan Çömlekçilik Parçası # @@ -7568,6 +7697,7 @@ item.mourner_pottery_sherd.name=Yaslı Çömlekçilik Parçası # item.oak_hanging_sign.name=Meşe Asılı Levha # item.plenty_pottery_sherd.name=Bol Çömlekçilik Parçası # item.prize_pottery_sherd.name=Ödül Çömlekçilik Parçası # +item.scrape_pottery_sherd.name=Çizik Çömlekçilik Parçası # item.sheaf_pottery_sherd.name=Demet Çömlekçilik Parçası # item.shelter_pottery_sherd.name=Barınak Çömlekçilik Parçası # item.skull_pottery_sherd.name=Kurukafa Çömlekçilik Parçası # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=Kiraz Merdivenler # tile.cherry_trapdoor.name=Kiraz Tuzak Kapısı # tile.cherry_wood.name=Kiraz Odun # tile.chiseled_bookshelf.name=Yontulmuş Kitap Rafı # +tile.chiseled_tuff.name=Yontulmuş Tüf # +tile.chiseled_tuff_bricks.name=Yontulmuş Tüf Tuğlalar # tile.decorated_pot.name=Süslemeli Saksı # tile.pink_petals.name=Pembe Yaprak # tile.stripped_bamboo_block.name=Sıyırılmış Bambu Bloğu # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=Sinirbozan Zırhı Süsü # trim_pattern.ward.name=Bölge Zırhı Süsü # trim_pattern.wayfinder.name=Yol Bulucu Zırh Süsü # trim_pattern.wild.name=Vahşi Zırh Süsü # +trim_pattern.bolt.name=Bolt Zırhı Süsü # +trim_pattern.flow.name=Akış Zırhı Süsü # upgrade.netherite_upgrade.name=Netherit Yükseltme # storageManager.mainSizeLabel=%s - 1 Eşya # @@ -7872,12 +8006,12 @@ selectWorld.editor.enterName=Proje Adı # selectTemplate.templateStart=Nereden başlamak istiyorsunuz? # selectTemplate.generateRandom=Yeni Dünya Oluştur # -selectTemplate.createRealm=Yeni Bölge Oluştur # +selectTemplate.createRealm=Yeni Realm Oluştur # selectTemplate.create=Oluştur... # selectTemplate.worldsByCreators=İçerik Üreticilerin Dünyaları # selectTemplate.realm=Yeni Realm # selectTemplate.realmInfo=Oluşturduktan sonra Realm'ınıza dünyalar yükleyebilirsiniz! # -selectTemplate.signIn=Microsoft Hesabı ile Bölge Oluştur # +selectTemplate.signIn=Microsoft Hesabı ile Realm Oluştur # selectTemplate.unableToSignIn=Microsoft hizmetleri bu cihazda kullanılamıyor # selectTemplate.world=Yeni Dünya # selectTemplate.help=? # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=Dünya Şablonu silinsin mi? # selectTemplate.delete=Sil # selectTemplate.myTemplates=Dünya Şablonlarım # selectTemplate.realmsPlus=Öne Çıkan Realms Plus Şablonları # -selectTemplate.marketplacePass=Öne çıkan Marketplace Pass şablonları #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=Öne Çıkan Marketplace Pass İçerikleri #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=İçeri Aktarılan Şablonlar # selectTemplate.download=İndir # selectTemplate.noTemplates=Bu cihazda dünya şablonu yok. # -selectTemplate.suggestedContent.title=Öne Çıkan Market Şablonları # +selectTemplate.suggestedContent.title=Öne Çıkan Market İçerikleri # selectTemplate.suggestedContent.button=Daha Fazla Şablon Gör # selectTemplate.createdBy=%s tarafından oluşturuldu # selectTemplate.inventory=Market Paketlerim # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=Bağlantı kurulurken sorun oluştu. Lütfen geri store.loading.error.issues=Hmm, Market'te sorun var. Lütfen daha sonra bağlanmayı deneyin. # store.loading.error.internetDown=İnternet bağlantısı algılayamıyoruz. # store.loading.error.account=Hesabınızla ilgili bir sorun var. Birazdan tekrar deneyin ve sorun devam ederse desteğe başvurun. # +store.loading.error.account.banned=Uzaklaştırmanın süresi dolana kadar marketi kullanamazsınız. # store.giftPromo.day=Gün %s ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=Alındı # @@ -8405,10 +8540,17 @@ store.mashup.count.skin=1 Dış Görünüş # store.mashup.count.skins=%s Dış Görünüş # store.mashup.count.texturePack=1 Doku Paketi # store.mashup.count.texturePacks=%s Doku Paketi #number of texture packs # -store.mashup.count.world=1 Dünya # +store.mashup.count.world=1 Dünya # store.mashup.count.worlds=%s Dünya #number of worlds # store.mashup.count.addonPack=1 Eklenti # store.mashup.count.addonPacks=%s Eklenti #number of addons # +store.mashup.count.mashup=Karışım # +store.mashup.hover.label.addonPack=Eklentiler herhangi bir dünyaya uygulanabilir. # +store.mashup.hover.label.world=El yapımı bir Minecraft haritası. # +store.mashup.hover.label.skin=Karakterinize yeni bir görünüm uygulayın. # +store.mashup.hover.label.texturePack=Dünyanıza veya oyun arayüzünüze yeni bir görsel ekleyin. # +store.mashup.hover.label.mashup.lineOne=Farklı içerik türlerinin bir kombinasyonu. # +store.mashup.hover.label.mashup.lineTwo=Bu Karışım şunları içerir: # store.addon.activateAddonPack=Eklentiyi Etkinleştirin! # store.addon.newOrExistingTitle=Nereye eklenecek? # @@ -8687,11 +8829,11 @@ store.pagination.previous=< Önceki ### Chevrons (< and >) should not be mov store.shareDescription=Vay! %s havalı bir paket oluşturdu. Buna bir bakman lazım. # store.copyToastMessage=Bağlantı panoya kopyalandı! # -store.uploadContentToRealmsSuccess=İçerik seçili Bölgeye başarıyla yüklendi. # +store.uploadContentToRealmsSuccess=İçerik seçili Realm'e başarıyla yüklendi. # store.uploadContentToRealmsFail.title=Hata # -store.uploadContentToRealmsProgressTitle=İçerik Bölge'ye uygulanıyor # -store.uploadContentToRealmsProgressText=Seçili içerik Bölgenize uygulanıyor. # -store.uploadContentToRealmsFail.message=İçerik seçili Bölgeye yüklenemedi! # +store.uploadContentToRealmsProgressTitle=İçerik Realm'e uygulanıyor # +store.uploadContentToRealmsProgressText=Seçili içerik Realm'inize uygulanıyor. # +store.uploadContentToRealmsFail.message=İçerik seçili Realm'e yüklenemedi! # store.uploadContentToRealmsFail.forbidden.message=Uygulanan içeriklerden en az birine sahip değilsiniz! # store.applyToRealm=Realm'da Oluştur # store.inRealmsPlus=Realms Plus'ta # @@ -8699,7 +8841,7 @@ store.inCsb=Marketplace Pass'te #### {StrContains="Marketplace Pass"} store.uploadWorldTitle=Dünyayı Değiştir? # store.uploadPackTitle=Paketi Değiştir? # store.uploadWorldMessage=Bu işlem mevcut dünyanı Realm'ın etkin yuvasından kaldıracak ve yenisiyle değiştirmene izin verecek. Realm üyelerin yeni dünyana erişebilecek. Veri kaybını önlemek üzere mevcut dünyanın bir kopyasını indirmek için "İptal"i veya devam edip dünyanı değiştirmek için "Onayla"yı seç. # -store.uploadPackMessage=Bu işlem şu anda uygulanmış olan tüm kaynak ve davranış paketlerini Bölgenizden kaldıracak ve seçili paketle değiştirecek. Devam etmek istiyor musunuz? # +store.uploadPackMessage=Bu işlem şu anda uygulanmış olan tüm kaynak ve davranış paketlerini Realm'inizden kaldıracak ve seçili paketle değiştirecek. Devam etmek istiyor musunuz? # stream.confirm_start=Yayınlamaya başlamak istediğinizden emin misiniz? # stream.unavailable.account_not_bound=Twitch üzerinden Minecraft yayını yapmadan önce, mojang.com adresinden Twitch hesabınızı bağlamanız gereklidir. Şimdi indirmek ister misiniz? # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=Yazı Tahtası # tile.chest.name=Sandık # tile.ender_chest.name=Ender Sandığı # tile.jigsaw.name=Yapboz Blok # +tile.heavy_core.name=Ağır Çekirdek # tile.honey_block.name=Bal Bloku # tile.honeycomb_block.name=Petek Bloku # tile.lodestone.name=Mıknatıs Taşı # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=Cilalı Karataş Levha # tile.polished_blackstone_pressure_plate.name=Cilalı Karataş Baskı Plakası # tile.polished_blackstone_button.name=Cilalı Karataş Düğme # tile.polished_blackstone_wall.name=Cilalı Karataş Duvar # +tile.polished_tuff.name=Cilalı Tüf # +tile.polished_tuff_slab.name=Cilalı Tüf Tabla # +tile.polished_tuff_stairs.name=Cilalı Tüf Merdiven # +tile.polished_tuff_wall.name=Cilalı Tüf Duvar # tile.soul_campfire.name=Ruh Kamp Ateşi # tile.chiseled_nether_bricks.name=Keskin Nether Tuğlaları # tile.cracked_nether_bricks.name=Çatlak Nether Tuğlaları # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=Sarı Terakota # tile.structure_block.name=Yapı Bloku # structure_block.waterlog_block=Su Dolu Bloklar # tile.structure_void.name=Yapı Boşluğu # +tile.trial_spawner.name=Deneme Canlandırıcısı # +tile.vault.name=Kasa # tile.wool.black.name=Siyah Yün # tile.wool.blue.name=Mavi Yün # tile.wool.brown.name=Kahverengi Yün # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=Eğreltiotu # tile.tallgrass.grass.name=Çimen # tile.tallgrass.name=Çimen # tile.tallgrass.shrub.name=Çalı # +tile.tuff_brick_slab.name=Tüf Tuğla Tabla # +tile.tuff_brick_stairs.name=Tüf Tuğla Merdivenler # +tile.tuff_brick_wall.name=Tüf Tuğla Duvar # +tile.tuff_bricks.name=Tüf Tuğlalar # +tile.tuff_slab.name=Tüf Tabla # +tile.tuff_stairs.name=Tüf Merdivenler # +tile.tuff_wall.name=Tüf Duvar # tile.seagrass.seagrass.name=Deniz Yosunu # tile.sea_pickle.name=Deniz Hıyarı # tile.turtle_egg.name=Deniz Kaplumbağası Yumurtası # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=Kırmızı Halı # tile.carpet.silver.name=Açık Gri Halı # tile.carpet.white.name=Beyaz Halı # tile.carpet.yellow.name=Sarı Halı # +tile.crafter.name=Usta # tile.crafting_table.name=Eşya Yapma Masası # tile.glazedTerracotta.white.name=Beyaz Cilalı Terakota # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=Mumlu Kesik Bakır Tabla # tile.waxed_exposed_cut_copper_slab.name=Mumlu Çıplak Kesik Bakır Tabla # tile.waxed_weathered_cut_copper_slab.name=Mumlu Yıpranmış Kesik Bakır Tabla # tile.waxed_oxidized_cut_copper_slab.name=Mumlu Oksitlenmiş Kesik Bakır Tabla # + +tile.chiseled_copper.name=Yontulmuş Bakır # +tile.exposed_chiseled_copper.name=Çıplak Yontulmuş Bakır # +tile.oxidized_chiseled_copper.name=Oksitlenmiş Yontulmuş Bakır # +tile.waxed_chiseled_copper.name=Mumlu Yontulmuş Bakır # +tile.waxed_exposed_chiseled_copper.name=Mumlu Çıplak Yontulmuş Bakır # +tile.waxed_oxidized_chiseled_copper.name=Mumlu Oksitlenmiş Yontulmuş Bakır # +tile.waxed_weathered_chiseled_copper.name=Mumlu Yıpranmış Yontulmuş Bakır # +tile.weathered_chiseled_copper.name=Yıpranmış Yontulmuş Bakır # + +tile.copper_bulb.name=Bakır Ampul # +tile.exposed_copper_bulb.name=Çıplak Bakır Ampul # +tile.oxidized_copper_bulb.name=Oksitlenmiş Bakır Ampul # +tile.waxed_copper_bulb.name=Mumlu Bakır Ampul # +tile.waxed_exposed_copper_bulb.name=Mumlu Çıplak Bakır Ampul # +tile.waxed_oxidized_copper_bulb.name=Mumlu Oksitlenmiş Bakır Ampul # +tile.waxed_weathered_copper_bulb.name=Mumlu Yıpranmış Bakır Ampul # +tile.weathered_copper_bulb.name=Yıpranmış Bakır Ampul # + +tile.copper_door.name=Bakır Kapı # +tile.exposed_copper_door.name=Çıplak Bakır Kapı # +tile.oxidized_copper_door.name=Oksitlenmiş Bakır Kapı # +tile.waxed_copper_door.name=Mumlu Bakır Kapı # +tile.waxed_exposed_copper_door.name=Mumlu Çıplak Bakır Kapı # +tile.waxed_oxidized_copper_door.name=Mumlu Oksitlenmiş Bakır Kapı # +tile.waxed_weathered_copper_door.name=Mumlu Yıpranmış Bakır Kapı # +tile.weathered_copper_door.name=Yıpranmış Bakır Kapı # + +tile.copper_grate.name=Bakır Izgara # +tile.exposed_copper_grate.name=Çıplak Bakır Izgara # +tile.oxidized_copper_grate.name=Oksitlenmiş Bakır Izgara # +tile.waxed_copper_grate.name=Mumlu Bakır Izgara # +tile.waxed_exposed_copper_grate.name=Mumlu Çıplak Bakır Izgara # +tile.waxed_oxidized_copper_grate.name=Mumlu Oksitlenmiş Bakır Izgara # +tile.waxed_weathered_copper_grate.name=Mumlu Yıpranmış Bakır Izgara # +tile.weathered_copper_grate.name=Yıpranmış Bakır Izgara # + +tile.copper_trapdoor.name=Bakır Tuzak Kapısı # +tile.exposed_copper_trapdoor.name=Çıplak Bakır Tuzak Kapısı # +tile.oxidized_copper_trapdoor.name=Oksitlenmiş Bakır Tuzak Kapısı # +tile.waxed_copper_trapdoor.name=Mumlu Bakır Tuzak Kapısı # +tile.waxed_exposed_copper_trapdoor.name=Mumlu Çıplak Bakır Tuzak Kapısı # +tile.waxed_oxidized_copper_trapdoor.name=Mumlu Oksitlenmiş Bakır Tuzak Kapısı # +tile.waxed_weathered_copper_trapdoor.name=Mumlu Yıpranmış Bakır Tuzak Kapısı # +tile.weathered_copper_trapdoor.name=Yıpranmış Bakır Tuzak Kapısı # + tile.raw_copper_block.name=Ham Bakır Bloku # tile.raw_iron_block.name=Ham Demir Bloku # tile.raw_gold_block.name=Ham Altın Bloku # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=Şans Oku # tipped_arrow.effect.wither=Zayıflama Oku # tipped_arrow.effect.turtleMaster=Kaplumbağa Ustasının Oku # tipped_arrow.effect.slowFalling=Yavaş Düşme Oku # +tipped_arrow.effect.infested=İstila Oku # +tipped_arrow.effect.oozing=Sızma Oku # +tipped_arrow.effect.weaving=Dokuma Oku # +tipped_arrow.effect.windCharged=Rüzgar Saldırısı Oku # structure_block.title=Yapı Bloku # structure_block.structure_name=Yapı Adı # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=En son değişikliklerinizden bazılar worldError.worldFailedRecovery=Kurtarma Başarısız Oldu # worldError.worldFailedRecoveryText=Bozuk bir dünya tespit ettik ve kurtaramadık. # +writeThrottling.osDialog.body=İstenen işlemin tamamlanmasının %d dakika süreceği tahmin edilmektedir. Lütfen bu süre zarfında cihazınızı kapatmayın. # +writeThrottling.osDialog.cancel=İşlemi İptal Et # +writeThrottling.osDialog.confirm=DEVAM # +writeThrottling.progressBar.title=Veri Hazırlanıyor # +writeThrottling.progressBar.body=Dosyalarınız hazırlanıyor... # + userData.recovered.title=Kaydetme Verileri Kurtarıldı # userData.recovered.text=Bozuk kullanıcı ayarlarınız başarıyla kurtarıldı. # userData.recovered.warning=En son değişikliklerinizden bazıları kurtarma sırasında kaybedilmiş olabilir. # @@ -9942,7 +10155,7 @@ autosave.info.desktop=Bu simgeyi gördüğünüzde oyununuzu kaydediyor olacağ xbox.signin.error=Arkadaşlarınızla oynamak, oyuncu puanı ve başarı kazanmak için lütfen Microsoft Hesabınızla oturum açın. # xbox.signin.error.pocket.line1=Realms'ı denediğin için teşekkürler! Özelliklerin son hali bu değildir; hatalarla karşılaşabilirsin. Bize geri bildirim gönder! Seni dinliyoruz. # xbox.signin.error.pocket.line2= # -xbox.signin.error.pocket.line3=Bu test sırasında, davet gönderebilmek ve Bölgelere eklenebilmek için herkesin bir Microsoft Hesabıyla oturum açması gerekir. # +xbox.signin.error.pocket.line3=Bu test sırasında, davet gönderebilmek ve Realm'lere eklenebilmek için herkesin bir Microsoft Hesabıyla oturum açması gerekir. # xbox.signin.warning.kickPlayer=Bu işlem seni ana menüye geri götürecek. Devam etmek istiyor musun? # xbox.connection.error=Microsoft Hesabıyla bağlantı kesildi # xbox.signin=Oturum Aç # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=Sohbet mesajı # xbox.report.area.skin=Oyuncu dış görünüşü # xbox.report.area.gameplay=Oynanış Şekli # xbox.report.area.ingame=Oyun içi içerikler # -xbox.report.area.other=Diğer # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=Siber zorbalık # @@ -10084,7 +10296,7 @@ safety.bannedSkin.button=Daha Fazla Bilgi # safety.bannedSkin.continue=Varsayılan dış görünüşle devam et? # safety.bannedSkin=Mevcut dış görünüşünüz Topluluk Standartlarımızı ihlal ediyor. Çok oyunculu bir oyuna katılmak için lütfen farklı bir dış görünüş seçin. Topluluk Standartlarımızı görüntülemek veya mevcut dış görünüşünüz için bir durum incelemesi göndermek üzere ''%s'' bölümüne tıklayın. # -safety.textProcessorOffline.message=§eSohbet ve kullanıcı tarafından oluşturulan diğer metinler şu anda bu alanda kullanılamıyor. Lütfen daha sonra tekrar deneyin.§f # +safety.textProcessorOffline.message=§eSohbet ve kullanıcı tarafından oluşturulan diğer metinler şu anda bu Realm'de kullanılamıyor. Lütfen daha sonra tekrar deneyin.§f # authserver.notavailable=Bir şeyler ters gitti. Bağlanmaya çalıştığın sunucunun güvendiğimiz bir sunucu olduğunu doğrulayamıyoruz. Tekrar denemeni öneririz. # authserver.authfailed=Kötü haber. Bu sunucu doğrulama testimizi geçemedi. Güvenmediğimiz biri, güvenilir bir sunucu gibi davranıyor olabilir. # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=Ne yazık ki bağlanamadık. Lütfen daha gathering.connect.title=Bağlanıyor... # gathering.info.qr.title.onlineService=Daha Fazla Bilgi # gathering.info.qr.body.onlineService.nso=Minecraft'taki bir etkinliğe katılmak için Nintendo Switch Online üyeliğine ihtiyacınız var. # -gathering.info.qr.body.onlineService.psn=Minecraft'taki bir etkinliğe katılmak için \"PlayStation Plus\" oturumu açmış olmanız gerekir. # +gathering.info.qr.body.onlineService.psn=Minecraft'taki bir etkinliğe katılmak için PlayStation®Plus oturumu açmış olmanız gerekir. #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=Minecraft'taki bir etkinliğe katılmak için oturum açmış olmanız gerekir. # gathering.info.qr.title.childAccount=Çevrimiçi Oyuna İzin Verilmiyor # gathering.info.qr.body.childAccount=Mevcut ebeveyn denetimleriniz çevrimiçi oynamanızı sınırlıyor. # diff --git a/resource_pack/texts/uk_UA.lang b/resource_pack/texts/uk_UA.lang index fc58cbd5d..7458b40b4 100644 --- a/resource_pack/texts/uk_UA.lang +++ b/resource_pack/texts/uk_UA.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=Вибрати насіння # accessibility.start.feedback=Надіслати посилання на відгук на веб-сайт # accessibility.start.new=Нові # -accessibility.start.profile=Вибрати профіль # accessibility.start.skinPicker=Вибрати скін # accessibility.store.tag=Ярлик # @@ -1094,10 +1093,6 @@ commands.me.description=Відображає повідомлення про в commands.message.display.incoming=%1$s шепоче вам: %2$s # commands.message.display.outgoing=Ви шепочете %1$s: %2$s # commands.message.sameTarget=Не можна надіслати особисте повідомлення самому собі! # -commands.message.warn=§4Вам надіслано попередження. Інші гравці могли знайти вашу поведінку образливою. Будь ласка, з повагою ставтеся до тих, із ким граєте. # -commands.message.toastWarn=Minecraft для всіх! Будь ласка, поводьтеся відповідно до наших стандартів спільноти. # -commands.warn.invalidWarningLevel=Некоректний рівень попередження. # -commands.warn.playerDoesNotExist=Не вдалося знайти гравця. Будь ласка, виберіть дійсного гравця. # commands.mobevent.description=Контролює, які події мобів можна запускати. # commands.mobevent.eventsEnabledSetToTrue=Події мобів тепер увімкнуто. Окремі події, для яких встановлено значення false, не запускатимуться. # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=- %s: %s від %d %d %d до %d %d %d commands.volumearea.entry.withoutIdentifier=- %s: від %d %d %d до %d %d %d # commands.volumearea.noneExist.currentDimension=Немає просторів у поточному вимірі. # commands.volumearea.inUse=%1Використовується $d/%2$d просторів. # -commands.warn.description=Надсилає попереджувальне повідомлення гравцю. # commands.weather.clear=Зміна на ясну погоду # commands.weather.description=Установлює погоду. # commands.weather.disabled=У цьому світі не ввімкнуто режим "Погодній цикл". # @@ -1572,6 +1566,7 @@ container.beacon=Маяк # container.brewing=Варильна стійка # container.chest=Скриня # container.chestDouble=Велика скриня # +container.crafter=Крафтер # container.crafting=Крафтинг # container.creative=Вибір предмета # container.dispenser=Розподілювач # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=Печери й скелі # createWorldScreen.cavesandcliffsDescription=Дослідіть генерування нових різноманітних печер # createWorldScreen.spectatorMode=Режим глядача # createWorldScreen.spectatorModeDescription=Спробуйте ранні версії режиму глядача # -createWorldScreen.experimentalCameras=Експериментальні камери # -createWorldScreen.experimentalCamerasDescription=Містить приклади налаштувань камери (команда камери більше не експериментальна) # createWorldScreen.recipeUnlocking=Розблокування рецептів # createWorldScreen.recipeUnlockingDescription=Увімкнути розблокування рецептів # createWorldScreen.experimentalholiday=Функції редактора свят # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=Створення нового світу… # createWorldScreen.progress.realms=Скидання світу Realm… # createWorldScreen.seed.desc=Введіть сід, щоб створити таку саму місцевість. Не заповнюйте, щоб створити випадковий світ. # createWorldScreen.showCoordinates=Показ координат # +createWorldScreen.showDaysPlayed=Показати ігрові дні # createWorldScreen.worldType=Тип світу # createWorldScreen.randomtickspeed=Випадкова швидкість такту # createWorldScreen.randomtickspeed.reset=Скинути випадкову швидкість такту # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=Видалити проєкт # createWorldScreen.editor.projectOptionsLabel=Параметри проєкту # createWorldScreen.editor.delete.confirm=Видалити проєкт назавжди? # createWorldScreen.editor.deleteWarningFormat=Справді видалити «%s»? Цей проєкт буде втрачений назавжди! # +createWorldScreen.eduCloud.about.body=Ім’я файлу: %1$s%2$sОстаннє оновлення: %3$s%4$sЩоб завантажити, натисніть OK, а потім – «Завантажити».%5$s # +createWorldScreen.eduCloud.about.title=Про файл хмарного світу # createWorldScreen.eduCloud.delete.confirm=Видалити локальний світ? # createWorldScreen.eduCloud.deleteWarningFormat=Ви впевнені, що хочете видалити «%1$s» на цьому пристрої?%2$sХмарна версія «%3$s» не постраждає, і її можна пізніше повторно синхронізувати. # createWorldScreen.experimentalDeferredTechnicalPreview=Функції Render Dragon для творців # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Магазин Windows # realmsSettingsScreen.xboxOneStoreDisplayName=Магазин Xbox # realmsSettingsScreen.amazonStoreDisplayName=Amazon Appstore # realmsSettingsScreen.oculusStoreDisplayName=Oculus Store # -realmsSettingsScreen.berwickStoreDisplayName="PlayStation Store" # -realmsSettingsScreen.SonyStoreDisplayName=«PlayStation Store» #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=невідомий магазин # realmsSettingsScreen.extendingRealm=Продовження Realm… # realmsSettingsScreen.offerError.title=Покупка в очікуванні # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=Пакети, придбані xbl.syncIAP.confirmSync.prompt.yes=Так, синхронізувати мої покупки # xbl.marketplace.account.error.body.nobutton=З вашим обліковим записом сталася помилка. Ви не зможете користуватися ринком, доки ми не вирішимо цю проблему. Якщо ця проблема не зникне через кілька днів, зверніться до служби підтримки. # -xbl.marketplace.account.banned.body.nobutton=Ви не можете використовувати ринок, доки не закінчиться термін дії призупинення. # playfab.account.banned.temporary=призупинено # playfab.account.banned.permanent=забанено # @@ -2487,6 +2482,14 @@ date.daysAbbreviated1Char=%s дн ### It needs to be abbreviated with no more t date.hoursAbbreviated1Char=%sгод ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%sхв ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%sс ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=Днів: %s # +date.hoursPlural=Годин: %s # +date.minutesPlural=Хвилин: %s # +date.secondsPlural=Секунд: %s # +date.daySingular=%s день # +date.hourSingular=%s година # +date.minuteSingular=%s хвилина # +date.secondSingular=%s секунда # date.timeLeft=%s залишилося # dayOneExperience.carousel.title=Вітаємо в новій версії Minecraft! # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=СТАТИ ХОСТОМ # edu.worlds_screen.settings=ПАРАМЕТРИ # edu.worlds_screen.download=ЗАВАНТАЖИТИ ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=НАЛАШТУВАТИ # +edu.worlds_screen.about=ЗАГАЛЬНІ ВІДОМОСТІ # edu.worlds_screen.back=НАЗАД # edu.worlds_screen.copy=КОПІЮВАТИ # edu.worlds_screen.export=ЕКСПОРТУВАТИ # @@ -2791,7 +2795,13 @@ edu.templates.empty_banner=Шаблони світів можна отримат edu.pause.multiplayer.disabled=У цьому уроці не доступний режим мультиплеєра. # effect.badOmen=Погане знамення # +effect.infested=Заражено # +effect.oozing=Заслизлення # +effect.raid_omen=Ознака рейду # +effect.trial_omen=Знамення випробування # effect.villageHero=Сільський герой # +effect.weaving=Ткацтво # +effect.wind_charged=Вихрова куля готова # enchantment.arrowDamage=Сила # enchantment.arrowFire=Полум’я # @@ -2810,6 +2820,9 @@ enchantment.durability=Незламність # enchantment.fire=Сила вогню # enchantment.fishingSpeed=Наживка # enchantment.frostwalker=Ходіння на морозі # +enchantment.heavy_weapon.breach=Прорив # +enchantment.heavy_weapon.density=Щільність # +enchantment.heavy_weapon.windburst=Порив вітру # enchantment.knockback=Відкидання # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=Кажан # entity.bee.name=Бджола # entity.blaze.name=Іфрит # entity.boat.name=Човен # +entity.bogged.name=Загруз # +entity.breeze.name=Вітерець # +entity.breeze_wind_charge_projectile.name=Атака вітру # entity.cat.name=Кіт # entity.cave_spider.name=Печерний павук # entity.chicken.name=Курка # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=Невмілий селянин # entity.villager_v2.name=Селянин # entity.vindicator.name=Поборник # entity.wandering_trader.name=Мандрівний крамар # +entity.wind_charge_projectile.name=Атака вітру # entity.witch.name=Відьма # entity.wither.name=Візер # entity.wither_skeleton.name=Візер-скелет # @@ -3009,6 +3026,7 @@ feature.ruins=Підводні руїни # feature.pillager_outpost=Застава мародерів # feature.bastion_remnant=Руїни бастіону # feature.ruined_portal=Зруйнований портал # +feature.trial_chambers=Камери випробувань # feed.like=Подобається # feed.manage_feed=Керувати стрічкою # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=Щоб пересуватися, рухайт gameTip.flying.mouse=Двічі натисніть :_input_key.jump:, щоб полетіти # gameTip.flying.touch=Двічі натисніть кнопку «Стрибок», щоб полетіти # +gameTip.flyDown.mouse=Щоб полетіти вниз, натисніть :_input_key.sneak: # +gameTip.flyUp.mouse=Щоб злетіти вгору, натисніть :_input_key.jump: # + +gameTip.stopFlying.mouse=Двічі натисніть :_input_key.jump:, щоб зупинити політ # +gameTip.stopFlying.touch=Двічі натисніть «Летіти вниз», щоб зупинити політ # + gameTip.jump.mouse=Стрибок за допомогою :_input_key.jump: # +gameTip.swim.mouse=Натисніть і утримуйте :_input_key.jump:, щоб поплисти вгору # -gameTip.hotbar.mouse=Прокрутіть коліщатко миші, щоб вибрати # на панелі доступу та взяти в руку # -gameTip.hotbar.touch=Натисніть # на панелі доступу, щоб утримувати # -gameTip.hotbar.controller=Натисніть # на панелі доступу, щоб утримувати # +gameTip.hotbar.selection.mouse=Прокрутіть або натисніть %s, щоб утримати об’єкт ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=Натисніть об’єкт на панелі швидкого доступу, щоб утримати # gameTip.breakBlock.mouse=Натисніть та утримуйте ліву кнопку, щоб розбити блоки # gameTip.breakBlock.touch=Щоб розбити блоки, натисніть та утримуйте # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=Ви крадетеся! Зараз ви не можете gameTip.sneak.touch=Ви крадетеся, тому не можете впасти з країв # gameTip.sneak.controller=Ви крадетеся, тому не можете впасти з країв # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=Розмістіть свій стіл для крафтингу. Утримуйте його та натисніть, щоб розмістити # gameTip.placeCraftingTable.touch=Розмістіть стіл для крафтингу, торкнувшись землі # gameTip.placeCraftingTable.controller=Розмістіть верстак, утримуйте його, потім торкніться землі # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=Дякуємо, що поділилися своїм gui.submitFeedback.failure.status.unprocessableEntity=Ви не є власником товару, до якого намагаєтеся залишити відгук. (Код помилки: %d) # gui.submitFeedback.failure.status.tooManyRequests=О ні! Ви надіслали забагато відгуків, спробуйте ще раз пізніше. (Код помилки: %d) # gui.submitFeedback.failure.status.other=Наразі не можна надіслати відгук, спробуйте ще раз пізніше. (Код помилки: %d) # +gui.togglable_slot=Натисніть, щоб вимкнути слот # gui.playOffline=Грати офлайн # gui.signIn=Вхід # gui.genericNetworkError=Щось пішло не так. Перевірте підключення до Інтернету. # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=Досліджуйте світ можливосте howtoplay.minecoins.text.2=Після активації Minecoins пов’язуються з обліковим записом Microsoft, відтак ви можете отримати доступ до своїх монет і покупок також і на інших підтримуваних пристроях! # howtoplay.minecoins.button.text.1=Отримати монети Minecoins # howtoplay.minecoins.header.1=Застереження # -howtoplay.minecoins.text.3=*Для Minecoins потрібна версія Minecraft: Bedrock Edition з ринком Minecraft. Minecoins несумісні із Sony PlayStation. Інформацію про сумісність дивіться за посиланням minecraft.net/minecoins  # +howtoplay.minecoins.text.3=*Для Minecoins потрібна версія Minecraft: Bedrock Edition із ринком Minecraft. Minecoins несумісні із Sony PlayStation®. Інформацію про сумісність див. за посиланням minecraft.net/minecoins  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=Добування # @@ -4145,7 +4170,7 @@ level.editor.export.failed=Не вдалося експортувати проє level.editor.import.failed=Не вдалося імпортувати проєкт # level.editor.import.failed.incompatibleEdition=Помилка імпорту світу: непідтримуваний формат файлу # -inbox.invite.title=Запрошення до Realms # +inbox.invite.title=Realm запрошує до # invite.clear=Скасувати вибір # invite.send=Надіслати %d запрош. # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=Червоний обернений прави item.banner.diagonal_up_right.silver=Світло-сірий обернений правий скіс # item.banner.diagonal_up_right.white=Білий обернений правий скіс # item.banner.diagonal_up_right.yellow=Жовтий обернений правий скіс # +item.banner.flow.black=Чорний потік # +item.banner.flow.blue=Синій потік # +item.banner.flow.brown=Коричневий потік # +item.banner.flow.cyan=Бірюзовий потік # +item.banner.flow.gray=Сірий потік # +item.banner.flow.green=Зелений потік # +item.banner.flow.lightBlue=Блакитний потік # +item.banner.flow.lime=Салатовий потік # +item.banner.flow.magenta=Малиновий потік # +item.banner.flow.orange=Помаранчевий потік # +item.banner.flow.pink=Рожевий потік # +item.banner.flow.purple=Фіолетовий потік # +item.banner.flow.red=Червоний потік # +item.banner.flow.silver=Світло-сірий потік # +item.banner.flow.white=Білий потік # +item.banner.flow.yellow=Жовтий потік # item.banner.flower.black=Чорна фігура квітки # item.banner.flower.blue=Синя фігура квітки # item.banner.flower.brown=Коричнева фігура квітки # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=Білий градієнт з краю # item.banner.gradient_up.yellow=Жовтий градієнт з краю # item.banner.gray.name=Сірий стяг # item.banner.green.name=Зелений стяг # +item.banner.guster.black=Чорний ґастер # +item.banner.guster.blue=Синій ґастер # +item.banner.guster.brown=Коричневий ґастер # +item.banner.guster.cyan=Бірюзовий ґастер # +item.banner.guster.gray=Сірий ґастер # +item.banner.guster.green=Зелений ґастер # +item.banner.guster.lightBlue=Блакитний ґастер # +item.banner.guster.lime=Салатовий ґастер # +item.banner.guster.magenta=Малиновий ґастер # +item.banner.guster.orange=Помаранчевий ґастер # +item.banner.guster.pink=Рожевий ґастер # +item.banner.guster.purple=Фіолетовий ґастер # +item.banner.guster.red=Червоний ґастер # +item.banner.guster.silver=Світло-сірий ґастер # +item.banner.guster.white=Білий ґастер # +item.banner.guster.yellow=Жовтий ґастер # item.banner.half_horizontal.black=Чорний перетин # item.banner.half_horizontal.blue=Синій перетин # item.banner.half_horizontal.brown=Коричневий перетин # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=Човен з акації # item.boat.big_oak.name=Човен із темного дуба # item.bone.name=Кістка # item.book.name=Книга # +item.breeze_rod.name=Вихровий прут # item.chainmail_boots.name=Кольчужні чоботи # item.leather_boots.name=Шкіряні чоботи # item.diamond_boots.name=Алмазні чоботи # @@ -4991,6 +5049,7 @@ item.comparator.name=Компаратор на редстоуні # item.compass.name=Компас # item.lodestonecompass.name=Магнітний компас # item.cookie.name=Печиво # +item.copper_door.name=Мідні двері # item.crossbow.name=Арбалет # item.diamond.name=Алмаз # item.repeater.name=Повторювач на редстоуні # @@ -5038,6 +5097,7 @@ tile.end_rod.name=Стержень Енду # item.ender_eye.name=Око Ендеру # item.ender_pearl.name=Перлина Ендеру # item.experience_bottle.name=Пляшечка чар # +item.exposed_copper_door.name=Відкриті мідні двері # item.feather.name=Перо # item.fermented_spider_eye.name=Квашене око павука # item.fireball.name=Заряд полум’я # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=Золоті поножі # item.iron_leggings.name=Залізні поножі # item.nautilus_shell.name=Мушля наутилуса # item.heart_of_the_sea.name=Серце моря # +item.mace.name=Булава # item.magma_cream.name=Магмовий крем # item.map.name=Карта # item.map.exploration.mansion.name=Карта скарбів лісу # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=Карта села савани # item.map.exploration.village_desert.name=Карта пустельного села # item.map.exploration.jungle_temple.name=Карта дослідника джунглів # item.map.exploration.swamp_hut.name=Карта дослідника боліт # +item.map.exploration.trial_chambers.name=Ознайомлювальна версія карти дослідника # item.melon.name=Кавун # item.milk.name=Молоко # item.minecart.name=Вагонетка # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=Вагонетка зі скринею # item.command_block_minecart.name=Вагонетка з командним блоком # item.minecartFurnace.name=Вагонетка з піччю # item.hopper_minecart.name=Вагонетка з воронкою # +item.ominous_bottle.name=Зловісна пляшка # +item.ominous_trial_key.name=Зловісний ключ випробування # +item.oxidized_copper_door.name=Окислені мідні двері # item.tnt_minecart.name=Вагонетка з вибухівкою # item.pitcher_pod.name=Стручок непентеса # item.torchflower_seeds.name=Насіння полум’яної квітки # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=Яйце призову агента # item.spawn_egg.entity.armadillo.name=Яйце призову броненосця # item.spawn_egg.entity.axolotl.name=Яйце призову аксолотля # item.spawn_egg.entity.bee.name=Яйце призову бджоли # +item.spawn_egg.entity.bogged.name=Загрузле яйце призову # +item.spawn_egg.entity.breeze.name=Яйце призову вітерця # item.spawn_egg.entity.hoglin.name=Яйце призову хоґліна # item.spawn_egg.entity.cat.name=Яйце призову кота # item.spawn_egg.entity.chicken.name=Яйце призову курки # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 – охорона # item.record_pigstep.desc=Лена Рейн – Pigstep # item.record_otherside.desc=Лена Рейн – otherside # item.record_relic.desc=Аарон Чероф — Реліквія # +item.record_creator.desc=Лена Рейн – Авторка # +item.record_creator_music_box.desc=Лена Рейн – Авторка (музична скринька) # +item.record_precipice.desc=Аарон Чероф – Безодня # item.redstone.name=Пил редстоуну # item.reeds.name=Цукрова тростина # item.kelp.name=Ламінарія # @@ -5324,6 +5394,12 @@ item.iron_sword.name=Залізний меч # item.stone_sword.name=Кам’яний меч # item.wooden_sword.name=Дерев’яний меч # item.unbreakable=Незнищенний # +item.waxed_copper_door.name=Вощені мідні двері # +item.waxed_exposed_copper_door.name=Вощені відкриті мідні двері # +item.waxed_oxidized_copper_door.name=Двері з вощеної окисненої міді # +item.waxed_weathered_copper_door.name=Вощені вивітрені мідні двері # +item.weathered_copper_door.name=Обвітрені мідні двері # +item.wind_charge.name=Атака вітру # item.wheat.name=Пшениця # item.wolf_armor.name=Вовчий обладунок # item.writable_book.name=Книга й перо # @@ -5331,6 +5407,7 @@ item.written_book.name=Написана книга # item.glowstone_dust.name=Пил світлокаменю # item.shulker_shell.name=Панцир шалкера # item.totem.name=Тотем безсмертя # +item.trial_key.name=Пробний ключ # item.turtle_helmet.name=Панцир черепахи # item.turtle_shell_piece.name=Щиток черепахи # item.phantom_membrane.name=Перетинка фантома # @@ -5338,8 +5415,10 @@ item.sweet_berries.name=Солодкі ягоди # item.suspicious_stew.name=Підозріла мішанина # item.banner_pattern.bricks=Мурований # item.banner_pattern.creeper=Фігура кріпера # +item.banner_pattern.flow=Потік # item.banner_pattern.flower=Фігура квітки # item.banner_pattern.globe=Куля # +item.banner_pattern.guster=Ґастер # item.banner_pattern.name=Візерунок стяга # item.banner_pattern.piglin=Рильце # item.banner_pattern.skull=Фігура черепа # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=Візерунки стяга # itemGroup.name.netherWartBlock=Незерський наріст # itemGroup.name.candles=Свічки # itemGroup.name.goatHorn=Козячі роги # +itemGroup.name.compounds=Складові # +itemGroup.name.products=Продукти # jigsaw.title.target_pool=Цільовий набір: # jigsaw.title.name=Ім’я: # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=ПАРАМЕТРИ РЕЖИМУ КЛАСУ # menu.serverStore=Магазин %s # menu.serverGenericName=Сервер # menu.play=Грати # +menu.profile=Профіль # menu.playdemo=Грати в демо-світі # menu.playOnRealms=Грати в Realm # menu.quickplay=Швидка гра # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=Виберіть початкового пер menu.character_cast.preview_title=Зустрічайте акторський склад! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Сервер Realms ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=Сервери # merchant.deprecated=Обміняйте щось інше, щоб розблокувати! # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=Повноклавіатурний режим # options.fullKeyboardLayout=Розкладка повної клавіатури # options.improvedInputResponsePlaceholder=Покращена реакція на введення # options.improvedInputResponsePlaceholder.tooltip=Зменшує затримку між введенням даних і їхньою появою на екрані. Для цього налаштування може використовуватися більше заряду акумулятора. # +options.dynamicTexturesToggle=Зняти обмеження текстури # +options.dynamicTexturesToggle.tooltip=Якщо вимкнути цей параметр, то потрібно перезапустити гру. Така дія може спричинити нестабільну роботу під час використання кількох доповнень або пакетів ресурсів із багатьма текстурами. # +options.dynamicTextures.popUp=Якщо ви ввімкнете параметр «Зняти обмеження текстури», то для його вимкнення потрібно буде перезапустити гру. # +options.dynamicTextures.popUp.title=Ви справді хочете цього? # options.fullscreen=Повноекранний режим # options.gamepadcursorsensitivity=Чутливість курсора контролера # options.gamertag=Псевдонім гравця: # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=Підключитися # options.creator.debuggerListen=Слухати # options.creator.debuggerHost=Стати хостом # options.creator.debuggerPort=Порт # +options.creator.watchdogHeading=Налаштування служби контролю сценарію # +options.creator.watchdogSlowWarning=Попередження про повільний сценарій # +options.creator.watchdogSlowThreshold=Середнє значення перевищує # +options.creator.watchdogSlowFormat=%s мілісек. # +options.creator.watchdogSlowFormatDefault=Мілісекунд (за замовчуванням): %s # +options.creator.watchdogSpikeWarning=Попередження про шипи в сценарії # +options.creator.watchdogSpikeThreshold=Перевищення кількості шипів # +options.creator.watchdogSpikeFormat=%s мілісек. # +options.creator.watchdogSpikeFormatDefault=Мілісекунд (за замовчуванням): %s # +options.creator.watchdogHangThreshold=Перервати після # +options.creator.watchdogHangFormat=Секунд: %s # +options.creator.watchdogHangFormatDefault=Секунд (за замовчуванням): %s # options.vr_classic_box_selection=Контурний вибір # options.hidegamepadcursor=Приховати курсор контролера # options.hidegui=Приховати інтерфейс # @@ -6662,7 +6761,7 @@ options.makeBackup=Створити резервну копію світу # options.managePrivacy=Щоб налаштувати параметри конфіденційності, відкрийте в будь-якому браузері сторінку https://account.xbox.com/Settings. ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=Від’єднати обліковий запис Microsoft # options.unlink_msa.confirm.title=Від’єднати обліковий запис Microsoft? # -options.unlink_msa.confirm.warning=УВАГА! Ви більше не зможете зберігати прогрес і покупки, здійснені в системі "PlayStation 4", якщо від’єднаєте обліковий запис %s. # +options.unlink_msa.confirm.warning=УВАГА! Ви більше не зможете зберігати прогрес і покупки, здійснені в системі PlayStation®4, якщо від’єднаєте обліковий запис %s. #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=Від’єднання вашого облікового запису Microsoft від цієї гри вплине на всі ігри Minecraft на цій платформі, у яких використовується цей обліковий запис Microsoft. # options.unlink_msa.confirm.checkbox1=Я більше не матиму доступу до вмісту Магазину в грі, граючи на інших платформах. # options.unlink_msa.confirm.checkbox2=Я більше не зможу грати в кросплатформенні ігри з друзями на інших платформах. # @@ -6688,7 +6787,7 @@ options.editor.modeDescription.messageWithMouse=Режим редактора в options.editor.modeActive=Minecraft працює в режимі редактора. # options.editor.modeNotActive=Minecraft наразі не працює в режимі редактора. # options.editor.achievementsDisabled=У цьому світі неможливо заробляти досягнення. # -options.newUiPlayScreen.initiate=Перемикання на новий інтерфейс користувача # +options.newUiPlayScreen.initiate=До нового UI # options.openPage.continue=Додаткова інформація # options.graphicsMode=Графічний режим # options.graphicsMode.simple=Простий # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=Завантажити світ для н hudScreen.controlCustomization.tooltip.notouch=Як налаштувати елементи керування за допомогою сенсорного пристрою # hudScreen.controlCustomization.tooltip.alreadycustomizing=Екран налаштування сенсорного керування вже відкритий # hudScreen.controlCustomization.tooltip.alive=Гравець повинен бути живим, щоб налаштувати управління. # +hudScreen.daysPlayed=Ігрові дні: %s # +hudScreen.daysPlayed.overflow=Занадто багато, щоб порахувати! # playscreen.fileSize.MB=МБ # playscreen.fileSize.GB=ГБ # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=Вибухове зілля зцілення # potion.heal.linger.name=Тривале зілля зцілення # potion.healthBoost=Покращення здоров’я # potion.hunger=Голод # +potion.infested.linger.name=Тривале зілля зараження # +potion.infested.name=Зілля зараження # +potion.infested.splash.name=Вибухове зілля зараження # +potion.infested=Заражено # potion.invisibility=Невидимість # potion.invisibility.name=Зілля невидимості # potion.invisibility.splash.name=Вибухове зілля невидимості # @@ -7067,6 +7172,10 @@ potion.nightVision=Нічне бачення # potion.nightVision.name=Зілля нічного бачення # potion.nightVision.splash.name=Вибухове зілля нічного бачення # potion.nightVision.linger.name=Тривале зілля нічного бачення # +potion.oozing.linger.name=Тривале зілля заслизлення # +potion.oozing.name=Зілля заслизлення # +potion.oozing.splash.name=Вибухове зілля заслизлення # +potion.oozing=Заслизлення # potion.poison=Отрута # potion.poison.name=Зілля отрути # potion.poison.splash.name=Вибухове зілля отрути # @@ -7108,6 +7217,14 @@ potion.weakness=Слабкість # potion.weakness.name=Зілля слабкості # potion.weakness.splash.name=Вибухове зілля слабкості # potion.weakness.linger.name=Тривале зілля слабкості # +potion.weaving.linger.name=Тривале зілля павутини # +potion.weaving.name=Зілля павутини # +potion.weaving.splash.name=Вибухове зілля павутини # +potion.weaving=Ткацтво # +potion.windCharged.linger.name=Тривале зілля вихрової кулі # +potion.windCharged.name=Зілля вихрової кулі # +potion.windCharged.splash.name=Вибухове зілля вихрової кулі # +potion.windCharged=Вихрова куля готова # potion.wither=Згублення # potion.wither.name=Зілля розпаду # potion.wither.splash.name=Вибухове зілля розпаду # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=Цей світ неможливо в progressScreen.message.forbiddenContent=Ви не володієте принаймні одним із застосованих пакетів # progressScreen.message.loadingSplitScreenAppearances=Завантаження візуальних форм розділеного екрана... # progressScreen.message.finishedLoadingSplitScreenAppearances=Завантаження візуальних форм розділеного екрана завершено. # -progressScreen.message.modifiedWorldWarning=Цей світ може виглядати або функціонувати не так, як немодифіковані світи, і ви не можете заробляти досягнення. # +progressScreen.message.modifiedWorldWarning.1=Ви граєте у світі з доповненнями! Це додасть нових можливостей у ваш світ Minecraft. # +progressScreen.message.modifiedWorldWarning.2=Не зупиняйтеся на одному! Ви можете завантажити кілька доповнень для одного світу одночасно. # +progressScreen.message.modifiedWorldWarning.3=Корисна підказка: пакет ресурсів може змінювати текстури різних блоків і сутностей. # +progressScreen.message.modifiedWorldWarning.4=Корисна підказка: пакет поведінки може змінити роботу різних об’єктів, сутностей або блоків. # +progressScreen.message.modifiedWorldWarning.5=Корисна підказка: доповнення містить як пакет поведінки, так і пакет ресурсів. Переконайтеся, що обидва пакети активовані, щоб доповнення працювало! # +progressScreen.message.modifiedWorldWarning.6=Доповнення додають нові блоки, об’єкти або мобів до ваших світів. # +progressScreen.message.modifiedWorldWarning.7=Світи та доповнення – унікальні й складні! Хоча деякі з них чудово працюють разом, з деякими ви можете отримати дивні результати. # +progressScreen.message.modifiedWorldWarning.8=Більше доповнень означає більше розваг, але гра може завантажуватися довше. # progressScreen.dialog.title.resourcePack=Завантажити пакети ресурсів? # progressScreen.dialog.title.behaviorAndResourcePack=Завантажити пакети поведінки й ресурсів світу? # progressScreen.dialog.title.onlyBehavior=Завантажити пакети поведінки світу? # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=Оновити світ? # resourcePack.warning.add.body=Цей світ може виглядати або поводитися не так, як немодифіковані світи. Збережіть копію свого світу, перш ніж продовжити. # resourcePack.warning.add.button.cancel=Не додавати пакет # resourcePack.warning.add.button.ok=Все одно додати пакет # +resourcePack.warnings.contentKeyErrorBody=Виникла помилка завантаження пакета %s. # +resourcePack.warnings.contentKeyErrorBodyMultiple=Виникла завантаження пакетів %s. # +resourcePack.warnings.contentKeyErrorTitle=Помилка! # resourcePack.warning.remove.title=Це небезпечно! # resourcePack.warning.remove.body=Якщо додати або видалити пакети після гри у світі, світ може поламатися, а ви втратите все, що створили. # resourcePack.warning.remove.button.cancel=Залишити пакет # @@ -7534,7 +7661,7 @@ howtoplay.smithing_table.title=Ковальський стіл # howtoplay.smithing_table=Ковальський стіл # hudScreen.tooltip.brush=Пензель # item.acacia_hanging_sign.name=Акацієва вивіска # -item.angler_pottery_sherd.name=Гончарний черепок «‎Рибалка»‎ # +item.angler_pottery_sherd.name=Гончарний черепок «Рибалка»‎ # item.archer_pottery_sherd.name=Гончарний черепок «Лучник» # item.armor.upgrade=Модернізація: # item.arms_up_pottery_sherd.name=Гончарний черепок «Руки вгору» # @@ -7542,7 +7669,7 @@ item.bamboo_door.name=Бамбукові двері # item.bamboo_hanging_sign.name=Бамбукова вивіска # item.bamboo_sign.name=Бамбуковий знак # item.birch_hanging_sign.name=Березова вивіска # -item.blade_pottery_sherd.name=Гончарний черепок «‎Клинок»‎ # +item.blade_pottery_sherd.name=Гончарний черепок «Клинок»‎ # item.boat.bamboo.name=Бамбуковий пліт # item.boat.cherry.name=Вишневий човен # item.brewer_pottery_sherd.name=Гончарний черепок «Бровар»‎ # @@ -7556,21 +7683,24 @@ item.chest_boat.cherry.name=Вишневий човен зі скринею # item.crimson_hanging_sign.name=Малинова вивіска # item.danger_pottery_sherd.name=Гончарний черепок «Небезпека» # item.dark_oak_hanging_sign.name=Вивіска з темного дуба # -item.explorer_pottery_sherd.name=Гончарний черепок «‎Дослідник»‎ # -item.friend_pottery_sherd.name=Гончарний черепок «‎Друг» # -item.heart_pottery_sherd.name=Гончарний черепок «‎Серце» # -item.heartbreak_pottery_sherd.name=Гончарний черепок «‎Розбите серце» # -item.howl_pottery_sherd.name=Гончарний черепок «‎Виття» # +item.explorer_pottery_sherd.name=Гончарний черепок «Дослідник»‎ # +item.flow_pottery_sherd.name=Гончарний черепок «Потік» # +item.friend_pottery_sherd.name=Гончарний черепок «Друг» # +item.guster_pottery_sherd.name=Гончарний черепок «Ґастер» # +item.heart_pottery_sherd.name=Гончарний черепок «Серце» # +item.heartbreak_pottery_sherd.name=Гончарний черепок «Розбите серце» # +item.howl_pottery_sherd.name=Гончарний черепок «Виття» # item.jungle_hanging_sign.name=Джунглева вивіска # item.mangrove_hanging_sign.name=Мангрова вивіска # item.miner_pottery_sherd.name=Гончарний черепок «Шахтар» # item.mourner_pottery_sherd.name=Гончарний черепок «Плакальник» # item.oak_hanging_sign.name=Дубова вивіска # -item.plenty_pottery_sherd.name=Гончарний черепок «‎Достаток» # +item.plenty_pottery_sherd.name=Гончарний черепок «Достаток» # item.prize_pottery_sherd.name=Гончарний черепок «Приз»‎ # -item.sheaf_pottery_sherd.name=Гончарний черепок «‎Сніп» # -item.shelter_pottery_sherd.name=Гончарний черепок «‎Укриття» # -item.skull_pottery_sherd.name=Гончарний черепок «‎Череп» # +item.scrape_pottery_sherd.name=Гончарний черепок «Шкребок» # +item.sheaf_pottery_sherd.name=Гончарний черепок «Сніп» # +item.shelter_pottery_sherd.name=Гончарний черепок «Укриття» # +item.skull_pottery_sherd.name=Гончарний черепок «Череп» # item.skull.piglin.name=Голова піґліна # item.smithing_template.applies_to=Стосується: # item.smithing_template.armor_trim.applies_to=Обладунок # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=Вишневі сходи # tile.cherry_trapdoor.name=Вишневий лаз # tile.cherry_wood.name=Вишнева деревина # tile.chiseled_bookshelf.name=Точена книжкова полиця # +tile.chiseled_tuff.name=Точений туф # +tile.chiseled_tuff_bricks.name=Точена туфова цегла # tile.decorated_pot.name=Декоративний горщик # tile.pink_petals.name=Рожеві пелюстки # tile.stripped_bamboo_block.name=Блок смугастого бамбука # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=Орнамент обладунків «Бісик» # trim_pattern.ward.name=Орнамент обладунків «Боронитель» # trim_pattern.wayfinder.name=Орнамент обладунків «Шляхошукач» # trim_pattern.wild.name=Орнамент обладунків «Дикість» # +trim_pattern.bolt.name=Оздоблення обладунків «‎Блискавка»‎ # +trim_pattern.flow.name=Оздоблення обладунків «‎Потік»‎ # upgrade.netherite_upgrade.name=Модернізація незериту # storageManager.mainSizeLabel=%s – 1 елем. # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=Видалити шаблон світу? # selectTemplate.delete=Видалити # selectTemplate.myTemplates=Мої шаблони світу # selectTemplate.realmsPlus=Рекомендовані шаблони Realms Plus # -selectTemplate.marketplacePass=Вибрані шаблони Marketplace Pass #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=Рекомендований вміст Marketplace Pass #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=Імпортовані шаблони # selectTemplate.download=Завантажити # selectTemplate.noTemplates=На цьому пристрої немає шаблонів світу. # -selectTemplate.suggestedContent.title=Вибрані шаблони на Ринку # +selectTemplate.suggestedContent.title=Рекомендований вміст Ринку # selectTemplate.suggestedContent.button=Переглянути інші шаблони # selectTemplate.createdBy=Ким створено: %s # selectTemplate.inventory=Мої пакети для Ринку # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=У нас виникла проблема з пі store.loading.error.issues=Із Ринком виникли деякі проблеми. Спробуйте підключитися пізніше. # store.loading.error.internetDown=Ми не можемо виявити підключення до Інтернету. # store.loading.error.account=Виникла проблема з вашим обліковим записом. Повторіть спробу трохи згодом і зверніться до служби підтримки, якщо проблема не зникне. # +store.loading.error.account.banned=Ви не можете використовувати ринок, доки не закінчиться термін дії призупинення. # store.giftPromo.day=День %s ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=Запитано # @@ -8405,10 +8540,17 @@ store.mashup.count.skin=1 скін # store.mashup.count.skins=%s скінів # store.mashup.count.texturePack=1 пакет текстур # store.mashup.count.texturePacks=Пакети текстур: %s #number of texture packs # -store.mashup.count.world=1 світ # +store.mashup.count.world=1 світ # store.mashup.count.worlds=Світи: %s #number of worlds # store.mashup.count.addonPack=1 доповнення # store.mashup.count.addonPacks=Доповнень: %s #number of addons # +store.mashup.count.mashup=Збірний пакет # +store.mashup.hover.label.addonPack=Доповнення можна застосувати до будь-якого світу. # +store.mashup.hover.label.world=Карта Minecraft ручної роботи. # +store.mashup.hover.label.skin=Надайте своєму персонажу нового вигляду. # +store.mashup.hover.label.texturePack=Додайте новий візуальний ефект до свого світу або ігрового інтерфейсу. # +store.mashup.hover.label.mashup.lineOne=Поєднання різних типів контенту. # +store.mashup.hover.label.mashup.lineTwo=Цей збірний пакет містить: # store.addon.activateAddonPack=Активуйте доповнення! # store.addon.newOrExistingTitle=Куди додати? # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=Дошка # tile.chest.name=Скриня # tile.ender_chest.name=Скриня Ендеру # tile.jigsaw.name=Блок-пазл # +tile.heavy_core.name=Важка серцевина # tile.honey_block.name=Блок меду # tile.honeycomb_block.name=Блок сот # tile.lodestone.name=Магнетит # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=Плита з полірованого чор tile.polished_blackstone_pressure_plate.name=Притискна пластина з полірованого чорнокаменю # tile.polished_blackstone_button.name=Кнопка з полірованого чорнокаменю # tile.polished_blackstone_wall.name=Стіна з полірованого чорнокаменю # +tile.polished_tuff.name=Полірований туф # +tile.polished_tuff_slab.name=Полірована туфова плита # +tile.polished_tuff_stairs.name=Поліровані сходи з туфу # +tile.polished_tuff_wall.name=Полірована туфова стіна # tile.soul_campfire.name=Багаття душ # tile.chiseled_nether_bricks.name=Висічена незерська цегла # tile.cracked_nether_bricks.name=Потріскана незерська цегла # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=Жовта кераміка # tile.structure_block.name=Структурний блок # structure_block.waterlog_block=Затоплені блоки # tile.structure_void.name=Структурна пустота # +tile.trial_spawner.name=Випробувальний генератор # +tile.vault.name=Сховище # tile.wool.black.name=Чорна вовна # tile.wool.blue.name=Синя вовна # tile.wool.brown.name=Коричнева вовна # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=Папороть # tile.tallgrass.grass.name=Трава # tile.tallgrass.name=Трава # tile.tallgrass.shrub.name=Кущ # +tile.tuff_brick_slab.name=Плита з туфової цегли # +tile.tuff_brick_stairs.name=Сходи з туфової цегли # +tile.tuff_brick_wall.name=Стіна з туфової цегли # +tile.tuff_bricks.name=Туфова цегла # +tile.tuff_slab.name=Туфова плита # +tile.tuff_stairs.name=Туфові сходи # +tile.tuff_wall.name=Туфова стіна # tile.seagrass.seagrass.name=Морська трава # tile.sea_pickle.name=Морський огірок # tile.turtle_egg.name=Яйце морської черепахи # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=Червоний килим # tile.carpet.silver.name=Світло-сірий килим # tile.carpet.white.name=Білий килим # tile.carpet.yellow.name=Жовтий килим # +tile.crafter.name=Крафтер # tile.crafting_table.name=Верстак # tile.glazedTerracotta.white.name=Біла глазурована кераміка # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=Плита з вощеної різьблено tile.waxed_exposed_cut_copper_slab.name=Плита з вощеної різьбленої трохи окисленої міді # tile.waxed_weathered_cut_copper_slab.name=Плита з вощеної різьбленої напівокисленої міді # tile.waxed_oxidized_cut_copper_slab.name=Плита з вощеної різьбленої окисненої міді # + +tile.chiseled_copper.name=Точена мідь # +tile.exposed_chiseled_copper.name=Відкрита точена мідь # +tile.oxidized_chiseled_copper.name=Окислена точена мідь # +tile.waxed_chiseled_copper.name=Вощена точена мідь # +tile.waxed_exposed_chiseled_copper.name=Вощена відкрита точена мідь # +tile.waxed_oxidized_chiseled_copper.name=Вощена окиснена точена мідь # +tile.waxed_weathered_chiseled_copper.name=Вощена вивітрена точена мідь # +tile.weathered_chiseled_copper.name=Вивітрена точена мідь # + +tile.copper_bulb.name=Мідна лампочка # +tile.exposed_copper_bulb.name=Відкрита мідна колба # +tile.oxidized_copper_bulb.name=Окислена мідна колба # +tile.waxed_copper_bulb.name=Вощена мідна колба # +tile.waxed_exposed_copper_bulb.name=Вощена відкрита мідна колба # +tile.waxed_oxidized_copper_bulb.name=Вощена окиснена мідна колба # +tile.waxed_weathered_copper_bulb.name=Вощена вивітрена мідна колба # +tile.weathered_copper_bulb.name=Вивітрена мідна колба # + +tile.copper_door.name=Мідні двері # +tile.exposed_copper_door.name=Відкриті мідні двері # +tile.oxidized_copper_door.name=Окислені мідні двері # +tile.waxed_copper_door.name=Вощені мідні двері # +tile.waxed_exposed_copper_door.name=Вощені відкриті мідні двері # +tile.waxed_oxidized_copper_door.name=Вощені окиснені мідні двері # +tile.waxed_weathered_copper_door.name=Вощені вивітрені мідні двері # +tile.weathered_copper_door.name=Обвітрені мідні двері # + +tile.copper_grate.name=Мідна решітка # +tile.exposed_copper_grate.name=Відкрита мідна решітка # +tile.oxidized_copper_grate.name=Окислена мідна решітка # +tile.waxed_copper_grate.name=Вощена мідна решітка # +tile.waxed_exposed_copper_grate.name=Вощена відкрита мідна решітка # +tile.waxed_oxidized_copper_grate.name=Вощена окиснена мідна решітка # +tile.waxed_weathered_copper_grate.name=Вощена вивітрена мідна решітка # +tile.weathered_copper_grate.name=Вивітрена мідна решітка # + +tile.copper_trapdoor.name=Мідний люк # +tile.exposed_copper_trapdoor.name=Відкритий мідний люк # +tile.oxidized_copper_trapdoor.name=Люк з окисленої міді # +tile.waxed_copper_trapdoor.name=Люк з вощеної міді # +tile.waxed_exposed_copper_trapdoor.name=Вощений відкритий мідний люк # +tile.waxed_oxidized_copper_trapdoor.name=Люк з вощеної окисненої міді # +tile.waxed_weathered_copper_trapdoor.name=Люк з вощеної вивітреної міді # +tile.weathered_copper_trapdoor.name=Вивітрений мідний люк # + tile.raw_copper_block.name=Блок необробленої міді # tile.raw_iron_block.name=Блок необробленого заліза # tile.raw_gold_block.name=Блок необробленого золота # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=Стріла везіння # tipped_arrow.effect.wither=Стріла розпаду # tipped_arrow.effect.turtleMaster=Стріла володаря черепах # tipped_arrow.effect.slowFalling=Стріла повільного падіння # +tipped_arrow.effect.infested=Стріла зараження # +tipped_arrow.effect.oozing=Стріла заслизлення # +tipped_arrow.effect.weaving=Стріла павутини # +tipped_arrow.effect.windCharged=Стріла вихрової кулі # structure_block.title=Структурний блок # structure_block.structure_name=Назва структури # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=Під час відновлення worldError.worldFailedRecovery=Помилка відновлення # worldError.worldFailedRecoveryText=Ми виявили пошкоджений світ, але не змогли його відновити. # +writeThrottling.osDialog.body=Очікується, що запитувана операція займе %d хв. Не вимикайте пристрій протягом цього часу. # +writeThrottling.osDialog.cancel=Скасувати операцію # +writeThrottling.osDialog.confirm=Продовжити # +writeThrottling.progressBar.title=Підготовка даних # +writeThrottling.progressBar.body=Підготовка файлів... # + userData.recovered.title=Дані збереження відновлено # userData.recovered.text=Ваші пошкоджені параметри користувача успішно відновлено. # userData.recovered.warning=Під час відновлення могли бути втрачені останні зміни. # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=Повідомлення в чаті # xbox.report.area.skin=Скін гравця # xbox.report.area.gameplay=Геймплей # xbox.report.area.ingame=Ігрові творіння # -xbox.report.area.other=Інше # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=Кібербулінг # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=На жаль, не вдалося під gathering.connect.title=Підключення... # gathering.info.qr.title.onlineService=Докладніше # gathering.info.qr.body.onlineService.nso=Щоб приєднатися до події в Minecraft, потрібно оформити членство в Nintendo Switch Online. # -gathering.info.qr.body.onlineService.psn=Щоб приєднатися до заходу в Minecraft, потрібно увійти до PlayStation Plus. # +gathering.info.qr.body.onlineService.psn=Щоб приєднатися до заходу в Minecraft, потрібно увійти в PlayStation®Plus. #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=Щоб приєднатися до події в Minecraft, потрібно увійти в систему. # gathering.info.qr.title.childAccount=Гра онлайн заборонена # gathering.info.qr.body.childAccount=Через поточні обмеження батьківського контролю ви не можете грати в мережі. # diff --git a/resource_pack/texts/zh_CN.lang b/resource_pack/texts/zh_CN.lang index 8829c8355..2ed95b17b 100644 --- a/resource_pack/texts/zh_CN.lang +++ b/resource_pack/texts/zh_CN.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=选择种子 # accessibility.start.feedback=提交反馈链接到网站 # accessibility.start.new=新 # -accessibility.start.profile=选择个人资料 # accessibility.start.skinPicker=选择皮肤 # accessibility.store.tag=标签 # @@ -1094,10 +1093,6 @@ commands.me.description=显示一条关于您自己的消息。 # commands.message.display.incoming=%1$s 悄悄地对你说:%2$s # commands.message.display.outgoing=你悄悄地对 %1$s 说:%2$s # commands.message.sameTarget=你不能向自己发出私人信息! # -commands.message.warn=§4您已收到警告。你的行为可能会被其他玩家认为是冒犯。请注意与您一起游戏的其他玩家。 # -commands.message.toastWarn=《我的世界》适合所有人!请务必按照我们的社区标准行事。 # -commands.warn.invalidWarningLevel=警告级别无效。 # -commands.warn.playerDoesNotExist=无法找到玩家。请选择一名有效的玩家。 # commands.mobevent.description=会控制允许哪些生物事件运行。 # commands.mobevent.eventsEnabledSetToTrue=生物事件已启用。设置为 "false" 的单独事件将不会运行。 # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=- %s: %s 从 %d %d %d 到 %d %d %d # commands.volumearea.entry.withoutIdentifier=- %s:从 %d %d %d 到 %d %d %d # commands.volumearea.noneExist.currentDimension=当前维度中不存在卷。 # commands.volumearea.inUse=%1$d/%2$d 个卷在使用中。 # -commands.warn.description=向玩家发送警告消息。 # commands.weather.clear=更换到晴朗天气 # commands.weather.description=设置天气。 # commands.weather.disabled=此世界未启用天气更替模式。 # @@ -1572,6 +1566,7 @@ container.beacon=信标 # container.brewing=酿造台 # container.chest=箱子 # container.chestDouble=大箱子 # +container.crafter=合成器 # container.crafting=合成 # container.creative=物品选栏 # container.dispenser=发射器 # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=洞穴及悬崖 # createWorldScreen.cavesandcliffsDescription=探索新的多样化洞穴生成 # createWorldScreen.spectatorMode=旁观模式 # createWorldScreen.spectatorModeDescription=试用旁观模式早期版本 # -createWorldScreen.experimentalCameras=实验相机 # -createWorldScreen.experimentalCamerasDescription=包含摄像机预设示例(摄像机命令不再是实验性功能) # createWorldScreen.recipeUnlocking=配方解锁 # createWorldScreen.recipeUnlockingDescription=启用配方解锁 # createWorldScreen.experimentalholiday=假日创造者功能 # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=创造一个新世界...... # createWorldScreen.progress.realms=正在重置 Realm…… # createWorldScreen.seed.desc=输入种子再次生成相同的地形。为随机世界留下空白。 # createWorldScreen.showCoordinates=显示坐标 # +createWorldScreen.showDaysPlayed=显示游玩的天数 # createWorldScreen.worldType=世界类型 # createWorldScreen.randomtickspeed=随机刻速度 # createWorldScreen.randomtickspeed.reset=重置随机刻速度 # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=删除项目 # createWorldScreen.editor.projectOptionsLabel=项目选项 # createWorldScreen.editor.delete.confirm=永久删除项目? # createWorldScreen.editor.deleteWarningFormat=是否确实要删除 "%s"?这个项目将永远失去! # +createWorldScreen.eduCloud.about.body=文件名:“%1$s”%2$s上次更新:%3$s%4$s要下载,请点击“确定”,然后下载。%5$s # +createWorldScreen.eduCloud.about.title=关于云世界文件 # createWorldScreen.eduCloud.delete.confirm=删除本地世界? # createWorldScreen.eduCloud.deleteWarningFormat=确定要删除此设备上的“%1$s”?%2$s云版本‘%3$s’将不会受到影响,且稍后可以重新同步。 # createWorldScreen.experimentalDeferredTechnicalPreview=为创建者提供的渲染龙功能 # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Windows 应用商店 # realmsSettingsScreen.xboxOneStoreDisplayName=Xbox 商店 # realmsSettingsScreen.amazonStoreDisplayName=Amazon Appstore # realmsSettingsScreen.oculusStoreDisplayName=Oculus Store # -realmsSettingsScreen.berwickStoreDisplayName="PlayStation Store" # -realmsSettingsScreen.SonyStoreDisplayName=“PlayStation Store” #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®Store #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=未知商店 # realmsSettingsScreen.extendingRealm=正在延长 Realm…… # realmsSettingsScreen.offerError.title=购买待处理 # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=对于《我的世界》市场 xbl.syncIAP.confirmSync.prompt.yes=是,同步我的购买 # xbl.marketplace.account.error.body.nobutton=您的帐户出现错误。 我们需要解决这个问题,然后您才能使用 Marketplace。 如果此问题连续多天都无法解决,请联系支持人员。 # -xbl.marketplace.account.banned.body.nobutton=暂停期结束之前,您将无法使用市场。 # playfab.account.banned.temporary=暂停 # playfab.account.banned.permanent=禁止 # @@ -2487,6 +2482,14 @@ date.daysAbbreviated1Char=%s天 ### It needs to be abbreviated with no more tha date.hoursAbbreviated1Char=%s 小时 ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%s 分 ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%s 秒 ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s 天 # +date.hoursPlural=%s 小时 # +date.minutesPlural=%s 分钟 # +date.secondsPlural=%s 秒 # +date.daySingular=%s 天 # +date.hourSingular=%s 小时 # +date.minuteSingular=%s 分钟 # +date.secondSingular=%s 秒 # date.timeLeft=剩余 %s # dayOneExperience.carousel.title=欢迎来到全新的《我的世界》! # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=主机 # edu.worlds_screen.settings=设置 # edu.worlds_screen.download=下载 ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=管理 # +edu.worlds_screen.about=关于 # edu.worlds_screen.back=返回 # edu.worlds_screen.copy=复制 # edu.worlds_screen.export=导出 # @@ -2791,7 +2795,13 @@ edu.templates.empty_banner=你可以从《我的世界:教育版》库、其 edu.pause.multiplayer.disabled=用户课程在该课程中不可用。 # effect.badOmen=凶兆 # +effect.infested=虫蚀 # +effect.oozing=渗浆 # +effect.raid_omen=劫掠之兆 # +effect.trial_omen=试炼之兆 # effect.villageHero=村庄英雄 # +effect.weaving=编织 # +effect.wind_charged=已蓄风 # enchantment.arrowDamage=力量 # enchantment.arrowFire=火矢 # @@ -2810,6 +2820,9 @@ enchantment.durability=耐久 # enchantment.fire=火焰附加 # enchantment.fishingSpeed=饵钓 # enchantment.frostwalker=冰霜行者 # +enchantment.heavy_weapon.breach=突袭 # +enchantment.heavy_weapon.density=密度 # +enchantment.heavy_weapon.windburst=风爆 # enchantment.knockback=击退 # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=蝙蝠 # entity.bee.name=蜜蜂 # entity.blaze.name=烈焰人 # entity.boat.name=船 # +entity.bogged.name=泥潭怪物 # +entity.breeze.name=微风 # +entity.breeze_wind_charge_projectile.name=风力充能 # entity.cat.name=猫 # entity.cave_spider.name=洞穴蜘蛛 # entity.chicken.name=鸡 # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=不熟练的村民 # entity.villager_v2.name=村民 # entity.vindicator.name=卫道士 # entity.wandering_trader.name=流浪商人 # +entity.wind_charge_projectile.name=风力充能 # entity.witch.name=女巫 # entity.wither.name=凋灵 # entity.wither_skeleton.name=凋灵骷髅 # @@ -3009,6 +3026,7 @@ feature.ruins=海洋废墟 # feature.pillager_outpost=掠夺者前哨 # feature.bastion_remnant=堡垒遗迹 # feature.ruined_portal=破坏的传送门 # +feature.trial_chambers=试炼室 # feed.like=赞 # feed.manage_feed=管理信息提要 # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=移动 :tip_left_stick: 可四处移动 # gameTip.flying.mouse=双击 :_input_key.jump: 以飞行 # gameTip.flying.touch=双击跳跃以飞行 # +gameTip.flyDown.mouse=按 :_input_key.sneak: 向下飞 # +gameTip.flyUp.mouse=按 :_input_key.jump: 向上飞 # + +gameTip.stopFlying.mouse=双击 :_input_key.jump: 停止飞行 # +gameTip.stopFlying.touch=双击“向下飞行”停止飞行 # + gameTip.jump.mouse=使用 :_input_key.jump: 跳跃 # +gameTip.swim.mouse=按住 :_input_key.jump: 向上游 # -gameTip.hotbar.mouse=滚动鼠标滚轮可在快捷栏中选择 # 并按住它 # -gameTip.hotbar.touch=在快捷栏中点击 # 可按住它 # -gameTip.hotbar.controller=在快捷栏中点击 # 可按住它 # +gameTip.hotbar.selection.mouse=滚动或按 %s 可按住物品 ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=在快捷栏中点击物品可按住它 # gameTip.breakBlock.mouse=按住左键可打破方块 # gameTip.breakBlock.touch=点击并按住可打破方块 # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=你正在潜行!现在不能从边缘掉下去 # gameTip.sneak.touch=你正在潜行,所以不能从边缘掉下去 # gameTip.sneak.controller=你正在潜行,所以不能从边缘掉下去 # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=放置你的工作台。按住工作台并点击进行放置 # gameTip.placeCraftingTable.touch=点击地面放置你的工作台 # gameTip.placeCraftingTable.controller=放置你的工作台,按住它然后点击地面 # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=感谢分享您的评论! # gui.submitFeedback.failure.status.unprocessableEntity=您尚未拥有这件您尝试提供反馈的物品。(错误代码:%d) # gui.submitFeedback.failure.status.tooManyRequests=哦,不!您发送了太多评论,请稍后再试。(错误代码:%d) # gui.submitFeedback.failure.status.other=目前无法提交您的评论,请稍后再试。(错误代码:%d) # +gui.togglable_slot=按下以禁用栏位 # gui.playOffline=离线游戏 # gui.signIn=登录 # gui.genericNetworkError=出错了。尝试检查您的互联网连接。 # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=使用 Minecraft 的游戏内货币 Minecoins,探 howtoplay.minecoins.text.2=兑换后,您的 Minecoins 将关联至自己的 Microsoft 账户,因此您也可以在其他支持的设备上访问游戏币并进行购买! # howtoplay.minecoins.button.text.1=获取硬币 # howtoplay.minecoins.header.1=免责声明 # -howtoplay.minecoins.text.3=*Minecoins 需要带 Minecraft 市场的《Minecraft:基岩版》版本。Minecoins 在 Sony PlayStation 上不兼容。有关兼容性信息,请参阅 minecraft.net/minecoins  # +howtoplay.minecoins.text.3=*Minecoins 需要带 Minecraft 市场的《Minecraft:基岩版》版本。Minecoins 在 Sony PlayStation® 上不兼容。有关兼容性信息,请参阅 minecraft.net/minecoins  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=采矿 # @@ -4145,7 +4170,7 @@ level.editor.export.failed=项目导出失败 # level.editor.import.failed=项目导入失败 # level.editor.import.failed.incompatibleEdition=项目导入失败:出现了不支持的文件格式 # -inbox.invite.title=Realms 邀请 # +inbox.invite.title=领域邀请 # invite.clear=清除选择 # invite.send=发送 %d 份邀请函 # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=红色右下三角 # item.banner.diagonal_up_right.silver=淡灰色右下三角 # item.banner.diagonal_up_right.white=白色右下三角 # item.banner.diagonal_up_right.yellow=黄色右下三角 # +item.banner.flow.black=黑色涡流 # +item.banner.flow.blue=蓝色涡流 # +item.banner.flow.brown=棕色涡流 # +item.banner.flow.cyan=青色涡流 # +item.banner.flow.gray=灰色涡流 # +item.banner.flow.green=绿色涡流 # +item.banner.flow.lightBlue=淡蓝色涡流 # +item.banner.flow.lime=黄绿色涡流 # +item.banner.flow.magenta=品红色涡流 # +item.banner.flow.orange=橙色涡流 # +item.banner.flow.pink=粉红色涡流 # +item.banner.flow.purple=紫色涡流 # +item.banner.flow.red=红色涡流 # +item.banner.flow.silver=淡灰色涡流 # +item.banner.flow.white=白色涡流 # +item.banner.flow.yellow=黄色涡流 # item.banner.flower.black=黑色花朵盾徽 # item.banner.flower.blue=蓝色花朵盾徽 # item.banner.flower.brown=棕色花朵盾徽 # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=白色自下渐淡 # item.banner.gradient_up.yellow=黄色自下渐淡 # item.banner.gray.name=灰色旗帜 # item.banner.green.name=绿色旗帜 # +item.banner.guster.black=黑色旋风 # +item.banner.guster.blue=蓝色旋风 # +item.banner.guster.brown=棕色旋风 # +item.banner.guster.cyan=青色旋风 # +item.banner.guster.gray=灰色旋风 # +item.banner.guster.green=绿色旋风 # +item.banner.guster.lightBlue=淡蓝色旋风 # +item.banner.guster.lime=黄绿色旋风 # +item.banner.guster.magenta=品红色旋风 # +item.banner.guster.orange=橙色旋风 # +item.banner.guster.pink=粉红色旋风 # +item.banner.guster.purple=紫色旋风 # +item.banner.guster.red=红色旋风 # +item.banner.guster.silver=淡灰色旋风 # +item.banner.guster.white=白色旋风 # +item.banner.guster.yellow=黄色旋风 # item.banner.half_horizontal.black=黑色上半方形 # item.banner.half_horizontal.blue=蓝色上半方形 # item.banner.half_horizontal.brown=棕色上半方形 # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=金合欢木船 # item.boat.big_oak.name=深色橡木船 # item.bone.name=骨头 # item.book.name=书 # +item.breeze_rod.name=旋风棒 # item.chainmail_boots.name=锁链靴子 # item.leather_boots.name=皮革靴子 # item.diamond_boots.name=钻石靴子 # @@ -4991,6 +5049,7 @@ item.comparator.name=红石比较器 # item.compass.name=指南针 # item.lodestonecompass.name=磁石指南针 # item.cookie.name=曲奇 # +item.copper_door.name=铜门 # item.crossbow.name=弩 # item.diamond.name=钻石 # item.repeater.name=红石中继器 # @@ -5038,6 +5097,7 @@ tile.end_rod.name=末地烛 # item.ender_eye.name=末影之眼 # item.ender_pearl.name=末影珍珠 # item.experience_bottle.name=附魔之瓶 # +item.exposed_copper_door.name=外露铜门 # item.feather.name=羽毛 # item.fermented_spider_eye.name=发酵蛛眼 # item.fireball.name=火焰弹 # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=金护腿 # item.iron_leggings.name=铁护腿 # item.nautilus_shell.name=鹦鹉螺壳 # item.heart_of_the_sea.name=海洋之心 # +item.mace.name=锤子 # item.magma_cream.name=岩浆膏 # item.map.name=地图 # item.map.exploration.mansion.name=森林探险者地图 # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=草原村庄地图 # item.map.exploration.village_desert.name=沙漠村庄地图 # item.map.exploration.jungle_temple.name=丛林探险者地图 # item.map.exploration.swamp_hut.name=沼泽探险者地图 # +item.map.exploration.trial_chambers.name=试用版探险者地图 # item.melon.name=西瓜片 # item.milk.name=奶桶 # item.minecart.name=矿车 # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=运输矿车 # item.command_block_minecart.name=命令方块矿车 # item.minecartFurnace.name=动力矿车 # item.hopper_minecart.name=漏斗矿车 # +item.ominous_bottle.name=不祥之瓶 # +item.ominous_trial_key.name=不祥试炼钥匙 # +item.oxidized_copper_door.name=氧化铜门 # item.tnt_minecart.name=TNT 矿车 # item.pitcher_pod.name=猪笼草荚果 # item.torchflower_seeds.name=火把花种子 # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=代理机器人生成蛋 # item.spawn_egg.entity.armadillo.name=犰狳生成蛋 # item.spawn_egg.entity.axolotl.name=美西螈生成蛋 # item.spawn_egg.entity.bee.name=蜜蜂生成蛋 # +item.spawn_egg.entity.bogged.name=泥潭怪物生成蛋 # +item.spawn_egg.entity.breeze.name=微风生成蛋 # item.spawn_egg.entity.hoglin.name=疣猪兽生成蛋 # item.spawn_egg.entity.cat.name=猫生成蛋 # item.spawn_egg.entity.chicken.name=鸡生成蛋 # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 - ward # item.record_pigstep.desc=莉娜·雷恩 - Pigstep # item.record_otherside.desc=莉娜·雷恩 - otherside # item.record_relic.desc=亚伦·切罗夫 - Relic # +item.record_creator.desc=莉娜·雷恩 - 创作者 # +item.record_creator_music_box.desc=莉娜·雷恩 - 创作者(音乐盒) # +item.record_precipice.desc=亚伦·切罗夫 - 峭壁 # item.redstone.name=红石粉 # item.reeds.name=甘蔗 # item.kelp.name=海带 # @@ -5324,6 +5394,12 @@ item.iron_sword.name=铁剑 # item.stone_sword.name=石剑 # item.wooden_sword.name=木剑 # item.unbreakable=无法破坏 # +item.waxed_copper_door.name=涂蜡铜门 # +item.waxed_exposed_copper_door.name=涂蜡外露铜门 # +item.waxed_oxidized_copper_door.name=涂蜡氧化铜门 # +item.waxed_weathered_copper_door.name=涂蜡风化铜门 # +item.weathered_copper_door.name=风化铜门 # +item.wind_charge.name=风力充能 # item.wheat.name=小麦 # item.wolf_armor.name=狼铠 # item.writable_book.name=书与笔 # @@ -5331,6 +5407,7 @@ item.written_book.name=成书 # item.glowstone_dust.name=荧石粉 # item.shulker_shell.name=潜影壳 # item.totem.name=不死图腾 # +item.trial_key.name=试用版密钥 # item.turtle_helmet.name=海龟壳 # item.turtle_shell_piece.name=海龟鳞甲 # item.phantom_membrane.name=幻翼膜 # @@ -5338,8 +5415,10 @@ item.sweet_berries.name=甜浆果 # item.suspicious_stew.name=迷之炖菜 # item.banner_pattern.bricks=砖纹 # item.banner_pattern.creeper=苦力怕盾徽 # +item.banner_pattern.flow=涡流 # item.banner_pattern.flower=花朵盾徽 # item.banner_pattern.globe=地球 # +item.banner_pattern.guster=旋风 # item.banner_pattern.name=旗帜图案 # item.banner_pattern.piglin=猪鼻 # item.banner_pattern.skull=头颅盾徽 # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=旗帜图案 # itemGroup.name.netherWartBlock=下界疣 # itemGroup.name.candles=蜡烛 # itemGroup.name.goatHorn=山羊角 # +itemGroup.name.compounds=化合物 # +itemGroup.name.products=产品 # jigsaw.title.target_pool=目标池: # jigsaw.title.name=名称: # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=教室设置 # menu.serverStore=%s 商店 # menu.serverGenericName=服务器 # menu.play=游戏 # +menu.profile=档案 # menu.playdemo=开始试玩世界 # menu.playOnRealms=在 Realm 上玩 # menu.quickplay=快速开始游戏 # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=选择你的初始角色 # menu.character_cast.preview_title=与演员见面! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Realms 服务器 ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=服务器 # merchant.deprecated=交易一些其他东西来解锁! # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=全键盘玩法 # options.fullKeyboardLayout=全键盘布局 # options.improvedInputResponsePlaceholder=改进的输入响应 # options.improvedInputResponsePlaceholder.tooltip=缩短输入和屏幕显示内容之间的延迟。该设置可能会耗费较多的电池电量。 # +options.dynamicTexturesToggle=移除材质限制 # +options.dynamicTexturesToggle.tooltip=若将此项从打开切换到关闭,则需要重新启动游戏。当使用具有许多材质的多个插件或资源包时,可能会导致不稳定。 # +options.dynamicTextures.popUp=如果打开“移除材质限制”,则需要重新启动游戏,才能将其关闭。 # +options.dynamicTextures.popUp.title=你确定吗? # options.fullscreen=全屏 # options.gamepadcursorsensitivity=控制器光标灵敏度 # options.gamertag=游戏标签: # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=连接 # options.creator.debuggerListen=听听看 # options.creator.debuggerHost=主机 # options.creator.debuggerPort=端口 # +options.creator.watchdogHeading=脚本监视器设置 # +options.creator.watchdogSlowWarning=慢速脚本警告 # +options.creator.watchdogSlowThreshold=平均超过 # +options.creator.watchdogSlowFormat=%s 毫秒 # +options.creator.watchdogSlowFormatDefault=%s 毫秒(默认) # +options.creator.watchdogSpikeWarning=脚本尖峰警告 # +options.creator.watchdogSpikeThreshold=尖峰超过 # +options.creator.watchdogSpikeFormat=%s 毫秒 # +options.creator.watchdogSpikeFormatDefault=%s 毫秒(默认) # +options.creator.watchdogHangThreshold=以下时间过后中断: # +options.creator.watchdogHangFormat=%s 秒 # +options.creator.watchdogHangFormatDefault=%s 秒(默认) # options.vr_classic_box_selection=轮廓选择 # options.hidegamepadcursor=隐藏控制器光标 # options.hidegui=隐藏GUI # @@ -6662,7 +6761,7 @@ options.makeBackup=制作我的世界的备份副本 # options.managePrivacy=若要管理隐私设置,请在任意网络浏览器中访问 https://account.xbox.com/Settings。 ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=取消链接 Microsoft 账户 # options.unlink_msa.confirm.title=取消链接 Microsoft 账户? # -options.unlink_msa.confirm.warning=警告:取消链接后,您将无法在您的账户 %s 上存储您在 "PlayStation 4" 系统上完成的进度或进行的购买。 # +options.unlink_msa.confirm.warning=警告:取消关联后,您将无法在您的账号 %s 上存储您在 PlayStation®4 主机上完成的进度或进行的购买。 #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=从此游戏内解除关联您的 Microsoft 账户将影响您在此平台所有使用此 Microsoft 账户的《我的世界》游戏。 # options.unlink_msa.confirm.checkbox1=当我在其他平台上玩游戏时,我将不再能够访问任何游戏内商店内容。 # options.unlink_msa.confirm.checkbox2=我将不再能够与我的好友在其他平台上玩跨平台游戏。 # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=加载一个世界以自定义控件 # hudScreen.controlCustomization.tooltip.notouch=使用触摸设备来自定义控件 # hudScreen.controlCustomization.tooltip.alreadycustomizing=已打开触摸控制自定义屏幕 # hudScreen.controlCustomization.tooltip.alive=玩家需要处于活动状态才能自定义控件。 # +hudScreen.daysPlayed=游玩的天数:%s # +hudScreen.daysPlayed.overflow=数不胜数! # playscreen.fileSize.MB=MB # playscreen.fileSize.GB=GB # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=喷溅型治疗药水 # potion.heal.linger.name=滞留型治疗药水 # potion.healthBoost=生命提升 # potion.hunger=饥饿 # +potion.infested.linger.name=滞留型虫蚀药水 # +potion.infested.name=虫蚀药水 # +potion.infested.splash.name=喷溅型虫蚀药水 # +potion.infested=虫蚀 # potion.invisibility=隐身 # potion.invisibility.name=隐身药水 # potion.invisibility.splash.name=喷溅型隐身药水 # @@ -7067,6 +7172,10 @@ potion.nightVision=夜视 # potion.nightVision.name=夜视药水 # potion.nightVision.splash.name=喷溅型夜视药水 # potion.nightVision.linger.name=滞留型夜视药水 # +potion.oozing.linger.name=滞留型渗浆药水 # +potion.oozing.name=渗浆药水 # +potion.oozing.splash.name=喷溅型渗浆药水 # +potion.oozing=渗浆 # potion.poison=中毒 # potion.poison.name=剧毒药水 # potion.poison.splash.name=喷溅型剧毒药水 # @@ -7108,6 +7217,14 @@ potion.weakness=虚弱 # potion.weakness.name=虚弱药水 # potion.weakness.splash.name=喷溅型虚弱药水 # potion.weakness.linger.name=滞留型虚弱药水 # +potion.weaving.linger.name=滞留型盘丝药水 # +potion.weaving.name=盘丝药水 # +potion.weaving.splash.name=喷溅型盘丝药水 # +potion.weaving=编织 # +potion.windCharged.linger.name=滞留型蓄风药水 # +potion.windCharged.name=蓄风药水 # +potion.windCharged.splash.name=喷溅型蓄风药水 # +potion.windCharged=已蓄风 # potion.wither=凋零 # potion.wither.name=衰变药水 # potion.wither.splash.name=喷溅型衰变药水 # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=由于包中的目录问题,无法 progressScreen.message.forbiddenContent=您未拥有一个或多个所应用的包 # progressScreen.message.loadingSplitScreenAppearances=正在加载分屏外观... # progressScreen.message.finishedLoadingSplitScreenAppearances=已完成分屏外观的加载。 # -progressScreen.message.modifiedWorldWarning=这个世界的景象和行为方式可能与未修改的世界有所不同,您无法获得成就。 # +progressScreen.message.modifiedWorldWarning.1=你正在一个带有追加内容的世界中游玩!这会为你的 Minecraft 世界带来全新的功能和体验。 # +progressScreen.message.modifiedWorldWarning.2=不要只使用一个追加内容!你可以同时加载多个追加内容。 # +progressScreen.message.modifiedWorldWarning.3=高级提示:资源包可以更改不同方块和实体的材质。 # +progressScreen.message.modifiedWorldWarning.4=高级提示:行为包可以更改不同物品、实体或方块的作用。 # +progressScreen.message.modifiedWorldWarning.5=高级提示:追加内容包括行为包和资源包。确保两个包都已激活,以保证追加内容正常工作! # +progressScreen.message.modifiedWorldWarning.6=追加内容增加了新的方块、物品或生物到你的世界中。 # +progressScreen.message.modifiedWorldWarning.7=世界和追加内容都很复杂!虽然有些搭配效果很好,但有些搭配可能会产生奇怪的效果。 # +progressScreen.message.modifiedWorldWarning.8=更多追加内容意味着更多乐趣,但游戏加载时间可能会更长。 # progressScreen.dialog.title.resourcePack=下载资源包? # progressScreen.dialog.title.behaviorAndResourcePack=下载世界行为和资源包? # progressScreen.dialog.title.onlyBehavior=下载世界行为包? # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=更新世界? # resourcePack.warning.add.body=这个世界的景象和行为方式可能与未修改的世界有所不同。在继续之前,你可能需要保存你的世界的副本。 # resourcePack.warning.add.button.cancel=不添加包 # resourcePack.warning.add.button.ok=仍要添加包 # +resourcePack.warnings.contentKeyErrorBody=加载包 %s 时出现问题。 # +resourcePack.warnings.contentKeyErrorBodyMultiple=加载包 %s 时出现问题。 # +resourcePack.warnings.contentKeyErrorTitle=错误! # resourcePack.warning.remove.title=这很危险! # resourcePack.warning.remove.body=在游玩一个世界后再添加或删除包,可能破坏这个世界并导致你丢失所创建的内容。 # resourcePack.warning.remove.button.cancel=保留该包 # @@ -7438,7 +7565,7 @@ storageManager.sync_legacy_worlds.conversion_explanation.cancel_button=取消 # storageManager.baseWorld=基础世界 # -tile.sculk_sensor.name=幽匿感测体 # +tile.sculk_sensor.name=潜声感测器 # tile.sculk.name=潜声 # tile.sculk_vein.name=幽匿脉络 # tile.sculk_catalyst.name=幽匿催发体 # @@ -7557,7 +7684,9 @@ item.crimson_hanging_sign.name=绯红木悬挂告示牌 # item.danger_pottery_sherd.name=危机纹样陶片 # item.dark_oak_hanging_sign.name=深色橡木悬挂告示牌 # item.explorer_pottery_sherd.name=探险纹样陶片 # +item.flow_pottery_sherd.name=涡流纹样陶片 # item.friend_pottery_sherd.name=挚友纹样陶片 # +item.guster_pottery_sherd.name=旋风纹样陶片 # item.heart_pottery_sherd.name=爱心纹样陶片 # item.heartbreak_pottery_sherd.name=心碎纹样陶片 # item.howl_pottery_sherd.name=狼嚎纹样陶片 # @@ -7568,6 +7697,7 @@ item.mourner_pottery_sherd.name=哀悼纹样陶片 # item.oak_hanging_sign.name=橡木悬挂告示牌 # item.plenty_pottery_sherd.name=富饶纹样陶片 # item.prize_pottery_sherd.name=珍宝纹样陶片 # +item.scrape_pottery_sherd.name=刮擦纹样陶片 # item.sheaf_pottery_sherd.name=麦捆纹样陶片 # item.shelter_pottery_sherd.name=树荫纹样陶片 # item.skull_pottery_sherd.name=头颅纹样陶片 # @@ -7613,6 +7743,8 @@ tile.cherry_stairs.name=樱花木楼梯 # tile.cherry_trapdoor.name=樱花木活板门 # tile.cherry_wood.name=樱花木 # tile.chiseled_bookshelf.name=錾制书架 # +tile.chiseled_tuff.name=錾制凝灰岩 # +tile.chiseled_tuff_bricks.name=錾制凝灰岩砖 # tile.decorated_pot.name=装饰罐 # tile.pink_petals.name=粉红色花瓣 # tile.stripped_bamboo_block.name=去皮竹块 # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=恼鬼纹饰盔甲 # trim_pattern.ward.name=监守纹饰盔甲 # trim_pattern.wayfinder.name=寻路盔甲纹饰 # trim_pattern.wild.name=荒野纹饰盔甲 # +trim_pattern.bolt.name=镶铆盔甲纹饰 # +trim_pattern.flow.name=涡流盔甲纹饰 # upgrade.netherite_upgrade.name=下界合金升级 # storageManager.mainSizeLabel=%s - 1 项目 # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=是否删除世界模板? # selectTemplate.delete=删除 # selectTemplate.myTemplates=我的世界模板 # selectTemplate.realmsPlus=精选 Realms Plus 模板 # -selectTemplate.marketplacePass=精选 Marketplace Pass 模板 #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=精选 Marketplace Pass 内容 #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=导入的模板 # selectTemplate.download=下载 # selectTemplate.noTemplates=这台设备上没有任何世界模板。 # -selectTemplate.suggestedContent.title=特色市场模板 # +selectTemplate.suggestedContent.title=精选市场内容 # selectTemplate.suggestedContent.button=查看更多模板 # selectTemplate.createdBy=创建者:%s # selectTemplate.inventory=我的市场包 # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=我们遇到了连接问题。请返回并重试 store.loading.error.issues=嗯,市场出现了一些问题。请稍后尝试连接。 # store.loading.error.internetDown=我们无法检测到互联网连接。 # store.loading.error.account=您的帐户出现了问题。请稍后重试,如果此问题仍然存在,请联系支持人员。 # +store.loading.error.account.banned=暂停期结束之前,您将无法使用市场。 # store.giftPromo.day=第 %s 天 ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=已领取 # @@ -8123,7 +8258,7 @@ store.realmsPlus.faq.question2=什么是私人服务器? # store.realmsPlus.faq.answer2=私人服务器允许您创建一个共享的世界,这个世界将永远保持在线,可从包含《我的世界》市场的任何设备进行访问。您邀请至您的 Realm 的玩家可以随时在这个世界中游玩。 # store.realmsPlus.faq.question3=我的好友是不是需要购买 Realms Plus 才能在我的 Realm 上玩? # store.realmsPlus.faq.answer3=您的好友无需购买 Realms Plus 订阅即可使用您的 Realm。您可以邀请任何好友(在对方已允许多人使用的情况下)免费加入您的 Realm。 # -store.realmsPlus.faq.question4=那些设备支持《我的世界》Realms Plus? # +store.realmsPlus.faq.question4=哪些设备支持《我的世界》Realms Plus? # store.realmsPlus.faq.answer4=Realms Plus 目前适用于任何可安装《我的世界》基岩版的平台。如果您已登录 Microsoft 帐户,则可以在任何这些设备上玩 Realms 并使用 Realms Plus 中的任何内容。 ###disable_3rd_party_console_resource_pack_check store.realmsPlus.faq.question5=Realms Plus 订阅的费用是多少? # store.realmsPlus.faq.answer5=一个可容纳 10 名玩家的服务器,且可获取 150+ 市场包,仅需 %s 每月。 # @@ -8139,7 +8274,7 @@ store.realmsPlus.faq.answer9=如果您的订阅结束,您和您的好友将不 store.realmsPlus.faq.question10=我需要 Realms Plus 和 Marketplace Pass 吗? # store.realmsPlus.faq.answer10=不。Marketplace Pass 是一个可供您使用的超过 150+ 个包的目录。Realms Plus 是一个包含 Marketplace Pass 且可供 10 名玩家游玩的 Realm。我们建议您订阅适合自己的服务。 # store.realmsPlus.faq.question11=什么是 Realms 故事? # -store.realmsPlus.faq.answer11=Realms 故事是 Realm 的社交中心。利用发布到故事源功能,便可让其他人知道你在做什么,并分享你的冒险和创作。利用所有成员名单方便了解每一位成员。查看其他成员的游玩时间,了解他们的创作和计划,这样下一次就可以加入他们。 # +store.realmsPlus.faq.answer11=Realms 故事是 Realm 的社交中心。利用发布到故事动态功能,便可让其他人知道你在做什么,并分享你的冒险和创作。利用所有成员名单方便了解每一位成员。查看其他成员的游玩时间,了解他们的创作和计划,这样下一次就可以加入他们。 # store.realmsPlus.content.marketplacePass=Realms Plus 包含 Marketplace Pass! # store.realmsPlus.content.skinDescription=用皮肤改变您的外观! # @@ -8409,6 +8544,13 @@ store.mashup.count.world=1 个世界 # store.mashup.count.worlds=%s 个世界 #number of worlds # store.mashup.count.addonPack=1 个附加件 # store.mashup.count.addonPacks=%s 个附加件 #number of addons # +store.mashup.count.mashup=混搭包 # +store.mashup.hover.label.addonPack=追加内容可以应用于任何世界。 # +store.mashup.hover.label.world=一张手工绘制的 Minecraft 地图。 # +store.mashup.hover.label.skin=为角色换上新外观。 # +store.mashup.hover.label.texturePack=为世界或游戏界面添加新的视觉效果。 # +store.mashup.hover.label.mashup.lineOne=不同类型内容的组合。 # +store.mashup.hover.label.mashup.lineTwo=此混搭包内含: # store.addon.activateAddonPack=激活附加件! # store.addon.newOrExistingTitle=在哪里添加? # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=黑板 # tile.chest.name=箱子 # tile.ender_chest.name=末影箱 # tile.jigsaw.name=拼图方块 # +tile.heavy_core.name=沉重核心 # tile.honey_block.name=蜂蜜方块 # tile.honeycomb_block.name=蜜脾块 # tile.lodestone.name=磁石 # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=磨制黑石台阶 # tile.polished_blackstone_pressure_plate.name=磨制黑石压力板 # tile.polished_blackstone_button.name=磨制黑石按钮 # tile.polished_blackstone_wall.name=磨制黑石墙 # +tile.polished_tuff.name=磨制凝灰岩 # +tile.polished_tuff_slab.name=磨制凝灰岩台阶 # +tile.polished_tuff_stairs.name=磨制凝灰岩阶梯 # +tile.polished_tuff_wall.name=磨制凝灰岩墙 # tile.soul_campfire.name=灵魂营火 # tile.chiseled_nether_bricks.name=錾制下界砖 # tile.cracked_nether_bricks.name=裂纹下界砖 # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=黄色陶瓦 # tile.structure_block.name=结构方块 # structure_block.waterlog_block=水涝方块 # tile.structure_void.name=结构空位 # +tile.trial_spawner.name=试炼生成器 # +tile.vault.name=解锁密室 # tile.wool.black.name=黑色羊毛 # tile.wool.blue.name=蓝色羊毛 # tile.wool.brown.name=棕色羊毛 # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=蕨 # tile.tallgrass.grass.name=草 # tile.tallgrass.name=草 # tile.tallgrass.shrub.name=灌木 # +tile.tuff_brick_slab.name=凝灰岩砖台阶 # +tile.tuff_brick_stairs.name=凝灰岩砖阶梯 # +tile.tuff_brick_wall.name=凝灰岩砖墙 # +tile.tuff_bricks.name=凝灰岩砖 # +tile.tuff_slab.name=凝灰岩台阶 # +tile.tuff_stairs.name=凝灰岩阶梯 # +tile.tuff_wall.name=凝灰岩墙 # tile.seagrass.seagrass.name=海草 # tile.sea_pickle.name=海泡菜 # tile.turtle_egg.name=海龟蛋 # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=红色地毯 # tile.carpet.silver.name=淡灰色地毯 # tile.carpet.white.name=白色地毯 # tile.carpet.yellow.name=黄色地毯 # +tile.crafter.name=合成器 # tile.crafting_table.name=工作台 # tile.glazedTerracotta.white.name=白色带釉陶瓦 # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=涂蜡切制铜块台阶 # tile.waxed_exposed_cut_copper_slab.name=斑驳的涂蜡切制铜块台阶 # tile.waxed_weathered_cut_copper_slab.name=锈蚀的涂蜡切制铜块台阶 # tile.waxed_oxidized_cut_copper_slab.name=氧化的涂蜡切制铜块台阶 # + +tile.chiseled_copper.name=錾制铜 # +tile.exposed_chiseled_copper.name=外露錾制铜块 # +tile.oxidized_chiseled_copper.name=氧化錾制铜 # +tile.waxed_chiseled_copper.name=涂蜡錾制铜 # +tile.waxed_exposed_chiseled_copper.name=涂蜡外露錾制铜 # +tile.waxed_oxidized_chiseled_copper.name=涂蜡氧化錾制铜 # +tile.waxed_weathered_chiseled_copper.name=涂蜡风化錾制铜 # +tile.weathered_chiseled_copper.name=风化錾制铜 # + +tile.copper_bulb.name=铜灯泡 # +tile.exposed_copper_bulb.name=外露铜灯泡 # +tile.oxidized_copper_bulb.name=氧化铜灯泡 # +tile.waxed_copper_bulb.name=涂蜡铜灯泡 # +tile.waxed_exposed_copper_bulb.name=涂蜡外露铜灯泡 # +tile.waxed_oxidized_copper_bulb.name=氧化的涂蜡铜灯泡 # +tile.waxed_weathered_copper_bulb.name=涂蜡风化铜灯泡 # +tile.weathered_copper_bulb.name=风化铜灯泡 # + +tile.copper_door.name=铜门 # +tile.exposed_copper_door.name=外露铜门 # +tile.oxidized_copper_door.name=氧化铜门 # +tile.waxed_copper_door.name=涂蜡铜门 # +tile.waxed_exposed_copper_door.name=涂蜡外露铜门 # +tile.waxed_oxidized_copper_door.name=涂蜡氧化铜门 # +tile.waxed_weathered_copper_door.name=涂蜡风化铜门 # +tile.weathered_copper_door.name=风化铜门 # + +tile.copper_grate.name=铜格栅 # +tile.exposed_copper_grate.name=外露铜格栅 # +tile.oxidized_copper_grate.name=氧化铜格栅 # +tile.waxed_copper_grate.name=涂蜡铜格栅 # +tile.waxed_exposed_copper_grate.name=涂蜡外露铜格栅 # +tile.waxed_oxidized_copper_grate.name=涂蜡氧化铜格栅 # +tile.waxed_weathered_copper_grate.name=涂蜡风化铜格栅 # +tile.weathered_copper_grate.name=风化铜格栅 # + +tile.copper_trapdoor.name=铜活板门 # +tile.exposed_copper_trapdoor.name=外露铜活板门 # +tile.oxidized_copper_trapdoor.name=氧化铜活板门 # +tile.waxed_copper_trapdoor.name=涂蜡铜活板门 # +tile.waxed_exposed_copper_trapdoor.name=外露的涂蜡铜活板门 # +tile.waxed_oxidized_copper_trapdoor.name=涂蜡氧化铜活板门 # +tile.waxed_weathered_copper_trapdoor.name=涂蜡风化铜活板门 # +tile.weathered_copper_trapdoor.name=风化铜活板门 # + tile.raw_copper_block.name=粗铜块 # tile.raw_iron_block.name=粗铁块 # tile.raw_gold_block.name=粗金块 # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=幸运箭 # tipped_arrow.effect.wither=衰变之箭 # tipped_arrow.effect.turtleMaster=神龟之箭 # tipped_arrow.effect.slowFalling=缓降之箭 # +tipped_arrow.effect.infested=虫蚀之箭 # +tipped_arrow.effect.oozing=渗浆之箭 # +tipped_arrow.effect.weaving=盘丝之箭 # +tipped_arrow.effect.windCharged=蓄风之箭 # structure_block.title=结构方块 # structure_block.structure_name=建筑名称 # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=您最近的一些更改可能已在 worldError.worldFailedRecovery=恢复失败 # worldError.worldFailedRecoveryText=我们检测到了一个损坏的世界,但未能恢复它。 # +writeThrottling.osDialog.body=完成请求的操作估计需要 %d 分钟。在此期间请勿关闭设备。 # +writeThrottling.osDialog.cancel=取消操作 # +writeThrottling.osDialog.confirm=继续 # +writeThrottling.progressBar.title=正在准备数据 # +writeThrottling.progressBar.body=正在准备你的文件… # + userData.recovered.title=已恢复存档数据 # userData.recovered.text=已成功恢复损坏的用户设置。 # userData.recovered.warning=您最近的一些更改可能已在恢复过程中丢失。 # @@ -10029,7 +10242,6 @@ xbox.report.area.chat=聊天消息 # xbox.report.area.skin=玩家皮肤 # xbox.report.area.gameplay=游戏 # xbox.report.area.ingame=游戏内创作 # -xbox.report.area.other=其他 # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=网络霸凌 # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=很不幸,我们无法连接。请稍后 gathering.connect.title=正在查找服务器... # gathering.info.qr.title.onlineService=了解更多 # gathering.info.qr.body.onlineService.nso=需要 Nintendo Switch Online 会员资格才能参加《我的世界》的活动。 # -gathering.info.qr.body.onlineService.psn=需要登录 \"PlayStation Plus\" 才能参加《我的世界》的活动。 # +gathering.info.qr.body.onlineService.psn=需要登录 PlayStation®Plus 才能参加 Minecraft 的活动。 #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=需要登录才能参加《我的世界》的活动。 # gathering.info.qr.title.childAccount=不允许在线播放 # gathering.info.qr.body.childAccount=当前你的父母监控制限制你在线玩游戏。 # diff --git a/resource_pack/texts/zh_TW.lang b/resource_pack/texts/zh_TW.lang index b725b7e81..06b84feae 100644 --- a/resource_pack/texts/zh_TW.lang +++ b/resource_pack/texts/zh_TW.lang @@ -148,7 +148,6 @@ accessibility.settings.chooseSeed=選擇種子 # accessibility.start.feedback=提交「意見反饋連結」到「網站」 # accessibility.start.new=新 # -accessibility.start.profile=選擇個人檔案 # accessibility.start.skinPicker=選擇外觀 # accessibility.store.tag=標籤 # @@ -282,7 +281,7 @@ achievement.buildPickaxe.desc=使用木材及木棍製作出十字鎬 # achievement.buildSword=殺戮時間! # achievement.buildSword.desc=使用木材和木棍做出一把劍 # achievement.buildWorkBench=基礎 # -achievement.buildWorkBench.desc=使用四塊木材精製出一個工作台 # +achievement.buildWorkBench.desc=使用四塊木材合成出一個工作台 # achievement.cookFish=優質魚肉 # achievement.cookFish.desc=釣到魚,並烹煮牠! # achievement.diamonds=鑽石! # @@ -1094,10 +1093,6 @@ commands.me.description=顯示有關自己的訊息。 # commands.message.display.incoming=%1$s 悄悄對您說:%2$s # commands.message.display.outgoing=您悄悄對 %1$s 說:%2$s # commands.message.sameTarget=您不能傳送私訊給自己! # -commands.message.warn=§4 您收到了警告。其他玩家可能認為您的行為令人不快。請多為一同遊玩的人著想。 # -commands.message.toastWarn=Minecraft 屬於所有人!您的行為舉止請務必遵循我們的社群標準。 # -commands.warn.invalidWarningLevel=無效的警告等級。 # -commands.warn.playerDoesNotExist=找不到玩家。請選擇有效的玩家。 # commands.mobevent.description=控制允許執行哪些生物活動。 # commands.mobevent.eventsEnabledSetToTrue=生物活動現在已經啟用。設定為 False 的個別活動不會執行。 # @@ -1502,7 +1497,6 @@ commands.volumearea.entry.withIdentifier=- %s:從 %d %d %d 到 %d %d %d 的 %s commands.volumearea.entry.withoutIdentifier=- %s:從 %d %d %d 到 %d %d %d # commands.volumearea.noneExist.currentDimension=目前維度中不存在單元。 # commands.volumearea.inUse=%1$d/%2$d 個正在使用的單元。 # -commands.warn.description=傳送警告訊息給玩家。 # commands.weather.clear=變更為晴天 # commands.weather.description=設定天氣。 # commands.weather.disabled=在這個世界上,「天氣循環」並未啟用。 # @@ -1572,6 +1566,7 @@ container.beacon=烽火台 # container.brewing=釀製台 # container.chest=箱子 # container.chestDouble=大容量箱子 # +container.crafter=合成器 # container.crafting=合成 # container.creative=選擇物品 # container.dispenser=發射器 # @@ -1887,8 +1882,6 @@ createWorldScreen.cavesandcliffs=洞穴和懸崖 # createWorldScreen.cavesandcliffsDescription=探索全新多樣化洞穴生成 # createWorldScreen.spectatorMode=旁觀者模式 # createWorldScreen.spectatorModeDescription=嘗試「觀眾模式」的早期版本 # -createWorldScreen.experimentalCameras=實驗性鏡頭 # -createWorldScreen.experimentalCamerasDescription=包含範例視角預設 (視角指令不再是實驗性) # createWorldScreen.recipeUnlocking=配方解鎖 # createWorldScreen.recipeUnlockingDescription=啟用配方解鎖 # createWorldScreen.experimentalholiday=假日創作者功能 # @@ -1942,6 +1935,7 @@ createWorldScreen.progress.local=創造新世界...... # createWorldScreen.progress.realms=正在重設 Realm... # createWorldScreen.seed.desc=輸入種子,再度產生相同的地形。留白會隨機挑選世界。 # createWorldScreen.showCoordinates=顯示座標 # +createWorldScreen.showDaysPlayed=顯示遊玩天數 # createWorldScreen.worldType=世界類型 # createWorldScreen.randomtickspeed=隨機刻速度 # createWorldScreen.randomtickspeed.reset=重設隨機刻速度 # @@ -1963,6 +1957,8 @@ createWorldScreen.editor.deleteProject=刪除專案 # createWorldScreen.editor.projectOptionsLabel=專案選項 # createWorldScreen.editor.delete.confirm=要永久刪除專案嗎? # createWorldScreen.editor.deleteWarningFormat=確定要刪除「%s」嗎?該專案將永遠消失! # +createWorldScreen.eduCloud.about.body=檔案名稱:「%1$s」%2$s最近更新:%3$s%4$s若要下載,請按一下「確認」,然後按「下載」。%5$s # +createWorldScreen.eduCloud.about.title=關於雲端世界檔案 # createWorldScreen.eduCloud.delete.confirm=刪除本地世界? # createWorldScreen.eduCloud.deleteWarningFormat=確定要刪除此裝置上的「%1$s」嗎?%2$s雲端版本「%3$s」不會受到影響,且稍後即可重新同步。 # createWorldScreen.experimentalDeferredTechnicalPreview=為創作者提供的渲染龍功能 # @@ -2374,8 +2370,8 @@ realmsSettingsScreen.windowsStoreDisplayName=Windows 市集 # realmsSettingsScreen.xboxOneStoreDisplayName=Xbox 市集 # realmsSettingsScreen.amazonStoreDisplayName=Amazon Appstore # realmsSettingsScreen.oculusStoreDisplayName=Oculus Store # -realmsSettingsScreen.berwickStoreDisplayName=「PlayStation Store」 # -realmsSettingsScreen.SonyStoreDisplayName=「PlayStation Store」 #### CertRequirement: ["PlayStation Store"] +realmsSettingsScreen.berwickStoreDisplayName=PlayStation®商店 #### CertRequirement: [PlayStation®Store] +realmsSettingsScreen.SonyStoreDisplayName=PlayStation®商店 #### CertRequirement: [PlayStation®Store] realmsSettingsScreen.unknownStoreDisplayName=未知商店 # realmsSettingsScreen.extendingRealm=正在延長 Realm... # realmsSettingsScreen.offerError.title=購買待處理 # @@ -2426,7 +2422,6 @@ xbl.syncIAP.confirmSync.prompt.description.line2=在 Minecraft 市集以外地 xbl.syncIAP.confirmSync.prompt.yes=是,同步我的購買項目 # xbl.marketplace.account.error.body.nobutton=您的帳戶發生錯誤。在我們解決問題前,您將無法使用市集。如果此問題持續多天都沒有解決,請聯絡支援部門。 # -xbl.marketplace.account.banned.body.nobutton=在您的停權期滿之前,您無法使用市集。 # playfab.account.banned.temporary=暫時封鎖 # playfab.account.banned.permanent=已封鎖 # @@ -2487,6 +2482,14 @@ date.daysAbbreviated1Char=%s 天 ### It needs to be abbreviated with no more th date.hoursAbbreviated1Char=%s 時 ### It needs to be abbreviated with no more than 1 characters date.minutesAbbreviated1Char=%s 分 ### It needs to be abbreviated with no more than 1 characters date.secondsAbbreviated1Char=%s 秒 ### It needs to be abbreviated with no more than 1 characters +date.daysPlural=%s 天 # +date.hoursPlural=%s 時 # +date.minutesPlural=%s 分 # +date.secondsPlural=%s 秒 # +date.daySingular=%s 天 # +date.hourSingular=%s 時 # +date.minuteSingular=%s 分 # +date.secondSingular=%s 秒 # date.timeLeft=剩餘 %s # dayOneExperience.carousel.title=歡迎來到 New Minecraft! # @@ -2769,6 +2772,7 @@ edu.worlds_screen.host=主持人 # edu.worlds_screen.settings=設定 # edu.worlds_screen.download=下載 ### It needs to be localized in its verb form, not as a noun edu.worlds_screen.manage=管理 # +edu.worlds_screen.about=關於 # edu.worlds_screen.back=返回 # edu.worlds_screen.copy=複製 # edu.worlds_screen.export=匯出 # @@ -2791,7 +2795,13 @@ edu.templates.empty_banner=您可以從 Minecraft Education 資料庫、其他 M edu.pause.multiplayer.disabled=此課程無法多人遊戲。 # effect.badOmen=壞預兆 # +effect.infested=蛀蝕 # +effect.oozing=滲液 # +effect.raid_omen=戰鬥預兆 # +effect.trial_omen=試煉預兆 # effect.villageHero=村莊英雄 # +effect.weaving=編織 # +effect.wind_charged=風能充能 # enchantment.arrowDamage=力量 # enchantment.arrowFire=火焰 # @@ -2810,6 +2820,9 @@ enchantment.durability=耐力 # enchantment.fire=烈火 # enchantment.fishingSpeed=魚餌 # enchantment.frostwalker=冰霜行者 # +enchantment.heavy_weapon.breach=裂口 # +enchantment.heavy_weapon.density=密度 # +enchantment.heavy_weapon.windburst=風爆 # enchantment.knockback=擊退 # enchantment.level.1=I # enchantment.level.10=X # @@ -2850,6 +2863,9 @@ entity.bat.name=蝙蝠 # entity.bee.name=蜜蜂 # entity.blaze.name=烈焰使者 # entity.boat.name=小船 # +entity.bogged.name=沼澤骷髏 # +entity.breeze.name=微風 # +entity.breeze_wind_charge_projectile.name=風能充能 # entity.cat.name=貓 # entity.cave_spider.name=洞穴蜘蛛 # entity.chicken.name=雞 # @@ -2957,6 +2973,7 @@ entity.villager.unskilled=不熟練的村民 # entity.villager_v2.name=村民 # entity.vindicator.name=衛道士 # entity.wandering_trader.name=流浪商人 # +entity.wind_charge_projectile.name=風能充能 # entity.witch.name=女巫 # entity.wither.name=凋靈 # entity.wither_skeleton.name=凋靈骷髏 # @@ -3009,6 +3026,7 @@ feature.ruins=海洋遺址 # feature.pillager_outpost=劫掠者前哨 # feature.bastion_remnant=壁壘遺蹟 # feature.ruined_portal=已破壞的傳送門 # +feature.trial_chambers=試煉房間 # feed.like=說讚 # feed.manage_feed=管理動態 # @@ -3095,11 +3113,17 @@ gameTip.playerMovement.controller=移動 :tip_left_stick: 可四處移動 # gameTip.flying.mouse=按兩下 :_input_key.jump: 即可飛翔 # gameTip.flying.touch=按兩下跳躍即可飛翔 # +gameTip.flyDown.mouse=按 :_input_key.sneak: 向下飛行 # +gameTip.flyUp.mouse=按 :_input_key.jump: 向上飛行 # + +gameTip.stopFlying.mouse=按兩下 :_input_key.jump: 停止飛行 # +gameTip.stopFlying.touch=按兩下向下飛行來停止飛行 # + gameTip.jump.mouse=使用 :_input_key.jump: 跳躍 # +gameTip.swim.mouse=按住 :_input_key.jump: 向上游 # -gameTip.hotbar.mouse=捲動滑鼠滾輪在快捷欄上選擇 # 來按住它 # -gameTip.hotbar.touch=在快捷欄上輕觸 # 來按住它 # -gameTip.hotbar.controller=在快捷欄上點選 # 並按住它 # +gameTip.hotbar.selection.mouse=捲動或按 %s 握住物品 ### The added string will be a number between 1 and 9 +gameTip.hotbar.selection.touch=在快捷欄上輕按物品來握住它 # gameTip.breakBlock.mouse=按住滑鼠左鍵以打破方塊 # gameTip.breakBlock.touch=輕觸並按住以打破方塊 # @@ -3126,7 +3150,7 @@ gameTip.sneak.mouse=你正在潛行!暫時不會從邊緣掉落 # gameTip.sneak.touch=你正在潛行,所以你不會從邊緣掉落 # gameTip.sneak.controller=你正在潛行,所以你不會從邊緣掉落 # -gameTip.placeCraftingTable.mouse=Place your crafting table. Hold it and click to place #### {StrContains='LINEBREAK'} +gameTip.placeCraftingTable.mouse=放置精製台。按住它,然後按一下以放置 # gameTip.placeCraftingTable.touch=輕觸地面來放置精製台 # gameTip.placeCraftingTable.controller=放置你的精製台,按住它,然後輕觸地面 # @@ -3225,6 +3249,7 @@ gui.submitFeedback.success=感謝您分享您的評論! # gui.submitFeedback.failure.status.unprocessableEntity=您不是您嘗試為其提供意見反應此物品的所有者。(錯誤代碼:%d) # gui.submitFeedback.failure.status.tooManyRequests=哦不!您送出了太多評論,請稍後再試。(錯誤代碼:%d) # gui.submitFeedback.failure.status.other=目前無法提交您的評論,請稍後再試。(錯誤代碼:%d) # +gui.togglable_slot=按下以停用空位 # gui.playOffline=進行離線遊戲 # gui.signIn=登入 # gui.genericNetworkError=發生錯誤。請檢查您的網際網路連線。 # @@ -3780,7 +3805,7 @@ howtoplay.minecoins.text.1=使用 Minecoin,Minecraft 的遊戲內貨幣,來 howtoplay.minecoins.text.2=一旦兌換之後,您的 Minecoin 將連結到您的 Microsoft 帳戶,因此您也可以在其他支援的裝置上存取您的硬幣和所購買項目! # howtoplay.minecoins.button.text.1=取得錢幣 # howtoplay.minecoins.header.1=免責聲明 # -howtoplay.minecoins.text.3=*Minecoin 需求具有 Minecraft 市集的 Minecraft:基岩版才可使用。Minecoin 與 Sony PlayStation 不相容。有關相容性資訊,請參閱 minecraft.net/minecoins  # +howtoplay.minecoins.text.3=*Minecoin 需求具有 Minecraft 市集的 Minecraft:基岩版才可使用。Minecoin 與 Sony PlayStation® 不相容。有關相容性資訊,請參閱 minecraft.net/minecoins  #### CertRequirement: [Sony PlayStation®] howtoplay.mining=採礦 # @@ -3956,7 +3981,7 @@ howtoplay.realms_stories.text.2=按下故事動態上的「新增故事」按鈕 howtoplay.realms_stories.header.2=了解最新消息 # howtoplay.realms_stories.text.3=每當動態中出現你尚未閱讀的新即時動態時,REALMS 故事按鈕上就會出現數字。你總是能知道 Realm 社群中什麼時候有新的東西可以看。如果你喜歡某人分享的內容,點讚或在他們的故事上留言吧! # howtoplay.realms_stories.header.3=組織遊玩 # -howtoplay.realms_stories.text.4=在時間軸中查看誰在那些時候遊玩。捲動 Realm 成員,看看他們上次遊玩的時間以及和誰一起玩。使用此資訊來安排你們一起遊玩的時間。 # +howtoplay.realms_stories.text.4=在時間線中查看誰在那些時候遊玩。捲動 Realm 成員,看看他們上次遊玩的時間以及和誰一起玩。使用此資訊來安排你們一起遊玩的時間。 # howtoplay.realms_stories.header.4=知道誰在 Realm 中 # howtoplay.realms_stories.text.5=使用「成員」標籤來得知誰是 Realm 的一份子。這是所有可以在這裡遊玩的玩家清單。你可以看到誰是 Realm 擁有者、誰是操作者,以及誰加入了這個 Realm 的 Realms Stories。搜尋、排序以及篩選可幫助你準確地找到你要尋找的人。 # howtoplay.realms_stories.header.5=隨時隨地連線 # @@ -4145,7 +4170,7 @@ level.editor.export.failed=專案匯出失敗 # level.editor.import.failed=專案匯入失敗 # level.editor.import.failed.incompatibleEdition=專案匯入失敗:不支援的檔案格式 # -inbox.invite.title=Realms 邀請 # +inbox.invite.title=Realm 邀請 # invite.clear=清除選擇 # invite.send=送出 %d 份邀請 # @@ -4348,6 +4373,22 @@ item.banner.diagonal_up_right.red=右下半部分紅色填滿 # item.banner.diagonal_up_right.silver=右下半部分淺灰色填滿 # item.banner.diagonal_up_right.white=右下半部分白色填滿 # item.banner.diagonal_up_right.yellow=右下半部分黃色填滿 # +item.banner.flow.black=黑色流動 # +item.banner.flow.blue=藍色流動 # +item.banner.flow.brown=棕色流動 # +item.banner.flow.cyan=青綠色流動 # +item.banner.flow.gray=灰色流動 # +item.banner.flow.green=綠色流動 # +item.banner.flow.lightBlue=淺藍色流動 # +item.banner.flow.lime=淡黃綠色流動 # +item.banner.flow.magenta=洋紅色流動 # +item.banner.flow.orange=橙色流動 # +item.banner.flow.pink=粉紅色流動 # +item.banner.flow.purple=紫色流動 # +item.banner.flow.red=紅色流動 # +item.banner.flow.silver=淺灰色流動 # +item.banner.flow.white=白色流動 # +item.banner.flow.yellow=黃色流動 # item.banner.flower.black=黑色花朵形狀 # item.banner.flower.blue=藍色花朵形狀 # item.banner.flower.brown=棕色花朵形狀 # @@ -4414,6 +4455,22 @@ item.banner.gradient_up.white=白色往上漸淡 # item.banner.gradient_up.yellow=黃色往上漸淡 # item.banner.gray.name=灰色旗幟 # item.banner.green.name=綠色旗幟 # +item.banner.guster.black=黑色沙風怪 # +item.banner.guster.blue=藍色沙風怪 # +item.banner.guster.brown=棕色沙風怪 # +item.banner.guster.cyan=青綠色沙風怪 # +item.banner.guster.gray=灰色沙風怪 # +item.banner.guster.green=綠色沙風怪 # +item.banner.guster.lightBlue=淺藍色沙風怪 # +item.banner.guster.lime=淡黃綠色沙風怪 # +item.banner.guster.magenta=洋紅色沙風怪 # +item.banner.guster.orange=橙色沙風怪 # +item.banner.guster.pink=粉紅色沙風怪 # +item.banner.guster.purple=紫色沙風怪 # +item.banner.guster.red=紅色沙風怪 # +item.banner.guster.silver=淺灰色沙風怪 # +item.banner.guster.white=白色沙風怪 # +item.banner.guster.yellow=黃色沙風怪 # item.banner.half_horizontal.black=上半部分黑色填滿 # item.banner.half_horizontal.blue=上半部分藍色填滿 # item.banner.half_horizontal.brown=上半部分棕色填滿 # @@ -4873,6 +4930,7 @@ item.boat.acacia.name=相思木船 # item.boat.big_oak.name=黑橡木船 # item.bone.name=骨頭 # item.book.name=書本 # +item.breeze_rod.name=微風棒 # item.chainmail_boots.name=鎖鏈靴 # item.leather_boots.name=皮靴 # item.diamond_boots.name=鑽石靴 # @@ -4988,9 +5046,10 @@ item.clay_ball.name=黏土 # item.clock.name=時鐘 # item.coal.name=煤炭 # item.comparator.name=紅石比較器 # -item.compass.name=指南針 # +item.compass.name=羅盤 # item.lodestonecompass.name=磁石羅盤 # item.cookie.name=餅乾 # +item.copper_door.name=銅門 # item.crossbow.name=十字弓 # item.diamond.name=鑽石 # item.repeater.name=紅石中繼器 # @@ -5038,6 +5097,7 @@ tile.end_rod.name=終界燭 # item.ender_eye.name=終界之眼 # item.ender_pearl.name=終界珍珠 # item.experience_bottle.name=拋出的經驗瓶 # +item.exposed_copper_door.name=外露銅門 # item.feather.name=羽毛 # item.fermented_spider_eye.name=發酵蜘蛛眼 # item.fireball.name=火彈 # @@ -5130,6 +5190,7 @@ item.golden_leggings.name=黃金護腿 # item.iron_leggings.name=鐵護腿 # item.nautilus_shell.name=鸚鵡螺殼 # item.heart_of_the_sea.name=海洋之心 # +item.mace.name=錘子 # item.magma_cream.name=熔岩球 # item.map.name=地圖 # item.map.exploration.mansion.name=林地探險家地圖 # @@ -5143,6 +5204,7 @@ item.map.exploration.village_savanna.name=疏林草原村莊地圖 # item.map.exploration.village_desert.name=沙漠村莊地圖 # item.map.exploration.jungle_temple.name=叢林探險家地圖 # item.map.exploration.swamp_hut.name=沼澤探險家地圖 # +item.map.exploration.trial_chambers.name=試煉探險家地圖 # item.melon.name=西瓜 # item.milk.name=牛奶 # item.minecart.name=礦車 # @@ -5150,6 +5212,9 @@ item.chest_minecart.name=運輸礦車 # item.command_block_minecart.name=指令方塊礦車 # item.minecartFurnace.name=動力礦車 # item.hopper_minecart.name=漏斗礦車 # +item.ominous_bottle.name=不祥瓶子 # +item.ominous_trial_key.name=不祥試煉鑰匙 # +item.oxidized_copper_door.name=氧化銅門 # item.tnt_minecart.name=炸藥礦車 # item.pitcher_pod.name=豬籠草豆莢 # item.torchflower_seeds.name=火炬花種子 # @@ -5157,6 +5222,8 @@ item.spawn_egg.entity.agent.name=特務生成蛋 # item.spawn_egg.entity.armadillo.name=犰狳生成蛋 # item.spawn_egg.entity.axolotl.name=墨西哥鈍口螈生成蛋 # item.spawn_egg.entity.bee.name=蜜蜂生成蛋 # +item.spawn_egg.entity.bogged.name=沼澤骷髏生成蛋 # +item.spawn_egg.entity.breeze.name=微風生成蛋 # item.spawn_egg.entity.hoglin.name=疣豬獸生成蛋 # item.spawn_egg.entity.cat.name=貓咪生成蛋 # item.spawn_egg.entity.chicken.name=雞生成蛋 # @@ -5278,6 +5345,9 @@ item.record_ward.desc=C418 - ward # item.record_pigstep.desc=莉娜雷恩 - Pigstep # item.record_otherside.desc=莉娜雷恩 - otherside # item.record_relic.desc=Aaron Cherof - Relic # +item.record_creator.desc=莉娜雷恩 - 創作者 # +item.record_creator_music_box.desc=莉娜雷恩 - 創作者 (音樂盒) # +item.record_precipice.desc=亞倫切羅夫 - 懸崖峭壁 # item.redstone.name=紅石塵 # item.reeds.name=甘蔗 # item.kelp.name=大海帶 # @@ -5324,6 +5394,12 @@ item.iron_sword.name=鐵劍 # item.stone_sword.name=石劍 # item.wooden_sword.name=木劍 # item.unbreakable=無法破壞的 # +item.waxed_copper_door.name=塗蠟銅門 # +item.waxed_exposed_copper_door.name=塗蠟的外露銅門 # +item.waxed_oxidized_copper_door.name=塗蠟的氧化銅門 # +item.waxed_weathered_copper_door.name=塗蠟的風化銅門 # +item.weathered_copper_door.name=風化銅門 # +item.wind_charge.name=風能充能 # item.wheat.name=小麥 # item.wolf_armor.name=狼鎧 # item.writable_book.name=書本和羽毛筆 # @@ -5331,6 +5407,7 @@ item.written_book.name=完成的書本 # item.glowstone_dust.name=螢石粉 # item.shulker_shell.name=界伏蚌殼 # item.totem.name=不死圖騰 # +item.trial_key.name=試煉鑰匙 # item.turtle_helmet.name=龜殼 # item.turtle_shell_piece.name=海龜鱗甲 # item.phantom_membrane.name=幻影薄膜 # @@ -5338,8 +5415,10 @@ item.sweet_berries.name=甜莓 # item.suspicious_stew.name=可疑燉肉 # item.banner_pattern.bricks=磚牆花紋 # item.banner_pattern.creeper=苦力怕頭形狀 # +item.banner_pattern.flow=流動 # item.banner_pattern.flower=花朵形狀 # item.banner_pattern.globe=球體 # +item.banner_pattern.guster=沙風怪 # item.banner_pattern.name=旗幟樣式 # item.banner_pattern.piglin=鼻子 # item.banner_pattern.skull=骷髏頭形狀 # @@ -5450,6 +5529,8 @@ itemGroup.name.banner_pattern=旗幟樣式 # itemGroup.name.netherWartBlock=地獄結節 # itemGroup.name.candles=蠟燭 # itemGroup.name.goatHorn=山羊角 # +itemGroup.name.compounds=複合物 # +itemGroup.name.products=產品 # jigsaw.title.target_pool=目標池: # jigsaw.title.name=名稱: # @@ -5811,6 +5892,7 @@ menu.classroom_settings.caps=課堂設定 # menu.serverStore=%s 商店 # menu.serverGenericName=伺服器 # menu.play=遊戲 # +menu.profile=設定檔 # menu.playdemo=試玩 # menu.playOnRealms=在 Realm 上遊戲 # menu.quickplay=快速遊戲 # @@ -5841,6 +5923,7 @@ menu.character_cast.select_title=選擇您的起始角色 # menu.character_cast.preview_title=認識演員! # menu.realms=Realms ####{StrContains="Realms"} menu.realmsServer=Realms 伺服器 ####{StrContains="Realms"}{MaxLength='18'} +menu.servers=伺服器 # merchant.deprecated=用其他物品交易來解鎖! # @@ -6270,6 +6353,10 @@ options.fullKeyboardGameplay=全鍵盤遊戲 # options.fullKeyboardLayout=全鍵盤佈局 # options.improvedInputResponsePlaceholder=改善輸入回應 # options.improvedInputResponsePlaceholder.tooltip=減少您的輸入和您在螢幕上看到內容之間的延遲。此設定可能會消耗更多電池電量。 # +options.dynamicTexturesToggle=移除材質限制 # +options.dynamicTexturesToggle.tooltip=將此設定從「開啟」改為「關閉」將需要重新啟動遊戲。當使用多個附加內容或含有大量材質的資源套件時,可能會導致遊戲不穩定。 # +options.dynamicTextures.popUp=如果開啟「移除材質限制」,你將需要重新啟動遊戲才能關閉它。 # +options.dynamicTextures.popUp.title=您確定嗎? # options.fullscreen=全螢幕 # options.gamepadcursorsensitivity=控制器游標靈敏度 # options.gamertag=玩家代號: # @@ -6326,6 +6413,18 @@ options.creator.debuggerConnect=連接 # options.creator.debuggerListen=聽聽看 # options.creator.debuggerHost=主持人 # options.creator.debuggerPort=埠 # +options.creator.watchdogHeading=指令碼監視程式設定 # +options.creator.watchdogSlowWarning=慢速指令碼警告 # +options.creator.watchdogSlowThreshold=平均超過 # +options.creator.watchdogSlowFormat=%s 毫秒 # +options.creator.watchdogSlowFormatDefault=%s 毫秒 (預設) # +options.creator.watchdogSpikeWarning=指令碼峰值警告 # +options.creator.watchdogSpikeThreshold=超過峰值 # +options.creator.watchdogSpikeFormat=%s 毫秒 # +options.creator.watchdogSpikeFormatDefault=%s 毫秒 (預設) # +options.creator.watchdogHangThreshold=之後中斷 # +options.creator.watchdogHangFormat=%s 秒 # +options.creator.watchdogHangFormatDefault=%s 秒 (預設) # options.vr_classic_box_selection=外框選擇 # options.hidegamepadcursor=隱藏控制器游標 # options.hidegui=隱藏 GUI # @@ -6662,7 +6761,7 @@ options.makeBackup=製作我的世界備份副本 # options.managePrivacy=若要管理隱私權設定,請使用任何網路瀏覽器造訪 https://account.xbox.com/Settings。 ###disable_3rd_party_console_resource_pack_check options.unlink_msa.button=取消連結 Microsoft 帳戶 # options.unlink_msa.confirm.title=是否取消連結 Microsoft 帳戶? # -options.unlink_msa.confirm.warning=警告:取消連結後,您將無法在於您的帳戶 %s 中儲存您在「PlayStation 4」主機中的進度或購買的內容。 # +options.unlink_msa.confirm.warning=警告:取消連結後,您將無法在於您的帳戶 %s 中儲存您在 PlayStation®4 主機上的進度或購買的內容。 #### CertRequirement: [PlayStation®4] options.unlink_msa.confirm.warning.2=從此遊戲中取消連結您的 Microsoft 帳戶將影響此平台上使用此 Microsoft 帳戶的所有 Minecraft 遊戲。 # options.unlink_msa.confirm.checkbox1=我在其他平台中玩遊戲時,將無法再存取任何遊戲內的商店內容。 # options.unlink_msa.confirm.checkbox2=我將無法在其他平台中與我的好友一起玩跨平台遊戲。 # @@ -6874,6 +6973,8 @@ hudScreen.controlCustomization.tooltip=載入世界以自訂控制選項 # hudScreen.controlCustomization.tooltip.notouch=使用觸控裝置自訂控制項 # hudScreen.controlCustomization.tooltip.alreadycustomizing=已開啟觸控自訂螢幕 # hudScreen.controlCustomization.tooltip.alive=玩家需要處於活躍狀態才能自訂控制選項。 # +hudScreen.daysPlayed=已玩天數:%s # +hudScreen.daysPlayed.overflow=多到數不清了! # playscreen.fileSize.MB=MB # playscreen.fileSize.GB=GB # @@ -7042,6 +7143,10 @@ potion.heal.splash.name=噴濺型治療藥水 # potion.heal.linger.name=滯留型治療藥水 # potion.healthBoost=生命值加乘 # potion.hunger=飢餓 # +potion.infested.linger.name=滯留型蛀蝕藥水 # +potion.infested.name=蛀蝕藥水 # +potion.infested.splash.name=噴濺型蛀蝕藥水 # +potion.infested=蛀蝕 # potion.invisibility=隱形 # potion.invisibility.name=隱形藥水 # potion.invisibility.splash.name=噴濺型隱形藥水 # @@ -7067,6 +7172,10 @@ potion.nightVision=夜視 # potion.nightVision.name=夜視藥水 # potion.nightVision.splash.name=噴濺型夜視藥水 # potion.nightVision.linger.name=滯留型夜視藥水 # +potion.oozing.linger.name=滯留型滲液藥水 # +potion.oozing.name=滲液藥水 # +potion.oozing.splash.name=噴濺型滲液藥水 # +potion.oozing=滲液 # potion.poison=劇毒 # potion.poison.name=劇毒藥水 # potion.poison.splash.name=噴濺型劇毒藥水 # @@ -7108,6 +7217,14 @@ potion.weakness=虛弱 # potion.weakness.name=虛弱藥水 # potion.weakness.splash.name=噴濺型虛弱藥水 # potion.weakness.linger.name=滯留型虛弱藥水 # +potion.weaving.linger.name=滯留型編織藥水 # +potion.weaving.name=編織藥水 # +potion.weaving.splash.name=噴濺型編織藥水 # +potion.weaving=編織 # +potion.windCharged.linger.name=滯留型風能充能藥水 # +potion.windCharged.name=風能充能藥水 # +potion.windCharged.splash.name=噴濺型風能充能藥水 # +potion.windCharged=風能充能 # potion.wither=凋靈 # potion.wither.name=腐朽藥水 # potion.wither.splash.name=噴濺型腐朽藥水 # @@ -7211,7 +7328,14 @@ progressScreen.message.directoryDepthError=由於套件中的目錄問題,無 progressScreen.message.forbiddenContent=您沒有一個或多個適用的套件 # progressScreen.message.loadingSplitScreenAppearances=正在載入分割畫面外觀... # progressScreen.message.finishedLoadingSplitScreenAppearances=分割畫面外觀載入完成。 # -progressScreen.message.modifiedWorldWarning=這個世界的長相或行為可能與未修改的世界不同,而且你無法獲得成就。 # +progressScreen.message.modifiedWorldWarning.1=你正在含有追加內容的世界中遊玩!你的 Minecraft 世界將會增加新的功能。 # +progressScreen.message.modifiedWorldWarning.2=別再一次一個慢慢加了!你可以一次將多個追加內容載入一個世界中。 # +progressScreen.message.modifiedWorldWarning.3=進階提示:資源套件可以變更不同方塊和實體的材質。 # +progressScreen.message.modifiedWorldWarning.4=進階提示:行為套件可以變更不同物品、實體或方塊的行為模式。 # +progressScreen.message.modifiedWorldWarning.5=進階提示:一個包含行為套件和資源套件的追加內容。請確認已啟用該兩個套件,以確保追加內容能夠正常執行! # +progressScreen.message.modifiedWorldWarning.6=追加內容增加新的方塊、物品或生物至你的世界。 # +progressScreen.message.modifiedWorldWarning.7=世界和追加內容非常複雜!雖然有些很合適一起使用,但有些可能會造成奇怪的結果。 # +progressScreen.message.modifiedWorldWarning.8=更多追加內容代表著更多樂趣,但可能會需要較長的時間來載入遊戲。 # progressScreen.dialog.title.resourcePack=是否下載資源包? # progressScreen.dialog.title.behaviorAndResourcePack=是否要下載世界行為模式和資源套件? # progressScreen.dialog.title.onlyBehavior=是否要下載世界行為套件? # @@ -7328,6 +7452,9 @@ resourcePack.warning.add.title=是否要更新世界? # resourcePack.warning.add.body=這個世界的外觀或行為模式可能與未修改的世界不同。你應該在繼續遊戲之前另存你的世界。 # resourcePack.warning.add.button.cancel=不新增套件 # resourcePack.warning.add.button.ok=仍要新增套件 # +resourcePack.warnings.contentKeyErrorBody=載入套件 %s 時出現問題。 # +resourcePack.warnings.contentKeyErrorBodyMultiple=載入套件 %s 時出現問題。 # +resourcePack.warnings.contentKeyErrorTitle=錯誤! # resourcePack.warning.remove.title=這樣做很危險! # resourcePack.warning.remove.body=體驗世界後,加入或刪除套件可能會破壞世界,且導致你失去已建立的項目。 # resourcePack.warning.remove.button.cancel=保留套件 # @@ -7557,7 +7684,9 @@ item.crimson_hanging_sign.name=懸掛式緋紅蕈木告示牌 # item.danger_pottery_sherd.name=危險陶器碎片 # item.dark_oak_hanging_sign.name=懸掛式黑橡木告示牌 # item.explorer_pottery_sherd.name=探險家陶器碎片 # +item.flow_pottery_sherd.name=流動陶器碎片 # item.friend_pottery_sherd.name=好友陶器碎片 # +item.guster_pottery_sherd.name=沙風怪陶器碎片 # item.heart_pottery_sherd.name=愛心陶器碎片 # item.heartbreak_pottery_sherd.name=心碎陶器碎片 # item.howl_pottery_sherd.name=狼嚎陶器碎片 # @@ -7568,6 +7697,7 @@ item.mourner_pottery_sherd.name=哀悼者陶器碎片 # item.oak_hanging_sign.name=懸掛式橡木告示牌 # item.plenty_pottery_sherd.name=豐饒陶器碎片 # item.prize_pottery_sherd.name=獎品陶器碎片 # +item.scrape_pottery_sherd.name=刮擦陶器碎片 # item.sheaf_pottery_sherd.name=麥捆陶器碎片 # item.shelter_pottery_sherd.name=庇護陶器碎片 # item.skull_pottery_sherd.name=骷髏陶器碎片 # @@ -7613,7 +7743,9 @@ tile.cherry_stairs.name=櫻花木樓梯 # tile.cherry_trapdoor.name=櫻花木地板門 # tile.cherry_wood.name=櫻花樹木頭 # tile.chiseled_bookshelf.name=鑿刻書櫃 # -tile.decorated_pot.name=飾紋陶罐 # +tile.chiseled_tuff.name=鑿刻凝灰岩 # +tile.chiseled_tuff_bricks.name=鑿刻凝灰岩磚塊 # +tile.decorated_pot.name=裝飾罐 # tile.pink_petals.name=粉紅色花瓣 # tile.stripped_bamboo_block.name=剝皮竹子方塊 # tile.stripped_cherry_log.name=剝皮櫻花樹原木 # @@ -7646,6 +7778,8 @@ trim_pattern.vex.name=維克絲紋飾護甲 # trim_pattern.ward.name=守衛紋飾護甲 # trim_pattern.wayfinder.name=尋路者紋飾護甲 # trim_pattern.wild.name=狂野紋飾護甲 # +trim_pattern.bolt.name=閃電紋飾護甲 # +trim_pattern.flow.name=流動紋飾護甲 # upgrade.netherite_upgrade.name=獄髓升級 # storageManager.mainSizeLabel=%s - 1 個物品 # @@ -7889,11 +8023,11 @@ selectTemplate.delete.confirm=要刪除世界範本嗎? # selectTemplate.delete=刪除 # selectTemplate.myTemplates=我的世界範本 # selectTemplate.realmsPlus=精選 Realms Plus 範本 # -selectTemplate.marketplacePass=精選 Marketplace Pass 範本 #### {StrContains="Marketplace Pass"} +selectTemplate.marketplacePass=精選 Marketplace Pass 內容 #### {StrContains="Marketplace Pass"} selectTemplate.importedTemplates=已匯入的範本 # selectTemplate.download=下載 # selectTemplate.noTemplates=此裝置中沒有世界範本。 # -selectTemplate.suggestedContent.title=精選市集範本 # +selectTemplate.suggestedContent.title=精選市集內容 # selectTemplate.suggestedContent.button=查看更多範本 # selectTemplate.createdBy=建立:%s # selectTemplate.inventory=我的市集套件 # @@ -8043,6 +8177,7 @@ store.loading.error.connecting=連線時發生問題。請返回再試一次。 store.loading.error.issues=嗯,市集目前有些問題。請稍後再嘗試連線。 # store.loading.error.internetDown=無法偵測到網際網路連線。 # store.loading.error.account=您的帳號有問題。請稍後再試,如果問題持續存在,請聯絡支援部門。 # +store.loading.error.account.banned=在您的停權期滿之前,您無法使用市集。 # store.giftPromo.day=第 %s 天 ### %s being day number such as "Day 1", "Day 2", etc. Please use short translations. 3 letters if possible store.equipped=已領取 # @@ -8405,10 +8540,17 @@ store.mashup.count.skin=1 種外觀 # store.mashup.count.skins=%s 款外觀 # store.mashup.count.texturePack=1 個材質套件 # store.mashup.count.texturePacks=%s 個材質套件 #number of texture packs # -store.mashup.count.world=1 個世界 # +store.mashup.count.world=1 個世界 # store.mashup.count.worlds=%s 個世界 #number of worlds # store.mashup.count.addonPack=1 個附加元件 # store.mashup.count.addonPacks=%s 個附加元件 #number of addons # +store.mashup.count.mashup=混搭 # +store.mashup.hover.label.addonPack=追加內容可以套用至任何世界。 # +store.mashup.hover.label.world=手工製作的 Minecraft 地圖。 # +store.mashup.hover.label.skin=為角色套用新外觀。 # +store.mashup.hover.label.texturePack=新增全新視覺效果至你的世界或遊戲介面。 # +store.mashup.hover.label.mashup.lineOne=不同類型內容的組合。 # +store.mashup.hover.label.mashup.lineTwo=這個混搭包含: # store.addon.activateAddonPack=啟用附加元件! # store.addon.newOrExistingTitle=在哪裡新增? # @@ -8844,6 +8986,7 @@ tile.chalkboard.threeByTwo.name=黑板 # tile.chest.name=箱子 # tile.ender_chest.name=終界箱 # tile.jigsaw.name=拼圖方塊 # +tile.heavy_core.name=沉重核心 # tile.honey_block.name=蜂蜜方塊 # tile.honeycomb_block.name=蜂巢方塊 # tile.lodestone.name=磁石 # @@ -8905,6 +9048,10 @@ tile.polished_blackstone_slab.name=拋光黑石板 # tile.polished_blackstone_pressure_plate.name=拋光黑石壓板 # tile.polished_blackstone_button.name=拋光黑石按鈕 # tile.polished_blackstone_wall.name=拋光黑石牆 # +tile.polished_tuff.name=拋光凝灰岩 # +tile.polished_tuff_slab.name=拋光凝灰岩板 # +tile.polished_tuff_stairs.name=拋光凝灰岩階梯 # +tile.polished_tuff_wall.name=拋光凝灰岩牆壁 # tile.soul_campfire.name=靈魂營火 # tile.chiseled_nether_bricks.name=鑿刻地獄磚塊 # tile.cracked_nether_bricks.name=裂開的地獄磚塊 # @@ -8983,6 +9130,8 @@ tile.stained_hardened_clay.yellow.name=黃色陶土 # tile.structure_block.name=結構方塊 # structure_block.waterlog_block=含水方塊 # tile.structure_void.name=結構空位 # +tile.trial_spawner.name=試煉生成器 # +tile.vault.name=保險庫 # tile.wool.black.name=黑色羊毛 # tile.wool.blue.name=藍色羊毛 # tile.wool.brown.name=棕色羊毛 # @@ -9335,6 +9484,13 @@ tile.tallgrass.fern.name=蕨 # tile.tallgrass.grass.name=草 # tile.tallgrass.name=草 # tile.tallgrass.shrub.name=矮樹 # +tile.tuff_brick_slab.name=凝灰岩磚塊板 # +tile.tuff_brick_stairs.name=凝灰岩磚塊梯 # +tile.tuff_brick_wall.name=凝灰岩磚牆 # +tile.tuff_bricks.name=凝灰岩磚塊 # +tile.tuff_slab.name=凝灰岩板 # +tile.tuff_stairs.name=凝灰岩階梯 # +tile.tuff_wall.name=凝灰岩牆壁 # tile.seagrass.seagrass.name=海草 # tile.sea_pickle.name=火體蟲 # tile.turtle_egg.name=海龜蛋 # @@ -9412,6 +9568,7 @@ tile.carpet.red.name=紅色地毯 # tile.carpet.silver.name=淺灰地毯 # tile.carpet.white.name=白色地毯 # tile.carpet.yellow.name=黃色地毯 # +tile.crafter.name=合成器 # tile.crafting_table.name=精製台 # tile.glazedTerracotta.white.name=白色帶釉陶土 # @@ -9598,6 +9755,52 @@ tile.waxed_cut_copper_slab.name=上蠟的切製銅半磚 # tile.waxed_exposed_cut_copper_slab.name=上蠟的斑駁切製銅半磚 # tile.waxed_weathered_cut_copper_slab.name=上蠟的風化切製銅半磚 # tile.waxed_oxidized_cut_copper_slab.name=上蠟的氧化切製銅半磚 # + +tile.chiseled_copper.name=鑿刻銅 # +tile.exposed_chiseled_copper.name=外露鑿刻銅 # +tile.oxidized_chiseled_copper.name=氧化鑿刻銅 # +tile.waxed_chiseled_copper.name=塗蠟鑿刻銅 # +tile.waxed_exposed_chiseled_copper.name=上蠟的斑駁鑿刻銅 # +tile.waxed_oxidized_chiseled_copper.name=上蠟的氧化鑿刻銅 # +tile.waxed_weathered_chiseled_copper.name=上蠟的風化鑿刻銅 # +tile.weathered_chiseled_copper.name=風化鑿刻銅 # + +tile.copper_bulb.name=銅燈泡 # +tile.exposed_copper_bulb.name=外露銅燈泡 # +tile.oxidized_copper_bulb.name=氧化銅燈泡 # +tile.waxed_copper_bulb.name=塗蠟銅燈泡 # +tile.waxed_exposed_copper_bulb.name=塗蠟的外露銅燈泡 # +tile.waxed_oxidized_copper_bulb.name=塗蠟氧化銅燈泡 # +tile.waxed_weathered_copper_bulb.name=塗蠟的風化銅燈泡 # +tile.weathered_copper_bulb.name=風化銅燈泡 # + +tile.copper_door.name=銅門 # +tile.exposed_copper_door.name=外露銅門 # +tile.oxidized_copper_door.name=氧化銅門 # +tile.waxed_copper_door.name=塗蠟銅門 # +tile.waxed_exposed_copper_door.name=塗蠟的外露銅門 # +tile.waxed_oxidized_copper_door.name=塗蠟的氧化銅門 # +tile.waxed_weathered_copper_door.name=塗蠟的風化銅門 # +tile.weathered_copper_door.name=風化銅門 # + +tile.copper_grate.name=銅雕花格 # +tile.exposed_copper_grate.name=外露銅雕花格 # +tile.oxidized_copper_grate.name=氧化銅灰色爐柵 # +tile.waxed_copper_grate.name=塗蠟銅灰色爐柵 # +tile.waxed_exposed_copper_grate.name=塗蠟外露銅爐柵 # +tile.waxed_oxidized_copper_grate.name=塗蠟的氧化銅爐柵 # +tile.waxed_weathered_copper_grate.name=塗蠟的風化銅爐柵 # +tile.weathered_copper_grate.name=風化銅灰色爐柵 # + +tile.copper_trapdoor.name=銅製地板門 # +tile.exposed_copper_trapdoor.name=外露銅地板門 # +tile.oxidized_copper_trapdoor.name=氧化銅地板門 # +tile.waxed_copper_trapdoor.name=塗蠟銅地板門 # +tile.waxed_exposed_copper_trapdoor.name=塗蠟外露銅地板門 # +tile.waxed_oxidized_copper_trapdoor.name=塗蠟的氧化銅地板門 # +tile.waxed_weathered_copper_trapdoor.name=塗蠟的風化銅地板門 # +tile.weathered_copper_trapdoor.name=風化銅地板門 # + tile.raw_copper_block.name=粗銅方塊 # tile.raw_iron_block.name=粗鐵方塊 # tile.raw_gold_block.name=粗金方塊 # @@ -9678,6 +9881,10 @@ tipped_arrow.effect.luck=運氣箭 # tipped_arrow.effect.wither=腐朽箭 # tipped_arrow.effect.turtleMaster=海龜大師之箭 # tipped_arrow.effect.slowFalling=慢速掉落箭矢 # +tipped_arrow.effect.infested=蛀蝕之箭 # +tipped_arrow.effect.oozing=滲液之箭 # +tipped_arrow.effect.weaving=編織之箭 # +tipped_arrow.effect.windCharged=風能充能之箭 # structure_block.title=結構方塊 # structure_block.structure_name=結構名稱 # @@ -9786,6 +9993,12 @@ worldError.recoveredCorruptedWorldWarning=您有部分最近的變更可能已 worldError.worldFailedRecovery=還原已失敗 # worldError.worldFailedRecoveryText=我們發現有毀損的士界,而且還原已失敗。 # +writeThrottling.osDialog.body=預計需要 %d 分鐘來完成所要求的操作。請勿在此時關閉您的裝置電源。 # +writeThrottling.osDialog.cancel=取消操作 # +writeThrottling.osDialog.confirm=繼續 # +writeThrottling.progressBar.title=正在準備資料 # +writeThrottling.progressBar.body=正在準備你的檔案… # + userData.recovered.title=儲存資料已還原 # userData.recovered.text=成功還原損毀的使用者設定。 # userData.recovered.warning=您有部分最近的變更可能已於還原中遺失。 # @@ -10029,13 +10242,12 @@ xbox.report.area.chat=聊天訊息 # xbox.report.area.skin=玩家外觀 # xbox.report.area.gameplay=遊戲玩法 # xbox.report.area.ingame=遊戲內創作 # -xbox.report.area.other=其他 # ## Player safety ban reasons defined by legal/compliance xbox.report.cyberbullying=網路霸凌 # xbox.report.falseReporting=過多虛假/不準確的報告 # xbox.report.exploits=漏洞利用和第三方應用程式 # -xbox.report.harassingComments=騷擾或誹謗評論 # +xbox.report.harassingComments=騷擾或誹謗的留言 # xbox.report.hateSpeech=仇恨言論 # xbox.report.illegalDrugs=非法藥物或活動 # xbox.report.impersonatingStaff=冒充員工、玩家支援或社群代表 # @@ -10956,7 +11168,7 @@ gathering.info.modal.body.connectFail=真糟糕,我們無法連線。請稍後 gathering.connect.title=正在連線… # gathering.info.qr.title.onlineService=進一步瞭解 # gathering.info.qr.body.onlineService.nso=您必須要有 Nintendo Switch Online 會員資格才能參加 Minecraft 中的活動。 # -gathering.info.qr.body.onlineService.psn=您必須登入 \"PlayStation Plus\" 才能參加 Minecraft 中的活動。 # +gathering.info.qr.body.onlineService.psn=您必須登入 PlayStation®Plus 才能參加 Minecraft 的活動。 #### CertRequirement: [PlayStation®Plus] gathering.info.qr.body.onlineService=您必須登入才能參加 Minecraft 中的活動。 # gathering.info.qr.title.childAccount=不允許線上遊玩 # gathering.info.qr.body.childAccount=由於你目前的家長監護限制,你無法在線上遊玩。 # diff --git a/resource_pack/textures/blocks/chiseled_copper.png b/resource_pack/textures/blocks/chiseled_copper.png new file mode 100644 index 000000000..72bc06184 Binary files /dev/null and b/resource_pack/textures/blocks/chiseled_copper.png differ diff --git a/resource_pack/textures/blocks/chiseled_tuff.png b/resource_pack/textures/blocks/chiseled_tuff.png new file mode 100644 index 000000000..e95fa5e1e Binary files /dev/null and b/resource_pack/textures/blocks/chiseled_tuff.png differ diff --git a/resource_pack/textures/blocks/chiseled_tuff_bricks.png b/resource_pack/textures/blocks/chiseled_tuff_bricks.png new file mode 100644 index 000000000..3631249bc Binary files /dev/null and b/resource_pack/textures/blocks/chiseled_tuff_bricks.png differ diff --git a/resource_pack/textures/blocks/chiseled_tuff_bricks_top.png b/resource_pack/textures/blocks/chiseled_tuff_bricks_top.png new file mode 100644 index 000000000..7d5cbefc4 Binary files /dev/null and b/resource_pack/textures/blocks/chiseled_tuff_bricks_top.png differ diff --git a/resource_pack/textures/blocks/chiseled_tuff_top.png b/resource_pack/textures/blocks/chiseled_tuff_top.png new file mode 100644 index 000000000..4fd51a181 Binary files /dev/null and b/resource_pack/textures/blocks/chiseled_tuff_top.png differ diff --git a/resource_pack/textures/blocks/copper_bulb.png b/resource_pack/textures/blocks/copper_bulb.png new file mode 100644 index 000000000..79275ba3c Binary files /dev/null and b/resource_pack/textures/blocks/copper_bulb.png differ diff --git a/resource_pack/textures/blocks/copper_bulb_lit.png b/resource_pack/textures/blocks/copper_bulb_lit.png new file mode 100644 index 000000000..b674eac23 Binary files /dev/null and b/resource_pack/textures/blocks/copper_bulb_lit.png differ diff --git a/resource_pack/textures/blocks/copper_bulb_lit_powered.png b/resource_pack/textures/blocks/copper_bulb_lit_powered.png new file mode 100644 index 000000000..88a32628e Binary files /dev/null and b/resource_pack/textures/blocks/copper_bulb_lit_powered.png differ diff --git a/resource_pack/textures/blocks/copper_bulb_powered.png b/resource_pack/textures/blocks/copper_bulb_powered.png new file mode 100644 index 000000000..2eeb817e1 Binary files /dev/null and b/resource_pack/textures/blocks/copper_bulb_powered.png differ diff --git a/resource_pack/textures/blocks/copper_door_bottom.png b/resource_pack/textures/blocks/copper_door_bottom.png new file mode 100644 index 000000000..57e875fc7 Binary files /dev/null and b/resource_pack/textures/blocks/copper_door_bottom.png differ diff --git a/resource_pack/textures/blocks/copper_door_top.png b/resource_pack/textures/blocks/copper_door_top.png new file mode 100644 index 000000000..c5c5ca04b Binary files /dev/null and b/resource_pack/textures/blocks/copper_door_top.png differ diff --git a/resource_pack/textures/blocks/copper_grate.png b/resource_pack/textures/blocks/copper_grate.png new file mode 100644 index 000000000..676732423 Binary files /dev/null and b/resource_pack/textures/blocks/copper_grate.png differ diff --git a/resource_pack/textures/blocks/copper_trapdoor.png b/resource_pack/textures/blocks/copper_trapdoor.png new file mode 100644 index 000000000..71beee83c Binary files /dev/null and b/resource_pack/textures/blocks/copper_trapdoor.png differ diff --git a/resource_pack/textures/blocks/crafter_bottom.png b/resource_pack/textures/blocks/crafter_bottom.png new file mode 100644 index 000000000..35a524cc0 Binary files /dev/null and b/resource_pack/textures/blocks/crafter_bottom.png differ diff --git a/resource_pack/textures/blocks/crafter_east.png b/resource_pack/textures/blocks/crafter_east.png new file mode 100644 index 000000000..8bdb1ff99 Binary files /dev/null and b/resource_pack/textures/blocks/crafter_east.png differ diff --git a/resource_pack/textures/blocks/crafter_east_crafting.png b/resource_pack/textures/blocks/crafter_east_crafting.png new file mode 100644 index 000000000..1f6282a59 Binary files /dev/null and b/resource_pack/textures/blocks/crafter_east_crafting.png differ diff --git a/resource_pack/textures/blocks/crafter_east_triggered.png b/resource_pack/textures/blocks/crafter_east_triggered.png new file mode 100644 index 000000000..16cfb4452 Binary files /dev/null and b/resource_pack/textures/blocks/crafter_east_triggered.png differ diff --git a/resource_pack/textures/blocks/crafter_north.png b/resource_pack/textures/blocks/crafter_north.png new file mode 100644 index 000000000..f0463f011 Binary files /dev/null and b/resource_pack/textures/blocks/crafter_north.png differ diff --git a/resource_pack/textures/blocks/crafter_north_crafting.png b/resource_pack/textures/blocks/crafter_north_crafting.png new file mode 100644 index 000000000..0596f2da5 Binary files /dev/null and b/resource_pack/textures/blocks/crafter_north_crafting.png differ diff --git a/resource_pack/textures/blocks/crafter_south.png b/resource_pack/textures/blocks/crafter_south.png new file mode 100644 index 000000000..6874f1934 Binary files /dev/null and b/resource_pack/textures/blocks/crafter_south.png differ diff --git a/resource_pack/textures/blocks/crafter_south_triggered.png b/resource_pack/textures/blocks/crafter_south_triggered.png new file mode 100644 index 000000000..2ea8085f2 Binary files /dev/null and b/resource_pack/textures/blocks/crafter_south_triggered.png differ diff --git a/resource_pack/textures/blocks/crafter_top.png b/resource_pack/textures/blocks/crafter_top.png new file mode 100644 index 000000000..eda0befe2 Binary files /dev/null and b/resource_pack/textures/blocks/crafter_top.png differ diff --git a/resource_pack/textures/blocks/crafter_top_crafting.png b/resource_pack/textures/blocks/crafter_top_crafting.png new file mode 100644 index 000000000..51d36fe8a Binary files /dev/null and b/resource_pack/textures/blocks/crafter_top_crafting.png differ diff --git a/resource_pack/textures/blocks/crafter_top_triggered.png b/resource_pack/textures/blocks/crafter_top_triggered.png new file mode 100644 index 000000000..12279ebf8 Binary files /dev/null and b/resource_pack/textures/blocks/crafter_top_triggered.png differ diff --git a/resource_pack/textures/blocks/crafter_west.png b/resource_pack/textures/blocks/crafter_west.png new file mode 100644 index 000000000..f709a0f7c Binary files /dev/null and b/resource_pack/textures/blocks/crafter_west.png differ diff --git a/resource_pack/textures/blocks/crafter_west_crafting.png b/resource_pack/textures/blocks/crafter_west_crafting.png new file mode 100644 index 000000000..04ea35a23 Binary files /dev/null and b/resource_pack/textures/blocks/crafter_west_crafting.png differ diff --git a/resource_pack/textures/blocks/crafter_west_triggered.png b/resource_pack/textures/blocks/crafter_west_triggered.png new file mode 100644 index 000000000..8806f697b Binary files /dev/null and b/resource_pack/textures/blocks/crafter_west_triggered.png differ diff --git a/resource_pack/textures/blocks/exposed_chiseled_copper.png b/resource_pack/textures/blocks/exposed_chiseled_copper.png new file mode 100644 index 000000000..93c446349 Binary files /dev/null and b/resource_pack/textures/blocks/exposed_chiseled_copper.png differ diff --git a/resource_pack/textures/blocks/exposed_copper_bulb.png b/resource_pack/textures/blocks/exposed_copper_bulb.png new file mode 100644 index 000000000..fc8ce1dca Binary files /dev/null and b/resource_pack/textures/blocks/exposed_copper_bulb.png differ diff --git a/resource_pack/textures/blocks/exposed_copper_bulb_lit.png b/resource_pack/textures/blocks/exposed_copper_bulb_lit.png new file mode 100644 index 000000000..69dd07852 Binary files /dev/null and b/resource_pack/textures/blocks/exposed_copper_bulb_lit.png differ diff --git a/resource_pack/textures/blocks/exposed_copper_bulb_lit_powered.png b/resource_pack/textures/blocks/exposed_copper_bulb_lit_powered.png new file mode 100644 index 000000000..9697e3b6c Binary files /dev/null and b/resource_pack/textures/blocks/exposed_copper_bulb_lit_powered.png differ diff --git a/resource_pack/textures/blocks/exposed_copper_bulb_powered.png b/resource_pack/textures/blocks/exposed_copper_bulb_powered.png new file mode 100644 index 000000000..577a52e70 Binary files /dev/null and b/resource_pack/textures/blocks/exposed_copper_bulb_powered.png differ diff --git a/resource_pack/textures/blocks/exposed_copper_door_bottom.png b/resource_pack/textures/blocks/exposed_copper_door_bottom.png new file mode 100644 index 000000000..29eb68c27 Binary files /dev/null and b/resource_pack/textures/blocks/exposed_copper_door_bottom.png differ diff --git a/resource_pack/textures/blocks/exposed_copper_door_top.png b/resource_pack/textures/blocks/exposed_copper_door_top.png new file mode 100644 index 000000000..66aea138f Binary files /dev/null and b/resource_pack/textures/blocks/exposed_copper_door_top.png differ diff --git a/resource_pack/textures/blocks/exposed_copper_grate.png b/resource_pack/textures/blocks/exposed_copper_grate.png new file mode 100644 index 000000000..24c12ec9b Binary files /dev/null and b/resource_pack/textures/blocks/exposed_copper_grate.png differ diff --git a/resource_pack/textures/blocks/exposed_copper_trapdoor.png b/resource_pack/textures/blocks/exposed_copper_trapdoor.png new file mode 100644 index 000000000..64a8919ea Binary files /dev/null and b/resource_pack/textures/blocks/exposed_copper_trapdoor.png differ diff --git a/resource_pack/textures/blocks/flow_pottery_pattern.png b/resource_pack/textures/blocks/flow_pottery_pattern.png new file mode 100644 index 000000000..77216d24b Binary files /dev/null and b/resource_pack/textures/blocks/flow_pottery_pattern.png differ diff --git a/resource_pack/textures/blocks/guster_pottery_pattern.png b/resource_pack/textures/blocks/guster_pottery_pattern.png new file mode 100644 index 000000000..7969d4aba Binary files /dev/null and b/resource_pack/textures/blocks/guster_pottery_pattern.png differ diff --git a/resource_pack/textures/blocks/heavy_core.png b/resource_pack/textures/blocks/heavy_core.png new file mode 100644 index 000000000..cd8c7b99a Binary files /dev/null and b/resource_pack/textures/blocks/heavy_core.png differ diff --git a/resource_pack/textures/blocks/oxidized_chiseled_copper.png b/resource_pack/textures/blocks/oxidized_chiseled_copper.png new file mode 100644 index 000000000..bb8b9025d Binary files /dev/null and b/resource_pack/textures/blocks/oxidized_chiseled_copper.png differ diff --git a/resource_pack/textures/blocks/oxidized_copper_bulb.png b/resource_pack/textures/blocks/oxidized_copper_bulb.png new file mode 100644 index 000000000..2279b3b44 Binary files /dev/null and b/resource_pack/textures/blocks/oxidized_copper_bulb.png differ diff --git a/resource_pack/textures/blocks/oxidized_copper_bulb_lit.png b/resource_pack/textures/blocks/oxidized_copper_bulb_lit.png new file mode 100644 index 000000000..56badba25 Binary files /dev/null and b/resource_pack/textures/blocks/oxidized_copper_bulb_lit.png differ diff --git a/resource_pack/textures/blocks/oxidized_copper_bulb_lit_powered.png b/resource_pack/textures/blocks/oxidized_copper_bulb_lit_powered.png new file mode 100644 index 000000000..739abcfaa Binary files /dev/null and b/resource_pack/textures/blocks/oxidized_copper_bulb_lit_powered.png differ diff --git a/resource_pack/textures/blocks/oxidized_copper_bulb_powered.png b/resource_pack/textures/blocks/oxidized_copper_bulb_powered.png new file mode 100644 index 000000000..02fe39374 Binary files /dev/null and b/resource_pack/textures/blocks/oxidized_copper_bulb_powered.png differ diff --git a/resource_pack/textures/blocks/oxidized_copper_door_bottom.png b/resource_pack/textures/blocks/oxidized_copper_door_bottom.png new file mode 100644 index 000000000..b68daeea1 Binary files /dev/null and b/resource_pack/textures/blocks/oxidized_copper_door_bottom.png differ diff --git a/resource_pack/textures/blocks/oxidized_copper_door_top.png b/resource_pack/textures/blocks/oxidized_copper_door_top.png new file mode 100644 index 000000000..e83f50e36 Binary files /dev/null and b/resource_pack/textures/blocks/oxidized_copper_door_top.png differ diff --git a/resource_pack/textures/blocks/oxidized_copper_grate.png b/resource_pack/textures/blocks/oxidized_copper_grate.png new file mode 100644 index 000000000..1cb5779c7 Binary files /dev/null and b/resource_pack/textures/blocks/oxidized_copper_grate.png differ diff --git a/resource_pack/textures/blocks/oxidized_copper_trapdoor.png b/resource_pack/textures/blocks/oxidized_copper_trapdoor.png new file mode 100644 index 000000000..23f8659b0 Binary files /dev/null and b/resource_pack/textures/blocks/oxidized_copper_trapdoor.png differ diff --git a/resource_pack/textures/blocks/polished_tuff.png b/resource_pack/textures/blocks/polished_tuff.png new file mode 100644 index 000000000..1c59a222b Binary files /dev/null and b/resource_pack/textures/blocks/polished_tuff.png differ diff --git a/resource_pack/textures/blocks/scrape_pottery_pattern.png b/resource_pack/textures/blocks/scrape_pottery_pattern.png new file mode 100644 index 000000000..19db50e58 Binary files /dev/null and b/resource_pack/textures/blocks/scrape_pottery_pattern.png differ diff --git a/resource_pack/textures/blocks/trial_spawner_bottom.png b/resource_pack/textures/blocks/trial_spawner_bottom.png new file mode 100644 index 000000000..b7dbcbc58 Binary files /dev/null and b/resource_pack/textures/blocks/trial_spawner_bottom.png differ diff --git a/resource_pack/textures/blocks/trial_spawner_side.png b/resource_pack/textures/blocks/trial_spawner_side.png new file mode 100644 index 000000000..115a9b71b Binary files /dev/null and b/resource_pack/textures/blocks/trial_spawner_side.png differ diff --git a/resource_pack/textures/blocks/trial_spawner_side_active.png b/resource_pack/textures/blocks/trial_spawner_side_active.png new file mode 100644 index 000000000..c35c310a5 Binary files /dev/null and b/resource_pack/textures/blocks/trial_spawner_side_active.png differ diff --git a/resource_pack/textures/blocks/trial_spawner_side_active_ominous.png b/resource_pack/textures/blocks/trial_spawner_side_active_ominous.png new file mode 100644 index 000000000..7d6a8df6b Binary files /dev/null and b/resource_pack/textures/blocks/trial_spawner_side_active_ominous.png differ diff --git a/resource_pack/textures/blocks/trial_spawner_side_inactive.png b/resource_pack/textures/blocks/trial_spawner_side_inactive.png new file mode 100644 index 000000000..13506104a Binary files /dev/null and b/resource_pack/textures/blocks/trial_spawner_side_inactive.png differ diff --git a/resource_pack/textures/blocks/trial_spawner_side_inactive_ominous.png b/resource_pack/textures/blocks/trial_spawner_side_inactive_ominous.png new file mode 100644 index 000000000..7d29b2240 Binary files /dev/null and b/resource_pack/textures/blocks/trial_spawner_side_inactive_ominous.png differ diff --git a/resource_pack/textures/blocks/trial_spawner_top.png b/resource_pack/textures/blocks/trial_spawner_top.png new file mode 100644 index 000000000..405ec2c7b Binary files /dev/null and b/resource_pack/textures/blocks/trial_spawner_top.png differ diff --git a/resource_pack/textures/blocks/trial_spawner_top_active.png b/resource_pack/textures/blocks/trial_spawner_top_active.png new file mode 100644 index 000000000..3612c3c2d Binary files /dev/null and b/resource_pack/textures/blocks/trial_spawner_top_active.png differ diff --git a/resource_pack/textures/blocks/trial_spawner_top_active_ominous.png b/resource_pack/textures/blocks/trial_spawner_top_active_ominous.png new file mode 100644 index 000000000..a24574745 Binary files /dev/null and b/resource_pack/textures/blocks/trial_spawner_top_active_ominous.png differ diff --git a/resource_pack/textures/blocks/trial_spawner_top_ejecting_reward.png b/resource_pack/textures/blocks/trial_spawner_top_ejecting_reward.png new file mode 100644 index 000000000..a60ea539f Binary files /dev/null and b/resource_pack/textures/blocks/trial_spawner_top_ejecting_reward.png differ diff --git a/resource_pack/textures/blocks/trial_spawner_top_ejecting_reward_ominous.png b/resource_pack/textures/blocks/trial_spawner_top_ejecting_reward_ominous.png new file mode 100644 index 000000000..e27b13074 Binary files /dev/null and b/resource_pack/textures/blocks/trial_spawner_top_ejecting_reward_ominous.png differ diff --git a/resource_pack/textures/blocks/trial_spawner_top_inactive.png b/resource_pack/textures/blocks/trial_spawner_top_inactive.png new file mode 100644 index 000000000..914dd8d6f Binary files /dev/null and b/resource_pack/textures/blocks/trial_spawner_top_inactive.png differ diff --git a/resource_pack/textures/blocks/trial_spawner_top_inactive_ominous.png b/resource_pack/textures/blocks/trial_spawner_top_inactive_ominous.png new file mode 100644 index 000000000..57b853618 Binary files /dev/null and b/resource_pack/textures/blocks/trial_spawner_top_inactive_ominous.png differ diff --git a/resource_pack/textures/blocks/trial_spawner_top_open.png b/resource_pack/textures/blocks/trial_spawner_top_open.png new file mode 100644 index 000000000..779df117a Binary files /dev/null and b/resource_pack/textures/blocks/trial_spawner_top_open.png differ diff --git a/resource_pack/textures/blocks/tuff_bricks.png b/resource_pack/textures/blocks/tuff_bricks.png new file mode 100644 index 000000000..eeac41258 Binary files /dev/null and b/resource_pack/textures/blocks/tuff_bricks.png differ diff --git a/resource_pack/textures/blocks/vault_bottom.png b/resource_pack/textures/blocks/vault_bottom.png new file mode 100644 index 000000000..7aaa6bacb Binary files /dev/null and b/resource_pack/textures/blocks/vault_bottom.png differ diff --git a/resource_pack/textures/blocks/vault_bottom_ominous.png b/resource_pack/textures/blocks/vault_bottom_ominous.png new file mode 100644 index 000000000..ba1f8adf1 Binary files /dev/null and b/resource_pack/textures/blocks/vault_bottom_ominous.png differ diff --git a/resource_pack/textures/blocks/vault_front_ejecting.png b/resource_pack/textures/blocks/vault_front_ejecting.png new file mode 100644 index 000000000..a3cfbf3b6 Binary files /dev/null and b/resource_pack/textures/blocks/vault_front_ejecting.png differ diff --git a/resource_pack/textures/blocks/vault_front_ejecting_ominous.png b/resource_pack/textures/blocks/vault_front_ejecting_ominous.png new file mode 100644 index 000000000..73dd68fdb Binary files /dev/null and b/resource_pack/textures/blocks/vault_front_ejecting_ominous.png differ diff --git a/resource_pack/textures/blocks/vault_front_off.png b/resource_pack/textures/blocks/vault_front_off.png new file mode 100644 index 000000000..e4fcb2f8e Binary files /dev/null and b/resource_pack/textures/blocks/vault_front_off.png differ diff --git a/resource_pack/textures/blocks/vault_front_off_ominous.png b/resource_pack/textures/blocks/vault_front_off_ominous.png new file mode 100644 index 000000000..38a55e71d Binary files /dev/null and b/resource_pack/textures/blocks/vault_front_off_ominous.png differ diff --git a/resource_pack/textures/blocks/vault_front_on.png b/resource_pack/textures/blocks/vault_front_on.png new file mode 100644 index 000000000..6af555385 Binary files /dev/null and b/resource_pack/textures/blocks/vault_front_on.png differ diff --git a/resource_pack/textures/blocks/vault_front_on_ominous.png b/resource_pack/textures/blocks/vault_front_on_ominous.png new file mode 100644 index 000000000..2c12d0050 Binary files /dev/null and b/resource_pack/textures/blocks/vault_front_on_ominous.png differ diff --git a/resource_pack/textures/blocks/vault_side_off.png b/resource_pack/textures/blocks/vault_side_off.png new file mode 100644 index 000000000..00b985d14 Binary files /dev/null and b/resource_pack/textures/blocks/vault_side_off.png differ diff --git a/resource_pack/textures/blocks/vault_side_off_ominous.png b/resource_pack/textures/blocks/vault_side_off_ominous.png new file mode 100644 index 000000000..00b985d14 Binary files /dev/null and b/resource_pack/textures/blocks/vault_side_off_ominous.png differ diff --git a/resource_pack/textures/blocks/vault_side_on.png b/resource_pack/textures/blocks/vault_side_on.png new file mode 100644 index 000000000..d819d0d89 Binary files /dev/null and b/resource_pack/textures/blocks/vault_side_on.png differ diff --git a/resource_pack/textures/blocks/vault_side_on_ominous.png b/resource_pack/textures/blocks/vault_side_on_ominous.png new file mode 100644 index 000000000..188a63835 Binary files /dev/null and b/resource_pack/textures/blocks/vault_side_on_ominous.png differ diff --git a/resource_pack/textures/blocks/vault_top.png b/resource_pack/textures/blocks/vault_top.png new file mode 100644 index 000000000..a340af474 Binary files /dev/null and b/resource_pack/textures/blocks/vault_top.png differ diff --git a/resource_pack/textures/blocks/vault_top_ejecting.png b/resource_pack/textures/blocks/vault_top_ejecting.png new file mode 100644 index 000000000..48fed9a82 Binary files /dev/null and b/resource_pack/textures/blocks/vault_top_ejecting.png differ diff --git a/resource_pack/textures/blocks/vault_top_ejecting_ominous.png b/resource_pack/textures/blocks/vault_top_ejecting_ominous.png new file mode 100644 index 000000000..9455e91aa Binary files /dev/null and b/resource_pack/textures/blocks/vault_top_ejecting_ominous.png differ diff --git a/resource_pack/textures/blocks/vault_top_ominous.png b/resource_pack/textures/blocks/vault_top_ominous.png new file mode 100644 index 000000000..d70024fc7 Binary files /dev/null and b/resource_pack/textures/blocks/vault_top_ominous.png differ diff --git a/resource_pack/textures/blocks/weathered_chiseled_copper.png b/resource_pack/textures/blocks/weathered_chiseled_copper.png new file mode 100644 index 000000000..e072ee2a2 Binary files /dev/null and b/resource_pack/textures/blocks/weathered_chiseled_copper.png differ diff --git a/resource_pack/textures/blocks/weathered_copper_bulb.png b/resource_pack/textures/blocks/weathered_copper_bulb.png new file mode 100644 index 000000000..6312797d2 Binary files /dev/null and b/resource_pack/textures/blocks/weathered_copper_bulb.png differ diff --git a/resource_pack/textures/blocks/weathered_copper_bulb_lit.png b/resource_pack/textures/blocks/weathered_copper_bulb_lit.png new file mode 100644 index 000000000..c702dd00f Binary files /dev/null and b/resource_pack/textures/blocks/weathered_copper_bulb_lit.png differ diff --git a/resource_pack/textures/blocks/weathered_copper_bulb_lit_powered.png b/resource_pack/textures/blocks/weathered_copper_bulb_lit_powered.png new file mode 100644 index 000000000..563588e58 Binary files /dev/null and b/resource_pack/textures/blocks/weathered_copper_bulb_lit_powered.png differ diff --git a/resource_pack/textures/blocks/weathered_copper_bulb_powered.png b/resource_pack/textures/blocks/weathered_copper_bulb_powered.png new file mode 100644 index 000000000..767bfaa72 Binary files /dev/null and b/resource_pack/textures/blocks/weathered_copper_bulb_powered.png differ diff --git a/resource_pack/textures/blocks/weathered_copper_door_bottom.png b/resource_pack/textures/blocks/weathered_copper_door_bottom.png new file mode 100644 index 000000000..9049b6dd3 Binary files /dev/null and b/resource_pack/textures/blocks/weathered_copper_door_bottom.png differ diff --git a/resource_pack/textures/blocks/weathered_copper_door_top.png b/resource_pack/textures/blocks/weathered_copper_door_top.png new file mode 100644 index 000000000..fccb77ee3 Binary files /dev/null and b/resource_pack/textures/blocks/weathered_copper_door_top.png differ diff --git a/resource_pack/textures/blocks/weathered_copper_grate.png b/resource_pack/textures/blocks/weathered_copper_grate.png new file mode 100644 index 000000000..209521310 Binary files /dev/null and b/resource_pack/textures/blocks/weathered_copper_grate.png differ diff --git a/resource_pack/textures/blocks/weathered_copper_trapdoor.png b/resource_pack/textures/blocks/weathered_copper_trapdoor.png new file mode 100644 index 000000000..ee93825cd Binary files /dev/null and b/resource_pack/textures/blocks/weathered_copper_trapdoor.png differ diff --git a/resource_pack/textures/entity/banner/banner_flow.png b/resource_pack/textures/entity/banner/banner_flow.png new file mode 100644 index 000000000..cf0eff65a Binary files /dev/null and b/resource_pack/textures/entity/banner/banner_flow.png differ diff --git a/resource_pack/textures/entity/banner/banner_guster.png b/resource_pack/textures/entity/banner/banner_guster.png new file mode 100644 index 000000000..b8c14a2f5 Binary files /dev/null and b/resource_pack/textures/entity/banner/banner_guster.png differ diff --git a/resource_pack/textures/entity/breeze/breeze.png b/resource_pack/textures/entity/breeze/breeze.png new file mode 100644 index 000000000..41fca5b2b Binary files /dev/null and b/resource_pack/textures/entity/breeze/breeze.png differ diff --git a/resource_pack/textures/entity/breeze/breeze_eyes.png b/resource_pack/textures/entity/breeze/breeze_eyes.png new file mode 100644 index 000000000..bd04d30b6 Binary files /dev/null and b/resource_pack/textures/entity/breeze/breeze_eyes.png differ diff --git a/resource_pack/textures/entity/breeze/breeze_wind.png b/resource_pack/textures/entity/breeze/breeze_wind.png new file mode 100644 index 000000000..cf68f82d4 Binary files /dev/null and b/resource_pack/textures/entity/breeze/breeze_wind.png differ diff --git a/resource_pack/textures/entity/shield_patterns/flow.png b/resource_pack/textures/entity/shield_patterns/flow.png new file mode 100644 index 000000000..f369cd501 Binary files /dev/null and b/resource_pack/textures/entity/shield_patterns/flow.png differ diff --git a/resource_pack/textures/entity/shield_patterns/guster.png b/resource_pack/textures/entity/shield_patterns/guster.png new file mode 100644 index 000000000..465734a39 Binary files /dev/null and b/resource_pack/textures/entity/shield_patterns/guster.png differ diff --git a/resource_pack/textures/entity/skeleton/bogged.png b/resource_pack/textures/entity/skeleton/bogged.png new file mode 100644 index 000000000..2f3de85b1 Binary files /dev/null and b/resource_pack/textures/entity/skeleton/bogged.png differ diff --git a/resource_pack/textures/entity/skeleton/bogged_clothes.png b/resource_pack/textures/entity/skeleton/bogged_clothes.png new file mode 100644 index 000000000..28362d185 Binary files /dev/null and b/resource_pack/textures/entity/skeleton/bogged_clothes.png differ diff --git a/resource_pack/textures/entity/wind_charge.png b/resource_pack/textures/entity/wind_charge.png new file mode 100644 index 000000000..8f90cdd91 Binary files /dev/null and b/resource_pack/textures/entity/wind_charge.png differ diff --git a/resource_pack/textures/item_texture.json b/resource_pack/textures/item_texture.json index 85d07336e..6fdf11f8d 100644 --- a/resource_pack/textures/item_texture.json +++ b/resource_pack/textures/item_texture.json @@ -448,7 +448,8 @@ "textures/items/map_filled", "textures/items/map_filled", "textures/items/map_filled", - "textures/items/map_filled" + "textures/items/map_filled", + "textures/items/map_trial_chambers" ] }, "melon": { @@ -561,7 +562,11 @@ "textures/items/potion_bottle_saturation", "textures/items/potion_bottle_levitation", "textures/items/potion_bottle_turtleMaster", - "textures/items/potion_bottle_slowFall" + "textures/items/potion_bottle_slowFall", + "textures/items/potion_bottle_windCharged", + "textures/items/potion_bottle_weaving", + "textures/items/potion_bottle_oozing", + "textures/items/potion_bottle_infested" ] }, "potion_bottle_empty": { @@ -585,7 +590,11 @@ "textures/items/potion_bottle_lingering_poison", "textures/items/potion_bottle_lingering_wither", "textures/items/potion_bottle_lingering_turtleMaster", - "textures/items/potion_bottle_lingering_slowFall" + "textures/items/potion_bottle_lingering_slowFall", + "textures/items/potion_bottle_lingering_windCharged", + "textures/items/potion_bottle_lingering_weaving", + "textures/items/potion_bottle_lingering_oozing", + "textures/items/potion_bottle_lingering_infested" ] }, "potion_bottle_splash": { @@ -615,7 +624,11 @@ "textures/items/potion_bottle_splash_absorption", "textures/items/potion_bottle_splash_saturation", "textures/items/potion_bottle_splash_turtleMaster", - "textures/items/potion_bottle_splash_slowFall" + "textures/items/potion_bottle_splash_slowFall", + "textures/items/potion_bottle_splash_windCharged", + "textures/items/potion_bottle_splash_weaving", + "textures/items/potion_bottle_splash_oozing", + "textures/items/potion_bottle_splash_infested" ] }, "potion_overlay": { @@ -889,7 +902,11 @@ "textures/items/tipped_arrow_poison", "textures/items/tipped_arrow_wither", "textures/items/tipped_arrow_turtlemaster", - "textures/items/tipped_arrow_slowfalling" + "textures/items/tipped_arrow_slowfalling", + "textures/items/tipped_arrow_windCharged", + "textures/items/tipped_arrow_weaving", + "textures/items/tipped_arrow_oozing", + "textures/items/tipped_arrow_infested" ] }, "shulker_shell": { @@ -1210,6 +1227,66 @@ "textures/items/wolf_armor", "textures/items/wolf_armor_dyed" ] + }, + "copper_door": { + "textures": "textures/items/copper_door" + }, + "exposed_copper_door": { + "textures": "textures/items/exposed_copper_door" + }, + "weathered_copper_door": { + "textures": "textures/items/weathered_copper_door" + }, + "oxidized_copper_door": { + "textures": "textures/items/oxidized_copper_door" + }, + "trial_key": { + "textures": "textures/items/trial_key" + }, + "ominous_trial_key": { + "textures": "textures/items/ominous_trial_key" + }, + "wind_charge": { + "textures": "textures/items/wind_charge" + }, + "guster_pottery_sherd": { + "textures": "textures/items/guster_pottery_sherd" + }, + "ominous_bottle": { + "textures": "textures/items/ominous_bottle" + }, + "flow_pottery_sherd": { + "textures": "textures/items/flow_pottery_sherd" + }, + "scrape_pottery_sherd": { + "textures": "textures/items/scrape_pottery_sherd" + }, + "flow_banner_pattern": { + "textures": "textures/items/flow_banner_pattern" + }, + "guster_banner_pattern": { + "textures": "textures/items/guster_banner_pattern" + }, + "breeze_rod": { + "textures": "textures/items/breeze_rod" + }, + "mace": { + "textures": "textures/items/mace" + }, + "flow_armor_trim_smithing_template": { + "textures": "textures/items/flow_armor_trim_smithing_template" + }, + "bolt_armor_trim_smithing_template": { + "textures": "textures/items/bolt_armor_trim_smithing_template" + }, + "record_creator": { + "textures": "textures/items/music_disc_creator" + }, + "record_creator_music_box": { + "textures": "textures/items/music_disc_creator_music_box" + }, + "record_precipice": { + "textures": "textures/items/music_disc_precipice" } } } \ No newline at end of file diff --git a/resource_pack/textures/items/bolt_armor_trim_smithing_template.png b/resource_pack/textures/items/bolt_armor_trim_smithing_template.png new file mode 100644 index 000000000..081c9c011 Binary files /dev/null and b/resource_pack/textures/items/bolt_armor_trim_smithing_template.png differ diff --git a/resource_pack/textures/items/breeze_rod.png b/resource_pack/textures/items/breeze_rod.png new file mode 100644 index 000000000..d3aa0362a Binary files /dev/null and b/resource_pack/textures/items/breeze_rod.png differ diff --git a/resource_pack/textures/items/copper_door.png b/resource_pack/textures/items/copper_door.png new file mode 100644 index 000000000..46fef776a Binary files /dev/null and b/resource_pack/textures/items/copper_door.png differ diff --git a/resource_pack/textures/items/exposed_copper_door.png b/resource_pack/textures/items/exposed_copper_door.png new file mode 100644 index 000000000..61cca8a08 Binary files /dev/null and b/resource_pack/textures/items/exposed_copper_door.png differ diff --git a/resource_pack/textures/items/flow_armor_trim_smithing_template.png b/resource_pack/textures/items/flow_armor_trim_smithing_template.png new file mode 100644 index 000000000..6c42e8cd5 Binary files /dev/null and b/resource_pack/textures/items/flow_armor_trim_smithing_template.png differ diff --git a/resource_pack/textures/items/flow_banner_pattern.png b/resource_pack/textures/items/flow_banner_pattern.png new file mode 100644 index 000000000..6f29d2a23 Binary files /dev/null and b/resource_pack/textures/items/flow_banner_pattern.png differ diff --git a/resource_pack/textures/items/flow_pottery_sherd.png b/resource_pack/textures/items/flow_pottery_sherd.png new file mode 100644 index 000000000..aae9143e0 Binary files /dev/null and b/resource_pack/textures/items/flow_pottery_sherd.png differ diff --git a/resource_pack/textures/items/guster_banner_pattern.png b/resource_pack/textures/items/guster_banner_pattern.png new file mode 100644 index 000000000..6f29d2a23 Binary files /dev/null and b/resource_pack/textures/items/guster_banner_pattern.png differ diff --git a/resource_pack/textures/items/guster_pottery_sherd.png b/resource_pack/textures/items/guster_pottery_sherd.png new file mode 100644 index 000000000..88b6be201 Binary files /dev/null and b/resource_pack/textures/items/guster_pottery_sherd.png differ diff --git a/resource_pack/textures/items/mace.png b/resource_pack/textures/items/mace.png new file mode 100644 index 000000000..c75899672 Binary files /dev/null and b/resource_pack/textures/items/mace.png differ diff --git a/resource_pack/textures/items/map_trial_chambers.png b/resource_pack/textures/items/map_trial_chambers.png new file mode 100644 index 000000000..3db251fb8 Binary files /dev/null and b/resource_pack/textures/items/map_trial_chambers.png differ diff --git a/resource_pack/textures/items/music_disc_creator.png b/resource_pack/textures/items/music_disc_creator.png new file mode 100644 index 000000000..9a9a73097 Binary files /dev/null and b/resource_pack/textures/items/music_disc_creator.png differ diff --git a/resource_pack/textures/items/music_disc_creator_music_box.png b/resource_pack/textures/items/music_disc_creator_music_box.png new file mode 100644 index 000000000..e8c09ad1d Binary files /dev/null and b/resource_pack/textures/items/music_disc_creator_music_box.png differ diff --git a/resource_pack/textures/items/music_disc_precipice.png b/resource_pack/textures/items/music_disc_precipice.png new file mode 100644 index 000000000..95a0dfd7f Binary files /dev/null and b/resource_pack/textures/items/music_disc_precipice.png differ diff --git a/resource_pack/textures/items/ominous_bottle.png b/resource_pack/textures/items/ominous_bottle.png new file mode 100644 index 000000000..8acb4a60f Binary files /dev/null and b/resource_pack/textures/items/ominous_bottle.png differ diff --git a/resource_pack/textures/items/ominous_trial_key.png b/resource_pack/textures/items/ominous_trial_key.png new file mode 100644 index 000000000..78eaba008 Binary files /dev/null and b/resource_pack/textures/items/ominous_trial_key.png differ diff --git a/resource_pack/textures/items/oxidized_copper_door.png b/resource_pack/textures/items/oxidized_copper_door.png new file mode 100644 index 000000000..d9e820bec Binary files /dev/null and b/resource_pack/textures/items/oxidized_copper_door.png differ diff --git a/resource_pack/textures/items/potion_bottle_infested.png b/resource_pack/textures/items/potion_bottle_infested.png new file mode 100644 index 000000000..6c18596a9 Binary files /dev/null and b/resource_pack/textures/items/potion_bottle_infested.png differ diff --git a/resource_pack/textures/items/potion_bottle_lingering_infested.png b/resource_pack/textures/items/potion_bottle_lingering_infested.png new file mode 100644 index 000000000..5d9a4ad10 Binary files /dev/null and b/resource_pack/textures/items/potion_bottle_lingering_infested.png differ diff --git a/resource_pack/textures/items/potion_bottle_lingering_oozing.png b/resource_pack/textures/items/potion_bottle_lingering_oozing.png new file mode 100644 index 000000000..f10acd3ad Binary files /dev/null and b/resource_pack/textures/items/potion_bottle_lingering_oozing.png differ diff --git a/resource_pack/textures/items/potion_bottle_lingering_weaving.png b/resource_pack/textures/items/potion_bottle_lingering_weaving.png new file mode 100644 index 000000000..12e5d2319 Binary files /dev/null and b/resource_pack/textures/items/potion_bottle_lingering_weaving.png differ diff --git a/resource_pack/textures/items/potion_bottle_lingering_windCharged.png b/resource_pack/textures/items/potion_bottle_lingering_windCharged.png new file mode 100644 index 000000000..91133fe34 Binary files /dev/null and b/resource_pack/textures/items/potion_bottle_lingering_windCharged.png differ diff --git a/resource_pack/textures/items/potion_bottle_oozing.png b/resource_pack/textures/items/potion_bottle_oozing.png new file mode 100644 index 000000000..f094f8df4 Binary files /dev/null and b/resource_pack/textures/items/potion_bottle_oozing.png differ diff --git a/resource_pack/textures/items/potion_bottle_splash_infested.png b/resource_pack/textures/items/potion_bottle_splash_infested.png new file mode 100644 index 000000000..276ac0d04 Binary files /dev/null and b/resource_pack/textures/items/potion_bottle_splash_infested.png differ diff --git a/resource_pack/textures/items/potion_bottle_splash_oozing.png b/resource_pack/textures/items/potion_bottle_splash_oozing.png new file mode 100644 index 000000000..2b06438da Binary files /dev/null and b/resource_pack/textures/items/potion_bottle_splash_oozing.png differ diff --git a/resource_pack/textures/items/potion_bottle_splash_weaving.png b/resource_pack/textures/items/potion_bottle_splash_weaving.png new file mode 100644 index 000000000..9ed8cff02 Binary files /dev/null and b/resource_pack/textures/items/potion_bottle_splash_weaving.png differ diff --git a/resource_pack/textures/items/potion_bottle_splash_windCharged.png b/resource_pack/textures/items/potion_bottle_splash_windCharged.png new file mode 100644 index 000000000..64a3fdf29 Binary files /dev/null and b/resource_pack/textures/items/potion_bottle_splash_windCharged.png differ diff --git a/resource_pack/textures/items/potion_bottle_weaving.png b/resource_pack/textures/items/potion_bottle_weaving.png new file mode 100644 index 000000000..3dc1b8a69 Binary files /dev/null and b/resource_pack/textures/items/potion_bottle_weaving.png differ diff --git a/resource_pack/textures/items/potion_bottle_windCharged.png b/resource_pack/textures/items/potion_bottle_windCharged.png new file mode 100644 index 000000000..8d4140c05 Binary files /dev/null and b/resource_pack/textures/items/potion_bottle_windCharged.png differ diff --git a/resource_pack/textures/items/scrape_pottery_sherd.png b/resource_pack/textures/items/scrape_pottery_sherd.png new file mode 100644 index 000000000..4282d605e Binary files /dev/null and b/resource_pack/textures/items/scrape_pottery_sherd.png differ diff --git a/resource_pack/textures/items/tipped_arrow_infested.png b/resource_pack/textures/items/tipped_arrow_infested.png new file mode 100644 index 000000000..20bfa6eca Binary files /dev/null and b/resource_pack/textures/items/tipped_arrow_infested.png differ diff --git a/resource_pack/textures/items/tipped_arrow_oozing.png b/resource_pack/textures/items/tipped_arrow_oozing.png new file mode 100644 index 000000000..695ea68a9 Binary files /dev/null and b/resource_pack/textures/items/tipped_arrow_oozing.png differ diff --git a/resource_pack/textures/items/tipped_arrow_weaving.png b/resource_pack/textures/items/tipped_arrow_weaving.png new file mode 100644 index 000000000..9e0f130d1 Binary files /dev/null and b/resource_pack/textures/items/tipped_arrow_weaving.png differ diff --git a/resource_pack/textures/items/tipped_arrow_windCharged.png b/resource_pack/textures/items/tipped_arrow_windCharged.png new file mode 100644 index 000000000..0fbdc64a2 Binary files /dev/null and b/resource_pack/textures/items/tipped_arrow_windCharged.png differ diff --git a/resource_pack/textures/items/trial_key.png b/resource_pack/textures/items/trial_key.png new file mode 100644 index 000000000..ed2ac42a1 Binary files /dev/null and b/resource_pack/textures/items/trial_key.png differ diff --git a/resource_pack/textures/items/weathered_copper_door.png b/resource_pack/textures/items/weathered_copper_door.png new file mode 100644 index 000000000..fbd73b81b Binary files /dev/null and b/resource_pack/textures/items/weathered_copper_door.png differ diff --git a/resource_pack/textures/items/wind_charge.png b/resource_pack/textures/items/wind_charge.png new file mode 100644 index 000000000..f249b76a4 Binary files /dev/null and b/resource_pack/textures/items/wind_charge.png differ diff --git a/resource_pack/textures/map/trial_chambers.png b/resource_pack/textures/map/trial_chambers.png new file mode 100644 index 000000000..0b52e677c Binary files /dev/null and b/resource_pack/textures/map/trial_chambers.png differ diff --git a/resource_pack/textures/painting/backyard.png b/resource_pack/textures/painting/backyard.png new file mode 100644 index 000000000..bd5a1e0a9 Binary files /dev/null and b/resource_pack/textures/painting/backyard.png differ diff --git a/resource_pack/textures/painting/baroque.png b/resource_pack/textures/painting/baroque.png new file mode 100644 index 000000000..7cc225fe3 Binary files /dev/null and b/resource_pack/textures/painting/baroque.png differ diff --git a/resource_pack/textures/painting/bouquet.png b/resource_pack/textures/painting/bouquet.png new file mode 100644 index 000000000..f0f5ee00a Binary files /dev/null and b/resource_pack/textures/painting/bouquet.png differ diff --git a/resource_pack/textures/painting/cavebird.png b/resource_pack/textures/painting/cavebird.png new file mode 100644 index 000000000..cdcdb0a52 Binary files /dev/null and b/resource_pack/textures/painting/cavebird.png differ diff --git a/resource_pack/textures/painting/changing.png b/resource_pack/textures/painting/changing.png new file mode 100644 index 000000000..997ae5a8e Binary files /dev/null and b/resource_pack/textures/painting/changing.png differ diff --git a/resource_pack/textures/painting/cotan.png b/resource_pack/textures/painting/cotan.png new file mode 100644 index 000000000..3bfd7ae1c Binary files /dev/null and b/resource_pack/textures/painting/cotan.png differ diff --git a/resource_pack/textures/painting/endboss.png b/resource_pack/textures/painting/endboss.png new file mode 100644 index 000000000..b15063865 Binary files /dev/null and b/resource_pack/textures/painting/endboss.png differ diff --git a/resource_pack/textures/painting/fern.png b/resource_pack/textures/painting/fern.png new file mode 100644 index 000000000..e8a23aa16 Binary files /dev/null and b/resource_pack/textures/painting/fern.png differ diff --git a/resource_pack/textures/painting/finding.png b/resource_pack/textures/painting/finding.png new file mode 100644 index 000000000..6b844f82e Binary files /dev/null and b/resource_pack/textures/painting/finding.png differ diff --git a/resource_pack/textures/painting/humble.png b/resource_pack/textures/painting/humble.png new file mode 100644 index 000000000..2f9afd6ce Binary files /dev/null and b/resource_pack/textures/painting/humble.png differ diff --git a/resource_pack/textures/painting/lowmist.png b/resource_pack/textures/painting/lowmist.png new file mode 100644 index 000000000..ceca1155d Binary files /dev/null and b/resource_pack/textures/painting/lowmist.png differ diff --git a/resource_pack/textures/painting/meditative.png b/resource_pack/textures/painting/meditative.png new file mode 100644 index 000000000..89d4e39ea Binary files /dev/null and b/resource_pack/textures/painting/meditative.png differ diff --git a/resource_pack/textures/painting/orb.png b/resource_pack/textures/painting/orb.png new file mode 100644 index 000000000..779114747 Binary files /dev/null and b/resource_pack/textures/painting/orb.png differ diff --git a/resource_pack/textures/painting/owlemons.png b/resource_pack/textures/painting/owlemons.png new file mode 100644 index 000000000..dec0317f3 Binary files /dev/null and b/resource_pack/textures/painting/owlemons.png differ diff --git a/resource_pack/textures/painting/passage.png b/resource_pack/textures/painting/passage.png new file mode 100644 index 000000000..c53827f6f Binary files /dev/null and b/resource_pack/textures/painting/passage.png differ diff --git a/resource_pack/textures/painting/pond.png b/resource_pack/textures/painting/pond.png new file mode 100644 index 000000000..e6ca7357c Binary files /dev/null and b/resource_pack/textures/painting/pond.png differ diff --git a/resource_pack/textures/painting/prairie_ride.png b/resource_pack/textures/painting/prairie_ride.png new file mode 100644 index 000000000..81d7b4996 Binary files /dev/null and b/resource_pack/textures/painting/prairie_ride.png differ diff --git a/resource_pack/textures/painting/sunflowers.png b/resource_pack/textures/painting/sunflowers.png new file mode 100644 index 000000000..fa527c938 Binary files /dev/null and b/resource_pack/textures/painting/sunflowers.png differ diff --git a/resource_pack/textures/painting/tides.png b/resource_pack/textures/painting/tides.png new file mode 100644 index 000000000..971378f14 Binary files /dev/null and b/resource_pack/textures/painting/tides.png differ diff --git a/resource_pack/textures/painting/unpacked.png b/resource_pack/textures/painting/unpacked.png new file mode 100644 index 000000000..e0169b254 Binary files /dev/null and b/resource_pack/textures/painting/unpacked.png differ diff --git a/resource_pack/textures/particle/gust.png b/resource_pack/textures/particle/gust.png new file mode 100644 index 000000000..6cc66e1ab Binary files /dev/null and b/resource_pack/textures/particle/gust.png differ diff --git a/resource_pack/textures/particle/infested.png b/resource_pack/textures/particle/infested.png new file mode 100644 index 000000000..63913e6e7 Binary files /dev/null and b/resource_pack/textures/particle/infested.png differ diff --git a/resource_pack/textures/particle/ominous_spawning.png b/resource_pack/textures/particle/ominous_spawning.png new file mode 100644 index 000000000..7fe6fb56c Binary files /dev/null and b/resource_pack/textures/particle/ominous_spawning.png differ diff --git a/resource_pack/textures/particle/raid_omen.png b/resource_pack/textures/particle/raid_omen.png new file mode 100644 index 000000000..62765d88b Binary files /dev/null and b/resource_pack/textures/particle/raid_omen.png differ diff --git a/resource_pack/textures/particle/small_gust.png b/resource_pack/textures/particle/small_gust.png new file mode 100644 index 000000000..c9f59abc5 Binary files /dev/null and b/resource_pack/textures/particle/small_gust.png differ diff --git a/resource_pack/textures/particle/trial_omen.png b/resource_pack/textures/particle/trial_omen.png new file mode 100644 index 000000000..f3a53e836 Binary files /dev/null and b/resource_pack/textures/particle/trial_omen.png differ diff --git a/resource_pack/textures/particle/vault_connection.png b/resource_pack/textures/particle/vault_connection.png new file mode 100644 index 000000000..06baca0cb Binary files /dev/null and b/resource_pack/textures/particle/vault_connection.png differ diff --git a/resource_pack/textures/particles/trial_spawner_atlas.png b/resource_pack/textures/particles/trial_spawner_atlas.png new file mode 100644 index 000000000..e570fb0bc Binary files /dev/null and b/resource_pack/textures/particles/trial_spawner_atlas.png differ diff --git a/resource_pack/textures/particles/trial_spawner_ominous_atlas.png b/resource_pack/textures/particles/trial_spawner_ominous_atlas.png new file mode 100644 index 000000000..7702bc79d Binary files /dev/null and b/resource_pack/textures/particles/trial_spawner_ominous_atlas.png differ diff --git a/resource_pack/textures/terrain_texture.json b/resource_pack/textures/terrain_texture.json index a1dd0fb36..567f1a7bd 100644 --- a/resource_pack/textures/terrain_texture.json +++ b/resource_pack/textures/terrain_texture.json @@ -569,10 +569,7 @@ ] }, "sunflower_additional": { - "textures": [ - "textures/blocks/double_plant_sunflower_front", - "textures/blocks/double_plant_sunflower_back" - ] + "textures": "textures/blocks/double_plant_sunflower_front" }, "sapling": { "textures": [ @@ -4321,6 +4318,395 @@ }, "lily_of_the_valley": { "textures": "textures/blocks/flower_lily_of_the_valley" + }, + "short_grass": { + "textures": "textures/blocks/tallgrass" + }, + "short_grass_carried": { + "textures": "textures/blocks/tallgrass_carried" + }, + "fern": { + "textures": "textures/blocks/fern" + }, + "fern_carried": { + "textures": "textures/blocks/fern_carried" + }, + "tube_coral_block": { + "textures": "textures/blocks/coral_blue" + }, + "brain_coral_block": { + "textures": "textures/blocks/coral_pink" + }, + "bubble_coral_block": { + "textures": "textures/blocks/coral_purple" + }, + "fire_coral_block": { + "textures": "textures/blocks/coral_red" + }, + "horn_coral_block": { + "textures": "textures/blocks/coral_yellow" + }, + "dead_tube_coral_block": { + "textures": "textures/blocks/coral_blue_dead" + }, + "dead_brain_coral_block": { + "textures": "textures/blocks/coral_pink_dead" + }, + "dead_bubble_coral_block": { + "textures": "textures/blocks/coral_purple_dead" + }, + "dead_fire_coral_block": { + "textures": "textures/blocks/coral_red_dead" + }, + "dead_horn_coral_block": { + "textures": "textures/blocks/coral_yellow_dead" + }, + "sunflower_top": { + "textures": "textures/blocks/double_plant_sunflower_top" + }, + "sunflower_bottom": { + "textures": "textures/blocks/double_plant_sunflower_bottom" + }, + "sunflower_carried": { + "textures": "textures/blocks/double_plant_sunflower_front" + }, + "lilac_top": { + "textures": "textures/blocks/double_plant_syringa_top" + }, + "lilac_bottom": { + "textures": "textures/blocks/double_plant_syringa_bottom" + }, + "lilac_carried": { + "textures": "textures/blocks/double_plant_syringa_top" + }, + "lilac_additional": { + "textures": "textures/blocks/double_plant_sunflower_back" + }, + "tall_grass_top": { + "textures": "textures/blocks/double_plant_grass_top" + }, + "tall_grass_bottom": { + "textures": "textures/blocks/double_plant_grass_bottom" + }, + "tall_grass_carried": { + "textures": "textures/blocks/double_plant_grass_carried" + }, + "large_fern_top": { + "textures": "textures/blocks/double_plant_fern_top" + }, + "large_fern_bottom": { + "textures": "textures/blocks/double_plant_fern_bottom" + }, + "large_fern_carried": { + "textures": "textures/blocks/double_plant_fern_carried" + }, + "rose_bush_top": { + "textures": "textures/blocks/double_plant_rose_top" + }, + "rose_bush_bottom": { + "textures": "textures/blocks/double_plant_rose_bottom" + }, + "rose_bush_carried": { + "textures": "textures/blocks/double_plant_rose_top" + }, + "peony_top": { + "textures": "textures/blocks/double_plant_paeonia_top" + }, + "peony_bottom": { + "textures": "textures/blocks/double_plant_paeonia_bottom" + }, + "peony_carried": { + "textures": "textures/blocks/double_plant_paeonia_top" + }, + "crafter_bottom": { + "textures": [ + "textures/blocks/crafter_bottom", + "textures/blocks/crafter_bottom", + "textures/blocks/crafter_bottom" + ] + }, + "crafter_top": { + "textures": [ + "textures/blocks/crafter_top", + "textures/blocks/crafter_top_triggered", + "textures/blocks/crafter_top_crafting" + ] + }, + "crafter_north": { + "textures": [ + "textures/blocks/crafter_north", + "textures/blocks/crafter_north", + "textures/blocks/crafter_north_crafting" + ] + }, + "crafter_south": { + "textures": [ + "textures/blocks/crafter_south", + "textures/blocks/crafter_south_triggered", + "textures/blocks/crafter_south_triggered" + ] + }, + "crafter_west": { + "textures": [ + "textures/blocks/crafter_west", + "textures/blocks/crafter_west_triggered", + "textures/blocks/crafter_west_crafting" + ] + }, + "crafter_east": { + "textures": [ + "textures/blocks/crafter_east", + "textures/blocks/crafter_east_triggered", + "textures/blocks/crafter_east_crafting" + ] + }, + "chiseled_copper": { + "textures": "textures/blocks/chiseled_copper" + }, + "exposed_chiseled_copper": { + "textures": "textures/blocks/exposed_chiseled_copper" + }, + "oxidized_chiseled_copper": { + "textures": "textures/blocks/oxidized_chiseled_copper" + }, + "weathered_chiseled_copper": { + "textures": "textures/blocks/weathered_chiseled_copper" + }, + "chiseled_tuff": { + "textures": "textures/blocks/chiseled_tuff" + }, + "chiseled_tuff_top": { + "textures": "textures/blocks/chiseled_tuff_top" + }, + "chiseled_tuff_bricks": { + "textures": "textures/blocks/chiseled_tuff_bricks" + }, + "chiseled_tuff_bricks_top": { + "textures": "textures/blocks/chiseled_tuff_bricks_top" + }, + "polished_tuff": { + "textures": "textures/blocks/polished_tuff" + }, + "tuff_bricks": { + "textures": "textures/blocks/tuff_bricks" + }, + "copper_grate": { + "textures": "textures/blocks/copper_grate" + }, + "exposed_copper_grate": { + "textures": "textures/blocks/exposed_copper_grate" + }, + "weathered_copper_grate": { + "textures": "textures/blocks/weathered_copper_grate" + }, + "oxidized_copper_grate": { + "textures": "textures/blocks/oxidized_copper_grate" + }, + "copper_bulb": { + "textures": [ + "textures/blocks/copper_bulb", + "textures/blocks/copper_bulb_lit", + "textures/blocks/copper_bulb_powered", + "textures/blocks/copper_bulb_lit_powered" + ] + }, + "exposed_copper_bulb": { + "textures": [ + "textures/blocks/exposed_copper_bulb", + "textures/blocks/exposed_copper_bulb_lit", + "textures/blocks/exposed_copper_bulb_powered", + "textures/blocks/exposed_copper_bulb_lit_powered" + ] + }, + "oxidized_copper_bulb": { + "textures": [ + "textures/blocks/oxidized_copper_bulb", + "textures/blocks/oxidized_copper_bulb_lit", + "textures/blocks/oxidized_copper_bulb_powered", + "textures/blocks/oxidized_copper_bulb_lit_powered" + ] + }, + "weathered_copper_bulb": { + "textures": [ + "textures/blocks/weathered_copper_bulb", + "textures/blocks/weathered_copper_bulb_lit", + "textures/blocks/weathered_copper_bulb_powered", + "textures/blocks/weathered_copper_bulb_lit_powered" + ] + }, + "copper_door_top": { + "textures": "textures/blocks/copper_door_top" + }, + "copper_door_bottom": { + "textures": "textures/blocks/copper_door_bottom" + }, + "exposed_copper_door_top": { + "textures": "textures/blocks/exposed_copper_door_top" + }, + "exposed_copper_door_bottom": { + "textures": "textures/blocks/exposed_copper_door_bottom" + }, + "weathered_copper_door_top": { + "textures": "textures/blocks/weathered_copper_door_top" + }, + "weathered_copper_door_bottom": { + "textures": "textures/blocks/weathered_copper_door_bottom" + }, + "oxidized_copper_door_top": { + "textures": "textures/blocks/oxidized_copper_door_top" + }, + "oxidized_copper_door_bottom": { + "textures": "textures/blocks/oxidized_copper_door_bottom" + }, + "copper_trapdoor": { + "textures": "textures/blocks/copper_trapdoor" + }, + "exposed_copper_trapdoor": { + "textures": "textures/blocks/exposed_copper_trapdoor" + }, + "weathered_copper_trapdoor": { + "textures": "textures/blocks/weathered_copper_trapdoor" + }, + "oxidized_copper_trapdoor": { + "textures": "textures/blocks/oxidized_copper_trapdoor" + }, + "trial_spawner_top": { + "textures": [ + "textures/blocks/trial_spawner_top_inactive", + "textures/blocks/trial_spawner_top_active", + "textures/blocks/trial_spawner_top_active", + "textures/blocks/trial_spawner_top_ejecting_reward", + "textures/blocks/trial_spawner_top_ejecting_reward", + "textures/blocks/trial_spawner_top_inactive", + "textures/blocks/trial_spawner_top_inactive_ominous", + "textures/blocks/trial_spawner_top_active_ominous", + "textures/blocks/trial_spawner_top_active_ominous", + "textures/blocks/trial_spawner_top_ejecting_reward_ominous", + "textures/blocks/trial_spawner_top_ejecting_reward_ominous", + "textures/blocks/trial_spawner_top_inactive_ominous" + ] + }, + "trial_spawner_bottom": { + "textures": [ + "textures/blocks/trial_spawner_bottom", + "textures/blocks/trial_spawner_bottom", + "textures/blocks/trial_spawner_bottom", + "textures/blocks/trial_spawner_bottom", + "textures/blocks/trial_spawner_bottom", + "textures/blocks/trial_spawner_bottom", + "textures/blocks/trial_spawner_bottom", + "textures/blocks/trial_spawner_bottom", + "textures/blocks/trial_spawner_bottom", + "textures/blocks/trial_spawner_bottom", + "textures/blocks/trial_spawner_bottom", + "textures/blocks/trial_spawner_bottom" + ] + }, + "trial_spawner_side": { + "textures": [ + "textures/blocks/trial_spawner_side_inactive", + "textures/blocks/trial_spawner_side_active", + "textures/blocks/trial_spawner_side_active", + "textures/blocks/trial_spawner_side_active", + "textures/blocks/trial_spawner_side_active", + "textures/blocks/trial_spawner_side_inactive", + "textures/blocks/trial_spawner_side_inactive_ominous", + "textures/blocks/trial_spawner_side_active_ominous", + "textures/blocks/trial_spawner_side_active_ominous", + "textures/blocks/trial_spawner_side_active_ominous", + "textures/blocks/trial_spawner_side_active_ominous", + "textures/blocks/trial_spawner_side_inactive_ominous" + ] + }, + "vault_top": { + "textures": [ + "textures/blocks/vault_top", + "textures/blocks/vault_top", + "textures/blocks/vault_top", + "textures/blocks/vault_top_ejecting", + "textures/blocks/vault_top_ominous", + "textures/blocks/vault_top_ominous", + "textures/blocks/vault_top_ominous", + "textures/blocks/vault_top_ejecting_ominous" + ] + }, + "vault_bottom": { + "textures": [ + "textures/blocks/vault_bottom", + "textures/blocks/vault_bottom", + "textures/blocks/vault_bottom", + "textures/blocks/vault_bottom", + "textures/blocks/vault_bottom_ominous", + "textures/blocks/vault_bottom_ominous", + "textures/blocks/vault_bottom_ominous", + "textures/blocks/vault_bottom_ominous" + ] + }, + "vault_side": { + "textures": [ + "textures/blocks/vault_side_off", + "textures/blocks/vault_side_on", + "textures/blocks/vault_side_on", + "textures/blocks/vault_side_on", + "textures/blocks/vault_side_off_ominous", + "textures/blocks/vault_side_on_ominous", + "textures/blocks/vault_side_on_ominous", + "textures/blocks/vault_side_on_ominous" + ] + }, + "vault_front": { + "textures": [ + "textures/blocks/vault_front_off", + "textures/blocks/vault_front_on", + "textures/blocks/vault_front_ejecting", + "textures/blocks/vault_front_ejecting", + "textures/blocks/vault_front_off_ominous", + "textures/blocks/vault_front_on_ominous", + "textures/blocks/vault_front_ejecting_ominous", + "textures/blocks/vault_front_ejecting_ominous" + ] + }, + "heavy_core": { + "textures": "textures/blocks/heavy_core" + }, + "smooth_stone_slab_top": { + "textures": "textures/blocks/stone_slab_top" + }, + "smooth_stone_slab_bottom": { + "textures": "textures/blocks/stone_slab_top" + }, + "smooth_stone_slab_side": { + "textures": "textures/blocks/stone_slab_side" + }, + "sandstone_slab_top": { + "textures": "textures/blocks/sandstone_top" + }, + "sandstone_slab_bottom": { + "textures": "textures/blocks/sandstone_bottom" + }, + "sandstone_slab_side": { + "textures": "textures/blocks/sandstone_normal" + }, + "cobblestone_slab": { + "textures": "textures/blocks/cobblestone" + }, + "brick_slab": { + "textures": "textures/blocks/brick" + }, + "stone_brick_slab": { + "textures": "textures/blocks/stonebrick" + }, + "quartz_slab_top": { + "textures": "textures/blocks/quartz_block_top" + }, + "quartz_slab_bottom": { + "textures": "textures/blocks/quartz_block_bottom" + }, + "quartz_slab_side": { + "textures": "textures/blocks/quartz_block_side" + }, + "nether_brick_slab": { + "textures": "textures/blocks/nether_brick" } } } \ No newline at end of file diff --git a/resource_pack/textures/trims/bolt.png b/resource_pack/textures/trims/bolt.png new file mode 100644 index 000000000..e2c09c457 Binary files /dev/null and b/resource_pack/textures/trims/bolt.png differ diff --git a/resource_pack/textures/trims/bolt_leggings.png b/resource_pack/textures/trims/bolt_leggings.png new file mode 100644 index 000000000..d5a48d75c Binary files /dev/null and b/resource_pack/textures/trims/bolt_leggings.png differ diff --git a/resource_pack/textures/trims/flow.png b/resource_pack/textures/trims/flow.png new file mode 100644 index 000000000..1a8424365 Binary files /dev/null and b/resource_pack/textures/trims/flow.png differ diff --git a/resource_pack/textures/trims/flow_leggings.png b/resource_pack/textures/trims/flow_leggings.png new file mode 100644 index 000000000..d393d9961 Binary files /dev/null and b/resource_pack/textures/trims/flow_leggings.png differ diff --git a/resource_pack/textures/ui/bad_omen_effect.png b/resource_pack/textures/ui/bad_omen_effect.png index 48d17f43a..a30b630f6 100644 Binary files a/resource_pack/textures/ui/bad_omen_effect.png and b/resource_pack/textures/ui/bad_omen_effect.png differ diff --git a/resource_pack/textures/ui/bubble_empty.png b/resource_pack/textures/ui/bubble_empty.png new file mode 100644 index 000000000..0b3b2aaac Binary files /dev/null and b/resource_pack/textures/ui/bubble_empty.png differ diff --git a/resource_pack/textures/ui/bubbles_left_corner.png b/resource_pack/textures/ui/bubbles_left_corner.png deleted file mode 100644 index 6d6932ef6..000000000 Binary files a/resource_pack/textures/ui/bubbles_left_corner.png and /dev/null differ diff --git a/resource_pack/textures/ui/bubbles_right_corner.png b/resource_pack/textures/ui/bubbles_right_corner.png deleted file mode 100644 index 29c671b91..000000000 Binary files a/resource_pack/textures/ui/bubbles_right_corner.png and /dev/null differ diff --git a/resource_pack/textures/ui/crafter_item_border.png b/resource_pack/textures/ui/crafter_item_border.png new file mode 100644 index 000000000..898c31c82 Binary files /dev/null and b/resource_pack/textures/ui/crafter_item_border.png differ diff --git a/resource_pack/textures/ui/game_tip_animations/fly-down-mouse.json b/resource_pack/textures/ui/game_tip_animations/fly-down-mouse.json new file mode 100644 index 000000000..d51c2d9d6 --- /dev/null +++ b/resource_pack/textures/ui/game_tip_animations/fly-down-mouse.json @@ -0,0 +1,180 @@ +{ "frames": [ + { + "filename": "KB-11--fly-down 0.gif", + "frame": { "x": 0, "y": 0, "w": 58, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 58, "h": 64 }, + "sourceSize": { "w": 58, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-down 1.gif", + "frame": { "x": 58, "y": 0, "w": 58, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 58, "h": 64 }, + "sourceSize": { "w": 58, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-down 2.gif", + "frame": { "x": 116, "y": 0, "w": 58, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 58, "h": 64 }, + "sourceSize": { "w": 58, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-down 3.gif", + "frame": { "x": 174, "y": 0, "w": 58, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 58, "h": 64 }, + "sourceSize": { "w": 58, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-down 4.gif", + "frame": { "x": 232, "y": 0, "w": 58, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 58, "h": 64 }, + "sourceSize": { "w": 58, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-down 5.gif", + "frame": { "x": 290, "y": 0, "w": 58, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 58, "h": 64 }, + "sourceSize": { "w": 58, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-down 6.gif", + "frame": { "x": 348, "y": 0, "w": 58, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 58, "h": 64 }, + "sourceSize": { "w": 58, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-down 7.gif", + "frame": { "x": 406, "y": 0, "w": 58, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 58, "h": 64 }, + "sourceSize": { "w": 58, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-down 8.gif", + "frame": { "x": 464, "y": 0, "w": 58, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 58, "h": 64 }, + "sourceSize": { "w": 58, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-down 9.gif", + "frame": { "x": 522, "y": 0, "w": 58, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 58, "h": 64 }, + "sourceSize": { "w": 58, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-down 10.gif", + "frame": { "x": 580, "y": 0, "w": 58, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 58, "h": 64 }, + "sourceSize": { "w": 58, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-down 11.gif", + "frame": { "x": 638, "y": 0, "w": 58, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 58, "h": 64 }, + "sourceSize": { "w": 58, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-down 12.gif", + "frame": { "x": 696, "y": 0, "w": 58, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 58, "h": 64 }, + "sourceSize": { "w": 58, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-down 13.gif", + "frame": { "x": 754, "y": 0, "w": 58, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 58, "h": 64 }, + "sourceSize": { "w": 58, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-down 14.gif", + "frame": { "x": 812, "y": 0, "w": 58, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 58, "h": 64 }, + "sourceSize": { "w": 58, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-down 15.gif", + "frame": { "x": 870, "y": 0, "w": 58, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 58, "h": 64 }, + "sourceSize": { "w": 58, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-down 16.gif", + "frame": { "x": 928, "y": 0, "w": 58, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 58, "h": 64 }, + "sourceSize": { "w": 58, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-down 17.gif", + "frame": { "x": 986, "y": 0, "w": 58, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 58, "h": 64 }, + "sourceSize": { "w": 58, "h": 64 }, + "duration": 100 + } + ], + "meta": { + "app": "https://www.aseprite.org/", + "version": "1.2.40-x64", + "image": "KB-11--fly-down.png", + "format": "I8", + "size": { "w": 1044, "h": 64 }, + "scale": "1", + "frameTags": [ + ], + "layers": [ + { "name": "Layer", "opacity": 255, "blendMode": "normal" } + ], + "slices": [ + ] + } +} diff --git a/resource_pack/textures/ui/game_tip_animations/fly-down-mouse.png b/resource_pack/textures/ui/game_tip_animations/fly-down-mouse.png new file mode 100644 index 000000000..3d1b22b41 Binary files /dev/null and b/resource_pack/textures/ui/game_tip_animations/fly-down-mouse.png differ diff --git a/resource_pack/textures/ui/game_tip_animations/fly-up-mouse.json b/resource_pack/textures/ui/game_tip_animations/fly-up-mouse.json new file mode 100644 index 000000000..3edf20236 --- /dev/null +++ b/resource_pack/textures/ui/game_tip_animations/fly-up-mouse.json @@ -0,0 +1,135 @@ +{ "frames": [ + { + "filename": "KB-11--fly-up 0.gif", + "frame": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-up 1.gif", + "frame": { "x": 79, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-up 2.gif", + "frame": { "x": 158, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-up 3.gif", + "frame": { "x": 237, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-up 4.gif", + "frame": { "x": 316, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-up 5.gif", + "frame": { "x": 395, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-up 6.gif", + "frame": { "x": 474, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-up 7.gif", + "frame": { "x": 553, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-up 8.gif", + "frame": { "x": 632, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-up 9.gif", + "frame": { "x": 711, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-up 10.gif", + "frame": { "x": 790, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-up 11.gif", + "frame": { "x": 869, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--fly-up 12.gif", + "frame": { "x": 948, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + } + ], + "meta": { + "app": "https://www.aseprite.org/", + "version": "1.2.40-x64", + "image": "KB-11--fly-up.png", + "format": "I8", + "size": { "w": 1027, "h": 64 }, + "scale": "1", + "frameTags": [ + ], + "layers": [ + { "name": "Layer", "opacity": 255, "blendMode": "normal" } + ], + "slices": [ + ] + } +} diff --git a/resource_pack/textures/ui/game_tip_animations/fly-up-mouse.png b/resource_pack/textures/ui/game_tip_animations/fly-up-mouse.png new file mode 100644 index 000000000..39dc67d12 Binary files /dev/null and b/resource_pack/textures/ui/game_tip_animations/fly-up-mouse.png differ diff --git a/resource_pack/textures/ui/game_tip_animations/hotbar-mouse.json b/resource_pack/textures/ui/game_tip_animations/hotbar-mouse.json index f09f63c23..b49811f17 100644 --- a/resource_pack/textures/ui/game_tip_animations/hotbar-mouse.json +++ b/resource_pack/textures/ui/game_tip_animations/hotbar-mouse.json @@ -1,99 +1,222 @@ -{ "frames": [ - { - "filename": "KB-06---hotbar 0.gif", - "frame": { "x": 0, "y": 0, "w": 64, "h": 64 }, - "rotated": false, - "trimmed": false, - "spriteSourceSize": { "x": 0, "y": 0, "w": 64, "h": 64 }, - "sourceSize": { "w": 64, "h": 64 }, - "duration": 1000 - }, - { - "filename": "KB-06---hotbar 1.gif", - "frame": { "x": 64, "y": 0, "w": 64, "h": 64 }, - "rotated": false, - "trimmed": false, - "spriteSourceSize": { "x": 0, "y": 0, "w": 64, "h": 64 }, - "sourceSize": { "w": 64, "h": 64 }, - "duration": 500 - }, - { - "filename": "KB-06---hotbar 2.gif", - "frame": { "x": 128, "y": 0, "w": 64, "h": 64 }, - "rotated": false, - "trimmed": false, - "spriteSourceSize": { "x": 0, "y": 0, "w": 64, "h": 64 }, - "sourceSize": { "w": 64, "h": 64 }, - "duration": 500 - }, - { - "filename": "KB-06---hotbar 3.gif", - "frame": { "x": 192, "y": 0, "w": 64, "h": 64 }, - "rotated": false, - "trimmed": false, - "spriteSourceSize": { "x": 0, "y": 0, "w": 64, "h": 64 }, - "sourceSize": { "w": 64, "h": 64 }, - "duration": 500 - }, - { - "filename": "KB-06---hotbar 4.gif", - "frame": { "x": 256, "y": 0, "w": 64, "h": 64 }, - "rotated": false, - "trimmed": false, - "spriteSourceSize": { "x": 0, "y": 0, "w": 64, "h": 64 }, - "sourceSize": { "w": 64, "h": 64 }, - "duration": 500 - }, - { - "filename": "KB-06---hotbar 5.gif", - "frame": { "x": 320, "y": 0, "w": 64, "h": 64 }, - "rotated": false, - "trimmed": false, - "spriteSourceSize": { "x": 0, "y": 0, "w": 64, "h": 64 }, - "sourceSize": { "w": 64, "h": 64 }, - "duration": 500 - }, - { - "filename": "KB-06---hotbar 6.gif", - "frame": { "x": 384, "y": 0, "w": 64, "h": 64 }, - "rotated": false, - "trimmed": false, - "spriteSourceSize": { "x": 0, "y": 0, "w": 64, "h": 64 }, - "sourceSize": { "w": 64, "h": 64 }, - "duration": 500 - }, - { - "filename": "KB-06---hotbar 7.gif", - "frame": { "x": 448, "y": 0, "w": 64, "h": 64 }, - "rotated": false, - "trimmed": false, - "spriteSourceSize": { "x": 0, "y": 0, "w": 64, "h": 64 }, - "sourceSize": { "w": 64, "h": 64 }, - "duration": 500 - }, - { - "filename": "KB-06---hotbar 8.gif", - "frame": { "x": 512, "y": 0, "w": 64, "h": 64 }, - "rotated": false, - "trimmed": false, - "spriteSourceSize": { "x": 0, "y": 0, "w": 64, "h": 64 }, - "sourceSize": { "w": 64, "h": 64 }, - "duration": 500 - } - ], - "meta": { - "app": "https://www.aseprite.org/", - "version": "1.2.40-x64", - "image": "KB-06---hotbar.png", - "format": "I8", - "size": { "w": 576, "h": 64 }, - "scale": "1", - "frameTags": [ +{ + "frames": [ + { + "filename": "KB-06---hotbar 0.gif", + "frame": { + "x": 7, + "y": 0, + "w": 57, + "h": 64 + }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 64, + "h": 64 + }, + "sourceSize": { + "w": 64, + "h": 64 + }, + "duration": 1000 + }, + { + "filename": "KB-06---hotbar 1.gif", + "frame": { + "x": 71, + "y": 0, + "w": 57, + "h": 64 + }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 64, + "h": 64 + }, + "sourceSize": { + "w": 64, + "h": 64 + }, + "duration": 500 + }, + { + "filename": "KB-06---hotbar 2.gif", + "frame": { + "x": 135, + "y": 0, + "w": 57, + "h": 64 + }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 64, + "h": 64 + }, + "sourceSize": { + "w": 64, + "h": 64 + }, + "duration": 500 + }, + { + "filename": "KB-06---hotbar 3.gif", + "frame": { + "x": 199, + "y": 0, + "w": 57, + "h": 64 + }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 64, + "h": 64 + }, + "sourceSize": { + "w": 64, + "h": 64 + }, + "duration": 500 + }, + { + "filename": "KB-06---hotbar 4.gif", + "frame": { + "x": 263, + "y": 0, + "w": 57, + "h": 64 + }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 64, + "h": 64 + }, + "sourceSize": { + "w": 64, + "h": 64 + }, + "duration": 500 + }, + { + "filename": "KB-06---hotbar 5.gif", + "frame": { + "x": 327, + "y": 0, + "w": 57, + "h": 64 + }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 64, + "h": 64 + }, + "sourceSize": { + "w": 64, + "h": 64 + }, + "duration": 500 + }, + { + "filename": "KB-06---hotbar 6.gif", + "frame": { + "x": 391, + "y": 0, + "w": 57, + "h": 64 + }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 64, + "h": 64 + }, + "sourceSize": { + "w": 64, + "h": 64 + }, + "duration": 500 + }, + { + "filename": "KB-06---hotbar 7.gif", + "frame": { + "x": 455, + "y": 0, + "w": 57, + "h": 64 + }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 64, + "h": 64 + }, + "sourceSize": { + "w": 64, + "h": 64 + }, + "duration": 500 + }, + { + "filename": "KB-06---hotbar 8.gif", + "frame": { + "x": 519, + "y": 0, + "w": 57, + "h": 64 + }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 64, + "h": 64 + }, + "sourceSize": { + "w": 64, + "h": 64 + }, + "duration": 500 + } ], - "layers": [ - { "name": "Layer", "opacity": 255, "blendMode": "normal" } - ], - "slices": [ - ] - } -} + "meta": { + "app": "https://www.aseprite.org/", + "version": "1.2.40-x64", + "image": "KB-06---hotbar.png", + "format": "I8", + "size": { + "w": 576, + "h": 64 + }, + "scale": "1", + "frameTags": [], + "layers": [ + { + "name": "Layer", + "opacity": 255, + "blendMode": "normal" + } + ], + "slices": [] + } +} \ No newline at end of file diff --git a/resource_pack/textures/ui/game_tip_animations/hotbar-touch.json b/resource_pack/textures/ui/game_tip_animations/hotbar-touch.json index 1f0f29380..b1415a3eb 100644 --- a/resource_pack/textures/ui/game_tip_animations/hotbar-touch.json +++ b/resource_pack/textures/ui/game_tip_animations/hotbar-touch.json @@ -1,81 +1,178 @@ -{ "frames": [ - { - "filename": "TOUCH-03---hotbar-item 0.gif", - "frame": { "x": 0, "y": 0, "w": 63, "h": 64 }, - "rotated": false, - "trimmed": false, - "spriteSourceSize": { "x": 0, "y": 0, "w": 63, "h": 64 }, - "sourceSize": { "w": 63, "h": 64 }, - "duration": 1000 - }, - { - "filename": "TOUCH-03---hotbar-item 1.gif", - "frame": { "x": 63, "y": 0, "w": 63, "h": 64 }, - "rotated": false, - "trimmed": false, - "spriteSourceSize": { "x": 0, "y": 0, "w": 63, "h": 64 }, - "sourceSize": { "w": 63, "h": 64 }, - "duration": 200 - }, - { - "filename": "TOUCH-03---hotbar-item 2.gif", - "frame": { "x": 126, "y": 0, "w": 63, "h": 64 }, - "rotated": false, - "trimmed": false, - "spriteSourceSize": { "x": 0, "y": 0, "w": 63, "h": 64 }, - "sourceSize": { "w": 63, "h": 64 }, - "duration": 100 - }, - { - "filename": "TOUCH-03---hotbar-item 3.gif", - "frame": { "x": 189, "y": 0, "w": 63, "h": 64 }, - "rotated": false, - "trimmed": false, - "spriteSourceSize": { "x": 0, "y": 0, "w": 63, "h": 64 }, - "sourceSize": { "w": 63, "h": 64 }, - "duration": 200 - }, - { - "filename": "TOUCH-03---hotbar-item 4.gif", - "frame": { "x": 252, "y": 0, "w": 63, "h": 64 }, - "rotated": false, - "trimmed": false, - "spriteSourceSize": { "x": 0, "y": 0, "w": 63, "h": 64 }, - "sourceSize": { "w": 63, "h": 64 }, - "duration": 100 - }, - { - "filename": "TOUCH-03---hotbar-item 5.gif", - "frame": { "x": 315, "y": 0, "w": 63, "h": 64 }, - "rotated": false, - "trimmed": false, - "spriteSourceSize": { "x": 0, "y": 0, "w": 63, "h": 64 }, - "sourceSize": { "w": 63, "h": 64 }, - "duration": 100 - }, - { - "filename": "TOUCH-03---hotbar-item 6.gif", - "frame": { "x": 378, "y": 0, "w": 63, "h": 64 }, - "rotated": false, - "trimmed": false, - "spriteSourceSize": { "x": 0, "y": 0, "w": 63, "h": 64 }, - "sourceSize": { "w": 63, "h": 64 }, - "duration": 1000 - } - ], - "meta": { - "app": "https://www.aseprite.org/", - "version": "1.2.40-x64", - "image": "TOUCH-03---hotbar-item.png", - "format": "I8", - "size": { "w": 441, "h": 64 }, - "scale": "1", - "frameTags": [ +{ + "frames": [ + { + "filename": "TOUCH-03---hotbar-item 0.gif", + "frame": { + "x": 7, + "y": 0, + "w": 56, + "h": 64 + }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 63, + "h": 64 + }, + "sourceSize": { + "w": 63, + "h": 64 + }, + "duration": 1000 + }, + { + "filename": "TOUCH-03---hotbar-item 1.gif", + "frame": { + "x": 70, + "y": 0, + "w": 56, + "h": 64 + }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 63, + "h": 64 + }, + "sourceSize": { + "w": 63, + "h": 64 + }, + "duration": 200 + }, + { + "filename": "TOUCH-03---hotbar-item 2.gif", + "frame": { + "x": 133, + "y": 0, + "w": 56, + "h": 64 + }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 63, + "h": 64 + }, + "sourceSize": { + "w": 63, + "h": 64 + }, + "duration": 100 + }, + { + "filename": "TOUCH-03---hotbar-item 3.gif", + "frame": { + "x": 196, + "y": 0, + "w": 56, + "h": 64 + }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 63, + "h": 64 + }, + "sourceSize": { + "w": 63, + "h": 64 + }, + "duration": 200 + }, + { + "filename": "TOUCH-03---hotbar-item 4.gif", + "frame": { + "x": 259, + "y": 0, + "w": 56, + "h": 64 + }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 63, + "h": 64 + }, + "sourceSize": { + "w": 63, + "h": 64 + }, + "duration": 100 + }, + { + "filename": "TOUCH-03---hotbar-item 5.gif", + "frame": { + "x": 322, + "y": 0, + "w": 56, + "h": 64 + }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 63, + "h": 64 + }, + "sourceSize": { + "w": 63, + "h": 64 + }, + "duration": 100 + }, + { + "filename": "TOUCH-03---hotbar-item 6.gif", + "frame": { + "x": 385, + "y": 0, + "w": 56, + "h": 64 + }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { + "x": 0, + "y": 0, + "w": 63, + "h": 64 + }, + "sourceSize": { + "w": 63, + "h": 64 + }, + "duration": 1000 + } ], - "layers": [ - { "name": "Layer", "opacity": 255, "blendMode": "normal" } - ], - "slices": [ - ] - } -} + "meta": { + "app": "https://www.aseprite.org/", + "version": "1.2.40-x64", + "image": "TOUCH-03---hotbar-item.png", + "format": "I8", + "size": { + "w": 441, + "h": 64 + }, + "scale": "1", + "frameTags": [], + "layers": [ + { + "name": "Layer", + "opacity": 255, + "blendMode": "normal" + } + ], + "slices": [] + } +} \ No newline at end of file diff --git a/resource_pack/textures/ui/game_tip_animations/stop-fly-mouse.json b/resource_pack/textures/ui/game_tip_animations/stop-fly-mouse.json new file mode 100644 index 000000000..07e517ecc --- /dev/null +++ b/resource_pack/textures/ui/game_tip_animations/stop-fly-mouse.json @@ -0,0 +1,225 @@ +{ "frames": [ + { + "filename": "KB-11--stop-fly 0.gif", + "frame": { "x": 0, "y": 0, "w": 68, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 68, "h": 64 }, + "sourceSize": { "w": 68, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--stop-fly 1.gif", + "frame": { "x": 68, "y": 0, "w": 68, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 68, "h": 64 }, + "sourceSize": { "w": 68, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--stop-fly 2.gif", + "frame": { "x": 136, "y": 0, "w": 68, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 68, "h": 64 }, + "sourceSize": { "w": 68, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--stop-fly 3.gif", + "frame": { "x": 204, "y": 0, "w": 68, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 68, "h": 64 }, + "sourceSize": { "w": 68, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--stop-fly 4.gif", + "frame": { "x": 272, "y": 0, "w": 68, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 68, "h": 64 }, + "sourceSize": { "w": 68, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--stop-fly 5.gif", + "frame": { "x": 340, "y": 0, "w": 68, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 68, "h": 64 }, + "sourceSize": { "w": 68, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--stop-fly 6.gif", + "frame": { "x": 408, "y": 0, "w": 68, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 68, "h": 64 }, + "sourceSize": { "w": 68, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--stop-fly 7.gif", + "frame": { "x": 476, "y": 0, "w": 68, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 68, "h": 64 }, + "sourceSize": { "w": 68, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--stop-fly 8.gif", + "frame": { "x": 544, "y": 0, "w": 68, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 68, "h": 64 }, + "sourceSize": { "w": 68, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--stop-fly 9.gif", + "frame": { "x": 612, "y": 0, "w": 68, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 68, "h": 64 }, + "sourceSize": { "w": 68, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--stop-fly 10.gif", + "frame": { "x": 680, "y": 0, "w": 68, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 68, "h": 64 }, + "sourceSize": { "w": 68, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--stop-fly 11.gif", + "frame": { "x": 748, "y": 0, "w": 68, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 68, "h": 64 }, + "sourceSize": { "w": 68, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--stop-fly 12.gif", + "frame": { "x": 816, "y": 0, "w": 68, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 68, "h": 64 }, + "sourceSize": { "w": 68, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--stop-fly 13.gif", + "frame": { "x": 884, "y": 0, "w": 68, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 68, "h": 64 }, + "sourceSize": { "w": 68, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--stop-fly 14.gif", + "frame": { "x": 952, "y": 0, "w": 68, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 68, "h": 64 }, + "sourceSize": { "w": 68, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--stop-fly 15.gif", + "frame": { "x": 1020, "y": 0, "w": 68, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 68, "h": 64 }, + "sourceSize": { "w": 68, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--stop-fly 16.gif", + "frame": { "x": 1088, "y": 0, "w": 68, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 68, "h": 64 }, + "sourceSize": { "w": 68, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--stop-fly 17.gif", + "frame": { "x": 1156, "y": 0, "w": 68, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 68, "h": 64 }, + "sourceSize": { "w": 68, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--stop-fly 18.gif", + "frame": { "x": 1224, "y": 0, "w": 68, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 68, "h": 64 }, + "sourceSize": { "w": 68, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--stop-fly 19.gif", + "frame": { "x": 1292, "y": 0, "w": 68, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 68, "h": 64 }, + "sourceSize": { "w": 68, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--stop-fly 20.gif", + "frame": { "x": 1360, "y": 0, "w": 68, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 68, "h": 64 }, + "sourceSize": { "w": 68, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--stop-fly 21.gif", + "frame": { "x": 1428, "y": 0, "w": 68, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 68, "h": 64 }, + "sourceSize": { "w": 68, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-11--stop-fly 22.gif", + "frame": { "x": 1496, "y": 0, "w": 68, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 68, "h": 64 }, + "sourceSize": { "w": 68, "h": 64 }, + "duration": 100 + } + ], + "meta": { + "app": "https://www.aseprite.org/", + "version": "1.2.40-x64", + "image": "KB-11--stop-fly.png", + "format": "I8", + "size": { "w": 1564, "h": 64 }, + "scale": "1", + "frameTags": [ + ], + "layers": [ + { "name": "Layer", "opacity": 255, "blendMode": "normal" } + ], + "slices": [ + ] + } +} diff --git a/resource_pack/textures/ui/game_tip_animations/stop-fly-mouse.png b/resource_pack/textures/ui/game_tip_animations/stop-fly-mouse.png new file mode 100644 index 000000000..45db24db7 Binary files /dev/null and b/resource_pack/textures/ui/game_tip_animations/stop-fly-mouse.png differ diff --git a/resource_pack/textures/ui/game_tip_animations/stop-fly-touch.json b/resource_pack/textures/ui/game_tip_animations/stop-fly-touch.json new file mode 100644 index 000000000..3a5f91f1e --- /dev/null +++ b/resource_pack/textures/ui/game_tip_animations/stop-fly-touch.json @@ -0,0 +1,225 @@ +{ "frames": [ + { + "filename": "TOUCH-10---stop-fly 0.gif", + "frame": { "x": 0, "y": 0, "w": 48, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 48, "h": 64 }, + "sourceSize": { "w": 48, "h": 64 }, + "duration": 100 + }, + { + "filename": "TOUCH-10---stop-fly 1.gif", + "frame": { "x": 48, "y": 0, "w": 48, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 48, "h": 64 }, + "sourceSize": { "w": 48, "h": 64 }, + "duration": 100 + }, + { + "filename": "TOUCH-10---stop-fly 2.gif", + "frame": { "x": 96, "y": 0, "w": 48, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 48, "h": 64 }, + "sourceSize": { "w": 48, "h": 64 }, + "duration": 100 + }, + { + "filename": "TOUCH-10---stop-fly 3.gif", + "frame": { "x": 144, "y": 0, "w": 48, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 48, "h": 64 }, + "sourceSize": { "w": 48, "h": 64 }, + "duration": 100 + }, + { + "filename": "TOUCH-10---stop-fly 4.gif", + "frame": { "x": 192, "y": 0, "w": 48, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 48, "h": 64 }, + "sourceSize": { "w": 48, "h": 64 }, + "duration": 100 + }, + { + "filename": "TOUCH-10---stop-fly 5.gif", + "frame": { "x": 240, "y": 0, "w": 48, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 48, "h": 64 }, + "sourceSize": { "w": 48, "h": 64 }, + "duration": 100 + }, + { + "filename": "TOUCH-10---stop-fly 6.gif", + "frame": { "x": 288, "y": 0, "w": 48, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 48, "h": 64 }, + "sourceSize": { "w": 48, "h": 64 }, + "duration": 100 + }, + { + "filename": "TOUCH-10---stop-fly 7.gif", + "frame": { "x": 336, "y": 0, "w": 48, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 48, "h": 64 }, + "sourceSize": { "w": 48, "h": 64 }, + "duration": 100 + }, + { + "filename": "TOUCH-10---stop-fly 8.gif", + "frame": { "x": 384, "y": 0, "w": 48, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 48, "h": 64 }, + "sourceSize": { "w": 48, "h": 64 }, + "duration": 100 + }, + { + "filename": "TOUCH-10---stop-fly 9.gif", + "frame": { "x": 432, "y": 0, "w": 48, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 48, "h": 64 }, + "sourceSize": { "w": 48, "h": 64 }, + "duration": 100 + }, + { + "filename": "TOUCH-10---stop-fly 10.gif", + "frame": { "x": 480, "y": 0, "w": 48, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 48, "h": 64 }, + "sourceSize": { "w": 48, "h": 64 }, + "duration": 100 + }, + { + "filename": "TOUCH-10---stop-fly 11.gif", + "frame": { "x": 528, "y": 0, "w": 48, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 48, "h": 64 }, + "sourceSize": { "w": 48, "h": 64 }, + "duration": 100 + }, + { + "filename": "TOUCH-10---stop-fly 12.gif", + "frame": { "x": 576, "y": 0, "w": 48, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 48, "h": 64 }, + "sourceSize": { "w": 48, "h": 64 }, + "duration": 100 + }, + { + "filename": "TOUCH-10---stop-fly 13.gif", + "frame": { "x": 624, "y": 0, "w": 48, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 48, "h": 64 }, + "sourceSize": { "w": 48, "h": 64 }, + "duration": 100 + }, + { + "filename": "TOUCH-10---stop-fly 14.gif", + "frame": { "x": 672, "y": 0, "w": 48, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 48, "h": 64 }, + "sourceSize": { "w": 48, "h": 64 }, + "duration": 100 + }, + { + "filename": "TOUCH-10---stop-fly 15.gif", + "frame": { "x": 720, "y": 0, "w": 48, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 48, "h": 64 }, + "sourceSize": { "w": 48, "h": 64 }, + "duration": 100 + }, + { + "filename": "TOUCH-10---stop-fly 16.gif", + "frame": { "x": 768, "y": 0, "w": 48, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 48, "h": 64 }, + "sourceSize": { "w": 48, "h": 64 }, + "duration": 100 + }, + { + "filename": "TOUCH-10---stop-fly 17.gif", + "frame": { "x": 816, "y": 0, "w": 48, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 48, "h": 64 }, + "sourceSize": { "w": 48, "h": 64 }, + "duration": 100 + }, + { + "filename": "TOUCH-10---stop-fly 18.gif", + "frame": { "x": 864, "y": 0, "w": 48, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 48, "h": 64 }, + "sourceSize": { "w": 48, "h": 64 }, + "duration": 100 + }, + { + "filename": "TOUCH-10---stop-fly 19.gif", + "frame": { "x": 912, "y": 0, "w": 48, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 48, "h": 64 }, + "sourceSize": { "w": 48, "h": 64 }, + "duration": 100 + }, + { + "filename": "TOUCH-10---stop-fly 20.gif", + "frame": { "x": 960, "y": 0, "w": 48, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 48, "h": 64 }, + "sourceSize": { "w": 48, "h": 64 }, + "duration": 100 + }, + { + "filename": "TOUCH-10---stop-fly 21.gif", + "frame": { "x": 1008, "y": 0, "w": 48, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 48, "h": 64 }, + "sourceSize": { "w": 48, "h": 64 }, + "duration": 100 + }, + { + "filename": "TOUCH-10---stop-fly 22.gif", + "frame": { "x": 1056, "y": 0, "w": 48, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 48, "h": 64 }, + "sourceSize": { "w": 48, "h": 64 }, + "duration": 100 + } + ], + "meta": { + "app": "https://www.aseprite.org/", + "version": "1.2.40-x64", + "image": "TOUCH-10---stop-fly.png", + "format": "I8", + "size": { "w": 1104, "h": 64 }, + "scale": "1", + "frameTags": [ + ], + "layers": [ + { "name": "Layer", "opacity": 255, "blendMode": "normal" } + ], + "slices": [ + ] + } +} diff --git a/resource_pack/textures/ui/game_tip_animations/stop-fly-touch.png b/resource_pack/textures/ui/game_tip_animations/stop-fly-touch.png new file mode 100644 index 000000000..fc2359701 Binary files /dev/null and b/resource_pack/textures/ui/game_tip_animations/stop-fly-touch.png differ diff --git a/resource_pack/textures/ui/game_tip_animations/swim-mouse.json b/resource_pack/textures/ui/game_tip_animations/swim-mouse.json new file mode 100644 index 000000000..8ee3b9478 --- /dev/null +++ b/resource_pack/textures/ui/game_tip_animations/swim-mouse.json @@ -0,0 +1,162 @@ +{ "frames": [ + { + "filename": "KB-01---swim 0.gif", + "frame": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-01---swim 1.gif", + "frame": { "x": 79, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-01---swim 2.gif", + "frame": { "x": 158, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-01---swim 3.gif", + "frame": { "x": 237, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-01---swim 4.gif", + "frame": { "x": 316, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-01---swim 5.gif", + "frame": { "x": 395, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-01---swim 6.gif", + "frame": { "x": 474, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-01---swim 7.gif", + "frame": { "x": 553, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-01---swim 8.gif", + "frame": { "x": 632, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-01---swim 9.gif", + "frame": { "x": 711, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-01---swim 10.gif", + "frame": { "x": 790, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-01---swim 11.gif", + "frame": { "x": 869, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-01---swim 12.gif", + "frame": { "x": 948, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-01---swim 13.gif", + "frame": { "x": 1027, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-01---swim 14.gif", + "frame": { "x": 1106, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + }, + { + "filename": "KB-01---swim 15.gif", + "frame": { "x": 1185, "y": 0, "w": 79, "h": 64 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 79, "h": 64 }, + "sourceSize": { "w": 79, "h": 64 }, + "duration": 100 + } + ], + "meta": { + "app": "https://www.aseprite.org/", + "version": "1.2.40-x64", + "image": "KB-01---swim.png", + "format": "I8", + "size": { "w": 1264, "h": 64 }, + "scale": "1", + "frameTags": [ + ], + "layers": [ + { "name": "Layer", "opacity": 255, "blendMode": "normal" } + ], + "slices": [ + ] + } +} diff --git a/resource_pack/textures/ui/game_tip_animations/swim-mouse.png b/resource_pack/textures/ui/game_tip_animations/swim-mouse.png new file mode 100644 index 000000000..4269d431f Binary files /dev/null and b/resource_pack/textures/ui/game_tip_animations/swim-mouse.png differ diff --git a/resource_pack/textures/ui/hardcore/absorption_heart.png b/resource_pack/textures/ui/hardcore/absorption_heart.png new file mode 100644 index 000000000..86da3cbfd Binary files /dev/null and b/resource_pack/textures/ui/hardcore/absorption_heart.png differ diff --git a/resource_pack/textures/ui/hardcore/absorption_heart_half.png b/resource_pack/textures/ui/hardcore/absorption_heart_half.png new file mode 100644 index 000000000..8df8ec2f1 Binary files /dev/null and b/resource_pack/textures/ui/hardcore/absorption_heart_half.png differ diff --git a/resource_pack/textures/ui/hardcore/freeze_heart.png b/resource_pack/textures/ui/hardcore/freeze_heart.png new file mode 100644 index 000000000..14c81ddb6 Binary files /dev/null and b/resource_pack/textures/ui/hardcore/freeze_heart.png differ diff --git a/resource_pack/textures/ui/hardcore/freeze_heart_flash.png b/resource_pack/textures/ui/hardcore/freeze_heart_flash.png new file mode 100644 index 000000000..14c81ddb6 Binary files /dev/null and b/resource_pack/textures/ui/hardcore/freeze_heart_flash.png differ diff --git a/resource_pack/textures/ui/hardcore/freeze_heart_flash_half.png b/resource_pack/textures/ui/hardcore/freeze_heart_flash_half.png new file mode 100644 index 000000000..41edb27c0 Binary files /dev/null and b/resource_pack/textures/ui/hardcore/freeze_heart_flash_half.png differ diff --git a/resource_pack/textures/ui/hardcore/freeze_heart_half.png b/resource_pack/textures/ui/hardcore/freeze_heart_half.png new file mode 100644 index 000000000..41edb27c0 Binary files /dev/null and b/resource_pack/textures/ui/hardcore/freeze_heart_half.png differ diff --git a/resource_pack/textures/ui/hardcore/heart.png b/resource_pack/textures/ui/hardcore/heart.png new file mode 100644 index 000000000..f990ea442 Binary files /dev/null and b/resource_pack/textures/ui/hardcore/heart.png differ diff --git a/resource_pack/textures/ui/hardcore/heart_flash.png b/resource_pack/textures/ui/hardcore/heart_flash.png new file mode 100644 index 000000000..a41d8e8de Binary files /dev/null and b/resource_pack/textures/ui/hardcore/heart_flash.png differ diff --git a/resource_pack/textures/ui/hardcore/heart_flash_half.png b/resource_pack/textures/ui/hardcore/heart_flash_half.png new file mode 100644 index 000000000..25dacf100 Binary files /dev/null and b/resource_pack/textures/ui/hardcore/heart_flash_half.png differ diff --git a/resource_pack/textures/ui/hardcore/heart_half.png b/resource_pack/textures/ui/hardcore/heart_half.png new file mode 100644 index 000000000..558b9058a Binary files /dev/null and b/resource_pack/textures/ui/hardcore/heart_half.png differ diff --git a/resource_pack/textures/ui/hardcore/poison_heart.png b/resource_pack/textures/ui/hardcore/poison_heart.png new file mode 100644 index 000000000..847720312 Binary files /dev/null and b/resource_pack/textures/ui/hardcore/poison_heart.png differ diff --git a/resource_pack/textures/ui/hardcore/poison_heart_flash.png b/resource_pack/textures/ui/hardcore/poison_heart_flash.png new file mode 100644 index 000000000..057482982 Binary files /dev/null and b/resource_pack/textures/ui/hardcore/poison_heart_flash.png differ diff --git a/resource_pack/textures/ui/hardcore/poison_heart_flash_half.png b/resource_pack/textures/ui/hardcore/poison_heart_flash_half.png new file mode 100644 index 000000000..ef0db25fc Binary files /dev/null and b/resource_pack/textures/ui/hardcore/poison_heart_flash_half.png differ diff --git a/resource_pack/textures/ui/hardcore/poison_heart_half.png b/resource_pack/textures/ui/hardcore/poison_heart_half.png new file mode 100644 index 000000000..cfeac5f06 Binary files /dev/null and b/resource_pack/textures/ui/hardcore/poison_heart_half.png differ diff --git a/resource_pack/textures/ui/hardcore/wither_heart.png b/resource_pack/textures/ui/hardcore/wither_heart.png new file mode 100644 index 000000000..5968b9489 Binary files /dev/null and b/resource_pack/textures/ui/hardcore/wither_heart.png differ diff --git a/resource_pack/textures/ui/hardcore/wither_heart_flash.png b/resource_pack/textures/ui/hardcore/wither_heart_flash.png new file mode 100644 index 000000000..fb20bf88d Binary files /dev/null and b/resource_pack/textures/ui/hardcore/wither_heart_flash.png differ diff --git a/resource_pack/textures/ui/hardcore/wither_heart_flash_half.png b/resource_pack/textures/ui/hardcore/wither_heart_flash_half.png new file mode 100644 index 000000000..2a88ff061 Binary files /dev/null and b/resource_pack/textures/ui/hardcore/wither_heart_flash_half.png differ diff --git a/resource_pack/textures/ui/hardcore/wither_heart_half.png b/resource_pack/textures/ui/hardcore/wither_heart_half.png new file mode 100644 index 000000000..99ce88314 Binary files /dev/null and b/resource_pack/textures/ui/hardcore/wither_heart_half.png differ diff --git a/resource_pack/textures/ui/infested_effect.png b/resource_pack/textures/ui/infested_effect.png new file mode 100644 index 000000000..6f785a151 Binary files /dev/null and b/resource_pack/textures/ui/infested_effect.png differ diff --git a/resource_pack/textures/ui/oozing_effect.png b/resource_pack/textures/ui/oozing_effect.png new file mode 100644 index 000000000..18dfadd94 Binary files /dev/null and b/resource_pack/textures/ui/oozing_effect.png differ diff --git a/resource_pack/textures/ui/panorama_0.png b/resource_pack/textures/ui/panorama_0.png index 58419cbe4..ec5f537f3 100644 Binary files a/resource_pack/textures/ui/panorama_0.png and b/resource_pack/textures/ui/panorama_0.png differ diff --git a/resource_pack/textures/ui/panorama_1.png b/resource_pack/textures/ui/panorama_1.png index 61bbb8c21..a83a07dcc 100644 Binary files a/resource_pack/textures/ui/panorama_1.png and b/resource_pack/textures/ui/panorama_1.png differ diff --git a/resource_pack/textures/ui/panorama_2.png b/resource_pack/textures/ui/panorama_2.png index a55cc06dd..9161f18e6 100644 Binary files a/resource_pack/textures/ui/panorama_2.png and b/resource_pack/textures/ui/panorama_2.png differ diff --git a/resource_pack/textures/ui/panorama_3.png b/resource_pack/textures/ui/panorama_3.png index 974267c66..94cba08ef 100644 Binary files a/resource_pack/textures/ui/panorama_3.png and b/resource_pack/textures/ui/panorama_3.png differ diff --git a/resource_pack/textures/ui/panorama_4.png b/resource_pack/textures/ui/panorama_4.png index b19aa544e..3352d38ae 100644 Binary files a/resource_pack/textures/ui/panorama_4.png and b/resource_pack/textures/ui/panorama_4.png differ diff --git a/resource_pack/textures/ui/panorama_5.png b/resource_pack/textures/ui/panorama_5.png index 0390ca59b..bb714635e 100644 Binary files a/resource_pack/textures/ui/panorama_5.png and b/resource_pack/textures/ui/panorama_5.png differ diff --git a/resource_pack/textures/ui/raid_omen_effect.png b/resource_pack/textures/ui/raid_omen_effect.png new file mode 100644 index 000000000..858dd6dfa Binary files /dev/null and b/resource_pack/textures/ui/raid_omen_effect.png differ diff --git a/resource_pack/textures/ui/redstone_arrow_powered.png b/resource_pack/textures/ui/redstone_arrow_powered.png new file mode 100644 index 000000000..872b69c4d Binary files /dev/null and b/resource_pack/textures/ui/redstone_arrow_powered.png differ diff --git a/resource_pack/textures/ui/redstone_arrow_unpowered.png b/resource_pack/textures/ui/redstone_arrow_unpowered.png new file mode 100644 index 000000000..1a8faff8e Binary files /dev/null and b/resource_pack/textures/ui/redstone_arrow_unpowered.png differ diff --git a/resource_pack/textures/ui/redstone_arrow_vertical_powered.png b/resource_pack/textures/ui/redstone_arrow_vertical_powered.png new file mode 100644 index 000000000..5c206ca6e Binary files /dev/null and b/resource_pack/textures/ui/redstone_arrow_vertical_powered.png differ diff --git a/resource_pack/textures/ui/redstone_arrow_vertical_unpowered.png b/resource_pack/textures/ui/redstone_arrow_vertical_unpowered.png new file mode 100644 index 000000000..4b79619e4 Binary files /dev/null and b/resource_pack/textures/ui/redstone_arrow_vertical_unpowered.png differ diff --git a/resource_pack/textures/ui/slot_disabled.png b/resource_pack/textures/ui/slot_disabled.png new file mode 100644 index 000000000..03a6ee65d Binary files /dev/null and b/resource_pack/textures/ui/slot_disabled.png differ diff --git a/resource_pack/textures/ui/slot_disabled_hover.png b/resource_pack/textures/ui/slot_disabled_hover.png new file mode 100644 index 000000000..796ac86eb Binary files /dev/null and b/resource_pack/textures/ui/slot_disabled_hover.png differ diff --git a/resource_pack/textures/ui/slot_disabled_hover_pocket.png b/resource_pack/textures/ui/slot_disabled_hover_pocket.png new file mode 100644 index 000000000..7ad53ecbf Binary files /dev/null and b/resource_pack/textures/ui/slot_disabled_hover_pocket.png differ diff --git a/resource_pack/textures/ui/slot_disabled_pocket.png b/resource_pack/textures/ui/slot_disabled_pocket.png new file mode 100644 index 000000000..d36075d1a Binary files /dev/null and b/resource_pack/textures/ui/slot_disabled_pocket.png differ diff --git a/resource_pack/textures/ui/slot_enabled.png b/resource_pack/textures/ui/slot_enabled.png new file mode 100644 index 000000000..d310528fe Binary files /dev/null and b/resource_pack/textures/ui/slot_enabled.png differ diff --git a/resource_pack/textures/ui/slot_enabled_hover.png b/resource_pack/textures/ui/slot_enabled_hover.png new file mode 100644 index 000000000..dd7f41b47 Binary files /dev/null and b/resource_pack/textures/ui/slot_enabled_hover.png differ diff --git a/resource_pack/textures/ui/slot_enabled_hover_pocket.png b/resource_pack/textures/ui/slot_enabled_hover_pocket.png new file mode 100644 index 000000000..730c15af2 Binary files /dev/null and b/resource_pack/textures/ui/slot_enabled_hover_pocket.png differ diff --git a/resource_pack/textures/ui/slot_enabled_pocket.png b/resource_pack/textures/ui/slot_enabled_pocket.png new file mode 100644 index 000000000..f06e4808a Binary files /dev/null and b/resource_pack/textures/ui/slot_enabled_pocket.png differ diff --git a/resource_pack/textures/ui/trial_omen_effect.png b/resource_pack/textures/ui/trial_omen_effect.png new file mode 100644 index 000000000..b7d90c4d5 Binary files /dev/null and b/resource_pack/textures/ui/trial_omen_effect.png differ diff --git a/resource_pack/textures/ui/weaving_effect.png b/resource_pack/textures/ui/weaving_effect.png new file mode 100644 index 000000000..b33f1bb98 Binary files /dev/null and b/resource_pack/textures/ui/weaving_effect.png differ diff --git a/resource_pack/textures/ui/wind_charged_effect.png b/resource_pack/textures/ui/wind_charged_effect.png new file mode 100644 index 000000000..d9b05678f Binary files /dev/null and b/resource_pack/textures/ui/wind_charged_effect.png differ diff --git a/resource_pack/ui/_global_variables.json b/resource_pack/ui/_global_variables.json index 96f993788..cd46397c0 100644 --- a/resource_pack/ui/_global_variables.json +++ b/resource_pack/ui/_global_variables.json @@ -208,6 +208,7 @@ "$non_interact_border_color": [ 0.7, 0.7, 0.7 ], "$realms_plus_border_color": [ 0.4, 0.118, 0.459 ], "$csb_border_color": [ 1.0, 0.769, 0.169 ], + "$csub_text_color": [ 1.0, 0.77, 0.17 ], //////// Border colors //////// "$slider_default_border_color": [ 0.0, 0.0, 0.0 ], diff --git a/resource_pack/ui/_ui_defs.json b/resource_pack/ui/_ui_defs.json index e1515ce9b..c83c33274 100644 --- a/resource_pack/ui/_ui_defs.json +++ b/resource_pack/ui/_ui_defs.json @@ -51,7 +51,6 @@ "ui/edu_discovery_dialog.json", "ui/edu_pause_screen_pause_button.json", "ui/emote_wheel_screen.json", - "ui/emote_wheel_screen_deprecated.json", "ui/enchanting_screen.json", "ui/enchanting_screen_pocket.json", "ui/encyclopedia_screen.json", @@ -172,7 +171,6 @@ "ui/storage_management.json", "ui/storage_management_popup.json", "ui/store_common.json", - "ui/store_gift_promotion_screen.json", "ui/store_data_driven_screen.json", "ui/store_filter_menu_screen.json", "ui/store_inventory_screen.json", @@ -213,6 +211,8 @@ "ui/xbl_friend_finder.json", "ui/xbl_immediate_signin.json", "ui/xbl_optional_signin.json", - "ui/profile_card.json" + "ui/profile_card.json", + "ui/crafter_screen_pocket.json", + "ui/redstone_screen.json" ] } diff --git a/resource_pack/ui/coin_purchase_screen.json b/resource_pack/ui/coin_purchase_screen.json index 4b055f3fc..b497a3817 100644 --- a/resource_pack/ui/coin_purchase_screen.json +++ b/resource_pack/ui/coin_purchase_screen.json @@ -1183,49 +1183,6 @@ ] }, - "coin_purchase_screen@common.base_screen": { - "button_mappings": [ - { - "from_button_id": "button.menu_cancel", - "to_button_id": "button.menu_exit", - "mapping_type": "global" - } - ], - "$screen_animations": [ - "@common.screen_exit_animation_push_fade", - "@common.screen_exit_animation_pop_fade", - "@common.screen_entrance_animation_push_fade", - "@common.screen_entrance_animation_pop_fade" - ], - "$background_animations": [ - "@common.screen_exit_animation_push_fade", - "@common.screen_exit_animation_pop_fade", - "@common.screen_entrance_animation_push_fade", - "@common.screen_entrance_animation_pop_fade" - ], - "force_render_below": true, - "$screen_content": "coin_purchase.coin_purchase_screen_content", - "$screen_background_control": "coin_purchase.background" - }, - - "coin_purchase_screen_content": { - "type": "panel", - "controls": [ - { - "dialog@common_dialogs.main_panel_no_buttons": { - "$title_panel": "common_dialogs.standard_title_label", - "$title_size": [ "100% - 14px", 10 ], - "$text_name": "#window_title_text", - "$title_text_binding_type": "global", - "$child_control": "coin_purchase.main_panel", - "$close_button_visible_binding_name": "#close_visible", - "layer": 2, - "size": "$window_size" - } - } - ] - }, - "background@common.screen_background": { "alpha": 0.65, "layer": 1 diff --git a/resource_pack/ui/crafter_screen_pocket.json b/resource_pack/ui/crafter_screen_pocket.json new file mode 100644 index 000000000..435db2ded --- /dev/null +++ b/resource_pack/ui/crafter_screen_pocket.json @@ -0,0 +1,536 @@ +{ + "namespace": "crafter_pocket", + + "generic_label": { + "type": "label", + "layer": 2, + "anchor_from": "center", + "anchor_to": "center", + "color": "$pocket_title_text_color" + }, + + //---------------------- + // Header Panel + //---------------------- + + "header_panel": { + "type": "panel", + "layer": 1, + "size": [ "50%", "27px" ], + "anchor_from": "top_left", + "anchor_to": "top_left", + "controls": [ + { + "header_background": { + "type": "image", + "texture": "textures/ui/header_bar" + } + }, + { + "title_label@generic_label": { "text": "$header_label" } + } + ] + }, + + "header_area": { + "type": "panel", + "controls": [ + { "x@common.legacy_pocket_close_button": { "layer": 3 } }, + { + "inventory_header@pocket_containers.header_panel": { + "$header_label": "chestScreen.header.player" + } + }, + { + "container_header@pocket_containers.header_panel": { + "layer": 2, + "anchor_from": "top_middle", + "$header_label": "$container_title" + } + } + ] + }, + + //----------------- + // Inventory Panels + //----------------- + + "dark_bg": { + "type": "image", + "texture": "textures/ui/dark_bg", + "layer": 3 + }, + + "panel_outline": { + "type": "image", + "texture": "textures/ui/panel_outline" + }, + + "background_panel": { + "type": "image", + "size": [ "100%", "100%" ], + "texture": "textures/ui/background_panel", + "layer": 2 + }, + + "inventory_panel": { + "type": "panel", + "size": [ "80%", "95%" ], + "anchor_to": "center", + "anchor_from": "center", + "controls": [ + { + "scrolling_panel@common.scrolling_panel": { + "$allow_scrolling_even_when_content_fits": false, + "layer": 1, + "$scrolling_pane_size": [ "100%", "100%-2px" ], + "$scrolling_content": "pocket_containers.inventory_grid", + "$scroll_box_mouse_image_control": "common-classic.button_state_default", + "$scroll_size": [ "8px", "100%" ] + } + } + ] + }, + + "left_screen": { + "type": "panel", + "size": [ "50%", "100%-27px" ], + "offset": [ 0, 27 ], + "anchor_from": "top_left", + "anchor_to": "top_left", + "controls": [ + { "inventory_panel@inventory_panel": {} } + ] + }, + "crafter_input_grid": { + "type": "grid", + "anchor_from": "center", + "anchor_to": "center", + "offset": [ 3, 3 ], + "grid_dimensions": [ 3, 3 ], + "collection_name": "container_items", + "grid_item_template": "crafter_pocket.crafter_enabled_slot_template", + "$item_collection_name": "container_items" + }, + "crafter_disabled_slot@common.button": { + "type": "button", + "anchor_from": "center", + "anchor_to": "center", + "size": [ 28, 28 ], + "layer": 20, + "controls": [ + { + "default": { + "type": "image", + "texture": "textures/ui/slot_disabled_pocket" + } + }, + { + "hover": { + "type": "image", + "texture": "textures/ui/slot_enabled_hover_pocket" + } + }, + { + "pressed": { + "type": "image", + "texture": "textures/ui/slot_disabled_pocket" + } + } + ] + }, + "cell_image": { + "type": "image", + "texture": "textures/ui/slot_enabled_pocket", + "layer": 1, + "size": [ 28, 28 ] + }, + + "crafter_highlight_slot": { + "type": "image", + "texture": "textures/ui/slot_enabled_hover_pocket", + "size": [ "100% - 2px", "100% - 2px" ], + "alpha": 0.8 + }, + "crafter_container_slot_button_prototype@common.container_slot_button_prototype": { + "$highlight_control|default": "crafter_pocket.crafter_highlight_slot_panel" + }, + + "crafter_highlight_slot_panel": { + "type": "panel", + "controls": [ + { + "highlight@crafter_pocket.crafter_highlight_slot": { + "controls": [ + { + "hover_text@common.hover_text": { + "layer": 29, + "$hover_text_binding_name|default": "#hover_text", + "bindings": [ + { + "binding_name": "$hover_text_binding_name", + "binding_name_override": "#hover_text", + "binding_type": "collection", + "binding_collection_name": "$item_collection_name" + } + ] + } + }, + { + "bundle_tooltip@common.bundle_tooltip": { + "layer": 29, + "$hover_text_binding_name|default": "#hover_text", + "bindings": [ + { + "binding_name": "$hover_text_binding_name", + "binding_name_override": "#hover_text", + "binding_type": "collection", + "binding_collection_name": "$item_collection_name" + }, + { + "binding_name": "#hover_items_id", + "binding_name_override": "#hover_items_id", + "binding_type": "collection", + "binding_collection_name": "$item_collection_name" + } + ] + } + } + ], + "bindings": [ + { + "binding_name": "#show_persistent_bundle_hover_text", + "binding_name_override": "#visible" + } + ] + } + }, + { + "white_border@common.white_border_slot": { + "bindings": [ + { + "binding_name": "#show_persistent_bundle_hover_text", + "binding_name_override": "#visible" + } + ] + } + } + ] + }, + "crafter_enabled_slot_template@common.pocket_ui_container_item": { + "$background_images|default": "crafter_pocket.cell_image", + "$button_ref|default": "crafter_pocket.crafter_container_slot_button_prototype", + "size": [ 28, 28 ] + }, + "output_slot_hover_info": { + "type": "button", + "layer": 1, + "anchor_from": "center", + "anchor_to": "center", + "hover_control": "hover", + "size": [ 18, 18 ], + "offset": [ 54, -36 ], + "$stack_count_required": true, + "controls": [ + { + "hover@common.hover_text": { + "layer": 29, + "bindings": [ + { + "binding_name": "#crafting_preview_info", + "binding_name_override": "#hover_text" + } + ] + } + }, + { + "output_slot@common.item_renderer": { + "size": [ 24, 0 ], + "offset": [ 0, -12.2 ], + "bindings": [ + { + "binding_name": "#crafter_output_item", + "binding_name_override": "#item_id_aux" + }, + { + "binding_name": "#crafter_output_item_color", + "binding_name_override": "#item_custom_color" + }, + { + "binding_name": "#crafter_output_item_shield_base_color_hovered", + "binding_name_override": "#shield_base_color" + }, + { + "binding_name": "#crafter_output_item_banner_patterns", + "binding_name_override": "#banner_patterns" + }, + { + "binding_name": "#crafter_output_item_banner_colors", + "binding_name_override": "#banner_colors" + }, + { + "binding_name": "#crafter_output_item_banner_type", + "binding_name_override": "#banner_type" + }, + { + "binding_name": "#crafter_output_item_decorated_pot_sherds", + "binding_name_override": "#decorated_pot_sherds" + } + ] + } + }, + { + "output_slot_border": { + "type": "image", + "layer": 1, + "size": [ 28, 28 ], + "texture": "textures/ui/crafter_item_border" + } + }, + { + "output_count@common.stack_count_label": { + "layer": 20, + "size": [ 18, 18 ], + "offset": [ 14.1, 11.2 ], + "anchor_from": "center", + "anchor_to": "center", + "bindings": [ + { + "binding_name": "#output_stack_count", + "binding_name_override": "#inventory_stack_count" + } + ] + } + } + ] + }, + "panel_crafter": { + "type": "panel", + "$stack_count_required|default": true, + "controls": [ + { "item_lock_notification_factory@common.item_lock_notification_factory": {} }, + { + "root_panel@common.root_panel": { + "layer": 1, + "size": [ 176, 166 ], + "controls": [ + { + "disabled_slot_0_button@crafter_pocket.crafter_disabled_slot": { + "offset": [ -24.9, -72.5 ], + "$pressed_button_name": "disabled_button0", + "bindings": [ + { + "binding_name": "#button_visible0", + "binding_name_override": "#visible" + } + ] + } + }, + { + "disabled_slot_1_button@crafter_pocket.crafter_disabled_slot": { + "offset": [ 3, -72.5 ], + "$pressed_button_name": "disabled_button1", + "bindings": [ + { + "binding_name": "#button_visible1", + "binding_name_override": "#visible" + } + ] + } + }, + { + "disabled_slot_2_button@crafter_pocket.crafter_disabled_slot": { + "offset": [ 30.9, -72.5 ], + "$pressed_button_name": "disabled_button2", + "bindings": [ + { + "binding_name": "#button_visible2", + "binding_name_override": "#visible" + } + ] + } + }, + { + "disabled_slot_3_button@crafter_pocket.crafter_disabled_slot": { + "offset": [ -24.9, -44.4 ], + "$pressed_button_name": "disabled_button3", + "bindings": [ + { + "binding_name": "#button_visible3", + "binding_name_override": "#visible" + } + ] + } + }, + { + "disabled_slot_4_button@crafter_pocket.crafter_disabled_slot": { + "offset": [ 3, -44.4 ], + "$pressed_button_name": "disabled_button4", + "bindings": [ + { + "binding_name": "#button_visible4", + "binding_name_override": "#visible" + } + ] + } + }, + { + "disabled_slot_5_button@crafter_pocket.crafter_disabled_slot": { + "offset": [ 30.9, -44.4 ], + "$pressed_button_name": "disabled_button5", + "bindings": [ + { + "binding_name": "#button_visible5", + "binding_name_override": "#visible" + } + ] + } + }, + { + "disabled_slot_6_button@crafter_pocket.crafter_disabled_slot": { + "offset": [ -24.9, -16.4 ], + "$pressed_button_name": "disabled_button6", + "bindings": [ + { + "binding_name": "#button_visible6", + "binding_name_override": "#visible" + } + ] + } + }, + { + "disabled_slot_7_button@crafter_pocket.crafter_disabled_slot": { + "offset": [ 3, -16.4 ], + "$pressed_button_name": "disabled_button7", + "bindings": [ + { + "binding_name": "#button_visible7", + "binding_name_override": "#visible" + } + ] + } + }, + { + "disabled_slot_8_button@crafter_pocket.crafter_disabled_slot": { + "offset": [ 30.9, -16.4 ], + "$pressed_button_name": "disabled_button8", + "bindings": [ + { + "binding_name": "#button_visible8", + "binding_name_override": "#visible" + } + ] + } + }, + { + "redstone_screen_inventory": { + "type": "panel", + "layer": 5, + "controls": [ + { + "crafting_grid": { + "type": "panel", + "size": [ "100%", "50% - 12px" ], + "offset": [ 0, 0 ], + "anchor_to": "top_left", + "anchor_from": "top_left", + "controls": [ + { + "crafter_input_grid@crafter_pocket.crafter_input_grid": {} + } + ] + } + }, + { "red_hold_icon@common.inventory_take_progress_icon_button": {} }, + { + "redstone_wire_line": { + "type": "image", + "layer": 3, + "size": [ 28, 28 ], + "anchor_from": "top_left", + "anchor_to": "top_left", + "offset": [ 78, 100 ], + "bindings": [ + { + "binding_name": "#redstone_arrow_texture", + "binding_name_override": "#texture" + } + ] + } + }, + { + "crafter_output@crafter_pocket.output_slot_hover_info": { + "offset": [ 2.9, 76 ] + } + } + ] + } + }, + { "red_icon@common.inventory_selected_icon_button": {} } + ] + } + } + ] + }, + "right_screen_background": { + "type": "image", + "texture": "textures/ui/ScrollRail", + "size": [ "1%", "100%" ], + "offset": [ "-50%", -3 ], + "layer": 4 + }, + "right_screen": { + "type": "panel", + "size": [ "50%", "100%-27px" ], + "offset": [ 0, 27 ], + "anchor_from": "top_left", + "anchor_to": "top_left", + "controls": [ + { + "right_screen_bg@right_screen_background": { + "controls": [ + { + "inventory_panel@panel_crafter": { + "offset": [ 115, 0 ] + } + } + ] + } + } + ] + }, + + //-------------------- + // Screen Definitions + //-------------------- + + "panel": { + "type": "panel", + "controls": [ + { "container_gamepad_helpers@common.container_gamepad_helpers": { "layer": 3 } }, + { "header@header_area": { "layer": 2 } }, + { "bg@background_panel": { "layer": 0 } }, + { + "inventory@left_screen": { + "$container_size": 36, + "$pane_collection": "combined_hotbar_and_inventory_items" + } + }, + { + "container@right_screen": { + "anchor_from": "top_middle" + } + }, + { "selected_item_details_factory@common.selected_item_details_factory": {} }, + { + "item_lock_notification_factory@common.item_lock_notification_factory": { + "$offset": [ 0, "85%" ] + } + }, + { "gamepad_cursor@common.gamepad_cursor_button": {} }, + { "flying_item_renderer@common.flying_item_renderer": { "layer": 21 } } + ] + }, + + "crafter@panel": {} +} diff --git a/resource_pack/ui/display_logged_error_screen.json b/resource_pack/ui/display_logged_error_screen.json index 030071775..7c0465f71 100644 --- a/resource_pack/ui/display_logged_error_screen.json +++ b/resource_pack/ui/display_logged_error_screen.json @@ -6,10 +6,31 @@ { "namespace": "display_logged_error", + "display_logged_error_screen@common.base_screen": { + "force_render_below": true, + "$screen_content": "display_logged_error.factory_panel" + }, + + "factory_panel": { + "type": "panel", + "controls": [ + { + "error_dialog_factory": { + "type": "factory", + "control_ids": { + "error_popup": "@display_logged_error.display_logged_error_modal", + "error_details": "@display_logged_error.error_details_modal" + } + } + } + ] + }, + // Error popup "display_logged_error_modal@common_dialogs.main_panel_two_buttons": { - "layer": 300, // This should always be on top - follow modal popup pattern + + "layer": 5, "size": [ 200, 165 ], "$child_control": "display_logged_error.error_message_stack", "$text_name": "Errors detected!", @@ -49,6 +70,7 @@ }, "input_blocking_button_base@common_buttons.light_text_button": { + "$dismiss_button|default": "button.dismiss", "button_mappings": [ { "from_button_id": "button.menu_select", @@ -61,24 +83,40 @@ "to_button_id": "$pressed_button_name", "mapping_type": "focused", "button_up_right_of_first_refusal": true + }, + { + "from_button_id": "button.menu_cancel", + "to_button_id": "$dismiss_button", + "mapping_type": "focused", + "button_up_right_of_first_refusal": true } ] }, "details_button@display_logged_error.input_blocking_button_base": { "$pressed_button_name": "button.show_error_details", - "$button_text": "store.itemDetail.back" + "$button_text": "store.itemDetail.back", + "$focus_id": "error_details_button", + "$focus_override_up": "FOCUS_OVERRIDE_STOP", + "$focus_override_left": "FOCUS_OVERRIDE_STOP", + "$focus_override_right": "FOCUS_OVERRIDE_STOP", + "$focus_override_down": "error_hide_button" }, "dismiss_button@display_logged_error.input_blocking_button_base": { "$pressed_button_name": "button.dismiss", - "$button_text": "gui.hide" + "$button_text": "gui.hide", + "$focus_id": "error_hide_button", + "$focus_override_up": "error_details_button", + "$focus_override_down": "FOCUS_OVERRIDE_STOP", + "$focus_override_left": "FOCUS_OVERRIDE_STOP", + "$focus_override_right": "FOCUS_OVERRIDE_STOP" }, // Error details screen "error_details_modal@common_dialogs.main_panel_two_buttons": { - "layer": 300, // This should always be on top - follow modal popup pattern + "layer": 5, "$child_control": "display_logged_error.error_stack_scrolling_panel", "$text_name": "Error details", "$top_button_panel|default": "display_logged_error.copy_path_button", @@ -88,12 +126,26 @@ "copy_path_button@display_logged_error.input_blocking_button_base": { "$pressed_button_name": "button.copy_log_path_to_clipboard", - "$button_text": "Copy log file path to clipboard" + "$button_text": "Copy log file path to clipboard", + "$focus_id": "copy_button", + "$focus_override_left": "FOCUS_OVERRIDE_STOP", + "$focus_override_right": "FOCUS_OVERRIDE_STOP", + "bindings": [ + { + "binding_name": "#copy_button_focus_override_up", + "binding_name_override": "#focus_change_up" + } + ] }, "hide_error_details_button@display_logged_error.input_blocking_button_base": { - "$pressed_button_name": "button.hide_error_details", - "$button_text": "gui.close" + "$pressed_button_name": "button.dismiss", + "$button_text": "gui.close", + "$focus_id": "hide_error_button", + "$focus_override_up": "copy_button", + "$focus_override_left": "FOCUS_OVERRIDE_STOP", + "$focus_override_right": "FOCUS_OVERRIDE_STOP", + "$focus_override_down": "FOCUS_OVERRIDE_STOP" }, "error_stack_scrolling_panel@common.scrolling_panel": { @@ -142,6 +194,28 @@ "size": [ "100%", "100%sm" ], "$pressed_button_name": "button.expand", "default_control": "", + "$focus_override_left": "FOCUS_OVERRIDE_STOP", + "$focus_override_right": "FOCUS_OVERRIDE_STOP", + "button_mappings": [ + { + "from_button_id": "button.menu_select", + "to_button_id": "$pressed_button_name", + "mapping_type": "pressed", + "button_up_right_of_first_refusal": true + }, + { + "from_button_id": "button.menu_ok", + "to_button_id": "$pressed_button_name", + "mapping_type": "focused", + "button_up_right_of_first_refusal": true + }, + { + "from_button_id": "button.menu_cancel", + "to_button_id": "button.dismiss", + "mapping_type": "focused", + "button_up_right_of_first_refusal": true + } + ], "controls": [ { "hover@common.focus_border_white": {} @@ -158,6 +232,24 @@ { "binding_name": "#gamepad_helper_visible", "binding_name_override": "#visible" + }, + { + "binding_name": "#error_focus_id", + "binding_type": "collection", + "binding_collection_name": "display_logged_errors", + "binding_name_override": "#focus_identifier" + }, + { + "binding_name": "#error_focus_override_up", + "binding_type": "collection", + "binding_collection_name": "display_logged_errors", + "binding_name_override": "#focus_change_up" + }, + { + "binding_name": "#error_focus_override_down", + "binding_type": "collection", + "binding_collection_name": "display_logged_errors", + "binding_name_override": "#focus_change_down" } ] } @@ -192,6 +284,7 @@ "$button_text": "#error_expand_label", "$button_text_binding_type": "collection", "$button_text_grid_collection_name": "display_logged_errors", + "$dismiss_button": "button.hide_error_details", "bindings": [ { "binding_type": "collection_details", diff --git a/resource_pack/ui/hud_screen.json b/resource_pack/ui/hud_screen.json index 36a980e01..af20f6404 100644 --- a/resource_pack/ui/hud_screen.json +++ b/resource_pack/ui/hud_screen.json @@ -754,6 +754,46 @@ ] }, + // Displays number of played in-game days + "number_of_days_played": { + "type": "image", + "size": [ "100%c + 6px", "100%c + 2px" ], + "texture": "textures/ui/Black", + "alpha": 0.7, + "controls": [ + { + "number_of_days_played_text": { + "type": "label", + "anchor_from": "bottom_middle", + "anchor_to": "bottom_middle", + "layer": 1, + + "enable_profanity_filter": false, + "color": "$chat_text_color", + "text": "#text", + "shadow": true, + + "bindings": [ + { + "binding_name": "#number_of_days_played_text", + "binding_name_override": "#text", + "binding_condition": "always_when_visible", + "binding_type": "global" + } + ] + } + } + ], + "bindings": [ + { + "binding_name": "#number_of_days_played_visible", + "binding_name_override": "#visible", + "binding_condition": "always", + "binding_type": "global" + } + ] + }, + "anim_chat_txt_alpha": { "anim_type": "alpha", "easing": "in_quart", @@ -1120,7 +1160,7 @@ }, { "bubbles_rend_0@bubbles_renderer": { - "offset": [ 180, -50 ], + "offset": [ 179, -50 ], "anchor_from": "bottom_left", "anchor_to": "bottom_left", "bindings": [ @@ -1133,7 +1173,7 @@ }, { "bubbles_rend_1@bubbles_renderer": { - "offset": [ 180, -70 ], + "offset": [ 179, -70 ], "anchor_from": "bottom_left", "anchor_to": "bottom_left", "bindings": [ @@ -1202,7 +1242,7 @@ }, { "bubbles_rend_0@bubbles_renderer": { - "offset": [ -1, 12 ], + "offset": [ -2, 12 ], "anchor_from": "top_right", "anchor_to": "top_right", "bindings": [ @@ -1215,7 +1255,7 @@ }, { "bubbles_rend_1@bubbles_renderer": { - "offset": [ -1, 32 ], + "offset": [ -2, 32 ], "anchor_from": "top_right", "anchor_to": "top_right", "bindings": [ @@ -2829,7 +2869,8 @@ }, { "binding_name": "#layout_customization_hint_offset_y", - "binding_name_override": "#anchored_offset_value_y" + "binding_name_override": "#anchored_offset_value_y", + "binding_condition": "visible" } ] } @@ -2863,7 +2904,8 @@ }, { "binding_name": "#layout_customization_hint_offset_y", - "binding_name_override": "#anchored_offset_value_y" + "binding_name_override": "#anchored_offset_value_y", + "binding_condition": "visible" } ] } @@ -2897,7 +2939,8 @@ }, { "binding_name": "#layout_customization_hint_offset_y", - "binding_name_override": "#anchored_offset_value_y" + "binding_name_override": "#anchored_offset_value_y", + "binding_condition": "visible" } ] } @@ -3115,6 +3158,7 @@ } }, { "player_position@hud.player_position": {} }, + { "number_of_days_played@hud.number_of_days_played": {} }, { "chat_panel@hud.chat_panel": {} } ] } @@ -3388,7 +3432,8 @@ "$button_bindings": [ { "binding_name": "#wysiwyg_reset_button_enabled", - "binding_name_override": "#enabled" + "binding_name_override": "#enabled", + "binding_condition": "visible" } ], "bindings": [ @@ -3445,15 +3490,18 @@ "bindings": [ { "binding_name": "#layout_customization_main_panel_offset_y", - "binding_name_override": "#anchored_offset_value_y" + "binding_name_override": "#anchored_offset_value_y", + "binding_condition": "visible" }, { "binding_name": "#layout_customization_main_panel_size_x", - "binding_name_override": "#size_binding_x" + "binding_name_override": "#size_binding_x", + "binding_condition": "visible" }, { "binding_name": "#layout_customization_main_panel_size_y", - "binding_name_override": "#size_binding_y" + "binding_name_override": "#size_binding_y", + "binding_condition": "visible" }, { "binding_name": "#layout_customization_main_panel_visible", @@ -3472,11 +3520,11 @@ "size": [ "fill", "100%" ], "$label_offset": [ 6, 2 ], "$focus_override_right": "FOCUS_OVERRIDE_STOP", - "$slider_binding_condition": "always", + "$slider_binding_condition": "always_when_visible", "$label_bindings": [ { "binding_name": "$option_label", - "binding_condition": "always" + "binding_condition": "always_when_visible" } ] } @@ -3540,8 +3588,7 @@ "binding_name": "#scale_option_visible", "binding_name_override": "#visible", "binding_type": "collection", - "binding_collection_name": "$customization_option_collection_name", - "binding_condition": "always" + "binding_collection_name": "$customization_option_collection_name" } ] } @@ -3558,8 +3605,7 @@ "binding_name": "#opacity_option_visible", "binding_name_override": "#visible", "binding_type": "collection", - "binding_collection_name": "$customization_option_collection_name", - "binding_condition": "always" + "binding_collection_name": "$customization_option_collection_name" } ] } @@ -3627,8 +3673,7 @@ "binding_name": "#apply_to_all_option_visible", "binding_name_override": "#visible", "binding_type": "collection", - "binding_collection_name": "$customization_option_collection_name", - "binding_condition": "always" + "binding_collection_name": "$customization_option_collection_name" } ] } @@ -3652,7 +3697,7 @@ { "binding_name": "#layout_customization_option_size_y", "binding_name_override": "#size_binding_y", - "binding_condition": "always" + "binding_condition": "visible" } ] }, @@ -3687,7 +3732,7 @@ "bindings": [ { "binding_name": "#layout_customization_dimension", - "binding_condition": "always" + "binding_condition": "visible" } ] } @@ -3700,22 +3745,21 @@ { "binding_name": "#layout_customization_sub_panel_offset_y", "binding_name_override": "#anchored_offset_value_y", - "binding_condition": "always" + "binding_condition": "visible" }, { "binding_name": "#layout_customization_sub_panel_size_x", "binding_name_override": "#size_binding_x", - "binding_condition": "always" + "binding_condition": "visible" }, { "binding_name": "#layout_customization_sub_panel_size_y", "binding_name_override": "#size_binding_y", - "binding_condition": "always" + "binding_condition": "visible" }, { "binding_name": "#layout_customization_sub_panel_visible", - "binding_name_override": "#visible", - "binding_condition": "always" + "binding_name_override": "#visible" } ] } diff --git a/resource_pack/ui/inventory_screen_pocket.json b/resource_pack/ui/inventory_screen_pocket.json index 76b57de3c..5d73f510f 100644 --- a/resource_pack/ui/inventory_screen_pocket.json +++ b/resource_pack/ui/inventory_screen_pocket.json @@ -1370,7 +1370,7 @@ ] } }, - { "flying_item_renderer@common.flying_item_renderer": { "layer": 21 } } + { "flying_item_renderer@common.flying_item_renderer": { "layer": 38 } } ], "button_mappings": [ { diff --git a/resource_pack/ui/npc_interact_screen.json b/resource_pack/ui/npc_interact_screen.json index 8e73420a5..c4c499993 100644 --- a/resource_pack/ui/npc_interact_screen.json +++ b/resource_pack/ui/npc_interact_screen.json @@ -327,8 +327,8 @@ "advanced_stack_panel@npc_interact.main_stack_panel": { "controls": [ { "top_pad@common.empty_panel": { "size": [ "100%", 4 ] } }, - { "add_help_p1@npc_interact.add_help_p1": {} }, - { "add_help_p2@npc_interact.add_help_p2": {} }, + { "add_help_text@npc_interact.add_help_text": {} }, + { "middle_pad@common.empty_panel": { "size": [ "100%", 12 ] } }, { "actions@npc_interact.action_panel": {} }, { "add_buttons@npc_interact.add_buttons": {} }, { "bottom_pad@common.empty_panel": { "size": [ "100%", 4 ] } } @@ -748,40 +748,120 @@ }, "help_label@edu_common.light_label": { - "size": [ "fill", "default" ] + "size": "$label_size", + "variables": [ + { + "requires": "$education_edition", + "$label_size": [ 139, "default" ] + }, + { + "requires": "(not $education_edition)", + "$label_size": [ "default", "default" ] + } + ] }, // Help text that is visible when no actions have been added "add_help_section": { "type": "stack_panel", + "orientation": "horizontal", + "size": [ "100%", "100%cm" ], "controls": [ { - "text": { - "type": "stack_panel", - "orientation": "horizontal", - "size": [ "100%", "100%cm" ], + "text_url": { + "type": "panel", + "size": [ "100%cm", "100%cm" ], + "ignored": "(not $education_edition)", "controls": [ { - "url@npc_interact.help_label": { - "text": "$url_text", - "ignored": "(not $education_edition)" + "tts_border@common.non_interact_focus_border_button": { + "tts_inherit_siblings": true, + "size": [ "100%sm + 5px", "100%sm + 5px" ], + "bindings": [ + { + "binding_name": "#tts_enabled", + "binding_name_override": "#enabled" + } + ] } }, { - "padding@common.empty_panel": { - "size": [ 23, "100%sm" ], - "ignored": "(not $education_edition)" + "wrapper_panel_url": { + "type": "stack_panel", + "orientation": "vertical", + "size": [ "100%cm", "100%c" ], + "controls": [ + { + "text_url_a@npc_interact.help_label": { + "text": "$text_url_a" + } + }, + { + "padding@common.empty_panel": { + "size": [ "100%sm", 12 ] + } + }, + { + "text_url_b@npc_interact.help_label": { + "text": "$text_url_b" + } + } + ] + } + } + ] + } + }, + { + "padding@common.empty_panel": { + "size": [ 23, 12 ], + "ignored": "(not $education_edition)" + } + }, + { + "text_command": { + "type": "panel", + "size": [ "fill", "100%cm" ], + "controls": [ + { + "tts_border@common.non_interact_focus_border_button": { + "tts_inherit_siblings": true, + "size": [ "100%sm + 5px", "100%sm + 5px" ], + "bindings": [ + { + "binding_name": "#tts_enabled", + "binding_name_override": "#enabled" + } + ] } }, { - "command@npc_interact.help_label": { - "text": "$command_text" + "wrapper_panel_command": { + "type": "stack_panel", + "orientation": "vertical", + "size": [ "100%cm", "100%c" ], + "controls": [ + { + "text_command_a@npc_interact.help_label": { + "text": "$text_command_a" + } + }, + { + "padding@common.empty_panel": { + "size": [ "100%sm", 12 ] + } + }, + { + "text_command_b@npc_interact.help_label": { + "text": "$text_command_b" + } + } + ] } } ] } - }, - { "padding@common.empty_panel": { "size": [ "100%", 12 ] } } + } ], "bindings": [ { @@ -791,14 +871,11 @@ ] }, - "add_help_p1@npc_interact.add_help_section": { - "$url_text": "npcscreen.help.url.a", - "$command_text": "npcscreen.help.command.a" - }, - - "add_help_p2@npc_interact.add_help_section": { - "$url_text": "npcscreen.help.url.b", - "$command_text": "npcscreen.help.command.b" + "add_help_text@npc_interact.add_help_section": { + "$text_url_a": "npcscreen.help.url.a", + "$text_url_b": "npcscreen.help.url.b", + "$text_command_a": "npcscreen.help.command.a", + "$text_command_b": "npcscreen.help.command.b" }, "add_buttons": { @@ -922,6 +999,7 @@ "anchor_to": "bottom_right", "offset": [ -2, -2 ], "size": [ 18, 18 ], + "$button_tts_name|default": "key.immersivereader", "layer": 5, "ignored": "($is_worldbuilder or not $education_edition)", "bindings": [ @@ -1221,7 +1299,7 @@ // ----------------------------------------------- // Base window // ----------------------------------------------- - "close_button_base": { + "close_button_base@common.back_button": { "type": "button", "size": [ 21, 21 ], "layer": 10, @@ -1230,9 +1308,9 @@ "default_control": "default", "hover_control": "hover", "pressed_control": "pressed", - "focus_enabled": false, "$close_button_panel_size": [ 15, 15 ], "$close_button_to_button_id": "button.menu_exit", + "$button_text": "", "button_mappings": [ { diff --git a/resource_pack/ui/pause_screen.json b/resource_pack/ui/pause_screen.json index 860c509d0..8c4a3a87c 100644 --- a/resource_pack/ui/pause_screen.json +++ b/resource_pack/ui/pause_screen.json @@ -32,6 +32,46 @@ "size": [ 24, 12 ] }, + "alex_icon": { + "type": "image", + "texture": "textures/ui/icon_alex", + "layer": 1, + "size": [ 16, 16 ] + }, + + "profile_gamerpic": { + "type": "image", + "size": [ 16, 16 ], + "layer": 2, + "bindings": [ + { + "binding_name": "#gamerpic_texture_path", + "binding_name_override": "#texture" + }, + { + "binding_name": "#gamerpic_texture_location_type", + "binding_name_override": "#texture_file_system" + }, + { + "binding_name": "$gamerpic_visible", + "binding_name_override": "#visible" + } + ] + }, + + "button_x@common.gamepad_helper_x_14": { + "$gamepad_helper_visible_binding_type": "none", + "anchor_from": "left_middle", + "anchor_to": "left_middle", + "layer": -1, + "bindings": [ + { + "binding_name": "$button_x_visible", + "binding_name_override": "#visible" + } + ] + }, + //--------------------------------------------------------------------------- // Skins Panel //--------------------------------------------------------------------------- @@ -41,22 +81,15 @@ "size": [ "100%c", "100%cm" ], "controls": [ { - "button_x@common.gamepad_helper_x_14": { - "$gamepad_helper_visible_binding_type": "none", - "anchor_from": "left_middle", - "anchor_to": "left_middle", - "layer": -1, - "bindings": [ - { - "binding_name": "#can_change_skin", - "binding_name_override": "#visible" - } - ] + "button_x@pause.button_x": { + "offset": [ 1, -1 ], + "$button_x_visible": "#can_change_skin" } }, { "button_label_panel": { "type": "panel", + "offset": [ -1, 0 ], "size": [ "100%c", "100%c" ], "anchor_from": "right_middle", "anchor_to": "right_middle", @@ -86,9 +119,9 @@ "type": "panel" }, - "change_profile_button_gamepad@common_buttons.light_content_form_fitting_button": { + "dressing_room_button_gamepad@common_buttons.light_content_form_fitting_button": { "size": [ "100%c", "100%c" ], - "$button_content_size_override": [ "100%c - 4px", "100%c - 4px" ], + "$button_content_size_override": [ "100%c - 2px", "100%c - 4px" ], "$pressed_button_name": "button.to_profile_or_skins_screen", "anchor_from": "bottom_middle", "anchor_to": "bottom_middle", @@ -99,7 +132,6 @@ "$pressed_alpha": 0.65, "$hide_description": true, "$visibility_binding_type|default": "global", - "$button_tts_header": "accessibility.start.profile", "variables": [ { "requires": "$nx_os", @@ -109,13 +141,13 @@ "bindings": [ { "binding_type": "$visibility_binding_type", - "binding_name": "#is_using_gamepad", + "binding_name": "#dressing_room_controller_button_visible", "binding_name_override": "#visible" } ] }, - "change_profile_button@common_buttons.light_text_form_fitting_button": { + "dressing_room_button@common_buttons.light_text_form_fitting_button": { "$pressed_button_name": "button.to_profile_or_skins_screen", "$form_fitting_min_size": [ "100%c + 2px", 24 ], "anchor_from": "bottom_middle", @@ -123,15 +155,129 @@ "$button_text": "profileScreen.header", "$focus_id": "profile_button", "$pressed_alpha": 0.65, - "$button_tts_header": "accessibility.start.profile", "bindings": [ { - "binding_name": "(not #is_using_gamepad)", + "binding_name": "#dressing_room_button_visible", "binding_name_override": "#visible" } ] }, + "profile_button_content": { + "type": "stack_panel", + "size": [ "100%c", 24 ], + "orientation": "horizontal", + "controls": [ + { + "button_offset_wrapper": { + "type": "panel", + "size": [ "100%c - 12px", "100%c" ], + "bindings": [ + { + "binding_name": "#profile_button_x_icon_visible", + "binding_name_override": "#visible" + } + ], + "controls": [ + { + "button_x@pause.button_x": { + "$button_x_visible": "#profile_button_x_icon_visible", + "offset": [ -6, -4 ] + } + } + ] + } + }, + { + "gamerpic_offset_wrapper": { + "type": "panel", + "size": [ "100%c", "100%c" ], + "bindings": [ + { + "binding_name": "(not #profile_button_x_icon_visible)", + "binding_name_override": "#visible" + } + ], + "controls": [ + { + "gamerpic_with_border": { + "type": "panel", + "size": [ 18, 18 ], + "offset": [ -2, 0 ], + "controls": [ + { + "gamerpic@pause.profile_gamerpic": { + "$gamerpic_visible": "#is_signed_in_xbl" + } + }, + { + "alex_icon@pause.alex_icon": { + "bindings": [ + { + "binding_name": "(not #is_signed_in_xbl)", + "binding_name_override": "#visible" + } + ] + } + }, + { + "border_black@common.focus_border_black": { + "layer": 3, + "size": [ 18, 18 ] + } + } + ] + } + } + ] + } + }, + { + "padding_middle@common.empty_panel": { + "size": [ 2, "100%" ] + } + }, + { + "vertically_central_text": { + "type": "stack_panel", + "orientation": "vertical", + "size": [ "100%c", "100%c" ], + "controls": [ + { + "top_padding": { + "type": "panel", + "size": [ "0px", 4 ] + } + }, + { + "profile_button_label@common_buttons.new_ui_binding_button_label": { + "layer": 1, + "$button_text": "menu.profile", + "$button_text_size": [ "default", "default" ], + "$button_text_max_size": [ "default", 20 ], + "$button_text_binding_type": "none", + "$button_binding_condition": "none", + "$button_text_grid_collection_name": "" + } + } + ] + } + }, + { + "padding_right@common.empty_panel": { + "size": [ 6, "100%" ] + } + } + ] + }, + + "profile_button@common_buttons.light_content_form_fitting_button": { + "size": [ "100%c", "100%c" ], + "$button_content_size_override": [ "100%c", "100%c - 4px" ], + "$button_content": "pause.profile_button_content", + "$pressed_button_name": "button.menu_profile" + }, + "skin_viewer_panel": { "type": "input_panel", "anchor_from": "bottom_middle", @@ -262,16 +408,57 @@ "type": "panel", "size": [ "100%", "100%c" ], "controls": [ - { "profile_button@pause.change_profile_button": {} } + { "dressing_room_button@pause.dressing_room_button": {} } ] } }, { "centering_panel_2": { - "type": "panel", + "type": "input_panel", "size": [ "100%", "100%c" ], + "button_mappings": [ + { + "from_button_id": "button.controller_select", + "to_button_id": "button.to_profile_or_skins_screen", + "mapping_type": "global", + "scope": "controller" + } + ], "controls": [ - { "profile_button_gamepad@pause.change_profile_button_gamepad": {} } + { "dressing_room_button_gamepad@pause.dressing_room_button_gamepad": {} } + ], + "bindings": [ + { + "binding_name": "#dressing_room_controller_button_visible", + "binding_name_override": "#visible" + } + ] + } + }, + { + "centering_panel_3": { + "type": "input_panel", + "size": [ "100%", "100%c" ], + "button_mappings": [ + { + "from_button_id": "button.controller_select", + "to_button_id": "button.menu_profile", + "mapping_type": "global", + "scope": "controller" + } + ], + "controls": [ + { + "profile_button@pause.profile_button": { + "$focus_id": "profile_button" + } + } + ], + "bindings": [ + { + "binding_name": "#profile_button_b_visible", + "binding_name_override": "#visible" + } ] } } @@ -305,7 +492,7 @@ "anchor_to": "top_middle", "anchor_from": "top_middle", "$button_focus_precedence": 1, - "$focus_override_up": "achievements_button_focus", + "$focus_override_up": "icon_panel_main_focus", "variables": [ { "requires": "$is_editor_playtest_roundtrip", @@ -506,7 +693,7 @@ "$button_text": "pauseScreen.quit", "anchor_to": "top_middle", "anchor_from": "top_middle", - "$focus_override_down": "achievements_button_focus", + "$focus_override_down": "icon_panel_main_focus", "variables": [ { "requires": "($is_secondary_client and not $is_editor_playtest_roundtrip)", @@ -531,9 +718,10 @@ "$button_tts_header": "accessibility.start.feedback", "$pressed_button_name": "button.feedback", "controls": [ - { "feedback_button@pause.feedback_button": { - "ignored": "$education_edition", - "$focus_override_left": "FOCUS_OVERRIDE_STOP" + { + "feedback_button@pause.feedback_button": { + "ignored": "$education_edition", + "$focus_override_left": "FOCUS_OVERRIDE_STOP" } } ] @@ -550,9 +738,15 @@ "type": "panel", "$button_tts_header": "menu.achievements", "controls": [ - { "achievements_button@pause.achievements_button": { - "ignored": "$education_edition", - "$focus_id": "achievements_button_focus" + { + "achievements_button@pause.achievements_button": { + "ignored": "$education_edition", + "variables": [ + { + "requires": "$achievements_button_focus", + "$focus_id": "icon_panel_main_focus" + } + ] } } ] @@ -560,6 +754,7 @@ "take_screenshot_button@common_buttons.light_glyph_button": { "$pressed_button_name": "button.screenshot", + "$focus_id": "icon_panel_main_focus", "$button_tts_header": "key.screenshot", "size": [ 24, 24 ], "$button_content": "pause.take_screenshot_icon", @@ -596,12 +791,6 @@ "mapping_type": "global", "scope": "controller" }, - { - "from_button_id": "button.controller_select", - "to_button_id": "button.to_profile_or_skins_screen", - "mapping_type": "global", - "scope": "controller" - }, { "from_button_id": "button.menu_tab_left", "to_button_id": "button.menu_tab_left", @@ -763,7 +952,16 @@ "ignored": "$education_edition", "size": [ 28, 32 ], "controls": [ - { "feedback_icon_button@pause.feedback_icon_button": {} } + { + "feedback_icon_button@pause.feedback_icon_button": { + "variables": [ + { + "requires": "$feedback_button_focus", + "$focus_id": "icon_panel_main_focus" + } + ] + } + } ] } }, @@ -808,12 +1006,72 @@ ], "bindings": [ { - "binding_name": "#show_clubs", + "binding_name": "#screenshot_button_visible", "binding_name_override": "#visible", "binding_type": "global" } ] } + }, + { + "screenshot_padding": { + "type": "panel", + "size": [ "2%", 0 ], + "bindings": [ + { + "binding_name": "#screenshot_button_visible", + "binding_name_override": "#visible", + "binding_type": "global" + } + ] + } + }, + { + "profile_btn_padding_left": { + "type": "panel", + "size": [ "2%", 0 ], + "bindings": [ + { + "binding_name": "#profile_button_a_visible", + "binding_name_override": "#visible" + } + ] + } + }, + { + "profile_btn@pause.column_frame": { + "size": [ "100%c", 32 ], + "controls": [ + { + "profile_button@pause.profile_button": { + "variables": [ + { + "requires": "$profile_button_focus", + "$focus_id": "icon_panel_main_focus" + } + ] + } + } + ], + "bindings": [ + { + "binding_name": "#profile_button_a_visible", + "binding_name_override": "#visible" + } + ] + } + }, + { + "profile_btn_padding_right": { + "type": "panel", + "size": [ "4%", 0 ], + "bindings": [ + { + "binding_name": "#profile_button_a_visible", + "binding_name_override": "#visible" + } + ] + } } ] } diff --git a/resource_pack/ui/pdp_screen.json b/resource_pack/ui/pdp_screen.json index d4a26bda7..ee7422b1c 100644 --- a/resource_pack/ui/pdp_screen.json +++ b/resource_pack/ui/pdp_screen.json @@ -350,6 +350,9 @@ "purchase_button_base@common_buttons.light_content_button": { "$pressed_button_name": "$button_action", "$focus_id": "$interact_button_id", + "size": [ "100%", 20 ], + "$focus_border_size_override": [ "100%", 20 ], + "$button_image_size_override": [ "100% - 2px", 18 ], "$is_purchase_button": true, "enabled": false, "bindings": [ @@ -360,66 +363,12 @@ ] }, - "purchase_buttons_panel": { - "type": "stack_panel", - "layer": 3, - "size": [ "100%", "100%" ], - "anchor_from": "left_middle", - "anchor_to": "left_middle", - "orientation": "horizontal", - "$button_action|default": "button.defaultNoAction", - "$interact_button_id|default": "interact_button", - "$purchase_button_visible|default": "#purchase_panel_visible", - "$is_purchase_button": true, - "visible": false, - "controls": [ - { - "purchase_with_coins_button@pdp.purchase_button_base": { - "size": [ "fill", "100%" ], - "$button_text_bind_name": "#purchase_with_coins_button_text", - "$interact_button_id|default": "button.purchase_with_coins", - "$button_content": "pdp.large_button_coin_purchase_label", - "$markdown_size": [ "100% + 2px", "100% + 4px" ], - "$ignore_markdown_filler_panel": "#is_on_sale" - } - }, - { - "purchase_currency_button_panel": { - "type": "panel", - "$button_size_override|default": [ "50%", "100%" ], - "size": "$button_size_override", - "visible": false, - "bindings": [ - { - "binding_name": "#currency_purchase_visible", - "binding_name_override": "#visible" - } - ], - "variables": [ - { - "requires": "#expand_purchase_button", - "$button_size_override": [ "50%", "100%" ] - } - ], - "controls": [ - { - "purchase_with_currency_button@pdp.purchase_button_base": { - "$button_focus_precedence": 10, - "$button_action": "button.purchase_with_currency", - "$button_size_override": [ "100% - 2px", "100%" ], - "$button_content": "pdp.currency_purchase_label" - } - } - ] - } - } - ], - "bindings": [ - { - "binding_name": "$purchase_button_visible", - "binding_name_override": "#visible" - } - ] + "deactivated_purchase_button_base@common_buttons.deactivated_light_content_button": { + "$pressed_button_name": "$button_action", + "$focus_id": "$interact_button_id", + "size": [ "100%", 20 ], + "$focus_border_size_override": [ "100%", 20 ], + "$button_image_size_override": [ "100% - 2px", 18 ] }, "download_buttons_panel": { @@ -636,10 +585,6 @@ "controls": [ { "smooth_purchase_with_coins_button@pdp.purchase_button_base": { - "size": [ "100%", 20 ], - "$focus_border_size_override": [ "100%", 20 ], - "$button_image_size_override": [ "100% - 2px", 18 ], - "$button_focus_precedence": 8, "$button_action": "button.purchase_with_coins", "$interact_button_id|default": "button.purchase_with_coins", @@ -674,13 +619,6 @@ "controls": [ { "purchase_with_currency_button@pdp.purchase_button_base": { - "size": [ "100%", 20 ], - "$focus_border_size_override": [ "100%", 20 ], - "$button_image_size_override": [ "100% - 2px", 18 ], - - "$button_offset": [ 0, 0 ], - "$button_pressed_offset": [ 0, 1 ], - "$button_focus_precedence": 10, "$button_action": "button.purchase_with_currency", "$button_content": "pdp.currency_purchase_label", @@ -711,15 +649,10 @@ "size": [ "100%", "100%c" ], "controls": [ { - "deactivated_smooth_purchase_with_coins_button@common_buttons.deactivated_light_content_button": { - "size": [ "100%", 20 ], - "$focus_border_size_override": [ "100%", 20 ], - "$button_image_size_override": [ "100% - 2px", 18 ], + "deactivated_smooth_purchase_with_coins_button@pdp.deactivated_purchase_button_base": { "enabled": true, "$button_focus_precedence": 8, - "$pressed_button_name": "$button_action", "$interact_button_id|default": "button.purchase_with_coins", - "$focus_id": "$interact_button_id", "$button_content": "pdp.disabled_smooth_coin_purchase_label_formfitting", "$is_purchase_button": true } @@ -751,17 +684,8 @@ ], "controls": [ { - "purchase_with_currency_button@common_buttons.deactivated_light_content_button": { - "size": [ "100%", 20 ], - "$focus_border_size_override": [ "100%", 20 ], - "$button_image_size_override": [ "100% - 2px", 18 ], - - "$button_offset": [ 0, 0 ], - "$button_pressed_offset": [ 0, 1 ], - + "deactivated_purchase_with_currency_button@pdp.deactivated_purchase_button_base": { "$button_focus_precedence": 10, - "$pressed_button_name": "$button_action", - "$focus_id": "$interact_button_id", "$button_content": "pdp.currency_purchase_label", "$text_size": [ "100%", "100%" ] } @@ -2889,7 +2813,7 @@ "csb_expiration": { "type": "panel", - "size": [ "100%", 16 ], + "size": [ "100%", 14 ], "offset": [ 0, 0.5 ], "anchor_from": "bottom_middle", "anchor_to": "bottom_middle", @@ -2900,8 +2824,8 @@ "size": [ "100%", "100%" ], "anchor_from": "bottom_middle", "anchor_to": "bottom_middle", - "texture": "textures/ui/csbBannerBackground", - "tiled": "y", + "texture": "textures/ui/White", + "color": "$csub_text_color", "layer": 3 } }, @@ -2912,7 +2836,7 @@ "texture": "textures/ui/sidebar_icons/csb_sidebar_icon", "anchor_from": "left_middle", "anchor_to": "left_middle", - "offset": [ 2, 0 ], + "offset": [ 1, 0 ], "layer": 5 } }, @@ -2928,8 +2852,7 @@ "layer": 6, "bindings": [ { - "binding_name": "#item_csb_expiration_label", - "binding_type": "global" + "binding_name": "#item_csb_expiration_label" } ] } @@ -2977,22 +2900,17 @@ "border@common.focus_border_white": { "size": [ "100% + 2px", "100% + 2px" ], "color": "$light_border_default_color", - "layer": 1 - } - }, - { - "realms_plus_expiration_banner@pdp.realms_plus_expiration": { - "layer": 5 + "layer": 8 } }, { "csb_expiration_banner@pdp.csb_expiration": { - "layer": 5 + "layer": 4 } }, { "video_overlay_button@common.button": { - "layer": 4, + "layer": 3, "size": [ "100%", "100%" ], "focus_enabled": true, "default_control": "default", @@ -3418,73 +3336,79 @@ ] }, - "glyph_panel": { - "type": "panel", - "size": [ "100%", "100%cm" ], - "layer": 2, + // Glyph Tags + + // Requires: $glyph_texture + "glyph_icon": { + "type": "image", + "size": [ 8, 8 ], + "offset": [ 0, -1.5 ], + "anchor_from": "bottom_left", + "anchor_to": "bottom_left", + "texture": "$glyph_texture", + "color": "$body_text_color", + "bilinear": true + }, + + // Requires: $glyph_text_binding + "glyph_count_label": { + "type": "label", + "size": [ "default", 10 ], + "text_alignment": "left", + "font_type": "smooth", + "font_scale_factor": 0.8, + "color": "$body_text_color", + "text": "$glyph_text_binding", + "bindings": [ + { + "binding_type": "global", + "binding_name": "$glyph_text_binding", + "binding_condition": "visible" + } + ] + }, + + // Requires: $glyph_text_binding, $pressed_button_name + "glyph_count_underline_button@common_buttons.underline_button": { + "$single_label_size": [ "default", 9 ], + "$single_line_label_offset": [ 0, -1 ], + "anchor_from": "top_left", + "anchor_to": "top_left", + "$single_line_label_text": "$glyph_text_binding", + "$label_text_bindings": [ + { + "binding_type": "global", + "binding_name": "$glyph_text_binding", + "binding_condition": "visible" + } + ] + }, + + // Requires: $glyph_text_binding, $pressed_button_name, $glyph_button_hover_bind + "glyph_count_hover_underline_button_panel@common.empty_panel": { + "size": [ 32, 10 ], + "$glyph_button_hover_bind|default": "glyph_button.is_hovered", + "$glyph_hover_control|default": "pdp.glyph_panel_hover_popup", "controls": [ { - "item_glyph_count_panel": { - "anchor_from": "top_left", - "anchor_to": "top_left", - "type": "stack_panel", - "orientation": "horizontal", - "size": [ "100%c", 10 ], - "offset": [ 1, -2 ], - "layer": 2, - "controls": [ + "glyph_hover_popup@$glyph_hover_control": {} + }, + { + "glyph_count_underline_button@pdp.glyph_count_underline_button": { + "button_mappings": [ { - "glyph_icon_panel": { - "type": "panel", - "size": [ 8, "100%" ], - "controls": [ - { - "glyph_icon": { - "type": "image", - "size": [ 8, 8 ], - "offset": [ 0, -1.5 ], - "texture": "$item_glyph_texture", - "color": "$body_text_color", - "bilinear": true, - "anchor_from": "bottom_left", - "anchor_to": "bottom_left" - } - } - ] - } + "to_button_id": "$glyph_button_hover_bind", + "mapping_type": "pressed" }, { - "center_item_glyph_padding": { - "type": "panel", - "size": [ 2, "100%" ] - } + "from_button_id": "button.menu_select", + "to_button_id": "$pressed_button_name", + "mapping_type": "pressed" }, { - "item_glyph_count_panel_label": { - "type": "label", - "size": [ "default", 8 ], - "text_alignment": "left", - "font_type": "smooth", - "font_scale_factor": 0.8, - "color": "$body_text_color", - "text": "$item_glyph_text_binding", - "bindings": [ - { - "binding_type": "$store_factory_collection_details", - "binding_collection_name": "$store_factory_collection_name", - "binding_collection_prefix": "$store_factory_collection_prefix" - }, - { - "binding_type": "$mashup_collection_binding_type", - "binding_collection_name": "$mashup_collection_name", - "binding_name": "$item_glyph_text_binding", - "binding_condition": "visible" - } - ] - } - }, - { - "item_glyph_panel_padding@pdp.horizontal_padding_8px": {} + "from_button_id": "button.menu_ok", + "to_button_id": "$pressed_button_name", + "mapping_type": "focused" } ] } @@ -3492,119 +3416,81 @@ ] }, - "horizontal_glyph_section_content@pdp.glyph_panel": { - "bindings": [ + // Requires: $item_glyph_count_visible_binding + "glyph_icon_with_count@common.horizontal_stack_panel": { + "size": [ "100%c", 10 ], + "$glyph_label_content|default": "pdp.glyph_count_label", + "controls": [ { - "binding_type": "$store_factory_collection_details", - "binding_collection_name": "$store_factory_collection_name", - "binding_collection_prefix": "$store_factory_collection_prefix" + "glyph_icon@pdp.glyph_icon": {} }, { - "binding_type": "$mashup_collection_binding_type", - "binding_collection_name": "$mashup_collection_name", - "binding_name": "$item_glyph_count_visible_binding", - "binding_name_override": "#visible" - } - ] - }, - - "vertical_glyph_section_content": { - "size": [ "100%", "100%cm" ], - "type": "stack_panel", - "orientation": "vertical", - "controls": [ - { - "glyph_content@pdp.glyph_panel": {} + "horizontal_padding@common.empty_panel": { "size": [ 2, "100%" ] } }, { - "bottom_glyph_content_padding@pdp.vertical_padding_2px": {} + "item_glyph_count_panel_label@$glyph_label_content": {} } ], "bindings": [ { - "binding_type": "$store_factory_collection_details", - "binding_collection_name": "$store_factory_collection_name", - "binding_collection_prefix": "$store_factory_collection_prefix" - }, - { - "binding_type": "$mashup_collection_binding_type", - "binding_collection_name": "$mashup_collection_name", + "binding_type": "global", "binding_name": "$item_glyph_count_visible_binding", "binding_name_override": "#visible" } ] }, - "glyph_section_panel": { - "type": "panel", - "size": [ "100%", "100%cm" ], - "layer": 2, - "anchor_to": "top_right", - "anchor_from": "top_right", + "glyph_panel_hover_popup@common.dynamic_tooltip_popup_with_image_and_text": { + "$tooltip_panel_offset": [ "-45%", "-10px" ], + "$tooltip_popup_image": "textures/ui/infobulb", + "$tooltip_button_binding_type": "global", + "$tooltip_button_collection_name": "", + "$tooltip_popup_visible_binding": "#glyph_hover_visible", + "$tooltip_hovered_to_button_id": "$glyph_button_hover_bind" + }, + + "glyph_panel_mashup_hover_popup@common.dynamic_custom_tooltip_below": { + "$tooltip_panel_offset": [ "-45%", "10px" ], + "$tooltip_popup_image": "textures/ui/infobulb", + "$tooltip_button_binding_type": "global", + "$tooltip_button_collection_name": "", + "$tooltip_popup_visible_binding": "#glyph_hover_visible", + "$tooltip_hovered_to_button_id": "glyph_button.is_hovered", + "$pressed_button_name": "button.navigate_to_store_search_mashup", + "$tooltip_content": "pdp.mashup_glyph_tooltip_content" + }, + "mashup_glyph_tooltip_content@common.vertical_stack_panel": { + "size": [ "100%cm", "100%c" ], + "$glyph_label_content": "pdp.glyph_count_label", "controls": [ { - "glyphs": { - "type": "stack_panel", - "orientation": "$glyph_section_orientation", - "size": "$glyph_section_size", - - "$mashup_collection_binding_type|default": "global", - "$mashup_collection_name|default": "", - "$glyph_section_only_show_count|default": false, - + "mashup_text_row@common.horizontal_stack_panel": { + "size": [ "100%c", 12 ], "controls": [ { - "skin_glyph_section@$glyph_section_content": { - "$item_glyph_texture": "textures/ui/glyph_skin_pack_small", - "$item_glyph_text_binding": "#item_skin_count_and_label", - "$item_glyph_count_visible_binding": "#item_skin_count_visible", - "variables": [ - { - "requires": "$glyph_section_only_show_count", - "$item_glyph_text_binding": "#item_skin_count" - } - ] + "lightbulb_icon": { + "type": "image", + "size": [ 11, 11 ], + "texture": "textures/ui/infobulb" } }, { - "world_glyph_section@$glyph_section_content": { - "$item_glyph_texture": "textures/ui/glyph_world_template_small", - "$item_glyph_text_binding": "#item_world_template_count_and_label", - "$item_glyph_count_visible_binding": "#item_world_template_count_visible", - "variables": [ - { - "requires": "$glyph_section_only_show_count", - "$item_glyph_text_binding": "#item_world_template_count" - } - ] + "mashup_line_one@common.single_line_label": { + "$single_line_label_text": "store.mashup.hover.label.mashup.lineOne", + "$font_type": "default" } - }, - { - "resource_pack_glyph_section@$glyph_section_content": { - "$item_glyph_texture": "textures/ui/glyph_resource_pack_small", - "$item_glyph_text_binding": "#item_resource_pack_count_and_label", - "$item_glyph_count_visible_binding": "#item_resource_pack_count_visible", - "variables": [ - { - "requires": "$glyph_section_only_show_count", - "$item_glyph_text_binding": "#item_resource_pack_count" - } - ] - } - }, + } + ] + } + }, + { "mashup_line_two@common.single_line_label": { "$single_line_label_text": "store.mashup.hover.label.mashup.lineTwo" } }, + { + "offset_panel@common.empty_panel": { + "size": [ "100%cm", "100%cm" ], + "controls": [ { - "addon_pack_glyph_section@$glyph_section_content": { - "$item_glyph_texture": "textures/ui/glyph_addon_pack_small", - "$item_glyph_text_binding": "#item_addon_pack_count_and_label", - "$item_glyph_count_visible_binding": "#item_addon_pack_count_visible", - "variables": [ - { - "requires": "$glyph_section_only_show_count", - "$item_glyph_text_binding": "#item_addon_pack_count" - } - ] - } + "basic_vertical_glyph_section_panel@pdp.basic_vertical_glyph_section_panel": { "offset": [ 2, 0 ] } } ] } @@ -3612,17 +3498,80 @@ ] }, - "horizontal_glyph_section_panel@pdp.glyph_section_panel": { - "$glyph_section_orientation": "horizontal", - "$glyph_section_size": [ "100% - 4px", "100%cm" ], - "$glyph_section_content": "pdp.horizontal_glyph_section_content" + "glyph_section_mashup@pdp.glyph_icon_with_count": { + "$glyph_texture": "textures/ui/glyph_mashup_pack_small", + "$glyph_text_binding": "#item_mashup_count_and_label", + "$item_glyph_count_visible_binding": "#item_mashup_count_visible", + "$pressed_button_name": "button.navigate_to_store_search_mashup", + "$tooltip_text_binding_name": "#glyph_hover_text_mashup", + "$glyph_hover_control": "pdp.glyph_panel_mashup_hover_popup" + }, + + "glyph_section_skin@pdp.glyph_icon_with_count": { + "$glyph_texture": "textures/ui/glyph_skin_pack_small", + "$glyph_text_binding": "#item_skin_count_and_label", + "$item_glyph_count_visible_binding": "#item_skin_count_visible", + "$pressed_button_name": "button.navigate_to_store_search_skin", + "$tooltip_text_binding_name": "store.mashup.hover.label.skin", + "$tooltip_text_binding_type": "none" + }, + + "glyph_section_resource_pack@pdp.glyph_icon_with_count": { + "$glyph_texture": "textures/ui/glyph_resource_pack_small", + "$glyph_text_binding": "#item_resource_pack_count_and_label", + "$item_glyph_count_visible_binding": "#item_resource_pack_count_visible", + "$pressed_button_name": "button.navigate_to_store_search_resource", + "$tooltip_text_binding_name": "store.mashup.hover.label.texturePack", + "$tooltip_text_binding_type": "none" + }, + + "glyph_section_world@pdp.glyph_icon_with_count": { + "$glyph_texture": "textures/ui/glyph_world_template_small", + "$glyph_text_binding": "#item_world_template_count_and_label", + "$item_glyph_count_visible_binding": "#item_world_template_count_visible", + "$pressed_button_name": "button.navigate_to_store_search_world", + "$tooltip_text_binding_name": "store.mashup.hover.label.world", + "$tooltip_text_binding_type": "none" + }, + + "glyph_section_addon@pdp.glyph_icon_with_count": { + "$glyph_texture": "textures/ui/glyph_addon_pack_small", + "$glyph_text_binding": "#item_addon_pack_count_and_label", + "$item_glyph_count_visible_binding": "#item_addon_pack_count_visible", + "$pressed_button_name": "button.navigate_to_store_search_addon", + "$tooltip_text_binding_name": "store.mashup.hover.label.addonPack", + "$tooltip_text_binding_type": "none" }, - "vertical_glyph_section_panel@pdp.glyph_section_panel": { + "basic_vertical_glyph_section_panel@common.vertical_stack_panel": { + "size": [ "100%c", "100%c" ], + "controls": [ + { "glyph_section_skin@pdp.glyph_section_skin": {} }, + { "glyph_section_world@pdp.glyph_section_world": {} }, + { "glyph_section_resource_pack@pdp.glyph_section_resource_pack": {} }, + { "glyph_section_addon@pdp.glyph_section_addon": {} } + ] + }, + + "vertical_glyph_section_panel@common.vertical_stack_panel": { "size": [ "100%", "100%cm" ], - "$glyph_section_orientation": "vertical", - "$glyph_section_size": [ "100%", "100%c" ], - "$glyph_section_content": "pdp.vertical_glyph_section_content" + "$glyph_label_content": "pdp.glyph_count_hover_underline_button_panel", + "controls": [ + { "glyph_section_mashup@pdp.glyph_section_mashup": {} }, + { + "basic_vertical_glyph_section_panel@pdp.basic_vertical_glyph_section_panel": { + "visible": false, + "bindings": [ + { + "binding_type": "global", + "binding_name": "(not #item_mashup_count_visible)", + "binding_name_override": "#visible", + "binding_condition": "once" + } + ] + } + } + ] }, "summary_text_panel": { diff --git a/resource_pack/ui/persona_SDL.json b/resource_pack/ui/persona_SDL.json index 5776138c7..034f972c9 100644 --- a/resource_pack/ui/persona_SDL.json +++ b/resource_pack/ui/persona_SDL.json @@ -446,6 +446,13 @@ ] }, + "enter_screen_appearance_size_animation@common.screen_entrance_size_animation_immediate": { + "duration": "$transition_time_pop", + "play_event": "anim.appearance_enter", + "end_event": "screen.entrance_end", + "resettable": true + }, + ///////////////////////////////////////////////////////////////////////////////////////////////// // Persona Height Options ///////////////////////////////////////////////////////////////////////////////////////////////// @@ -2190,6 +2197,7 @@ "text_alignment": "center", "text": "$realms_button_text", "color": "$text_color", + "$realms_button_text_offset|default": [ 0, 0 ], "offset": "$realms_button_text_offset" } } @@ -2199,7 +2207,7 @@ "realms_redeem_button@common_buttons.light_content_button": { "max_size": [ "50%", "100%" ], "size": [ 300, "100%" ], - "$realms_button_text_offset|default": [ 0, 0 ], + "$realms_button_text_offset": [ 8, 0 ], "$pressed_button_name": "button.redeem_realms_item", "$button_content": "persona_sdl.realms_redeem_button_content", "$realms_button_text": "persona.realms.redeem", @@ -2213,7 +2221,7 @@ "realms_subscription_button@common_buttons.light_content_button": { "size": [ "50%", "100%" ], - "$realms_button_text_offset|default": [ 8, 0 ], + "$realms_button_text_offset": [ 8, 0 ], "$pressed_button_name": "button.see_realms_subscription", "$button_content": "persona_sdl.realms_redeem_button_content", "$realms_button_text": "persona.realms.see.subscription", diff --git a/resource_pack/ui/persona_screen.json b/resource_pack/ui/persona_screen.json index ca48839ea..40af9f989 100644 --- a/resource_pack/ui/persona_screen.json +++ b/resource_pack/ui/persona_screen.json @@ -273,12 +273,13 @@ "use_skin_gui_scale": true, "rotation": "gesture_x", "animation_reset_name": "screen_animation_reset", - "anims": [ + "$skin_model_anims|default": [ "@common.screen_exit_size_animation_push", "@common.screen_exit_size_animation_pop", "@common.screen_entrance_size_animation_push", "@common.screen_entrance_size_animation_pop" ], + "anims": "$skin_model_anims", "bindings": [ { "binding_type": "global", @@ -352,7 +353,7 @@ "anchor_from": "bottom_left", "bindings": [ { - "binding_name": "#skin_color_option_on", + "binding_name": "#left_skin_color_option_on", "binding_name_override": "#visible" } ], @@ -427,6 +428,42 @@ "anchor_to": "bottom_right", "anchor_from": "bottom_right", "controls": [ + { + "skin_color_picker_button_container": { + "type": "panel", + "size": [ "100%c", "100%c" ], + "anchor_to": "bottom_left", + "anchor_from": "bottom_left", + "bindings": [ + { + "binding_name": "#right_skin_color_option_on", + "binding_name_override": "#visible" + } + ], + "controls": [ + { + "skin_color_picker_button@persona.skin_color_picker": { + "size": [ 23, 22 ], + "$focus_id": "skin_color_picker_button", + "bindings": [ + { + "binding_name": "(not #expanded_appearance_visible)", + "binding_name_override": "#visible" + }, + { + "binding_name": "#skin_color_option_enabled", + "binding_name_override": "#enabled" + }, + { + "binding_name": "#skin_color_option_enabled", + "binding_name_override": "#focus_enabled" + } + ] + } + } + ] + } + }, { "info_button@persona.info_button": { "size": [ 22, 22 ], @@ -617,6 +654,7 @@ "text_alignment": "center", "text": "$realms_button_text", "color": "$text_color", + "$realms_button_text_offset|default": [ 0, 0 ], "offset": "$realms_button_text_offset", "bindings": [ { @@ -632,7 +670,7 @@ "realms_redeem_button@common_buttons.light_content_button": { "max_size": [ "50%", "100%" ], "size": [ "fill", "100%" ], - "$realms_button_text_offset|default": [ 0, 0 ], + "$realms_button_text_offset": [ 8, 0 ], "$pressed_button_name": "button.redeem_realms_item", "$button_content": "persona.realms_redeem_button_content", "$realms_button_text": "persona.realms.redeem", @@ -646,7 +684,7 @@ "realms_subscription_button@common_buttons.light_content_button": { "size": [ "50%", "100%" ], - "$realms_button_text_offset|default": [ 8, 0 ], + "$realms_button_text_offset": [ 8, 0 ], "$pressed_button_name": "button.see_realms_subscription", "$button_content": "persona.realms_redeem_button_content", "$realms_button_text": "#realms_subscription_button_text", @@ -1586,6 +1624,7 @@ "right_side_stack@common.vertical_stack_panel": { "size": [ "fill", "100%" ], "$right_side_default_text_color": "$dressing_room_right_side_default_text_color", + "$left_focus_container_override|default": "left_main_panel", "focus_container": true, "use_last_focus": false, "focus_wrap_enabled": false, @@ -1600,7 +1639,7 @@ ], "focus_container_custom_left": [ { - "other_focus_container_name": "persona_left_panels" + "other_focus_container_name": "$left_focus_container_override" } ], @@ -7307,6 +7346,7 @@ "persona_offer_panel_content@common.vertical_stack_panel": { "size": [ "100%", "100%" ], "layer": 2, + "$left_focus_container_override": "left_main_panel", "controls": [ { "space@persona.vertical_2_padding": {} }, { "persona_left_panels@persona.persona_section_panels": {} }, @@ -7362,6 +7402,7 @@ { "stack_panel@common.horizontal_stack_panel": { "size": [ "100%", "100%" ], + "$left_focus_container_override": "left_main_panel", "controls": [ { "left_main_panel_padding@persona.horizontal_2_padding": {} }, { "left_main_panel@persona.persona_left_panel": {} }, diff --git a/resource_pack/ui/progress_screen.json b/resource_pack/ui/progress_screen.json index 82a4482f9..b33f71591 100644 --- a/resource_pack/ui/progress_screen.json +++ b/resource_pack/ui/progress_screen.json @@ -958,7 +958,7 @@ "type": "panel", "size": [ "100%c", "100%c" ], "controls": [ - { "fetch_cloud_image@progress.cloud_image": { "offset": [ -6, 5 ] } } + { "download_cloud_image@progress.cloud_image": { "offset": [ -6, 5 ] } } ] } }, @@ -983,7 +983,7 @@ "type": "panel", "size": [ "100%c", "100%c" ], "controls": [ - { "fetch_world_image@progress.world_image": { "offset": [ 6, 1 ] } } + { "download_world_image@progress.world_image": { "offset": [ 6, 1 ] } } ] } } @@ -1629,6 +1629,66 @@ } ] } + }, + { + "vertical_padding_4": { + "type": "panel", + "size": [ 0, 5 ], + "bindings": [ + { + "binding_name": "#generic_download_error_link_visible", + "binding_name_override": "#visible" + } + ] + } + }, + { + "generic_download_error_support_hypertext@edu_common.underline_button": { + "size": [ "100%c", "100%c" ], + "$single_label_size": [ "default", "default" ], + "$single_line_font_scale_factor": 1, + "$pressed_button_name": "button.eduCloud_generic_download_error_support", + "$single_line_label_text": "edu.cloudError.generic.linkDescription", + "$font_type": "smooth", + "anchor_from": "top_left", + "anchor_to": "top_left", + "bindings": [ + { + "binding_name": "#generic_download_error_link_visible", + "binding_name_override": "#visible" + } + ] + } + }, + { + "vertical_padding_5": { + "type": "panel", + "size": [ 0, 5 ], + "bindings": [ + { + "binding_name": "#unauthorized_download_error_link_visible", + "binding_name_override": "#visible" + } + ] + } + }, + { + "unauthorized_download_error_support_hypertext@edu_common.underline_button": { + "size": [ "100%c", "100%c" ], + "$single_label_size": [ "default", "default" ], + "$single_line_font_scale_factor": 1, + "$pressed_button_name": "button.eduCloud_unauthorized_download_error_support", + "$single_line_label_text": "edu.cloudError.generic.linkDescription", + "$font_type": "smooth", + "anchor_from": "top_left", + "anchor_to": "top_left", + "bindings": [ + { + "binding_name": "#unauthorized_download_error_link_visible", + "binding_name_override": "#visible" + } + ] + } } ] } @@ -1882,7 +1942,29 @@ "type": "panel", "controls": [ { "background@common.screen_background": {} }, - { "cloud_download_panel@progress.cloud_download_panel": {} }, + { + "cloud_download_panel@progress.cloud_download_panel": { + "bindings": [ + { "binding_name": "#progress_text" }, + { + "binding_name": "(not #edu_cloud_download_error)", + "binding_name_override": "#visible" + } + ] + } + }, + { + "cloud_download_error_panel@progress.cloud_error_panel": { + "$modal_button_panel_type": "progress.modal_ok_button_panel", + "bindings": [ + { "binding_name": "#progress_text" }, + { + "binding_name": "#edu_cloud_download_error", + "binding_name_override": "#visible" + } + ] + } + }, { "popup_dialog_factory@progress.popup_dialog_factory": {} } ] }, diff --git a/resource_pack/ui/redstone_screen.json b/resource_pack/ui/redstone_screen.json index 6bf0f5dbe..68d91e85d 100644 --- a/resource_pack/ui/redstone_screen.json +++ b/resource_pack/ui/redstone_screen.json @@ -17,6 +17,9 @@ "dispenser_label@item_dropper_label": { }, + "crafter_label@item_dropper_label": { + }, + "dropper_label@item_dropper_label": { }, @@ -44,7 +47,7 @@ "anchor_to": "top_left", "anchor_from": "top_left", "controls": [ - { "redstone_input_grid@redstone_input_grid": { } } + { "redstone_input_grid@redstone.redstone_input_grid": {} } ] }, @@ -82,6 +85,379 @@ ] }, + "crafter_input_grid": { + "type": "grid", + "anchor_from": "center", + "anchor_to": "center", + "offset": "$grid_offset", + "grid_dimensions": "$grid_dimensions", + "collection_name": "container_items", + "grid_item_template": "redstone.crafter_enabled_slot_template", + "$item_collection_name": "container_items" + }, + "cell_image": { + "type": "image", + "texture": "textures/ui/slot_enabled", + "layer": 1 + }, + + "crafter_highlight_slot": { + "type": "image", + "texture": "textures/ui/slot_enabled_hover", + "size": [ "100% - 2px", "100% - 2px" ], + "alpha": 0.8 + }, + "crafter_container_slot_button_prototype@common.container_slot_button_prototype": { + "$highlight_control|default": "redstone.crafter_highlight_slot_panel" + }, + "crafter_highlight_slot_panel": { + "type": "panel", + "controls": [ + { + "highlight@redstone.crafter_highlight_slot": { + "controls": [ + { + "hover_text@common.hover_text": { + "layer": 29, + "$hover_text_binding_name|default": "#hover_text", + "bindings": [ + { + "binding_name": "$hover_text_binding_name", + "binding_name_override": "#hover_text", + "binding_type": "collection", + "binding_collection_name": "$item_collection_name" + } + ] + } + }, + { + "bundle_tooltip@common.bundle_tooltip": { + "layer": 29, + "$hover_text_binding_name|default": "#hover_text", + "bindings": [ + { + "binding_name": "$hover_text_binding_name", + "binding_name_override": "#hover_text", + "binding_type": "collection", + "binding_collection_name": "$item_collection_name" + }, + { + "binding_name": "#hover_items_id", + "binding_name_override": "#hover_items_id", + "binding_type": "collection", + "binding_collection_name": "$item_collection_name" + } + ] + } + } + ], + "bindings": [ + { + "binding_name": "#show_persistent_bundle_hover_text", + "binding_name_override": "#visible" + } + ] + } + }, + { + "white_border@common.white_border_slot": { + "bindings": [ + { + "binding_name": "#show_persistent_bundle_hover_text", + "binding_name_override": "#visible" + } + ] + } + } + ] + }, + "crafter_enabled_slot_template@common.container_item": { + "$background_images|default": "redstone.cell_image", + "$button_ref|default": "redstone.crafter_container_slot_button_prototype" + }, + + "crafter_disabled_slot@common.button": { + "type": "button", + "anchor_from": "center", + "anchor_to": "center", + "hover_control": "hover", + "size": [ 18, 18 ], + "layer": 20, + "controls": [ + { + "default": { + "type": "image", + "texture": "textures/ui/slot_disabled" + } + }, + { + "hover": { + "type": "image", + "texture": "textures/ui/slot_enabled_hover" + } + }, + { + "pressed": { + "type": "image", + "texture": "textures/ui/slot_disabled" + } + } + ] + }, + "output_slot_hover_info": { + "type": "button", + "layer": 1, + "anchor_from": "center", + "anchor_to": "center", + "hover_control": "hover", + "size": [ 18, 18 ], + "offset": [ 54, -36 ], + "$stack_count_required": true, + "controls": [ + { + "hover@common.hover_text": { + "layer": 29, + "bindings": [ + { + "binding_name": "#crafting_preview_info", + "binding_name_override": "#hover_text" + } + ] + } + }, + { + "output_slot@common.item_renderer": { + "size": [ 16, 16 ], + "bindings": [ + { + "binding_name": "#crafter_output_item", + "binding_name_override": "#item_id_aux" + }, + { + "binding_name": "#crafter_output_item_color", + "binding_name_override": "#item_custom_color" + }, + { + "binding_name": "#crafter_output_item_shield_base_color_hovered", + "binding_name_override": "#shield_base_color" + }, + { + "binding_name": "#crafter_output_item_banner_patterns", + "binding_name_override": "#banner_patterns" + }, + { + "binding_name": "#crafter_output_item_selected_banner_colors", + "binding_name_override": "#banner_colors" + }, + { + "binding_name": "#crafter_output_item_selected_banner_type", + "binding_name_override": "#banner_type" + }, + { + "binding_name": "#crafter_output_item_selected_decorated_pot_sherds", + "binding_name_override": "#decorated_pot_sherds" + } + ] + } + }, + { + "output_slot_border": { + "type": "image", + "layer": 1, + "size": [ 26, 26 ], + "texture": "textures/ui/crafter_item_border" + } + }, + { + "output_count@common.stack_count_label": { + "layer": 20, + "size": [ 18, 18 ], + "offset": [ 14.1, 11.2 ], + "anchor_from": "center", + "anchor_to": "center", + "bindings": [ + { + "binding_name": "#output_stack_count", + "binding_name_override": "#inventory_stack_count" + } + ] + } + } + ] + }, + "panel_crafter": { + "type": "panel", + "controls": [ + { "container_gamepad_helpers@common.container_gamepad_helpers": {} }, + { "selected_item_details_factory@common.selected_item_details_factory": {} }, + { "item_lock_notification_factory@common.item_lock_notification_factory": {} }, + { + "root_panel@common.root_panel": { + "layer": 1, + "size": "$screen_dimensions", + "controls": [ + { "common_panel@common.common_panel": {} }, + { + "disabled_slot_0_button@redstone.crafter_disabled_slot": { + "offset": [ -53.9, -54.4 ], + "$pressed_button_name": "disabled_button0", + "bindings": [ + { + "binding_name": "#button_visible0", + "binding_name_override": "#visible" + } + ] + } + }, + { + "disabled_slot_1_button@redstone.crafter_disabled_slot": { + "offset": [ -36, -54.4 ], + "$pressed_button_name": "disabled_button1", + "bindings": [ + { + "binding_name": "#button_visible1", + "binding_name_override": "#visible" + } + ] + } + }, + { + "disabled_slot_2_button@redstone.crafter_disabled_slot": { + "offset": [ -18, -54.4 ], + "$pressed_button_name": "disabled_button2", + "bindings": [ + { + "binding_name": "#button_visible2", + "binding_name_override": "#visible" + } + ] + } + }, + { + "disabled_slot_3_button@redstone.crafter_disabled_slot": { + "offset": [ -53.9, -36.4 ], + "$pressed_button_name": "disabled_button3", + "bindings": [ + { + "binding_name": "#button_visible3", + "binding_name_override": "#visible" + } + ] + } + }, + { + "disabled_slot_4_button@redstone.crafter_disabled_slot": { + "offset": [ -36, -36.4 ], + "$pressed_button_name": "disabled_button4", + "bindings": [ + { + "binding_name": "#button_visible4", + "binding_name_override": "#visible" + } + ] + } + }, + { + "disabled_slot_5_button@redstone.crafter_disabled_slot": { + "offset": [ -18, -36.4 ], + "$pressed_button_name": "disabled_button5", + "bindings": [ + { + "binding_name": "#button_visible5", + "binding_name_override": "#visible" + } + ] + } + }, + { + "disabled_slot_6_button@redstone.crafter_disabled_slot": { + "offset": [ -53.9, -18.5 ], + "$pressed_button_name": "disabled_button6", + "bindings": [ + { + "binding_name": "#button_visible6", + "binding_name_override": "#visible" + } + ] + } + }, + { + "disabled_slot_7_button@redstone.crafter_disabled_slot": { + "offset": [ -36, -18.5 ], + "$pressed_button_name": "disabled_button7", + "bindings": [ + { + "binding_name": "#button_visible7", + "binding_name_override": "#visible" + } + ] + } + }, + { + "disabled_slot_8_button@redstone.crafter_disabled_slot": { + "offset": [ -18, -18.5 ], + "$pressed_button_name": "disabled_button8", + "bindings": [ + { + "binding_name": "#button_visible8", + "binding_name_override": "#visible" + } + ] + } + }, + { + "redstone_screen_inventory": { + "type": "panel", + "layer": 5, + "controls": [ + { + "crafting_grid": { + "type": "panel", + "size": [ "100%", "50% - 12px" ], + "offset": [ -36, 11 ], + "anchor_to": "top_left", + "anchor_from": "top_left", + "controls": [ + { + "crafter_input_grid@redstone.crafter_input_grid": {} + } + ] + } + }, + { "red_bottom_half@common.inventory_panel_bottom_half_with_label": {} }, + { "hotbar_grid@common.hotbar_grid_template": {} }, + { "red_hold_icon@common.inventory_take_progress_icon_button": {} }, + { + "redstone_wire_line": { + "type": "image", + "layer": 3, + "size": [ 18, 18 ], + "anchor_from": "top_left", + "anchor_to": "top_left", + "offset": [ 95, 38 ], + "bindings": [ + { + "binding_name": "#redstone_arrow_texture", + "binding_name_override": "#texture" + } + ] + } + }, + { + "crafter_output@redstone.output_slot_hover_info": {} + } + ] + } + }, + { "red_icon@common.inventory_selected_icon_button": {} }, + { "gamepad_cursor@common.gamepad_cursor_button": {} }, + { "$screen_label@$screen_label": {} } + ] + } + }, + { "flying_item_renderer@common.flying_item_renderer": {} } + ] + }, "hopper_screen@common.inventory_screen_common": { "$close_on_player_hurt|default": true, "$use_custom_pocket_toast|default": false, @@ -129,24 +505,26 @@ } ] }, - "crafter_screen@common.inventory_screen_common": { "$close_on_player_hurt|default": true, + "$use_custom_pocket_toast|default": false, "close_on_player_hurt": "$close_on_player_hurt", + "use_custom_pocket_toast": "$use_custom_pocket_toast", "variables": [ { "requires": "$desktop_screen", - "$screen_label": "redstone.dispenser_label", + "$screen_label": "redstone.crafter_label", "$screen_dimensions": [ 176, 166 ], "$grid_dimensions": [ 3, 3 ], "$grid_offset": [ 0, 0 ], - "$screen_content": "redstone.panel", + "$screen_content": "redstone.panel_crafter", "$screen_bg_content": "common.screen_background", "$screen_background_alpha": 0.4 }, { "requires": "$pocket_screen", - "$screen_content": "pocket_containers.dispenser_panel" + "$use_custom_pocket_toast": true, + "$screen_content": "crafter_pocket.crafter" } ] }, diff --git a/resource_pack/ui/settings_screen.json b/resource_pack/ui/settings_screen.json index faef8760d..918a2c730 100644 --- a/resource_pack/ui/settings_screen.json +++ b/resource_pack/ui/settings_screen.json @@ -266,7 +266,7 @@ }, { "preview_button@general_section.preview_button": { - "ignored": "($trial or $pre_release or (not $is_ps4))", + "ignored": "(not $show_preview_button)", "$toggle_group_forced_index": "$preview_forced_index", "$tts_section_header": "$general_section_header" } @@ -373,6 +373,7 @@ }, { "server_section@world_section.server_section": {} }, { "multiplayer_section@world_section.multiplayer_section": {} }, + { "cloud_section@world_section.cloud_section": {} }, { "debug_section@world_section.debug_section": { "ignored": "$is_publish", diff --git a/resource_pack/ui/settings_sections/controls_section.json b/resource_pack/ui/settings_sections/controls_section.json index e957fa851..8ee20bf21 100644 --- a/resource_pack/ui/settings_sections/controls_section.json +++ b/resource_pack/ui/settings_sections/controls_section.json @@ -1156,26 +1156,6 @@ ] } }, - { - "hotbar_scale@settings_common.option_slider": { - "$option_label": "#hotbar_scale_slider_label", - "$slider_name": "hotbar_scale", - "$slider_value_binding_name": "#hotbar_scale", - "$slider_tts_text_value": "#hotbar_scale_text_value", - "$option_enabled_binding_name": "#hotbar_scale_enabled", - "$label_bindings": [ - { - "binding_name": "$option_label" - } - ], - "bindings": [ - { - "binding_name": "#resizable_ui_active", - "binding_name_override": "#visible" - } - ] - } - }, { "option_toggle_destroy_vibration@settings_common.option_toggle": { "$option_label": "options.destroyvibration", diff --git a/resource_pack/ui/settings_sections/general_section.json b/resource_pack/ui/settings_sections/general_section.json index a5ebff389..7fbaa8100 100644 --- a/resource_pack/ui/settings_sections/general_section.json +++ b/resource_pack/ui/settings_sections/general_section.json @@ -1667,10 +1667,11 @@ "edu_cloud_storage_button@settings_common.section_toggle_base": { "ignored": "(not $education_edition or not $edu_save_to_cloud_on)", + "visible": "($is_pregame)", "$toggle_view_binding_name": "edu_cloud_storage_button_toggle", - "$glyph_texture": "textures/ui/debug_glyph", - "$glyph_color_texture": "textures/ui/debug_glyph_color", - "$glyph_size": [ 16, 16 ], + "$glyph_texture": "textures/ui/onedrive_pixel_logo_stroke", + "$glyph_color_texture": "textures/ui/onedrive_pixel_logo", + "$glyph_size": [ 20, 14 ], "$button_text": "menu.eduCloudStorage", "$toggle_property_bag": { "#panel_title": "menu.eduCloudStorage" @@ -2112,7 +2113,7 @@ "size": [ "100%", "100%c" ], "bindings": [ { - "binding_name": "#creator_show_debugger_options", + "binding_name": "#script_debugger_auto_attach_options_visible", "binding_name_override": "#visible" } ], @@ -2185,6 +2186,130 @@ ] }, + "watchdog_toggles_panel": { + "type": "stack_panel", + "size": [ "100%", "100%c" ], + "bindings": [ + { + "binding_name": "#script_watchdog_options_enabled", + "binding_name_override": "#enabled" + } + ], + "controls": [ + { + "section_panel_1": { + "type": "panel", + "size": [ "100%", "100%c + 14px" ], + "controls": [ + { + "section_divider": { + "type": "image", + "size": [ "100% - 30px", 1 ], + "anchor_from": "center", + "anchor_to": "center", + "layer": 3, + "texture": "textures/ui/list_item_divider_line_light" + } + } + ] + } + }, + { + "primary_panel": { + "type": "stack_panel", + "controls": [ + { + "heading": { + "type": "label", + "text": "options.creator.watchdogHeading", + "color": "$body_text_color" + } + }, + { + "spacer": { + "type": "panel", + "size": [ "100%", 7 ] + } + }, + { + "hang_threshold_slider@settings_common.option_slider": { + "$option_label": "#script_watchdog_hang_threshold_slider_label", + "$slider_name": "script_watchdog_hang_threshold", + "$slider_value_binding_name": "#script_watchdog_hang_threshold", + "$slider_tts_text_value": "#script_watchdog_hang_threshold_text_value", + "$option_enabled_binding_name": "#script_watchdog_hang_threshold_enabled", + "$slider_steps_binding_name": "#script_watchdog_hang_threshold_steps", + "$label_bindings": [ + { + "binding_name": "$option_label" + } + ] + } + }, + { + "spike_warning_toggle@settings_common.option_toggle": { + "$option_label": "options.creator.watchdogSpikeWarning", + "$option_binding_name": "#script_watchdog_spike_warning", + "$option_enabled_binding_name": "#script_watchdog_spike_warning_enabled", + "$toggle_name": "script_watchdog_spike_warning" + } + }, + { + "spike_threshold_slider@settings_common.option_slider": { + "$option_label": "#script_watchdog_spike_threshold_slider_label", + "$slider_name": "script_watchdog_spike_threshold", + "$slider_value_binding_name": "#script_watchdog_spike_threshold", + "$slider_tts_text_value": "#script_watchdog_spike_threshold_text_value", + "$option_enabled_binding_name": "#script_watchdog_spike_threshold_enabled", + "$slider_steps_binding_name": "#script_watchdog_spike_threshold_steps", + "$label_bindings": [ + { + "binding_name": "$option_label" + } + ], + "bindings": [ + { + "binding_name": "#script_watchdog_spike_threshold_visible", + "binding_name_override": "#visible" + } + ] + } + }, + { + "slow_warning_toggle@settings_common.option_toggle": { + "$option_label": "options.creator.watchdogSlowWarning", + "$option_binding_name": "#script_watchdog_slow_warning", + "$option_enabled_binding_name": "#script_watchdog_slow_warning_enabled", + "$toggle_name": "script_watchdog_slow_warning" + } + }, + { + "slow_threshold_slider@settings_common.option_slider": { + "$option_label": "#script_watchdog_slow_threshold_slider_label", + "$slider_name": "script_watchdog_slow_threshold", + "$slider_value_binding_name": "#script_watchdog_slow_threshold", + "$slider_tts_text_value": "#script_watchdog_slow_threshold_text_value", + "$option_enabled_binding_name": "#script_watchdog_slow_threshold_enabled", + "$slider_steps_binding_name": "#script_watchdog_slow_threshold_steps", + "$label_bindings": [ + { + "binding_name": "$option_label" + } + ], + "bindings": [ + { + "binding_name": "#script_watchdog_slow_threshold_visible", + "binding_name_override": "#visible" + } + ] + } + } + ] + } + } + ] + }, + "content_log_panel": { "type": "stack_panel", "size": [ "100%", "100%c" ], @@ -2353,6 +2478,9 @@ { "debugger_toggles_panel@general_section.debugger_toggles_panel": {} }, + { + "watchdog_toggles_panel@general_section.watchdog_toggles_panel": {} + }, { "content_log_panel@general_section.content_log_panel": { "ignored": "$education_edition" @@ -2875,6 +3003,20 @@ ] } }, + { + "dynamic_textures_toggle@settings_common.option_toggle": { + "ignored": "(not $is_dynamic_textures_platform_supported)", + "$option_label": "options.dynamicTexturesToggle", + "$option_binding_name": "#dynamic_textures", + "$option_enabled_binding_name": "#dynamic_textures_enabled", + "$toggle_name": "dynamic_textures", + "layer": 1, + "controls": [ + { "dynamic_textures_option@general_section.dynamic_textures_option": {} }, + { "option_generic_core@settings_common.option_generic_core": {} } + ] + } + }, { "upscaling_toggle@general_section.upscaling_toggle": { "ignored": "$new_video_settings" @@ -3416,6 +3558,60 @@ ] }, + "dynamic_textures_option_image": { + "type": "image", + "size": [ 7, 11 ], + "texture": "textures/ui/infobulb" + }, + + "dynamic_textures_option_popup@common.static_tooltip_popup_with_image_and_text": { + "size": [ "100% - 4px", "100%cm + 8px" ], + "anchor_from": "top_middle", + "anchor_to": "bottom_middle", + "$tooltip_panel_offset": [ 0, -10 ], + "$tooltip_popup_image": "textures/ui/infobulb", + "$tooltip_button_binding_type": "global", + "$tooltip_button_collection_name": "", + "$tooltip_popup_visible_binding|default": "#dynamic_textures_option_tooltip_visible", + "$tooltip_text_binding_name": "#dynamic_textures_option_tooltip_text", + "$tooltip_chevron_anchor": "bottom_right", + "$tooltip_popup_chevron_offset": [ "-30%x", "100%y - 3px" ] + }, + + "dynamic_textures_option": { + "type": "panel", + "size": [ "100%", 0 ], + "anchor_from": "top_right", + "anchor_to": "top_right", + "controls": [ + { + "dynamic_textures_option_image@general_section.dynamic_textures_option_image": { + "offset": [ -14, 0 ], + "anchor_from": "top_right", + "anchor_to": "top_right", + "layer": 3, + "controls": [ + { + "hover_detection_input_panel": { + "type": "input_panel", + "consume_hover_events": false, + "focus_enabled": true, + "tts_skip_message": true, + "button_mappings": [ + { + "to_button_id": "button.dynamic_textures_option_is_hovered", + "mapping_type": "pressed" + } + ] + } + } + ] + } + }, + { "dynamic_textures_option_popup@general_section.dynamic_textures_option_popup": {} } + ] + }, + "rtx_disabled_option_upsell_image": { "type": "image", "size": [ 7, 11 ], @@ -5970,7 +6166,7 @@ // PREVIEW button & section "preview_button@settings_common.section_toggle_base": { - "ignored": "($trial or $pre_release or (not $is_ps4))", + "ignored": "(not $show_preview_button)", "$toggle_view_binding_name": "preview_button_toggle", "$glyph_texture": "textures/ui/debug_glyph", "$glyph_color_texture": "textures/ui/debug_glyph_color", @@ -5982,7 +6178,7 @@ }, "preview_section": { - "ignored": "($trial or $pre_release or (not $is_ps4))", + "ignored": "(not $show_preview_button)", "type": "stack_panel", "bindings": [ { @@ -6007,9 +6203,19 @@ } }, { - "preview_store_launch_button@settings_common.action_button": { - "$pressed_button_name": "button.ps4preview", - "$button_text": "offer.ps4_preview" + "preview_store_launch_app1_button@settings_common.action_button": { + "ignored": "(not $show_preview_app1_button)", + "$pressed_button_name": "button.preview_app1", + "$button_text": "#preview_app1_button_text", + "$button_text_binding_type": "global" + } + }, + { + "preview_store_launch_app2_button@settings_common.action_button": { + "ignored": "(not $show_preview_app2_button)", + "$pressed_button_name": "button.preview_app2", + "$button_text": "#preview_app2_button_text", + "$button_text_binding_type": "global" } } ] @@ -8119,6 +8325,12 @@ "$pressed_button_name": "button.dev_trigger_graphics_device_loss", "$button_text": "Trigger Graphics Device Loss" } + }, + { + "allocate_texture_handles@settings_common.action_button": { + "$pressed_button_name": "button.dev_allocate_texture_handles", + "$button_text": "Allocate 4k Texture Handles" + } } ] }, @@ -8820,32 +9032,6 @@ ] }, - "new_start_from_template_grid_item@settings_common.radio_with_label": { - "$toggle_state_binding_name": "#initial_selected", - "$radio_label_text": "#description", - "$radio_label_bindings": [ - { - "binding_name": "#description", - "binding_type": "collection", - "binding_condition": "once", - "binding_collection_name": "dev_new_start_from_template_screen_radio" - } - ], - "$radio_toggle_group": true, - "$toggle_binding_type": "collection", - "$toggle_name": "dev_new_start_from_template_screen_radio", - "$toggle_grid_collection_name": "dev_new_start_from_template_screen_radio", - "$option_enabled_binding_name": "", - "bindings": [ - { - "binding_name": "#default_focus_precedence", - "binding_type": "collection", - "binding_condition": "visible", - "binding_collection_name": "dev_new_start_from_template_screen_radio" - } - ] - }, - "ui_debug_section": { "type": "stack_panel", "size": [ "100%", "100%c" ], @@ -9096,42 +9282,6 @@ "size": [ "100%", 3 ] } }, - /* Start From Template Screen Overrides */ - { - "new_start_from_template_screen_radio_label": { - "type": "label", - "text": "New Start From Template", - "size": [ "100%", "default" ], - "color": "$body_text_color" - } - }, - { - "new_start_from_template_screen_radio_label_spacer": { - "type": "panel", - "size": [ "100%", 3 ] - } - }, - { - "new_start_from_template_screen_radio_button": { - "type": "grid", - "size": [ "100%", "100%c" ], - "grid_item_template": "general_section.new_start_from_template_grid_item", - "grid_dimension_binding": "#dev_new_start_from_template_screen_radio_dimension", - "collection_name": "dev_new_start_from_template_screen_radio", - "bindings": [ - { - "binding_name": "#dev_new_start_from_template_screen_radio_dimension", - "binding_condition": "visible" - } - ] - } - }, - { - "new_start_from_template_screen_radio_button_spacer": { - "type": "panel", - "size": [ "100%", 3 ] - } - }, { "end_of_ui_screen_override_divider": { "type": "panel", diff --git a/resource_pack/ui/settings_sections/realms_world_section.json b/resource_pack/ui/settings_sections/realms_world_section.json index 1b1a8561a..7b23daefb 100644 --- a/resource_pack/ui/settings_sections/realms_world_section.json +++ b/resource_pack/ui/settings_sections/realms_world_section.json @@ -201,6 +201,18 @@ "$toggle_binding_condition": "always_when_visible" } }, + { + "show_days_played_toggle@settings_common.option_toggle": { + "$tts_section_header": "createWorldScreen.worldSettings", + "ignored": "$realm_no_world_edit", + "$option_label": "createWorldScreen.showDaysPlayed", + "$option_binding_name": "#show_days_played", + "$option_enabled_binding_name": "#show_days_played_enabled", + "$toggle_name": "show_days_played", + "$focus_override_right": "FOCUS_OVERRIDE_STOP", + "$toggle_binding_condition": "always_when_visible" + } + }, { "fire_spreads_toggle@settings_common.option_toggle": { "$tts_section_header": "createWorldScreen.worldSettings", diff --git a/resource_pack/ui/settings_sections/world_section.json b/resource_pack/ui/settings_sections/world_section.json index da34c5d6c..f58543349 100644 --- a/resource_pack/ui/settings_sections/world_section.json +++ b/resource_pack/ui/settings_sections/world_section.json @@ -151,6 +151,12 @@ "$toggle_group_forced_index": "$multiplayer_forced_index" } }, + { + "cloud_button@world_section.cloud_button": { + "visible": "($education_edition and $edu_save_to_cloud_on and $edu_save_to_cloud_general_toggle_on)", + "$toggle_group_forced_index": "$edu_cloud_level_forced_index" + } + }, { "debug_button@world_section.debug_button": { "ignored": "$is_publish" @@ -911,6 +917,17 @@ "$toggle_binding_condition": "always_when_visible" } }, + { + "show_days_played_toggle@settings_common.option_toggle": { + "$tts_section_header": "createWorldScreen.worldSettings", + "$option_label": "createWorldScreen.showDaysPlayed", + "$option_binding_name": "#show_days_played", + "$option_enabled_binding_name": "#show_days_played_enabled", + "$toggle_name": "show_days_played", + "$focus_override_right": "FOCUS_OVERRIDE_STOP", + "$toggle_binding_condition": "always_when_visible" + } + }, { "fire_spreads_toggle@settings_common.option_toggle": { "$tts_section_header": "createWorldScreen.worldSettings", @@ -1702,7 +1719,7 @@ "$toggle_state_binding_name": "#player_game_mode_radio_spectator", "$radio_label_text": "createWorldScreen.gameMode.spectator" } - }/*//Uncomment when Hardcore game mode is implemented, + } /*//Uncomment when Hardcore game mode is implemented, { "player_hardcore_mode_toggle@settings_common.radio_with_label": { "$toggle_state_binding_name": "#player_game_mode_radio_hardcore", @@ -2009,6 +2026,92 @@ } }, + "cloud_button@settings_common.section_toggle_base": { + "$toggle_view_binding_name": "cloud_button_toggle", + "$glyph_texture": "textures/ui/onedrive_pixel_logo_stroke", + "$glyph_color_texture": "textures/ui/onedrive_pixel_logo", + "$glyph_size": [ 20, 14 ], + "$button_text": "options.cloudStorage", + "$toggle_property_bag": { + "#panel_title": "options.cloudStorageTitle" + } + }, + + "cloud_section": { + "type": "stack_panel", + "size": [ "100%", "100%c" ], + "anchor_from": "top_left", + "anchor_to": "top_left", + "bindings": [ + { + "binding_type": "view", + "source_control_name": "cloud_button_toggle", + "source_property_name": "#toggle_state", + "target_property_name": "#visible" + } + ], + "controls": [ + { + "cloud_file_name@settings_common.option_text_edit": { + "$option_label": "options.cloudFileNameTitle", + "$option_binding_name": "#cloud_file_name", + "$option_enabled_binding_name": "#cloud_file_name_enabled", + "$text_box_name": "cloud_file_name_text_box" + } + }, + { + "cloud_file_last_changed@settings_common.option_text_edit": { + "$option_label": "options.cloudFileLastChangedTitle", + "$option_binding_name": "#cloud_file_last_changed", + "$option_enabled_binding_name": "#cloud_file_last_changed_enabled", + "$text_box_name": "cloud_file_last_changed_text_box" + } + }, + { + "cloud_upload_toggle@settings_common.option_toggle": { + "$option_label": "options.cloudToggleCloudSave", + "$option_binding_name": "#cloud_upload", + "$option_enabled_binding_name": "#cloud_upload_enabled", + "$toggle_name": "cloud_upload" + } + }, + { + "cloud_help_wrapper_panel": { + "type": "stack_panel", + "orientation": "horizontal", + "size": [ "100%", "100%cm" ], + "controls": [ + { + "cloud_help_button@edu_common.underline_button": { + "$single_line_font_scale_factor": 1, + "$single_label_size": [ "default", "default" ], + "$pressed_button_name": "button.cloud_help_button", + "$single_line_label_text": "options.cloudHelpText", + "$font_type": "smooth", + "$font_size": "normal" + } + }, + { + "padded_icon@common.empty_panel": { + "size": [ "100%c", "100%c" ], + "controls": [ + { + "icon": { + "type": "image", + "texture": "textures/ui/icon_external_link", + "size": [ 9, 9 ], + "offset": [ 5, 0.6 ] + } + } + ] + } + } + ] + } + } + ] + }, + // Debug section and button "debug_button@settings_common.section_toggle_base": { diff --git a/resource_pack/ui/start_screen.json b/resource_pack/ui/start_screen.json index 454d43c4e..98a314a84 100644 --- a/resource_pack/ui/start_screen.json +++ b/resource_pack/ui/start_screen.json @@ -135,6 +135,34 @@ "layer": 12 // This is the lowest layer where the button border won't show through this icon while being pressed }, + "alex_icon": { + "type": "image", + "texture": "textures/ui/icon_alex", + "layer": 1, + "size": [ 16, 16 ] + }, + + "gamerpic": { + "type": "image", + "size": [ 16, 16 ], + "layer": 2, + "$gamerpic_visible|default": "#none", + "bindings": [ + { + "binding_name": "#gamerpic_texture_path", + "binding_name_override": "#texture" + }, + { + "binding_name": "#gamerpic_texture_location_type", + "binding_name_override": "#texture_file_system" + }, + { + "binding_name": "$gamerpic_visible", + "binding_name_override": "#visible" + } + ] + }, + "copyright": { "type": "panel", "controls": [ @@ -310,10 +338,21 @@ } }, { - "change_profile@start.profile_button": { + "dressing_room_button@start.dressing_room_button": { + "bindings": [ + { + "binding_name": "#dressing_room_button_visible", + "binding_name_override": "#visible" + } + ] + } + }, + { + "profile_button@start.profile_button": { + "$focus_id": "profile_button", "bindings": [ { - "binding_name": "#change_profile_visible", + "binding_name": "#profile_button_b_visible", "binding_name_override": "#visible" } ] @@ -340,7 +379,7 @@ "$button_tts_header": "accessibility.start.skinPicker" }, - "profile_button@common_buttons.light_text_form_fitting_button": { + "dressing_room_button@common_buttons.light_text_form_fitting_button": { "$pressed_button_name": "button.to_profile_screen", "size": [ "100%c", 25 ], "anchor_from": "bottom_middle", @@ -349,8 +388,96 @@ "$button_text_size": [ "default", 10 ], "$button_text": "profileScreen.header", "$focus_id": "profile_button", - "$pressed_alpha": 0.65, - "$button_tts_header": "accessibility.start.profile" + "$pressed_alpha": 0.65 + }, + + "profile_button_content": { + "type": "stack_panel", + "size": [ "100%c", 24 ], + "orientation": "horizontal", + "controls": [ + { + "gamerpic_offset_wrapper": { + "type": "panel", + "size": [ "100%c", "100%c" ], + "controls": [ + { + "gamerpic_with_border": { + "type": "panel", + "size": [ 18, 18 ], + "offset": [ -2, 0 ], + "controls": [ + { + "gamerpic@start.gamerpic": { + "$gamerpic_visible": "#show_gamerpic" + } + }, + { + "alex_icon@start.alex_icon": { + "bindings": [ + { + "binding_name": "(not #show_gamerpic)", + "binding_name_override": "#visible" + } + ] + } + }, + { + "border_black@common.focus_border_black": { + "layer": 3, + "size": [ 18, 18 ] + } + } + ] + } + } + ] + } + }, + { + "padding_middle@common.empty_panel": { + "size": [ 2, "100%" ] + } + }, + { + "vertically_central_text": { + "type": "stack_panel", + "orientation": "vertical", + "size": [ "100%c", "100%c" ], + "controls": [ + { + "top_padding": { + "type": "panel", + "size": [ "0px", 4 ] + } + }, + { + "profile_button_label@common_buttons.new_ui_binding_button_label": { + "layer": 1, + "$button_text": "menu.profile", + "$button_text_size": [ "default", "default" ], + "$button_text_max_size": [ "default", 20 ], + "$button_text_binding_type": "none", + "$button_binding_condition": "none", + "$button_text_grid_collection_name": "" + } + } + ] + } + }, + { + "padding_right@common.empty_panel": { + "size": [ 6, "100%" ] + } + } + ] + }, + + "profile_button@common_buttons.light_content_form_fitting_button": { + "size": [ "100%c", "100%c" ], + "$button_content_size_override": [ "100%c", "100%c - 4px" ], + "$button_content": "start.profile_button_content", + "$pressed_button_name": "button.menu_profile" }, "skin_viewer_panel": { @@ -855,21 +982,7 @@ "size": [ "100%c", "100%" ], "controls": [ { - "gamerpic": { - "type": "image", - "size": [ 16, 16 ], - "layer": 1, - "bindings": [ - { - "binding_name": "#gamerpic_texture_path", - "binding_name_override": "#texture" - }, - { - "binding_name": "#gamerpic_texture_location_type", - "binding_name_override": "#texture_file_system" - } - ] - } + "gamerpic@start.gamerpic": {} }, { "border_white@common.focus_border_white": { @@ -1088,6 +1201,32 @@ } ] } + }, + { + "profile_btn_padding": { + "type": "panel", + "size": [ 5, "100%" ], + "bindings": [ + { + "binding_name": "#profile_button_a_visible", + "binding_name_override": "#visible" + } + ] + } + }, + { + "profile_btn@start.column_frame": { + "size": [ "100%c", 32 ], + "controls": [ + { "profile_button@start.profile_button": {} } + ], + "bindings": [ + { + "binding_name": "#profile_button_a_visible", + "binding_name_override": "#visible" + } + ] + } } ] } @@ -1160,6 +1299,11 @@ "$pressed_button_texture": "textures/ui/realms_button_borderless_hover_pressed" }, + "servers_button@start.main_button": { + "$pressed_button_name": "button.menu_servers", + "$button_text": "menu.servers" + }, + "store_button@common_buttons.light_content_button": { "size": [ "100% - 2px", "100% - 2px" ], "$pressed_button_name": "button.menu_store", diff --git a/resource_pack/ui/stonecutter_screen_pocket.json b/resource_pack/ui/stonecutter_screen_pocket.json index 68ed49ce5..17628f382 100644 --- a/resource_pack/ui/stonecutter_screen_pocket.json +++ b/resource_pack/ui/stonecutter_screen_pocket.json @@ -473,7 +473,7 @@ }, { "inventory_selected_icon_button@common.inventory_selected_icon_button": {} }, { "inventory_take_progress_icon_button@common.inventory_take_progress_icon_button": {} }, - { "flying_item_renderer@common.flying_item_renderer": {} } + { "flying_item_renderer@common.flying_item_renderer": { "layer": 21 } } ] } } diff --git a/resource_pack/ui/store_common.json b/resource_pack/ui/store_common.json index a6d759752..6ad15946b 100644 --- a/resource_pack/ui/store_common.json +++ b/resource_pack/ui/store_common.json @@ -4139,10 +4139,21 @@ "store_section_panel": { "type": "panel", "size": [ "100%", "100%cm + 4px" ], - "focus_container": true, - "focus_wrap_enabled": false, - "focus_navigation_mode_left": "$main_content_focus_container_left", - "focus_container_custom_left": "$main_content_focus_container_left_custom", + "focus_container": "$allows_sdl_section_focus_container", + "$store_section_focus_wrap_enabled|default": false, + "$store_section_panel_nav_mode_left|default": "$main_content_focus_container_left", + "$store_section_panel_nav_custom_left|default": "$main_content_focus_container_left_custom", + "variables": [ + { + "requires": "(not $allows_sdl_section_focus_container)", + "$store_section_focus_wrap_enabled": true, + "$store_section_panel_nav_mode_left": "none", + "$store_section_panel_nav_custom_left": {}, + "focus_wrap_enabled": "$store_section_focus_wrap_enabled", + "focus_navigation_mode_left": "$store_section_panel_nav_mode_left", + "focus_container_custom_left": "$store_section_panel_nav_custom_left" + } + ], "clip_state_change_event": "$store_factory_clipping_event", @@ -4278,6 +4289,7 @@ "$main_content_focus_container_left|default": "none", "$main_content_focus_container_left_custom|default": {}, + "$allows_sdl_section_focus_container|default": true, "factory": { "name": "store_section_factory", @@ -4340,6 +4352,7 @@ "$is_mashup", "$main_content_focus_container_left", "$main_content_focus_container_left_custom", + "$allows_sdl_section_focus_container", "$always_show_layer", "$always_show_paper_doll", "$is_non_scrollable_sdl_screen" @@ -4577,10 +4590,18 @@ "type": "stack_panel", "orientation": "vertical", "size": [ "100% - 8px", "100%c + 2px" ], - "focus_container": true, - "focus_wrap_enabled": false, + "focus_container": "$allows_sdl_section_focus_container", "$focus_id": "store_offer_grid_panel_focus_id", + "$store_offer_grid_content_focus_wrap_enabled|default": false, + "variables": [ + { + "requires": "(not $allows_sdl_section_focus_container)", + "$store_offer_grid_content_focus_wrap_enabled": true, + "focus_wrap_enabled": "$store_offer_grid_content_focus_wrap_enabled" + } + ], + "controls": [ { "header_centerer_panel@common.vert_stack_centering_panel": { @@ -8557,6 +8578,28 @@ "color": "$0_color_format", "layer": 3 } + }, + { + "offer_coin_icon@common_store.coin_icon": { + "size": [ 10, 10 ], + "layer": 3, + "offset": [ 1, -1 ], + "anchor_to": "bottom_left", + "anchor_from": "bottom_left", + "bindings": [ + { + "binding_type": "$store_factory_collection_details", + "binding_collection_name": "$store_factory_collection_name", + "binding_collection_prefix": "$store_factory_collection_prefix" + }, + { + "binding_type": "$offer_binding_type", + "binding_collection_name": "$offer_collection_name", + "binding_name": "#offer_coin_visible", + "binding_name_override": "#visible" + } + ] + } } ] } @@ -8655,6 +8698,9 @@ "$persona_piece_binding_type": "$offer_binding_type", "$persona_piece_prefix": "$offer_collection_prefix", + "$controller_left_bumper_mapping": "button.cycle_offer_left", + "$controller_right_bumper_mapping": "button.cycle_offer_right", + "$filesystem_binding_type": "collection" } } @@ -9682,7 +9728,7 @@ } }, { - "clear_button@common.close_button": { + "clear_button@common.light_close_button": { "anchor_from": "right_middle", "anchor_to": "right_middle", "visible": false, @@ -9704,6 +9750,20 @@ } ] } + }, + { + "loading_spinner@common_store.progress_loading_spinner": { + "$progress_loading_spinner_anchor": "right_middle", + "offset": [ -6, 0 ], + "layer": 2, + "bindings": [ + { + "binding_type": "global", + "binding_name": "#search_spinner_visible", + "binding_name_override": "#visible" + } + ] + } } ] }, diff --git a/resource_pack/ui/store_data_driven_screen.json b/resource_pack/ui/store_data_driven_screen.json index 221b5f65a..75b9391f9 100644 --- a/resource_pack/ui/store_data_driven_screen.json +++ b/resource_pack/ui/store_data_driven_screen.json @@ -359,11 +359,46 @@ { "sdl_section@persona_sdl.dialog_background_object": { "size": [ "100%", "100% - 4px" ] } } - ] + ], + "focus_container": true, + "use_last_focus": true, + "focus_wrap_enabled": false, + "focus_navigation_mode_down": "stop", + "focus_navigation_mode_right": "custom", + "focus_container_custom_right": [ + { + "other_focus_container_name": "right_main_panel" + } + ], + "$is_sidebar_navigation_enabled|default": false, + "$focus_navigation_mode_up|default": "none", + "$focus_container_custom_up|default": [], + "variables": [ + { + "requires": "(not $is_sidebar_navigation_enabled)", + "$focus_navigation_mode_up": "custom", + "$focus_container_custom_up": [ + { + "other_focus_container_name": "persona_tabs_cape" + } + ] + } + ], + "focus_navigation_mode_up": "$focus_navigation_mode_up", + "focus_container_custom_up": "$focus_container_custom_up" }, "character_creator_panel@common.horizontal_stack_panel": { "size": [ "100%", "100%" ], + "$allows_sdl_section_focus_container": false, + "$left_focus_container_override": "character_creator_sdl_portion", + + "$skin_model_anims": [ + "@common.screen_exit_size_animation_push", + "@common.screen_exit_size_animation_pop", + "@persona_sdl.enter_screen_appearance_size_animation" + ], + "controls": [ { "left_main_panel_padding@persona_sdl.horizontal_2_padding": {} }, { "character_creator_sdl_portion@store_layout.character_creator_sdl_section": {} }, @@ -1689,6 +1724,7 @@ "character_creator_screen@store_layout.sdl_base_screen": { "$sdl_screen_content": "store_layout.character_creator_screen_layout", + "$allows_sdl_section_focus_container": false, "$ignore_search": true, "bindings": [ { @@ -1698,6 +1734,12 @@ ] }, + "dressing_room_color_picker_screen@store_layout.character_creator_screen": { + }, + + "expanded_appearance_view_screen@store_layout.character_creator_screen": { + }, + "non_scrollable_sdl_screen@store_layout.sdl_base_screen": { "$is_non_scrollable_sdl_screen": true }, diff --git a/resource_pack/ui/store_gift_promotion_screen.json b/resource_pack/ui/store_gift_promotion_screen.json deleted file mode 100644 index abbe395b7..000000000 --- a/resource_pack/ui/store_gift_promotion_screen.json +++ /dev/null @@ -1,1634 +0,0 @@ -{ - "namespace": "gift_promo", - - "colored_direction_button_panel": { - "type": "panel", - "$direction_gamepad_button_helper|default": "gamepad_helper@common.gamepad_helper_right_bumper", - "controls": [ - { - "chevron_image@common.chevron_image": { - "color": "$text_color", - "bindings": [ - { - "binding_name": "(not #is_using_gamepad)", - "binding_name_override": "#visible" - } - ] - } - }, - { - "$direction_gamepad_button_helper": { - "offset": [ 0, 4 ], - "anchor_from": "center", - "anchor_to": "center", - "$hide_description|default": true, - "$gamepad_helper_icon_size|default": [ 18, 18 ] - } - } - ] - }, - - "timer_icon_tooltip_panel": { - "type": "panel", - "size": [ 8, 8 ], - "layer": 10, - "controls": [ - { - "limited_status_image": { - "type": "image", - "size": [ "100%", "100%" ], - "offset": [ 0, -1 ], - "bilinear": true, - "texture": "textures/ui/timer", - "layer": 1 - } - } - ] - }, - - "timer_tooltip_panel@common.button": { - "size": [ 8, 8 ], - "sound_volume": 0.0, - - "$tooltip_button_content_size|default": [ "100%", "100%" ], - "$tooltip_panel_offset": [ -11, 8 ], - "$tooltip_background_texture": "textures/ui/tooltip_default_background", - "$tooltip_chevron_anchor": "top_left", - "$tooltip_popup_chevron_offset": [ 2, "-100%y + 4px" ], - "$tooltip_popup_chevron_texture": "textures/ui/tooltip_inverted_chevron", - - "$pressed_button_name": "button.ignore_me", - "$tooltip_button_collection_name": "", - - "$tooltip_button_binding_type": "none", - "$tooltip_text_binding_name": "store.promo.tooltip", - "$tooltip_text_font_type": "smooth", - "$tooltip_text_font_scale": 0.8, - "$tooltip_popup_override_image_panel": "gift_promo.timer_icon_tooltip_panel", - "$override_tooltip_popup_image": true, - - "button_mappings": [ - { - "from_button_id": "button.menu_select", - "to_button_id": "$pressed_button_name", - "mapping_type": "pressed" - }, - { - "from_button_id": "button.menu_ok", - "to_button_id": "$pressed_button_name", - "mapping_type": "focused" - } - ], - - "controls": [ - { - "default@common.empty_panel": {} - }, - { - "hover@common.dynamic_tooltip_popup_with_image_and_text": { - "anchor_to": "top_left", - "anchor_from": "bottom_middle" - } - }, - { - "pressed@common.dynamic_tooltip_popup_with_image_and_text": { - "anchor_to": "top_left", - "anchor_from": "bottom_middle" - } - } - ], - "bindings": [ - { - "binding_name": "#price_info_visible", - "binding_name_override": "#visible" - } - ] - }, - - "promotion_item_description": { - "type": "label", - "size": [ "100%", "default" ], - "font_type": "smooth", - "font_scale_factor": 0.8, - "text": "#item_description_text", - "color": "$body_text_color", - "bindings": [ - { - "binding_name": "#item_description_text" - }, - { - "binding_type": "global", - "binding_name": "#item_description_color", - "binding_name_override": "#color" - } - ] - }, - - "promotion_item_text_panel": { - "type": "stack_panel", - "orientation": "vertical", - "size": [ "100%", "fill" ], - "controls": [ - { - "title@common.minecraftTenLabel": { - "size": [ "default", "default" ], - "color": "$body_text_color", - "text": "#item_title_text", - "bindings": [ - { - "binding_name": "#item_title_text" - } - ] - } - }, - { - "timer_panel": { - "type": "stack_panel", - "orientation": "horizontal", - "size": [ "100%", "100%cm" ], - "controls": [ - { - "timer_icon_and_tooltip_panel": { - "type": "panel", - "size": [ 12, 8 ], - "bindings": [ - { - "binding_name": "#item_timer_visible", - "binding_name_override": "#visible" - } - ], - "controls": [ - { - "tooltip_button@gift_promo.timer_tooltip_panel": {} - }, - { - "timer_icon": { - "type": "image", - "size": [ 8, 8 ], - "offset": [ 0, 1 ], - "bilinear": true, - "texture": "textures/ui/timer" - } - } - ] - } - }, - { - "timer_text": { - "type": "label", - "size": [ "100%", "default" ], - "font_type": "smooth", - "font_scale_factor": 0.8, - "color": "$coin_color", - "text": "#item_timer_text", - "bindings": [ - { - "binding_name": "#item_timer_text" - } - ] - } - } - ] - } - }, - { - "creator_panel": { - "type": "panel", - "size": [ "100%", 12 ], - "controls": [ - { - "creator@common.single_line_label": { - "size": [ "100%c", "100%" ], - "offset": [ 0, -1 ], - "anchor_from": "left_middle", - "anchor_to": "left_middle", - "$single_line_label_text": "#item_creator_text", - "$single_label_size": [ "default", 8 ], - "$single_line_font_scale_factor": 0.8, - "$label_text_bindings": [ - { - "binding_name": "#item_creator_text" - } - ], - "bindings": [ - { - "binding_name": "#item_is_world", - "binding_name_override": "#visible" - } - ] - } - } - ] - } - }, - { - "world": { - "type": "stack_panel", - "orientation": "horizontal", - "size": [ "100%", "100%cm" ], - "bindings": [ - { - "binding_name": "#item_is_world", - "binding_name_override": "#visible" - } - ], - "controls": [ - { - "icon": { - "type": "image", - "size": [ 8, 8 ], - "texture": "textures/ui/glyph_world_template", - "color": "$body_text_color" - } - }, - { - "pad": { - "type": "panel", - "size": [ 2, 10 ] - } - }, - { - "text": { - "type": "label", - "size": [ "100%", "default" ], - "font_type": "smooth", - "font_scale_factor": 0.8, - "color": "$body_text_color", - "text": "store.mashup.count.world" - } - } - ] - } - }, - { - "description@common.scrolling_panel_with_offset": { - "size": [ "100% - 8px", "fill" ], - "$scrolling_content": "gift_promo.promotion_item_description", - "$scroll_background_image_control": "common.empty_panel" - } - } - ] - }, - - "promo_item_pdp_button@common.minecraftTenLabel": { - "size": [ "default", "default" ], - "offset": [ 0, -1], - "text": "#pdp_button_text", - "color": "$text_color", - "bindings": [ - { - "binding_name": "#pdp_button_text" - } - ] - }, - - "free_discount_label": { - "type": "label", - "size": [ "default", 10 ], - "font_type": "smooth", - "text": "storageManager.share.totalPercent", - "color": "$store_sales_banner_text_color", - "layer": 10 - }, - - "promo_item_action_button": { - "type": "panel", - "size": [ "100%", "100%" ], - "controls": [ - { - "markdown": { - "type": "stack_panel", - "orientation": "horizontal", - "size": [ "100%c", "100%" ], - "anchor_to": "left_middle", - "anchor_from": "left_middle", - "bindings": [ - { - "binding_name": "#item_is_not_owned", - "binding_name_override": "#visible" - } - ], - "controls": [ - { - "sales_banner_offset_panel": { - "priority": 0, - "type": "panel", - "size": [ "100%c", "100%" ], - "controls": [ - { - "sales_banner_panel": { - "type": "panel", - "size": [ "100%c", "100% + 4px" ], - "offset": [ -2, 0 ], - "anchor_from": "left_middle", - "anchor_to": "left_middle", - "controls": [ - { - "markdown_banner@common_store.markdown_background": { - "$markdown_label": "gift_promo.free_discount_label", - "size": [ "100%c", "100%" ], - "$banner_size": [ "20px", "100%" ], - "$triangle_offset": [ 0, 0 ], - "layer": 9, - "$triangle_texture": "textures/ui/saleflagtrianglebeveldefault", - "$banner_texture": "textures/ui/sale_button_borderless_lighthoverflag" - } - } - ] - } - } - ] - } - }, - { - "price_markdown_panel": { - "type": "panel", - "size": [ "100%c", "100%" ], - "controls": [ - { - "offer_price": { - "type": "label", - "size": [ "default", 10 ], - "layer": 4, - "color": "$text_color", - "text": "#item_full_price", - "font_type": "smooth", - "bindings": [ - { - "binding_name": "#item_full_price" - } - ], - "controls": [ - { - "text_strike_through@common_store.text_strike_through": { - "size": [ "100% + 2px", 1 ], - "offset": [ 0, 1 ], - "color": "$text_color", - "alpha": 0.6, - "layer": 5 - } - } - ] - } - } - ] - } - } - ] - } - }, - { - "promo_item_action_text@common.minecraftTenLabel": { - "size": [ "default", "default" ], - "offset": [ 0, -1 ], - "text": "#item_action_button_text", - "color": "$text_color", - "bindings": [ - { - "binding_name": "#item_action_button_text" - } - ] - } - } - ] - }, - - "promotion_item_buttons_panel": { - "type": "stack_panel", - "orientation": "vertical", - "size": [ "100%", "100%c" ], - "controls": [ - { - "top_button@common_buttons.light_content_button": { - "type": "button", - "size": [ "100% - 8px", 22 ], - "$pressed_button_name": "button.item_action", - "$button_content": "gift_promo.promo_item_action_button", - "$markdown_size": [ "100% + 2px", "100% + 4px" ], - "$is_purchase_button": true, - "$ignore_markdown_filler_panel": "#is_on_sale", - "bindings": [ - { - "binding_name": "#action_button_visible", - "binding_name_override": "#visible" - } - ] - } - - }, - { - "pad": { - "type": "panel", - "size": [ "100%", 2 ] - } - }, - { - "bottom_button@common_buttons.light_content_button": { - "size": [ "100% - 8px", 22 ], - "$pressed_button_name": "button.item_pdp", - "$button_content": "gift_promo.promo_item_pdp_button" - } - } - ] - }, - - "promotion_top_left_panel": { - "type": "panel", - "size": [ "50%", "100%" ], - "layer": 6, - "controls": [ - { - "promotion_top_left_stack": { - "type": "stack_panel", - "orientation": "vertical", - "size": [ "100%", "100% - 8px" ], - "offset": [ 5, -2 ], - "controls": [ - { - "top_text_panel@gift_promo.promotion_item_text_panel": {} - }, - { - "bottom_button_panel@gift_promo.promotion_item_buttons_panel": {} - } - ] - } - } - ] - }, - - "grey_bar_panel": { - "type": "stack_panel", - "orientation": "horizontal", - "size": [ "fill", "100%" ], - "controls": [ - { - "grey_bar": { - "type": "image", - "size": [ "100% - 1px", "100%" ], - "texture": "textures/ui/white_background", - "keep_ratio": false, - "tiled": true, - "color": "$servers_screenshot", - "bindings": [ - { - "binding_name": "(not #this_screenshot_selected)", - "binding_name_override": "#visible", - "binding_type": "collection", - "binding_collection_name": "world_screenshot_collection" - } - ] - } - }, - { - "green_bar": { - "type": "image", - "size": [ "100% - 1px", "100%" ], - "texture": "textures/ui/white_background", - "keep_ratio": false, - "tiled": true, - "color": "$servers_current_screenshot", - "bindings": [ - { - "binding_name": "#this_screenshot_selected", - "binding_name_override": "#visible", - "binding_type": "collection", - "binding_collection_name": "world_screenshot_collection" - } - ] - } - }, - { - "padding": { - "type": "panel", - "size": [ 1, "100%" ] - } - } - ] - }, - - "promotion_screenshots_section_panel": { - "type": "stack_panel", - "orientation": "vertical", - "size": [ "75%", "100%c" ], - "controls": [ - { - "screenshots_panel": { - "type": "panel", - "size": [ "100%", "56.25%x" ], - "controls": [ - { - "screen_shot_loading@common_store.progress_loading": { - "layer": 100, // Make this on top - "$hide_failure_text": true, - "$hide_progress_loading_outline": true, - "$source_control_name": "active_screenshot_image", - "$source_property_name": "(#texture = '')" - } - }, - { - "active_screenshot_image": { - "type": "image", - "bindings": [ - { - "binding_name": "(not #screenshot_texture = '')", - "binding_name_override": "#visible" - }, - { - "binding_name": "#screenshot_texture", - "binding_name_override": "#texture" - }, - { - "binding_name": "#screenshot_location", - "binding_name_override": "#texture_file_system" - }, - { - "binding_name": "#screenshot_location", - "binding_type": "collection", - "binding_name_override": "#texture_file_system", - "binding_collection_name": "gift_promotion_collection" - } - ], - "controls": [ - { - "key_art_frame@common.square_image_border_white": { - "size": [ "100% + 2px", "100% + 2px" ], - "color": "$0_color_format", - "layer": 5 - } - } - ] - } - } - ] - } - }, - { - "pad": { - "type": "panel", - "size": [ "100%", 4 ] - } - }, - { - "navigation_panel": { - "type": "stack_panel", - "orientation": "horizontal", - "size": [ "100%", 15 ], - "controls": [ - { - "left_arrow_button@common_buttons.light_content_button": { - "$pressed_button_name": "button.navigate_screenshots_left", - "$button_content": "play.left_arrow_icon", - "$focus_override_right": "right_arrow_button", - "$focus_override_left": "left_panel", - "size": [ 15, "100%" ] - } - }, - { - "padding_0": { - "type": "panel", - "size": [ 4, "100%" ] - } - }, - { - "navigation_bar": { - "type": "panel", - "size": [ "fill", 5 ], - "controls": [ - { - "grey_bar": { - "type": "image", - "size": [ "100%", "100%" ], - "offset": [ 0, 5 ], - "texture": "textures/ui/Black", - "layer": 1, - "controls": [ - { - "grey_bar_factory_panel": { - "type": "stack_panel", - "orientation": "horizontal", - "size": [ "100% - 1px", 3 ], - "anchor_from": "right_middle", - "anchor_to": "right_middle", - "layer": 2, - "factory": { - "name": "grey_bar_factory", - "control_name": "gift_promo.grey_bar_panel" - }, - "collection_name": "world_screenshot_collection", - "bindings": [ - { - "binding_name": "#screenshot_collection_length", - "binding_name_override": "#collection_length" - } - ] - } - } - ] - } - } - ] - } - }, - { - "padding_1": { - "type": "panel", - "size": [ 4, "100%" ] - } - }, - { - "right_arrow_button@common_buttons.light_content_button": { - "$pressed_button_name": "button.navigate_screenshots_right", - "$button_content": "play.right_arrow_icon", - "$focus_id": "right_arrow_button", - "size": [ 15, "100%" ] - } - } - ] - } - } - ] - }, - - "progress_loading": { - "type": "panel", - "size": [ "100%", "100%" ], - "$baseLayer|default": 2, - "controls": [ - { - "progress_loading_outline@common_store.banner_fill": { - "size": [ "60%", "20%x" ], - "visible": "(not $hide_progress_loading_outline)", - "controls": [ - { - "progress_loading_spinner@common_store.progress_loading_spinner": { - "layer": "($baseLayer + 1)" - } - } - ] - } - } - ] - }, - - "progress_loading_input_panel": { - "type": "input_panel", - "size": [ "100%sm - 2px", "100%sm" ], - "layer": 200, - - "bindings": [ - { - "binding_name": "#character_loading_in_progress", - "binding_name_override": "#visible" - } - ], - "controls": [ - { - "progress_loading@gift_promo.progress_loading": { - "size": [ "100% - 2px", "100% - 2px" ], - "$hide_failure_text": true, - "$hide_progress_loading_outline": false, - "bindings": [] - } - } - ] - }, - - "promotion_skin_viewer_panel": { - "type": "input_panel", - "layer": 5, - "gesture_tracking_button": "button.turn_doll", - "bindings": [ - { - "binding_name": "#can_paperdoll_rotate", - "binding_name_override": "#always_handle_controller_direction", - "binding_condition": "always" - } - ], - "button_mappings": [ - { - "from_button_id": "button.menu_select", - "to_button_id": "button.turn_doll", - "mapping_type": "pressed", - "button_up_right_of_first_refusal": true - } - ], - "controls": [ - { - "popup_dialog_factory": { - "type": "factory", - "control_ids": { - "toast_message": "@persona.popup_toast" - } - } - }, - { - "character_loading_panel@gift_promo.progress_loading_input_panel": {} - }, - { - "skin_model_panel": { - "type": "panel", - "size": [ "100%", "100%" ], - "offset": [ 0, -30 ], - "$input_progress_loading_binding_name": "#character_loading_in_progress", - "controls": [ - { - "skin_model": { - "type": "custom", - "renderer": "paper_doll_renderer", - "camera_tilt_degrees": -10, - "starting_rotation": 30, - "layer": 5, - "use_selected_skin": false, - "use_skin_gui_scale": true, - "rotation": "gesture_x", - "animation_reset_name": "screen_animation_reset", - "anims": [ - "@common.screen_exit_size_animation_push", - "@common.screen_exit_size_animation_pop", - "@common.screen_entrance_size_animation_push", - "@common.screen_entrance_size_animation_pop" - ], - "bindings": [ - { - "binding_type": "global", - "binding_name": "$skin_preview" - }, - { - "binding_type": "view", - "source_control_name": "$gesture_input_panel_control", - "source_property_name": "#gesture_delta_source", - "target_property_name": "#gesture_delta_source" - }, - { - "binding_type": "view", - "source_control_name": "$gesture_input_panel_control", - "source_property_name": "#gesture_mouse_delta_x", - "target_property_name": "#gesture_mouse_delta_x" - } - ] - } - } - ] - } - }, - { - "arrow_panel": { - "type": "panel", - "size": [ "100%", 22 ], - "anchor_from": "bottom_middle", - "anchor_to": "bottom_middle", - "bindings": [ - { - "binding_name": "(not #preview_appearance_on)", - "binding_name_override": "#visible" - } - ], - "controls": [ - { - "rotate_arrows@skin_picker.skin_rotation_arrows": { - "size": [ 37, 7 ], - "anchor_from": "bottom_middle", - "anchor_to": "bottom_middle" - } - } - ] - } - } - ] - }, - - "promotion_top_main_panel": { - "type": "image", - "size": [ "85% + 8px", "90%" ], - "texture": "textures/ui/promo_background", - "layer": 2, - "controls": [ - { - "stack_panel": { - "type": "stack_panel", - "orientation": "horizontal", - "size": [ "100%", "100%" ], - "controls": [ - { - "left_side@gift_promo.promotion_top_left_panel": {} - }, - { - "right_side": { - "type": "panel", - "size": [ "50%", "100%" ], - "layer": 3, - "controls": [ - { - "persona_preview@gift_promo.promotion_skin_viewer_panel": { - "size": [ "100% - 8px", "100% - 8px" ], - "$gesture_input_panel_control": "persona_preview", - "$skin_preview": "#preview_persona_item", - "bindings": [ - { - "binding_name": "(not #item_is_world)", - "binding_name_override": "#visible" - } - ] - } - }, - { - "world_screenshots@gift_promo.promotion_screenshots_section_panel": { - "bindings": [ - { - "binding_name": "#item_is_world", - "binding_name_override": "#visible" - } - ] - } - } - ] - } - } - ] - } - } - ] - }, - - "promotion_screen_top": { - "type": "panel", - "size": [ "100%", "fill" ], - "controls": [ - { - "main_panel@gift_promo.promotion_top_main_panel": {} - }, - { - "left_corner_art": { - "type": "image", - "size": [ 128, 124 ], - "offset": [ 1, 0 ], - "anchor_from": "top_left", - "anchor_to": "top_left", - "texture": "textures/ui/bubbles_left_corner", - "layer": 1 - } - }, - { - "right_corner_art": { - "type": "image", - "size": [ 128, 124 ], - "offset": [ -1, 0 ], - "anchor_from": "top_right", - "anchor_to": "top_right", - "texture": "textures/ui/bubbles_right_corner", - "layer": 1 - } - } - ] - }, - - "promotion_screen_panel": { - "type": "panel", - "controls": [ - { - "progress_loading@common_store.progress_loading": { - "layer": 100, // Make this on top - "bindings": [ - { - "binding_name": "#page_loading_visible", - "binding_name_override": "#visible", - "binding_condition": "always" - } - ] - } - }, - { - "promotion_screen_content": { - "type": "stack_panel", - "orientation": "vertical", - "size": [ "100%", "100%" ], - "bindings": [ - { - "binding_type": "view", - "source_control_name": "progress_loading", - "source_property_name": "(not #visible)", - "target_property_name": "#visible", - "resolve_sibling_scope": true - } - ], - "controls": [ - { - "top_half@gift_promo.promotion_screen_top": {} - }, - { - "bottom_half_panel": { - "type": "panel", - "size": [ "100%", "100%c" ], - "controls": [ - { - "bottom_half": { - "type": "image", - "size": [ "100% - 2px", "100%cm + 6px" ], - "texture": "textures/ui/promo_background", - "anchor_from": "bottom_middle", - "anchor_to": "bottom_middle", - "offset": [ 0, -2 ], - "layer": 2, - "controls": [ - { - "carousel_panel": { - "type": "panel", - "size": [ "100% - 1px", "100%cm" ], - "layer": 3, - - "$ignore_cycle_buttons": false, - - "controls": [ - { - "left_button_panel": { - "type": "panel", - "size": [ "100%c", "100%sm" ], - "offset": [ 3, 0 ], - "anchor_from": "left_middle", - "anchor_to": "left_middle", - "controls": [ - { - "left_button@common_store.cycle_pack_left_button": { - "$pressed_button_name": "button.cycle_promotions_left", - "$cycle_pack_button_name_right": "button.cycle_promotions_right", - "$cycle_pack_button_name_left": "button.cycle_promotions_left", - "$button_content": "gift_promo.colored_direction_button_panel", - "size": [ 20, "100%" ], - "bindings": [ - { - "binding_name": "#cycle_promotions_left_button_enabled", - "binding_name_override": "#enabled" - }, - { - "binding_name": "(not #is_using_gamepad)", - "binding_name_override": "#focus_enabled" - } - ] - } - } - ] - } - }, - { - "offer_grid@gift_promo.promotion_content_offer_panel": {} - }, - { - "right_button_panel": { - "type": "panel", - "size": [ "100%c", "100%sm" ], - "offset": [ -1, 0 ], - "anchor_from": "right_middle", - "anchor_to": "right_middle", - "controls": [ - { - "right_button@common_store.cycle_pack_right_button": { - "$pressed_button_name": "button.cycle_promotions_right", - "$cycle_pack_button_name_right": "button.cycle_promotions_right", - "$cycle_pack_button_name_left": "button.cycle_promotions_left", - "$button_content": "gift_promo.colored_direction_button_panel", - "size": [ 20, "100%" ], - "bindings": [ - { - "binding_name": "#cycle_promotions_right_button_enabled", - "binding_name_override": "#enabled" - }, - { - "binding_name": "(not #is_using_gamepad)", - "binding_name_override": "#focus_enabled" - } - ] - } - } - ] - } - } - ] - } - } - ] - } - } - ] - } - } - ] - } - } - ] - }, - - "promotion_content": { - "type": "panel", - "controls": [ - { - "header@common_store.store_header_with_coins": { - "$child_control": "gift_promo.promotion_screen_panel", - "$button_text": "store.promo.title", - "$back_button_has_title": true, - "$back_button_pressed_button_name": "button.exit_gift_screen" - } - }, - { - "holiday_promo_screen_panel": { - "type": "factory", - "size": [ 0, 0 ], - "control_ids": { - "no_store_connection": "@common_store.popup_dialog__no_store_connection", - "restore_popup": "@common_store.popup_dialog__restore_popup", - "restore_failed": "@common_store.popup_dialog__restore_failed" - } - } - } - ] - }, - - "store_promotion_screen@common_store.store_base_screen": { - "$screen_content": "gift_promo.promotion_content", - "$screen_header_title_visible": false, - "$header_safezone_control": "common_store.store_top_bar_filler", - "$header_bar_control": "common_store.store_top_bar", - "$screen_background_control": "common_store.store_background", - "$is_full_screen_layout": true, - "$fill_alpha": 0.75, - "size": [ "100%", "100%" ], - "button_mappings": [ - { - "from_button_id": "button.menu_cancel", - "to_button_id": "button.exit_gift_screen", - "mapping_type": "global" - }, - { - "from_button_id": "button.menu_secondary_select", - "to_button_id": "button.exit_gift_screen", - "mapping_type": "pressed" - }, - { - "from_button_id": "button.controller_select", - "to_button_id": "button.coin_wallet", - "mapping_type": "global" - }, - { - "from_button_id": "button.menu_tab_right", - "to_button_id": "button.cycle_promotions_right", - "mapping_type": "global" - }, - { - "from_button_id": "button.menu_tab_left", - "to_button_id": "button.cycle_promotions_left", - "mapping_type": "global" - } - ] - }, - - //-------------------------------------------------------------------------------- - // Content offer carousel - //-------------------------------------------------------------------------------- - - "promotion_persona_and_world_panel": { - "type": "panel", - "size": [ "31% - 7px", "100%c" ], - "controls": [ - { - "promotion_persona_and_world_item": { - "type": "image", - "texture": "textures/ui/Grey", - "size": [ "100% - 1px", "100%c + 3px" ], - "alpha": 0.4, - "layer": 1, - "controls": [ - { - "promotion_persona_and_world_panel": { - "type": "stack_panel", - "orientation": "vertical", - "size": [ "100%", "100%c + 2px" ], - "offset": [ 0, 2 ], - "layer": 2, - "controls": [ - { - "day_label_panel": { - "type": "panel", - "size": [ "100%", "100%c - 2px" ], - "controls": [ - { - "day_label@common.minecraftTenLabel": { - "size": [ "default", "default" ], - "color": "$body_text_color", - "text": "#day_four_string", - "anchor_from": "top_middle", - "anchor_to": "top_middle", - "offset": [ 0, -2 ], - "bindings": [ - { - "binding_name": "#day_four_string" - } - ] - } - } - ] - } - }, - { - "pad": { - "type": "panel", - "size": [ "100%", 2 ] - } - }, - { - "item_buttons": { - "type": "stack_panel", - "orientation": "horizontal", - "size": [ "100% - 2px", "40%x - 2px" ], - "collection_name": "gift_promotion_collection", - "controls": [ - { - "persona_item@gift_promo.promotion_offer_grid_item": { - "$item_size": [ "38%", "100%" ], - "collection_index": 3, - //Doesn't cover text above this control. This will be completely removed when porting to SDL - "bindings": [ - { - "binding_type": "collection_details", - "binding_collection_name": "gift_promotion_collection" - }, - { - "binding_name": "#is_valid", - "binding_name_override": "#visible", - "binding_type": "collection", - "binding_collection_name": "gift_promotion_collection" - } - ] - } - }, - { - "world_item@gift_promo.promotion_offer_grid_item": { - "$item_size": [ "62%", "100%" ], - "collection_index": 4, - "$is_world_item": true, - //Doesn't cover text above this control. This will be completely removed when porting to SDL - "bindings": [ - { - "binding_type": "collection_details", - "binding_collection_name": "gift_promotion_collection" - }, - { - "binding_name": "#is_valid", - "binding_name_override": "#visible", - "binding_type": "collection", - "binding_collection_name": "gift_promotion_collection" - } - ] - } - } - ] - } - } - ] - } - } - ] - } - } - ] - }, - - "promotion_offer_grid_panel": { - "type": "panel", - "size": [ "11.5%", "100%c" ], - "bindings": [ - { - "binding_type": "collection_details", - "binding_collection_name": "gift_promotion_collection" - }, - { - "binding_name": "#is_valid", - "binding_name_override": "#visible", - "binding_type": "collection", - "binding_collection_name": "gift_promotion_collection" - } - ], - "controls": [ - { - "promotion_offer_grid_image": { - "type": "image", - "texture": "textures/ui/Grey", - "size": [ "100% - 1px", "100%c + 2px" ], - "alpha": 0.4, - "layer": 1, - "controls": [ - { - "promotion_offer_grid_stack_panel": { - "type": "stack_panel", - "orientation": "vertical", - "size": [ "100%", "100%c + 2px" ], - "offset": [ 0, 2 ], - "layer": 2, - "controls": [ - { - "day_label_panel": { - "type": "panel", - "size": [ "100%", "100%c" ], - "controls": [ - { - "day_label@common.minecraftTenLabel": { - "size": [ "default", "default" ], - "color": "$body_text_color", - "text": "#promotion_day_text", - "anchor_from": "top_middle", - "anchor_to": "top_middle", - "offset": [ 0, -2 ], - "bindings": [ - { - "binding_type": "collection_details", - "binding_collection_name": "gift_promotion_collection" - }, - { - "binding_name": "#promotion_day_text", - "binding_type": "collection", - "binding_collection_name": "gift_promotion_collection" - } - ] - } - } - ] - } - }, - { - "pad": { - "type": "panel", - "size": [ "100%", 2 ] - } - }, - { - "image_panel": { - "type": "panel", - "size": [ "100% - 2px", "100%x" ], - "controls": [ - { - "item_button@gift_promo.promotion_offer_grid_item": {} - } - ] - } - } - ] - } - } - ] - } - } - ] - }, - - "promotion_content_offer_panel": { - "type": "stack_panel", - "orientation": "horizontal", - "size": [ "100% - 46px", "100%cm" ], - "offset": [ 1, 0 ], - "collection_name": "gift_promotion_collection", - "controls": [ - { - "offer_item_1@gift_promo.promotion_offer_grid_panel": { - "collection_index": 0, - "$focus_override_left": "FOCUS_OVERRIDE_STOP" - } - }, - { - "padding_0": { - "type": "panel", - "size": [ 1, "100%sm" ] - } - }, - { - "offer_item_2@gift_promo.promotion_offer_grid_panel": { - "collection_index": 1 - } - }, - { - "padding_1": { - "type": "panel", - "size": [ 1, "100%sm" ] - } - }, - { - "offer_item_3@gift_promo.promotion_offer_grid_panel": { - "collection_index": 2 - } - }, - { - "padding_2": { - "type": "panel", - "size": [ 1, "100%sm" ] - } - }, - { - "offer_item_4@gift_promo.promotion_persona_and_world_panel": { - //Collection indices 3 and 4 are in promotion_persona_and_world_panel - } - }, - { - "padding_3": { - "type": "panel", - "size": [ 1, "100%sm" ] - } - }, - { - "offer_item_5@gift_promo.promotion_offer_grid_panel": { - "collection_index": 5 - } - }, - { - "padding_4": { - "type": "panel", - "size": [ 1, "100%sm" ] - } - }, - { - "offer_item_6@gift_promo.promotion_offer_grid_panel": { - "collection_index": 6 - } - }, - { - "padding_5": { - "type": "panel", - "size": [ 1, "100%sm" ] - } - }, - { - "offer_item_7@gift_promo.promotion_offer_grid_panel": { - "collection_index": 7, - "$focus_override_right": "FOCUS_OVERRIDE_STOP" - } - } - ] - }, - - //-------------------------------------------------------------------------------- - // Store offer carousel - //-------------------------------------------------------------------------------- - - "promotion_offer_grid_item": { - "type": "panel", - "$item_size|default": [ "100%", "100%" ], - "size": "$item_size", - "offset": [ 1, -1 ], - - "$is_world_item|default": false, - - "variables": [ - { - "requires": "$is_world_item", - "$size": [ "100%", "64.4%x" ], - "$max_size": [ 90, 58 ] - }, - { - "requires": "(not $is_world_item)", - "$size": [ "100% - 4px", "100%x" ], - "$max_size": [ 58, 58 ] - } - ], - "controls": [ - { - "frame": { - "type": "panel", - "size": "$size", - "max_size": "$max_size", - "controls": [ - { - "background@persona_common.item_rarity_color_background": { - "size": [ "100%", "100%" ], - "ignored": "$is_world_item", - "$rarity_background_alpha": 1, - "$rarity_color_background_texture": "textures/ui/button_borderless_light", - "$rarity_binding_type": "collection", - "$rarity_collection_name": "gift_promotion_collection", - "layer": 1, - "$rarity_background_bindings": [ - { - "binding_name": "#promotion_offer_visible", - "binding_name_override": "#visible", - "binding_type": "collection", - "binding_collection_name": "gift_promotion_collection" - }, - { - "binding_type": "$rarity_binding_type", - "binding_collection_name": "$rarity_collection_name", - "binding_name": "#rarity_color", - "binding_name_override": "#color" - } - ] - } - }, - { - "rarity_bar_panel@persona_common.rarity_bar": { - "size": [ "100%", 3 ], - "ignored": "$is_world_item", - "$item_binding_type": "collection", - "$item_collection_name": "gift_promotion_collection", - "layer": 6, - "bindings": [ - { - "binding_type": "collection", - "binding_collection_name": "gift_promotion_collection", - "binding_name": "#rarity_bar_texture", - "binding_name_override": "#texture" - }, - { - "binding_type": "collection", - "binding_collection_name": "gift_promotion_collection", - "binding_name": "#promotion_offer_visible", - "binding_name_override": "#visible" - } - ] - } - }, - { - "key_art_frame@common.square_image_border_white": { - "size": [ "100%", "100%" ], - "layer": 10, - "bindings": [ - { - "binding_name": "#this_promo_selected", - "binding_name_override": "#visible", - "binding_type": "collection", - "binding_collection_name": "gift_promotion_collection" - } - ] - } - }, - { - "green_check": { - "type": "image", - "size": [ 15, 12 ], - "texture": "textures/ui/realms_green_check", - "anchor_from": "bottom_right", - "anchor_to": "bottom_right", - "offset": [ -1, -1 ], - "layer": 15, - "bindings": [ - { - "binding_name": "#item_has_been_claimed", - "binding_name_override": "#visible", - "binding_type": "collection", - "binding_collection_name": "gift_promotion_collection" - } - ] - } - }, - { - "key_art_image_panel": { - "type": "panel", - "size": [ "100% - 2px", "100% - 2px" ], - "offset": [ 0, 1 ], - "anchor_from": "top_middle", - "anchor_to": "top_middle", - "bindings": [ - { - "binding_type": "collection", - "binding_collection_name": "gift_promotion_collection", - "binding_name": "#promotion_offer_visible", - "binding_name_override": "#visible" - } - ], - "controls": [ - { - "image_loading_panel@common_store.progress_loading": { - "layer": 100, // Make this on top - "$hide_failure_text": true, - "$hide_progress_loading_outline": true, - "$source_control_name": "key_art_image", - "$source_property_name": "(#texture = '')" - } - }, - { - "key_art_image": { - "type": "image", - "bilinear": true, - "max_size": "$max_size", - "layer": 4, - "bindings": [ - { - "binding_type": "collection", - "binding_collection_name": "gift_promotion_collection", - "binding_name": "(not (#promotion_thumbnail_texture_path = ''))", - "binding_name_override": "#visible" - }, - { - "binding_type": "collection", - "binding_collection_name": "gift_promotion_collection", - "binding_name": "#promotion_thumbnail_texture_path", - "binding_name_override": "#texture" - }, - { - "binding_type": "collection", - "binding_collection_name": "gift_promotion_collection", - "binding_name": "#promotion_thumbnail_texture_file_system", - "binding_name_override": "#texture_file_system" - } - ] - } - } - ] - } - }, - { - "present_art": { - "type": "image", - "size": "$size", - "max_size": "$max_size", - "bindings": [ - { - "binding_type": "view", - "source_control_name": "key_art_image_panel", - "source_property_name": "(not #visible)", - "target_property_name": "#visible", - "resolve_sibling_scope": true - }, - { - "binding_name": "#promotion_offer_gift_image", - "binding_name_override": "#texture", - "binding_type": "collection", - "binding_collection_name": "gift_promotion_collection" - } - ] - } - }, - { - "offer_button@common.button": { - "offset": [ 0, -1 ], - "layer": 11, - "default_control": "", - "$pressed_button_name|default": "button.select_promotion_offer", - "tts_inherit_siblings": true, - "bindings": [ - { - "binding_type": "collection_details", - "binding_collection_name": "gift_promotion_collection" - }, - { - "binding_name": "#promotion_offer_visible", - "binding_name_override": "#enabled", - "binding_type": "collection", - "binding_collection_name": "gift_promotion_collection" - } - ], - "controls": [ - { - "hover": { - "type": "panel", - "controls": [ - { - "key_art_size_panel": { - "type": "panel", - "size": [ "100%", "100%" ], - "max_size": "$max_size", - "offset": [ 0, 1 ], - "anchor_from": "top_middle", - "anchor_to": "top_middle", - "layer": 1, - "controls": [ - { - "key_art_frame@common.square_image_border_white": { - "size": [ "100%", "100%" ], - "layer": 2 - } - } - ] - } - } - ] - } - }, - { - "pressed": { - "type": "panel", - "controls": [ - { - "key_art_size_panel": { - "type": "panel", - "size": [ "100%", "100%" ], - "max_size": "$max_size", - "offset": [ 0, 1 ], - "anchor_from": "top_middle", - "anchor_to": "top_middle", - "layer": 1, - "controls": [ - { - "key_art_frame@common.square_image_border_white": { - "size": [ "100%", "100%" ], - "layer": 2 - } - } - ] - } - } - ] - } - } - ] - } - } - ] - } - } - ] - } -} diff --git a/resource_pack/ui/store_inventory_screen.json b/resource_pack/ui/store_inventory_screen.json index 63a50f27d..b6913306d 100644 --- a/resource_pack/ui/store_inventory_screen.json +++ b/resource_pack/ui/store_inventory_screen.json @@ -73,14 +73,14 @@ { "xbl_image_center_panel": { "type": "panel", - "size": [ "100%c", 160 ], + "size": [ "50%", "100%c" ], "inherit_max_sibling_height": true, "controls": [ { "xbl_sign_in_image": { "type": "image", "keep_ratio": true, - "size": [ "93%y", 160 ], + "size": [ "100%", "50%x" ], "texture": "textures/ui/sign_in_prompts_my_content" } } @@ -128,7 +128,6 @@ }, { "warning_label_line_1": { - "ignored": "$use_short_upsell_message", "type": "label", "max_size": [ "90%", "100%c" ], "text": "store.sign_in_warning.no_xbl_and_no_local_content.line1", @@ -144,7 +143,6 @@ }, { "warning_label_line_2": { - "ignored": "$use_short_upsell_message", "type": "label", "max_size": [ "90%", "100%c" ], "text": "store.sign_in_warning.no_xbl_and_no_local_content.line2", @@ -262,14 +260,14 @@ { "xbl_image_center_panel": { "type": "panel", - "size": [ "100%c", 160 ], + "size": [ "50%", "100%c" ], "inherit_max_sibling_height": true, "controls": [ { "xbl_sign_in_image": { "type": "image", "keep_ratio": true, - "size": [ "93%y", 160 ], + "size": [ "100%", "50%x" ], "texture": "textures/ui/sign_in_prompts_my_content" } } @@ -302,7 +300,6 @@ }, { "warning_label_line_1": { - "ignored": "$use_short_upsell_message", "type": "label", "max_size": [ "90%", "100%c" ], "text": "store.sign_in_warning.no_xbl_and_no_local_content.line1", @@ -318,7 +315,6 @@ }, { "warning_label_line_2": { - "ignored": "$use_short_upsell_message", "type": "label", "max_size": [ "90%", "100%c" ], "text": "store.sign_in_warning.no_xbl_and_no_local_content.line2", @@ -452,6 +448,9 @@ "$radio_toggle_group": true, "$toggle_name": "navigation_tab", + "$hover_texture|default": "textures/ui/button_borderless_light", + "$default_checked_text_color": "$light_toggle_default_text_color", + "$toggle_state_binding_name": "#toggle_state", "$toggle_tab_focus_binding_type": "global", "$toggle_tab_focus_binding_name": "#navigation_tab_focus_precedence", @@ -543,11 +542,8 @@ } }, { - "realms_plus_panel": { - "type": "image", - "texture": "textures/ui/screen_background", - "alpha": "$fill_alpha", - "$fill_alpha|default": 0.6, + "csub_panel": { + "type": "panel", "variables": [ { "requires": "$is_holographic", @@ -564,16 +560,7 @@ ], "controls": [ { - "realms_plus_stack_panel@store_inventory.realms_plus_stack_panel": {} - }, - { - "border": { - "type": "image", - "size": [ "100%", "100%sm" ], - "texture": "textures/ui/square_image_border_white", - "color": "$realms_plus_border_color", - "layer": 3 - } + "csub_stack_panel@store_inventory.csub_stack_panel": {} } ] } @@ -602,6 +589,104 @@ ] }, + "csub_stack_panel": { + "type": "stack_panel", + "orientation": "vertical", + "size": [ "100%", "100%c" ], + "controls": [ + { + "padding_title_vertical": { + "type": "panel", + "size": [ "100%", 3 ] + } + }, + { + "section_title": { + "type": "stack_panel", + "orientation": "horizontal", + "size": [ "100%", 20 ], + "layer": 1, + "controls": [ + { + "padding_title_horizontal": { + "type": "panel", + "size": [ 3, "100%" ] + } + }, + { + "testTitle@common_csb.csb_header": {} + } + ] + } + }, + { + "dropdown_panel": { + "type": "panel", + "size": [ "100%", "100%c" ], + "controls": [ + { + "dropdown_stack_panel": { + "type": "stack_panel", + "orientation": "vertical", + "size": [ "100% - 8px", "100%c" ], + "controls": [ + { + "current_toggle@store_inventory.current_toggle": { + "$focus_id": "current_toggle" + } + }, + { + "current_dropdown_box_panel": { + "type": "panel", + "size": [ "100%", "100%c" ], + "controls": [ + { + "current_dropdown_box@store_inventory.dropdown_box": { + "$dropdown_collection_name": "current_items_collection" + } + } + ] + } + }, + { + "pad_1": { + "type": "panel", + "size": [ "100%", 4 ] + } + }, + { + "removed_toggle@store_inventory.removed_toggle": { + "$focus_id": "removed_toggle" + } + }, + { + "removed_dropdown_box_panel": { + "type": "panel", + "size": [ "100%", "100%c" ], + "controls": [ + { + "removed_dropdown_box@store_inventory.dropdown_box": { + "$dropdown_collection_name": "removed_items_collection" + } + } + ] + } + }, + { + "pad_2": { + "type": "panel", + "size": [ "100%", 5 ] + } + } + ] + } + } + ] + } + } + ] + }, + "subscriptions_text_panel": { "type": "panel", "size": [ "100% - 6px", "100%c" ], @@ -891,14 +976,14 @@ "current_dropdown_content@store_inventory.dropdown_button_content": { "$title_text": "store.inventory.dropdown.current", - "$icon_texture|default": "textures/ui/realmsIcon", + "$icon_texture|default": "", "$icon_size": [ 11, 14 ], "$dropdown_collection_name": "current_items_collection" }, "removed_dropdown_content@store_inventory.dropdown_button_content": { "$title_text": "store.inventory.dropdown.removed", - "$icon_texture|default": "textures/ui/realmsIcon", + "$icon_texture|default": "", "$icon_size": [ 11, 14 ], "$dropdown_collection_name": "removed_items_collection" }, @@ -1050,12 +1135,12 @@ }, { "hover@store_inventory.category_stack_panel": { - "$color": "$store_play_button_hover" + "$color": "$csub_text_color" } }, { "pressed@store_inventory.category_stack_panel": { - "$color": "$store_play_button_hover" + "$color": "$csub_text_color" } } ] @@ -1264,7 +1349,7 @@ "content_area": { "type": "panel", - "size": [ "fill", "100%" ], + "size": [ "100%", "100%" ], "layer": 1, "focus_container": true, "use_last_focus": false, @@ -1310,9 +1395,9 @@ "inventory_left_image": { "type": "image", "size": [ "100%", "100%" ], - "texture": "textures/ui/verticalgradient", + "texture": "textures/ui/csb_background", "tiled": "x", - "$fill_alpha|default": 0.6, + "$fill_alpha|default": 1.0, "alpha": "$fill_alpha", "variables": [ { @@ -1326,8 +1411,8 @@ { "bottom_left_particles": { "type": "image", - "size": [ "100%", "133.33%x" ], - "texture": "textures/ui/particles2", + "size": [ "100%", "187.5%x" ], + "texture": "textures/ui/csb_sparkles", "anchor_from": "bottom_middle", "anchor_to": "bottom_middle", "layer": 2 @@ -1366,7 +1451,30 @@ } }, { - "inventory_right_panel@store_inventory.content_area": {} + "inventory_right_panel": { + "type": "panel", + "size": [ "fill", "100%" ], + "controls": [ + { + "right_panel_background_image": { + "type": "image", + "size": [ "100%", "100%" ], + "texture": "textures/ui/slider_background.png", + "tiled": true, + "variables": [ + { + "requires": "$is_holographic", + "$fill_alpha": 1.0 + } + ], + "layer": 1 + } + }, + { + "content_right_panel@store_inventory.content_area": {} + } + ] + } } ] }, diff --git a/resource_pack/ui/store_promo_timeline_screen.json b/resource_pack/ui/store_promo_timeline_screen.json index 1edad7f5c..29a714387 100644 --- a/resource_pack/ui/store_promo_timeline_screen.json +++ b/resource_pack/ui/store_promo_timeline_screen.json @@ -111,6 +111,12 @@ "anchor_to": "top_left", "layer": 2, "controls": [ + { + "padding_0": { + "type": "panel", + "size": [ "100%", 2 ] + } + }, { "title_stack_panel": { "type": "stack_panel", @@ -1579,29 +1585,29 @@ "promotion_period_grid_panel": { "type": "panel", "size": [ "fill", "100%c" ], - "bindings": [ - { - "binding_type": "$store_factory_collection_details", - "binding_collection_name": "$store_factory_collection_name", - "binding_collection_prefix": "$store_factory_collection_prefix" - }, - { - "binding_type": "collection_details", - "binding_collection_name": "gift_promotion_collection" - }, - { - "binding_name": "#is_valid", - "binding_name_override": "#visible", - "binding_type": "collection", - "binding_collection_name": "gift_promotion_collection" - } - ], "controls": [ { "promotion_offer_grid_image": { "type": "panel", "size": [ "100%", "100%cm" ], "layer": 1, + "bindings": [ + { + "binding_type": "$store_factory_collection_details", + "binding_collection_name": "$store_factory_collection_name", + "binding_collection_prefix": "$store_factory_collection_prefix" + }, + { + "binding_type": "collection_details", + "binding_collection_name": "gift_promotion_collection" + }, + { + "binding_name": "#is_valid", + "binding_name_override": "#visible", + "binding_type": "collection", + "binding_collection_name": "gift_promotion_collection" + } + ], "controls": [ { "item_selected_bg": { @@ -2808,7 +2814,8 @@ "controls": [ { "promo_banner_button@common.minecraftTenLabel": { - "size": [ "default", "default" ], + "size": [ "100%", "12px" ], + "text_alignment": "center", "offset": [ 0, -1 ], "color": "$text_color", "text": "#promo_button_text", diff --git a/resource_pack/ui/ui_common.json b/resource_pack/ui/ui_common.json index 6bfe14944..467ac9ce0 100644 --- a/resource_pack/ui/ui_common.json +++ b/resource_pack/ui/ui_common.json @@ -3373,7 +3373,7 @@ "progressive_up@progressive_select_progress_bar": { "anchor_from": "top_middle", "anchor_to": "bottom_middle", - "offset": [ 0, -4 ], + "offset": [ 0, -7 ], "$visibility_binding_name": "#progressive_select_up_visible", "$texture_to_use": "textures/ui/stack_progress_bar_up_arrow", "$fill_bar_offset": [ 0, -0.5 ] @@ -3835,6 +3835,12 @@ "binding_condition": "visible", "binding_type": "collection", "binding_collection_name": "$item_collection_name" + }, + { + "binding_name": "#fade_in_icon_time_seconds", + "binding_condition": "visible", + "binding_type": "collection", + "binding_collection_name": "$item_collection_name" } ] }, @@ -3916,7 +3922,7 @@ "flying_item_renderer": { "type": "custom", "renderer": "flying_item_renderer", - "layer": 11, + "layer": 40, "property_bag": { "#flying_item_renderer": true } @@ -4866,7 +4872,7 @@ "controls": [ { "stack_count_label@common.stack_count_label": { - "layer": 9 + "layer": 27 } }, { @@ -5718,6 +5724,26 @@ "to_button_id": "button.container_reset_held", "mapping_type": "pressed" }, + { + "from_button_id": "button.arrow_up", + "to_button_id": "button.arrow_key", + "mapping_type": "global" + }, + { + "from_button_id": "button.arrow_down", + "to_button_id": "button.arrow_key", + "mapping_type": "global" + }, + { + "from_button_id": "button.arrow_left", + "to_button_id": "button.arrow_key", + "mapping_type": "global" + }, + { + "from_button_id": "button.arrow_right", + "to_button_id": "button.arrow_key", + "mapping_type": "global" + }, { "from_button_id": "button.controller_back", "to_button_id": "button.container_reset_held", @@ -6204,22 +6230,6 @@ "disable_anim_fast_forward": true, "layer": -1 } - }, - { - "factory_panel": { - "type": "panel", - "controls": [ - { - "error_dialog_factory": { - "type": "factory", - "control_ids": { - "error_popup": "@display_logged_error.display_logged_error_modal", - "error_details": "@display_logged_error.error_details_modal" - } - } - } - ] - } } ] } @@ -6816,6 +6826,49 @@ ] }, + "dynamic_tooltip_popup_with_custom_content@common.tooltip_background": { + "$ignore_tooltip_popup_chevron|default": false, + "$tooltip_popup_visible_binding|default": "", + "$tooltip_panel_offset|default": [ 0, -2 ], + "$tooltip_content|default": "common.empty_panel", + + "min_size": [ 25, "default" ], + "size": [ "100%c - 6px", "100%cm + 8px" ], + "offset": "$tooltip_panel_offset", + "layer": 200, // always on top + "anchor_from": "top_middle", + "anchor_to": "bottom_middle", + "controls": [ + { + "tooltip_content@$tooltip_content": {} + }, + { + "tooltip_chevron": { + "ignored": "$ignore_tooltip_popup_chevron", + "type": "image", + "layer": 2, + "$tooltip_popup_chevron_size|default": [ 19, 13 ], + "size": "$tooltip_popup_chevron_size", + "$tooltip_popup_chevron_offset|default": [ 0, "100%y - 3px" ], + "offset": "$tooltip_popup_chevron_offset", + "$tooltip_chevron_anchor|default": "bottom_middle", + "anchor_to": "$tooltip_chevron_anchor", + "anchor_from": "$tooltip_chevron_anchor", + "$tooltip_popup_chevron_texture|default": "textures/ui/tooltip_default_chevron", + "texture": "$tooltip_popup_chevron_texture" + } + } + ], + "bindings": [ + { + "binding_name": "$tooltip_popup_visible_binding", + "binding_name_override": "#visible", + "binding_collection_name": "$tooltip_button_collection_name", + "binding_type": "$tooltip_button_binding_type" + } + ] + }, + // Tool tip with centered chevron // $tool_tip_text_max_size defines how text wraps (x wraps with a '-' and y will cut off with '...') "dynamic_tooltip_popup_with_image_and_text@common.tooltip_background": { @@ -6956,6 +7009,16 @@ "$tooltip_popup_chevron_texture": "textures/ui/tooltip_inverted_chevron" }, + // Helper for tooltips intended to be below control + "dynamic_custom_tooltip_below@dynamic_tooltip_popup_with_custom_content": { + "$tooltip_panel_offset": [ 0, 2 ], + "anchor_to": "top_middle", + "anchor_from": "bottom_middle", + "$tooltip_chevron_anchor": "top_middle", + "$tooltip_popup_chevron_offset": [ 0, "-100%y + 3px" ], + "$tooltip_popup_chevron_texture": "textures/ui/tooltip_inverted_chevron" + }, + // Helper for tooltips with dynamic positioning "dynamic_tooltip": { "type": "panel", diff --git a/resource_pack/ui/xbl_console_qr_signin.json b/resource_pack/ui/xbl_console_qr_signin.json index 5c628631f..2be118e9a 100644 --- a/resource_pack/ui/xbl_console_qr_signin.json +++ b/resource_pack/ui/xbl_console_qr_signin.json @@ -404,26 +404,6 @@ "font_type": "smooth", "font_scale_factor": 0.8 } - }, - { - "padding_2": { - "type": "panel", - "size": [ "100%", 10 ] - } - }, - { - "one_per_account_message": { - "type": "label", - "size": [ "100%", "default" ], - "text": "xbox.signin.message.line2", - "anchor_from": "top_left", - "anchor_to": "top_left", - "layer": 2, - "text_alignment": "left", - "color": "$xbl_signin_text_color", - "font_scale_factor": 0.8, - "font_type": "smooth" - } } ] } diff --git a/resource_pack/ui/xbl_console_signin.json b/resource_pack/ui/xbl_console_signin.json index eddd9b8ba..d6a86d6c1 100644 --- a/resource_pack/ui/xbl_console_signin.json +++ b/resource_pack/ui/xbl_console_signin.json @@ -33,39 +33,6 @@ "color": "$xbl_signin_text_color", "font_type": "smooth" } - }, - { - "padding": { - "type": "panel", - "size": [ "100%", 4 ], - "visible": "#ps4_warning_message_visible", - "bindings": [ - { - "binding_name": "#ps4_warning_message_visible", - "binding_name_override": "#visible" - } - ] - } - }, - { - "message_label_line2": { - "type": "label", - "size": [ "100%", "default" ], - "text": "xbox.signin.message.line2", - "anchor_from": "top_left", - "anchor_to": "top_left", - "layer": 2, - "text_alignment": "left", - "color": "$xbl_signin_text_color", - "font_type": "smooth", - "visible": "#ps4_warning_message_visible", - "bindings": [ - { - "binding_name": "#ps4_warning_message_visible", - "binding_name_override": "#visible" - } - ] - } } ] } diff --git a/version.json b/version.json index b183d7dd0..4261eda3f 100644 --- a/version.json +++ b/version.json @@ -1,5 +1,6 @@ { - "latest": { "version": "1.20.80.5", "date": "23-04-2024" }, + "latest": { "version": "1.21.0.3", "date": "13-06-2024" }, + "1.21.0.3": { "version": "1.21.0.3", "date": "13-06-2024" }, "1.20.80.5": { "version": "1.20.80.5", "date": "23-04-2024" }, "1.20.70.6": { "version": "1.20.70.6", "date": "12-03-2024" }, "1.20.60.4": { "version": "1.20.60.4", "date": "06-02-2024" },